Version Description
- added : Tamil language
- added : Ukranian language
- added : check for home page in detect commentluv request and send back 10 last posts instead of relying on object which my be populated with the contents of a homepage slider
- added : function to count number of approved comments with luvlink made in the past 14 days
- added : Latvian language
- fixed : small issue with Polish language showing weird characters in settings page.
- updated : Polish translation (thanks Mariusz!)
- fixed : minor issue with settings page localized js for badge choice in IE
- added : Romanian language
- fixed : couple of undefined index warnings showing when on debug mode
- fixed : error responseText for parseerror should now show the response body
- added : check for wp_rss function existence before including rss.php to prevent a fatal error if another plugin is including rss.php in every page (eg. energizer plugin)
- added : Norwegian language
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.90.8 |
Comparing to | |
See all releases |
Code changes from version 2.90.7 to 2.90.8
- commentluv.php +57 -23
- css/commentluv.css +1 -1
- images/lv.png +0 -0
- images/no.png +0 -0
- images/ta.png +0 -0
- images/ua.png +0 -0
- js/commentluv.js +1 -1
- lang/commenluv-ro_RO.mo +0 -0
- lang/commentluv-it_IT.mo +0 -0
- lang/commentluv-it_IT.po +202 -160
- lang/commentluv-lv.mo +0 -0
- lang/commentluv-lv.po +582 -0
- lang/commentluv-no_NO.mo +0 -0
- lang/commentluv-no_NO.po +582 -0
- lang/commentluv-pl_PL.mo +0 -0
- lang/commentluv-pl_PL.po +213 -172
- lang/commentluv-ro_RO.po +583 -0
- lang/commentluv-ta_TA.mo +0 -0
- lang/commentluv-ta_TA.po +582 -0
- lang/commentluv-ua_UA.mo +0 -0
- lang/commentluv-ua_UA.po +208 -0
- readme.txt +21 -2
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>
|
@@ -28,7 +28,7 @@
|
|
28 |
var $plugin_url;
|
29 |
var $plugin_dir;
|
30 |
var $db_option = 'commentluv_options';
|
31 |
-
var $version = "2.90.
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
@@ -273,7 +273,7 @@
|
|
273 |
*/
|
274 |
function add_settings_page_script (){
|
275 |
wp_enqueue_script ('notify_signup', $this->plugin_url . 'js/notify_signup.js', array('jquery'),$this->version );
|
276 |
-
wp_localize_script ( 'notify_signup', 'notify_signup_settings', array('wait_message'=>__('Please wait',$this->plugin_domain),'notify_success1' => __('Please check your inbox, an email will be sent to',$this->plugin_domain), 'notify_success2'=>__('in the next few minutes with a confirmation link',$this->plugin_domain), 'notify_fail'=>__('An error happened with the request. Try signing up at the site',$this->plugin_domain),'image_url'=>$this->plugin_url.'images/','
|
277 |
wp_enqueue_script('thickbox',null,array('jquery'));
|
278 |
echo "<link rel='stylesheet' href='/".WPINC."/js/thickbox/thickbox.css?ver=20080613' type='text/css' media='all' />\n";
|
279 |
}
|
@@ -293,14 +293,14 @@
|
|
293 |
// whitelist options
|
294 |
register_setting( 'commentluv_options_group', $this->db_option ,array(&$this,'options_sanitize' ) );
|
295 |
$options = $this->get_options();
|
296 |
-
if($options['upgrade']){
|
297 |
add_action('admin_notices',array(&$this,'show_upgrade_notice'));
|
298 |
}
|
299 |
// has the comment meta table?
|
300 |
global $wpdb;
|
301 |
$query = $wpdb->prepare("SHOW tables LIKE '{$wpdb->commentmeta}'");
|
302 |
$dbtable = $wpdb->get_var($query);
|
303 |
-
|
304 |
if(!$dbtable){
|
305 |
add_action('admin_notices',create_function('','echo "<div class=\"error\">'.__('Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!',$pd).'<br>'.__(' CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->',$pd).'<a target=\"_blank\" href=\"http://wordpress.org/support/topic/wp_commentmeta-table-a39xxxx2_blogwp_commentmeta-doesnt-exist?replies=7#post-1378281\">'.__('Missing wp_commentmeta table',$pd).'</a></div>";'));
|
306 |
}
|
@@ -357,7 +357,10 @@
|
|
357 |
$url = 'http://version.commentluv.com/';
|
358 |
$name = strip_tags(get_bloginfo('name'));
|
359 |
$description = strip_tags(get_bloginfo('description'));
|
360 |
-
$
|
|
|
|
|
|
|
361 |
$response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
|
362 |
$latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
|
363 |
$message = wp_remote_retrieve_header($response,'message');
|
@@ -418,7 +421,10 @@
|
|
418 |
function detect_useragent(){
|
419 |
$options = $this->get_options();
|
420 |
// dont do anything if detect is disabled
|
421 |
-
if($
|
|
|
|
|
|
|
422 |
return;
|
423 |
}
|
424 |
// is this commentluv calling?
|
@@ -449,7 +455,7 @@
|
|
449 |
// dropdown choice
|
450 |
if($options['badge_choice'] == 'drop_down'){
|
451 |
if($options['badge_type'] != 'none'){
|
452 |
-
$badges = array('default'=>'CL91_default.png','white'=>'CL91_White.gif','black'=>'CL91_Black.gif');
|
453 |
$imgurl = $this->plugin_url.'images/'.$badges[$options['badge_type']];
|
454 |
}
|
455 |
}
|
@@ -855,7 +861,18 @@
|
|
855 |
header( "Content-Type: application/json" );
|
856 |
echo $response;
|
857 |
exit;
|
858 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
/** get_options
|
860 |
* This function sets default options and handles a reset to default options
|
861 |
* @param string $reset = 'no' - whether to return default settings
|
@@ -868,6 +885,7 @@
|
|
868 |
$register_link = apply_filters('register','<a href="' . site_url('wp-login.php?action=register', 'login') . '">' . __('Register') . '</a>');
|
869 |
}
|
870 |
// default values
|
|
|
871 |
$default = array ('version'=>$this->version,'enable'=>'yes','enable_for'=>'both', 'default_on' => 'on', 'default_on_admin'=>'on',
|
872 |
'badge_choice' => 'drop_down', 'badge_type'=>'default', 'link'=>'off','infopanel'=>'on', 'infoback'=>'white', 'infotext'=>'black',
|
873 |
'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'..[lastpost]', 'whogets'=>'registered', 'dofollow' => 'registered',
|
@@ -876,12 +894,16 @@
|
|
876 |
'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment');
|
877 |
$options = get_option ( $this->db_option, $default);
|
878 |
// return the options
|
879 |
-
if($reset == 'yes'){
|
880 |
return $default;
|
881 |
}
|
882 |
if(!$options['api_url']){
|
883 |
$options['api_url'] = admin_url('admin-ajax.php');
|
884 |
}
|
|
|
|
|
|
|
|
|
885 |
return $options;
|
886 |
}
|
887 |
/** handle_load_domain
|
@@ -928,6 +950,7 @@
|
|
928 |
// new addition to technical settings after 2.90.1 release
|
929 |
if(version_compare($installed_version,'2.9.0.1','<')){
|
930 |
$options['api_url'] = admin_url('admin-ajax.php');
|
|
|
931 |
update_option($this->db_option,$options);
|
932 |
update_option('cl_version',$this->version);
|
933 |
}
|
@@ -1090,12 +1113,20 @@
|
|
1090 |
ob_clean();
|
1091 |
}
|
1092 |
$error = false;
|
1093 |
-
if($foundposts < 1){
|
1094 |
$error = true;
|
1095 |
}
|
1096 |
$enabled = $options['enable'];
|
|
|
1097 |
// General checking
|
1098 |
if (preg_match("/Commentluv/i", $_SERVER['HTTP_USER_AGENT'])) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
$feed = '<?xml version="1.0" encoding="'.get_bloginfo('charset').'" ?>
|
1100 |
<rss version="2.0">
|
1101 |
<channel>
|
@@ -1270,7 +1301,7 @@
|
|
1270 |
<td>
|
1271 |
<input type="radio" class="radio" name="<?php echo $dbo;?>[badge_choice]" value="drop_down" <?php checked($o['badge_choice'],'drop_down');?>/>
|
1272 |
<select id="badge_type" name="<?php echo $dbo;?>[badge_type]">
|
1273 |
-
<option value="
|
1274 |
<option value="white" <?php selected($o['badge_type'],'white');?>><?php _e('White',$pd);?></option>
|
1275 |
<option value="black" <?php selected($o['badge_type'],'black');?>><?php _e('Black',$pd);?></option>
|
1276 |
<option value="none" <?php selected($o['badge_type'],'none');?>><?php _e('None',$pd);?></option>
|
@@ -1323,7 +1354,7 @@
|
|
1323 |
<tr>
|
1324 |
<td colspan="2">
|
1325 |
<label for="<?php echo $dbo;?>[comment_text]"><?php _e('Text to be displayed in the comment',$pd);?></label>
|
1326 |
-
<br><input type="text" style="width: 95%" name="<?php echo $dbo;?>[comment_text]" value="<?php echo
|
1327 |
</td>
|
1328 |
<td style="border: 1px dashed #dfdfdf;"><?php _e('[name] = The users name',$this->plugin_domain);?><br><?php _e('[lastpost] = The last blog post link',$this->plugin_domain);?></td>
|
1329 |
<td> </td>
|
@@ -1334,14 +1365,14 @@
|
|
1334 |
|
1335 |
<?php _e('Message for unregistered user in the drop down box',$pd);?>
|
1336 |
<br>(<?php _e('Message will not be shown if you do not have registrations enabled',$this->plugin_domain);?>)
|
1337 |
-
<br><textarea rows="5" style="width: 95%" name="<?php echo $dbo;?>[unreg_user_text]"><?php echo
|
1338 |
<?php
|
1339 |
if(get_option('users_can_register')){
|
1340 |
_e('Your register link code',$pd);
|
1341 |
echo '<br>';
|
1342 |
_e('(this will be automatically added if you have not added it yourself to the textarea above)',$pd);
|
1343 |
$register_link = apply_filters('register','<a href="' . site_url('wp-login.php?action=register', 'login') . '">' . __('Register') . '</a>');
|
1344 |
-
echo ' : <input style="width:95%" type="text" value="'
|
1345 |
}
|
1346 |
?>
|
1347 |
</td>
|
@@ -1360,7 +1391,7 @@
|
|
1360 |
<td colspan="3">
|
1361 |
<?php _e('Message for unregistered user in the info panel',$pd);?>
|
1362 |
<br>(<?php _e('Message will not be shown if you do not have registrations enabled',$this->plugin_domain);?>)
|
1363 |
-
<br><textarea rows="5" style="width:95%;" name="<?php echo $dbo;?>[unreg_user_text_panel]"><?php echo
|
1364 |
</td>
|
1365 |
<td></td>
|
1366 |
<td></td>
|
@@ -1518,8 +1549,10 @@
|
|
1518 |
<tr><td colspan="2"><iframe src="http://www.facebook.com/plugins/like.php?app_id=156518444414150&href=www.facebook.com%2Fcommentluv&send=false&layout=standard&width=230&show_faces=false&action=like&colorscheme=light&font&height=50" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:220px; height:50px;" allowTransparency="true"></iframe></td></tr>
|
1519 |
<tr class="alt"><td colspan="2"><?php _e('News',$this->plugin_domain);?>:</td></tr>
|
1520 |
<tr><td colspan="2">
|
1521 |
-
<?php
|
1522 |
-
|
|
|
|
|
1523 |
wp_rss('http://comluv.com/category/newsletter/feed',3);?>
|
1524 |
</td></tr>
|
1525 |
<tr class="alt"><td colspan="2"><?php _e('Thanks to the following for translations',$this->plugin_domain);?>:</td></tr>
|
@@ -1536,15 +1569,16 @@
|
|
1536 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/es.png"/> <?php _e('Spanish',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.activosenred.com/">Valentin Yonte</a></td></tr>
|
1537 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/de.png"/> <?php _e('German',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.cloudliving.de/">Jan Ruehling</a></td></tr>
|
1538 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/ir.png"/> <?php _e('Persian',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.3eo.ir/">Amir heydari</a></td></tr>
|
|
|
|
|
|
|
|
|
|
|
1539 |
<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>
|
1540 |
-
|
1541 |
<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>
|
1542 |
<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://referenceurfreelance.com/">Leo</a>--></td></tr>
|
1543 |
-
|
1544 |
-
<tr><td><img src="<?php echo $this->plugin_url;?>images/ro.png"/> <?php _e('Romanian',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.mlb.ro/">Bogdan Martinescu</a>--></td></tr>
|
1545 |
-
|
1546 |
<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>
|
1547 |
-
|
1548 |
<tr><td><strong><?php _e('Want your link here?',$this->plugin_domain);?></strong></td><td><a target="_blank" href="http://support.commentluv.com/ticket/knowledgebase.php?article=1"><?php _e('How To Submit A Translation',$this->plugin_domain);?></a></td></tr>
|
1549 |
<tr class="alt"><td colspan="2"><?php _e('Special thanks go to the following',$this->plugin_domain);?>:</td></tr>
|
1550 |
<tr><td><strong><?php _e('CSS Help',$this->plugin_domain);?>:</strong></td><td><a href="http://www.famousbloggers.net" target="_blank">Hesham Zebida</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.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.90.8";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
273 |
*/
|
274 |
function add_settings_page_script (){
|
275 |
wp_enqueue_script ('notify_signup', $this->plugin_url . 'js/notify_signup.js', array('jquery'),$this->version );
|
276 |
+
wp_localize_script ( 'notify_signup', 'notify_signup_settings', array('wait_message'=>__('Please wait',$this->plugin_domain),'notify_success1' => __('Please check your inbox, an email will be sent to',$this->plugin_domain), 'notify_success2'=>__('in the next few minutes with a confirmation link',$this->plugin_domain), 'notify_fail'=>__('An error happened with the request. Try signing up at the site',$this->plugin_domain),'image_url'=>$this->plugin_url.'images/','default_image'=>'CL91_default.png', 'white'=>'CL91_White.gif','black'=>'CL91_Black.gif','none'=>'nothing.gif'));
|
277 |
wp_enqueue_script('thickbox',null,array('jquery'));
|
278 |
echo "<link rel='stylesheet' href='/".WPINC."/js/thickbox/thickbox.css?ver=20080613' type='text/css' media='all' />\n";
|
279 |
}
|
293 |
// whitelist options
|
294 |
register_setting( 'commentluv_options_group', $this->db_option ,array(&$this,'options_sanitize' ) );
|
295 |
$options = $this->get_options();
|
296 |
+
if(isset($options['upgrade'])){
|
297 |
add_action('admin_notices',array(&$this,'show_upgrade_notice'));
|
298 |
}
|
299 |
// has the comment meta table?
|
300 |
global $wpdb;
|
301 |
$query = $wpdb->prepare("SHOW tables LIKE '{$wpdb->commentmeta}'");
|
302 |
$dbtable = $wpdb->get_var($query);
|
303 |
+
//$o['dbtable'] = $dbtable;
|
304 |
if(!$dbtable){
|
305 |
add_action('admin_notices',create_function('','echo "<div class=\"error\">'.__('Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!',$pd).'<br>'.__(' CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->',$pd).'<a target=\"_blank\" href=\"http://wordpress.org/support/topic/wp_commentmeta-table-a39xxxx2_blogwp_commentmeta-doesnt-exist?replies=7#post-1378281\">'.__('Missing wp_commentmeta table',$pd).'</a></div>";'));
|
306 |
}
|
357 |
$url = 'http://version.commentluv.com/';
|
358 |
$name = strip_tags(get_bloginfo('name'));
|
359 |
$description = strip_tags(get_bloginfo('description'));
|
360 |
+
$numluv = $this->get_numluv();
|
361 |
+
$dofollow = $options['dofollow'];
|
362 |
+
$whogets = $options['whogets'];
|
363 |
+
$body = array('version'=>$version,'enabled'=>$options['enable'],'name'=>$name,'description'=>$description,'avatarmd5'=>md5(strtolower(get_bloginfo('admin_email'))),'numluv'=>$numluv,'dofollow'=>$dofollow,'whogets'=>$whogets);
|
364 |
$response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
|
365 |
$latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
|
366 |
$message = wp_remote_retrieve_header($response,'message');
|
421 |
function detect_useragent(){
|
422 |
$options = $this->get_options();
|
423 |
// dont do anything if detect is disabled
|
424 |
+
if(isset($_POST['version_check'])){
|
425 |
+
$this->check_version();
|
426 |
+
}
|
427 |
+
if(isset($options['disable_detect']) && $options['disable_detect'] == 'on'){
|
428 |
return;
|
429 |
}
|
430 |
// is this commentluv calling?
|
455 |
// dropdown choice
|
456 |
if($options['badge_choice'] == 'drop_down'){
|
457 |
if($options['badge_type'] != 'none'){
|
458 |
+
$badges = array('default'=>'CL91_default.png','default_image'=>'CL91_default.png','white'=>'CL91_White.gif','black'=>'CL91_Black.gif');
|
459 |
$imgurl = $this->plugin_url.'images/'.$badges[$options['badge_type']];
|
460 |
}
|
461 |
}
|
861 |
header( "Content-Type: application/json" );
|
862 |
echo $response;
|
863 |
exit;
|
864 |
+
}
|
865 |
+
/**
|
866 |
+
* find number of approved comments in the past 14 days to have a commentluv link
|
867 |
+
* called in check_version
|
868 |
+
* since 2.90.8
|
869 |
+
* @return int
|
870 |
+
*/
|
871 |
+
function get_numluv(){
|
872 |
+
global $wpdb;
|
873 |
+
$query = $wpdb->prepare('SELECT count(*) FROM '.$wpdb->commentmeta.' m JOIN '.$wpdb->comments.' c ON m.comment_id = c.comment_ID WHERE m.meta_key = %s AND c.comment_approved = %s AND c.comment_date > NOW() - INTERVAL 14 DAY','cl_data','1');
|
874 |
+
return intval($wpdb->get_var($query));
|
875 |
+
}
|
876 |
/** get_options
|
877 |
* This function sets default options and handles a reset to default options
|
878 |
* @param string $reset = 'no' - whether to return default settings
|
885 |
$register_link = apply_filters('register','<a href="' . site_url('wp-login.php?action=register', 'login') . '">' . __('Register') . '</a>');
|
886 |
}
|
887 |
// default values
|
888 |
+
$this->handle_load_domain ();
|
889 |
$default = array ('version'=>$this->version,'enable'=>'yes','enable_for'=>'both', 'default_on' => 'on', 'default_on_admin'=>'on',
|
890 |
'badge_choice' => 'drop_down', 'badge_type'=>'default', 'link'=>'off','infopanel'=>'on', 'infoback'=>'white', 'infotext'=>'black',
|
891 |
'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'..[lastpost]', 'whogets'=>'registered', 'dofollow' => 'registered',
|
894 |
'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment');
|
895 |
$options = get_option ( $this->db_option, $default);
|
896 |
// return the options
|
897 |
+
if($reset == 'yes'){
|
898 |
return $default;
|
899 |
}
|
900 |
if(!$options['api_url']){
|
901 |
$options['api_url'] = admin_url('admin-ajax.php');
|
902 |
}
|
903 |
+
if(!$options['enable']){
|
904 |
+
$options['enable'] = 'yes';
|
905 |
+
}
|
906 |
+
|
907 |
return $options;
|
908 |
}
|
909 |
/** handle_load_domain
|
950 |
// new addition to technical settings after 2.90.1 release
|
951 |
if(version_compare($installed_version,'2.9.0.1','<')){
|
952 |
$options['api_url'] = admin_url('admin-ajax.php');
|
953 |
+
$options['enable'] = 'yes';
|
954 |
update_option($this->db_option,$options);
|
955 |
update_option('cl_version',$this->version);
|
956 |
}
|
1113 |
ob_clean();
|
1114 |
}
|
1115 |
$error = false;
|
1116 |
+
if($foundposts < 1 && ! $object->is_home){
|
1117 |
$error = true;
|
1118 |
}
|
1119 |
$enabled = $options['enable'];
|
1120 |
+
|
1121 |
// General checking
|
1122 |
if (preg_match("/Commentluv/i", $_SERVER['HTTP_USER_AGENT'])) {
|
1123 |
+
if($object->is_home){
|
1124 |
+
// we're on the home page so just get the last 10 posts (prevents a slider or other featured posts widget from making the object full of the featured posts)'
|
1125 |
+
wp_reset_query();
|
1126 |
+
$query = new WP_Query();
|
1127 |
+
remove_filter('found_posts',array(&$this,'send_feed'),-1,2);
|
1128 |
+
$object->posts = $query->query('showposts=10');
|
1129 |
+
}
|
1130 |
$feed = '<?xml version="1.0" encoding="'.get_bloginfo('charset').'" ?>
|
1131 |
<rss version="2.0">
|
1132 |
<channel>
|
1301 |
<td>
|
1302 |
<input type="radio" class="radio" name="<?php echo $dbo;?>[badge_choice]" value="drop_down" <?php checked($o['badge_choice'],'drop_down');?>/>
|
1303 |
<select id="badge_type" name="<?php echo $dbo;?>[badge_type]">
|
1304 |
+
<option value="default_image" <?php selected($o['badge_type'],'default_image');?>><?php _e('Default',$pd);?></option>
|
1305 |
<option value="white" <?php selected($o['badge_type'],'white');?>><?php _e('White',$pd);?></option>
|
1306 |
<option value="black" <?php selected($o['badge_type'],'black');?>><?php _e('Black',$pd);?></option>
|
1307 |
<option value="none" <?php selected($o['badge_type'],'none');?>><?php _e('None',$pd);?></option>
|
1354 |
<tr>
|
1355 |
<td colspan="2">
|
1356 |
<label for="<?php echo $dbo;?>[comment_text]"><?php _e('Text to be displayed in the comment',$pd);?></label>
|
1357 |
+
<br><input type="text" style="width: 95%" name="<?php echo $dbo;?>[comment_text]" value="<?php echo $o['comment_text'];?>"/>
|
1358 |
</td>
|
1359 |
<td style="border: 1px dashed #dfdfdf;"><?php _e('[name] = The users name',$this->plugin_domain);?><br><?php _e('[lastpost] = The last blog post link',$this->plugin_domain);?></td>
|
1360 |
<td> </td>
|
1365 |
|
1366 |
<?php _e('Message for unregistered user in the drop down box',$pd);?>
|
1367 |
<br>(<?php _e('Message will not be shown if you do not have registrations enabled',$this->plugin_domain);?>)
|
1368 |
+
<br><textarea rows="5" style="width: 95%" name="<?php echo $dbo;?>[unreg_user_text]"><?php echo $o['unreg_user_text'];?></textarea>
|
1369 |
<?php
|
1370 |
if(get_option('users_can_register')){
|
1371 |
_e('Your register link code',$pd);
|
1372 |
echo '<br>';
|
1373 |
_e('(this will be automatically added if you have not added it yourself to the textarea above)',$pd);
|
1374 |
$register_link = apply_filters('register','<a href="' . site_url('wp-login.php?action=register', 'login') . '">' . __('Register') . '</a>');
|
1375 |
+
echo ' : <input style="width:95%" type="text" value="'.$register_link.'" disabled/>';
|
1376 |
}
|
1377 |
?>
|
1378 |
</td>
|
1391 |
<td colspan="3">
|
1392 |
<?php _e('Message for unregistered user in the info panel',$pd);?>
|
1393 |
<br>(<?php _e('Message will not be shown if you do not have registrations enabled',$this->plugin_domain);?>)
|
1394 |
+
<br><textarea rows="5" style="width:95%;" name="<?php echo $dbo;?>[unreg_user_text_panel]"><?php echo $o['unreg_user_text_panel'];?></textarea>
|
1395 |
</td>
|
1396 |
<td></td>
|
1397 |
<td></td>
|
1549 |
<tr><td colspan="2"><iframe src="http://www.facebook.com/plugins/like.php?app_id=156518444414150&href=www.facebook.com%2Fcommentluv&send=false&layout=standard&width=230&show_faces=false&action=like&colorscheme=light&font&height=50" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:220px; height:50px;" allowTransparency="true"></iframe></td></tr>
|
1550 |
<tr class="alt"><td colspan="2"><?php _e('News',$this->plugin_domain);?>:</td></tr>
|
1551 |
<tr><td colspan="2">
|
1552 |
+
<?php
|
1553 |
+
if(!function_exists('wp_rss')){
|
1554 |
+
include_once(ABSPATH . WPINC . '/rss.php');
|
1555 |
+
}
|
1556 |
wp_rss('http://comluv.com/category/newsletter/feed',3);?>
|
1557 |
</td></tr>
|
1558 |
<tr class="alt"><td colspan="2"><?php _e('Thanks to the following for translations',$this->plugin_domain);?>:</td></tr>
|
1569 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/es.png"/> <?php _e('Spanish',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.activosenred.com/">Valentin Yonte</a></td></tr>
|
1570 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/de.png"/> <?php _e('German',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.cloudliving.de/">Jan Ruehling</a></td></tr>
|
1571 |
<tr><td><img src="<?php echo $this->plugin_url;?>images/ir.png"/> <?php _e('Persian',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.3eo.ir/">Amir heydari</a></td></tr>
|
1572 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/ta.png"/> <?php _e('Tamil',$this->plugin_domain);?></td><td><a target="_blank" href="http://technostreak.com/">Tharun</a></td></tr>
|
1573 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/ua.png"/> <?php _e('Ukranian',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.designcontest.com/">Alyona Lompar</a></td></tr>
|
1574 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/lv.png"/> <?php _e('Latvian',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.yourwebagency.co.uk/">Edgars Bergs</a></td></tr>
|
1575 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/ro.png"/> <?php _e('Romanian',$this->plugin_domain);?></td><td><a target="_blank" href="http://obisnuit.eu/">Manuel Cheta</a></td></tr>
|
1576 |
+
<tr><td><img src="<?php echo $this->plugin_url;?>images/no.png"/> <?php _e('Norwegian',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.drommeland.com/">Hanna</a></td></tr>
|
1577 |
<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>
|
|
|
1578 |
<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>
|
1579 |
<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://referenceurfreelance.com/">Leo</a>--></td></tr>
|
1580 |
+
|
|
|
|
|
1581 |
<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>
|
|
|
1582 |
<tr><td><strong><?php _e('Want your link here?',$this->plugin_domain);?></strong></td><td><a target="_blank" href="http://support.commentluv.com/ticket/knowledgebase.php?article=1"><?php _e('How To Submit A Translation',$this->plugin_domain);?></a></td></tr>
|
1583 |
<tr class="alt"><td colspan="2"><?php _e('Special thanks go to the following',$this->plugin_domain);?>:</td></tr>
|
1584 |
<tr><td><strong><?php _e('CSS Help',$this->plugin_domain);?>:</strong></td><td><a href="http://www.famousbloggers.net" target="_blank">Hesham Zebida</a></td></tr>
|
css/commentluv.css
CHANGED
@@ -7,7 +7,7 @@ span#showmorespan { width: 30px; height: 15px; cursor: pointer;}
|
|
7 |
div#lastposts { padding: 3px; border: 1px dashed #dfdfdf; background-color: white;}
|
8 |
input.cl_error { border: 1px solid red !important;}
|
9 |
/** drop down **/
|
10 |
-
span.choosepost {background-color: #fff;line-height: 1.4em; display: block;border-bottom: 1px dashed #bbb;cursor: pointer; margin-bottom: 5px;}
|
11 |
span.choosepost:hover { font-weight: bolder; text-shadow: #dfdfdf 2px 2px 1px ; filter: Shadow(Color=gray,
|
12 |
Direction=135,
|
13 |
Strength=2);}
|
7 |
div#lastposts { padding: 3px; border: 1px dashed #dfdfdf; background-color: white;}
|
8 |
input.cl_error { border: 1px solid red !important;}
|
9 |
/** drop down **/
|
10 |
+
span.choosepost {background-color: #fff; color: black; line-height: 1.4em; display: block;border-bottom: 1px dashed #bbb;cursor: pointer; margin-bottom: 5px;}
|
11 |
span.choosepost:hover { font-weight: bolder; text-shadow: #dfdfdf 2px 2px 1px ; filter: Shadow(Color=gray,
|
12 |
Direction=135,
|
13 |
Strength=2);}
|
images/lv.png
ADDED
Binary file
|
images/no.png
ADDED
Binary file
|
images/ta.png
ADDED
Binary file
|
images/ua.png
ADDED
Binary file
|
js/commentluv.js
CHANGED
@@ -185,7 +185,7 @@ function cl_dostuff(){
|
|
185 |
}else if(x.status==500){
|
186 |
cl_message('Internal Server Error.' + x.response);
|
187 |
}else if(e=='parsererror'){
|
188 |
-
cl_message('Error.\nParsing JSON Request failed.' + x.
|
189 |
}else if(e=='timeout'){
|
190 |
cl_message('Request Time out.');
|
191 |
}else {
|
185 |
}else if(x.status==500){
|
186 |
cl_message('Internal Server Error.' + x.response);
|
187 |
}else if(e=='parsererror'){
|
188 |
+
cl_message('Error.\nParsing JSON Request failed.' + x.responseText);
|
189 |
}else if(e=='timeout'){
|
190 |
cl_message('Request Time out.');
|
191 |
}else {
|
lang/commenluv-ro_RO.mo
ADDED
Binary file
|
lang/commentluv-it_IT.mo
CHANGED
Binary file
|
lang/commentluv-it_IT.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
-
"Language-Team: Gianni Diurno | gidibao.net\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -24,564 +24,606 @@ msgstr "CommentLuv richiede Wordpress 3.0 o superiore."
|
|
24 |
msgid "Please Update!"
|
25 |
msgstr "Aggiorna!"
|
26 |
|
27 |
-
#: ../commentluv.php:
|
28 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
29 |
msgstr "Inserisci un URL e clicca sulla casella di verifica di CommentLuv qualora volessi aggiungere i tuoi ultimi articoli"
|
30 |
|
31 |
-
#: ../commentluv.php:
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Aggiungi http:// davanti al tuo url"
|
34 |
|
35 |
-
#: ../commentluv.php:
|
36 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
37 |
msgstr "Vai nella bacheca ed aggiorna i dettagli per il tuo profilo aggiungendo l'URL del tuo sito"
|
38 |
|
39 |
-
#: ../commentluv.php:
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
42 |
|
43 |
-
#: ../commentluv.php:
|
44 |
msgid "Please wait"
|
45 |
msgstr "Attendi un attimo"
|
46 |
|
47 |
-
#: ../commentluv.php:
|
48 |
msgid "Please check your inbox, an email will be sent to"
|
49 |
msgstr "Vai nella tua casella di posta... ti arriverà una email"
|
50 |
|
51 |
-
#: ../commentluv.php:
|
52 |
msgid "in the next few minutes with a confirmation link"
|
53 |
msgstr "nei prossimi mminuti con il link per la conferma"
|
54 |
|
55 |
-
#: ../commentluv.php:
|
56 |
msgid "An error happened with the request. Try signing up at the site"
|
57 |
msgstr "Si é verificato un errore durante la richiesta. Prova a registrarti nel sito"
|
58 |
|
59 |
-
#: ../commentluv.php:
|
60 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
61 |
msgstr "La tua installazione di WordPress é priva della tabella <strong>wp_commentmeta</strong>!"
|
62 |
|
63 |
-
#: ../commentluv.php:
|
64 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
65 |
msgstr " CommentLuv non può funzionare senza questa tabella. Leggi questo post nel forum di WP per imparare coma aggiungerne una ->"
|
66 |
|
67 |
-
#: ../commentluv.php:
|
68 |
msgid "Missing wp_commentmeta table"
|
69 |
msgstr "Manca la tabella wp_commentmeta"
|
70 |
|
71 |
-
#: ../commentluv.php:
|
72 |
msgid "Twice Monthly"
|
73 |
msgstr "Quindicinale"
|
74 |
|
75 |
-
#: ../commentluv.php:
|
76 |
msgid "CommentLuv is enabled"
|
77 |
msgstr "CommentLuv é attivo"
|
78 |
|
79 |
-
#: ../commentluv.php:
|
80 |
msgid "Show more posts"
|
81 |
msgstr "Mostra più articoli"
|
82 |
|
83 |
-
#: ../commentluv.php:
|
84 |
msgid "I have only commented on this post"
|
85 |
msgstr "Ho commentato solo in questo articolo"
|
86 |
|
87 |
-
#: ../commentluv.php:
|
88 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
89 |
msgstr "Avessi fatto molti commenti su questo sito, qui puoi trovarne degli altri"
|
90 |
|
91 |
-
#: ../commentluv.php:
|
92 |
msgid "User has not saved a description in their profile page"
|
93 |
msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
|
94 |
|
95 |
-
#: ../commentluv.php:
|
96 |
msgid "is the administrator of this site"
|
97 |
msgstr "é l'amministratore di questo sito"
|
98 |
|
99 |
-
#: ../commentluv.php:
|
100 |
msgid "is a registered member of my site"
|
101 |
msgstr "é un utente registrato nel mio sito"
|
102 |
|
103 |
-
#: ../commentluv.php:
|
104 |
-
#: ../commentluv.php:
|
105 |
msgid "Clicks on this link on this comment"
|
106 |
msgstr "Clicca il link su questo commento"
|
107 |
|
108 |
-
#: ../commentluv.php:
|
109 |
-
#: ../commentluv.php:
|
110 |
msgid "approved comments on this site"
|
111 |
msgstr "commenti approvati per questo sito"
|
112 |
|
113 |
-
#: ../commentluv.php:
|
114 |
-
#: ../commentluv.php:
|
115 |
msgid "Some other posts I have commented on"
|
116 |
msgstr "Altri commenti ai quali ho partecipato"
|
117 |
|
118 |
-
#: ../commentluv.php:
|
119 |
msgid "Some of my other posts"
|
120 |
msgstr "Alcuni dei miei articoli"
|
121 |
|
122 |
-
#: ../commentluv.php:
|
123 |
msgid "has not registered on this site"
|
124 |
msgstr "non é registrato nel mio sito"
|
125 |
|
126 |
-
#: ../commentluv.php:
|
127 |
msgid "Could not get posts for home blog"
|
128 |
msgstr "Impossibile recuperare gli articoli"
|
129 |
|
130 |
-
#: ../commentluv.php:
|
131 |
-
|
132 |
-
|
|
|
133 |
|
134 |
-
#: ../commentluv.php:
|
135 |
-
#: ../commentluv.php:
|
|
|
136 |
msgid "Register"
|
137 |
msgstr "Registrati"
|
138 |
|
139 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
140 |
msgid "recently posted"
|
141 |
msgstr "pubblicati di recente"
|
142 |
|
143 |
-
#: ../commentluv.php:
|
144 |
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."
|
145 |
msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
|
146 |
|
147 |
-
#: ../commentluv.php:
|
148 |
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"
|
149 |
msgstr "Se questo utente si fosse registrato nel mio sito, avrebbe potuto mostrare nel commento 10 dei suoi articoli recenti e tu avresti potuto vedere in questo pannello la lista dei suoi post"
|
150 |
|
151 |
-
#: ../commentluv.php:
|
152 |
msgid "Settings"
|
153 |
msgstr "Impostazioni"
|
154 |
|
155 |
-
#: ../commentluv.php:
|
156 |
msgid "No Posts Were Found!"
|
157 |
msgstr "Non é stato trovato nessun articolo!"
|
158 |
|
159 |
-
#: ../commentluv.php:
|
160 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
161 |
msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
|
162 |
|
163 |
-
#: ../commentluv.php:
|
164 |
msgid "Dismiss notice"
|
165 |
msgstr "Avviso rinuncia"
|
166 |
|
167 |
-
#: ../commentluv.php:
|
168 |
msgid "CommentLuv Settings v"
|
169 |
msgstr "Impostazioni CommentLuv v"
|
170 |
|
171 |
-
#: ../commentluv.php:
|
172 |
msgid "Important!"
|
173 |
msgstr "Importante!"
|
174 |
|
175 |
-
#: ../commentluv.php:
|
176 |
msgid "Subscription Information"
|
177 |
msgstr "Informazioni abbonamento"
|
178 |
|
179 |
-
#: ../commentluv.php:
|
180 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
181 |
msgstr "La versione premium 3.0 di CommentLuv sta per arrivare!"
|
182 |
|
183 |
-
#: ../commentluv.php:
|
184 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
185 |
msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
|
186 |
|
187 |
-
#: ../commentluv.php:
|
188 |
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"
|
189 |
msgstr "Verrà rilasciata a breve una versione premium di premium CommentLuv grazie alla quale potrai avere un maggiore controlo sul plugin nonché avere delle nuove opzioni esclusive quali le parole chiave, le registrazioni inline e molto altro ancora!. Registrandoti scoprirai quando sarà disponibile"
|
190 |
|
191 |
-
#: ../commentluv.php:
|
192 |
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"
|
193 |
msgstr "Se ti fossi già iscritto oppure non avessi ancora ricevuto la verifica entro le 12 ore, clicca sul pulsante per un nuovo invio o compila il modulo presso "
|
194 |
|
195 |
-
#: ../commentluv.php:
|
196 |
msgid "Resend Verification"
|
197 |
msgstr "Reinvia verifica"
|
198 |
|
199 |
-
#: ../commentluv.php:
|
200 |
msgid "Click to register now!"
|
201 |
msgstr "Clicca per registrarti adesso!"
|
202 |
|
203 |
-
#: ../commentluv.php:
|
204 |
msgid "Primary Setting"
|
205 |
msgstr "Impostazioni principali"
|
206 |
|
207 |
-
#: ../commentluv.php:
|
208 |
-
#: ../commentluv.php:
|
209 |
-
#: ../commentluv.php:
|
210 |
-
#: ../commentluv.php:
|
211 |
-
#: ../commentluv.php:
|
212 |
msgid "Help Video"
|
213 |
msgstr "Video aiuto"
|
214 |
|
215 |
-
#: ../commentluv.php:
|
216 |
msgid "Enable CommentLuv?"
|
217 |
msgstr "Attivare CommentLuv?"
|
218 |
|
219 |
-
#: ../commentluv.php:
|
220 |
msgid "Yes"
|
221 |
msgstr "Sì"
|
222 |
|
223 |
-
#: ../commentluv.php:
|
224 |
msgid "No"
|
225 |
msgstr "No"
|
226 |
|
227 |
-
#: ../commentluv.php:
|
228 |
msgid "On Posts"
|
229 |
msgstr " negli articoli"
|
230 |
|
231 |
-
#: ../commentluv.php:
|
232 |
msgid "On Pages"
|
233 |
msgstr " nelle pagine"
|
234 |
|
235 |
-
#: ../commentluv.php:
|
236 |
msgid "On Both"
|
237 |
msgstr " su entrambi"
|
238 |
|
239 |
-
#: ../commentluv.php:
|
240 |
msgid "On by default?"
|
241 |
msgstr "attivo come predefinita?"
|
242 |
|
243 |
-
#: ../commentluv.php:
|
244 |
msgid "On for admin?"
|
245 |
msgstr "attivo per l'amministratore?"
|
246 |
|
247 |
-
#: ../commentluv.php:
|
248 |
msgid "Appearance"
|
249 |
msgstr "Aspetto"
|
250 |
|
251 |
-
#: ../commentluv.php:
|
252 |
msgid "Badge"
|
253 |
msgstr "badge"
|
254 |
|
255 |
-
#: ../commentluv.php:
|
256 |
msgid "Custom Image URL"
|
257 |
msgstr "URL immagine"
|
258 |
|
259 |
-
#: ../commentluv.php:
|
260 |
msgid "Use Text"
|
261 |
msgstr "utilizza testo"
|
262 |
|
263 |
-
#: ../commentluv.php:
|
264 |
msgid "Default"
|
265 |
msgstr "Predefinito"
|
266 |
|
267 |
-
#: ../commentluv.php:
|
268 |
msgid "White"
|
269 |
msgstr "Bianco"
|
270 |
|
271 |
-
#: ../commentluv.php:
|
272 |
msgid "Black"
|
273 |
msgstr "Nero"
|
274 |
|
275 |
-
#: ../commentluv.php:
|
276 |
msgid "None"
|
277 |
msgstr "Nessuno"
|
278 |
|
279 |
-
#: ../commentluv.php:
|
280 |
msgid "Link to Commentluv?"
|
281 |
msgstr "link a Commentluv?"
|
282 |
|
283 |
-
#: ../commentluv.php:
|
284 |
msgid "Enable info panel?"
|
285 |
msgstr "pannello info?"
|
286 |
|
287 |
-
#: ../commentluv.php:
|
288 |
msgid "Info panel background color"
|
289 |
msgstr "colore sfondo pannello info"
|
290 |
|
291 |
-
#: ../commentluv.php:
|
292 |
msgid "Info panel text color"
|
293 |
msgstr "colore testo pannello info"
|
294 |
|
295 |
-
#: ../commentluv.php:
|
296 |
msgid "Example text and background color"
|
297 |
msgstr "esempio di testo e colore di sfondo"
|
298 |
|
299 |
-
#: ../commentluv.php:
|
300 |
msgid "Messages"
|
301 |
msgstr "Messaggi"
|
302 |
|
303 |
-
#: ../commentluv.php:
|
304 |
msgid "Text to be displayed in the comment"
|
305 |
msgstr "testo da mostrare nel commento"
|
306 |
|
307 |
-
#: ../commentluv.php:
|
308 |
msgid "[name] = The users name"
|
309 |
msgstr "[name] = nome utente"
|
310 |
|
311 |
-
#: ../commentluv.php:
|
312 |
msgid "[lastpost] = The last blog post link"
|
313 |
msgstr "[lastpost] = link a ultimo articolo"
|
314 |
|
315 |
-
#: ../commentluv.php:
|
316 |
msgid "Message for unregistered user in the drop down box"
|
317 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
318 |
|
319 |
-
#: ../commentluv.php:
|
320 |
-
#: ../commentluv.php:
|
321 |
msgid "Message will not be shown if you do not have registrations enabled"
|
322 |
msgstr "Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
|
323 |
|
324 |
-
#: ../commentluv.php:
|
325 |
msgid "Your register link code"
|
326 |
msgstr "Il tuo codice link registrazione"
|
327 |
|
328 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
329 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
330 |
msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
|
331 |
|
332 |
-
#: ../commentluv.php:
|
333 |
msgid "here"
|
334 |
msgstr "qui"
|
335 |
|
336 |
-
#: ../commentluv.php:
|
337 |
msgid "Message for unregistered user in the info panel"
|
338 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
339 |
|
340 |
-
#: ../commentluv.php:
|
341 |
msgid "Operational Settings"
|
342 |
msgstr "Impostazioni di gestione"
|
343 |
|
344 |
-
#: ../commentluv.php:
|
345 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
346 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
347 |
|
348 |
-
#: ../commentluv.php:
|
349 |
msgid "Only Registered Members"
|
350 |
msgstr "solo i membri registrati"
|
351 |
|
352 |
-
#: ../commentluv.php:
|
353 |
msgid "Everybody"
|
354 |
msgstr "chiunque"
|
355 |
|
356 |
-
#: ../commentluv.php:
|
357 |
msgid "Nobody"
|
358 |
msgstr "nessuno"
|
359 |
|
360 |
-
#: ../commentluv.php:
|
361 |
msgid "Whose links should be dofollow?"
|
362 |
msgstr "assegnazione dei link dofollow?"
|
363 |
|
364 |
-
#: ../commentluv.php:
|
365 |
msgid "Only Registered Members Links"
|
366 |
msgstr "solo per gli utenti registrati"
|
367 |
|
368 |
-
#: ../commentluv.php:
|
369 |
msgid "Everybody gets dofollow links"
|
370 |
msgstr "link dofollow per chiunque"
|
371 |
|
372 |
-
#: ../commentluv.php:
|
373 |
msgid "Nobody gets dofollow links"
|
374 |
msgstr "nessuno"
|
375 |
|
376 |
-
#: ../commentluv.php:
|
377 |
msgid "Technical Settings"
|
378 |
msgstr "Impostazioni tecniche"
|
379 |
|
380 |
-
#: ../commentluv.php:
|
381 |
msgid "Click to open technical settings"
|
382 |
msgstr "Clicca per aprire"
|
383 |
|
384 |
-
#: ../commentluv.php:
|
385 |
msgid "Please check the help video for this section before changing settings"
|
386 |
msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
|
387 |
|
388 |
-
#: ../commentluv.php:
|
389 |
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"
|
390 |
msgstr "Nella maggior parte dei casi, NON dovrai modificare le impostazioni di questa sezione a meno che tu non abbia un template o modulo dei commenti personalizzato oppure stessi facendo uso di un plugin per la cache/minimizzazione"
|
391 |
|
392 |
-
#: ../commentluv.php:
|
393 |
msgid "Compatibility"
|
394 |
msgstr "Compatibilità"
|
395 |
|
396 |
-
#: ../commentluv.php:
|
397 |
msgid "Use manual insert of badge code?"
|
398 |
msgstr "inserire manualmente il codice?"
|
399 |
|
400 |
-
#: ../commentluv.php:
|
401 |
msgid "Enable minifying compatibility?"
|
402 |
msgstr "attivare compatibilità minimizzazione?"
|
403 |
|
404 |
-
#: ../commentluv.php:
|
405 |
msgid "For caching plugins (places localized code in footer)"
|
406 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
407 |
|
408 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
msgid "API URL"
|
410 |
msgstr "URL API"
|
411 |
|
412 |
-
#: ../commentluv.php:
|
413 |
msgid "URL to use for API"
|
414 |
msgstr "URL da utilizzare per la API"
|
415 |
|
416 |
-
#: ../commentluv.php:
|
417 |
msgid "Comment Form Field Values"
|
418 |
msgstr "Valori campo modulo commenti"
|
419 |
|
420 |
-
#: ../commentluv.php:
|
421 |
msgid "Authors Name field name"
|
422 |
msgstr "nome per il campo autore"
|
423 |
|
424 |
-
#: ../commentluv.php:
|
425 |
msgid "Email field name"
|
426 |
msgstr "nome per il campo email"
|
427 |
|
428 |
-
#: ../commentluv.php:
|
429 |
msgid "Authors URL field name"
|
430 |
msgstr "nome per il campo URL autore"
|
431 |
|
432 |
-
#: ../commentluv.php:
|
433 |
msgid "Comment Text Area name"
|
434 |
msgstr "nome per l'area di testo dei commenti"
|
435 |
|
436 |
-
#: ../commentluv.php:
|
437 |
msgid "Diagnostics Info"
|
438 |
msgstr "Info diagnostica"
|
439 |
|
440 |
-
#: ../commentluv.php:
|
441 |
msgid "You can copy this information and send it to me if I request it"
|
442 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
443 |
|
444 |
-
#: ../commentluv.php:
|
445 |
msgid "Save Settings"
|
446 |
msgstr "Salva le impostazioni"
|
447 |
|
448 |
-
#: ../commentluv.php:
|
449 |
msgid "Reset Settings"
|
450 |
msgstr "Ripristino impostazioni"
|
451 |
|
452 |
-
#: ../commentluv.php:
|
453 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
454 |
msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
|
455 |
|
456 |
-
#: ../commentluv.php:
|
457 |
msgid "Reset"
|
458 |
msgstr "Azzera"
|
459 |
|
460 |
-
#: ../commentluv.php:
|
461 |
msgid "Plugin Info"
|
462 |
msgstr "Info sul plugin"
|
463 |
|
464 |
-
#: ../commentluv.php:
|
465 |
msgid "Start Here"
|
466 |
msgstr "Inizia qui"
|
467 |
|
468 |
-
#: ../commentluv.php:
|
469 |
msgid "Author"
|
470 |
msgstr "Autore"
|
471 |
|
472 |
-
#: ../commentluv.php:
|
473 |
msgid "Home Page"
|
474 |
msgstr "Home Page"
|
475 |
|
476 |
-
#: ../commentluv.php:
|
477 |
msgid "Visit www.commentluv.com!"
|
478 |
msgstr "Visita www.commentluv.com!"
|
479 |
|
480 |
-
#: ../commentluv.php:
|
481 |
msgid "Social"
|
482 |
msgstr "Social"
|
483 |
|
484 |
-
#: ../commentluv.php:
|
485 |
msgid "Help"
|
486 |
msgstr "Aiuto"
|
487 |
|
488 |
-
#: ../commentluv.php:
|
489 |
msgid "Help Desk"
|
490 |
msgstr "Sezione aiuto"
|
491 |
|
492 |
-
#: ../commentluv.php:
|
493 |
msgid "Do you like this plugin?"
|
494 |
msgstr "Ti piace questo plugin?"
|
495 |
|
496 |
-
#: ../commentluv.php:
|
497 |
msgid "News"
|
498 |
msgstr "Notizie"
|
499 |
|
500 |
-
#: ../commentluv.php:
|
501 |
msgid "Thanks to the following for translations"
|
502 |
msgstr "Un grazie ai seguenti traduttori"
|
503 |
|
504 |
-
#: ../commentluv.php:
|
505 |
msgid "Italian"
|
506 |
msgstr "Italiano"
|
507 |
|
508 |
-
#: ../commentluv.php:
|
509 |
msgid "Dutch"
|
510 |
msgstr "Olandese"
|
511 |
|
512 |
-
#: ../commentluv.php:
|
513 |
msgid "Polish"
|
514 |
msgstr "Polacco"
|
515 |
|
516 |
-
#: ../commentluv.php:
|
517 |
msgid "Georgian"
|
518 |
msgstr "Georgiano"
|
519 |
|
520 |
-
#: ../commentluv.php:
|
521 |
msgid "Lithuanian"
|
522 |
msgstr "Lituano"
|
523 |
|
524 |
-
#: ../commentluv.php:
|
525 |
msgid "Portuguese"
|
526 |
msgstr "Portoghese"
|
527 |
|
528 |
-
#: ../commentluv.php:
|
529 |
msgid "Malaysian"
|
530 |
msgstr "Malese"
|
531 |
|
532 |
-
#: ../commentluv.php:
|
533 |
msgid "Hindi"
|
534 |
msgstr "Hindi"
|
535 |
|
536 |
-
#: ../commentluv.php:
|
537 |
msgid "Indonesian"
|
538 |
msgstr "Indonesiano"
|
539 |
|
540 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
msgid "Russian"
|
542 |
msgstr "Russo"
|
543 |
|
544 |
-
#: ../commentluv.php:
|
545 |
-
msgid "Chinese"
|
546 |
-
msgstr "Cinese"
|
547 |
-
|
548 |
-
#: ../commentluv.php:1428
|
549 |
msgid "Hebrew"
|
550 |
msgstr "Ebraico"
|
551 |
|
552 |
-
#: ../commentluv.php:
|
553 |
msgid "French"
|
554 |
msgstr "Francese"
|
555 |
|
556 |
-
#: ../commentluv.php:
|
557 |
-
msgid "Romanian"
|
558 |
-
msgstr "Rumeno"
|
559 |
-
|
560 |
-
#: ../commentluv.php:1432
|
561 |
-
msgid "German"
|
562 |
-
msgstr "Tedesco"
|
563 |
-
|
564 |
-
#: ../commentluv.php:1433
|
565 |
msgid "Arabic"
|
566 |
msgstr "Arabo"
|
567 |
|
568 |
-
#: ../commentluv.php:
|
569 |
msgid "Want your link here?"
|
570 |
msgstr "Vuoi il tuo link qui?"
|
571 |
|
572 |
-
#: ../commentluv.php:
|
573 |
msgid "How To Submit A Translation"
|
574 |
msgstr "Contribuisci alla traduzione"
|
575 |
|
576 |
-
#: ../commentluv.php:
|
577 |
msgid "Special thanks go to the following"
|
578 |
msgstr "Un grazie particolare a"
|
579 |
|
580 |
-
#: ../commentluv.php:
|
581 |
msgid "CSS Help"
|
582 |
msgstr "Aiuto CSS"
|
583 |
|
584 |
-
#: ../commentluv.php:
|
585 |
msgid "Badge GFX"
|
586 |
msgstr "Badge GFX"
|
587 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-08-15 23:25+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
+
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
24 |
msgid "Please Update!"
|
25 |
msgstr "Aggiorna!"
|
26 |
|
27 |
+
#: ../commentluv.php:250
|
28 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
29 |
msgstr "Inserisci un URL e clicca sulla casella di verifica di CommentLuv qualora volessi aggiungere i tuoi ultimi articoli"
|
30 |
|
31 |
+
#: ../commentluv.php:251
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Aggiungi http:// davanti al tuo url"
|
34 |
|
35 |
+
#: ../commentluv.php:252
|
36 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
37 |
msgstr "Vai nella bacheca ed aggiorna i dettagli per il tuo profilo aggiungendo l'URL del tuo sito"
|
38 |
|
39 |
+
#: ../commentluv.php:253
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
42 |
|
43 |
+
#: ../commentluv.php:276
|
44 |
msgid "Please wait"
|
45 |
msgstr "Attendi un attimo"
|
46 |
|
47 |
+
#: ../commentluv.php:276
|
48 |
msgid "Please check your inbox, an email will be sent to"
|
49 |
msgstr "Vai nella tua casella di posta... ti arriverà una email"
|
50 |
|
51 |
+
#: ../commentluv.php:276
|
52 |
msgid "in the next few minutes with a confirmation link"
|
53 |
msgstr "nei prossimi mminuti con il link per la conferma"
|
54 |
|
55 |
+
#: ../commentluv.php:276
|
56 |
msgid "An error happened with the request. Try signing up at the site"
|
57 |
msgstr "Si é verificato un errore durante la richiesta. Prova a registrarti nel sito"
|
58 |
|
59 |
+
#: ../commentluv.php:305
|
60 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
61 |
msgstr "La tua installazione di WordPress é priva della tabella <strong>wp_commentmeta</strong>!"
|
62 |
|
63 |
+
#: ../commentluv.php:305
|
64 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
65 |
msgstr " CommentLuv non può funzionare senza questa tabella. Leggi questo post nel forum di WP per imparare coma aggiungerne una ->"
|
66 |
|
67 |
+
#: ../commentluv.php:305
|
68 |
msgid "Missing wp_commentmeta table"
|
69 |
msgstr "Manca la tabella wp_commentmeta"
|
70 |
|
71 |
+
#: ../commentluv.php:403
|
72 |
msgid "Twice Monthly"
|
73 |
msgstr "Quindicinale"
|
74 |
|
75 |
+
#: ../commentluv.php:452
|
76 |
msgid "CommentLuv is enabled"
|
77 |
msgstr "CommentLuv é attivo"
|
78 |
|
79 |
+
#: ../commentluv.php:493
|
80 |
msgid "Show more posts"
|
81 |
msgstr "Mostra più articoli"
|
82 |
|
83 |
+
#: ../commentluv.php:589
|
84 |
msgid "I have only commented on this post"
|
85 |
msgstr "Ho commentato solo in questo articolo"
|
86 |
|
87 |
+
#: ../commentluv.php:592
|
88 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
89 |
msgstr "Avessi fatto molti commenti su questo sito, qui puoi trovarne degli altri"
|
90 |
|
91 |
+
#: ../commentluv.php:617
|
92 |
msgid "User has not saved a description in their profile page"
|
93 |
msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
|
94 |
|
95 |
+
#: ../commentluv.php:629
|
96 |
msgid "is the administrator of this site"
|
97 |
msgstr "é l'amministratore di questo sito"
|
98 |
|
99 |
+
#: ../commentluv.php:631
|
100 |
msgid "is a registered member of my site"
|
101 |
msgstr "é un utente registrato nel mio sito"
|
102 |
|
103 |
+
#: ../commentluv.php:634
|
104 |
+
#: ../commentluv.php:653
|
105 |
msgid "Clicks on this link on this comment"
|
106 |
msgstr "Clicca il link su questo commento"
|
107 |
|
108 |
+
#: ../commentluv.php:634
|
109 |
+
#: ../commentluv.php:654
|
110 |
msgid "approved comments on this site"
|
111 |
msgstr "commenti approvati per questo sito"
|
112 |
|
113 |
+
#: ../commentluv.php:634
|
114 |
+
#: ../commentluv.php:655
|
115 |
msgid "Some other posts I have commented on"
|
116 |
msgstr "Altri commenti ai quali ho partecipato"
|
117 |
|
118 |
+
#: ../commentluv.php:634
|
119 |
msgid "Some of my other posts"
|
120 |
msgstr "Alcuni dei miei articoli"
|
121 |
|
122 |
+
#: ../commentluv.php:647
|
123 |
msgid "has not registered on this site"
|
124 |
msgstr "non é registrato nel mio sito"
|
125 |
|
126 |
+
#: ../commentluv.php:772
|
127 |
msgid "Could not get posts for home blog"
|
128 |
msgstr "Impossibile recuperare gli articoli"
|
129 |
|
130 |
+
#: ../commentluv.php:778
|
131 |
+
#: ../commentluv.php:1055
|
132 |
+
msgid "Warning! You have set to show 10 posts for registered users but you have not enabled user registrations on your site. You should change the operational settings in the CommentLuv settings page to show 10 posts for everyone or enable user registrations"
|
133 |
+
msgstr "Attenzione! Hai impostato a 10 il numero di articoli da mostrare per gli utenti registrati ma non hai abilitato la registrazione utenti per il tuo sito. Dovresti quindi modificare il setting operativo nella pagina delle impostazioni di CommentLuv in modo da poter mostrare 10 post per tutti oppure attivare le registrazioni utente"
|
134 |
|
135 |
+
#: ../commentluv.php:844
|
136 |
+
#: ../commentluv.php:885
|
137 |
+
#: ../commentluv.php:1374
|
138 |
msgid "Register"
|
139 |
msgstr "Registrati"
|
140 |
|
141 |
+
#: ../commentluv.php:849
|
142 |
+
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
143 |
+
msgstr "Se utente registrato, effettuare il login per avere 10 articoli da scegliere"
|
144 |
+
|
145 |
+
#: ../commentluv.php:891
|
146 |
msgid "recently posted"
|
147 |
msgstr "pubblicati di recente"
|
148 |
|
149 |
+
#: ../commentluv.php:892
|
150 |
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."
|
151 |
msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
|
152 |
|
153 |
+
#: ../commentluv.php:893
|
154 |
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"
|
155 |
msgstr "Se questo utente si fosse registrato nel mio sito, avrebbe potuto mostrare nel commento 10 dei suoi articoli recenti e tu avresti potuto vedere in questo pannello la lista dei suoi post"
|
156 |
|
157 |
+
#: ../commentluv.php:1089
|
158 |
msgid "Settings"
|
159 |
msgstr "Impostazioni"
|
160 |
|
161 |
+
#: ../commentluv.php:1148
|
162 |
msgid "No Posts Were Found!"
|
163 |
msgstr "Non é stato trovato nessun articolo!"
|
164 |
|
165 |
+
#: ../commentluv.php:1188
|
166 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
167 |
msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
|
168 |
|
169 |
+
#: ../commentluv.php:1191
|
170 |
msgid "Dismiss notice"
|
171 |
msgstr "Avviso rinuncia"
|
172 |
|
173 |
+
#: ../commentluv.php:1217
|
174 |
msgid "CommentLuv Settings v"
|
175 |
msgstr "Impostazioni CommentLuv v"
|
176 |
|
177 |
+
#: ../commentluv.php:1227
|
178 |
msgid "Important!"
|
179 |
msgstr "Importante!"
|
180 |
|
181 |
+
#: ../commentluv.php:1227
|
182 |
msgid "Subscription Information"
|
183 |
msgstr "Informazioni abbonamento"
|
184 |
|
185 |
+
#: ../commentluv.php:1232
|
186 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
187 |
msgstr "La versione premium 3.0 di CommentLuv sta per arrivare!"
|
188 |
|
189 |
+
#: ../commentluv.php:1233
|
190 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
191 |
msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
|
192 |
|
193 |
+
#: ../commentluv.php:1236
|
194 |
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"
|
195 |
msgstr "Verrà rilasciata a breve una versione premium di premium CommentLuv grazie alla quale potrai avere un maggiore controlo sul plugin nonché avere delle nuove opzioni esclusive quali le parole chiave, le registrazioni inline e molto altro ancora!. Registrandoti scoprirai quando sarà disponibile"
|
196 |
|
197 |
+
#: ../commentluv.php:1239
|
198 |
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"
|
199 |
msgstr "Se ti fossi già iscritto oppure non avessi ancora ricevuto la verifica entro le 12 ore, clicca sul pulsante per un nuovo invio o compila il modulo presso "
|
200 |
|
201 |
+
#: ../commentluv.php:1239
|
202 |
msgid "Resend Verification"
|
203 |
msgstr "Reinvia verifica"
|
204 |
|
205 |
+
#: ../commentluv.php:1241
|
206 |
msgid "Click to register now!"
|
207 |
msgstr "Clicca per registrarti adesso!"
|
208 |
|
209 |
+
#: ../commentluv.php:1256
|
210 |
msgid "Primary Setting"
|
211 |
msgstr "Impostazioni principali"
|
212 |
|
213 |
+
#: ../commentluv.php:1256
|
214 |
+
#: ../commentluv.php:1290
|
215 |
+
#: ../commentluv.php:1349
|
216 |
+
#: ../commentluv.php:1407
|
217 |
+
#: ../commentluv.php:1438
|
218 |
msgid "Help Video"
|
219 |
msgstr "Video aiuto"
|
220 |
|
221 |
+
#: ../commentluv.php:1260
|
222 |
msgid "Enable CommentLuv?"
|
223 |
msgstr "Attivare CommentLuv?"
|
224 |
|
225 |
+
#: ../commentluv.php:1261
|
226 |
msgid "Yes"
|
227 |
msgstr "Sì"
|
228 |
|
229 |
+
#: ../commentluv.php:1262
|
230 |
msgid "No"
|
231 |
msgstr "No"
|
232 |
|
233 |
+
#: ../commentluv.php:1267
|
234 |
msgid "On Posts"
|
235 |
msgstr " negli articoli"
|
236 |
|
237 |
+
#: ../commentluv.php:1268
|
238 |
msgid "On Pages"
|
239 |
msgstr " nelle pagine"
|
240 |
|
241 |
+
#: ../commentluv.php:1269
|
242 |
msgid "On Both"
|
243 |
msgstr " su entrambi"
|
244 |
|
245 |
+
#: ../commentluv.php:1274
|
246 |
msgid "On by default?"
|
247 |
msgstr "attivo come predefinita?"
|
248 |
|
249 |
+
#: ../commentluv.php:1278
|
250 |
msgid "On for admin?"
|
251 |
msgstr "attivo per l'amministratore?"
|
252 |
|
253 |
+
#: ../commentluv.php:1290
|
254 |
msgid "Appearance"
|
255 |
msgstr "Aspetto"
|
256 |
|
257 |
+
#: ../commentluv.php:1294
|
258 |
msgid "Badge"
|
259 |
msgstr "badge"
|
260 |
|
261 |
+
#: ../commentluv.php:1295
|
262 |
msgid "Custom Image URL"
|
263 |
msgstr "URL immagine"
|
264 |
|
265 |
+
#: ../commentluv.php:1296
|
266 |
msgid "Use Text"
|
267 |
msgstr "utilizza testo"
|
268 |
|
269 |
+
#: ../commentluv.php:1304
|
270 |
msgid "Default"
|
271 |
msgstr "Predefinito"
|
272 |
|
273 |
+
#: ../commentluv.php:1305
|
274 |
msgid "White"
|
275 |
msgstr "Bianco"
|
276 |
|
277 |
+
#: ../commentluv.php:1306
|
278 |
msgid "Black"
|
279 |
msgstr "Nero"
|
280 |
|
281 |
+
#: ../commentluv.php:1307
|
282 |
msgid "None"
|
283 |
msgstr "Nessuno"
|
284 |
|
285 |
+
#: ../commentluv.php:1324
|
286 |
msgid "Link to Commentluv?"
|
287 |
msgstr "link a Commentluv?"
|
288 |
|
289 |
+
#: ../commentluv.php:1331
|
290 |
msgid "Enable info panel?"
|
291 |
msgstr "pannello info?"
|
292 |
|
293 |
+
#: ../commentluv.php:1332
|
294 |
msgid "Info panel background color"
|
295 |
msgstr "colore sfondo pannello info"
|
296 |
|
297 |
+
#: ../commentluv.php:1333
|
298 |
msgid "Info panel text color"
|
299 |
msgstr "colore testo pannello info"
|
300 |
|
301 |
+
#: ../commentluv.php:1339
|
302 |
msgid "Example text and background color"
|
303 |
msgstr "esempio di testo e colore di sfondo"
|
304 |
|
305 |
+
#: ../commentluv.php:1349
|
306 |
msgid "Messages"
|
307 |
msgstr "Messaggi"
|
308 |
|
309 |
+
#: ../commentluv.php:1356
|
310 |
msgid "Text to be displayed in the comment"
|
311 |
msgstr "testo da mostrare nel commento"
|
312 |
|
313 |
+
#: ../commentluv.php:1359
|
314 |
msgid "[name] = The users name"
|
315 |
msgstr "[name] = nome utente"
|
316 |
|
317 |
+
#: ../commentluv.php:1359
|
318 |
msgid "[lastpost] = The last blog post link"
|
319 |
msgstr "[lastpost] = link a ultimo articolo"
|
320 |
|
321 |
+
#: ../commentluv.php:1366
|
322 |
msgid "Message for unregistered user in the drop down box"
|
323 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
324 |
|
325 |
+
#: ../commentluv.php:1367
|
326 |
+
#: ../commentluv.php:1393
|
327 |
msgid "Message will not be shown if you do not have registrations enabled"
|
328 |
msgstr "Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
|
329 |
|
330 |
+
#: ../commentluv.php:1371
|
331 |
msgid "Your register link code"
|
332 |
msgstr "Il tuo codice link registrazione"
|
333 |
|
334 |
+
#: ../commentluv.php:1373
|
335 |
+
msgid "(this will be automatically added if you have not added it yourself to the textarea above)"
|
336 |
+
msgstr "(sarà aggiunto in automatico qualora non lo avessi fatto tu stesso nell'area di testo qui sopra)"
|
337 |
+
|
338 |
+
#: ../commentluv.php:1383
|
339 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
340 |
msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
|
341 |
|
342 |
+
#: ../commentluv.php:1384
|
343 |
msgid "here"
|
344 |
msgstr "qui"
|
345 |
|
346 |
+
#: ../commentluv.php:1392
|
347 |
msgid "Message for unregistered user in the info panel"
|
348 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
349 |
|
350 |
+
#: ../commentluv.php:1407
|
351 |
msgid "Operational Settings"
|
352 |
msgstr "Impostazioni di gestione"
|
353 |
|
354 |
+
#: ../commentluv.php:1414
|
355 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
356 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
357 |
|
358 |
+
#: ../commentluv.php:1415
|
359 |
msgid "Only Registered Members"
|
360 |
msgstr "solo i membri registrati"
|
361 |
|
362 |
+
#: ../commentluv.php:1416
|
363 |
msgid "Everybody"
|
364 |
msgstr "chiunque"
|
365 |
|
366 |
+
#: ../commentluv.php:1417
|
367 |
msgid "Nobody"
|
368 |
msgstr "nessuno"
|
369 |
|
370 |
+
#: ../commentluv.php:1424
|
371 |
msgid "Whose links should be dofollow?"
|
372 |
msgstr "assegnazione dei link dofollow?"
|
373 |
|
374 |
+
#: ../commentluv.php:1425
|
375 |
msgid "Only Registered Members Links"
|
376 |
msgstr "solo per gli utenti registrati"
|
377 |
|
378 |
+
#: ../commentluv.php:1426
|
379 |
msgid "Everybody gets dofollow links"
|
380 |
msgstr "link dofollow per chiunque"
|
381 |
|
382 |
+
#: ../commentluv.php:1427
|
383 |
msgid "Nobody gets dofollow links"
|
384 |
msgstr "nessuno"
|
385 |
|
386 |
+
#: ../commentluv.php:1438
|
387 |
msgid "Technical Settings"
|
388 |
msgstr "Impostazioni tecniche"
|
389 |
|
390 |
+
#: ../commentluv.php:1438
|
391 |
msgid "Click to open technical settings"
|
392 |
msgstr "Clicca per aprire"
|
393 |
|
394 |
+
#: ../commentluv.php:1445
|
395 |
msgid "Please check the help video for this section before changing settings"
|
396 |
msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
|
397 |
|
398 |
+
#: ../commentluv.php:1446
|
399 |
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"
|
400 |
msgstr "Nella maggior parte dei casi, NON dovrai modificare le impostazioni di questa sezione a meno che tu non abbia un template o modulo dei commenti personalizzato oppure stessi facendo uso di un plugin per la cache/minimizzazione"
|
401 |
|
402 |
+
#: ../commentluv.php:1451
|
403 |
msgid "Compatibility"
|
404 |
msgstr "Compatibilità"
|
405 |
|
406 |
+
#: ../commentluv.php:1455
|
407 |
msgid "Use manual insert of badge code?"
|
408 |
msgstr "inserire manualmente il codice?"
|
409 |
|
410 |
+
#: ../commentluv.php:1459
|
411 |
msgid "Enable minifying compatibility?"
|
412 |
msgstr "attivare compatibilità minimizzazione?"
|
413 |
|
414 |
+
#: ../commentluv.php:1460
|
415 |
msgid "For caching plugins (places localized code in footer)"
|
416 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
417 |
|
418 |
+
#: ../commentluv.php:1463
|
419 |
+
msgid "Disable Detection?"
|
420 |
+
msgstr "Disattivare rilevamento?"
|
421 |
+
|
422 |
+
#: ../commentluv.php:1464
|
423 |
+
msgid "For XML errors"
|
424 |
+
msgstr "Per errori XML"
|
425 |
+
|
426 |
+
#: ../commentluv.php:1468
|
427 |
msgid "API URL"
|
428 |
msgstr "URL API"
|
429 |
|
430 |
+
#: ../commentluv.php:1472
|
431 |
msgid "URL to use for API"
|
432 |
msgstr "URL da utilizzare per la API"
|
433 |
|
434 |
+
#: ../commentluv.php:1476
|
435 |
msgid "Comment Form Field Values"
|
436 |
msgstr "Valori campo modulo commenti"
|
437 |
|
438 |
+
#: ../commentluv.php:1479
|
439 |
msgid "Authors Name field name"
|
440 |
msgstr "nome per il campo autore"
|
441 |
|
442 |
+
#: ../commentluv.php:1484
|
443 |
msgid "Email field name"
|
444 |
msgstr "nome per il campo email"
|
445 |
|
446 |
+
#: ../commentluv.php:1489
|
447 |
msgid "Authors URL field name"
|
448 |
msgstr "nome per il campo URL autore"
|
449 |
|
450 |
+
#: ../commentluv.php:1494
|
451 |
msgid "Comment Text Area name"
|
452 |
msgstr "nome per l'area di testo dei commenti"
|
453 |
|
454 |
+
#: ../commentluv.php:1499
|
455 |
msgid "Diagnostics Info"
|
456 |
msgstr "Info diagnostica"
|
457 |
|
458 |
+
#: ../commentluv.php:1517
|
459 |
msgid "You can copy this information and send it to me if I request it"
|
460 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
461 |
|
462 |
+
#: ../commentluv.php:1524
|
463 |
msgid "Save Settings"
|
464 |
msgstr "Salva le impostazioni"
|
465 |
|
466 |
+
#: ../commentluv.php:1526
|
467 |
msgid "Reset Settings"
|
468 |
msgstr "Ripristino impostazioni"
|
469 |
|
470 |
+
#: ../commentluv.php:1529
|
471 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
472 |
msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
|
473 |
|
474 |
+
#: ../commentluv.php:1532
|
475 |
msgid "Reset"
|
476 |
msgstr "Azzera"
|
477 |
|
478 |
+
#: ../commentluv.php:1540
|
479 |
msgid "Plugin Info"
|
480 |
msgstr "Info sul plugin"
|
481 |
|
482 |
+
#: ../commentluv.php:1543
|
483 |
msgid "Start Here"
|
484 |
msgstr "Inizia qui"
|
485 |
|
486 |
+
#: ../commentluv.php:1544
|
487 |
msgid "Author"
|
488 |
msgstr "Autore"
|
489 |
|
490 |
+
#: ../commentluv.php:1545
|
491 |
msgid "Home Page"
|
492 |
msgstr "Home Page"
|
493 |
|
494 |
+
#: ../commentluv.php:1545
|
495 |
msgid "Visit www.commentluv.com!"
|
496 |
msgstr "Visita www.commentluv.com!"
|
497 |
|
498 |
+
#: ../commentluv.php:1546
|
499 |
msgid "Social"
|
500 |
msgstr "Social"
|
501 |
|
502 |
+
#: ../commentluv.php:1547
|
503 |
msgid "Help"
|
504 |
msgstr "Aiuto"
|
505 |
|
506 |
+
#: ../commentluv.php:1547
|
507 |
msgid "Help Desk"
|
508 |
msgstr "Sezione aiuto"
|
509 |
|
510 |
+
#: ../commentluv.php:1548
|
511 |
msgid "Do you like this plugin?"
|
512 |
msgstr "Ti piace questo plugin?"
|
513 |
|
514 |
+
#: ../commentluv.php:1550
|
515 |
msgid "News"
|
516 |
msgstr "Notizie"
|
517 |
|
518 |
+
#: ../commentluv.php:1558
|
519 |
msgid "Thanks to the following for translations"
|
520 |
msgstr "Un grazie ai seguenti traduttori"
|
521 |
|
522 |
+
#: ../commentluv.php:1559
|
523 |
msgid "Italian"
|
524 |
msgstr "Italiano"
|
525 |
|
526 |
+
#: ../commentluv.php:1560
|
527 |
msgid "Dutch"
|
528 |
msgstr "Olandese"
|
529 |
|
530 |
+
#: ../commentluv.php:1561
|
531 |
msgid "Polish"
|
532 |
msgstr "Polacco"
|
533 |
|
534 |
+
#: ../commentluv.php:1562
|
535 |
msgid "Georgian"
|
536 |
msgstr "Georgiano"
|
537 |
|
538 |
+
#: ../commentluv.php:1563
|
539 |
msgid "Lithuanian"
|
540 |
msgstr "Lituano"
|
541 |
|
542 |
+
#: ../commentluv.php:1564
|
543 |
msgid "Portuguese"
|
544 |
msgstr "Portoghese"
|
545 |
|
546 |
+
#: ../commentluv.php:1565
|
547 |
msgid "Malaysian"
|
548 |
msgstr "Malese"
|
549 |
|
550 |
+
#: ../commentluv.php:1566
|
551 |
msgid "Hindi"
|
552 |
msgstr "Hindi"
|
553 |
|
554 |
+
#: ../commentluv.php:1567
|
555 |
msgid "Indonesian"
|
556 |
msgstr "Indonesiano"
|
557 |
|
558 |
+
#: ../commentluv.php:1568
|
559 |
+
msgid "Chinese (s)"
|
560 |
+
msgstr "Cinese"
|
561 |
+
|
562 |
+
#: ../commentluv.php:1569
|
563 |
+
msgid "Spanish"
|
564 |
+
msgstr "Spagnolo"
|
565 |
+
|
566 |
+
#: ../commentluv.php:1570
|
567 |
+
msgid "German"
|
568 |
+
msgstr "Tedesco"
|
569 |
+
|
570 |
+
#: ../commentluv.php:1571
|
571 |
+
msgid "Persian"
|
572 |
+
msgstr "Persiano"
|
573 |
+
|
574 |
+
#: ../commentluv.php:1572
|
575 |
+
msgid "Tamil"
|
576 |
+
msgstr "Tamil"
|
577 |
+
|
578 |
+
#: ../commentluv.php:1573
|
579 |
+
msgid "Ukranian"
|
580 |
+
msgstr "Ucraino"
|
581 |
+
|
582 |
+
#: ../commentluv.php:1574
|
583 |
+
msgid "Latvian"
|
584 |
+
msgstr "Lettone"
|
585 |
+
|
586 |
+
#: ../commentluv.php:1575
|
587 |
+
msgid "Romanian"
|
588 |
+
msgstr "Rumeno"
|
589 |
+
|
590 |
+
#: ../commentluv.php:1576
|
591 |
+
msgid "Norwegian"
|
592 |
+
msgstr "Norvegese"
|
593 |
+
|
594 |
+
#: ../commentluv.php:1577
|
595 |
msgid "Russian"
|
596 |
msgstr "Russo"
|
597 |
|
598 |
+
#: ../commentluv.php:1578
|
|
|
|
|
|
|
|
|
599 |
msgid "Hebrew"
|
600 |
msgstr "Ebraico"
|
601 |
|
602 |
+
#: ../commentluv.php:1579
|
603 |
msgid "French"
|
604 |
msgstr "Francese"
|
605 |
|
606 |
+
#: ../commentluv.php:1581
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Arabic"
|
608 |
msgstr "Arabo"
|
609 |
|
610 |
+
#: ../commentluv.php:1582
|
611 |
msgid "Want your link here?"
|
612 |
msgstr "Vuoi il tuo link qui?"
|
613 |
|
614 |
+
#: ../commentluv.php:1582
|
615 |
msgid "How To Submit A Translation"
|
616 |
msgstr "Contribuisci alla traduzione"
|
617 |
|
618 |
+
#: ../commentluv.php:1583
|
619 |
msgid "Special thanks go to the following"
|
620 |
msgstr "Un grazie particolare a"
|
621 |
|
622 |
+
#: ../commentluv.php:1584
|
623 |
msgid "CSS Help"
|
624 |
msgstr "Aiuto CSS"
|
625 |
|
626 |
+
#: ../commentluv.php:1585
|
627 |
msgid "Badge GFX"
|
628 |
msgstr "Badge GFX"
|
629 |
|
lang/commentluv-lv.mo
ADDED
Binary file
|
lang/commentluv-lv.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: Edgars <edgars.bergs@gmail.com>\n"
|
8 |
+
"Language-Team: yourwebagency.co.uk <edgars.bergs@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: Latvian\n"
|
15 |
+
"X-Poedit-Country: LATVIA\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../commentluv.php:48
|
19 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
20 |
+
msgstr "Lai CommentLuv strādātu, nepieciešams Wordpress 3.0 vai jaunāks."
|
21 |
+
|
22 |
+
#: ../commentluv.php:48
|
23 |
+
msgid "Please Update!"
|
24 |
+
msgstr "Lūdzu atjauniniet!"
|
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 "Lūdzu ievadiet URL un spiediet CommentLuv rūtiņu, ja vēlaties pievienot jūsu bloga pēdējo rakstu"
|
29 |
+
|
30 |
+
#: ../commentluv.php:218
|
31 |
+
msgid "Please use http:// in front of your url"
|
32 |
+
msgstr "Lūdzu lietojiet \"http://\" URL adreses priekšā"
|
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 "Jums vajag apmeklēt profilu Darbgaldā un atjaunināt jūsu lapas URL info"
|
37 |
+
|
38 |
+
#: ../commentluv.php:220
|
39 |
+
msgid "No info was available or an error occured"
|
40 |
+
msgstr "Info nav pieejams vai notika kļūda"
|
41 |
+
|
42 |
+
#: ../commentluv.php:243
|
43 |
+
msgid "Please wait"
|
44 |
+
msgstr "Lūdzu uzgaidiet"
|
45 |
+
|
46 |
+
#: ../commentluv.php:243
|
47 |
+
msgid "Please check your inbox, an email will be sent to"
|
48 |
+
msgstr "Lūdzu pārbaudiet iesūtni, jo tika nosūtīts e-pasts"
|
49 |
+
|
50 |
+
#: ../commentluv.php:243
|
51 |
+
msgid "in the next few minutes with a confirmation link"
|
52 |
+
msgstr "tuvākajās minūtēs ar apstiprinājuma linku"
|
53 |
+
|
54 |
+
#: ../commentluv.php:243
|
55 |
+
msgid "An error happened with the request. Try signing up at the site"
|
56 |
+
msgstr "Pieprasījums beidzās ar kļūdu. Mēģiniet piereģistrēties lapā."
|
57 |
+
|
58 |
+
#: ../commentluv.php:272
|
59 |
+
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
+
msgstr "Jūsu WordPress instalācijai trūkst <strong>wp_commentmeta</strong> tabula!"
|
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 nevar strādāt bez šīs tabulas. Lūdzu apmeklējiet WordPress forumu, lai apgūtu, kā pievienot tabulu ->"
|
65 |
+
|
66 |
+
#: ../commentluv.php:272
|
67 |
+
msgid "Missing wp_commentmeta table"
|
68 |
+
msgstr "Trūkst wp_commentmeta tabula"
|
69 |
+
|
70 |
+
#: ../commentluv.php:365
|
71 |
+
msgid "Twice Monthly"
|
72 |
+
msgstr "Divreiz mēnesī"
|
73 |
+
|
74 |
+
#: ../commentluv.php:392
|
75 |
+
msgid "CommentLuv is enabled"
|
76 |
+
msgstr "CommentLuv ir iespējots"
|
77 |
+
|
78 |
+
#: ../commentluv.php:433
|
79 |
+
msgid "Show more posts"
|
80 |
+
msgstr "Rādīt vairāk rakstus"
|
81 |
+
|
82 |
+
#: ../commentluv.php:523
|
83 |
+
msgid "I have only commented on this post"
|
84 |
+
msgstr "Esmu komentējis tikai šo rakstu"
|
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 "Ja man būtu vairāk komentāru šajā lapā, jūs šeit redzētu manus pārējos rakstus"
|
89 |
+
|
90 |
+
#: ../commentluv.php:551
|
91 |
+
msgid "User has not saved a description in their profile page"
|
92 |
+
msgstr "Lietotājs nav saglabājis aprakstu viņa profila lapā"
|
93 |
+
|
94 |
+
#: ../commentluv.php:563
|
95 |
+
msgid "is the administrator of this site"
|
96 |
+
msgstr "ir šīs lapas administrators"
|
97 |
+
|
98 |
+
#: ../commentluv.php:565
|
99 |
+
msgid "is a registered member of my site"
|
100 |
+
msgstr "ir reģistrējies biedrs manā lapā"
|
101 |
+
|
102 |
+
#: ../commentluv.php:568
|
103 |
+
#: ../commentluv.php:587
|
104 |
+
msgid "Clicks on this link on this comment"
|
105 |
+
msgstr "Klik uz šī linka, lai komentētu"
|
106 |
+
|
107 |
+
#: ../commentluv.php:568
|
108 |
+
#: ../commentluv.php:588
|
109 |
+
msgid "approved comments on this site"
|
110 |
+
msgstr "apstiprinātie šīs lapas komentāri"
|
111 |
+
|
112 |
+
#: ../commentluv.php:568
|
113 |
+
#: ../commentluv.php:589
|
114 |
+
msgid "Some other posts I have commented on"
|
115 |
+
msgstr "Daži citi raksti, kurus esmu komentējis"
|
116 |
+
|
117 |
+
#: ../commentluv.php:568
|
118 |
+
msgid "Some of my other posts"
|
119 |
+
msgstr "Daži no maniem rakstiem"
|
120 |
+
|
121 |
+
#: ../commentluv.php:581
|
122 |
+
msgid "has not registered on this site"
|
123 |
+
msgstr "nav reģistrējies šajā lapā"
|
124 |
+
|
125 |
+
#: ../commentluv.php:703
|
126 |
+
msgid "Could not get posts for home blog"
|
127 |
+
msgstr "Nevarēja iegūt rakstus no sākumlapas bloga"
|
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 "Ja esat reģistrējies, jums vajag ielogoties, lai iegūtu 10 rakstus, no kuriem izvēlēties"
|
132 |
+
|
133 |
+
#: ../commentluv.php:783
|
134 |
+
#: ../commentluv.php:1235
|
135 |
+
msgid "Register"
|
136 |
+
msgstr "Reģistrēties"
|
137 |
+
|
138 |
+
#: ../commentluv.php:788
|
139 |
+
msgid "recently posted"
|
140 |
+
msgstr "nesen publicēts"
|
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 "Ja jūs reģistrējaties manā lapā, šajā blokā jūs varat iegūt 10 pēdējos bloga ierakstus, no kā izvēlēties."
|
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 "Ja lietotājs ir reģistrējies, kad komentē, viņš var iegūt 10 pēdējos rakstus no kā izvēlēties un jūs varēsiet redzēt viņu pēdējos rakstus šajā panelī"
|
149 |
+
|
150 |
+
#: ../commentluv.php:971
|
151 |
+
msgid "Settings"
|
152 |
+
msgstr "Uzstādījumi"
|
153 |
+
|
154 |
+
#: ../commentluv.php:1010
|
155 |
+
msgid "No Posts Were Found!"
|
156 |
+
msgstr "Nav atrasti raksti!"
|
157 |
+
|
158 |
+
#: ../commentluv.php:1050
|
159 |
+
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
160 |
+
msgstr "Ir pieejama jauna Commentluv versija, lūdzu apgreidojiet, apmeklējot šo lapu"
|
161 |
+
|
162 |
+
#: ../commentluv.php:1053
|
163 |
+
msgid "Dismiss notice"
|
164 |
+
msgstr "Ignorēt paziņojumu"
|
165 |
+
|
166 |
+
#: ../commentluv.php:1080
|
167 |
+
msgid "CommentLuv Settings v"
|
168 |
+
msgstr "CommentLuv uzstādījumi"
|
169 |
+
|
170 |
+
#: ../commentluv.php:1090
|
171 |
+
msgid "Important!"
|
172 |
+
msgstr "Svarīgi!"
|
173 |
+
|
174 |
+
#: ../commentluv.php:1090
|
175 |
+
msgid "Subscription Information"
|
176 |
+
msgstr "Pierakstīšanās info"
|
177 |
+
|
178 |
+
#: ../commentluv.php:1095
|
179 |
+
msgid "CommentLuv 3.0 Premium is coming soon!"
|
180 |
+
msgstr "CommentLuv 3.0 Premium drīz būs pieejams!"
|
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 "Es apsolu netirgot jūsu info vai sūtīt spamu. Jūs saņemsiet TIKAI epastus par spraudņa atjauninājumiem."
|
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 "Drīz būs pieejama uzlabota CommentLuv versija, kas dos lielāku kontroli pār to, kā spraudnis strādā, kā arī ekskluzīvas iespējās kā atslēgvārda nosaukums, inline registration un daudz kas vēl. Piesakieties, lai par šo versiju uzzināt uzreiz, kad tā būs pieejama"
|
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 "Jūs jau esat pierakstījies, ja nesaņemat apstiprinājumu 12 stundu laikā, spiediet pogu, lai nosūtītu vēlreiz, vai mēģiniet formu"
|
193 |
+
|
194 |
+
#: ../commentluv.php:1102
|
195 |
+
msgid "Resend Verification"
|
196 |
+
msgstr "Vēlreiz nosūtīt apstiprinājumu"
|
197 |
+
|
198 |
+
#: ../commentluv.php:1104
|
199 |
+
msgid "Click to register now!"
|
200 |
+
msgstr "Klikšķiniet tagad, lai reģistrētu!"
|
201 |
+
|
202 |
+
#: ../commentluv.php:1119
|
203 |
+
msgid "Primary Setting"
|
204 |
+
msgstr "Pamata uzstādījumi"
|
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 "Palīdzības video"
|
213 |
+
|
214 |
+
#: ../commentluv.php:1123
|
215 |
+
msgid "Enable CommentLuv?"
|
216 |
+
msgstr "Iespējot CommentLuv?"
|
217 |
+
|
218 |
+
#: ../commentluv.php:1124
|
219 |
+
msgid "Yes"
|
220 |
+
msgstr "Jā"
|
221 |
+
|
222 |
+
#: ../commentluv.php:1125
|
223 |
+
msgid "No"
|
224 |
+
msgstr "Nē"
|
225 |
+
|
226 |
+
#: ../commentluv.php:1130
|
227 |
+
msgid "On Posts"
|
228 |
+
msgstr "Rakstos"
|
229 |
+
|
230 |
+
#: ../commentluv.php:1131
|
231 |
+
msgid "On Pages"
|
232 |
+
msgstr "Lapās"
|
233 |
+
|
234 |
+
#: ../commentluv.php:1132
|
235 |
+
msgid "On Both"
|
236 |
+
msgstr "Rakstos un lapās"
|
237 |
+
|
238 |
+
#: ../commentluv.php:1137
|
239 |
+
msgid "On by default?"
|
240 |
+
msgstr "Pēc noklusējuma, iespējot?"
|
241 |
+
|
242 |
+
#: ../commentluv.php:1141
|
243 |
+
msgid "On for admin?"
|
244 |
+
msgstr "Iespējots adminam?"
|
245 |
+
|
246 |
+
#: ../commentluv.php:1153
|
247 |
+
msgid "Appearance"
|
248 |
+
msgstr "Izskats"
|
249 |
+
|
250 |
+
#: ../commentluv.php:1157
|
251 |
+
msgid "Badge"
|
252 |
+
msgstr "Žetons"
|
253 |
+
|
254 |
+
#: ../commentluv.php:1158
|
255 |
+
msgid "Custom Image URL"
|
256 |
+
msgstr "Personalizētā attēla URL"
|
257 |
+
|
258 |
+
#: ../commentluv.php:1159
|
259 |
+
msgid "Use Text"
|
260 |
+
msgstr "Lietot tekstu"
|
261 |
+
|
262 |
+
#: ../commentluv.php:1167
|
263 |
+
msgid "Default"
|
264 |
+
msgstr "Pēc noklusējuma"
|
265 |
+
|
266 |
+
#: ../commentluv.php:1168
|
267 |
+
msgid "White"
|
268 |
+
msgstr "Balts"
|
269 |
+
|
270 |
+
#: ../commentluv.php:1169
|
271 |
+
msgid "Black"
|
272 |
+
msgstr "Melns"
|
273 |
+
|
274 |
+
#: ../commentluv.php:1170
|
275 |
+
msgid "None"
|
276 |
+
msgstr "Neviens"
|
277 |
+
|
278 |
+
#: ../commentluv.php:1187
|
279 |
+
msgid "Link to Commentluv?"
|
280 |
+
msgstr "Ielinkot CommentLuv?"
|
281 |
+
|
282 |
+
#: ../commentluv.php:1194
|
283 |
+
msgid "Enable info panel?"
|
284 |
+
msgstr "Iespējot info paneli?"
|
285 |
+
|
286 |
+
#: ../commentluv.php:1195
|
287 |
+
msgid "Info panel background color"
|
288 |
+
msgstr "Info paneļa fona krāsa"
|
289 |
+
|
290 |
+
#: ../commentluv.php:1196
|
291 |
+
msgid "Info panel text color"
|
292 |
+
msgstr "Info paneļa teksta krāsa"
|
293 |
+
|
294 |
+
#: ../commentluv.php:1202
|
295 |
+
msgid "Example text and background color"
|
296 |
+
msgstr "Piemēra teksts un fona krāsa"
|
297 |
+
|
298 |
+
#: ../commentluv.php:1212
|
299 |
+
msgid "Messages"
|
300 |
+
msgstr "Ziņojumi"
|
301 |
+
|
302 |
+
#: ../commentluv.php:1219
|
303 |
+
msgid "Text to be displayed in the comment"
|
304 |
+
msgstr "Teksts, kas rādīsies komentārā"
|
305 |
+
|
306 |
+
#: ../commentluv.php:1222
|
307 |
+
msgid "[name] = The users name"
|
308 |
+
msgstr "[name] = Lietotāja vārds"
|
309 |
+
|
310 |
+
#: ../commentluv.php:1222
|
311 |
+
msgid "[lastpost] = The last blog post link"
|
312 |
+
msgstr "[lastpost] = Pēdēja raksta links"
|
313 |
+
|
314 |
+
#: ../commentluv.php:1229
|
315 |
+
msgid "Message for unregistered user in the drop down box"
|
316 |
+
msgstr "Ziņojums izkrītošajā blokā priekš nereģistrējušies lietotājiem"
|
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 "Ziņojums nerādīsies, ja neesat iespējojis reģistrēšanos blogā"
|
322 |
+
|
323 |
+
#: ../commentluv.php:1234
|
324 |
+
msgid "Your register link code"
|
325 |
+
msgstr "Jūsu reģistrēšanās linka kods"
|
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 "Jūs neesat atļāvis cilvēkiem reģistrēties, jūs to varat atļaut sadaļā Uzstādījumi/Vispārīgi"
|
330 |
+
|
331 |
+
#: ../commentluv.php:1245
|
332 |
+
msgid "here"
|
333 |
+
msgstr "šeit"
|
334 |
+
|
335 |
+
#: ../commentluv.php:1253
|
336 |
+
msgid "Message for unregistered user in the info panel"
|
337 |
+
msgstr "Ziņojums info panelī priekš lietotāja, kurš nav reģistrējies"
|
338 |
+
|
339 |
+
#: ../commentluv.php:1268
|
340 |
+
msgid "Operational Settings"
|
341 |
+
msgstr "Uzstādījumi"
|
342 |
+
|
343 |
+
#: ../commentluv.php:1275
|
344 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
345 |
+
msgstr "Kam dot izvēlēties no pēdējos 10 rakstiem, kad viņi komentē?"
|
346 |
+
|
347 |
+
#: ../commentluv.php:1276
|
348 |
+
msgid "Only Registered Members"
|
349 |
+
msgstr "Tikai reģistrējušies biedriem"
|
350 |
+
|
351 |
+
#: ../commentluv.php:1277
|
352 |
+
msgid "Everybody"
|
353 |
+
msgstr "Jebkuram"
|
354 |
+
|
355 |
+
#: ../commentluv.php:1278
|
356 |
+
msgid "Nobody"
|
357 |
+
msgstr "Nevienam"
|
358 |
+
|
359 |
+
#: ../commentluv.php:1285
|
360 |
+
msgid "Whose links should be dofollow?"
|
361 |
+
msgstr "Vai linkiem jābūt dofollow?"
|
362 |
+
|
363 |
+
#: ../commentluv.php:1286
|
364 |
+
msgid "Only Registered Members Links"
|
365 |
+
msgstr "Tikai reģistrējušos biedru linkiem"
|
366 |
+
|
367 |
+
#: ../commentluv.php:1287
|
368 |
+
msgid "Everybody gets dofollow links"
|
369 |
+
msgstr "Visi iegūst dofollow linkus"
|
370 |
+
|
371 |
+
#: ../commentluv.php:1288
|
372 |
+
msgid "Nobody gets dofollow links"
|
373 |
+
msgstr "Neviens neiegūst dofollow linkus"
|
374 |
+
|
375 |
+
#: ../commentluv.php:1299
|
376 |
+
msgid "Technical Settings"
|
377 |
+
msgstr "Tehniskie uzstādījumi"
|
378 |
+
|
379 |
+
#: ../commentluv.php:1299
|
380 |
+
msgid "Click to open technical settings"
|
381 |
+
msgstr "Klik, lai atvērtu tehniskos uzstādījumus"
|
382 |
+
|
383 |
+
#: ../commentluv.php:1306
|
384 |
+
msgid "Please check the help video for this section before changing settings"
|
385 |
+
msgstr "Pirms uzstādījumus maiņas, lūdzu apskatiet palīdzības video sadaļu."
|
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 "Vairumā gadījumu, jums nevajadzēs mainīt šos uzstādījumus, ja vien jums nav personalizēta komentāru forma, veidne vai jūs lietojat \"minifying\" vai kešošanas spraudņus"
|
390 |
+
|
391 |
+
#: ../commentluv.php:1312
|
392 |
+
msgid "Compatibility"
|
393 |
+
msgstr "Savietojamība"
|
394 |
+
|
395 |
+
#: ../commentluv.php:1316
|
396 |
+
msgid "Use manual insert of badge code?"
|
397 |
+
msgstr "Lietot manuālo žetona koda ievietošanu?"
|
398 |
+
|
399 |
+
#: ../commentluv.php:1320
|
400 |
+
msgid "Enable minifying compatibility?"
|
401 |
+
msgstr "Iespējot \"minifying\" savietojamību?"
|
402 |
+
|
403 |
+
#: ../commentluv.php:1321
|
404 |
+
msgid "For caching plugins (places localized code in footer)"
|
405 |
+
msgstr "Priekš kešošanas spraudņiem (ievieto kodu kājenē)"
|
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, kas tiks lietots priekš API"
|
414 |
+
|
415 |
+
#: ../commentluv.php:1334
|
416 |
+
msgid "Comment Form Field Values"
|
417 |
+
msgstr "Komentāru formas lauku vērtības"
|
418 |
+
|
419 |
+
#: ../commentluv.php:1337
|
420 |
+
msgid "Authors Name field name"
|
421 |
+
msgstr "Autora lauka nosaukums"
|
422 |
+
|
423 |
+
#: ../commentluv.php:1342
|
424 |
+
msgid "Email field name"
|
425 |
+
msgstr "E-pasta lauka nosaukums"
|
426 |
+
|
427 |
+
#: ../commentluv.php:1347
|
428 |
+
msgid "Authors URL field name"
|
429 |
+
msgstr "Autora URL lauka nosaukums"
|
430 |
+
|
431 |
+
#: ../commentluv.php:1352
|
432 |
+
msgid "Comment Text Area name"
|
433 |
+
msgstr "Komentāra lauka nosaukums"
|
434 |
+
|
435 |
+
#: ../commentluv.php:1357
|
436 |
+
msgid "Diagnostics Info"
|
437 |
+
msgstr "Diagnostikas info"
|
438 |
+
|
439 |
+
#: ../commentluv.php:1375
|
440 |
+
msgid "You can copy this information and send it to me if I request it"
|
441 |
+
msgstr "Jūs varat nokopēt šo informāciju un atsūtīt man, ja es to pieprasu"
|
442 |
+
|
443 |
+
#: ../commentluv.php:1382
|
444 |
+
msgid "Save Settings"
|
445 |
+
msgstr "Saglabāt uzstādījumus"
|
446 |
+
|
447 |
+
#: ../commentluv.php:1384
|
448 |
+
msgid "Reset Settings"
|
449 |
+
msgstr "Atiestatīt uzstādījumus"
|
450 |
+
|
451 |
+
#: ../commentluv.php:1387
|
452 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
+
msgstr "Vai tiešām vēlaties atiestatīt uzstādījumu? Spiediet OK, lai turpinātu."
|
454 |
+
|
455 |
+
#: ../commentluv.php:1390
|
456 |
+
msgid "Reset"
|
457 |
+
msgstr "Atiestatīt"
|
458 |
+
|
459 |
+
#: ../commentluv.php:1398
|
460 |
+
msgid "Plugin Info"
|
461 |
+
msgstr "Spraudņa info"
|
462 |
+
|
463 |
+
#: ../commentluv.php:1401
|
464 |
+
msgid "Start Here"
|
465 |
+
msgstr "Sākt šeit"
|
466 |
+
|
467 |
+
#: ../commentluv.php:1402
|
468 |
+
msgid "Author"
|
469 |
+
msgstr "Autors"
|
470 |
+
|
471 |
+
#: ../commentluv.php:1403
|
472 |
+
msgid "Home Page"
|
473 |
+
msgstr "Mājaslapa"
|
474 |
+
|
475 |
+
#: ../commentluv.php:1403
|
476 |
+
msgid "Visit www.commentluv.com!"
|
477 |
+
msgstr "Apmeklējiet www.commentluv.com!"
|
478 |
+
|
479 |
+
#: ../commentluv.php:1404
|
480 |
+
msgid "Social"
|
481 |
+
msgstr "Social"
|
482 |
+
|
483 |
+
#: ../commentluv.php:1405
|
484 |
+
msgid "Help"
|
485 |
+
msgstr "Palīdzība"
|
486 |
+
|
487 |
+
#: ../commentluv.php:1405
|
488 |
+
msgid "Help Desk"
|
489 |
+
msgstr "Palīdzības vietne"
|
490 |
+
|
491 |
+
#: ../commentluv.php:1406
|
492 |
+
msgid "Do you like this plugin?"
|
493 |
+
msgstr "Vai jums patīk šis spraudnis?"
|
494 |
+
|
495 |
+
#: ../commentluv.php:1408
|
496 |
+
msgid "News"
|
497 |
+
msgstr "Jaunumi"
|
498 |
+
|
499 |
+
#: ../commentluv.php:1414
|
500 |
+
msgid "Thanks to the following for translations"
|
501 |
+
msgstr "Paldies šiem cilvēkiem par tulkojumiem"
|
502 |
+
|
503 |
+
#: ../commentluv.php:1415
|
504 |
+
msgid "Italian"
|
505 |
+
msgstr "Itāļu"
|
506 |
+
|
507 |
+
#: ../commentluv.php:1416
|
508 |
+
msgid "Dutch"
|
509 |
+
msgstr "Nīderlandiešu"
|
510 |
+
|
511 |
+
#: ../commentluv.php:1417
|
512 |
+
msgid "Polish"
|
513 |
+
msgstr "Poļu"
|
514 |
+
|
515 |
+
#: ../commentluv.php:1418
|
516 |
+
msgid "Georgian"
|
517 |
+
msgstr "Gruzīnu"
|
518 |
+
|
519 |
+
#: ../commentluv.php:1419
|
520 |
+
msgid "Lithuanian"
|
521 |
+
msgstr "Lietuviešu"
|
522 |
+
|
523 |
+
#: ../commentluv.php:1420
|
524 |
+
msgid "Portuguese"
|
525 |
+
msgstr "Portugāļu"
|
526 |
+
|
527 |
+
#: ../commentluv.php:1421
|
528 |
+
msgid "Malaysian"
|
529 |
+
msgstr "Malaiziešu"
|
530 |
+
|
531 |
+
#: ../commentluv.php:1422
|
532 |
+
msgid "Hindi"
|
533 |
+
msgstr "Hindi"
|
534 |
+
|
535 |
+
#: ../commentluv.php:1423
|
536 |
+
msgid "Russian"
|
537 |
+
msgstr "Krievu"
|
538 |
+
|
539 |
+
#: ../commentluv.php:1424
|
540 |
+
msgid "Chinese"
|
541 |
+
msgstr "Ķīniešu"
|
542 |
+
|
543 |
+
#: ../commentluv.php:1425
|
544 |
+
msgid "Hebrew"
|
545 |
+
msgstr "Ebreju"
|
546 |
+
|
547 |
+
#: ../commentluv.php:1426
|
548 |
+
msgid "French"
|
549 |
+
msgstr "Franču"
|
550 |
+
|
551 |
+
#: ../commentluv.php:1428
|
552 |
+
msgid "Romanian"
|
553 |
+
msgstr "Rumāņu"
|
554 |
+
|
555 |
+
#: ../commentluv.php:1429
|
556 |
+
msgid "German"
|
557 |
+
msgstr "Vācu"
|
558 |
+
|
559 |
+
#: ../commentluv.php:1430
|
560 |
+
msgid "Arabic"
|
561 |
+
msgstr "Arābu"
|
562 |
+
|
563 |
+
#: ../commentluv.php:1432
|
564 |
+
msgid "Want your link here?"
|
565 |
+
msgstr "Vēlaties šeit savu linku?"
|
566 |
+
|
567 |
+
#: ../commentluv.php:1432
|
568 |
+
msgid "How To Submit A Translation"
|
569 |
+
msgstr "Kā iesūtīt tulkojumu"
|
570 |
+
|
571 |
+
#: ../commentluv.php:1433
|
572 |
+
msgid "Special thanks go to the following"
|
573 |
+
msgstr "Īpašs paldies šiem cilvēkiem"
|
574 |
+
|
575 |
+
#: ../commentluv.php:1434
|
576 |
+
msgid "CSS Help"
|
577 |
+
msgstr "CSS palīdzība"
|
578 |
+
|
579 |
+
#: ../commentluv.php:1435
|
580 |
+
msgid "Badge GFX"
|
581 |
+
msgstr "Badge GFX"
|
582 |
+
|
lang/commentluv-no_NO.mo
ADDED
Binary file
|
lang/commentluv-no_NO.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: Hanna <chickyshnoodlesoup@hotmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-Language: Norwegian Bokmal\n"
|
15 |
+
"X-Poedit-Country: NORWAY\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../commentluv.php:48
|
19 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
20 |
+
msgstr "CommentLuv krever Wordpress 3.0 eller nyere."
|
21 |
+
|
22 |
+
#: ../commentluv.php:48
|
23 |
+
msgid "Please Update!"
|
24 |
+
msgstr "Vennligst oppdater!"
|
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 "Vennligst skriv inn en nettadresse og klikk så på CommentLuv-boksen hvis du ønsker å legge til ditt siste blogginnlegg"
|
29 |
+
|
30 |
+
#: ../commentluv.php:218
|
31 |
+
msgid "Please use http:// in front of your url"
|
32 |
+
msgstr "Vennligst bruk http:// foran din nettadresse"
|
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 "Du må besøke din profil i dashbordet og oppdatere dine detaljer med din nettadresse"
|
37 |
+
|
38 |
+
#: ../commentluv.php:220
|
39 |
+
msgid "No info was available or an error occured"
|
40 |
+
msgstr "Ingen info var tilgjengelig, eller det oppstod en feil"
|
41 |
+
|
42 |
+
#: ../commentluv.php:243
|
43 |
+
msgid "Please wait"
|
44 |
+
msgstr "Vennligst vent"
|
45 |
+
|
46 |
+
#: ../commentluv.php:243
|
47 |
+
msgid "Please check your inbox, an email will be sent to"
|
48 |
+
msgstr "Vennligst sjekk innboksen din, en e-post vil bli sendt til"
|
49 |
+
|
50 |
+
#: ../commentluv.php:243
|
51 |
+
msgid "in the next few minutes with a confirmation link"
|
52 |
+
msgstr "i løpet av de neste par minutter med en bekreftelseslenke"
|
53 |
+
|
54 |
+
#: ../commentluv.php:243
|
55 |
+
msgid "An error happened with the request. Try signing up at the site"
|
56 |
+
msgstr "En feil skjedde med forespørselen. Prøv å registrere deg på siden"
|
57 |
+
|
58 |
+
#: ../commentluv.php:272
|
59 |
+
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
+
msgstr "Din Wordpressinstallasjon mangler <strong>wp_commentmeta</strong> tabell (table)!"
|
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 kan ikke fungere uten denne tabellen (table), vennligst sjekk dette Wordpressforuminnlegget for å lære hvordan du legger til en ->"
|
65 |
+
|
66 |
+
#: ../commentluv.php:272
|
67 |
+
msgid "Missing wp_commentmeta table"
|
68 |
+
msgstr "Mangler wp_commentmeta tabell (table)"
|
69 |
+
|
70 |
+
#: ../commentluv.php:365
|
71 |
+
msgid "Twice Monthly"
|
72 |
+
msgstr "To ganger månedlig"
|
73 |
+
|
74 |
+
#: ../commentluv.php:392
|
75 |
+
msgid "CommentLuv is enabled"
|
76 |
+
msgstr "CommentLuv er aktivert"
|
77 |
+
|
78 |
+
#: ../commentluv.php:433
|
79 |
+
msgid "Show more posts"
|
80 |
+
msgstr "Se flere innlegg"
|
81 |
+
|
82 |
+
#: ../commentluv.php:523
|
83 |
+
msgid "I have only commented on this post"
|
84 |
+
msgstr "Jeg har bare kommentert på dette innlegget"
|
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 "Hvis jeg hadde hatt flere kommentarer på denne siden ville du sett flere av mine innlegg her"
|
89 |
+
|
90 |
+
#: ../commentluv.php:551
|
91 |
+
msgid "User has not saved a description in their profile page"
|
92 |
+
msgstr "Bruker har ikke lagret en beskrivelse i deres profilside"
|
93 |
+
|
94 |
+
#: ../commentluv.php:563
|
95 |
+
msgid "is the administrator of this site"
|
96 |
+
msgstr "er administrator av denne siden"
|
97 |
+
|
98 |
+
#: ../commentluv.php:565
|
99 |
+
msgid "is a registered member of my site"
|
100 |
+
msgstr "er en registrert bruker av min side"
|
101 |
+
|
102 |
+
#: ../commentluv.php:568
|
103 |
+
#: ../commentluv.php:587
|
104 |
+
msgid "Clicks on this link on this comment"
|
105 |
+
msgstr "Antall klikk på denne lenken på denne kommentaren"
|
106 |
+
|
107 |
+
#: ../commentluv.php:568
|
108 |
+
#: ../commentluv.php:588
|
109 |
+
msgid "approved comments on this site"
|
110 |
+
msgstr "godkjente kommentarer på denne siden"
|
111 |
+
|
112 |
+
#: ../commentluv.php:568
|
113 |
+
#: ../commentluv.php:589
|
114 |
+
msgid "Some other posts I have commented on"
|
115 |
+
msgstr "Noen andre innlegg jeg har kommentert på"
|
116 |
+
|
117 |
+
#: ../commentluv.php:568
|
118 |
+
msgid "Some of my other posts"
|
119 |
+
msgstr "Noen av mine andre innlegg"
|
120 |
+
|
121 |
+
#: ../commentluv.php:581
|
122 |
+
msgid "has not registered on this site"
|
123 |
+
msgstr "har ikke registrert seg på denne siden"
|
124 |
+
|
125 |
+
#: ../commentluv.php:703
|
126 |
+
msgid "Could not get posts for home blog"
|
127 |
+
msgstr "Kunne ikke hente innlegg for blogg"
|
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 "Hvis du er registrert trenger du å logge inn for å få de ti siste innleggene du kan velge mellom"
|
132 |
+
|
133 |
+
#: ../commentluv.php:783
|
134 |
+
#: ../commentluv.php:1235
|
135 |
+
msgid "Register"
|
136 |
+
msgstr "Registrer deg"
|
137 |
+
|
138 |
+
#: ../commentluv.php:788
|
139 |
+
msgid "recently posted"
|
140 |
+
msgstr "siste innlegg"
|
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 "Hvis du registrerer deg som bruker på min side kan du få dine 10 siste blogginnlegg å velge mellom i denne boksen."
|
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 "Hvis en bruker har registrert seg på din side kan de få de 10 siste blogginnleggene å velge mellom når de kommenterer, og du kan se en liste over deres siste innlegg i dette panelet"
|
149 |
+
|
150 |
+
#: ../commentluv.php:971
|
151 |
+
msgid "Settings"
|
152 |
+
msgstr "Innstillinger"
|
153 |
+
|
154 |
+
#: ../commentluv.php:1010
|
155 |
+
msgid "No Posts Were Found!"
|
156 |
+
msgstr "Ingen innlegg ble funnet!"
|
157 |
+
|
158 |
+
#: ../commentluv.php:1050
|
159 |
+
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
160 |
+
msgstr "Det finnes en ny versjon av CommentLuv tilgjengelig, vennligst oppgrader ved å besøke denne siden"
|
161 |
+
|
162 |
+
#: ../commentluv.php:1053
|
163 |
+
msgid "Dismiss notice"
|
164 |
+
msgstr "Avvis advarsel"
|
165 |
+
|
166 |
+
#: ../commentluv.php:1080
|
167 |
+
msgid "CommentLuv Settings v"
|
168 |
+
msgstr "CommentLuv-innstillinger"
|
169 |
+
|
170 |
+
#: ../commentluv.php:1090
|
171 |
+
msgid "Important!"
|
172 |
+
msgstr "Viktig!"
|
173 |
+
|
174 |
+
#: ../commentluv.php:1090
|
175 |
+
msgid "Subscription Information"
|
176 |
+
msgstr "Abonneringsinformasjon"
|
177 |
+
|
178 |
+
#: ../commentluv.php:1095
|
179 |
+
msgid "CommentLuv 3.0 Premium is coming soon!"
|
180 |
+
msgstr "CommentLuv 3.0 Premium kommer snart!"
|
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 "Jeg lover å ikke selge dine detaljer eller sende spam. Du vil KUN motta e-poster om pluginoppdateringer."
|
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 "Det kommer en premiumversjon av CommentLuv som vil ha mye mer kontroll over hvordan pluginen virker, sant en eksklusiv funksjon som nøkkelordnavn, inline-registrering og mye, mye mer! Meld deg opp for å finne ut så snart den er ferdig"
|
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 "Du har allerede abonnert, vennligst klikk knappen for å sende på nytt hvis du ikke har mottatt verifisering innen 12 timer, eller prøv skjemaet på"
|
193 |
+
|
194 |
+
#: ../commentluv.php:1102
|
195 |
+
msgid "Resend Verification"
|
196 |
+
msgstr "Send ny verifisering"
|
197 |
+
|
198 |
+
#: ../commentluv.php:1104
|
199 |
+
msgid "Click to register now!"
|
200 |
+
msgstr "Klikk for å registrere nå!"
|
201 |
+
|
202 |
+
#: ../commentluv.php:1119
|
203 |
+
msgid "Primary Setting"
|
204 |
+
msgstr "Hovedinnstilling"
|
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 "Hjelpevideo"
|
213 |
+
|
214 |
+
#: ../commentluv.php:1123
|
215 |
+
msgid "Enable CommentLuv?"
|
216 |
+
msgstr "Aktivere CommentLuv?"
|
217 |
+
|
218 |
+
#: ../commentluv.php:1124
|
219 |
+
msgid "Yes"
|
220 |
+
msgstr "Ja"
|
221 |
+
|
222 |
+
#: ../commentluv.php:1125
|
223 |
+
msgid "No"
|
224 |
+
msgstr "Nei"
|
225 |
+
|
226 |
+
#: ../commentluv.php:1130
|
227 |
+
msgid "On Posts"
|
228 |
+
msgstr "På innlegg"
|
229 |
+
|
230 |
+
#: ../commentluv.php:1131
|
231 |
+
msgid "On Pages"
|
232 |
+
msgstr "På sider (pages)"
|
233 |
+
|
234 |
+
#: ../commentluv.php:1132
|
235 |
+
msgid "On Both"
|
236 |
+
msgstr "På begge"
|
237 |
+
|
238 |
+
#: ../commentluv.php:1137
|
239 |
+
msgid "On by default?"
|
240 |
+
msgstr "På som standard?"
|
241 |
+
|
242 |
+
#: ../commentluv.php:1141
|
243 |
+
msgid "On for admin?"
|
244 |
+
msgstr "På for administrator"
|
245 |
+
|
246 |
+
#: ../commentluv.php:1153
|
247 |
+
msgid "Appearance"
|
248 |
+
msgstr "Utseende"
|
249 |
+
|
250 |
+
#: ../commentluv.php:1157
|
251 |
+
msgid "Badge"
|
252 |
+
msgstr "Badge"
|
253 |
+
|
254 |
+
#: ../commentluv.php:1158
|
255 |
+
msgid "Custom Image URL"
|
256 |
+
msgstr "Tilpasset bildeURL"
|
257 |
+
|
258 |
+
#: ../commentluv.php:1159
|
259 |
+
msgid "Use Text"
|
260 |
+
msgstr "Bruk tekst"
|
261 |
+
|
262 |
+
#: ../commentluv.php:1167
|
263 |
+
msgid "Default"
|
264 |
+
msgstr "Standard"
|
265 |
+
|
266 |
+
#: ../commentluv.php:1168
|
267 |
+
msgid "White"
|
268 |
+
msgstr "Hvit"
|
269 |
+
|
270 |
+
#: ../commentluv.php:1169
|
271 |
+
msgid "Black"
|
272 |
+
msgstr "Sort"
|
273 |
+
|
274 |
+
#: ../commentluv.php:1170
|
275 |
+
msgid "None"
|
276 |
+
msgstr "Ingen"
|
277 |
+
|
278 |
+
#: ../commentluv.php:1187
|
279 |
+
msgid "Link to Commentluv?"
|
280 |
+
msgstr "Lenke til CommentLuv?"
|
281 |
+
|
282 |
+
#: ../commentluv.php:1194
|
283 |
+
msgid "Enable info panel?"
|
284 |
+
msgstr "Aktivere infopanel?"
|
285 |
+
|
286 |
+
#: ../commentluv.php:1195
|
287 |
+
msgid "Info panel background color"
|
288 |
+
msgstr "Bakgrunnsfarge til infopanel"
|
289 |
+
|
290 |
+
#: ../commentluv.php:1196
|
291 |
+
msgid "Info panel text color"
|
292 |
+
msgstr "Tekstfarge til infopanel"
|
293 |
+
|
294 |
+
#: ../commentluv.php:1202
|
295 |
+
msgid "Example text and background color"
|
296 |
+
msgstr "Eksempel på tekst og bakgrunnsfarge"
|
297 |
+
|
298 |
+
#: ../commentluv.php:1212
|
299 |
+
msgid "Messages"
|
300 |
+
msgstr "Beskjed"
|
301 |
+
|
302 |
+
#: ../commentluv.php:1219
|
303 |
+
msgid "Text to be displayed in the comment"
|
304 |
+
msgstr "Tekst som vises i kommentar"
|
305 |
+
|
306 |
+
#: ../commentluv.php:1222
|
307 |
+
msgid "[name] = The users name"
|
308 |
+
msgstr "[name] = Brukeren navn"
|
309 |
+
|
310 |
+
#: ../commentluv.php:1222
|
311 |
+
msgid "[lastpost] = The last blog post link"
|
312 |
+
msgstr "[lastpost] = Det siste blogginnlegget"
|
313 |
+
|
314 |
+
#: ../commentluv.php:1229
|
315 |
+
msgid "Message for unregistered user in the drop down box"
|
316 |
+
msgstr "Beskjed til uregistrert bruker i nedtrekksboksen"
|
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 "Beskjed vil ikke vises hvis du ikke har aktivert registrering"
|
322 |
+
|
323 |
+
#: ../commentluv.php:1234
|
324 |
+
msgid "Your register link code"
|
325 |
+
msgstr "Din registreringskode"
|
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 "Du har IKKE satt din blogg til å godta registreringer. Du kan gjøre dette i Settings/General"
|
330 |
+
|
331 |
+
#: ../commentluv.php:1245
|
332 |
+
msgid "here"
|
333 |
+
msgstr "her"
|
334 |
+
|
335 |
+
#: ../commentluv.php:1253
|
336 |
+
msgid "Message for unregistered user in the info panel"
|
337 |
+
msgstr "Beskjed for uregistrert bruker i infopanelet"
|
338 |
+
|
339 |
+
#: ../commentluv.php:1268
|
340 |
+
msgid "Operational Settings"
|
341 |
+
msgstr "Operasjonelle innstillinger"
|
342 |
+
|
343 |
+
#: ../commentluv.php:1275
|
344 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
345 |
+
msgstr "Hvem skal få velge mellom de 10 siste blogginnleggene når de kommenterer?"
|
346 |
+
|
347 |
+
#: ../commentluv.php:1276
|
348 |
+
msgid "Only Registered Members"
|
349 |
+
msgstr "Bare registrerte medlemmer"
|
350 |
+
|
351 |
+
#: ../commentluv.php:1277
|
352 |
+
msgid "Everybody"
|
353 |
+
msgstr "Alle"
|
354 |
+
|
355 |
+
#: ../commentluv.php:1278
|
356 |
+
msgid "Nobody"
|
357 |
+
msgstr "Ingen"
|
358 |
+
|
359 |
+
#: ../commentluv.php:1285
|
360 |
+
msgid "Whose links should be dofollow?"
|
361 |
+
msgstr "Hvem sine lenker skal være dofollow?"
|
362 |
+
|
363 |
+
#: ../commentluv.php:1286
|
364 |
+
msgid "Only Registered Members Links"
|
365 |
+
msgstr "Bare registrerte brukeres lenker"
|
366 |
+
|
367 |
+
#: ../commentluv.php:1287
|
368 |
+
msgid "Everybody gets dofollow links"
|
369 |
+
msgstr "Alle får dofollow-lenker"
|
370 |
+
|
371 |
+
#: ../commentluv.php:1288
|
372 |
+
msgid "Nobody gets dofollow links"
|
373 |
+
msgstr "Ingen får dofollow-lenker"
|
374 |
+
|
375 |
+
#: ../commentluv.php:1299
|
376 |
+
msgid "Technical Settings"
|
377 |
+
msgstr "Tekniske innstillinger"
|
378 |
+
|
379 |
+
#: ../commentluv.php:1299
|
380 |
+
msgid "Click to open technical settings"
|
381 |
+
msgstr "Klikk for å åpne tekniske innstillinger"
|
382 |
+
|
383 |
+
#: ../commentluv.php:1306
|
384 |
+
msgid "Please check the help video for this section before changing settings"
|
385 |
+
msgstr "Vennligst sjekk ut hjelpevideoene for denne seksjonen før du endrer innstillinger"
|
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 "Du trenger som regel IKKE å endre innstillingene i denne boksen hvis du ikke har et tilpasset kommentarskjema, mal eller du har brukt minifying eller hurtigbufringsplugins"
|
390 |
+
|
391 |
+
#: ../commentluv.php:1312
|
392 |
+
msgid "Compatibility"
|
393 |
+
msgstr "Kompatibilitet"
|
394 |
+
|
395 |
+
#: ../commentluv.php:1316
|
396 |
+
msgid "Use manual insert of badge code?"
|
397 |
+
msgstr "Bruke manuell innsetting istedet for badgekode?"
|
398 |
+
|
399 |
+
#: ../commentluv.php:1320
|
400 |
+
msgid "Enable minifying compatibility?"
|
401 |
+
msgstr "Aktivere minifyingkompabilitet?"
|
402 |
+
|
403 |
+
#: ../commentluv.php:1321
|
404 |
+
msgid "For caching plugins (places localized code in footer)"
|
405 |
+
msgstr "For hurtigbufringsplugins (plasserer lokalisert kode i 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 til bruk for API"
|
414 |
+
|
415 |
+
#: ../commentluv.php:1334
|
416 |
+
msgid "Comment Form Field Values"
|
417 |
+
msgstr "Feltverdier for kommentarskjema"
|
418 |
+
|
419 |
+
#: ../commentluv.php:1337
|
420 |
+
msgid "Authors Name field name"
|
421 |
+
msgstr "Forfatters navnefelt"
|
422 |
+
|
423 |
+
#: ../commentluv.php:1342
|
424 |
+
msgid "Email field name"
|
425 |
+
msgstr "E-post navnefelt"
|
426 |
+
|
427 |
+
#: ../commentluv.php:1347
|
428 |
+
msgid "Authors URL field name"
|
429 |
+
msgstr "Forfatters URL navnefelt"
|
430 |
+
|
431 |
+
#: ../commentluv.php:1352
|
432 |
+
msgid "Comment Text Area name"
|
433 |
+
msgstr "Kommentartekst områdenavn"
|
434 |
+
|
435 |
+
#: ../commentluv.php:1357
|
436 |
+
msgid "Diagnostics Info"
|
437 |
+
msgstr "Diagnostikkinfo"
|
438 |
+
|
439 |
+
#: ../commentluv.php:1375
|
440 |
+
msgid "You can copy this information and send it to me if I request it"
|
441 |
+
msgstr "Du kan kopiere denne informasjonen og sende den til meg hvis jeg ber om det"
|
442 |
+
|
443 |
+
#: ../commentluv.php:1382
|
444 |
+
msgid "Save Settings"
|
445 |
+
msgstr "Lagre innstillinger"
|
446 |
+
|
447 |
+
#: ../commentluv.php:1384
|
448 |
+
msgid "Reset Settings"
|
449 |
+
msgstr "Tilbakestill innstillinger"
|
450 |
+
|
451 |
+
#: ../commentluv.php:1387
|
452 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
+
msgstr "Er du sikker på at du ønsker å tilbakestille dine innstillinger? Trykk OK for å fortsette"
|
454 |
+
|
455 |
+
#: ../commentluv.php:1390
|
456 |
+
msgid "Reset"
|
457 |
+
msgstr "Tilbakestill"
|
458 |
+
|
459 |
+
#: ../commentluv.php:1398
|
460 |
+
msgid "Plugin Info"
|
461 |
+
msgstr "Plugininfo"
|
462 |
+
|
463 |
+
#: ../commentluv.php:1401
|
464 |
+
msgid "Start Here"
|
465 |
+
msgstr "Begynn her"
|
466 |
+
|
467 |
+
#: ../commentluv.php:1402
|
468 |
+
msgid "Author"
|
469 |
+
msgstr "Forfatter"
|
470 |
+
|
471 |
+
#: ../commentluv.php:1403
|
472 |
+
msgid "Home Page"
|
473 |
+
msgstr "Hjemmeside"
|
474 |
+
|
475 |
+
#: ../commentluv.php:1403
|
476 |
+
msgid "Visit www.commentluv.com!"
|
477 |
+
msgstr "Besøk www.commentluv.com!"
|
478 |
+
|
479 |
+
#: ../commentluv.php:1404
|
480 |
+
msgid "Social"
|
481 |
+
msgstr "Sosial"
|
482 |
+
|
483 |
+
#: ../commentluv.php:1405
|
484 |
+
msgid "Help"
|
485 |
+
msgstr "Hjelp"
|
486 |
+
|
487 |
+
#: ../commentluv.php:1405
|
488 |
+
msgid "Help Desk"
|
489 |
+
msgstr "Helpdesk"
|
490 |
+
|
491 |
+
#: ../commentluv.php:1406
|
492 |
+
msgid "Do you like this plugin?"
|
493 |
+
msgstr "Liker du denne pluginen?"
|
494 |
+
|
495 |
+
#: ../commentluv.php:1408
|
496 |
+
msgid "News"
|
497 |
+
msgstr "Nyheter"
|
498 |
+
|
499 |
+
#: ../commentluv.php:1414
|
500 |
+
msgid "Thanks to the following for translations"
|
501 |
+
msgstr "Takk til de følgende for oversettelser"
|
502 |
+
|
503 |
+
#: ../commentluv.php:1415
|
504 |
+
msgid "Italian"
|
505 |
+
msgstr "Italiensk"
|
506 |
+
|
507 |
+
#: ../commentluv.php:1416
|
508 |
+
msgid "Dutch"
|
509 |
+
msgstr "Tysk"
|
510 |
+
|
511 |
+
#: ../commentluv.php:1417
|
512 |
+
msgid "Polish"
|
513 |
+
msgstr "Polsk"
|
514 |
+
|
515 |
+
#: ../commentluv.php:1418
|
516 |
+
msgid "Georgian"
|
517 |
+
msgstr "Georgisk"
|
518 |
+
|
519 |
+
#: ../commentluv.php:1419
|
520 |
+
msgid "Lithuanian"
|
521 |
+
msgstr "Litauisk"
|
522 |
+
|
523 |
+
#: ../commentluv.php:1420
|
524 |
+
msgid "Portuguese"
|
525 |
+
msgstr "Portugisisk"
|
526 |
+
|
527 |
+
#: ../commentluv.php:1421
|
528 |
+
msgid "Malaysian"
|
529 |
+
msgstr "Malaysisk"
|
530 |
+
|
531 |
+
#: ../commentluv.php:1422
|
532 |
+
msgid "Hindi"
|
533 |
+
msgstr "Hindi"
|
534 |
+
|
535 |
+
#: ../commentluv.php:1423
|
536 |
+
msgid "Russian"
|
537 |
+
msgstr "Russisk"
|
538 |
+
|
539 |
+
#: ../commentluv.php:1424
|
540 |
+
msgid "Chinese"
|
541 |
+
msgstr "Kinesisk"
|
542 |
+
|
543 |
+
#: ../commentluv.php:1425
|
544 |
+
msgid "Hebrew"
|
545 |
+
msgstr "Hebraisk"
|
546 |
+
|
547 |
+
#: ../commentluv.php:1426
|
548 |
+
msgid "French"
|
549 |
+
msgstr "Fransk"
|
550 |
+
|
551 |
+
#: ../commentluv.php:1428
|
552 |
+
msgid "Romanian"
|
553 |
+
msgstr "Romansk"
|
554 |
+
|
555 |
+
#: ../commentluv.php:1429
|
556 |
+
msgid "German"
|
557 |
+
msgstr "Tysk"
|
558 |
+
|
559 |
+
#: ../commentluv.php:1430
|
560 |
+
msgid "Arabic"
|
561 |
+
msgstr "Arabisk"
|
562 |
+
|
563 |
+
#: ../commentluv.php:1432
|
564 |
+
msgid "Want your link here?"
|
565 |
+
msgstr "Ønsker du din lenke her?"
|
566 |
+
|
567 |
+
#: ../commentluv.php:1432
|
568 |
+
msgid "How To Submit A Translation"
|
569 |
+
msgstr "Hvordan sende inn en oversettelse"
|
570 |
+
|
571 |
+
#: ../commentluv.php:1433
|
572 |
+
msgid "Special thanks go to the following"
|
573 |
+
msgstr "Spesiell takk til de følgende"
|
574 |
+
|
575 |
+
#: ../commentluv.php:1434
|
576 |
+
msgid "CSS Help"
|
577 |
+
msgstr "CSShjelp"
|
578 |
+
|
579 |
+
#: ../commentluv.php:1435
|
580 |
+
msgid "Badge GFX"
|
581 |
+
msgstr "Badge GFX"
|
582 |
+
|
lang/commentluv-pl_PL.mo
CHANGED
Binary file
|
lang/commentluv-pl_PL.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv 2.7.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: @commentluv, Gianni Diurno <admin@comluv.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -23,561 +23,602 @@ msgstr "CommentLuv wymaga Wordpress w wersji 3.0 lub nowszej."
|
|
23 |
msgid "Please Update!"
|
24 |
msgstr "Zaktualizuj!"
|
25 |
|
26 |
-
#: ../commentluv.php:
|
27 |
-
#, fuzzy
|
28 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
29 |
msgstr "Wprowadź adres URL, jeśli chcesz dodać ostatni wpis na blogu"
|
30 |
|
31 |
-
#: ../commentluv.php:
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Dodaj http:// przed adresem URL witryny"
|
34 |
|
35 |
-
#: ../commentluv.php:
|
36 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
37 |
msgstr "Odwiedź swój profil i uzupełnij informacje dodając adres URL witryny"
|
38 |
|
39 |
-
#: ../commentluv.php:
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Brak dostępnych informacji lub wystąpił błąd"
|
42 |
|
43 |
-
#: ../commentluv.php:
|
44 |
msgid "Please wait"
|
45 |
msgstr "Proszę czekać"
|
46 |
|
47 |
-
#: ../commentluv.php:
|
48 |
msgid "Please check your inbox, an email will be sent to"
|
49 |
msgstr "Proszę sprawdzić swoją skrzynkę odbiorczą, e-mail zostanie przesłany do"
|
50 |
|
51 |
-
#: ../commentluv.php:
|
52 |
msgid "in the next few minutes with a confirmation link"
|
53 |
msgstr "w ciągu kilku minut z linkiem do potwierdzenia"
|
54 |
|
55 |
-
#: ../commentluv.php:
|
56 |
msgid "An error happened with the request. Try signing up at the site"
|
57 |
msgstr "Wystąpił błąd podczas wykonywania żądania. Spróbuj zarejestrować się na stronie"
|
58 |
|
59 |
-
#: ../commentluv.php:
|
60 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
61 |
-
msgstr ""
|
62 |
|
63 |
-
#: ../commentluv.php:
|
64 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
65 |
-
msgstr ""
|
66 |
|
67 |
-
#: ../commentluv.php:
|
68 |
msgid "Missing wp_commentmeta table"
|
69 |
-
msgstr ""
|
70 |
|
71 |
-
#: ../commentluv.php:
|
72 |
msgid "Twice Monthly"
|
73 |
msgstr "Dwa razy w miesiącu"
|
74 |
|
75 |
-
#: ../commentluv.php:
|
76 |
msgid "CommentLuv is enabled"
|
77 |
msgstr "CommentLuv jest aktywny"
|
78 |
|
79 |
-
#: ../commentluv.php:
|
80 |
msgid "Show more posts"
|
81 |
msgstr "Pokaż więcej artykułów"
|
82 |
|
83 |
-
#: ../commentluv.php:
|
84 |
msgid "I have only commented on this post"
|
85 |
msgstr "Skomentowałem tylko ten artykuł"
|
86 |
|
87 |
-
#: ../commentluv.php:
|
88 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
89 |
msgstr "Gdybym zamieścił więcej komentarzy na tej stronie, zobaczyłbyś tutaj więcej innych moich postów"
|
90 |
|
91 |
-
#: ../commentluv.php:
|
92 |
msgid "User has not saved a description in their profile page"
|
93 |
msgstr "Użytkownik nie ustawił jeszcze opisu na stronie profilu"
|
94 |
|
95 |
-
#: ../commentluv.php:
|
96 |
msgid "is the administrator of this site"
|
97 |
msgstr "jest administratorem tej strony"
|
98 |
|
99 |
-
#: ../commentluv.php:
|
100 |
msgid "is a registered member of my site"
|
101 |
msgstr "jest zarejestrowanym użytkownikiem na mojej stronie"
|
102 |
|
103 |
-
#: ../commentluv.php:
|
104 |
-
#: ../commentluv.php:
|
105 |
msgid "Clicks on this link on this comment"
|
106 |
msgstr "Kliknięcia na link w tym komentarzu"
|
107 |
|
108 |
-
#: ../commentluv.php:
|
109 |
-
#: ../commentluv.php:
|
110 |
msgid "approved comments on this site"
|
111 |
msgstr "zatwierdzone komentarze na tej stronie"
|
112 |
|
113 |
-
#: ../commentluv.php:
|
114 |
-
#: ../commentluv.php:
|
115 |
msgid "Some other posts I have commented on"
|
116 |
msgstr "Inne posty, które skomentowałem"
|
117 |
|
118 |
-
#: ../commentluv.php:
|
119 |
msgid "Some of my other posts"
|
120 |
msgstr "Niektóre z moich innych artykułów"
|
121 |
|
122 |
-
#: ../commentluv.php:
|
123 |
msgid "has not registered on this site"
|
124 |
msgstr "nie jest zarejestrowany na stronie"
|
125 |
|
126 |
-
#: ../commentluv.php:
|
127 |
msgid "Could not get posts for home blog"
|
128 |
msgstr "Nie udało się pobrać artykułów ze strony domowej"
|
129 |
|
130 |
-
#: ../commentluv.php:
|
131 |
-
|
132 |
-
msgid "
|
133 |
-
msgstr "
|
134 |
|
135 |
-
#: ../commentluv.php:
|
136 |
-
#: ../commentluv.php:
|
|
|
137 |
msgid "Register"
|
138 |
msgstr "Zarejestruj się"
|
139 |
|
140 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
141 |
msgid "recently posted"
|
142 |
msgstr "ostatnio opublikował"
|
143 |
|
144 |
-
#: ../commentluv.php:
|
145 |
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."
|
146 |
msgstr "Rejestrując się jako użytkownik na mojej stronie, możesz dostać 10 swoich ostatnich artykułów do wyboru w tym polu."
|
147 |
|
148 |
-
#: ../commentluv.php:
|
149 |
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"
|
150 |
msgstr "Jeśli użytkownik zarejestrował się na mojej stronie, w komentarzu do wyboru będzie miał 10 ostatnich artykułów i będzie mógł zobaczyć listę swoich ostatnich postów w tym panelu"
|
151 |
|
152 |
-
#: ../commentluv.php:
|
153 |
msgid "Settings"
|
154 |
msgstr "Ustawienia"
|
155 |
|
156 |
-
#: ../commentluv.php:
|
157 |
msgid "No Posts Were Found!"
|
158 |
msgstr "Nie znaleziono żadnych artykułów!"
|
159 |
|
160 |
-
#: ../commentluv.php:
|
161 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
162 |
msgstr "Dostępna jest nowa wersja CommentLuv, proszę wykonać aktualizację za pośrednictwem tej strony"
|
163 |
|
164 |
-
#: ../commentluv.php:
|
165 |
msgid "Dismiss notice"
|
166 |
msgstr "Informacja o odrzuceniu"
|
167 |
|
168 |
-
#: ../commentluv.php:
|
169 |
msgid "CommentLuv Settings v"
|
170 |
msgstr "Ustawienia CommentLuv v"
|
171 |
|
172 |
-
#: ../commentluv.php:
|
173 |
msgid "Important!"
|
174 |
msgstr "Ważne!"
|
175 |
|
176 |
-
#: ../commentluv.php:
|
177 |
msgid "Subscription Information"
|
178 |
msgstr "Subskrypcja informacji"
|
179 |
|
180 |
-
#: ../commentluv.php:
|
181 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
182 |
msgstr "CommentLuv 3.0 Premium już wkrótce!"
|
183 |
|
184 |
-
#: ../commentluv.php:
|
185 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
186 |
msgstr "Obiecuję, że udostępnione dane nie zostaną odsprzedane lub wykorzystane do rozsyłania spamu. Będziesz otrzymywał informacje wyłącznie o aktualizacjach wtyczki."
|
187 |
|
188 |
-
#: ../commentluv.php:
|
189 |
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"
|
190 |
msgstr "Wkrótce ukaże się wersja premium CommentLuv, która będzie posiadała znacznie większe możliwości kontroli ustawień oraz nowe ekskluzywne funkcje jak słowa kluczowe, rejestracja inline i wiele, wiele więcej! Zarejestruj się, aby otrzymać informację o nowej wersji, gdy tylko będzie dostępna."
|
191 |
|
192 |
-
#: ../commentluv.php:
|
193 |
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"
|
194 |
msgstr "Jesteś już zarejestrowany, jeśli nie otrzymałeś weryfikacji w ciągu 12 godzin, proszę kliknąć przycisk, aby wysłać ją ponownie lub spróbować wypełnić formularz na "
|
195 |
|
196 |
-
#: ../commentluv.php:
|
197 |
msgid "Resend Verification"
|
198 |
msgstr "Ponowna weryfikacja"
|
199 |
|
200 |
-
#: ../commentluv.php:
|
201 |
msgid "Click to register now!"
|
202 |
msgstr "Kliknij tutaj, aby się zarejestrować!"
|
203 |
|
204 |
-
#: ../commentluv.php:
|
205 |
msgid "Primary Setting"
|
206 |
msgstr "Główne ustawienia"
|
207 |
|
208 |
-
#: ../commentluv.php:
|
209 |
-
#: ../commentluv.php:
|
210 |
-
#: ../commentluv.php:
|
211 |
-
#: ../commentluv.php:
|
212 |
-
#: ../commentluv.php:
|
213 |
msgid "Help Video"
|
214 |
msgstr "Film szkoleniowy"
|
215 |
|
216 |
-
#: ../commentluv.php:
|
217 |
msgid "Enable CommentLuv?"
|
218 |
msgstr "Włączyć CommentLuv?"
|
219 |
|
220 |
-
#: ../commentluv.php:
|
221 |
msgid "Yes"
|
222 |
msgstr "Tak"
|
223 |
|
224 |
-
#: ../commentluv.php:
|
225 |
msgid "No"
|
226 |
msgstr "Nie"
|
227 |
|
228 |
-
#: ../commentluv.php:
|
229 |
msgid "On Posts"
|
230 |
msgstr " Dla artykułów"
|
231 |
|
232 |
-
#: ../commentluv.php:
|
233 |
msgid "On Pages"
|
234 |
msgstr " Dla stron"
|
235 |
|
236 |
-
#: ../commentluv.php:
|
237 |
msgid "On Both"
|
238 |
msgstr " Dla artykułów i stron"
|
239 |
|
240 |
-
#: ../commentluv.php:
|
241 |
msgid "On by default?"
|
242 |
msgstr "CommentLuv domyślnie aktywny?"
|
243 |
|
244 |
-
#: ../commentluv.php:
|
245 |
msgid "On for admin?"
|
246 |
msgstr "Aktywny dla administratora?"
|
247 |
|
248 |
-
#: ../commentluv.php:
|
249 |
msgid "Appearance"
|
250 |
msgstr "Wygląd"
|
251 |
|
252 |
-
#: ../commentluv.php:
|
253 |
msgid "Badge"
|
254 |
msgstr "Odznaka"
|
255 |
|
256 |
-
#: ../commentluv.php:
|
257 |
msgid "Custom Image URL"
|
258 |
msgstr "Obrazek z adresu URL"
|
259 |
|
260 |
-
#: ../commentluv.php:
|
261 |
msgid "Use Text"
|
262 |
msgstr "Wstaw tekst"
|
263 |
|
264 |
-
#: ../commentluv.php:
|
265 |
msgid "Default"
|
266 |
msgstr "Domyślna"
|
267 |
|
268 |
-
#: ../commentluv.php:
|
269 |
msgid "White"
|
270 |
msgstr "Biała"
|
271 |
|
272 |
-
#: ../commentluv.php:
|
273 |
msgid "Black"
|
274 |
msgstr "Czarna"
|
275 |
|
276 |
-
#: ../commentluv.php:
|
277 |
msgid "None"
|
278 |
msgstr "Brak"
|
279 |
|
280 |
-
#: ../commentluv.php:
|
281 |
msgid "Link to Commentluv?"
|
282 |
msgstr "Link do Commentluv?"
|
283 |
|
284 |
-
#: ../commentluv.php:
|
285 |
msgid "Enable info panel?"
|
286 |
msgstr "Włączyć panel informacyjny?"
|
287 |
|
288 |
-
#: ../commentluv.php:
|
289 |
msgid "Info panel background color"
|
290 |
msgstr "Kolor tła panelu"
|
291 |
|
292 |
-
#: ../commentluv.php:
|
293 |
msgid "Info panel text color"
|
294 |
msgstr "Kolor tekstu"
|
295 |
|
296 |
-
#: ../commentluv.php:
|
297 |
msgid "Example text and background color"
|
298 |
msgstr "Przykładowy tekst i kolor tła"
|
299 |
|
300 |
-
#: ../commentluv.php:
|
301 |
msgid "Messages"
|
302 |
msgstr "Wiadomości"
|
303 |
|
304 |
-
#: ../commentluv.php:
|
305 |
msgid "Text to be displayed in the comment"
|
306 |
msgstr "Tekst do wyświetlenia w komentarzu"
|
307 |
|
308 |
-
#: ../commentluv.php:
|
309 |
msgid "[name] = The users name"
|
310 |
msgstr "[name] = nazwa użytkownika"
|
311 |
|
312 |
-
#: ../commentluv.php:
|
313 |
msgid "[lastpost] = The last blog post link"
|
314 |
msgstr "[lastpost] = link do ostatniego artykułu"
|
315 |
|
316 |
-
#: ../commentluv.php:
|
317 |
msgid "Message for unregistered user in the drop down box"
|
318 |
msgstr "Wiadomość dla niezarejestrowanych użytkowników na liście rozwijanej"
|
319 |
|
320 |
-
#: ../commentluv.php:
|
321 |
-
#: ../commentluv.php:
|
322 |
msgid "Message will not be shown if you do not have registrations enabled"
|
323 |
-
msgstr ""
|
324 |
|
325 |
-
#: ../commentluv.php:
|
326 |
msgid "Your register link code"
|
327 |
msgstr "Twój link z kodem rejestracyjnym"
|
328 |
|
329 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
330 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
331 |
msgstr "Obecne ustawienia nie pozwalają na rejestrację użytkowników, możesz to zmienić w sekcji Ustawienia/Ogólne"
|
332 |
|
333 |
-
#: ../commentluv.php:
|
334 |
msgid "here"
|
335 |
msgstr "tutaj"
|
336 |
|
337 |
-
#: ../commentluv.php:
|
338 |
msgid "Message for unregistered user in the info panel"
|
339 |
msgstr "Wiadomość dla niezarejestrowanych użytkowników w panelu informacyjnym"
|
340 |
|
341 |
-
#: ../commentluv.php:
|
342 |
msgid "Operational Settings"
|
343 |
msgstr "Zarządzanie ustawieniami"
|
344 |
|
345 |
-
#: ../commentluv.php:
|
346 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
347 |
msgstr "Którym użytkownikom przyznać 10 ostatnich postów do wyboru podczas komentowania?"
|
348 |
|
349 |
-
#: ../commentluv.php:
|
350 |
msgid "Only Registered Members"
|
351 |
msgstr "Tylko zarejestrowanym"
|
352 |
|
353 |
-
#: ../commentluv.php:
|
354 |
msgid "Everybody"
|
355 |
msgstr "Dla wszystkich"
|
356 |
|
357 |
-
#: ../commentluv.php:
|
358 |
msgid "Nobody"
|
359 |
msgstr "Dla żadnego"
|
360 |
|
361 |
-
#: ../commentluv.php:
|
362 |
msgid "Whose links should be dofollow?"
|
363 |
msgstr "Które linki powinny być dofollow?"
|
364 |
|
365 |
-
#: ../commentluv.php:
|
366 |
msgid "Only Registered Members Links"
|
367 |
msgstr "Tylko zarejestrowanych użytkowników"
|
368 |
|
369 |
-
#: ../commentluv.php:
|
370 |
msgid "Everybody gets dofollow links"
|
371 |
msgstr "Wszystkich użytkowników"
|
372 |
|
373 |
-
#: ../commentluv.php:
|
374 |
msgid "Nobody gets dofollow links"
|
375 |
msgstr "Nikt nie dostaje dofollow"
|
376 |
|
377 |
-
#: ../commentluv.php:
|
378 |
msgid "Technical Settings"
|
379 |
msgstr "Ustawienia techniczne"
|
380 |
|
381 |
-
#: ../commentluv.php:
|
382 |
msgid "Click to open technical settings"
|
383 |
msgstr "Kliknij, aby otworzyć ustawienia techniczne"
|
384 |
|
385 |
-
#: ../commentluv.php:
|
386 |
msgid "Please check the help video for this section before changing settings"
|
387 |
msgstr "Przed zmianą ustawień w tej sekcji, zapoznaj się z filmem instruktażowym"
|
388 |
|
389 |
-
#: ../commentluv.php:
|
390 |
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"
|
391 |
msgstr "W większości przypadków nie trzeba zmieniać poniższych ustawień, chyba że masz niestandardowy formularz komentarzy, szablon lub wykorzystujesz funkcję minimalizacji bądź wtyczki buforujące"
|
392 |
|
393 |
-
#: ../commentluv.php:
|
394 |
msgid "Compatibility"
|
395 |
msgstr "Kompatybilność"
|
396 |
|
397 |
-
#: ../commentluv.php:
|
398 |
msgid "Use manual insert of badge code?"
|
399 |
msgstr "Czy ręcznie wstawić kod odznaki?"
|
400 |
|
401 |
-
#: ../commentluv.php:
|
402 |
msgid "Enable minifying compatibility?"
|
403 |
msgstr "Włącz wsparcie dla minimalizacji plików JS"
|
404 |
|
405 |
-
#: ../commentluv.php:
|
406 |
msgid "For caching plugins (places localized code in footer)"
|
407 |
msgstr "Dla wtyczek buforujących (kod zlokalizowany w stopce)"
|
408 |
|
409 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
msgid "API URL"
|
411 |
-
msgstr ""
|
412 |
|
413 |
-
#: ../commentluv.php:
|
414 |
msgid "URL to use for API"
|
415 |
-
msgstr ""
|
416 |
|
417 |
-
#: ../commentluv.php:
|
418 |
msgid "Comment Form Field Values"
|
419 |
msgstr "Wartości pól formularza komentarzy"
|
420 |
|
421 |
-
#: ../commentluv.php:
|
422 |
msgid "Authors Name field name"
|
423 |
msgstr "Nazwa pola: Imię autora"
|
424 |
|
425 |
-
#: ../commentluv.php:
|
426 |
msgid "Email field name"
|
427 |
msgstr "Nazwa pola: E-mail"
|
428 |
|
429 |
-
#: ../commentluv.php:
|
430 |
msgid "Authors URL field name"
|
431 |
msgstr "Nazwa pola: Strona autora"
|
432 |
|
433 |
-
#: ../commentluv.php:
|
434 |
msgid "Comment Text Area name"
|
435 |
msgstr "Nazwa pola: Tytuł komentarza"
|
436 |
|
437 |
-
#: ../commentluv.php:
|
438 |
msgid "Diagnostics Info"
|
439 |
msgstr "Informacje diagnostyczne"
|
440 |
|
441 |
-
#: ../commentluv.php:
|
442 |
msgid "You can copy this information and send it to me if I request it"
|
443 |
msgstr "Możesz skopiować te informacje i wysłać je do mnie, jeśli o to poproszę"
|
444 |
|
445 |
-
#: ../commentluv.php:
|
446 |
msgid "Save Settings"
|
447 |
msgstr "Zapisz ustawienia"
|
448 |
|
449 |
-
#: ../commentluv.php:
|
450 |
msgid "Reset Settings"
|
451 |
msgstr "Zresetuj ustawienia"
|
452 |
|
453 |
-
#: ../commentluv.php:
|
454 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
455 |
msgstr "Czy na pewno chcesz zresetować ustawienia? Naciśnij przycisk OK, aby kontynuować"
|
456 |
|
457 |
-
#: ../commentluv.php:
|
458 |
msgid "Reset"
|
459 |
msgstr "Wyczyść"
|
460 |
|
461 |
-
#: ../commentluv.php:
|
462 |
msgid "Plugin Info"
|
463 |
msgstr "O wtyczce"
|
464 |
|
465 |
-
#: ../commentluv.php:
|
466 |
msgid "Start Here"
|
467 |
msgstr "Rozpocznij tutaj"
|
468 |
|
469 |
-
#: ../commentluv.php:
|
470 |
msgid "Author"
|
471 |
msgstr "Autor"
|
472 |
|
473 |
-
#: ../commentluv.php:
|
474 |
msgid "Home Page"
|
475 |
msgstr "Strona domowa"
|
476 |
|
477 |
-
#: ../commentluv.php:
|
478 |
msgid "Visit www.commentluv.com!"
|
479 |
msgstr "Odwiedź www.commentluv.com!"
|
480 |
|
481 |
-
#: ../commentluv.php:
|
482 |
msgid "Social"
|
483 |
msgstr "Społeczność"
|
484 |
|
485 |
-
#: ../commentluv.php:
|
486 |
msgid "Help"
|
487 |
msgstr "Pomoc"
|
488 |
|
489 |
-
#: ../commentluv.php:
|
490 |
msgid "Help Desk"
|
491 |
msgstr "Help Desk"
|
492 |
|
493 |
-
#: ../commentluv.php:
|
494 |
msgid "Do you like this plugin?"
|
495 |
-
msgstr ""
|
496 |
|
497 |
-
#: ../commentluv.php:
|
498 |
msgid "News"
|
499 |
msgstr "Aktualności"
|
500 |
|
501 |
-
#: ../commentluv.php:
|
502 |
msgid "Thanks to the following for translations"
|
503 |
msgstr "Podziękowania dla następujących tłumaczy"
|
504 |
|
505 |
-
#: ../commentluv.php:
|
506 |
msgid "Italian"
|
507 |
msgstr "Włoski"
|
508 |
|
509 |
-
#: ../commentluv.php:
|
510 |
msgid "Dutch"
|
511 |
msgstr "Holenderski"
|
512 |
|
513 |
-
#: ../commentluv.php:
|
514 |
msgid "Polish"
|
515 |
msgstr "Polski"
|
516 |
|
517 |
-
#: ../commentluv.php:
|
518 |
msgid "Georgian"
|
519 |
msgstr "Gruziński"
|
520 |
|
521 |
-
#: ../commentluv.php:
|
522 |
msgid "Lithuanian"
|
523 |
msgstr "Litewski"
|
524 |
|
525 |
-
#: ../commentluv.php:
|
526 |
msgid "Portuguese"
|
527 |
msgstr "Portugalski"
|
528 |
|
529 |
-
#: ../commentluv.php:
|
530 |
-
#, fuzzy
|
531 |
msgid "Malaysian"
|
532 |
-
msgstr "
|
533 |
|
534 |
-
#: ../commentluv.php:
|
535 |
-
msgid "
|
536 |
-
msgstr "
|
|
|
|
|
|
|
|
|
537 |
|
538 |
-
#: ../commentluv.php:
|
539 |
-
msgid "Chinese"
|
540 |
msgstr "Chiński"
|
541 |
|
542 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid "Hebrew"
|
544 |
msgstr "Hebrajski"
|
545 |
|
546 |
-
#: ../commentluv.php:
|
547 |
msgid "French"
|
548 |
msgstr "Francuski"
|
549 |
|
550 |
-
#: ../commentluv.php:
|
551 |
msgid "Romanian"
|
552 |
msgstr "Rumuński"
|
553 |
|
554 |
-
#: ../commentluv.php:
|
555 |
-
msgid "German"
|
556 |
-
msgstr "Niemiecki"
|
557 |
-
|
558 |
-
#: ../commentluv.php:1425
|
559 |
msgid "Arabic"
|
560 |
msgstr "Arabski"
|
561 |
|
562 |
-
#: ../commentluv.php:
|
563 |
msgid "Want your link here?"
|
564 |
-
msgstr ""
|
565 |
|
566 |
-
#: ../commentluv.php:
|
567 |
msgid "How To Submit A Translation"
|
568 |
-
msgstr ""
|
569 |
|
570 |
-
#: ../commentluv.php:
|
571 |
msgid "Special thanks go to the following"
|
572 |
-
msgstr ""
|
573 |
|
574 |
-
#: ../commentluv.php:
|
575 |
-
#, fuzzy
|
576 |
msgid "CSS Help"
|
577 |
-
msgstr "Pomoc"
|
578 |
|
579 |
-
#: ../commentluv.php:
|
580 |
-
#, fuzzy
|
581 |
msgid "Badge GFX"
|
582 |
msgstr "Odznaka"
|
583 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv 2.7.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-07-25 21:49+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Mariusz Kołacz <m.kolacz@techformator.pl>\n"
|
8 |
"Language-Team: @commentluv, Gianni Diurno <admin@comluv.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
23 |
msgid "Please Update!"
|
24 |
msgstr "Zaktualizuj!"
|
25 |
|
26 |
+
#: ../commentluv.php:250
|
|
|
27 |
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
28 |
msgstr "Wprowadź adres URL, jeśli chcesz dodać ostatni wpis na blogu"
|
29 |
|
30 |
+
#: ../commentluv.php:251
|
31 |
msgid "Please use http:// in front of your url"
|
32 |
msgstr "Dodaj http:// przed adresem URL witryny"
|
33 |
|
34 |
+
#: ../commentluv.php:252
|
35 |
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
36 |
msgstr "Odwiedź swój profil i uzupełnij informacje dodając adres URL witryny"
|
37 |
|
38 |
+
#: ../commentluv.php:253
|
39 |
msgid "No info was available or an error occured"
|
40 |
msgstr "Brak dostępnych informacji lub wystąpił błąd"
|
41 |
|
42 |
+
#: ../commentluv.php:276
|
43 |
msgid "Please wait"
|
44 |
msgstr "Proszę czekać"
|
45 |
|
46 |
+
#: ../commentluv.php:276
|
47 |
msgid "Please check your inbox, an email will be sent to"
|
48 |
msgstr "Proszę sprawdzić swoją skrzynkę odbiorczą, e-mail zostanie przesłany do"
|
49 |
|
50 |
+
#: ../commentluv.php:276
|
51 |
msgid "in the next few minutes with a confirmation link"
|
52 |
msgstr "w ciągu kilku minut z linkiem do potwierdzenia"
|
53 |
|
54 |
+
#: ../commentluv.php:276
|
55 |
msgid "An error happened with the request. Try signing up at the site"
|
56 |
msgstr "Wystąpił błąd podczas wykonywania żądania. Spróbuj zarejestrować się na stronie"
|
57 |
|
58 |
+
#: ../commentluv.php:305
|
59 |
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
+
msgstr "W Twojej instalacji Wordpress brakuje tabeli <strong>wp_commentmeta</strong>!"
|
61 |
|
62 |
+
#: ../commentluv.php:305
|
63 |
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
64 |
+
msgstr "CommentLuv nie może funkcjonować bez tej tabeli, więcej informacji znajdziesz w tym poście na forum wordpress ->"
|
65 |
|
66 |
+
#: ../commentluv.php:305
|
67 |
msgid "Missing wp_commentmeta table"
|
68 |
+
msgstr "Brakuje tabeli wp_commentmeta"
|
69 |
|
70 |
+
#: ../commentluv.php:401
|
71 |
msgid "Twice Monthly"
|
72 |
msgstr "Dwa razy w miesiącu"
|
73 |
|
74 |
+
#: ../commentluv.php:447
|
75 |
msgid "CommentLuv is enabled"
|
76 |
msgstr "CommentLuv jest aktywny"
|
77 |
|
78 |
+
#: ../commentluv.php:488
|
79 |
msgid "Show more posts"
|
80 |
msgstr "Pokaż więcej artykułów"
|
81 |
|
82 |
+
#: ../commentluv.php:584
|
83 |
msgid "I have only commented on this post"
|
84 |
msgstr "Skomentowałem tylko ten artykuł"
|
85 |
|
86 |
+
#: ../commentluv.php:587
|
87 |
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
88 |
msgstr "Gdybym zamieścił więcej komentarzy na tej stronie, zobaczyłbyś tutaj więcej innych moich postów"
|
89 |
|
90 |
+
#: ../commentluv.php:612
|
91 |
msgid "User has not saved a description in their profile page"
|
92 |
msgstr "Użytkownik nie ustawił jeszcze opisu na stronie profilu"
|
93 |
|
94 |
+
#: ../commentluv.php:624
|
95 |
msgid "is the administrator of this site"
|
96 |
msgstr "jest administratorem tej strony"
|
97 |
|
98 |
+
#: ../commentluv.php:626
|
99 |
msgid "is a registered member of my site"
|
100 |
msgstr "jest zarejestrowanym użytkownikiem na mojej stronie"
|
101 |
|
102 |
+
#: ../commentluv.php:629
|
103 |
+
#: ../commentluv.php:648
|
104 |
msgid "Clicks on this link on this comment"
|
105 |
msgstr "Kliknięcia na link w tym komentarzu"
|
106 |
|
107 |
+
#: ../commentluv.php:629
|
108 |
+
#: ../commentluv.php:649
|
109 |
msgid "approved comments on this site"
|
110 |
msgstr "zatwierdzone komentarze na tej stronie"
|
111 |
|
112 |
+
#: ../commentluv.php:629
|
113 |
+
#: ../commentluv.php:650
|
114 |
msgid "Some other posts I have commented on"
|
115 |
msgstr "Inne posty, które skomentowałem"
|
116 |
|
117 |
+
#: ../commentluv.php:629
|
118 |
msgid "Some of my other posts"
|
119 |
msgstr "Niektóre z moich innych artykułów"
|
120 |
|
121 |
+
#: ../commentluv.php:642
|
122 |
msgid "has not registered on this site"
|
123 |
msgstr "nie jest zarejestrowany na stronie"
|
124 |
|
125 |
+
#: ../commentluv.php:767
|
126 |
msgid "Could not get posts for home blog"
|
127 |
msgstr "Nie udało się pobrać artykułów ze strony domowej"
|
128 |
|
129 |
+
#: ../commentluv.php:773
|
130 |
+
#: ../commentluv.php:1046
|
131 |
+
msgid "Warning! You have set to show 10 posts for registered users but you have not enabled user registrations on your site. You should change the operational settings in the CommentLuv settings page to show 10 posts for everyone or enable user registrations"
|
132 |
+
msgstr "Uwaga! Ustawiono wyświetlanie 10 postów dla zarejestrowanych użytkowników, ale nie włączono rejestracji. Należy zmienić ustawienia CommentLuv na wyświetlanie 10 postów dla wszystkich lub włączyć rejestrację użytkowników"
|
133 |
|
134 |
+
#: ../commentluv.php:839
|
135 |
+
#: ../commentluv.php:879
|
136 |
+
#: ../commentluv.php:1365
|
137 |
msgid "Register"
|
138 |
msgstr "Zarejestruj się"
|
139 |
|
140 |
+
#: ../commentluv.php:844
|
141 |
+
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
142 |
+
msgstr "Rejestrując się jako użytkownik na mojej stronie, możesz dostać 10 swoich ostatnich artykułów do wyboru w tym polu."
|
143 |
+
|
144 |
+
#: ../commentluv.php:885
|
145 |
msgid "recently posted"
|
146 |
msgstr "ostatnio opublikował"
|
147 |
|
148 |
+
#: ../commentluv.php:886
|
149 |
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."
|
150 |
msgstr "Rejestrując się jako użytkownik na mojej stronie, możesz dostać 10 swoich ostatnich artykułów do wyboru w tym polu."
|
151 |
|
152 |
+
#: ../commentluv.php:887
|
153 |
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"
|
154 |
msgstr "Jeśli użytkownik zarejestrował się na mojej stronie, w komentarzu do wyboru będzie miał 10 ostatnich artykułów i będzie mógł zobaczyć listę swoich ostatnich postów w tym panelu"
|
155 |
|
156 |
+
#: ../commentluv.php:1080
|
157 |
msgid "Settings"
|
158 |
msgstr "Ustawienia"
|
159 |
|
160 |
+
#: ../commentluv.php:1139
|
161 |
msgid "No Posts Were Found!"
|
162 |
msgstr "Nie znaleziono żadnych artykułów!"
|
163 |
|
164 |
+
#: ../commentluv.php:1179
|
165 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
166 |
msgstr "Dostępna jest nowa wersja CommentLuv, proszę wykonać aktualizację za pośrednictwem tej strony"
|
167 |
|
168 |
+
#: ../commentluv.php:1182
|
169 |
msgid "Dismiss notice"
|
170 |
msgstr "Informacja o odrzuceniu"
|
171 |
|
172 |
+
#: ../commentluv.php:1208
|
173 |
msgid "CommentLuv Settings v"
|
174 |
msgstr "Ustawienia CommentLuv v"
|
175 |
|
176 |
+
#: ../commentluv.php:1218
|
177 |
msgid "Important!"
|
178 |
msgstr "Ważne!"
|
179 |
|
180 |
+
#: ../commentluv.php:1218
|
181 |
msgid "Subscription Information"
|
182 |
msgstr "Subskrypcja informacji"
|
183 |
|
184 |
+
#: ../commentluv.php:1223
|
185 |
msgid "CommentLuv 3.0 Premium is coming soon!"
|
186 |
msgstr "CommentLuv 3.0 Premium już wkrótce!"
|
187 |
|
188 |
+
#: ../commentluv.php:1224
|
189 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
190 |
msgstr "Obiecuję, że udostępnione dane nie zostaną odsprzedane lub wykorzystane do rozsyłania spamu. Będziesz otrzymywał informacje wyłącznie o aktualizacjach wtyczki."
|
191 |
|
192 |
+
#: ../commentluv.php:1227
|
193 |
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"
|
194 |
msgstr "Wkrótce ukaże się wersja premium CommentLuv, która będzie posiadała znacznie większe możliwości kontroli ustawień oraz nowe ekskluzywne funkcje jak słowa kluczowe, rejestracja inline i wiele, wiele więcej! Zarejestruj się, aby otrzymać informację o nowej wersji, gdy tylko będzie dostępna."
|
195 |
|
196 |
+
#: ../commentluv.php:1230
|
197 |
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"
|
198 |
msgstr "Jesteś już zarejestrowany, jeśli nie otrzymałeś weryfikacji w ciągu 12 godzin, proszę kliknąć przycisk, aby wysłać ją ponownie lub spróbować wypełnić formularz na "
|
199 |
|
200 |
+
#: ../commentluv.php:1230
|
201 |
msgid "Resend Verification"
|
202 |
msgstr "Ponowna weryfikacja"
|
203 |
|
204 |
+
#: ../commentluv.php:1232
|
205 |
msgid "Click to register now!"
|
206 |
msgstr "Kliknij tutaj, aby się zarejestrować!"
|
207 |
|
208 |
+
#: ../commentluv.php:1247
|
209 |
msgid "Primary Setting"
|
210 |
msgstr "Główne ustawienia"
|
211 |
|
212 |
+
#: ../commentluv.php:1247
|
213 |
+
#: ../commentluv.php:1281
|
214 |
+
#: ../commentluv.php:1340
|
215 |
+
#: ../commentluv.php:1398
|
216 |
+
#: ../commentluv.php:1429
|
217 |
msgid "Help Video"
|
218 |
msgstr "Film szkoleniowy"
|
219 |
|
220 |
+
#: ../commentluv.php:1251
|
221 |
msgid "Enable CommentLuv?"
|
222 |
msgstr "Włączyć CommentLuv?"
|
223 |
|
224 |
+
#: ../commentluv.php:1252
|
225 |
msgid "Yes"
|
226 |
msgstr "Tak"
|
227 |
|
228 |
+
#: ../commentluv.php:1253
|
229 |
msgid "No"
|
230 |
msgstr "Nie"
|
231 |
|
232 |
+
#: ../commentluv.php:1258
|
233 |
msgid "On Posts"
|
234 |
msgstr " Dla artykułów"
|
235 |
|
236 |
+
#: ../commentluv.php:1259
|
237 |
msgid "On Pages"
|
238 |
msgstr " Dla stron"
|
239 |
|
240 |
+
#: ../commentluv.php:1260
|
241 |
msgid "On Both"
|
242 |
msgstr " Dla artykułów i stron"
|
243 |
|
244 |
+
#: ../commentluv.php:1265
|
245 |
msgid "On by default?"
|
246 |
msgstr "CommentLuv domyślnie aktywny?"
|
247 |
|
248 |
+
#: ../commentluv.php:1269
|
249 |
msgid "On for admin?"
|
250 |
msgstr "Aktywny dla administratora?"
|
251 |
|
252 |
+
#: ../commentluv.php:1281
|
253 |
msgid "Appearance"
|
254 |
msgstr "Wygląd"
|
255 |
|
256 |
+
#: ../commentluv.php:1285
|
257 |
msgid "Badge"
|
258 |
msgstr "Odznaka"
|
259 |
|
260 |
+
#: ../commentluv.php:1286
|
261 |
msgid "Custom Image URL"
|
262 |
msgstr "Obrazek z adresu URL"
|
263 |
|
264 |
+
#: ../commentluv.php:1287
|
265 |
msgid "Use Text"
|
266 |
msgstr "Wstaw tekst"
|
267 |
|
268 |
+
#: ../commentluv.php:1295
|
269 |
msgid "Default"
|
270 |
msgstr "Domyślna"
|
271 |
|
272 |
+
#: ../commentluv.php:1296
|
273 |
msgid "White"
|
274 |
msgstr "Biała"
|
275 |
|
276 |
+
#: ../commentluv.php:1297
|
277 |
msgid "Black"
|
278 |
msgstr "Czarna"
|
279 |
|
280 |
+
#: ../commentluv.php:1298
|
281 |
msgid "None"
|
282 |
msgstr "Brak"
|
283 |
|
284 |
+
#: ../commentluv.php:1315
|
285 |
msgid "Link to Commentluv?"
|
286 |
msgstr "Link do Commentluv?"
|
287 |
|
288 |
+
#: ../commentluv.php:1322
|
289 |
msgid "Enable info panel?"
|
290 |
msgstr "Włączyć panel informacyjny?"
|
291 |
|
292 |
+
#: ../commentluv.php:1323
|
293 |
msgid "Info panel background color"
|
294 |
msgstr "Kolor tła panelu"
|
295 |
|
296 |
+
#: ../commentluv.php:1324
|
297 |
msgid "Info panel text color"
|
298 |
msgstr "Kolor tekstu"
|
299 |
|
300 |
+
#: ../commentluv.php:1330
|
301 |
msgid "Example text and background color"
|
302 |
msgstr "Przykładowy tekst i kolor tła"
|
303 |
|
304 |
+
#: ../commentluv.php:1340
|
305 |
msgid "Messages"
|
306 |
msgstr "Wiadomości"
|
307 |
|
308 |
+
#: ../commentluv.php:1347
|
309 |
msgid "Text to be displayed in the comment"
|
310 |
msgstr "Tekst do wyświetlenia w komentarzu"
|
311 |
|
312 |
+
#: ../commentluv.php:1350
|
313 |
msgid "[name] = The users name"
|
314 |
msgstr "[name] = nazwa użytkownika"
|
315 |
|
316 |
+
#: ../commentluv.php:1350
|
317 |
msgid "[lastpost] = The last blog post link"
|
318 |
msgstr "[lastpost] = link do ostatniego artykułu"
|
319 |
|
320 |
+
#: ../commentluv.php:1357
|
321 |
msgid "Message for unregistered user in the drop down box"
|
322 |
msgstr "Wiadomość dla niezarejestrowanych użytkowników na liście rozwijanej"
|
323 |
|
324 |
+
#: ../commentluv.php:1358
|
325 |
+
#: ../commentluv.php:1384
|
326 |
msgid "Message will not be shown if you do not have registrations enabled"
|
327 |
+
msgstr "Komunikat nie pojawi się jeśli nie masz włączonej rejestracji"
|
328 |
|
329 |
+
#: ../commentluv.php:1362
|
330 |
msgid "Your register link code"
|
331 |
msgstr "Twój link z kodem rejestracyjnym"
|
332 |
|
333 |
+
#: ../commentluv.php:1364
|
334 |
+
msgid "(this will be automatically added if you have not added it yourself to the textarea above)"
|
335 |
+
msgstr "(zostanie to automatycznie dodane, jeśli tego nie dodałeś do powyższego pola textarea)"
|
336 |
+
|
337 |
+
#: ../commentluv.php:1374
|
338 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
339 |
msgstr "Obecne ustawienia nie pozwalają na rejestrację użytkowników, możesz to zmienić w sekcji Ustawienia/Ogólne"
|
340 |
|
341 |
+
#: ../commentluv.php:1375
|
342 |
msgid "here"
|
343 |
msgstr "tutaj"
|
344 |
|
345 |
+
#: ../commentluv.php:1383
|
346 |
msgid "Message for unregistered user in the info panel"
|
347 |
msgstr "Wiadomość dla niezarejestrowanych użytkowników w panelu informacyjnym"
|
348 |
|
349 |
+
#: ../commentluv.php:1398
|
350 |
msgid "Operational Settings"
|
351 |
msgstr "Zarządzanie ustawieniami"
|
352 |
|
353 |
+
#: ../commentluv.php:1405
|
354 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
355 |
msgstr "Którym użytkownikom przyznać 10 ostatnich postów do wyboru podczas komentowania?"
|
356 |
|
357 |
+
#: ../commentluv.php:1406
|
358 |
msgid "Only Registered Members"
|
359 |
msgstr "Tylko zarejestrowanym"
|
360 |
|
361 |
+
#: ../commentluv.php:1407
|
362 |
msgid "Everybody"
|
363 |
msgstr "Dla wszystkich"
|
364 |
|
365 |
+
#: ../commentluv.php:1408
|
366 |
msgid "Nobody"
|
367 |
msgstr "Dla żadnego"
|
368 |
|
369 |
+
#: ../commentluv.php:1415
|
370 |
msgid "Whose links should be dofollow?"
|
371 |
msgstr "Które linki powinny być dofollow?"
|
372 |
|
373 |
+
#: ../commentluv.php:1416
|
374 |
msgid "Only Registered Members Links"
|
375 |
msgstr "Tylko zarejestrowanych użytkowników"
|
376 |
|
377 |
+
#: ../commentluv.php:1417
|
378 |
msgid "Everybody gets dofollow links"
|
379 |
msgstr "Wszystkich użytkowników"
|
380 |
|
381 |
+
#: ../commentluv.php:1418
|
382 |
msgid "Nobody gets dofollow links"
|
383 |
msgstr "Nikt nie dostaje dofollow"
|
384 |
|
385 |
+
#: ../commentluv.php:1429
|
386 |
msgid "Technical Settings"
|
387 |
msgstr "Ustawienia techniczne"
|
388 |
|
389 |
+
#: ../commentluv.php:1429
|
390 |
msgid "Click to open technical settings"
|
391 |
msgstr "Kliknij, aby otworzyć ustawienia techniczne"
|
392 |
|
393 |
+
#: ../commentluv.php:1436
|
394 |
msgid "Please check the help video for this section before changing settings"
|
395 |
msgstr "Przed zmianą ustawień w tej sekcji, zapoznaj się z filmem instruktażowym"
|
396 |
|
397 |
+
#: ../commentluv.php:1437
|
398 |
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"
|
399 |
msgstr "W większości przypadków nie trzeba zmieniać poniższych ustawień, chyba że masz niestandardowy formularz komentarzy, szablon lub wykorzystujesz funkcję minimalizacji bądź wtyczki buforujące"
|
400 |
|
401 |
+
#: ../commentluv.php:1442
|
402 |
msgid "Compatibility"
|
403 |
msgstr "Kompatybilność"
|
404 |
|
405 |
+
#: ../commentluv.php:1446
|
406 |
msgid "Use manual insert of badge code?"
|
407 |
msgstr "Czy ręcznie wstawić kod odznaki?"
|
408 |
|
409 |
+
#: ../commentluv.php:1450
|
410 |
msgid "Enable minifying compatibility?"
|
411 |
msgstr "Włącz wsparcie dla minimalizacji plików JS"
|
412 |
|
413 |
+
#: ../commentluv.php:1451
|
414 |
msgid "For caching plugins (places localized code in footer)"
|
415 |
msgstr "Dla wtyczek buforujących (kod zlokalizowany w stopce)"
|
416 |
|
417 |
+
#: ../commentluv.php:1454
|
418 |
+
msgid "Disable Detection?"
|
419 |
+
msgstr "Wyłączyć wykrywanie?"
|
420 |
+
|
421 |
+
#: ../commentluv.php:1455
|
422 |
+
msgid "For XML errors"
|
423 |
+
msgstr "Błędy XML"
|
424 |
+
|
425 |
+
#: ../commentluv.php:1459
|
426 |
msgid "API URL"
|
427 |
+
msgstr "API URL"
|
428 |
|
429 |
+
#: ../commentluv.php:1463
|
430 |
msgid "URL to use for API"
|
431 |
+
msgstr "URL to use for API"
|
432 |
|
433 |
+
#: ../commentluv.php:1467
|
434 |
msgid "Comment Form Field Values"
|
435 |
msgstr "Wartości pól formularza komentarzy"
|
436 |
|
437 |
+
#: ../commentluv.php:1470
|
438 |
msgid "Authors Name field name"
|
439 |
msgstr "Nazwa pola: Imię autora"
|
440 |
|
441 |
+
#: ../commentluv.php:1475
|
442 |
msgid "Email field name"
|
443 |
msgstr "Nazwa pola: E-mail"
|
444 |
|
445 |
+
#: ../commentluv.php:1480
|
446 |
msgid "Authors URL field name"
|
447 |
msgstr "Nazwa pola: Strona autora"
|
448 |
|
449 |
+
#: ../commentluv.php:1485
|
450 |
msgid "Comment Text Area name"
|
451 |
msgstr "Nazwa pola: Tytuł komentarza"
|
452 |
|
453 |
+
#: ../commentluv.php:1490
|
454 |
msgid "Diagnostics Info"
|
455 |
msgstr "Informacje diagnostyczne"
|
456 |
|
457 |
+
#: ../commentluv.php:1508
|
458 |
msgid "You can copy this information and send it to me if I request it"
|
459 |
msgstr "Możesz skopiować te informacje i wysłać je do mnie, jeśli o to poproszę"
|
460 |
|
461 |
+
#: ../commentluv.php:1515
|
462 |
msgid "Save Settings"
|
463 |
msgstr "Zapisz ustawienia"
|
464 |
|
465 |
+
#: ../commentluv.php:1517
|
466 |
msgid "Reset Settings"
|
467 |
msgstr "Zresetuj ustawienia"
|
468 |
|
469 |
+
#: ../commentluv.php:1520
|
470 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
471 |
msgstr "Czy na pewno chcesz zresetować ustawienia? Naciśnij przycisk OK, aby kontynuować"
|
472 |
|
473 |
+
#: ../commentluv.php:1523
|
474 |
msgid "Reset"
|
475 |
msgstr "Wyczyść"
|
476 |
|
477 |
+
#: ../commentluv.php:1531
|
478 |
msgid "Plugin Info"
|
479 |
msgstr "O wtyczce"
|
480 |
|
481 |
+
#: ../commentluv.php:1534
|
482 |
msgid "Start Here"
|
483 |
msgstr "Rozpocznij tutaj"
|
484 |
|
485 |
+
#: ../commentluv.php:1535
|
486 |
msgid "Author"
|
487 |
msgstr "Autor"
|
488 |
|
489 |
+
#: ../commentluv.php:1536
|
490 |
msgid "Home Page"
|
491 |
msgstr "Strona domowa"
|
492 |
|
493 |
+
#: ../commentluv.php:1536
|
494 |
msgid "Visit www.commentluv.com!"
|
495 |
msgstr "Odwiedź www.commentluv.com!"
|
496 |
|
497 |
+
#: ../commentluv.php:1537
|
498 |
msgid "Social"
|
499 |
msgstr "Społeczność"
|
500 |
|
501 |
+
#: ../commentluv.php:1538
|
502 |
msgid "Help"
|
503 |
msgstr "Pomoc"
|
504 |
|
505 |
+
#: ../commentluv.php:1538
|
506 |
msgid "Help Desk"
|
507 |
msgstr "Help Desk"
|
508 |
|
509 |
+
#: ../commentluv.php:1539
|
510 |
msgid "Do you like this plugin?"
|
511 |
+
msgstr "Podoba Ci się ten plugin?"
|
512 |
|
513 |
+
#: ../commentluv.php:1541
|
514 |
msgid "News"
|
515 |
msgstr "Aktualności"
|
516 |
|
517 |
+
#: ../commentluv.php:1547
|
518 |
msgid "Thanks to the following for translations"
|
519 |
msgstr "Podziękowania dla następujących tłumaczy"
|
520 |
|
521 |
+
#: ../commentluv.php:1548
|
522 |
msgid "Italian"
|
523 |
msgstr "Włoski"
|
524 |
|
525 |
+
#: ../commentluv.php:1549
|
526 |
msgid "Dutch"
|
527 |
msgstr "Holenderski"
|
528 |
|
529 |
+
#: ../commentluv.php:1550
|
530 |
msgid "Polish"
|
531 |
msgstr "Polski"
|
532 |
|
533 |
+
#: ../commentluv.php:1551
|
534 |
msgid "Georgian"
|
535 |
msgstr "Gruziński"
|
536 |
|
537 |
+
#: ../commentluv.php:1552
|
538 |
msgid "Lithuanian"
|
539 |
msgstr "Litewski"
|
540 |
|
541 |
+
#: ../commentluv.php:1553
|
542 |
msgid "Portuguese"
|
543 |
msgstr "Portugalski"
|
544 |
|
545 |
+
#: ../commentluv.php:1554
|
|
|
546 |
msgid "Malaysian"
|
547 |
+
msgstr "Malezyjski"
|
548 |
|
549 |
+
#: ../commentluv.php:1555
|
550 |
+
msgid "Hindi"
|
551 |
+
msgstr "Hinduski"
|
552 |
+
|
553 |
+
#: ../commentluv.php:1556
|
554 |
+
msgid "Indonesian"
|
555 |
+
msgstr "Indonezyjski"
|
556 |
|
557 |
+
#: ../commentluv.php:1557
|
558 |
+
msgid "Chinese (s)"
|
559 |
msgstr "Chiński"
|
560 |
|
561 |
+
#: ../commentluv.php:1558
|
562 |
+
msgid "Spanish"
|
563 |
+
msgstr "Hiszpański"
|
564 |
+
|
565 |
+
#: ../commentluv.php:1559
|
566 |
+
msgid "German"
|
567 |
+
msgstr "Niemiecki"
|
568 |
+
|
569 |
+
#: ../commentluv.php:1560
|
570 |
+
msgid "Persian"
|
571 |
+
msgstr "Perski"
|
572 |
+
|
573 |
+
#: ../commentluv.php:1561
|
574 |
+
msgid "Tamil"
|
575 |
+
msgstr "Tamilski"
|
576 |
+
|
577 |
+
#: ../commentluv.php:1562
|
578 |
+
msgid "Ukranian"
|
579 |
+
msgstr "Ukraiński"
|
580 |
+
|
581 |
+
#: ../commentluv.php:1563
|
582 |
+
msgid "Latvian"
|
583 |
+
msgstr "Łotewski"
|
584 |
+
|
585 |
+
#: ../commentluv.php:1564
|
586 |
+
msgid "Russian"
|
587 |
+
msgstr "Rosyjski"
|
588 |
+
|
589 |
+
#: ../commentluv.php:1566
|
590 |
msgid "Hebrew"
|
591 |
msgstr "Hebrajski"
|
592 |
|
593 |
+
#: ../commentluv.php:1567
|
594 |
msgid "French"
|
595 |
msgstr "Francuski"
|
596 |
|
597 |
+
#: ../commentluv.php:1569
|
598 |
msgid "Romanian"
|
599 |
msgstr "Rumuński"
|
600 |
|
601 |
+
#: ../commentluv.php:1571
|
|
|
|
|
|
|
|
|
602 |
msgid "Arabic"
|
603 |
msgstr "Arabski"
|
604 |
|
605 |
+
#: ../commentluv.php:1573
|
606 |
msgid "Want your link here?"
|
607 |
+
msgstr "Chcesz, aby Twój link znalazł sie tutaj?"
|
608 |
|
609 |
+
#: ../commentluv.php:1573
|
610 |
msgid "How To Submit A Translation"
|
611 |
+
msgstr "Jak zaproponować tłumaczenie"
|
612 |
|
613 |
+
#: ../commentluv.php:1574
|
614 |
msgid "Special thanks go to the following"
|
615 |
+
msgstr "Specjalne podziękowania dla"
|
616 |
|
617 |
+
#: ../commentluv.php:1575
|
|
|
618 |
msgid "CSS Help"
|
619 |
+
msgstr "Pomoc CSS"
|
620 |
|
621 |
+
#: ../commentluv.php:1576
|
|
|
622 |
msgid "Badge GFX"
|
623 |
msgstr "Odznaka"
|
624 |
|
lang/commentluv-ro_RO.po
ADDED
@@ -0,0 +1,583 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: Manuel Cheta <manu_c_2004@yahoo.com>\n"
|
8 |
+
"Language-Team: Manuel Cheța <manu_c_2004@yahoo.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: Română\n"
|
15 |
+
"X-Poedit-Country: România\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../commentluv.php:48
|
20 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
21 |
+
msgstr "CommentLuv necesită WordPress 3.0 sau mai nou."
|
22 |
+
|
23 |
+
#: ../commentluv.php:48
|
24 |
+
msgid "Please Update!"
|
25 |
+
msgstr "Trebuie să faceți actualizarea!"
|
26 |
+
|
27 |
+
#: ../commentluv.php:217
|
28 |
+
msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
|
29 |
+
msgstr "Vă rog să introduceți un URL și apoi să dați clic pe opțiunea CommentLuv dacă doriți să adăugați ultimul articol al blogului dumneavoastră!"
|
30 |
+
|
31 |
+
#: ../commentluv.php:218
|
32 |
+
msgid "Please use http:// in front of your url"
|
33 |
+
msgstr "Vă rog să folosiți <strong>http://</strong> înaintrea URL-ului"
|
34 |
+
|
35 |
+
#: ../commentluv.php:219
|
36 |
+
msgid "You need to visit your profile in the dashboard and update your details with your site URL"
|
37 |
+
msgstr "Trebuie să mergeți la panoul de control din profilul dumneavoastră și să vă actualizați detaliile cu URL-ul site-ului!"
|
38 |
+
|
39 |
+
#: ../commentluv.php:220
|
40 |
+
msgid "No info was available or an error occured"
|
41 |
+
msgstr "Nu există informații sau a apărut o eroare"
|
42 |
+
|
43 |
+
#: ../commentluv.php:243
|
44 |
+
msgid "Please wait"
|
45 |
+
msgstr "Așteptați, vă rog!"
|
46 |
+
|
47 |
+
#: ../commentluv.php:243
|
48 |
+
msgid "Please check your inbox, an email will be sent to"
|
49 |
+
msgstr "Vă rog să vă verificați poșta electronică, un email va fi trimis la "
|
50 |
+
|
51 |
+
#: ../commentluv.php:243
|
52 |
+
msgid "in the next few minutes with a confirmation link"
|
53 |
+
msgstr "în următoarele minute cu un link de confirmare"
|
54 |
+
|
55 |
+
#: ../commentluv.php:243
|
56 |
+
msgid "An error happened with the request. Try signing up at the site"
|
57 |
+
msgstr "Solicitarea dumneavoastră a generat o eroare. Încercați să vă înscrieți la site"
|
58 |
+
|
59 |
+
#: ../commentluv.php:272
|
60 |
+
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
61 |
+
msgstr "Pachetului de instalare WordPress îi lipsește tabelul <strong>wp_commentmeta</strong>!"
|
62 |
+
|
63 |
+
#: ../commentluv.php:272
|
64 |
+
msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
|
65 |
+
msgstr "CommentLuv nu poate funcționa fără acest tabel! Vă rog să consultați acest forum WordPress pentru a învăța cum sa adăugați unul ->"
|
66 |
+
|
67 |
+
#: ../commentluv.php:272
|
68 |
+
msgid "Missing wp_commentmeta table"
|
69 |
+
msgstr "Lipsește tabelul wp_commentmeta"
|
70 |
+
|
71 |
+
#: ../commentluv.php:365
|
72 |
+
msgid "Twice Monthly"
|
73 |
+
msgstr "De două ori pe lună"
|
74 |
+
|
75 |
+
#: ../commentluv.php:392
|
76 |
+
msgid "CommentLuv is enabled"
|
77 |
+
msgstr "CommentLuv este activat"
|
78 |
+
|
79 |
+
#: ../commentluv.php:433
|
80 |
+
msgid "Show more posts"
|
81 |
+
msgstr "Arată mai multe articole"
|
82 |
+
|
83 |
+
#: ../commentluv.php:523
|
84 |
+
msgid "I have only commented on this post"
|
85 |
+
msgstr "Am comentat doar la acest articol"
|
86 |
+
|
87 |
+
#: ../commentluv.php:526
|
88 |
+
msgid "If I had made more comments on this site, you would see more of my other posts here"
|
89 |
+
msgstr "Dacă aș avea mai multe comentarii pe acest blog, ai vedea mai multe dintre articolele mele aici"
|
90 |
+
|
91 |
+
#: ../commentluv.php:551
|
92 |
+
msgid "User has not saved a description in their profile page"
|
93 |
+
msgstr "Utilizatorul nu a salvat o descriere în pagina profilului său"
|
94 |
+
|
95 |
+
#: ../commentluv.php:563
|
96 |
+
msgid "is the administrator of this site"
|
97 |
+
msgstr "este administratorul acestui site"
|
98 |
+
|
99 |
+
#: ../commentluv.php:565
|
100 |
+
msgid "is a registered member of my site"
|
101 |
+
msgstr "este un membru înregistrat al acestui site"
|
102 |
+
|
103 |
+
#: ../commentluv.php:568
|
104 |
+
#: ../commentluv.php:587
|
105 |
+
msgid "Clicks on this link on this comment"
|
106 |
+
msgstr "Clicuri pe acest link la acest comentariu"
|
107 |
+
|
108 |
+
#: ../commentluv.php:568
|
109 |
+
#: ../commentluv.php:588
|
110 |
+
msgid "approved comments on this site"
|
111 |
+
msgstr "comentarii aprobate pe acest site"
|
112 |
+
|
113 |
+
#: ../commentluv.php:568
|
114 |
+
#: ../commentluv.php:589
|
115 |
+
msgid "Some other posts I have commented on"
|
116 |
+
msgstr "Alte articole la care am comentat"
|
117 |
+
|
118 |
+
#: ../commentluv.php:568
|
119 |
+
msgid "Some of my other posts"
|
120 |
+
msgstr "Alte articole de-ale mele"
|
121 |
+
|
122 |
+
#: ../commentluv.php:581
|
123 |
+
msgid "has not registered on this site"
|
124 |
+
msgstr "nu s-a înregistrat pe acest site"
|
125 |
+
|
126 |
+
#: ../commentluv.php:703
|
127 |
+
msgid "Could not get posts for home blog"
|
128 |
+
msgstr "Nu s-au putut prelua articole de pe blogul principal"
|
129 |
+
|
130 |
+
#: ../commentluv.php:759
|
131 |
+
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
132 |
+
msgstr "Dacă ești înregistrat, atunci trebuie să intri în cont pentru putea alege din 10 articole "
|
133 |
+
|
134 |
+
#: ../commentluv.php:783
|
135 |
+
#: ../commentluv.php:1235
|
136 |
+
msgid "Register"
|
137 |
+
msgstr "Înregistrare"
|
138 |
+
|
139 |
+
#: ../commentluv.php:788
|
140 |
+
msgid "recently posted"
|
141 |
+
msgstr "a publicat recent"
|
142 |
+
|
143 |
+
#: ../commentluv.php:789
|
144 |
+
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."
|
145 |
+
msgstr "Dacă te înscrii ca utilizator pe blogul meu, ai șansa să îți alegi 10 dintre cele mai noi articole în această căsuță! "
|
146 |
+
|
147 |
+
#: ../commentluv.php:790
|
148 |
+
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"
|
149 |
+
msgstr "Dacă acest utilizator s-ar fi înregistrat la blogul meu ar fi avut șansa să aleagă 10 dintre cele mai noi articole atunci când lasă un comentariu și tu ai putea vedea o listă cu cele mai noi articole ale sale în acest panou!"
|
150 |
+
|
151 |
+
#: ../commentluv.php:971
|
152 |
+
msgid "Settings"
|
153 |
+
msgstr "Setări"
|
154 |
+
|
155 |
+
#: ../commentluv.php:1010
|
156 |
+
msgid "No Posts Were Found!"
|
157 |
+
msgstr "Nu s-au găsit articole!"
|
158 |
+
|
159 |
+
#: ../commentluv.php:1050
|
160 |
+
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
161 |
+
msgstr "O nouă versiune a CommentLuv este disponibilă. Vă rog să îl actualizați vizitând acest site"
|
162 |
+
|
163 |
+
#: ../commentluv.php:1053
|
164 |
+
msgid "Dismiss notice"
|
165 |
+
msgstr "Îndepărtați anunțul"
|
166 |
+
|
167 |
+
#: ../commentluv.php:1080
|
168 |
+
msgid "CommentLuv Settings v"
|
169 |
+
msgstr "CommentLuv Setări v "
|
170 |
+
|
171 |
+
#: ../commentluv.php:1090
|
172 |
+
msgid "Important!"
|
173 |
+
msgstr "Important!"
|
174 |
+
|
175 |
+
#: ../commentluv.php:1090
|
176 |
+
msgid "Subscription Information"
|
177 |
+
msgstr "Informații legate de înscriere"
|
178 |
+
|
179 |
+
#: ../commentluv.php:1095
|
180 |
+
msgid "CommentLuv 3.0 Premium is coming soon!"
|
181 |
+
msgstr "CommentLuv 3.0 Premium va fi lansat în curând!"
|
182 |
+
|
183 |
+
#: ../commentluv.php:1096
|
184 |
+
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
185 |
+
msgstr "Promit să nu vând detaliile despre tine și nici să îți trimit spam. Vei primi email-uri NUMAI despre actualizările modulului!"
|
186 |
+
|
187 |
+
#: ../commentluv.php:1099
|
188 |
+
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"
|
189 |
+
msgstr "Va fi lansată o versiune Premium a CommentLuv care va avea un control sporit asupra modului în care funcționează pluginul și va conține caracteristici exclusive ca: numele keyword-ului, înregistrare și multe altele! Înregistrează-te ca să afli când este gata "
|
190 |
+
|
191 |
+
#: ../commentluv.php:1102
|
192 |
+
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"
|
193 |
+
msgstr "Te-ai înregistrat deja. Dacă nu ai primit verificarea în termen de 12 ore, te rog să dai clic pe buton pentru a trimite din nou sau să încerci formularul la "
|
194 |
+
|
195 |
+
#: ../commentluv.php:1102
|
196 |
+
msgid "Resend Verification"
|
197 |
+
msgstr "Trimite reverificarea"
|
198 |
+
|
199 |
+
#: ../commentluv.php:1104
|
200 |
+
msgid "Click to register now!"
|
201 |
+
msgstr "Clic pentru a te înregistra acum!"
|
202 |
+
|
203 |
+
#: ../commentluv.php:1119
|
204 |
+
msgid "Primary Setting"
|
205 |
+
msgstr "Setări principale"
|
206 |
+
|
207 |
+
#: ../commentluv.php:1119
|
208 |
+
#: ../commentluv.php:1153
|
209 |
+
#: ../commentluv.php:1212
|
210 |
+
#: ../commentluv.php:1268
|
211 |
+
#: ../commentluv.php:1299
|
212 |
+
msgid "Help Video"
|
213 |
+
msgstr "Film ajutător"
|
214 |
+
|
215 |
+
#: ../commentluv.php:1123
|
216 |
+
msgid "Enable CommentLuv?"
|
217 |
+
msgstr "Activezi CommentLuv?"
|
218 |
+
|
219 |
+
#: ../commentluv.php:1124
|
220 |
+
msgid "Yes"
|
221 |
+
msgstr "Da"
|
222 |
+
|
223 |
+
#: ../commentluv.php:1125
|
224 |
+
msgid "No"
|
225 |
+
msgstr "Nu"
|
226 |
+
|
227 |
+
#: ../commentluv.php:1130
|
228 |
+
msgid "On Posts"
|
229 |
+
msgstr "Pentru articole"
|
230 |
+
|
231 |
+
#: ../commentluv.php:1131
|
232 |
+
msgid "On Pages"
|
233 |
+
msgstr "Pentru pagini"
|
234 |
+
|
235 |
+
#: ../commentluv.php:1132
|
236 |
+
msgid "On Both"
|
237 |
+
msgstr "Pentru ambele"
|
238 |
+
|
239 |
+
#: ../commentluv.php:1137
|
240 |
+
msgid "On by default?"
|
241 |
+
msgstr "Activat în mod implicit?"
|
242 |
+
|
243 |
+
#: ../commentluv.php:1141
|
244 |
+
msgid "On for admin?"
|
245 |
+
msgstr "Activat pentru admin?"
|
246 |
+
|
247 |
+
#: ../commentluv.php:1153
|
248 |
+
msgid "Appearance"
|
249 |
+
msgstr "Aspect"
|
250 |
+
|
251 |
+
#: ../commentluv.php:1157
|
252 |
+
msgid "Badge"
|
253 |
+
msgstr "Insignă"
|
254 |
+
|
255 |
+
#: ../commentluv.php:1158
|
256 |
+
msgid "Custom Image URL"
|
257 |
+
msgstr "URL-ul către altă imagine "
|
258 |
+
|
259 |
+
#: ../commentluv.php:1159
|
260 |
+
msgid "Use Text"
|
261 |
+
msgstr "Folosește textul"
|
262 |
+
|
263 |
+
#: ../commentluv.php:1167
|
264 |
+
msgid "Default"
|
265 |
+
msgstr "Implicit"
|
266 |
+
|
267 |
+
#: ../commentluv.php:1168
|
268 |
+
msgid "White"
|
269 |
+
msgstr "Alb"
|
270 |
+
|
271 |
+
#: ../commentluv.php:1169
|
272 |
+
msgid "Black"
|
273 |
+
msgstr "Negru"
|
274 |
+
|
275 |
+
#: ../commentluv.php:1170
|
276 |
+
msgid "None"
|
277 |
+
msgstr "Fără"
|
278 |
+
|
279 |
+
#: ../commentluv.php:1187
|
280 |
+
msgid "Link to Commentluv?"
|
281 |
+
msgstr "Link către Commentluv?"
|
282 |
+
|
283 |
+
#: ../commentluv.php:1194
|
284 |
+
msgid "Enable info panel?"
|
285 |
+
msgstr "Activezi panoul info?"
|
286 |
+
|
287 |
+
#: ../commentluv.php:1195
|
288 |
+
msgid "Info panel background color"
|
289 |
+
msgstr "Culoare fundal panou info"
|
290 |
+
|
291 |
+
#: ../commentluv.php:1196
|
292 |
+
msgid "Info panel text color"
|
293 |
+
msgstr "Culoare text panou info"
|
294 |
+
|
295 |
+
#: ../commentluv.php:1202
|
296 |
+
msgid "Example text and background color"
|
297 |
+
msgstr "Exemplu de text și culoare de fundal "
|
298 |
+
|
299 |
+
#: ../commentluv.php:1212
|
300 |
+
msgid "Messages"
|
301 |
+
msgstr "Mesaje"
|
302 |
+
|
303 |
+
#: ../commentluv.php:1219
|
304 |
+
msgid "Text to be displayed in the comment"
|
305 |
+
msgstr "Textul afișat în comentariu"
|
306 |
+
|
307 |
+
#: ../commentluv.php:1222
|
308 |
+
msgid "[name] = The users name"
|
309 |
+
msgstr "[name] = Nume utilizator"
|
310 |
+
|
311 |
+
#: ../commentluv.php:1222
|
312 |
+
msgid "[lastpost] = The last blog post link"
|
313 |
+
msgstr "[lastpost] = Link către ultimul articol"
|
314 |
+
|
315 |
+
#: ../commentluv.php:1229
|
316 |
+
msgid "Message for unregistered user in the drop down box"
|
317 |
+
msgstr "Mesajul pentru utilizatori neînregistrați în căsuța drop-down"
|
318 |
+
|
319 |
+
#: ../commentluv.php:1230
|
320 |
+
#: ../commentluv.php:1254
|
321 |
+
msgid "Message will not be shown if you do not have registrations enabled"
|
322 |
+
msgstr "Mesajele nu vor fi afișate dacă nu ai activată înregistrarea"
|
323 |
+
|
324 |
+
#: ../commentluv.php:1234
|
325 |
+
msgid "Your register link code"
|
326 |
+
msgstr "Cod cu linkul de înregistrare"
|
327 |
+
|
328 |
+
#: ../commentluv.php:1244
|
329 |
+
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
330 |
+
msgstr "Blogul tău NU are setată acceptarea înregistrărilor. O poți activa în Settings/General"
|
331 |
+
|
332 |
+
#: ../commentluv.php:1245
|
333 |
+
msgid "here"
|
334 |
+
msgstr "aici"
|
335 |
+
|
336 |
+
#: ../commentluv.php:1253
|
337 |
+
msgid "Message for unregistered user in the info panel"
|
338 |
+
msgstr "Mesaj pentru utilizatorul neînregistrat în panoul info"
|
339 |
+
|
340 |
+
#: ../commentluv.php:1268
|
341 |
+
msgid "Operational Settings"
|
342 |
+
msgstr "Setări operaționale"
|
343 |
+
|
344 |
+
#: ../commentluv.php:1275
|
345 |
+
msgid "Who to give 10 last posts to choose from when they comment?"
|
346 |
+
msgstr "Cui îi permiți alegerea unuia dintre ultimele 10 articole când lasă un comentariu? "
|
347 |
+
|
348 |
+
#: ../commentluv.php:1276
|
349 |
+
msgid "Only Registered Members"
|
350 |
+
msgstr "Doar membrii înregistrați"
|
351 |
+
|
352 |
+
#: ../commentluv.php:1277
|
353 |
+
msgid "Everybody"
|
354 |
+
msgstr "Toți"
|
355 |
+
|
356 |
+
#: ../commentluv.php:1278
|
357 |
+
msgid "Nobody"
|
358 |
+
msgstr "Nimeni"
|
359 |
+
|
360 |
+
#: ../commentluv.php:1285
|
361 |
+
msgid "Whose links should be dofollow?"
|
362 |
+
msgstr "Linkul căruia să fie dofollow?"
|
363 |
+
|
364 |
+
#: ../commentluv.php:1286
|
365 |
+
msgid "Only Registered Members Links"
|
366 |
+
msgstr "Doar linkurile membrilor înregistrați"
|
367 |
+
|
368 |
+
#: ../commentluv.php:1287
|
369 |
+
msgid "Everybody gets dofollow links"
|
370 |
+
msgstr "Toți primesc linkuri dofollow"
|
371 |
+
|
372 |
+
#: ../commentluv.php:1288
|
373 |
+
msgid "Nobody gets dofollow links"
|
374 |
+
msgstr "Nimeni nu primește linkuri dofollow"
|
375 |
+
|
376 |
+
#: ../commentluv.php:1299
|
377 |
+
msgid "Technical Settings"
|
378 |
+
msgstr "Setări tehnice"
|
379 |
+
|
380 |
+
#: ../commentluv.php:1299
|
381 |
+
msgid "Click to open technical settings"
|
382 |
+
msgstr "Clic pentru a deschide setările tehnice"
|
383 |
+
|
384 |
+
#: ../commentluv.php:1306
|
385 |
+
msgid "Please check the help video for this section before changing settings"
|
386 |
+
msgstr "Te rog să verifici filmul ajutător al acestei secțiuni înainte să faci schimbări"
|
387 |
+
|
388 |
+
#: ../commentluv.php:1307
|
389 |
+
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"
|
390 |
+
msgstr "În majoritatea cazurilor NU va trebui să schimbi setările din această căsuță, excepție făcând formulare de comentare sau template-uri personalizate sau dacă folosești pluginuri de minificare sau cache"
|
391 |
+
|
392 |
+
#: ../commentluv.php:1312
|
393 |
+
msgid "Compatibility"
|
394 |
+
msgstr "Compatibilitate"
|
395 |
+
|
396 |
+
#: ../commentluv.php:1316
|
397 |
+
msgid "Use manual insert of badge code?"
|
398 |
+
msgstr "Inserezi manual codul insignei? "
|
399 |
+
|
400 |
+
#: ../commentluv.php:1320
|
401 |
+
msgid "Enable minifying compatibility?"
|
402 |
+
msgstr "Activezi compatibilitatea cu minificarea?"
|
403 |
+
|
404 |
+
#: ../commentluv.php:1321
|
405 |
+
msgid "For caching plugins (places localized code in footer)"
|
406 |
+
msgstr "Pentru plug-inuri de cache (pune cod în footer)"
|
407 |
+
|
408 |
+
#: ../commentluv.php:1326
|
409 |
+
msgid "API URL"
|
410 |
+
msgstr "URL-ul către API"
|
411 |
+
|
412 |
+
#: ../commentluv.php:1330
|
413 |
+
msgid "URL to use for API"
|
414 |
+
msgstr "URL-ul folosit pentru API"
|
415 |
+
|
416 |
+
#: ../commentluv.php:1334
|
417 |
+
msgid "Comment Form Field Values"
|
418 |
+
msgstr "Valorile din câmpul formularului de comentare"
|
419 |
+
|
420 |
+
#: ../commentluv.php:1337
|
421 |
+
msgid "Authors Name field name"
|
422 |
+
msgstr "Numele câmpului autorului"
|
423 |
+
|
424 |
+
#: ../commentluv.php:1342
|
425 |
+
msgid "Email field name"
|
426 |
+
msgstr "Numele câmpului email-ului"
|
427 |
+
|
428 |
+
#: ../commentluv.php:1347
|
429 |
+
msgid "Authors URL field name"
|
430 |
+
msgstr "Nume câmp URL al autorilor"
|
431 |
+
|
432 |
+
#: ../commentluv.php:1352
|
433 |
+
msgid "Comment Text Area name"
|
434 |
+
msgstr "Nume câmp text al comentariilor"
|
435 |
+
|
436 |
+
#: ../commentluv.php:1357
|
437 |
+
msgid "Diagnostics Info"
|
438 |
+
msgstr "Informații diagnosticare"
|
439 |
+
|
440 |
+
#: ../commentluv.php:1375
|
441 |
+
msgid "You can copy this information and send it to me if I request it"
|
442 |
+
msgstr "Poți copia această informație și mi-o poți trimite dacă o solicit"
|
443 |
+
|
444 |
+
#: ../commentluv.php:1382
|
445 |
+
msgid "Save Settings"
|
446 |
+
msgstr "Salvează setările"
|
447 |
+
|
448 |
+
#: ../commentluv.php:1384
|
449 |
+
msgid "Reset Settings"
|
450 |
+
msgstr "Resetează setările"
|
451 |
+
|
452 |
+
#: ../commentluv.php:1387
|
453 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
454 |
+
msgstr "Ești sigur că vrei să resetezi setările? Apasă OK pentru a continua"
|
455 |
+
|
456 |
+
#: ../commentluv.php:1390
|
457 |
+
msgid "Reset"
|
458 |
+
msgstr "Resetează"
|
459 |
+
|
460 |
+
#: ../commentluv.php:1398
|
461 |
+
msgid "Plugin Info"
|
462 |
+
msgstr "Informații despre plug-in"
|
463 |
+
|
464 |
+
#: ../commentluv.php:1401
|
465 |
+
msgid "Start Here"
|
466 |
+
msgstr "Începe aici"
|
467 |
+
|
468 |
+
#: ../commentluv.php:1402
|
469 |
+
msgid "Author"
|
470 |
+
msgstr "Autor"
|
471 |
+
|
472 |
+
#: ../commentluv.php:1403
|
473 |
+
msgid "Home Page"
|
474 |
+
msgstr "Pagina principală"
|
475 |
+
|
476 |
+
#: ../commentluv.php:1403
|
477 |
+
msgid "Visit www.commentluv.com!"
|
478 |
+
msgstr "Vizitează www.commentluv.com!"
|
479 |
+
|
480 |
+
#: ../commentluv.php:1404
|
481 |
+
msgid "Social"
|
482 |
+
msgstr "Social"
|
483 |
+
|
484 |
+
#: ../commentluv.php:1405
|
485 |
+
msgid "Help"
|
486 |
+
msgstr "Ajutor"
|
487 |
+
|
488 |
+
#: ../commentluv.php:1405
|
489 |
+
msgid "Help Desk"
|
490 |
+
msgstr "Panou ajutor"
|
491 |
+
|
492 |
+
#: ../commentluv.php:1406
|
493 |
+
msgid "Do you like this plugin?"
|
494 |
+
msgstr "Îți place acest plugin?"
|
495 |
+
|
496 |
+
#: ../commentluv.php:1408
|
497 |
+
msgid "News"
|
498 |
+
msgstr "Noutăți"
|
499 |
+
|
500 |
+
#: ../commentluv.php:1414
|
501 |
+
msgid "Thanks to the following for translations"
|
502 |
+
msgstr "Mulțumiri traducătorilor"
|
503 |
+
|
504 |
+
#: ../commentluv.php:1415
|
505 |
+
msgid "Italian"
|
506 |
+
msgstr "Italiană"
|
507 |
+
|
508 |
+
#: ../commentluv.php:1416
|
509 |
+
msgid "Dutch"
|
510 |
+
msgstr "Olandeză"
|
511 |
+
|
512 |
+
#: ../commentluv.php:1417
|
513 |
+
msgid "Polish"
|
514 |
+
msgstr "Poloneză"
|
515 |
+
|
516 |
+
#: ../commentluv.php:1418
|
517 |
+
msgid "Georgian"
|
518 |
+
msgstr "Georgiană"
|
519 |
+
|
520 |
+
#: ../commentluv.php:1419
|
521 |
+
msgid "Lithuanian"
|
522 |
+
msgstr "Lituaniană"
|
523 |
+
|
524 |
+
#: ../commentluv.php:1420
|
525 |
+
msgid "Portuguese"
|
526 |
+
msgstr "Portugheză"
|
527 |
+
|
528 |
+
#: ../commentluv.php:1421
|
529 |
+
msgid "Malaysian"
|
530 |
+
msgstr "Malaysiană"
|
531 |
+
|
532 |
+
#: ../commentluv.php:1422
|
533 |
+
msgid "Hindi"
|
534 |
+
msgstr "Hindi"
|
535 |
+
|
536 |
+
#: ../commentluv.php:1423
|
537 |
+
msgid "Russian"
|
538 |
+
msgstr "Rusă"
|
539 |
+
|
540 |
+
#: ../commentluv.php:1424
|
541 |
+
msgid "Chinese"
|
542 |
+
msgstr "Chineză"
|
543 |
+
|
544 |
+
#: ../commentluv.php:1425
|
545 |
+
msgid "Hebrew"
|
546 |
+
msgstr "Ebraică"
|
547 |
+
|
548 |
+
#: ../commentluv.php:1426
|
549 |
+
msgid "French"
|
550 |
+
msgstr "Franceză"
|
551 |
+
|
552 |
+
#: ../commentluv.php:1428
|
553 |
+
msgid "Romanian"
|
554 |
+
msgstr "Română"
|
555 |
+
|
556 |
+
#: ../commentluv.php:1429
|
557 |
+
msgid "German"
|
558 |
+
msgstr "Germană"
|
559 |
+
|
560 |
+
#: ../commentluv.php:1430
|
561 |
+
msgid "Arabic"
|
562 |
+
msgstr "Arabă"
|
563 |
+
|
564 |
+
#: ../commentluv.php:1432
|
565 |
+
msgid "Want your link here?"
|
566 |
+
msgstr "Vrei linkul tău aici?"
|
567 |
+
|
568 |
+
#: ../commentluv.php:1432
|
569 |
+
msgid "How To Submit A Translation"
|
570 |
+
msgstr "Cum să înscrii o traducere"
|
571 |
+
|
572 |
+
#: ../commentluv.php:1433
|
573 |
+
msgid "Special thanks go to the following"
|
574 |
+
msgstr "Mulțumirile speciale merg către "
|
575 |
+
|
576 |
+
#: ../commentluv.php:1434
|
577 |
+
msgid "CSS Help"
|
578 |
+
msgstr "Ajutor CSS"
|
579 |
+
|
580 |
+
#: ../commentluv.php:1435
|
581 |
+
msgid "Badge GFX"
|
582 |
+
msgstr "GFX insignă"
|
583 |
+
|
lang/commentluv-ta_TA.mo
ADDED
Binary file
|
lang/commentluv-ta_TA.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: Tharun <cvtharun@gmail.com>\n"
|
8 |
+
"Language-Team: @commentluv, Gianni Diurno <admin@comluv.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: English\n"
|
13 |
+
"X-Poedit-Country: UNITED KINGDOM\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../commentluv.php:48
|
19 |
+
msgid "CommentLuv requires Wordpress 3.0 or newer."
|
20 |
+
msgstr "கமெண்ட்லவ் -இற்கு வோர்ட்பிரெஸ் 3.0 அல்லது மேல் , தேவை."
|
21 |
+
|
22 |
+
#: ../commentluv.php:48
|
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 "உங்கள்ளுடைய கடைசி ப்ளாக் போஸ்ட் -ஐ இணைக்க ,உங்கள்ளுடைய URL கொடுத்து , கமெண்ட்லவ் செக் பாக்ஸ் -ஐ கிளிக் செய்க "
|
29 |
+
|
30 |
+
#: ../commentluv.php:218
|
31 |
+
msgid "Please use http:// in front of your url"
|
32 |
+
msgstr "தயவுசெய்து உங்களுடைய URL -க்கு முன் http:// பயன்படுத்துக !"
|
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 "தங்கள் கண்டிப்பாக Dashboard - ல் உங்கள் ப்ரோபிலே -க்கு சென்று URL உடன் கூடிய தங்களது தகவலை பூர்த்தி செய்யவேண்டும்."
|
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 "தங்கள் கோரிக்கையில் ஏதோ தவறு நிகழ்ந்துள்ளது.Site -இல் சைன்-அப் செய்து முயசிக்கவும்"
|
57 |
+
|
58 |
+
#: ../commentluv.php:272
|
59 |
+
msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
|
60 |
+
msgstr "உங்களுடைய வோர்ட்பிரெஸ் தொகுப்பு நிறுவுதலில் , <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 "அந்த டேபிள் இன்றி கமெண்ட்லவ் -ஆல் இயங்க முடியாது.வோர்ட்பிரெஸ் Forum -ஐ பார்த்து இதை நிறுவ கற்றுகொள்ளுங்கள் ->"
|
65 |
+
|
66 |
+
#: ../commentluv.php:272
|
67 |
+
msgid "Missing wp_commentmeta table"
|
68 |
+
msgstr "wp_commentmeta table காணவில்லை "
|
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 "பயன்பாட்டாளர், Profile -ல் Description கொடுக்கவில்லை."
|
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 "இந்த கமெண்ட்டில் உள்ள இந்த link இல் மொத்த சொடுக்குகள் "
|
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 "நீங்கள் ஏற்க்கனவே உறுப்பினராக இருந்தால் உங்களுடைய கடைசி 10 போஸ்ட்களை பெற log in செய்யவும் "
|
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 "நீங்கள் எனது தலத்தில் உறுபினராக இருந்தால் உங்களுடைய கடைசி 10 post -களை இங்கிருந்து தேர்ந்தெடுக்க பெறலாம்"
|
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 "Commentluv -இன் ஒரு புதிய பதிப்பு உள்ளது, தயவு செய்து இந்த தளம் சென்று மேம்படுத்தவும் "
|
161 |
+
|
162 |
+
#: ../commentluv.php:1053
|
163 |
+
msgid "Dismiss notice"
|
164 |
+
msgstr "அறிவிப்பை அகற்றவும் "
|
165 |
+
|
166 |
+
#: ../commentluv.php:1080
|
167 |
+
msgid "CommentLuv Settings v"
|
168 |
+
msgstr "CommentLuv அமைப்புகள் "
|
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 "CommentLuv 3.0 Premium விரைவில் வரவுள்ளது !"
|
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 "CommentLuv இன் Premium பதிப்பு வரவுள்ளது.அது இன்னும் நிறைய Plugin கட்டுபாடுகளை கொண்டும் keyword name, inline registration போன்ற வசதிகளுடனும் வரும்.அது தயாரானவுடன் அறிய Sign up செய்யவும் ."
|
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 "நீங்கள் ஏற்கனவே பதிவு செய்துள்ளீர்கள் , 12 மணி நேரத்திற்குள் சரிபார்ப்பு வரவில்லை என்றால், இந்த படிவத்தை மீண்டும் அனுப்புக அல்லது, Try பொத்தானை கிளிக் செய்க"
|
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 "CommentLuv செயல்படுத்தவா?"
|
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 "சொந்த பட URL"
|
257 |
+
|
258 |
+
#: ../commentluv.php:1159
|
259 |
+
msgid "Use Text"
|
260 |
+
msgstr "Text உபயோகிக்க "
|
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 "Commentluv உடன் இணைக்கலாமா?"
|
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 "Comment-ல் காட்டவேண்டிய உதாரண எழுத்துக்கள் "
|
305 |
+
|
306 |
+
#: ../commentluv.php:1222
|
307 |
+
msgid "[name] = The users name"
|
308 |
+
msgstr "[name] = பயனாளரின் பெயர் "
|
309 |
+
|
310 |
+
#: ../commentluv.php:1222
|
311 |
+
msgid "[lastpost] = The last blog post link"
|
312 |
+
msgstr "[lastpost] = கடைசி போஸ்டிற்க்கான லிங்க் "
|
313 |
+
|
314 |
+
#: ../commentluv.php:1229
|
315 |
+
msgid "Message for unregistered user in the drop down box"
|
316 |
+
msgstr "உறுப்பினராகாத பயனாளருக்கான drop down box தகவல் "
|
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 "உங்கள் சேர்க்கை link code"
|
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 "நீங்கள் உங்கள் தளத்தில் உறுப்பினர் சேர்க்கையை அமல் படுத்தவில்லை.அதை Settings/General -இல் செய்யலாம்."
|
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 "யாருடைய link dofollow -ஆக இருக்க வேண்டும்?"
|
362 |
+
|
363 |
+
#: ../commentluv.php:1286
|
364 |
+
msgid "Only Registered Members Links"
|
365 |
+
msgstr "உறுப்பினர்களின் link"
|
366 |
+
|
367 |
+
#: ../commentluv.php:1287
|
368 |
+
msgid "Everybody gets dofollow links"
|
369 |
+
msgstr "எல்லோருடைய link-உம் do follow"
|
370 |
+
|
371 |
+
#: ../commentluv.php:1288
|
372 |
+
msgid "Nobody gets dofollow links"
|
373 |
+
msgstr "எவருக்கும் dofollow link வேண்டாம் "
|
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 "பெரும்பாலும் நீங்கள் இதை மாற்றும் தேவை ஏற்படாது.ஆனால் நீங்கள் custom comment form, template or you are using minifying or caching plugins உபயோகித்தால் தேவை ஏற்படலாம்."
|
390 |
+
|
391 |
+
#: ../commentluv.php:1312
|
392 |
+
msgid "Compatibility"
|
393 |
+
msgstr "இணக்கத்தன்மை (Compatibility)"
|
394 |
+
|
395 |
+
#: ../commentluv.php:1316
|
396 |
+
msgid "Use manual insert of badge code?"
|
397 |
+
msgstr "பேட்ஜ் குறியீட்டை manual -ஆக சேர்க்கவா?"
|
398 |
+
|
399 |
+
#: ../commentluv.php:1320
|
400 |
+
msgid "Enable minifying compatibility?"
|
401 |
+
msgstr "minifying compatibility அமல்படுதவா?"
|
402 |
+
|
403 |
+
#: ../commentluv.php:1321
|
404 |
+
msgid "For caching plugins (places localized code in footer)"
|
405 |
+
msgstr "caching plugins-க்கானது (places localized code in 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 "API-க்கான URL"
|
414 |
+
|
415 |
+
#: ../commentluv.php:1334
|
416 |
+
msgid "Comment Form Field Values"
|
417 |
+
msgstr "Comment Form Field Values"
|
418 |
+
|
419 |
+
#: ../commentluv.php:1337
|
420 |
+
msgid "Authors Name field name"
|
421 |
+
msgstr "கமெண்ட் செய்பவரின் பெயர் கொண்ட field name"
|
422 |
+
|
423 |
+
#: ../commentluv.php:1342
|
424 |
+
msgid "Email field name"
|
425 |
+
msgstr "மின்னஞ்சல் field name"
|
426 |
+
|
427 |
+
#: ../commentluv.php:1347
|
428 |
+
msgid "Authors URL field name"
|
429 |
+
msgstr "கமெண்ட் செய்பவரின் URL field name"
|
430 |
+
|
431 |
+
#: ../commentluv.php:1352
|
432 |
+
msgid "Comment Text Area name"
|
433 |
+
msgstr "கமெண்ட் Text Area name"
|
434 |
+
|
435 |
+
#: ../commentluv.php:1357
|
436 |
+
msgid "Diagnostics Info"
|
437 |
+
msgstr "Diagnostics தகவல்"
|
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 "அமைப்புகளை Reset செய்க "
|
450 |
+
|
451 |
+
#: ../commentluv.php:1387
|
452 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
453 |
+
msgstr "அமைப்புகளை செய்வதில் உறுதியாக உள்ளீரா?தொடர OK பொத்தானை சொடுக்கவும்."
|
454 |
+
|
455 |
+
#: ../commentluv.php:1390
|
456 |
+
msgid "Reset"
|
457 |
+
msgstr "மாற்றியமை (reset)"
|
458 |
+
|
459 |
+
#: ../commentluv.php:1398
|
460 |
+
msgid "Plugin Info"
|
461 |
+
msgstr "Plugin தகவல்"
|
462 |
+
|
463 |
+
#: ../commentluv.php:1401
|
464 |
+
msgid "Start Here"
|
465 |
+
msgstr "இங்கே ஆரம்பிக்கவும் "
|
466 |
+
|
467 |
+
#: ../commentluv.php:1402
|
468 |
+
msgid "Author"
|
469 |
+
msgstr "ஆசிரியர்(Author)"
|
470 |
+
|
471 |
+
#: ../commentluv.php:1403
|
472 |
+
msgid "Home Page"
|
473 |
+
msgstr "இணையத்தளம் "
|
474 |
+
|
475 |
+
#: ../commentluv.php:1403
|
476 |
+
msgid "Visit www.commentluv.com!"
|
477 |
+
msgstr "www.commentluv.com பார்க்க!"
|
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 "இந்த plugin பிடித்திருக்கிறதா?"
|
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 "உங்கள் link இங்கு வேண்டுமா?"
|
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 "CSS உதவி "
|
578 |
+
|
579 |
+
#: ../commentluv.php:1435
|
580 |
+
msgid "Badge GFX"
|
581 |
+
msgstr "பேட்ஜ் GFX"
|
582 |
+
|
lang/commentluv-ua_UA.mo
ADDED
Binary file
|
lang/commentluv-ua_UA.po
ADDED
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: CommentLuv\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-10 15:17-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Alexandr <pixelpwnz@gmail.com>\n"
|
8 |
+
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Ukrainian\n"
|
13 |
+
"X-Poedit-Country: UKRAINE\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../commentluv-manager.php:26
|
20 |
+
msgid "This plugin takes the url from the comment form and tries to parse the feed of the site and display the last entry made. If you have any questions, comments or if you have a good idea that you would like to see in the next version of CommentLuv, please visit http://comluv.com and let me know."
|
21 |
+
msgstr "Цей плагін бере URL з форми для коментарів і намагається проаналізувати цей сайт і відображає останній зроблений запис. Якщо у Вас виникли питання, коментарі або якщо у вас є хороша ідея, яку ви хотіли б бачити в наступній версії CommentLuv, будь ласка, відвідайте http://comluv.com і дайте мені знати"
|
22 |
+
|
23 |
+
#: ../commentluv-manager.php:36
|
24 |
+
msgid "Display Options"
|
25 |
+
msgstr "Параметри дисплея"
|
26 |
+
|
27 |
+
#: ../commentluv-manager.php:40
|
28 |
+
msgid "Enter the text you want displayed in the comment"
|
29 |
+
msgstr "Введіть текст, який буде відображено в коментарі"
|
30 |
+
|
31 |
+
#: ../commentluv-manager.php:43
|
32 |
+
msgid "Text displayed in the select box"
|
33 |
+
msgstr "Текст відображається в полі вибору"
|
34 |
+
|
35 |
+
#: ../commentluv-manager.php:47
|
36 |
+
msgid "CommentLuv on by default?"
|
37 |
+
msgstr "CommentLuv ввімкнений за замовчуванням?"
|
38 |
+
|
39 |
+
#: ../commentluv-manager.php:50
|
40 |
+
msgid "Show heart on links?"
|
41 |
+
msgstr "Показувати серце на посиланнях?"
|
42 |
+
|
43 |
+
#: ../commentluv-manager.php:52
|
44 |
+
msgid "Info panel background color"
|
45 |
+
msgstr "Кольор фону інформаційної панелі"
|
46 |
+
|
47 |
+
#: ../commentluv-manager.php:57
|
48 |
+
msgid "Use template insert to show badge and checkbox?"
|
49 |
+
msgstr "Використовувати шаблон вкладання, щоб показати значок і прапорець?"
|
50 |
+
|
51 |
+
#: ../commentluv-manager.php:58
|
52 |
+
msgid "Do NOT check this unless you have manually inserted the code into your comments.php file "
|
53 |
+
msgstr "Не перевіряти, якщо тільки не було вставлено код вручну в comments.php файл"
|
54 |
+
|
55 |
+
#: ../commentluv-manager.php:64
|
56 |
+
msgid "Display Badge"
|
57 |
+
msgstr "Показати Знак"
|
58 |
+
|
59 |
+
#: ../commentluv-manager.php:68
|
60 |
+
msgid "Many thanks to <a href=\"http://byteful.com\">Byteful Traveller</a> for creating these images."
|
61 |
+
msgstr "Велике спасибі <a href=\"http://byteful.com\">Byteful Traveller</a> за створення цих малюнків."
|
62 |
+
|
63 |
+
#: ../commentluv-manager.php:72
|
64 |
+
msgid "Choose badge to display"
|
65 |
+
msgstr "Вибрати значок для відображення"
|
66 |
+
|
67 |
+
#: ../commentluv-manager.php:77
|
68 |
+
msgid "Show nothing"
|
69 |
+
msgstr "Нічого не показувати"
|
70 |
+
|
71 |
+
#: ../commentluv-manager.php:80
|
72 |
+
msgid "Show text"
|
73 |
+
msgstr "Показувати текст"
|
74 |
+
|
75 |
+
#: ../commentluv-manager.php:80
|
76 |
+
msgid "Prepend html before badge or text (optional)"
|
77 |
+
msgstr "Приєднання HTML перед піктограмою або текстом (опціонально)"
|
78 |
+
|
79 |
+
#: ../commentluv-manager.php:88
|
80 |
+
msgid "Technical Settings"
|
81 |
+
msgstr "Технічні параметри"
|
82 |
+
|
83 |
+
#: ../commentluv-manager.php:92
|
84 |
+
msgid "In most cases you shouldn't need to change these settings unless you have a customized comment form"
|
85 |
+
msgstr "У більшості випадків вам не потрібно змінювати ці параметри, тільки якщо ви не налаштували форму коментарю"
|
86 |
+
|
87 |
+
#: ../commentluv-manager.php:93
|
88 |
+
msgid "These are the name=\"\" values used in the HTML source for the fields on your comment form."
|
89 |
+
msgstr "Це ім'я=\"\" значення, що використовуються в HTML джерелі для полів на вашій формі коментарів."
|
90 |
+
|
91 |
+
#: ../commentluv-manager.php:99
|
92 |
+
msgid "Authors Name field name"
|
93 |
+
msgstr "Поле для імені Автора"
|
94 |
+
|
95 |
+
#: ../commentluv-manager.php:103
|
96 |
+
msgid "Email field name"
|
97 |
+
msgstr "Поле для електронної пошти"
|
98 |
+
|
99 |
+
#: ../commentluv-manager.php:107
|
100 |
+
msgid "Authors URL field name"
|
101 |
+
msgstr "Полн для авторського URL"
|
102 |
+
|
103 |
+
#: ../commentluv-manager.php:111
|
104 |
+
msgid "Comment Text Area name"
|
105 |
+
msgstr "Поле для вводу тексту коментаря"
|
106 |
+
|
107 |
+
#: ../commentluv-manager.php:124
|
108 |
+
msgid "Reset to Default Settings"
|
109 |
+
msgstr "Скидання налаштувань за умовчанням»"
|
110 |
+
|
111 |
+
#: ../commentluv-manager.php:129
|
112 |
+
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
113 |
+
msgstr "Ви впевнені, що хочете скинути налаштування? Натисніть ОК для продовження"
|
114 |
+
|
115 |
+
#: ../commentluv-manager.php:139
|
116 |
+
msgid "Plugin Info"
|
117 |
+
msgstr "Інформація про плагін"
|
118 |
+
|
119 |
+
#: ../commentluv-manager.php:142
|
120 |
+
msgid "Author"
|
121 |
+
msgstr "Автор"
|
122 |
+
|
123 |
+
#: ../commentluv-manager.php:143
|
124 |
+
msgid "Home Page"
|
125 |
+
msgstr "Домашня сторінка"
|
126 |
+
|
127 |
+
#: ../commentluv-manager.php:143
|
128 |
+
msgid "Visit ComLuv to register your site for more luv!"
|
129 |
+
msgstr "Заходьте на ComLuv, щоб зареєструвати свій сайт для отримання додаткової Luv!"
|
130 |
+
|
131 |
+
#: ../commentluv-manager.php:144
|
132 |
+
msgid "Social"
|
133 |
+
msgstr "Соціальний"
|
134 |
+
|
135 |
+
#: ../commentluv-manager.php:145
|
136 |
+
msgid "Help"
|
137 |
+
msgstr "Допомога"
|
138 |
+
|
139 |
+
#: ../commentluv-manager.php:145
|
140 |
+
msgid "Help Desk"
|
141 |
+
msgstr "Служба підтримки"
|
142 |
+
|
143 |
+
#: ../commentluv-manager.php:146
|
144 |
+
msgid "News"
|
145 |
+
msgstr "Новини"
|
146 |
+
|
147 |
+
#: ../commentluv-manager.php:152
|
148 |
+
msgid "Thanks to the following for translations"
|
149 |
+
msgstr "Дякуємо за наступні переклади"
|
150 |
+
|
151 |
+
#: ../commentluv-manager.php:153
|
152 |
+
msgid "Italian"
|
153 |
+
msgstr "Італійський"
|
154 |
+
|
155 |
+
#: ../commentluv-manager.php:154
|
156 |
+
msgid "Russian"
|
157 |
+
msgstr "Російська"
|
158 |
+
|
159 |
+
#: ../commentluv-manager.php:155
|
160 |
+
msgid "Chinese"
|
161 |
+
msgstr "Китайський"
|
162 |
+
|
163 |
+
#: ../commentluv-manager.php:156
|
164 |
+
msgid "Hebrew"
|
165 |
+
msgstr "Іврит"
|
166 |
+
|
167 |
+
#: ../commentluv-manager.php:157
|
168 |
+
msgid "French"
|
169 |
+
msgstr "Французька"
|
170 |
+
|
171 |
+
#: ../commentluv-manager.php:158
|
172 |
+
msgid "Dutch"
|
173 |
+
msgstr "Голландська"
|
174 |
+
|
175 |
+
#: ../commentluv-manager.php:159
|
176 |
+
msgid "Polish"
|
177 |
+
msgstr "Польська"
|
178 |
+
|
179 |
+
#: ../commentluv.php:35
|
180 |
+
msgid "CommentLuv requires Wordpress 2.9.2 or newer."
|
181 |
+
msgstr "CommentLuv вимагає Wordpress 2.9.2 або пізнішої версії."
|
182 |
+
|
183 |
+
#: ../commentluv.php:35
|
184 |
+
msgid "Please Update!"
|
185 |
+
msgstr "Будь ласка, оновіть!"
|
186 |
+
|
187 |
+
#: ../commentluv.php:88
|
188 |
+
msgid "Settings"
|
189 |
+
msgstr "Настройки"
|
190 |
+
|
191 |
+
#: ../commentluv.php:218
|
192 |
+
msgid "There were errors with your chosen settings"
|
193 |
+
msgstr "Були замічені помилки у вибраних налаштуваннях"
|
194 |
+
|
195 |
+
#~ msgid "CommentLuv Member Area"
|
196 |
+
#~ msgstr "CommentLuv пользовательская среда"
|
197 |
+
|
198 |
+
#~ msgid ""
|
199 |
+
#~ "If you register your site for free at <a href=\"http://comluv.com"
|
200 |
+
#~ "\">ComLuv.com</a> you will be able to open up lots of features that are "
|
201 |
+
#~ "for members only like link tracking so you can see which of the comments "
|
202 |
+
#~ "you make on CommentLuv blogs are getting the last blog post clicked and "
|
203 |
+
#~ "the ability to send back more than just blog posts. You can even create "
|
204 |
+
#~ "your own WP2.7 blog there with commentluv pre-installed!."
|
205 |
+
#~ msgstr ""
|
206 |
+
#~ "Бесплатная регистрация доступна здесь <a href=\"http://comluv.com"
|
207 |
+
#~ "\">ComLuv.com</a>. Вы можете создать собственынй WP2.7 блог с "
|
208 |
+
#~ "предустановленным commentluv!."
|
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.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 |
|
@@ -35,6 +35,11 @@ Chinese (simplified) [Third Eye](http://obugs.net "Simplified Chinese Translatio
|
|
35 |
Spanish [Valentin Yonte](http://www.activosenred.com/ "Spanish Translation")
|
36 |
German [Jan Ruehling](http://www.cloudliving.de/ "German Translation")
|
37 |
Persian [Amir Heydari](http://www.3eo.ir/ "Persian Translation")
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
== Installation ==
|
40 |
|
@@ -63,6 +68,20 @@ Please see the videos in the settings page for explanations of how they work.
|
|
63 |
4. edit post comments
|
64 |
|
65 |
== ChangeLog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
= 2.90.7 =
|
68 |
* added : more detailed error messages to javascript
|
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.2.1
|
7 |
+
Stable tag: 2.90.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 |
|
35 |
Spanish [Valentin Yonte](http://www.activosenred.com/ "Spanish Translation")
|
36 |
German [Jan Ruehling](http://www.cloudliving.de/ "German Translation")
|
37 |
Persian [Amir Heydari](http://www.3eo.ir/ "Persian Translation")
|
38 |
+
Tamil [Tharun](http://technostreak.com/ "Tamil Translation")
|
39 |
+
Ukranian [Alyona Lompar](http://www.designcontest.com/ "Ukranian Translation")
|
40 |
+
Latvian [Edgars Bergs] (http://www.yourwebagency.co.uk/ "Latvian Translation")
|
41 |
+
Romanian [Manuel Cheta] (http://obisnuit.eu/ "Romanian Translation")
|
42 |
+
Norwegian [Hanna] (http://www.drommeland.com/ "Norwegian Translation")
|
43 |
|
44 |
== Installation ==
|
45 |
|
68 |
4. edit post comments
|
69 |
|
70 |
== ChangeLog ==
|
71 |
+
= 2.90.8 =
|
72 |
+
* added : Tamil language
|
73 |
+
* added : Ukranian language
|
74 |
+
* added : check for home page in detect commentluv request and send back 10 last posts instead of relying on object which my be populated with the contents of a homepage slider
|
75 |
+
* added : function to count number of approved comments with luvlink made in the past 14 days
|
76 |
+
* added : Latvian language
|
77 |
+
* fixed : small issue with Polish language showing weird characters in settings page.
|
78 |
+
* updated : Polish translation (thanks Mariusz!)
|
79 |
+
* fixed : minor issue with settings page localized js for badge choice in IE
|
80 |
+
* added : Romanian language
|
81 |
+
* fixed : couple of undefined index warnings showing when on debug mode
|
82 |
+
* fixed : error responseText for parseerror should now show the response body
|
83 |
+
* added : check for wp_rss function existence before including rss.php to prevent a fatal error if another plugin is including rss.php in every page (eg. energizer plugin)
|
84 |
+
* added : Norwegian language
|
85 |
|
86 |
= 2.90.7 =
|
87 |
* added : more detailed error messages to javascript
|