Version Description
- Added: Notifications System. (Custom toast messages after each activity)
- Fixed: bbPress replys bug.
- Fixed: Settings UI tabs crash.
- Updated: Portuguese Language File.
- Updated: Dutch Language File.
- Updated: Chinese Language File.
- Updated: Russian Language File.
- Updated: Greek Language File.
- Updated: Persian Language File.
Download this release
Release Info
Developer | alimir |
Plugin | WP ULike |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4 to 2.4.1
- admin/classes/class-settings.php +1 -0
- admin/classes/css/settings-rtl.css +5 -5
- admin/classes/css/settings.css +5 -5
- admin/classes/js/settings.js +2 -2
- admin/classes/tmp/settings.php +16 -1
- assets/css/wp-ulike.css +32 -2
- assets/css/wp-ulike.min.css +2 -2
- assets/js/wp-ulike-plugins.js +1 -1
- assets/js/wp-ulike-scripts.js +45 -11
- assets/js/wp-ulike-scripts.min.js +2 -6
- inc/wp-script.php +7 -3
- inc/wp-ulike.php +23 -10
- lang/wp-ulike-el.mo +0 -0
- lang/wp-ulike-el.po +70 -72
- lang/wp-ulike-fa_IR.mo +0 -0
- lang/wp-ulike-fa_IR.po +138 -113
- lang/wp-ulike-nl_NL.mo +0 -0
- lang/wp-ulike-nl_NL.po +31 -74
- lang/wp-ulike-pt_PT.mo +0 -0
- lang/wp-ulike-pt_PT.po +169 -158
- lang/wp-ulike-ru_RU.mo +0 -0
- lang/wp-ulike-ru_RU.po +110 -112
- lang/wp-ulike-zh_CN.mo +0 -0
- lang/wp-ulike-zh_CN.po +29 -70
- readme.txt +19 -4
- wp-ulike.php +2 -2
admin/classes/class-settings.php
CHANGED
@@ -218,6 +218,7 @@ class wp_ulike_settings {
|
|
218 |
{
|
219 |
wp_enqueue_media();
|
220 |
wp_enqueue_script( 'wm-settings', plugins_url( 'js/settings.js' , __FILE__ ), array( 'jquery', 'wp-color-picker' ) );
|
|
|
221 |
wp_localize_script( 'wm-settings', 'ajax', array(
|
222 |
'url' => admin_url( 'admin-ajax.php' ),
|
223 |
'spinner' => admin_url( 'images/spinner.gif' )
|
218 |
{
|
219 |
wp_enqueue_media();
|
220 |
wp_enqueue_script( 'wm-settings', plugins_url( 'js/settings.js' , __FILE__ ), array( 'jquery', 'wp-color-picker' ) );
|
221 |
+
wp_enqueue_script("jquery-effects-core");
|
222 |
wp_localize_script( 'wm-settings', 'ajax', array(
|
223 |
'url' => admin_url( 'admin-ajax.php' ),
|
224 |
'spinner' => admin_url( 'images/spinner.gif' )
|
admin/classes/css/settings-rtl.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
form.wrap
|
2 |
form.wrap p.submit {
|
3 |
padding-top: 20px;
|
4 |
border-top: 1px solid #ddd;
|
@@ -9,7 +9,7 @@ form.wrap td .settings-error {
|
|
9 |
form.wrap td .settings-error p {
|
10 |
margin: 0.5em 0;
|
11 |
}
|
12 |
-
form.wrap .wm-settings-tabs
|
13 |
float: right;
|
14 |
padding: 10px 15px;
|
15 |
margin: 1em 0 0;
|
@@ -19,13 +19,13 @@ form.wrap .wm-settings-tabs h3 {
|
|
19 |
border-bottom: none;
|
20 |
cursor: pointer;
|
21 |
}
|
22 |
-
form.wrap .wm-settings-tabs
|
23 |
background-color: #f9f9f9;
|
24 |
}
|
25 |
-
form.wrap .wm-settings-tabs
|
26 |
background-color: #fff;
|
27 |
}
|
28 |
-
form.wrap .wm-settings-tabs
|
29 |
border-left: 1px solid #ddd;
|
30 |
}
|
31 |
.wm-settings-tab {
|
1 |
+
form.wrap h2,
|
2 |
form.wrap p.submit {
|
3 |
padding-top: 20px;
|
4 |
border-top: 1px solid #ddd;
|
9 |
form.wrap td .settings-error p {
|
10 |
margin: 0.5em 0;
|
11 |
}
|
12 |
+
form.wrap .wm-settings-tabs h2 {
|
13 |
float: right;
|
14 |
padding: 10px 15px;
|
15 |
margin: 1em 0 0;
|
19 |
border-bottom: none;
|
20 |
cursor: pointer;
|
21 |
}
|
22 |
+
form.wrap .wm-settings-tabs h2:hover {
|
23 |
background-color: #f9f9f9;
|
24 |
}
|
25 |
+
form.wrap .wm-settings-tabs h2.active {
|
26 |
background-color: #fff;
|
27 |
}
|
28 |
+
form.wrap .wm-settings-tabs h2:last-child {
|
29 |
border-left: 1px solid #ddd;
|
30 |
}
|
31 |
.wm-settings-tab {
|
admin/classes/css/settings.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
form.wrap
|
2 |
form.wrap p.submit {
|
3 |
padding-top: 20px;
|
4 |
border-top: 1px solid #ddd;
|
@@ -9,7 +9,7 @@ form.wrap td .settings-error {
|
|
9 |
form.wrap td .settings-error p {
|
10 |
margin: 0.5em 0;
|
11 |
}
|
12 |
-
form.wrap .wm-settings-tabs
|
13 |
float: left;
|
14 |
padding: 10px 15px;
|
15 |
margin: 1em 0 0;
|
@@ -19,13 +19,13 @@ form.wrap .wm-settings-tabs h3 {
|
|
19 |
border-bottom: none;
|
20 |
cursor: pointer;
|
21 |
}
|
22 |
-
form.wrap .wm-settings-tabs
|
23 |
background-color: #f9f9f9;
|
24 |
}
|
25 |
-
form.wrap .wm-settings-tabs
|
26 |
background-color: #fff;
|
27 |
}
|
28 |
-
form.wrap .wm-settings-tabs
|
29 |
border-right: 1px solid #ddd;
|
30 |
}
|
31 |
.wm-settings-tab {
|
1 |
+
form.wrap h2,
|
2 |
form.wrap p.submit {
|
3 |
padding-top: 20px;
|
4 |
border-top: 1px solid #ddd;
|
9 |
form.wrap td .settings-error p {
|
10 |
margin: 0.5em 0;
|
11 |
}
|
12 |
+
form.wrap .wm-settings-tabs h2 {
|
13 |
float: left;
|
14 |
padding: 10px 15px;
|
15 |
margin: 1em 0 0;
|
19 |
border-bottom: none;
|
20 |
cursor: pointer;
|
21 |
}
|
22 |
+
form.wrap .wm-settings-tabs h2:hover {
|
23 |
background-color: #f9f9f9;
|
24 |
}
|
25 |
+
form.wrap .wm-settings-tabs h2.active {
|
26 |
background-color: #fff;
|
27 |
}
|
28 |
+
form.wrap .wm-settings-tabs h2:last-child {
|
29 |
border-right: 1px solid #ddd;
|
30 |
}
|
31 |
.wm-settings-tab {
|
admin/classes/js/settings.js
CHANGED
@@ -6,11 +6,11 @@ jQuery(document).ready(function ($) {
|
|
6 |
current = parseInt(sessionStorage.getItem(page + '_current_tab'), 10) || 0;
|
7 |
$('.wm-settings-section', form).each(function (i, el) {
|
8 |
var setting = $(el).val(),
|
9 |
-
title = $(el).prev('
|
10 |
section = $('<div>').attr('id', page + '_' + setting);
|
11 |
$(el).nextAll().each(function () {
|
12 |
var tag = $(this).prop('tagName');
|
13 |
-
if (tag === '
|
14 |
$(this).appendTo(section);
|
15 |
});
|
16 |
if (tabs.length && title.length) {
|
6 |
current = parseInt(sessionStorage.getItem(page + '_current_tab'), 10) || 0;
|
7 |
$('.wm-settings-section', form).each(function (i, el) {
|
8 |
var setting = $(el).val(),
|
9 |
+
title = $(el).prev('h2'),
|
10 |
section = $('<div>').attr('id', page + '_' + setting);
|
11 |
$(el).nextAll().each(function () {
|
12 |
var tag = $(this).prop('tagName');
|
13 |
+
if (tag === 'H2' || tag === 'INPUT') { return false; }
|
14 |
$(this).appendTo(section);
|
15 |
});
|
16 |
if (tabs.length && title.length) {
|
admin/classes/tmp/settings.php
CHANGED
@@ -60,7 +60,22 @@
|
|
60 |
'label' => __('Format Number', WP_ULIKE_SLUG),
|
61 |
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
62 |
'description' => __('Convert numbers of Likes with string (kilobyte) format.', WP_ULIKE_SLUG) . '<strong> (WHEN? likes>=1000)</strong>'
|
63 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
)
|
65 |
);//end wp_ulike_general
|
66 |
|
60 |
'label' => __('Format Number', WP_ULIKE_SLUG),
|
61 |
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
62 |
'description' => __('Convert numbers of Likes with string (kilobyte) format.', WP_ULIKE_SLUG) . '<strong> (WHEN? likes>=1000)</strong>'
|
63 |
+
),
|
64 |
+
'notifications' => array(
|
65 |
+
'type' => 'checkbox',
|
66 |
+
'default' => 0,
|
67 |
+
'label' => __('Notifications', WP_ULIKE_SLUG),
|
68 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
69 |
+
'description' => __('Custom toast messages after each activity', WP_ULIKE_SLUG)
|
70 |
+
),
|
71 |
+
'like_notice' => array(
|
72 |
+
'default' => __('Thanks! You Liked This.',WP_ULIKE_SLUG),
|
73 |
+
'label' => __( 'Liked Notice Message', WP_ULIKE_SLUG)
|
74 |
+
),
|
75 |
+
'unlike_notice' => array(
|
76 |
+
'default' => __('Sorry! You unliked this.',WP_ULIKE_SLUG),
|
77 |
+
'label' => __( 'Unliked Notice Message', WP_ULIKE_SLUG)
|
78 |
+
)
|
79 |
)
|
80 |
);//end wp_ulike_general
|
81 |
|
assets/css/wp-ulike.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/**
|
2 |
-
* WP ULike Plugin 2.4
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
@@ -595,4 +595,34 @@ button.close {
|
|
595 |
background: #F1F1F1 url("../img/icons/heart.png") no-repeat scroll 85% center;
|
596 |
margin: 2px 2px 0px 0px;
|
597 |
padding: 0px 23px 0px 5px;
|
598 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
+
* WP ULike Plugin 2.4.1
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
595 |
background: #F1F1F1 url("../img/icons/heart.png") no-repeat scroll 85% center;
|
596 |
margin: 2px 2px 0px 0px;
|
597 |
padding: 0px 23px 0px 5px;
|
598 |
+
}
|
599 |
+
|
600 |
+
/**
|
601 |
+
* jQuery toast plugin created by Kamran Ahmed copyright MIT license 2014
|
602 |
+
* v1.3.0
|
603 |
+
*/
|
604 |
+
.jq-toast-wrap { display: block; position: fixed; width: 250px; pointer-events: none !important; margin: 0; padding: 0; letter-spacing: normal; z-index: 9000 !important; }
|
605 |
+
.jq-toast-wrap * { margin: 0; padding: 0; }
|
606 |
+
|
607 |
+
.jq-toast-wrap.bottom-left { bottom: 20px; left: 20px; }
|
608 |
+
.jq-toast-wrap.bottom-right { bottom: 20px; right: 40px; }
|
609 |
+
.jq-toast-wrap.top-left { top: 20px; left: 20px; }
|
610 |
+
.jq-toast-wrap.top-right { top: 20px; right: 40px; }
|
611 |
+
|
612 |
+
.jq-toast-single { display: block; width: 100%; padding: 10px; margin: 0px 0px 5px; border-radius: 4px; font-size: 12px; font-family: arial, sans-serif; line-height: 17px; position: relative; pointer-events: all !important; background-color: #444444; color: white; }
|
613 |
+
|
614 |
+
.jq-toast-single h2 { font-family: arial, sans-serif; font-size: 14px; margin: 0px 0px 7px; background: none; color: inherit; line-height: inherit; letter-spacing: normal; }
|
615 |
+
.jq-toast-single a { color: #eee; text-decoration: none; font-weight: bold; border-bottom: 1px solid white; padding-bottom: 3px; font-size: 12px; }
|
616 |
+
|
617 |
+
.jq-toast-single ul { margin: 0px 0px 0px 15px; background: none; padding:0px; }
|
618 |
+
.jq-toast-single ul li { list-style-type: disc !important; line-height: 17px; background: none; margin: 0; padding: 0; letter-spacing: normal; }
|
619 |
+
|
620 |
+
.close-jq-toast-single { position: absolute; top: 3px; right: 7px; font-size: 14px; cursor: pointer; }
|
621 |
+
|
622 |
+
.jq-toast-loader { display: block; position: absolute; top: -2px; height: 5px; width: 0%; left: 0; border-radius: 5px; background: red; }
|
623 |
+
.jq-toast-loaded { width: 100%; }
|
624 |
+
.jq-has-icon { padding: 10px 10px 10px 50px; background-repeat: no-repeat; background-position: 10px; }
|
625 |
+
.jq-icon-info { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII='); background-color: #31708f; color: #d9edf7; border-color: #bce8f1; }
|
626 |
+
.jq-icon-warning { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII='); background-color: #8a6d3b; color: #fcf8e3; border-color: #faebcc; }
|
627 |
+
.jq-icon-error { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII='); background-color: #a94442; color: #f2dede; border-color: #ebccd1; }
|
628 |
+
.jq-icon-success { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg=='); color: #dff0d8; background-color: #3c763d; border-color: #d6e9c6; }
|
assets/css/wp-ulike.min.css
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
/**
|
2 |
-
* WP ULike Plugin 2.4
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
|
9 |
-
.wpulike{display:inline-block;position:relative;vertical-align:middle;line-height:1;margin:0}.wpulike .counter a{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;vertical-align:middle;line-height:1em;padding:.25em .5em;font-size:.75em;cursor:pointer;max-height:25px;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,0.5) inset;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-decoration:none;-webkit-transition:.25s;-moz-transition:.25s;-ms-transition:.25s;-o-transition:.25s;transition:.25s}.wpulike .counter a:focus{outline:none;border-color:#999}.wpulike .counter a:hover,.wpulike .counter a:active{text-decoration:none;color:#EEE;text-shadow:0 1px 0 rgba(0,0,0,0.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike .counter a.image,.wpulike .counter a.image-unlike{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:10px 20px}.wpulike .counter a.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike .counter a.loading{background-image:url(../img/icons/loading.gif);background-repeat:no-repeat;background-position:center center;padding:10px 20px}.wpulike .count-box{position:relative;display:inline-block;border:1px solid #898F9C;border-radius:.25em;vertical-align:middle;color:#333;font-size:.75em;text-align:center;text-decoration:none;background-color:#fff;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:.25em .5em;margin-left:.5em;line-height:1em;min-width:2.25em}.wpulike .count-box:before{content:'';width:.25em;height:.25em;position:absolute;border:1px solid transparent;background:#fff;border-bottom-color:#898F9C;left:-.2125em;top:50%;margin-top:-.2em;border-left-color:#898F9C;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865476,M12=-0.7071067811865475,M21=0.7071067811865475,M22=0.7071067811865476,sizingMethod='auto expand')}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert > p,.alert > ul{margin-bottom:0}.alert > p + p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#FFF;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.tiles,.most_liked_users{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.tiles li,.most_liked_users li{display:inline-table!important;cursor:pointer!important}.most_liked_users li{margin:0 2px!important}.tiles li.inactive,.most_liked_users li.inactive{visibility:hidden!important;opacity:0!important}.tiles li img,.most_liked_users li img{display:block!important;float:none!important}.commentlist .tiles .avatar{left:0!important}.wp_ulike_thumbnail,.most_liked_comment .avatar{vertical-align:middle;margin:0 10px 0 0}.wp_ulike_style_simple .wp_counter_span:before{content:"("}.wp_ulike_style_simple .wp_counter_span:after{content:")"}.wp_ulike_style_love .wp_counter_span{float:right;display:inline-block;background:#f1f1f1 url(../img/icons/heart.png) 5px center no-repeat;color:#333;font-size:9px;line-height:17px;font-weight:400;margin:2px 0 0 2px;vertical-align:middle;border-radius:10px;padding:0 5px 0 23px;z-index:26}#buddypress .activity ul.item-list li{position:initial}#buddypress div.activity-meta .tiles li a{padding:0}#buddypress .activity-content .wpulike .count-box,#bbpress-forums .bbp-reply-content .wpulike .count-box{font-size:small;padding:.3em .5em}#buddypress div.activity-meta .wpulike .counter a{padding:12px 20px!important}#buddypress div.activity-meta .wpulike .counter a.text{padding:7px 20px!important}#bbpress-forums .bbp-reply-content .wpulike .counter a.text,#bbpress-forums .bbp-reply-content .wpulike .counter a.image,#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike .counter a.loading{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;line-height:1em;padding:.5em 1em;font-size:1em;cursor:pointer;vertical-align:middle;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,0.5) inset;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-decoration:none}#bbpress-forums .bbp-reply-content .wpulike .counter a.image,#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike{background-image:url(../img/icons/remove.png)}#bbpress-forums .bbp-reply-content .wpulike .counter a.loading{background-image:url(../img/icons/loading.gif);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}.wpulike-heart .counter{border:1px solid #E0E0E0;background:url(../img/bg/button-love.png) no-repeat center right;border-radius:5px;padding:2px;max-height:30px}.wpulike-heart .counter a,#buddypress .wpulike-heart .counter a,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.text,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border:none;font-weight:700;box-shadow:none;background:transparent;border-right:1px solid #d3d3d3;border-radius:0}.wpulike-heart .counter a:hover,.wpulike-heart .counter a:active{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .counter a.image,.wpulike-heart .counter a.image-unlike,#buddypress .activity-content .wpulike-heart .counter a.image,#buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png)!important;background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #E0E0E0}.wpulike-heart .counter a.image-unlike,#buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike{background-image:url(../img/icons/remove-heart-16.png)!important}.wpulike-heart .counter a.image:hover{background-image:url(../img/icons/add-heart-hover.png)!important}.wpulike-heart .counter a.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)!important}.wpulike-heart .counter a.loading,#buddypress .activity-content .wpulike-heart .counter a.loading,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{animation:none;background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat!important;background-position:center center!important;padding:11px 15px!important;border-right:1px solid #E0E0E0}.wpulike-heart .count-box{border:none;vertical-align:middle;background-color:transparent;padding:.25em .5em;margin-left:0;color:#525252;font-size:.8em}.wpulike-heart .count-box:before{border:none;background:transparent}.rtl .wpulike .count-box{margin-right:.5em;margin-left:inherit}.rtl .wpulike .count-box:before{right:-.2125em;left:inherit;border-color:#898F9C #898F9C transparent transparent}.rtl .wpulike-heart .counter a,.rtl #buddypress .wpulike-heart .counter a,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.text,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border-left:1px solid #d3d3d3;border-right:0}.rtl .wpulike-heart .counter a.image,.rtl .wpulike-heart .counter a.image-unlike,.rtl #buddypress .activity-content .wpulike-heart .counter a.image,.rtl #buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,.rtl .wpulike-heart .counter a.loading,.rtl #buddypress .activity-content .wpulike-heart .counter a.loading,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border-left:1px solid #E0E0E0;border-right:0}.rtl .wpulike-heart .count-box{margin-right:0;margin-left:inherit}.rtl .alert-dismissable,.rtl .alert-dismissible{padding-right:0;padding-left:35px}.rtl .alert-dismissable .close,.rtl .alert-dismissible .close{right:inherit;left:-21px}.rtl .close{float:left}.rtl .commentlist .tiles .avatar{left:inherit!important;right:0!important}.rtl .wp_ulike_thumbnail,.rtl .most_liked_comment .avatar{margin:0 0 0 10px}.rtl .wp_ulike_style_love .wp_counter_span{float:left;background:#F1F1F1 url(../img/icons/heart.png) no-repeat scroll 85% center;margin:2px 2px 0 0;padding:0 23px 0 5px}
|
1 |
/**
|
2 |
+
* WP ULike Plugin 2.4.1
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
|
9 |
+
.wpulike{display:inline-block;position:relative;vertical-align:middle;line-height:1;margin:0}.wpulike .counter a{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;vertical-align:middle;line-height:1em;padding:.25em .5em;font-size:.75em;cursor:pointer;max-height:25px;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,0.5) inset;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-decoration:none;-webkit-transition:.25s;-moz-transition:.25s;-ms-transition:.25s;-o-transition:.25s;transition:.25s}.wpulike .counter a:focus{outline:none;border-color:#999}.wpulike .counter a:hover,.wpulike .counter a:active{text-decoration:none;color:#EEE;text-shadow:0 1px 0 rgba(0,0,0,0.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike .counter a.image,.wpulike .counter a.image-unlike{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:10px 20px}.wpulike .counter a.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike .counter a.loading{background-image:url(../img/icons/loading.gif);background-repeat:no-repeat;background-position:center center;padding:10px 20px}.wpulike .count-box{position:relative;display:inline-block;border:1px solid #898F9C;border-radius:.25em;vertical-align:middle;color:#333;font-size:.75em;text-align:center;text-decoration:none;background-color:#fff;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:.25em .5em;margin-left:.5em;line-height:1em;min-width:2.25em}.wpulike .count-box:before{content:'';width:.25em;height:.25em;position:absolute;border:1px solid transparent;background:#fff;border-bottom-color:#898F9C;left:-.2125em;top:50%;margin-top:-.2em;border-left-color:#898F9C;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);filter:progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865476,M12=-0.7071067811865475,M21=0.7071067811865475,M22=0.7071067811865476,sizingMethod='auto expand')}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert > p,.alert > ul{margin-bottom:0}.alert > p + p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#FFF;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.tiles,.most_liked_users{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.tiles li,.most_liked_users li{display:inline-table!important;cursor:pointer!important}.most_liked_users li{margin:0 2px!important}.tiles li.inactive,.most_liked_users li.inactive{visibility:hidden!important;opacity:0!important}.tiles li img,.most_liked_users li img{display:block!important;float:none!important}.commentlist .tiles .avatar{left:0!important}.wp_ulike_thumbnail,.most_liked_comment .avatar{vertical-align:middle;margin:0 10px 0 0}.wp_ulike_style_simple .wp_counter_span:before{content:"("}.wp_ulike_style_simple .wp_counter_span:after{content:")"}.wp_ulike_style_love .wp_counter_span{float:right;display:inline-block;background:#f1f1f1 url(../img/icons/heart.png) 5px center no-repeat;color:#333;font-size:9px;line-height:17px;font-weight:400;margin:2px 0 0 2px;vertical-align:middle;border-radius:10px;padding:0 5px 0 23px;z-index:26}#buddypress .activity ul.item-list li{position:initial}#buddypress div.activity-meta .tiles li a{padding:0}#buddypress .activity-content .wpulike .count-box,#bbpress-forums .bbp-reply-content .wpulike .count-box{font-size:small;padding:.3em .5em}#buddypress div.activity-meta .wpulike .counter a{padding:12px 20px!important}#buddypress div.activity-meta .wpulike .counter a.text{padding:7px 20px!important}#bbpress-forums .bbp-reply-content .wpulike .counter a.text,#bbpress-forums .bbp-reply-content .wpulike .counter a.image,#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike .counter a.loading{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;line-height:1em;padding:.5em 1em;font-size:1em;cursor:pointer;vertical-align:middle;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,0.5) inset;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-decoration:none}#bbpress-forums .bbp-reply-content .wpulike .counter a.image,#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}#bbpress-forums .bbp-reply-content .wpulike .counter a.image-unlike{background-image:url(../img/icons/remove.png)}#bbpress-forums .bbp-reply-content .wpulike .counter a.loading{background-image:url(../img/icons/loading.gif);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}.wpulike-heart .counter{border:1px solid #E0E0E0;background:url(../img/bg/button-love.png) no-repeat center right;border-radius:5px;padding:2px;max-height:30px}.wpulike-heart .counter a,#buddypress .wpulike-heart .counter a,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.text,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border:none;font-weight:700;box-shadow:none;background:transparent;border-right:1px solid #d3d3d3;border-radius:0}.wpulike-heart .counter a:hover,.wpulike-heart .counter a:active{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .counter a.image,.wpulike-heart .counter a.image-unlike,#buddypress .activity-content .wpulike-heart .counter a.image,#buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png)!important;background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #E0E0E0}.wpulike-heart .counter a.image-unlike,#buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike{background-image:url(../img/icons/remove-heart-16.png)!important}.wpulike-heart .counter a.image:hover{background-image:url(../img/icons/add-heart-hover.png)!important}.wpulike-heart .counter a.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)!important}.wpulike-heart .counter a.loading,#buddypress .activity-content .wpulike-heart .counter a.loading,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{animation:none;background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat!important;background-position:center center!important;padding:11px 15px!important;border-right:1px solid #E0E0E0}.wpulike-heart .count-box{border:none;vertical-align:middle;background-color:transparent;padding:.25em .5em;margin-left:0;color:#525252;font-size:.8em}.wpulike-heart .count-box:before{border:none;background:transparent}.rtl .wpulike .count-box{margin-right:.5em;margin-left:inherit}.rtl .wpulike .count-box:before{right:-.2125em;left:inherit;border-color:#898F9C #898F9C transparent transparent}.rtl .wpulike-heart .counter a,.rtl #buddypress .wpulike-heart .counter a,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.text,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border-left:1px solid #d3d3d3;border-right:0}.rtl .wpulike-heart .counter a.image,.rtl .wpulike-heart .counter a.image-unlike,.rtl #buddypress .activity-content .wpulike-heart .counter a.image,.rtl #buddypress .activity-content .wpulike-heart .counter a.image-unlike,#bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.image-unlike,.rtl .wpulike-heart .counter a.loading,.rtl #buddypress .activity-content .wpulike-heart .counter a.loading,.rtl #bbpress-forums .bbp-reply-content .wpulike-heart .counter a.loading{border-left:1px solid #E0E0E0;border-right:0}.rtl .wpulike-heart .count-box{margin-right:0;margin-left:inherit}.rtl .alert-dismissable,.rtl .alert-dismissible{padding-right:0;padding-left:35px}.rtl .alert-dismissable .close,.rtl .alert-dismissible .close{right:inherit;left:-21px}.rtl .close{float:left}.rtl .commentlist .tiles .avatar{left:inherit!important;right:0!important}.rtl .wp_ulike_thumbnail,.rtl .most_liked_comment .avatar{margin:0 0 0 10px}.rtl .wp_ulike_style_love .wp_counter_span{float:left;background:#F1F1F1 url(../img/icons/heart.png) no-repeat scroll 85% center;margin:2px 2px 0 0;padding:0 23px 0 5px}.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}
|
assets/js/wp-ulike-plugins.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
if(!function(t){"use strict";var e=function(t,e){this.init("tooltip",t,e)};e.prototype={constructor:e,init:function(e,i,n){var o,s,r,a,l;for(this.type=e,this.$element=t(i),this.options=this.getOptions(n),this.enabled=!0,r=this.options.trigger.split(" "),l=r.length;l--;)a=r[l],"click"==a?this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this)):"manual"!=a&&(o="hover"==a?"mouseenter":"focus",s="hover"==a?"mouseleave":"blur",this.$element.on(o+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,t.proxy(this.leave,this)));this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(e){return e=t.extend({},t.fn[this.type].defaults,this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},enter:function(e){var i,n=t.fn[this.type].defaults,o={};return this._options&&t.each(this._options,function(t,e){n[t]!=e&&(o[t]=e)},this),i=t(e.currentTarget)[this.type](o).data(this.type),i.options.delay&&i.options.delay.show?(clearTimeout(this.timeout),i.hoverState="in",void(this.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show))):i.show()},leave:function(e){var i=t(e.currentTarget)[this.type](this._options).data(this.type);return this.timeout&&clearTimeout(this.timeout),i.options.delay&&i.options.delay.hide?(i.hoverState="out",void(this.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide))):i.hide()},show:function(){var e,i,n,o,s,r,a=t.Event("show");if(this.hasContent()&&this.enabled){if(this.$element.trigger(a),a.isDefaultPrevented())return;switch(e=this.tip(),this.setContent(),this.options.animation&&e.addClass("fade"),s="function"==typeof this.options.placement?this.options.placement.call(this,e[0],this.$element[0]):this.options.placement,e.detach().css({top:0,left:0,display:"block"}),this.options.container?e.appendTo(this.options.container):e.insertAfter(this.$element),i=this.getPosition(),n=e[0].offsetWidth,o=e[0].offsetHeight,s){case"bottom":r={top:i.top+i.height,left:i.left+i.width/2-n/2};break;case"top":r={top:i.top-o,left:i.left+i.width/2-n/2};break;case"left":r={top:i.top+i.height/2-o/2,left:i.left-n};break;case"right":r={top:i.top+i.height/2-o/2,left:i.left+i.width}}this.applyPlacement(r,s),this.$element.trigger("shown")}},applyPlacement:function(t,e){var i,n,o,s,r=this.tip(),a=r[0].offsetWidth,l=r[0].offsetHeight;r.offset(t).addClass(e).addClass("in"),i=r[0].offsetWidth,n=r[0].offsetHeight,"top"==e&&n!=l&&(t.top=t.top+l-n,s=!0),"bottom"==e||"top"==e?(o=0,t.left<0&&(o=-2*t.left,t.left=0,r.offset(t),i=r[0].offsetWidth,n=r[0].offsetHeight),this.replaceArrow(o-a+i,i,"left")):this.replaceArrow(n-l,n,"top"),s&&r.offset(t)},replaceArrow:function(t,e,i){this.arrow().css(i,t?50*(1-t/e)+"%":"")},setContent:function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},hide:function(){function e(){var e=setTimeout(function(){i.off(t.support.transition.end).detach()},500);i.one(t.support.transition.end,function(){clearTimeout(e),i.detach()})}var i=this.tip(),n=t.Event("hide");return this.$element.trigger(n),n.isDefaultPrevented()?void 0:(i.removeClass("in"),t.support.transition&&this.$tip.hasClass("fade")?e():i.detach(),this.$element.trigger("hidden"),this)},fixTitle:function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var e=this.$element[0];return t.extend({},"function"==typeof e.getBoundingClientRect?e.getBoundingClientRect():{width:e.offsetWidth,height:e.offsetHeight},this.$element.offset())},getTitle:function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},tip:function(){return this.$tip=this.$tip||t(this.options.template)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(e){var i=e?t(e.currentTarget)[this.type](this._options).data(this.type):this;i.tip().hasClass("in")?i.hide():i.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var i=t.fn.tooltip;t.fn.tooltip=function(i){return this.each(function(){var n=t(this),o=n.data("tooltip"),s="object"==typeof i&&i;o||n.data("tooltip",o=new e(this,s)),"string"==typeof i&&o[i]()})},t.fn.tooltip.Constructor=e,t.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},t.fn.tooltip.noConflict=function(){return t.fn.tooltip=i,this}}(window.jQuery),"undefined"==typeof jQuery)throw new Error("WP Ulike's JavaScript requires jQuery");if(+function(t){"use strict";function e(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,n=this;t(this).one("bsTransitionEnd",function(){i=!0});var o=function(){i||t(n).trigger(t.support.transition.end)};return setTimeout(o,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){return t(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),"undefined"==typeof jQuery)throw new Error("WP Ulike's JavaScript requires jQuery");+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.alert");o||i.data("bs.alert",o=new n(this)),"string"==typeof e&&o[e].call(i)})}var i='[data-dismiss="alert"]',n=function(e){t(e).on("click",i,this.close)};n.VERSION="3.2.0",n.prototype.close=function(e){function i(){s.detach().trigger("closed.bs.alert").remove()}var n=t(this),o=n.attr("data-target");o||(o=n.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,""));var s=t(o);e&&e.preventDefault(),s.length||(s=n.hasClass("alert")?n:n.parent()),s.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(s.removeClass("in"),t.support.transition&&s.hasClass("fade")?s.one("bsTransitionEnd",i).emulateTransitionEnd(150):i())};var o=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=n,t.fn.alert.noConflict=function(){return t.fn.alert=o,this},t(document).on("click.bs.alert.data-api",i,n.prototype.close)}(jQuery),jQuery(document).ready(function(t){t(".user-tooltip").tooltip()});
|
1 |
+
if(!function(t){"use strict";var e=function(t,e){this.init("tooltip",t,e)};e.prototype={constructor:e,init:function(e,i,n){var o,s,r,a,l;for(this.type=e,this.$element=t(i),this.options=this.getOptions(n),this.enabled=!0,r=this.options.trigger.split(" "),l=r.length;l--;)a=r[l],"click"==a?this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this)):"manual"!=a&&(o="hover"==a?"mouseenter":"focus",s="hover"==a?"mouseleave":"blur",this.$element.on(o+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(s+"."+this.type,this.options.selector,t.proxy(this.leave,this)));this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},getOptions:function(e){return e=t.extend({},t.fn[this.type].defaults,this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},enter:function(e){var i,n=t.fn[this.type].defaults,o={};return this._options&&t.each(this._options,function(t,e){n[t]!=e&&(o[t]=e)},this),i=t(e.currentTarget)[this.type](o).data(this.type),i.options.delay&&i.options.delay.show?(clearTimeout(this.timeout),i.hoverState="in",void(this.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show))):i.show()},leave:function(e){var i=t(e.currentTarget)[this.type](this._options).data(this.type);return this.timeout&&clearTimeout(this.timeout),i.options.delay&&i.options.delay.hide?(i.hoverState="out",void(this.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide))):i.hide()},show:function(){var e,i,n,o,s,r,a=t.Event("show");if(this.hasContent()&&this.enabled){if(this.$element.trigger(a),a.isDefaultPrevented())return;switch(e=this.tip(),this.setContent(),this.options.animation&&e.addClass("fade"),s="function"==typeof this.options.placement?this.options.placement.call(this,e[0],this.$element[0]):this.options.placement,e.detach().css({top:0,left:0,display:"block"}),this.options.container?e.appendTo(this.options.container):e.insertAfter(this.$element),i=this.getPosition(),n=e[0].offsetWidth,o=e[0].offsetHeight,s){case"bottom":r={top:i.top+i.height,left:i.left+i.width/2-n/2};break;case"top":r={top:i.top-o,left:i.left+i.width/2-n/2};break;case"left":r={top:i.top+i.height/2-o/2,left:i.left-n};break;case"right":r={top:i.top+i.height/2-o/2,left:i.left+i.width}}this.applyPlacement(r,s),this.$element.trigger("shown")}},applyPlacement:function(t,e){var i,n,o,s,r=this.tip(),a=r[0].offsetWidth,l=r[0].offsetHeight;r.offset(t).addClass(e).addClass("in"),i=r[0].offsetWidth,n=r[0].offsetHeight,"top"==e&&n!=l&&(t.top=t.top+l-n,s=!0),"bottom"==e||"top"==e?(o=0,t.left<0&&(o=-2*t.left,t.left=0,r.offset(t),i=r[0].offsetWidth,n=r[0].offsetHeight),this.replaceArrow(o-a+i,i,"left")):this.replaceArrow(n-l,n,"top"),s&&r.offset(t)},replaceArrow:function(t,e,i){this.arrow().css(i,t?50*(1-t/e)+"%":"")},setContent:function(){var t=this.tip(),e=this.getTitle();t.find(".tooltip-inner")[this.options.html?"html":"text"](e),t.removeClass("fade in top bottom left right")},hide:function(){function e(){var e=setTimeout(function(){i.off(t.support.transition.end).detach()},500);i.one(t.support.transition.end,function(){clearTimeout(e),i.detach()})}var i=this.tip(),n=t.Event("hide");return this.$element.trigger(n),n.isDefaultPrevented()?void 0:(i.removeClass("in"),t.support.transition&&this.$tip.hasClass("fade")?e():i.detach(),this.$element.trigger("hidden"),this)},fixTitle:function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},hasContent:function(){return this.getTitle()},getPosition:function(){var e=this.$element[0];return t.extend({},"function"==typeof e.getBoundingClientRect?e.getBoundingClientRect():{width:e.offsetWidth,height:e.offsetHeight},this.$element.offset())},getTitle:function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},tip:function(){return this.$tip=this.$tip||t(this.options.template)},arrow:function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},validate:function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},enable:function(){this.enabled=!0},disable:function(){this.enabled=!1},toggleEnabled:function(){this.enabled=!this.enabled},toggle:function(e){var i=e?t(e.currentTarget)[this.type](this._options).data(this.type):this;i.tip().hasClass("in")?i.hide():i.show()},destroy:function(){this.hide().$element.off("."+this.type).removeData(this.type)}};var i=t.fn.tooltip;t.fn.tooltip=function(i){return this.each(function(){var n=t(this),o=n.data("tooltip"),s="object"==typeof i&&i;o||n.data("tooltip",o=new e(this,s)),"string"==typeof i&&o[i]()})},t.fn.tooltip.Constructor=e,t.fn.tooltip.defaults={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},t.fn.tooltip.noConflict=function(){return t.fn.tooltip=i,this}}(window.jQuery),"undefined"==typeof jQuery)throw new Error("WP Ulike's JavaScript requires jQuery");if(+function(t){"use strict";function e(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,n=this;t(this).one("bsTransitionEnd",function(){i=!0});var o=function(){i||t(n).trigger(t.support.transition.end)};return setTimeout(o,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){return t(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),"undefined"==typeof jQuery)throw new Error("WP Ulike's JavaScript requires jQuery");+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),o=i.data("bs.alert");o||i.data("bs.alert",o=new n(this)),"string"==typeof e&&o[e].call(i)})}var i='[data-dismiss="alert"]',n=function(e){t(e).on("click",i,this.close)};n.VERSION="3.2.0",n.prototype.close=function(e){function i(){s.detach().trigger("closed.bs.alert").remove()}var n=t(this),o=n.attr("data-target");o||(o=n.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,""));var s=t(o);e&&e.preventDefault(),s.length||(s=n.hasClass("alert")?n:n.parent()),s.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(s.removeClass("in"),t.support.transition&&s.hasClass("fade")?s.one("bsTransitionEnd",i).emulateTransitionEnd(150):i())};var o=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=n,t.fn.alert.noConflict=function(){return t.fn.alert=o,this},t(document).on("click.bs.alert.data-api",i,n.prototype.close)}(jQuery),jQuery(document).ready(function(t){t(".user-tooltip").tooltip()});!function(e){e(["jquery"],function(e){return function(){function t(e,t,n){return g({type:O.error,iconClass:m().iconClasses.error,message:e,optionsOverride:n,title:t})}function n(t,n){return t||(t=m()),v=e("#"+t.containerId),v.length?v:(n&&(v=d(t)),v)}function o(e,t,n){return g({type:O.info,iconClass:m().iconClasses.info,message:e,optionsOverride:n,title:t})}function s(e){C=e}function i(e,t,n){return g({type:O.success,iconClass:m().iconClasses.success,message:e,optionsOverride:n,title:t})}function a(e,t,n){return g({type:O.warning,iconClass:m().iconClasses.warning,message:e,optionsOverride:n,title:t})}function r(e,t){var o=m();v||n(o),u(e,o,t)||l(o)}function c(t){var o=m();return v||n(o),t&&0===e(":focus",t).length?void h(t):void(v.children().length&&v.remove())}function l(t){for(var n=v.children(),o=n.length-1;o>=0;o--)u(e(n[o]),t)}function u(t,n,o){var s=!(!o||!o.force)&&o.force;return!(!t||!s&&0!==e(":focus",t).length)&&(t[n.hideMethod]({duration:n.hideDuration,easing:n.hideEasing,complete:function(){h(t)}}),!0)}function d(t){return v=e("<div/>").attr("id",t.containerId).addClass(t.positionClass),v.appendTo(e(t.target)),v}function p(){return{tapToDismiss:!0,toastClass:"toast",containerId:"toast-container",debug:!1,showMethod:"fadeIn",showDuration:300,showEasing:"swing",onShown:void 0,hideMethod:"fadeOut",hideDuration:1e3,hideEasing:"swing",onHidden:void 0,closeMethod:!1,closeDuration:!1,closeEasing:!1,closeOnHover:!0,extendedTimeOut:1e3,iconClasses:{error:"toast-error",info:"toast-info",success:"toast-success",warning:"toast-warning"},iconClass:"toast-info",positionClass:"toast-top-right",timeOut:5e3,titleClass:"toast-title",messageClass:"toast-message",escapeHtml:!1,target:"body",closeHtml:'<button type="button">×</button>',closeClass:"toast-close-button",newestOnTop:!0,preventDuplicates:!1,progressBar:!1,progressClass:"toast-progress",rtl:!1}}function f(e){C&&C(e)}function g(t){function o(e){return null==e&&(e=""),e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function s(){c(),u(),d(),p(),g(),C(),l(),i()}function i(){var e="";switch(t.iconClass){case"toast-success":case"toast-info":e="polite";break;default:e="assertive"}I.attr("aria-live",e)}function a(){E.closeOnHover&&I.hover(H,D),!E.onclick&&E.tapToDismiss&&I.click(b),E.closeButton&&j&&j.click(function(e){e.stopPropagation?e.stopPropagation():void 0!==e.cancelBubble&&e.cancelBubble!==!0&&(e.cancelBubble=!0),E.onCloseClick&&E.onCloseClick(e),b(!0)}),E.onclick&&I.click(function(e){E.onclick(e),b()})}function r(){I.hide(),I[E.showMethod]({duration:E.showDuration,easing:E.showEasing,complete:E.onShown}),E.timeOut>0&&(k=setTimeout(b,E.timeOut),F.maxHideTime=parseFloat(E.timeOut),F.hideEta=(new Date).getTime()+F.maxHideTime,E.progressBar&&(F.intervalId=setInterval(x,10)))}function c(){t.iconClass&&I.addClass(E.toastClass).addClass(y)}function l(){E.newestOnTop?v.prepend(I):v.append(I)}function u(){if(t.title){var e=t.title;E.escapeHtml&&(e=o(t.title)),M.append(e).addClass(E.titleClass),I.append(M)}}function d(){if(t.message){var e=t.message;E.escapeHtml&&(e=o(t.message)),B.append(e).addClass(E.messageClass),I.append(B)}}function p(){E.closeButton&&(j.addClass(E.closeClass).attr("role","button"),I.prepend(j))}function g(){E.progressBar&&(q.addClass(E.progressClass),I.prepend(q))}function C(){E.rtl&&I.addClass("rtl")}function O(e,t){if(e.preventDuplicates){if(t.message===w)return!0;w=t.message}return!1}function b(t){var n=t&&E.closeMethod!==!1?E.closeMethod:E.hideMethod,o=t&&E.closeDuration!==!1?E.closeDuration:E.hideDuration,s=t&&E.closeEasing!==!1?E.closeEasing:E.hideEasing;if(!e(":focus",I).length||t)return clearTimeout(F.intervalId),I[n]({duration:o,easing:s,complete:function(){h(I),clearTimeout(k),E.onHidden&&"hidden"!==P.state&&E.onHidden(),P.state="hidden",P.endTime=new Date,f(P)}})}function D(){(E.timeOut>0||E.extendedTimeOut>0)&&(k=setTimeout(b,E.extendedTimeOut),F.maxHideTime=parseFloat(E.extendedTimeOut),F.hideEta=(new Date).getTime()+F.maxHideTime)}function H(){clearTimeout(k),F.hideEta=0,I.stop(!0,!0)[E.showMethod]({duration:E.showDuration,easing:E.showEasing})}function x(){var e=(F.hideEta-(new Date).getTime())/F.maxHideTime*100;q.width(e+"%")}var E=m(),y=t.iconClass||E.iconClass;if("undefined"!=typeof t.optionsOverride&&(E=e.extend(E,t.optionsOverride),y=t.optionsOverride.iconClass||y),!O(E,t)){T++,v=n(E,!0);var k=null,I=e("<div/>"),M=e("<div/>"),B=e("<div/>"),q=e("<div/>"),j=e(E.closeHtml),F={intervalId:null,hideEta:null,maxHideTime:null},P={toastId:T,state:"visible",startTime:new Date,options:E,map:t};return s(),r(),a(),f(P),E.debug&&console&&console.log(P),I}}function m(){return e.extend({},p(),b.options)}function h(e){v||(v=n()),e.is(":visible")||(e.remove(),e=null,0===v.children().length&&(v.remove(),w=void 0))}var v,C,w,T=0,O={error:"error",info:"info",success:"success",warning:"warning"},b={clear:r,remove:c,error:t,getContainer:n,info:o,options:{},subscribe:s,success:i,version:"2.1.3",warning:a};return b}()})}("function"==typeof define&&define.amd?define:function(e,t){"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):window.toastr=t(window.jQuery)});
|
assets/js/wp-ulike-scripts.js
CHANGED
@@ -1,12 +1,11 @@
|
|
1 |
/**
|
2 |
-
* WP ULike Plugin 2.4
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
jQuery(document).ready(function($) {
|
9 |
-
|
10 |
//start WP ULike process
|
11 |
$(document).on('click', '.wp_ulike_btn',function(e) {
|
12 |
var type = $(this).data('ulike-type');
|
@@ -15,6 +14,27 @@ jQuery(document).ready(function($) {
|
|
15 |
var uclass = $(this).data('ulike-class');
|
16 |
var p_class = $(e.target).closest( "a" ).parent();
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
if (id != '') {
|
19 |
//start AJAX
|
20 |
jQuery.ajax({
|
@@ -29,38 +49,52 @@ jQuery(document).ready(function($) {
|
|
29 |
p_class.html('<a class="loading"></a><span class="count-box">...</span>');
|
30 |
},
|
31 |
success: function(data) {
|
|
|
32 |
if(status == 1){
|
33 |
if(ulike_obj.button_type == 'image'){
|
34 |
-
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='2' class='wp_ulike_btn image-unlike'></a><span class='count-box'>"+
|
35 |
} else {
|
36 |
-
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='2' class='wp_ulike_btn text'>" + ulike_obj.button_text_u + "</a><span class='count-box'>"+
|
37 |
-
}
|
|
|
|
|
|
|
38 |
}
|
39 |
if(status == 2){
|
40 |
if(ulike_obj.button_type == 'image'){
|
41 |
-
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn image'></a><span class='count-box'>"+
|
42 |
} else {
|
43 |
-
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn text'>" + ulike_obj.button_text + "</a><span class='count-box'>"+
|
44 |
}
|
|
|
|
|
|
|
45 |
}
|
46 |
if(status == 3){
|
47 |
if(ulike_obj.button_type == 'image'){
|
48 |
-
p_class.html("<a class='image-unlike user-tooltip' title='Already Voted'></a><span class='count-box'>"+
|
49 |
} else {
|
50 |
-
p_class.html("<a class='text user-tooltip' title='Already Voted'>" + ulike_obj.button_text_u + "</a><span class='count-box'>"+
|
|
|
|
|
|
|
51 |
}
|
52 |
}
|
53 |
if(status == 4){
|
54 |
if(ulike_obj.button_type == 'image'){
|
55 |
-
p_class.html("<a class='image' title='You Liked This'></a><span class='count-box'>"+
|
56 |
}
|
57 |
else{
|
58 |
-
p_class.html("<a class='text' title='You Liked This'>" + ulike_obj.button_text + "</a><span class='count-box'>"+
|
59 |
}
|
|
|
|
|
|
|
60 |
}
|
61 |
}
|
62 |
});
|
63 |
//End Ajax
|
|
|
64 |
}
|
65 |
});
|
66 |
});
|
1 |
/**
|
2 |
+
* WP ULike Plugin 2.4.1
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
jQuery(document).ready(function($) {
|
|
|
9 |
//start WP ULike process
|
10 |
$(document).on('click', '.wp_ulike_btn',function(e) {
|
11 |
var type = $(this).data('ulike-type');
|
14 |
var uclass = $(this).data('ulike-class');
|
15 |
var p_class = $(e.target).closest( "a" ).parent();
|
16 |
|
17 |
+
if(ulike_obj.notifications == 1) {
|
18 |
+
var liked = ulike_obj.like_notice;
|
19 |
+
var unliked = ulike_obj.unlike_notice;
|
20 |
+
toastr.options = {
|
21 |
+
"closeButton": false,
|
22 |
+
"debug": false,
|
23 |
+
"newestOnTop": false,
|
24 |
+
"progressBar": false,
|
25 |
+
"positionClass": "toast-bottom-right",
|
26 |
+
"preventDuplicates": false,
|
27 |
+
"showDuration": "300",
|
28 |
+
"hideDuration": "1000",
|
29 |
+
"timeOut": "5000",
|
30 |
+
"extendedTimeOut": "1000",
|
31 |
+
"showEasing": "swing",
|
32 |
+
"hideEasing": "linear",
|
33 |
+
"showMethod": "fadeIn",
|
34 |
+
"hideMethod": "fadeOut"
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
if (id != '') {
|
39 |
//start AJAX
|
40 |
jQuery.ajax({
|
49 |
p_class.html('<a class="loading"></a><span class="count-box">...</span>');
|
50 |
},
|
51 |
success: function(data) {
|
52 |
+
var vardata = jQuery( data ).find( 'response_data' ).text();
|
53 |
if(status == 1){
|
54 |
if(ulike_obj.button_type == 'image'){
|
55 |
+
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='2' class='wp_ulike_btn image-unlike'></a><span class='count-box'>"+vardata+"</span>");
|
56 |
} else {
|
57 |
+
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='2' class='wp_ulike_btn text'>" + ulike_obj.button_text_u + "</a><span class='count-box'>"+vardata+"</span>");
|
58 |
+
}
|
59 |
+
if( typeof liked !== 'undefined' && liked != ''){
|
60 |
+
toastr.success(liked)
|
61 |
+
}
|
62 |
}
|
63 |
if(status == 2){
|
64 |
if(ulike_obj.button_type == 'image'){
|
65 |
+
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn image'></a><span class='count-box'>"+vardata+"</span>");
|
66 |
} else {
|
67 |
+
p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn text'>" + ulike_obj.button_text + "</a><span class='count-box'>"+vardata+"</span>");
|
68 |
}
|
69 |
+
if( typeof unliked !== 'undefined' && unliked != ''){
|
70 |
+
toastr.error(unliked)
|
71 |
+
}
|
72 |
}
|
73 |
if(status == 3){
|
74 |
if(ulike_obj.button_type == 'image'){
|
75 |
+
p_class.html("<a class='image-unlike user-tooltip' title='Already Voted'></a><span class='count-box'>"+vardata+"</span>");
|
76 |
} else {
|
77 |
+
p_class.html("<a class='text user-tooltip' title='Already Voted'>" + ulike_obj.button_text_u + "</a><span class='count-box'>"+vardata+"</span>");
|
78 |
+
}
|
79 |
+
if( typeof liked !== 'undefined' && liked != ''){
|
80 |
+
toastr.success(liked)
|
81 |
}
|
82 |
}
|
83 |
if(status == 4){
|
84 |
if(ulike_obj.button_type == 'image'){
|
85 |
+
p_class.html("<a class='image' title='You Liked This'></a><span class='count-box'>"+vardata+"</span>");
|
86 |
}
|
87 |
else{
|
88 |
+
p_class.html("<a class='text' title='You Liked This'>" + ulike_obj.button_text + "</a><span class='count-box'>"+vardata+"</span>");
|
89 |
}
|
90 |
+
if( typeof liked !== 'undefined' && liked != ''){
|
91 |
+
toastr.success(liked)
|
92 |
+
}
|
93 |
}
|
94 |
}
|
95 |
});
|
96 |
//End Ajax
|
97 |
+
e.preventDefault();
|
98 |
}
|
99 |
});
|
100 |
});
|
assets/js/wp-ulike-scripts.min.js
CHANGED
@@ -1,12 +1,8 @@
|
|
1 |
/**
|
2 |
-
* WP ULike Plugin 2.4
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
-
jQuery(document).ready(function(
|
9 |
-
if(status==2){if(ulike_obj.button_type=='image'){p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn image'></a><span class='count-box'>"+data+"</span>");}else{p_class.html("<a data-ulike-id='"+id+"' data-ulike-type='"+type+"' data-ulike-status='1' class='wp_ulike_btn text'>"+ulike_obj.button_text+"</a><span class='count-box'>"+data+"</span>");}}
|
10 |
-
if(status==3){if(ulike_obj.button_type=='image'){p_class.html("<a class='image-unlike user-tooltip' title='Already Voted'></a><span class='count-box'>"+data+"</span>");}else{p_class.html("<a class='text user-tooltip' title='Already Voted'>"+ulike_obj.button_text_u+"</a><span class='count-box'>"+data+"</span>");}}
|
11 |
-
if(status==4){if(ulike_obj.button_type=='image'){p_class.html("<a class='image' title='You Liked This'></a><span class='count-box'>"+data+"</span>");}
|
12 |
-
else{p_class.html("<a class='text' title='You Liked This'>"+ulike_obj.button_text+"</a><span class='count-box'>"+data+"</span>");}}}});}});});
|
1 |
/**
|
2 |
+
* WP ULike Plugin 2.4.1
|
3 |
*
|
4 |
* http://wordpress.org/plugins/wp-ulike/
|
5 |
* https://github.com/Alimir/wp-ulike
|
6 |
*
|
7 |
*/
|
8 |
+
jQuery(document).ready(function(a){a(document).on("click",".wp_ulike_btn",function(b){var c=a(this).data("ulike-type"),d=a(this).data("ulike-status"),e=a(this).data("ulike-id"),g=(a(this).data("ulike-class"),a(b.target).closest("a").parent());if(1==ulike_obj.notifications){var h=ulike_obj.like_notice,i=ulike_obj.unlike_notice;toastr.options={closeButton:!1,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toast-bottom-right",preventDuplicates:!1,showDuration:"300",hideDuration:"1000",timeOut:"5000",extendedTimeOut:"1000",showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"}}""!=e&&(jQuery.ajax({type:"POST",url:ulike_obj.ajaxurl,data:{action:"wp_ulike_process",id:e,type:c},beforeSend:function(){g.html('<a class="loading"></a><span class="count-box">...</span>')},success:function(a){var b=jQuery(a).find("response_data").text();1==d&&("image"==ulike_obj.button_type?g.html("<a data-ulike-id='"+e+"' data-ulike-type='"+c+"' data-ulike-status='2' class='wp_ulike_btn image-unlike'></a><span class='count-box'>"+b+"</span>"):g.html("<a data-ulike-id='"+e+"' data-ulike-type='"+c+"' data-ulike-status='2' class='wp_ulike_btn text'>"+ulike_obj.button_text_u+"</a><span class='count-box'>"+b+"</span>"),"undefined"!=typeof h&&""!=h&&toastr.success(h)),2==d&&("image"==ulike_obj.button_type?g.html("<a data-ulike-id='"+e+"' data-ulike-type='"+c+"' data-ulike-status='1' class='wp_ulike_btn image'></a><span class='count-box'>"+b+"</span>"):g.html("<a data-ulike-id='"+e+"' data-ulike-type='"+c+"' data-ulike-status='1' class='wp_ulike_btn text'>"+ulike_obj.button_text+"</a><span class='count-box'>"+b+"</span>"),"undefined"!=typeof i&&""!=i&&toastr.error(i)),3==d&&("image"==ulike_obj.button_type?g.html("<a class='image-unlike user-tooltip' title='Already Voted'></a><span class='count-box'>"+b+"</span>"):g.html("<a class='text user-tooltip' title='Already Voted'>"+ulike_obj.button_text_u+"</a><span class='count-box'>"+b+"</span>"),"undefined"!=typeof h&&""!=h&&toastr.success(h)),4==d&&("image"==ulike_obj.button_type?g.html("<a class='image' title='You Liked This'></a><span class='count-box'>"+b+"</span>"):g.html("<a class='text' title='You Liked This'>"+ulike_obj.button_text+"</a><span class='count-box'>"+b+"</span>"),"undefined"!=typeof h&&""!=h&&toastr.success(h))}}),b.preventDefault())})});
|
|
|
|
|
|
|
|
inc/wp-script.php
CHANGED
@@ -8,6 +8,7 @@
|
|
8 |
* @author Alimir
|
9 |
* @since 1.0
|
10 |
* @updated 2.2
|
|
|
11 |
* @return void
|
12 |
*/
|
13 |
add_action('init', 'wp_ulike_enqueue_scripts');
|
@@ -16,15 +17,18 @@
|
|
16 |
//enqueue JQuery script
|
17 |
wp_enqueue_script( 'jquery' );
|
18 |
//Add ulike script file with special functions.
|
19 |
-
wp_enqueue_script('wp_ulike', plugins_url('assets/js/wp-ulike-scripts.min.js', dirname(__FILE__)), array('jquery'), '1.2.
|
20 |
//Add ulike plugin file, such as: tooltip, transaction, ...
|
21 |
-
wp_enqueue_script('wp_ulike_plugins', plugins_url('assets/js/wp-ulike-plugins.js', dirname(__FILE__)), array('jquery'), '1.0.
|
22 |
//localize script
|
23 |
wp_localize_script( 'wp_ulike', 'ulike_obj', array(
|
24 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
25 |
'button_text_u' => wp_ulike_get_setting( 'wp_ulike_general', 'button_text_u'),
|
26 |
'button_text' => wp_ulike_get_setting( 'wp_ulike_general', 'button_text'),
|
27 |
-
'button_type' => wp_ulike_get_setting( 'wp_ulike_general', 'button_type')
|
|
|
|
|
|
|
28 |
));
|
29 |
//wp_ajax hooks for the custom AJAX requests
|
30 |
add_action('wp_ajax_wp_ulike_process','wp_ulike_process');
|
8 |
* @author Alimir
|
9 |
* @since 1.0
|
10 |
* @updated 2.2
|
11 |
+
* @updated 2.4.1
|
12 |
* @return void
|
13 |
*/
|
14 |
add_action('init', 'wp_ulike_enqueue_scripts');
|
17 |
//enqueue JQuery script
|
18 |
wp_enqueue_script( 'jquery' );
|
19 |
//Add ulike script file with special functions.
|
20 |
+
wp_enqueue_script('wp_ulike', plugins_url('assets/js/wp-ulike-scripts.min.js', dirname(__FILE__)), array('jquery'), '1.2.3');
|
21 |
//Add ulike plugin file, such as: tooltip, transaction, ...
|
22 |
+
wp_enqueue_script('wp_ulike_plugins', plugins_url('assets/js/wp-ulike-plugins.js', dirname(__FILE__)), array('jquery'), '1.0.1', true);
|
23 |
//localize script
|
24 |
wp_localize_script( 'wp_ulike', 'ulike_obj', array(
|
25 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
26 |
'button_text_u' => wp_ulike_get_setting( 'wp_ulike_general', 'button_text_u'),
|
27 |
'button_text' => wp_ulike_get_setting( 'wp_ulike_general', 'button_text'),
|
28 |
+
'button_type' => wp_ulike_get_setting( 'wp_ulike_general', 'button_type'),
|
29 |
+
'notifications' => wp_ulike_get_setting( 'wp_ulike_general', 'notifications'),
|
30 |
+
'like_notice' => wp_ulike_get_setting( 'wp_ulike_general', 'like_notice'),
|
31 |
+
'unlike_notice' => wp_ulike_get_setting( 'wp_ulike_general', 'unlike_notice')
|
32 |
));
|
33 |
//wp_ajax hooks for the custom AJAX requests
|
34 |
add_action('wp_ajax_wp_ulike_process','wp_ulike_process');
|
inc/wp-ulike.php
CHANGED
@@ -232,7 +232,7 @@
|
|
232 |
* @author Alimir
|
233 |
* @since 2.2
|
234 |
* @updated 2.3
|
235 |
-
* @updated 2.4
|
236 |
* @return String
|
237 |
*/
|
238 |
function wp_ulike_bbpress($arg) {
|
@@ -241,7 +241,7 @@
|
|
241 |
|
242 |
//Thanks to @Yehonal for this commit
|
243 |
$replyID = bbp_get_reply_id();
|
244 |
-
$post_ID = !$
|
245 |
|
246 |
$get_post_meta = get_post_meta($post_ID, '_topicliked', true);
|
247 |
$get_like = $get_post_meta != '' ? $get_post_meta : 0;
|
@@ -308,6 +308,7 @@
|
|
308 |
* @author Alimir
|
309 |
* @since 1.0
|
310 |
* @updated 2.2
|
|
|
311 |
* @return String
|
312 |
*/
|
313 |
function wp_ulike_process(){
|
@@ -357,23 +358,35 @@
|
|
357 |
$return_userID = $wp_ulike_class->get_reutrn_id();
|
358 |
|
359 |
$data = array(
|
360 |
-
"id"
|
361 |
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
362 |
"user_ip" => $wp_user_IP, //User IP
|
363 |
"get_like" => $get_like, //Number Of Likes
|
364 |
"method" => $post_type, //JavaScript method
|
365 |
"setting" => $setting_key, //Setting Key
|
366 |
"type" => 'process', //Function type (post/process)
|
367 |
-
"table"
|
368 |
"column" => $column_name, //ulike table column name
|
369 |
"key" => $meta_key, //meta key
|
370 |
"cookie" => $cookie_name //Cookie Name
|
371 |
-
);
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
}
|
377 |
|
378 |
-
|
|
|
|
|
|
|
|
|
379 |
}
|
232 |
* @author Alimir
|
233 |
* @since 2.2
|
234 |
* @updated 2.3
|
235 |
+
* @updated 2.4.1
|
236 |
* @return String
|
237 |
*/
|
238 |
function wp_ulike_bbpress($arg) {
|
241 |
|
242 |
//Thanks to @Yehonal for this commit
|
243 |
$replyID = bbp_get_reply_id();
|
244 |
+
$post_ID = !$replyID ? $post->ID : $replyID;
|
245 |
|
246 |
$get_post_meta = get_post_meta($post_ID, '_topicliked', true);
|
247 |
$get_like = $get_post_meta != '' ? $get_post_meta : 0;
|
308 |
* @author Alimir
|
309 |
* @since 1.0
|
310 |
* @updated 2.2
|
311 |
+
* @updated 2.4.1
|
312 |
* @return String
|
313 |
*/
|
314 |
function wp_ulike_process(){
|
358 |
$return_userID = $wp_ulike_class->get_reutrn_id();
|
359 |
|
360 |
$data = array(
|
361 |
+
"id" => $post_ID, //Post ID
|
362 |
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
363 |
"user_ip" => $wp_user_IP, //User IP
|
364 |
"get_like" => $get_like, //Number Of Likes
|
365 |
"method" => $post_type, //JavaScript method
|
366 |
"setting" => $setting_key, //Setting Key
|
367 |
"type" => 'process', //Function type (post/process)
|
368 |
+
"table" => $table_name, //posts table
|
369 |
"column" => $column_name, //ulike table column name
|
370 |
"key" => $meta_key, //meta key
|
371 |
"cookie" => $cookie_name //Cookie Name
|
372 |
+
);
|
373 |
+
|
374 |
+
$response = new WP_Ajax_Response;
|
375 |
+
|
376 |
+
if($post_ID != null) {
|
377 |
+
$response->add(
|
378 |
+
array(
|
379 |
+
'what' =>'wpulike',
|
380 |
+
'action' =>'wp_ulike_process',
|
381 |
+
'id' => $post_ID,
|
382 |
+
'data' => $wp_ulike_class->wp_get_ulike($data)
|
383 |
+
)
|
384 |
+
);
|
385 |
}
|
386 |
|
387 |
+
// Whatever the outcome, send the Response back
|
388 |
+
$response->send();
|
389 |
+
|
390 |
+
// Always exit when doing Ajax
|
391 |
+
exit();
|
392 |
}
|
lang/wp-ulike-el.mo
CHANGED
Binary file
|
lang/wp-ulike-el.po
CHANGED
@@ -1,38 +1,42 @@
|
|
1 |
-
#
|
|
|
2 |
# Translators:
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _e
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
23 |
#: ../admin/about.php:107
|
24 |
msgid "Welcome to WP ULike"
|
25 |
-
msgstr ""
|
26 |
|
27 |
#: ../admin/about.php:109
|
28 |
msgid ""
|
29 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
30 |
"powerful version yet."
|
31 |
msgstr ""
|
|
|
|
|
32 |
|
33 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
34 |
msgid "Visit our homepage"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: ../admin/about.php:112
|
38 |
msgid "Version"
|
@@ -66,7 +70,7 @@ msgstr ""
|
|
66 |
|
67 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
68 |
msgid "About WP ULike"
|
69 |
-
msgstr ""
|
70 |
|
71 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
72 |
msgid ""
|
@@ -138,7 +142,7 @@ msgstr ""
|
|
138 |
|
139 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
140 |
msgid "WP ULike Statistics"
|
141 |
-
msgstr ""
|
142 |
|
143 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
144 |
msgid "Home"
|
@@ -150,7 +154,7 @@ msgstr ""
|
|
150 |
|
151 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
152 |
msgid "WP ULike Settings"
|
153 |
-
msgstr ""
|
154 |
|
155 |
#: ../admin/about.php:222
|
156 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
@@ -200,7 +204,7 @@ msgstr ""
|
|
200 |
|
201 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
202 |
msgid "WP ULike"
|
203 |
-
msgstr ""
|
204 |
|
205 |
#: ../admin/admin.php:83
|
206 |
msgid "Settings saved."
|
@@ -236,11 +240,11 @@ msgstr ""
|
|
236 |
|
237 |
#: ../admin/classes/class-settings.php:28 ../admin/stats.php:355
|
238 |
msgid "Save Settings"
|
239 |
-
msgstr ""
|
240 |
|
241 |
#: ../admin/classes/class-settings.php:29
|
242 |
msgid "Reset Settings"
|
243 |
-
msgstr ""
|
244 |
|
245 |
#: ../admin/classes/class-settings.php:44
|
246 |
msgid "Similar Settings"
|
@@ -371,7 +375,7 @@ msgstr ""
|
|
371 |
#: ../admin/classes/class-settings.php:98
|
372 |
#: ../admin/classes/class-settings.php:106
|
373 |
msgid "Default Template:"
|
374 |
-
msgstr ""
|
375 |
|
376 |
#: ../admin/classes/class-settings.php:81
|
377 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
@@ -425,7 +429,7 @@ msgstr ""
|
|
425 |
#: ../admin/classes/class-settings.php:104
|
426 |
#: ../admin/classes/tmp/settings.php:438
|
427 |
msgid "bbPress"
|
428 |
-
msgstr ""
|
429 |
|
430 |
#: ../admin/classes/class-settings.php:111
|
431 |
msgid "For more information:"
|
@@ -433,7 +437,7 @@ msgstr "Για περισσότερα:"
|
|
433 |
|
434 |
#: ../admin/classes/class-settings.php:170
|
435 |
msgid "Default settings have been reset."
|
436 |
-
msgstr ""
|
437 |
|
438 |
#: ../admin/classes/class-settings.php:247
|
439 |
msgid ""
|
@@ -444,7 +448,7 @@ msgstr ""
|
|
444 |
#: ../admin/classes/class-settings.php:323
|
445 |
#: ../admin/classes/class-settings.php:347
|
446 |
msgid "No options defined."
|
447 |
-
msgstr ""
|
448 |
|
449 |
#: ../admin/classes/class-settings.php:334
|
450 |
#, php-format
|
@@ -454,7 +458,7 @@ msgstr "Επιλογή %s"
|
|
454 |
#: ../admin/classes/class-settings.php:335
|
455 |
#, php-format
|
456 |
msgid "Remove %s"
|
457 |
-
msgstr ""
|
458 |
|
459 |
#: ../admin/classes/class-settings.php:359
|
460 |
msgid "No action defined."
|
@@ -462,7 +466,7 @@ msgstr ""
|
|
462 |
|
463 |
#: ../admin/classes/class-widget.php:11
|
464 |
msgid "WP Ulike Widget"
|
465 |
-
msgstr ""
|
466 |
|
467 |
#: ../admin/classes/class-widget.php:12
|
468 |
msgid ""
|
@@ -481,7 +485,7 @@ msgstr "ενεργό"
|
|
481 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
482 |
#: ../admin/stats.php:205
|
483 |
msgid "Like"
|
484 |
-
msgstr ""
|
485 |
|
486 |
#: ../admin/classes/class-widget.php:266
|
487 |
msgid "Most Liked"
|
@@ -521,7 +525,7 @@ msgstr ""
|
|
521 |
|
522 |
#: ../admin/classes/class-widget.php:288
|
523 |
msgid "Simple"
|
524 |
-
msgstr ""
|
525 |
|
526 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
527 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
@@ -563,7 +567,7 @@ msgstr "Γενικά"
|
|
563 |
|
564 |
#: ../admin/classes/tmp/settings.php:15
|
565 |
msgid "Button Type"
|
566 |
-
msgstr ""
|
567 |
|
568 |
#: ../admin/classes/tmp/settings.php:18
|
569 |
msgid "Icon"
|
@@ -575,16 +579,16 @@ msgstr "Κείμενο"
|
|
575 |
|
576 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
577 |
msgid "Button Text"
|
578 |
-
msgstr ""
|
579 |
|
580 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
581 |
#: ../admin/classes/tmp/settings.php:37
|
582 |
msgid "Unlike"
|
583 |
-
msgstr ""
|
584 |
|
585 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
586 |
msgid "Button Icon"
|
587 |
-
msgstr ""
|
588 |
|
589 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
590 |
#: ../admin/classes/tmp/settings.php:310
|
@@ -699,7 +703,7 @@ msgstr "Ετικέτες"
|
|
699 |
|
700 |
#: ../admin/classes/tmp/settings.php:110
|
701 |
msgid "Author Page"
|
702 |
-
msgstr ""
|
703 |
|
704 |
#: ../admin/classes/tmp/settings.php:112
|
705 |
msgid "You can filter theses pages on auto display option."
|
@@ -708,7 +712,7 @@ msgstr ""
|
|
708 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
709 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
710 |
msgid "Only registered Users"
|
711 |
-
msgstr ""
|
712 |
|
713 |
#: ../admin/classes/tmp/settings.php:119
|
714 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
@@ -815,7 +819,7 @@ msgstr ""
|
|
815 |
|
816 |
#: ../admin/classes/tmp/settings.php:283
|
817 |
msgid "Button style"
|
818 |
-
msgstr ""
|
819 |
|
820 |
#: ../admin/classes/tmp/settings.php:284 ../admin/classes/tmp/settings.php:297
|
821 |
msgid "Background"
|
@@ -831,16 +835,15 @@ msgstr "Χρώμα κειμένου"
|
|
831 |
|
832 |
#: ../admin/classes/tmp/settings.php:296
|
833 |
msgid "Counter Style"
|
834 |
-
msgstr ""
|
835 |
|
836 |
#: ../admin/classes/tmp/settings.php:309
|
837 |
msgid "Loading Animation"
|
838 |
msgstr ""
|
839 |
|
840 |
#: ../admin/classes/tmp/settings.php:314
|
841 |
-
#, fuzzy
|
842 |
msgid "Custom CSS"
|
843 |
-
msgstr "
|
844 |
|
845 |
#: ../admin/classes/tmp/settings.php:348
|
846 |
msgid "Activity Content"
|
@@ -857,7 +860,7 @@ msgstr ""
|
|
857 |
|
858 |
#: ../admin/classes/tmp/settings.php:399
|
859 |
msgid "BuddyPress Activity"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: ../admin/classes/tmp/settings.php:401
|
863 |
msgid "insert new likes in buddyPress activity page"
|
@@ -879,12 +882,12 @@ msgstr "Αρχείο καταγραφής"
|
|
879 |
|
880 |
#: ../admin/logs.php:80
|
881 |
msgid "Are you sure to remove this item?!"
|
882 |
-
msgstr ""
|
883 |
|
884 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
885 |
#: ../admin/logs.php:508
|
886 |
msgid "WP ULike Logs"
|
887 |
-
msgstr ""
|
888 |
|
889 |
#: ../admin/logs.php:149 ../admin/logs.php:270 ../admin/logs.php:397
|
890 |
#: ../admin/logs.php:519
|
@@ -907,17 +910,17 @@ msgstr "ID δημοσιεύματος"
|
|
907 |
|
908 |
#: ../admin/logs.php:153
|
909 |
msgid "Post Title"
|
910 |
-
msgstr ""
|
911 |
|
912 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
913 |
#: ../admin/logs.php:524
|
914 |
msgid "Date / Time"
|
915 |
-
msgstr ""
|
916 |
|
917 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
918 |
#: ../admin/logs.php:525
|
919 |
msgid "IP"
|
920 |
-
msgstr ""
|
921 |
|
922 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
923 |
#: ../admin/logs.php:526
|
@@ -938,19 +941,19 @@ msgstr ""
|
|
938 |
|
939 |
#: ../admin/logs.php:273
|
940 |
msgid "Comment ID"
|
941 |
-
msgstr ""
|
942 |
|
943 |
#: ../admin/logs.php:274
|
944 |
msgid "Comment Author"
|
945 |
-
msgstr ""
|
946 |
|
947 |
#: ../admin/logs.php:275
|
948 |
msgid "Comment Text"
|
949 |
-
msgstr ""
|
950 |
|
951 |
#: ../admin/logs.php:400
|
952 |
msgid "Activity ID"
|
953 |
-
msgstr ""
|
954 |
|
955 |
#: ../admin/logs.php:401
|
956 |
msgid "Permalink"
|
@@ -959,7 +962,7 @@ msgstr "Permalink"
|
|
959 |
#: ../admin/logs.php:438
|
960 |
#, php-format
|
961 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
962 |
-
msgstr ""
|
963 |
|
964 |
#: ../admin/logs.php:522
|
965 |
msgid "Topic ID"
|
@@ -971,11 +974,11 @@ msgstr ""
|
|
971 |
|
972 |
#: ../admin/stats.php:30
|
973 |
msgid "Welcome to WP ULike Statistics!"
|
974 |
-
msgstr ""
|
975 |
|
976 |
#: ../admin/stats.php:31
|
977 |
msgid "We have provided some useful statistics tools in this page:"
|
978 |
-
msgstr ""
|
979 |
|
980 |
#: ../admin/stats.php:35
|
981 |
msgid "Get Started"
|
@@ -987,7 +990,7 @@ msgstr "ή"
|
|
987 |
|
988 |
#: ../admin/stats.php:40
|
989 |
msgid "Other Tools"
|
990 |
-
msgstr ""
|
991 |
|
992 |
#: ../admin/stats.php:49
|
993 |
msgid "Documentation"
|
@@ -1035,7 +1038,7 @@ msgstr "Χθες"
|
|
1035 |
|
1036 |
#: ../admin/stats.php:148
|
1037 |
msgid "Week"
|
1038 |
-
msgstr ""
|
1039 |
|
1040 |
#: ../admin/stats.php:153
|
1041 |
msgid "Month"
|
@@ -1052,7 +1055,7 @@ msgstr ""
|
|
1052 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1053 |
#: ../admin/stats.php:245
|
1054 |
msgid "View Logs"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1058 |
msgid "Posts Likes Stats"
|
@@ -1062,7 +1065,7 @@ msgstr ""
|
|
1062 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1063 |
#, php-format
|
1064 |
msgid "In The Last %s Days"
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1068 |
msgid "Comments Likes Stats"
|
@@ -1098,7 +1101,7 @@ msgstr ""
|
|
1098 |
|
1099 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1100 |
msgid "Limit"
|
1101 |
-
msgstr ""
|
1102 |
|
1103 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1104 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
@@ -1119,7 +1122,7 @@ msgstr ""
|
|
1119 |
|
1120 |
#: ../inc/wp-functions.php:172
|
1121 |
msgid "WP ULike Activity"
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
#: ../inc/wp-functions.php:303
|
1125 |
msgid ""
|
@@ -1161,15 +1164,15 @@ msgstr ""
|
|
1161 |
|
1162 |
#: ../inc/wp-strings.php:4
|
1163 |
msgid "Guests Only"
|
1164 |
-
msgstr ""
|
1165 |
|
1166 |
#: ../inc/wp-strings.php:5
|
1167 |
msgid "Registered Users Only"
|
1168 |
-
msgstr ""
|
1169 |
|
1170 |
#: ../inc/wp-strings.php:6
|
1171 |
msgid "Registered Users And Guests"
|
1172 |
-
msgstr ""
|
1173 |
|
1174 |
#: ../inc/wp-strings.php:7
|
1175 |
msgid "Who Is Allowed To Like?"
|
@@ -1177,11 +1180,11 @@ msgstr ""
|
|
1177 |
|
1178 |
#: ../inc/wp-strings.php:8
|
1179 |
msgid "Filter Options:"
|
1180 |
-
msgstr ""
|
1181 |
|
1182 |
#: ../inc/wp-strings.php:9
|
1183 |
msgid "Sort Options:"
|
1184 |
-
msgstr ""
|
1185 |
|
1186 |
#: ../inc/wp-strings.php:11
|
1187 |
msgid "Dislike"
|
@@ -1197,11 +1200,11 @@ msgstr ""
|
|
1197 |
|
1198 |
#: ../inc/wp-strings.php:14
|
1199 |
msgid "Show Counter"
|
1200 |
-
msgstr ""
|
1201 |
|
1202 |
#: ../inc/wp-strings.php:15
|
1203 |
msgid "Show tooltips"
|
1204 |
-
msgstr ""
|
1205 |
|
1206 |
#: ../inc/wp-strings.php:16
|
1207 |
msgid "Alignment"
|
@@ -1225,7 +1228,7 @@ msgstr ""
|
|
1225 |
|
1226 |
#: ../inc/wp-strings.php:21
|
1227 |
msgid "BuddyPress Notifications"
|
1228 |
-
msgstr ""
|
1229 |
|
1230 |
#: ../inc/wp-strings.php:22
|
1231 |
msgid "Liker Attempts"
|
@@ -1266,7 +1269,7 @@ msgstr ""
|
|
1266 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1267 |
#: ../inc/wp-ulike.php:291
|
1268 |
msgid "click here"
|
1269 |
-
msgstr ""
|
1270 |
|
1271 |
#: ../inc/wp-ulike.php:142
|
1272 |
msgid "You need to login in order to like this comment: "
|
@@ -1281,18 +1284,13 @@ msgid "Error: This Method Is Not Exist!"
|
|
1281 |
msgstr ""
|
1282 |
|
1283 |
#: ../wp-ulike.php:124
|
1284 |
-
#, fuzzy
|
1285 |
msgid "Settings"
|
1286 |
-
msgstr "
|
1287 |
|
1288 |
#: ../wp-ulike.php:125
|
1289 |
-
#, fuzzy
|
1290 |
msgid "Statistics"
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
#: ../wp-ulike.php:126
|
1294 |
msgid "About"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#~ msgid "Overview"
|
1298 |
-
#~ msgstr "Επισκόπηση"
|
1 |
+
# Copyright (C) 2015 WP ULike
|
2 |
+
# This file is distributed under the same license as the WP ULike package.
|
3 |
# Translators:
|
4 |
+
# evigiannakou <evigian@in.gr>, 2015
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: WP ULike\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-ulike\n"
|
9 |
+
"POT-Creation-Date: 2015-05-21 11:36+0330\n"
|
10 |
+
"PO-Revision-Date: 2017-01-20 21:23+0330\n"
|
11 |
+
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
12 |
+
"Language-Team: Greek (http://www.transifex.com/wp-translations/wp-ulike/"
|
13 |
+
"language/el/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Language: el\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Generator: Poedit 1.5.4\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPath-1: ..\n"
|
24 |
|
25 |
#: ../admin/about.php:107
|
26 |
msgid "Welcome to WP ULike"
|
27 |
+
msgstr "Καλώς ήρθατε στο WP ULike"
|
28 |
|
29 |
#: ../admin/about.php:109
|
30 |
msgid ""
|
31 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
32 |
"powerful version yet."
|
33 |
msgstr ""
|
34 |
+
"Σας ευχαριστούμε που επιλέξατε το WP ULike! Αυτή η έκδοση είναι η πιο λιτή "
|
35 |
+
"και η πιο ισχυρή έκδοση ωστόσο."
|
36 |
|
37 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
38 |
msgid "Visit our homepage"
|
39 |
+
msgstr "Δείτε την αρχική μας σελίδα "
|
40 |
|
41 |
#: ../admin/about.php:112
|
42 |
msgid "Version"
|
70 |
|
71 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
72 |
msgid "About WP ULike"
|
73 |
+
msgstr "Σχετικά με το WP ULike"
|
74 |
|
75 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
76 |
msgid ""
|
142 |
|
143 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
144 |
msgid "WP ULike Statistics"
|
145 |
+
msgstr "Στατιστικά WP ULike"
|
146 |
|
147 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
148 |
msgid "Home"
|
154 |
|
155 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
156 |
msgid "WP ULike Settings"
|
157 |
+
msgstr "Ρυθμίσεις WP ULike"
|
158 |
|
159 |
#: ../admin/about.php:222
|
160 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
204 |
|
205 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
206 |
msgid "WP ULike"
|
207 |
+
msgstr "WP ULike"
|
208 |
|
209 |
#: ../admin/admin.php:83
|
210 |
msgid "Settings saved."
|
240 |
|
241 |
#: ../admin/classes/class-settings.php:28 ../admin/stats.php:355
|
242 |
msgid "Save Settings"
|
243 |
+
msgstr "Αποθήκευση Ρυθμίσεων"
|
244 |
|
245 |
#: ../admin/classes/class-settings.php:29
|
246 |
msgid "Reset Settings"
|
247 |
+
msgstr "Επαναφορά Ρυθμίσεων"
|
248 |
|
249 |
#: ../admin/classes/class-settings.php:44
|
250 |
msgid "Similar Settings"
|
375 |
#: ../admin/classes/class-settings.php:98
|
376 |
#: ../admin/classes/class-settings.php:106
|
377 |
msgid "Default Template:"
|
378 |
+
msgstr "Προεπιλεγμένο Πρότυπο:"
|
379 |
|
380 |
#: ../admin/classes/class-settings.php:81
|
381 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
429 |
#: ../admin/classes/class-settings.php:104
|
430 |
#: ../admin/classes/tmp/settings.php:438
|
431 |
msgid "bbPress"
|
432 |
+
msgstr "bbPress"
|
433 |
|
434 |
#: ../admin/classes/class-settings.php:111
|
435 |
msgid "For more information:"
|
437 |
|
438 |
#: ../admin/classes/class-settings.php:170
|
439 |
msgid "Default settings have been reset."
|
440 |
+
msgstr "Οι προεπιλεγμένες ρυθμίσεις επαναφέρθηκαν."
|
441 |
|
442 |
#: ../admin/classes/class-settings.php:247
|
443 |
msgid ""
|
448 |
#: ../admin/classes/class-settings.php:323
|
449 |
#: ../admin/classes/class-settings.php:347
|
450 |
msgid "No options defined."
|
451 |
+
msgstr "Δεν έχουν καθοριστεί επιλογές."
|
452 |
|
453 |
#: ../admin/classes/class-settings.php:334
|
454 |
#, php-format
|
458 |
#: ../admin/classes/class-settings.php:335
|
459 |
#, php-format
|
460 |
msgid "Remove %s"
|
461 |
+
msgstr "Αφαίρεση %s"
|
462 |
|
463 |
#: ../admin/classes/class-settings.php:359
|
464 |
msgid "No action defined."
|
466 |
|
467 |
#: ../admin/classes/class-widget.php:11
|
468 |
msgid "WP Ulike Widget"
|
469 |
+
msgstr "Μονάδα WP Ulike"
|
470 |
|
471 |
#: ../admin/classes/class-widget.php:12
|
472 |
msgid ""
|
485 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
486 |
#: ../admin/stats.php:205
|
487 |
msgid "Like"
|
488 |
+
msgstr "Μου αρέσει"
|
489 |
|
490 |
#: ../admin/classes/class-widget.php:266
|
491 |
msgid "Most Liked"
|
525 |
|
526 |
#: ../admin/classes/class-widget.php:288
|
527 |
msgid "Simple"
|
528 |
+
msgstr "Απλό"
|
529 |
|
530 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
531 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
567 |
|
568 |
#: ../admin/classes/tmp/settings.php:15
|
569 |
msgid "Button Type"
|
570 |
+
msgstr "Τύπος Κουμπιού"
|
571 |
|
572 |
#: ../admin/classes/tmp/settings.php:18
|
573 |
msgid "Icon"
|
579 |
|
580 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
581 |
msgid "Button Text"
|
582 |
+
msgstr "Κείμενο κουμπού"
|
583 |
|
584 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
585 |
#: ../admin/classes/tmp/settings.php:37
|
586 |
msgid "Unlike"
|
587 |
+
msgstr "Δεν μου αρέσει"
|
588 |
|
589 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
590 |
msgid "Button Icon"
|
591 |
+
msgstr "Εικονίδιο Κουμπιού"
|
592 |
|
593 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
594 |
#: ../admin/classes/tmp/settings.php:310
|
703 |
|
704 |
#: ../admin/classes/tmp/settings.php:110
|
705 |
msgid "Author Page"
|
706 |
+
msgstr "Σελίδα Συντάκτη"
|
707 |
|
708 |
#: ../admin/classes/tmp/settings.php:112
|
709 |
msgid "You can filter theses pages on auto display option."
|
712 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
713 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
714 |
msgid "Only registered Users"
|
715 |
+
msgstr "Μόνο εγγεγραμμένοι Χρήστες"
|
716 |
|
717 |
#: ../admin/classes/tmp/settings.php:119
|
718 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
819 |
|
820 |
#: ../admin/classes/tmp/settings.php:283
|
821 |
msgid "Button style"
|
822 |
+
msgstr "Στυλ κουμπιού"
|
823 |
|
824 |
#: ../admin/classes/tmp/settings.php:284 ../admin/classes/tmp/settings.php:297
|
825 |
msgid "Background"
|
835 |
|
836 |
#: ../admin/classes/tmp/settings.php:296
|
837 |
msgid "Counter Style"
|
838 |
+
msgstr "Στυλ Μετρητή"
|
839 |
|
840 |
#: ../admin/classes/tmp/settings.php:309
|
841 |
msgid "Loading Animation"
|
842 |
msgstr ""
|
843 |
|
844 |
#: ../admin/classes/tmp/settings.php:314
|
|
|
845 |
msgid "Custom CSS"
|
846 |
+
msgstr "Προσαρμοσμένο CSS"
|
847 |
|
848 |
#: ../admin/classes/tmp/settings.php:348
|
849 |
msgid "Activity Content"
|
860 |
|
861 |
#: ../admin/classes/tmp/settings.php:399
|
862 |
msgid "BuddyPress Activity"
|
863 |
+
msgstr "Δραστηριότητα BuddyPress"
|
864 |
|
865 |
#: ../admin/classes/tmp/settings.php:401
|
866 |
msgid "insert new likes in buddyPress activity page"
|
882 |
|
883 |
#: ../admin/logs.php:80
|
884 |
msgid "Are you sure to remove this item?!"
|
885 |
+
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το στοιχείο;!"
|
886 |
|
887 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
888 |
#: ../admin/logs.php:508
|
889 |
msgid "WP ULike Logs"
|
890 |
+
msgstr "Αρχείο καταγραφής WP ULike"
|
891 |
|
892 |
#: ../admin/logs.php:149 ../admin/logs.php:270 ../admin/logs.php:397
|
893 |
#: ../admin/logs.php:519
|
910 |
|
911 |
#: ../admin/logs.php:153
|
912 |
msgid "Post Title"
|
913 |
+
msgstr "Τίτλος Άρθρου"
|
914 |
|
915 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
916 |
#: ../admin/logs.php:524
|
917 |
msgid "Date / Time"
|
918 |
+
msgstr "Ημερομηνία / Ώρα"
|
919 |
|
920 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
921 |
#: ../admin/logs.php:525
|
922 |
msgid "IP"
|
923 |
+
msgstr "IP"
|
924 |
|
925 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
926 |
#: ../admin/logs.php:526
|
941 |
|
942 |
#: ../admin/logs.php:273
|
943 |
msgid "Comment ID"
|
944 |
+
msgstr "ID Σχολίου"
|
945 |
|
946 |
#: ../admin/logs.php:274
|
947 |
msgid "Comment Author"
|
948 |
+
msgstr "Συντάκτης Σχολίου"
|
949 |
|
950 |
#: ../admin/logs.php:275
|
951 |
msgid "Comment Text"
|
952 |
+
msgstr "Κείμενο Σχολίου"
|
953 |
|
954 |
#: ../admin/logs.php:400
|
955 |
msgid "Activity ID"
|
956 |
+
msgstr "ID Δραστηριότητας"
|
957 |
|
958 |
#: ../admin/logs.php:401
|
959 |
msgid "Permalink"
|
962 |
#: ../admin/logs.php:438
|
963 |
#, php-format
|
964 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
965 |
+
msgstr "<a href=\"%1$s\">Permalink Δραστηριότητας</a>"
|
966 |
|
967 |
#: ../admin/logs.php:522
|
968 |
msgid "Topic ID"
|
974 |
|
975 |
#: ../admin/stats.php:30
|
976 |
msgid "Welcome to WP ULike Statistics!"
|
977 |
+
msgstr "Καλώς ήρθατε στα Στατιστικά του WP ULike!"
|
978 |
|
979 |
#: ../admin/stats.php:31
|
980 |
msgid "We have provided some useful statistics tools in this page:"
|
981 |
+
msgstr "Έχουμε παράσχει κάποια χρήσιμα εργαλεία στατιστικών σε αυτή τη σελίδα:"
|
982 |
|
983 |
#: ../admin/stats.php:35
|
984 |
msgid "Get Started"
|
990 |
|
991 |
#: ../admin/stats.php:40
|
992 |
msgid "Other Tools"
|
993 |
+
msgstr "Άλλα Εργαλεία"
|
994 |
|
995 |
#: ../admin/stats.php:49
|
996 |
msgid "Documentation"
|
1038 |
|
1039 |
#: ../admin/stats.php:148
|
1040 |
msgid "Week"
|
1041 |
+
msgstr "Εβδομάδα"
|
1042 |
|
1043 |
#: ../admin/stats.php:153
|
1044 |
msgid "Month"
|
1055 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1056 |
#: ../admin/stats.php:245
|
1057 |
msgid "View Logs"
|
1058 |
+
msgstr "Προβολή Αρχείων καταγραφής"
|
1059 |
|
1060 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1061 |
msgid "Posts Likes Stats"
|
1065 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1066 |
#, php-format
|
1067 |
msgid "In The Last %s Days"
|
1068 |
+
msgstr "Στις Τελευταίες %s Ημέρες"
|
1069 |
|
1070 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1071 |
msgid "Comments Likes Stats"
|
1101 |
|
1102 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1103 |
msgid "Limit"
|
1104 |
+
msgstr "Όριο"
|
1105 |
|
1106 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1107 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
1122 |
|
1123 |
#: ../inc/wp-functions.php:172
|
1124 |
msgid "WP ULike Activity"
|
1125 |
+
msgstr "Δραστηριότητα WP ULike"
|
1126 |
|
1127 |
#: ../inc/wp-functions.php:303
|
1128 |
msgid ""
|
1164 |
|
1165 |
#: ../inc/wp-strings.php:4
|
1166 |
msgid "Guests Only"
|
1167 |
+
msgstr "Μόνο Επισκέπτες"
|
1168 |
|
1169 |
#: ../inc/wp-strings.php:5
|
1170 |
msgid "Registered Users Only"
|
1171 |
+
msgstr "Εγγεγραμμένοι Χρήστες Μόνο"
|
1172 |
|
1173 |
#: ../inc/wp-strings.php:6
|
1174 |
msgid "Registered Users And Guests"
|
1175 |
+
msgstr "Εγγεγραμμένοι Χρήστες Και Επισκέπτες"
|
1176 |
|
1177 |
#: ../inc/wp-strings.php:7
|
1178 |
msgid "Who Is Allowed To Like?"
|
1180 |
|
1181 |
#: ../inc/wp-strings.php:8
|
1182 |
msgid "Filter Options:"
|
1183 |
+
msgstr "Φίλτρο Επιλογών:"
|
1184 |
|
1185 |
#: ../inc/wp-strings.php:9
|
1186 |
msgid "Sort Options:"
|
1187 |
+
msgstr "Ταξινόμηση Επιλογών:"
|
1188 |
|
1189 |
#: ../inc/wp-strings.php:11
|
1190 |
msgid "Dislike"
|
1200 |
|
1201 |
#: ../inc/wp-strings.php:14
|
1202 |
msgid "Show Counter"
|
1203 |
+
msgstr "Προβολή Μετρητή"
|
1204 |
|
1205 |
#: ../inc/wp-strings.php:15
|
1206 |
msgid "Show tooltips"
|
1207 |
+
msgstr "Προβολή επεξηγήσεων"
|
1208 |
|
1209 |
#: ../inc/wp-strings.php:16
|
1210 |
msgid "Alignment"
|
1228 |
|
1229 |
#: ../inc/wp-strings.php:21
|
1230 |
msgid "BuddyPress Notifications"
|
1231 |
+
msgstr "Ειδοποιήσεις BuddyPress"
|
1232 |
|
1233 |
#: ../inc/wp-strings.php:22
|
1234 |
msgid "Liker Attempts"
|
1269 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1270 |
#: ../inc/wp-ulike.php:291
|
1271 |
msgid "click here"
|
1272 |
+
msgstr "κάντε κλικ εδώ"
|
1273 |
|
1274 |
#: ../inc/wp-ulike.php:142
|
1275 |
msgid "You need to login in order to like this comment: "
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: ../wp-ulike.php:124
|
|
|
1287 |
msgid "Settings"
|
1288 |
+
msgstr "Ρυθμίσεις"
|
1289 |
|
1290 |
#: ../wp-ulike.php:125
|
|
|
1291 |
msgid "Statistics"
|
1292 |
+
msgstr "Στατιστικά"
|
1293 |
|
1294 |
#: ../wp-ulike.php:126
|
1295 |
msgid "About"
|
1296 |
+
msgstr "Περί"
|
|
|
|
|
|
lang/wp-ulike-fa_IR.mo
CHANGED
Binary file
|
lang/wp-ulike-fa_IR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
7 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
8 |
"Language: fa_IR\n"
|
@@ -170,7 +170,7 @@ msgstr ""
|
|
170 |
msgid "WP ULike Statistics"
|
171 |
msgstr "آماره وردپرس یولایک"
|
172 |
|
173 |
-
#: ../admin/about.php:218 ../admin/classes/tmp/settings.php:
|
174 |
msgid "Home"
|
175 |
msgstr "خانه"
|
176 |
|
@@ -577,9 +577,9 @@ msgstr "قالب:"
|
|
577 |
msgid "Simple"
|
578 |
msgstr "ساده"
|
579 |
|
580 |
-
#: ../admin/classes/class-widget.php:427 ../admin/classes/tmp/settings.php:
|
581 |
-
#: ../admin/classes/tmp/settings.php:
|
582 |
-
#: ../admin/classes/tmp/settings.php:
|
583 |
msgid "Heart"
|
584 |
msgstr "قلب"
|
585 |
|
@@ -601,7 +601,7 @@ msgstr "لینک پروفایل به:"
|
|
601 |
|
602 |
#: ../admin/classes/class-widget.php:452
|
603 |
#: ../admin/classes/class-settings.php:96
|
604 |
-
#: ../admin/classes/tmp/settings.php:
|
605 |
msgid "BuddyPress"
|
606 |
msgstr "بادی پرس"
|
607 |
|
@@ -630,8 +630,8 @@ msgid "Similar Settings"
|
|
630 |
msgstr "تنظیمات مشابه"
|
631 |
|
632 |
#: ../admin/classes/class-settings.php:48
|
633 |
-
#: ../admin/classes/tmp/settings.php:
|
634 |
-
#: ../admin/classes/tmp/settings.php:
|
635 |
msgid "Logging Method"
|
636 |
msgstr "روش وقایع نگاری"
|
637 |
|
@@ -735,7 +735,7 @@ msgstr "نمایش عنوان نوشته"
|
|
735 |
msgid "Display the comment author name"
|
736 |
msgstr "نمایش نام نویسنده دیدگاه"
|
737 |
|
738 |
-
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:
|
739 |
msgid "Posts"
|
740 |
msgstr "نوشته ها"
|
741 |
|
@@ -743,8 +743,8 @@ msgstr "نوشته ها"
|
|
743 |
#: ../admin/classes/class-settings.php:90
|
744 |
#: ../admin/classes/class-settings.php:98
|
745 |
#: ../admin/classes/class-settings.php:106
|
746 |
-
#: ../admin/classes/tmp/settings.php:
|
747 |
-
#: ../admin/classes/tmp/settings.php:
|
748 |
msgid "Automatic display"
|
749 |
msgstr "نمایش خودکار"
|
750 |
|
@@ -760,8 +760,8 @@ msgstr ""
|
|
760 |
#: ../admin/classes/class-settings.php:90
|
761 |
#: ../admin/classes/class-settings.php:98
|
762 |
#: ../admin/classes/class-settings.php:106
|
763 |
-
#: ../admin/classes/tmp/settings.php:
|
764 |
-
#: ../admin/classes/tmp/settings.php:
|
765 |
msgid "Users Like Box Template"
|
766 |
msgstr "قالب جعبه لایک کاربران"
|
767 |
|
@@ -773,12 +773,12 @@ msgid "Default Template:"
|
|
773 |
msgstr "قالب پیشفرض:"
|
774 |
|
775 |
#: ../admin/classes/class-settings.php:81
|
776 |
-
#: ../admin/classes/tmp/settings.php:
|
777 |
msgid "Users who have LIKED this post:"
|
778 |
msgstr "کاربرانی که این مطلب را پسندیده اند:"
|
779 |
|
780 |
#: ../admin/classes/class-settings.php:88
|
781 |
-
#: ../admin/classes/tmp/settings.php:
|
782 |
msgid "Comments"
|
783 |
msgstr "دیدگاه ها"
|
784 |
|
@@ -791,7 +791,7 @@ msgstr ""
|
|
791 |
"ها قرار دهید "
|
792 |
|
793 |
#: ../admin/classes/class-settings.php:90
|
794 |
-
#: ../admin/classes/tmp/settings.php:
|
795 |
msgid "Users who have LIKED this comment:"
|
796 |
msgstr "کاربرانی که این دیدگاه را پسندیده اند:"
|
797 |
|
@@ -806,22 +806,22 @@ msgstr ""
|
|
806 |
|
807 |
#: ../admin/classes/class-settings.php:98
|
808 |
#: ../admin/classes/class-settings.php:106
|
809 |
-
#: ../admin/classes/tmp/settings.php:
|
810 |
msgid "Users who have liked this activity:"
|
811 |
msgstr "کاربرانی که این فعالیت را پسندیده اند:"
|
812 |
|
813 |
#: ../admin/classes/class-settings.php:98
|
814 |
-
#: ../admin/classes/tmp/settings.php:
|
815 |
msgid "Post Activity Text"
|
816 |
msgstr "متن فعالیت مطالب"
|
817 |
|
818 |
#: ../admin/classes/class-settings.php:98
|
819 |
-
#: ../admin/classes/tmp/settings.php:
|
820 |
msgid "Comment Activity Text"
|
821 |
msgstr "متن فعالیت دیدگاه ها"
|
822 |
|
823 |
#: ../admin/classes/class-settings.php:104
|
824 |
-
#: ../admin/classes/tmp/settings.php:
|
825 |
msgid "bbPress"
|
826 |
msgstr "بی بی پرس"
|
827 |
|
@@ -833,28 +833,28 @@ msgstr "برای اطلاعات بیشتر:"
|
|
833 |
msgid "Default settings have been reset."
|
834 |
msgstr "تنظیمات پیشفرض، بازیابی شد."
|
835 |
|
836 |
-
#: ../admin/classes/class-settings.php:
|
837 |
msgid ""
|
838 |
"Do you really want to reset all these settings to their default values ?"
|
839 |
msgstr "آیا از بازیابی تنظیمات پیشفرض مطمئن هستید؟!؟"
|
840 |
|
841 |
-
#: ../admin/classes/class-settings.php:
|
842 |
-
#: ../admin/classes/class-settings.php:
|
843 |
-
#: ../admin/classes/class-settings.php:
|
844 |
msgid "No options defined."
|
845 |
msgstr "هیچ تنظیماتی تعریف نشده است."
|
846 |
|
847 |
-
#: ../admin/classes/class-settings.php:
|
848 |
#, php-format
|
849 |
msgid "Select %s"
|
850 |
msgstr "انتخاب %s"
|
851 |
|
852 |
-
#: ../admin/classes/class-settings.php:
|
853 |
#, php-format
|
854 |
msgid "Remove %s"
|
855 |
msgstr "حذف %s"
|
856 |
|
857 |
-
#: ../admin/classes/class-settings.php:
|
858 |
msgid "No action defined."
|
859 |
msgstr "هیچ کاری تعریف نشده است."
|
860 |
|
@@ -888,7 +888,7 @@ msgid "Button Icon"
|
|
888 |
msgstr "آیکن دکمه"
|
889 |
|
890 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
891 |
-
#: ../admin/classes/tmp/settings.php:
|
892 |
msgid "Best size: 16x16"
|
893 |
msgstr "سایز مناسب : 16x16"
|
894 |
|
@@ -924,14 +924,15 @@ msgstr "متن ورود کاربران"
|
|
924 |
msgid "Format Number"
|
925 |
msgstr "فرمت اعداد"
|
926 |
|
927 |
-
#: ../admin/classes/tmp/settings.php:61 ../admin/classes/tmp/settings.php:
|
928 |
-
#: ../admin/classes/tmp/settings.php:
|
929 |
-
#: ../admin/classes/tmp/settings.php:
|
930 |
-
#: ../admin/classes/tmp/settings.php:
|
931 |
-
#: ../admin/classes/tmp/settings.php:
|
932 |
-
#: ../admin/classes/tmp/settings.php:
|
933 |
-
#: ../admin/classes/tmp/settings.php:
|
934 |
-
#: ../admin/classes/tmp/settings.php:475 ../admin/classes/tmp/settings.php:
|
|
|
935 |
msgid "Activate"
|
936 |
msgstr "فعال سازی"
|
937 |
|
@@ -941,264 +942,288 @@ msgstr ""
|
|
941 |
"با فعال سازی این گزینه، می توانید اعداد بالای 1000 را با فرمت رشته ای "
|
942 |
"(کیلوبایت) نمایش دهید."
|
943 |
|
944 |
-
#: ../admin/classes/tmp/settings.php:
|
945 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
946 |
#: ../inc/wp-strings.php:10
|
947 |
msgid "Themes"
|
948 |
msgstr "قالب ها"
|
949 |
|
950 |
-
#: ../admin/classes/tmp/settings.php:
|
951 |
-
#: ../admin/classes/tmp/settings.php:
|
952 |
#: ../inc/wp-strings.php:25
|
953 |
msgid "Default"
|
954 |
msgstr "پیشفرض"
|
955 |
|
956 |
-
#: ../admin/classes/tmp/settings.php:
|
957 |
-
#: ../admin/classes/tmp/settings.php:
|
958 |
msgid "Auto Display Position"
|
959 |
msgstr "محل قرار گیری در نمایش خودکار"
|
960 |
|
961 |
-
#: ../admin/classes/tmp/settings.php:
|
962 |
-
#: ../admin/classes/tmp/settings.php:
|
963 |
msgid "Top of Content"
|
964 |
msgstr "بالای محتوا"
|
965 |
|
966 |
-
#: ../admin/classes/tmp/settings.php:
|
967 |
-
#: ../admin/classes/tmp/settings.php:
|
968 |
msgid "Bottom of Content"
|
969 |
msgstr "پایین محتوا"
|
970 |
|
971 |
-
#: ../admin/classes/tmp/settings.php:
|
972 |
msgid "Top and Bottom"
|
973 |
msgstr "بالا و پایین"
|
974 |
|
975 |
-
#: ../admin/classes/tmp/settings.php:
|
976 |
msgid "Auto Display Filter"
|
977 |
msgstr "فیلتر گذاری در نمایش خودکار"
|
978 |
|
979 |
-
#: ../admin/classes/tmp/settings.php:
|
980 |
msgid "Single Posts"
|
981 |
msgstr "تک نوشته ها"
|
982 |
|
983 |
-
#: ../admin/classes/tmp/settings.php:
|
984 |
msgid "Pages"
|
985 |
msgstr "برگه ها"
|
986 |
|
987 |
-
#: ../admin/classes/tmp/settings.php:
|
988 |
msgid "Archives"
|
989 |
msgstr "بایگانی"
|
990 |
|
991 |
-
#: ../admin/classes/tmp/settings.php:
|
992 |
msgid "Categories"
|
993 |
msgstr "دسته بندی ها"
|
994 |
|
995 |
-
#: ../admin/classes/tmp/settings.php:
|
996 |
msgid "Search Results"
|
997 |
msgstr "نتایج جستجوها"
|
998 |
|
999 |
-
#: ../admin/classes/tmp/settings.php:
|
1000 |
msgid "Tags"
|
1001 |
msgstr "برچسب ها"
|
1002 |
|
1003 |
-
#: ../admin/classes/tmp/settings.php:
|
1004 |
msgid "Author Page"
|
1005 |
msgstr "صفحه نویسنده"
|
1006 |
|
1007 |
-
#: ../admin/classes/tmp/settings.php:
|
1008 |
msgid "You can filter theses pages on auto display option."
|
1009 |
msgstr ""
|
1010 |
"شما می توانید بر روی این صفحات فیلتر گذاری کنید تا دکمه لایک نمایش داده نشود"
|
1011 |
|
1012 |
-
#: ../admin/classes/tmp/settings.php:
|
1013 |
-
#: ../admin/classes/tmp/settings.php:
|
1014 |
msgid "Only registered Users"
|
1015 |
msgstr "محدودسازی لایک کاربران"
|
1016 |
|
1017 |
-
#: ../admin/classes/tmp/settings.php:
|
1018 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1019 |
msgstr ""
|
1020 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1021 |
"مطالب را لایک کنند."
|
1022 |
|
1023 |
-
#: ../admin/classes/tmp/settings.php:
|
1024 |
-
#: ../admin/classes/tmp/settings.php:
|
1025 |
msgid "Do Not Log"
|
1026 |
msgstr "وقایع نگاری نکن"
|
1027 |
|
1028 |
-
#: ../admin/classes/tmp/settings.php:
|
1029 |
-
#: ../admin/classes/tmp/settings.php:
|
1030 |
msgid "Logged By Cookie"
|
1031 |
msgstr "با کوکی"
|
1032 |
|
1033 |
-
#: ../admin/classes/tmp/settings.php:
|
1034 |
-
#: ../admin/classes/tmp/settings.php:
|
1035 |
msgid "Logged By IP"
|
1036 |
msgstr "با آی پی"
|
1037 |
|
1038 |
-
#: ../admin/classes/tmp/settings.php:
|
1039 |
-
#: ../admin/classes/tmp/settings.php:
|
1040 |
msgid "Logged By Cookie & IP"
|
1041 |
msgstr "با کوکی و آی پی"
|
1042 |
|
1043 |
-
#: ../admin/classes/tmp/settings.php:
|
1044 |
-
#: ../admin/classes/tmp/settings.php:
|
1045 |
msgid "Logged By Username"
|
1046 |
msgstr "با نام کاربری"
|
1047 |
|
1048 |
-
#: ../admin/classes/tmp/settings.php:
|
1049 |
-
#: ../admin/classes/tmp/settings.php:
|
1050 |
msgid "Show Liked Users Box"
|
1051 |
msgstr "نمایش باکس کاربران لایک کرده"
|
1052 |
|
1053 |
-
#: ../admin/classes/tmp/settings.php:
|
1054 |
-
#: ../admin/classes/tmp/settings.php:
|
1055 |
msgid ""
|
1056 |
"Active this option to show liked users avatars in the bottom of button like."
|
1057 |
msgstr ""
|
1058 |
"با فعال سازی این گزینه، می توانید آواتار کاربران لایک کرده، را در زیر دکمه "
|
1059 |
"لایک، نمایش دهید."
|
1060 |
|
1061 |
-
#: ../admin/classes/tmp/settings.php:
|
1062 |
-
#: ../admin/classes/tmp/settings.php:
|
1063 |
msgid "Size of Gravatars"
|
1064 |
msgstr "سایز آوتار"
|
1065 |
|
1066 |
-
#: ../admin/classes/tmp/settings.php:
|
1067 |
-
#: ../admin/classes/tmp/settings.php:
|
1068 |
msgid "Size of Gravatars to return (max is 512)"
|
1069 |
msgstr "سایز تصاویر گراواتار (بیشترین اندازه 512)"
|
1070 |
|
1071 |
-
#: ../admin/classes/tmp/settings.php:
|
1072 |
-
#: ../admin/classes/tmp/settings.php:
|
1073 |
msgid "Number Of The Users"
|
1074 |
msgstr "تعداد کاربران قابل نمایش"
|
1075 |
|
1076 |
-
#: ../admin/classes/tmp/settings.php:
|
1077 |
-
#: ../admin/classes/tmp/settings.php:
|
1078 |
msgid "The number of users to show in the users liked box"
|
1079 |
msgstr "حداکثر چند کاربر در باکس لایک کنندگان، نمایش داده شوند؟!؟"
|
1080 |
|
1081 |
-
#: ../admin/classes/tmp/settings.php:
|
1082 |
-
#: ../admin/classes/tmp/settings.php:
|
1083 |
-
#: ../admin/classes/tmp/settings.php:
|
1084 |
msgid "Allowed Variables:"
|
1085 |
msgstr "متغیرهای قابل استفاده:"
|
1086 |
|
1087 |
-
#: ../admin/classes/tmp/settings.php:
|
1088 |
-
#: ../admin/classes/tmp/settings.php:
|
1089 |
msgid "Delete All Logs"
|
1090 |
msgstr "حذف تمام وقایع"
|
1091 |
|
1092 |
-
#: ../admin/classes/tmp/settings.php:
|
1093 |
-
#: ../admin/classes/tmp/settings.php:
|
1094 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1095 |
msgstr ""
|
1096 |
"شما قصد دارید که تمامی \"وقایع\" ثبت شده را حذف کنید! این عمل برگشت نا پذیر "
|
1097 |
"است."
|
1098 |
|
1099 |
-
#: ../admin/classes/tmp/settings.php:
|
1100 |
-
#: ../admin/classes/tmp/settings.php:
|
1101 |
msgid "Delete All Data"
|
1102 |
msgstr "حذف تمام داده ها"
|
1103 |
|
1104 |
-
#: ../admin/classes/tmp/settings.php:
|
1105 |
-
#: ../admin/classes/tmp/settings.php:
|
1106 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1107 |
msgstr ""
|
1108 |
"شما قصد دارید که تمامی \"داده ها\" ثبت شده را حذف کنید! این عمل برگشت نا "
|
1109 |
"پذیر است."
|
1110 |
|
1111 |
-
#: ../admin/classes/tmp/settings.php:
|
1112 |
msgid ""
|
1113 |
"<strong>Only</strong> registered users have permission to like comments."
|
1114 |
msgstr ""
|
1115 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1116 |
"دیدگاه ها را لایک کنند."
|
1117 |
|
1118 |
-
#: ../admin/classes/tmp/settings.php:
|
1119 |
msgid "Customize"
|
1120 |
msgstr "سفارشی سازی"
|
1121 |
|
1122 |
-
#: ../admin/classes/tmp/settings.php:
|
1123 |
msgid "Custom Style"
|
1124 |
msgstr "سفارشی سازی"
|
1125 |
|
1126 |
-
#: ../admin/classes/tmp/settings.php:
|
1127 |
msgid "Active this option to see the custom style settings."
|
1128 |
msgstr ""
|
1129 |
"با فعال سازی این گزینه، می توانید استایل سفارشی خود را در افزونه به کار "
|
1130 |
"ببرید."
|
1131 |
|
1132 |
-
#: ../admin/classes/tmp/settings.php:
|
1133 |
msgid "Button style"
|
1134 |
msgstr "دکمه لایک"
|
1135 |
|
1136 |
-
#: ../admin/classes/tmp/settings.php:
|
1137 |
msgid "Background"
|
1138 |
msgstr "رنگ پس زمینه"
|
1139 |
|
1140 |
-
#: ../admin/classes/tmp/settings.php:
|
1141 |
msgid "Border Color"
|
1142 |
msgstr "رنگ حاشیه"
|
1143 |
|
1144 |
-
#: ../admin/classes/tmp/settings.php:
|
1145 |
msgid "Text Color"
|
1146 |
msgstr "رنگ متن"
|
1147 |
|
1148 |
-
#: ../admin/classes/tmp/settings.php:
|
1149 |
msgid "Counter Style"
|
1150 |
msgstr "باکس شمارنده"
|
1151 |
|
1152 |
-
#: ../admin/classes/tmp/settings.php:
|
1153 |
msgid "Loading Animation"
|
1154 |
msgstr "انیمیشن بارگذاری"
|
1155 |
|
1156 |
-
#: ../admin/classes/tmp/settings.php:
|
1157 |
msgid "Custom CSS"
|
1158 |
msgstr "سفارشی سازی css"
|
1159 |
|
1160 |
-
#: ../admin/classes/tmp/settings.php:
|
1161 |
msgid "Activity Content"
|
1162 |
msgstr "در متن فعالیت"
|
1163 |
|
1164 |
-
#: ../admin/classes/tmp/settings.php:
|
1165 |
msgid "Activity Meta"
|
1166 |
msgstr "در متاباکس فعالیت"
|
1167 |
|
1168 |
-
#: ../admin/classes/tmp/settings.php:
|
1169 |
msgid "Activity Comment"
|
1170 |
msgstr "نظرات فعالیت ها"
|
1171 |
|
1172 |
-
#: ../admin/classes/tmp/settings.php:
|
1173 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1174 |
msgstr ""
|
1175 |
" با فعال سازی این گزینه، سیستم لایک در بخش دیدگاه های مربوط به بادی پرس فعال "
|
1176 |
"می شود."
|
1177 |
|
1178 |
-
#: ../admin/classes/tmp/settings.php:
|
1179 |
msgid ""
|
1180 |
"<strong>Only</strong> registered users have permission to like activities."
|
1181 |
msgstr ""
|
1182 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1183 |
"فعالیت های بادی پرس را لایک کنند."
|
1184 |
|
1185 |
-
#: ../admin/classes/tmp/settings.php:
|
1186 |
msgid "BuddyPress Activity"
|
1187 |
msgstr "فعالیت های بادی پرس"
|
1188 |
|
1189 |
-
#: ../admin/classes/tmp/settings.php:
|
1190 |
msgid "insert new likes in buddyPress activity page"
|
1191 |
msgstr ""
|
1192 |
"با فعال سازی این گزینه، اطلاعات جدیدترین لایک ها به بخش فعالیت های بادی پرس "
|
1193 |
"اضافه خواهد شد."
|
1194 |
|
1195 |
-
#: ../admin/classes/tmp/settings.php:
|
1196 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1197 |
msgstr ""
|
1198 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1199 |
"تاپیک ها را لایک کنند."
|
1200 |
|
1201 |
-
#: ../admin/classes/tmp/settings.php:
|
1202 |
msgid "Users who have liked this topic:"
|
1203 |
msgstr "کاربرانی که این تاپیک را پسندیده اند:"
|
1204 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
+
"POT-Creation-Date: 2017-01-20 23:21+0330\n"
|
5 |
+
"PO-Revision-Date: 2017-01-20 23:21+0330\n"
|
6 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
7 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
8 |
"Language: fa_IR\n"
|
170 |
msgid "WP ULike Statistics"
|
171 |
msgstr "آماره وردپرس یولایک"
|
172 |
|
173 |
+
#: ../admin/about.php:218 ../admin/classes/tmp/settings.php:118
|
174 |
msgid "Home"
|
175 |
msgstr "خانه"
|
176 |
|
577 |
msgid "Simple"
|
578 |
msgstr "ساده"
|
579 |
|
580 |
+
#: ../admin/classes/class-widget.php:427 ../admin/classes/tmp/settings.php:95
|
581 |
+
#: ../admin/classes/tmp/settings.php:201 ../admin/classes/tmp/settings.php:349
|
582 |
+
#: ../admin/classes/tmp/settings.php:468
|
583 |
msgid "Heart"
|
584 |
msgstr "قلب"
|
585 |
|
601 |
|
602 |
#: ../admin/classes/class-widget.php:452
|
603 |
#: ../admin/classes/class-settings.php:96
|
604 |
+
#: ../admin/classes/tmp/settings.php:341
|
605 |
msgid "BuddyPress"
|
606 |
msgstr "بادی پرس"
|
607 |
|
630 |
msgstr "تنظیمات مشابه"
|
631 |
|
632 |
#: ../admin/classes/class-settings.php:48
|
633 |
+
#: ../admin/classes/tmp/settings.php:139 ../admin/classes/tmp/settings.php:230
|
634 |
+
#: ../admin/classes/tmp/settings.php:384 ../admin/classes/tmp/settings.php:496
|
635 |
msgid "Logging Method"
|
636 |
msgstr "روش وقایع نگاری"
|
637 |
|
735 |
msgid "Display the comment author name"
|
736 |
msgstr "نمایش نام نویسنده دیدگاه"
|
737 |
|
738 |
+
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:87
|
739 |
msgid "Posts"
|
740 |
msgstr "نوشته ها"
|
741 |
|
743 |
#: ../admin/classes/class-settings.php:90
|
744 |
#: ../admin/classes/class-settings.php:98
|
745 |
#: ../admin/classes/class-settings.php:106
|
746 |
+
#: ../admin/classes/tmp/settings.php:101 ../admin/classes/tmp/settings.php:207
|
747 |
+
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:474
|
748 |
msgid "Automatic display"
|
749 |
msgstr "نمایش خودکار"
|
750 |
|
760 |
#: ../admin/classes/class-settings.php:90
|
761 |
#: ../admin/classes/class-settings.php:98
|
762 |
#: ../admin/classes/class-settings.php:106
|
763 |
+
#: ../admin/classes/tmp/settings.php:170 ../admin/classes/tmp/settings.php:261
|
764 |
+
#: ../admin/classes/tmp/settings.php:415 ../admin/classes/tmp/settings.php:527
|
765 |
msgid "Users Like Box Template"
|
766 |
msgstr "قالب جعبه لایک کاربران"
|
767 |
|
773 |
msgstr "قالب پیشفرض:"
|
774 |
|
775 |
#: ../admin/classes/class-settings.php:81
|
776 |
+
#: ../admin/classes/tmp/settings.php:169 ../inc/classes/class-ulike.php:423
|
777 |
msgid "Users who have LIKED this post:"
|
778 |
msgstr "کاربرانی که این مطلب را پسندیده اند:"
|
779 |
|
780 |
#: ../admin/classes/class-settings.php:88
|
781 |
+
#: ../admin/classes/tmp/settings.php:193
|
782 |
msgid "Comments"
|
783 |
msgstr "دیدگاه ها"
|
784 |
|
791 |
"ها قرار دهید "
|
792 |
|
793 |
#: ../admin/classes/class-settings.php:90
|
794 |
+
#: ../admin/classes/tmp/settings.php:260
|
795 |
msgid "Users who have LIKED this comment:"
|
796 |
msgstr "کاربرانی که این دیدگاه را پسندیده اند:"
|
797 |
|
806 |
|
807 |
#: ../admin/classes/class-settings.php:98
|
808 |
#: ../admin/classes/class-settings.php:106
|
809 |
+
#: ../admin/classes/tmp/settings.php:414
|
810 |
msgid "Users who have liked this activity:"
|
811 |
msgstr "کاربرانی که این فعالیت را پسندیده اند:"
|
812 |
|
813 |
#: ../admin/classes/class-settings.php:98
|
814 |
+
#: ../admin/classes/tmp/settings.php:428
|
815 |
msgid "Post Activity Text"
|
816 |
msgstr "متن فعالیت مطالب"
|
817 |
|
818 |
#: ../admin/classes/class-settings.php:98
|
819 |
+
#: ../admin/classes/tmp/settings.php:434
|
820 |
msgid "Comment Activity Text"
|
821 |
msgstr "متن فعالیت دیدگاه ها"
|
822 |
|
823 |
#: ../admin/classes/class-settings.php:104
|
824 |
+
#: ../admin/classes/tmp/settings.php:460
|
825 |
msgid "bbPress"
|
826 |
msgstr "بی بی پرس"
|
827 |
|
833 |
msgid "Default settings have been reset."
|
834 |
msgstr "تنظیمات پیشفرض، بازیابی شد."
|
835 |
|
836 |
+
#: ../admin/classes/class-settings.php:248
|
837 |
msgid ""
|
838 |
"Do you really want to reset all these settings to their default values ?"
|
839 |
msgstr "آیا از بازیابی تنظیمات پیشفرض مطمئن هستید؟!؟"
|
840 |
|
841 |
+
#: ../admin/classes/class-settings.php:313
|
842 |
+
#: ../admin/classes/class-settings.php:324
|
843 |
+
#: ../admin/classes/class-settings.php:348
|
844 |
msgid "No options defined."
|
845 |
msgstr "هیچ تنظیماتی تعریف نشده است."
|
846 |
|
847 |
+
#: ../admin/classes/class-settings.php:335
|
848 |
#, php-format
|
849 |
msgid "Select %s"
|
850 |
msgstr "انتخاب %s"
|
851 |
|
852 |
+
#: ../admin/classes/class-settings.php:336
|
853 |
#, php-format
|
854 |
msgid "Remove %s"
|
855 |
msgstr "حذف %s"
|
856 |
|
857 |
+
#: ../admin/classes/class-settings.php:360
|
858 |
msgid "No action defined."
|
859 |
msgstr "هیچ کاری تعریف نشده است."
|
860 |
|
888 |
msgstr "آیکن دکمه"
|
889 |
|
890 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
891 |
+
#: ../admin/classes/tmp/settings.php:325
|
892 |
msgid "Best size: 16x16"
|
893 |
msgstr "سایز مناسب : 16x16"
|
894 |
|
924 |
msgid "Format Number"
|
925 |
msgstr "فرمت اعداد"
|
926 |
|
927 |
+
#: ../admin/classes/tmp/settings.php:61 ../admin/classes/tmp/settings.php:68
|
928 |
+
#: ../admin/classes/tmp/settings.php:102 ../admin/classes/tmp/settings.php:133
|
929 |
+
#: ../admin/classes/tmp/settings.php:152 ../admin/classes/tmp/settings.php:208
|
930 |
+
#: ../admin/classes/tmp/settings.php:224 ../admin/classes/tmp/settings.php:243
|
931 |
+
#: ../admin/classes/tmp/settings.php:290 ../admin/classes/tmp/settings.php:356
|
932 |
+
#: ../admin/classes/tmp/settings.php:371 ../admin/classes/tmp/settings.php:378
|
933 |
+
#: ../admin/classes/tmp/settings.php:397 ../admin/classes/tmp/settings.php:422
|
934 |
+
#: ../admin/classes/tmp/settings.php:475 ../admin/classes/tmp/settings.php:490
|
935 |
+
#: ../admin/classes/tmp/settings.php:509
|
936 |
msgid "Activate"
|
937 |
msgstr "فعال سازی"
|
938 |
|
942 |
"با فعال سازی این گزینه، می توانید اعداد بالای 1000 را با فرمت رشته ای "
|
943 |
"(کیلوبایت) نمایش دهید."
|
944 |
|
945 |
+
#: ../admin/classes/tmp/settings.php:67
|
946 |
+
msgid "Notifications"
|
947 |
+
msgstr "اطلاعیه ها"
|
948 |
+
|
949 |
+
#: ../admin/classes/tmp/settings.php:69
|
950 |
+
msgid "Custom toast messages after each activity"
|
951 |
+
msgstr "نمایش پیام های سفارشی بعد از هر فعالیت"
|
952 |
+
|
953 |
+
#: ../admin/classes/tmp/settings.php:72
|
954 |
+
msgid "Thanks! You Liked This."
|
955 |
+
msgstr "متشکریم! شما این را لایک کردید."
|
956 |
+
|
957 |
+
#: ../admin/classes/tmp/settings.php:73
|
958 |
+
msgid "Liked Notice Message"
|
959 |
+
msgstr "پیغام اطلاعیه پسندیدن"
|
960 |
+
|
961 |
+
#: ../admin/classes/tmp/settings.php:76
|
962 |
+
msgid "Sorry! You unliked this."
|
963 |
+
msgstr "متأسفیم! شما این را نپسندیدید."
|
964 |
+
|
965 |
+
#: ../admin/classes/tmp/settings.php:77
|
966 |
+
msgid "Unliked Notice Message"
|
967 |
+
msgstr "پیغام اطلاعیه لغو پسندیدن"
|
968 |
+
|
969 |
+
#: ../admin/classes/tmp/settings.php:92 ../admin/classes/tmp/settings.php:198
|
970 |
+
#: ../admin/classes/tmp/settings.php:346 ../admin/classes/tmp/settings.php:465
|
971 |
#: ../inc/wp-strings.php:10
|
972 |
msgid "Themes"
|
973 |
msgstr "قالب ها"
|
974 |
|
975 |
+
#: ../admin/classes/tmp/settings.php:94 ../admin/classes/tmp/settings.php:200
|
976 |
+
#: ../admin/classes/tmp/settings.php:348 ../admin/classes/tmp/settings.php:467
|
977 |
#: ../inc/wp-strings.php:25
|
978 |
msgid "Default"
|
979 |
msgstr "پیشفرض"
|
980 |
|
981 |
+
#: ../admin/classes/tmp/settings.php:106 ../admin/classes/tmp/settings.php:212
|
982 |
+
#: ../admin/classes/tmp/settings.php:360 ../admin/classes/tmp/settings.php:479
|
983 |
msgid "Auto Display Position"
|
984 |
msgstr "محل قرار گیری در نمایش خودکار"
|
985 |
|
986 |
+
#: ../admin/classes/tmp/settings.php:109 ../admin/classes/tmp/settings.php:215
|
987 |
+
#: ../admin/classes/tmp/settings.php:482
|
988 |
msgid "Top of Content"
|
989 |
msgstr "بالای محتوا"
|
990 |
|
991 |
+
#: ../admin/classes/tmp/settings.php:110 ../admin/classes/tmp/settings.php:216
|
992 |
+
#: ../admin/classes/tmp/settings.php:483
|
993 |
msgid "Bottom of Content"
|
994 |
msgstr "پایین محتوا"
|
995 |
|
996 |
+
#: ../admin/classes/tmp/settings.php:111 ../admin/classes/tmp/settings.php:217
|
997 |
msgid "Top and Bottom"
|
998 |
msgstr "بالا و پایین"
|
999 |
|
1000 |
+
#: ../admin/classes/tmp/settings.php:116
|
1001 |
msgid "Auto Display Filter"
|
1002 |
msgstr "فیلتر گذاری در نمایش خودکار"
|
1003 |
|
1004 |
+
#: ../admin/classes/tmp/settings.php:119
|
1005 |
msgid "Single Posts"
|
1006 |
msgstr "تک نوشته ها"
|
1007 |
|
1008 |
+
#: ../admin/classes/tmp/settings.php:120
|
1009 |
msgid "Pages"
|
1010 |
msgstr "برگه ها"
|
1011 |
|
1012 |
+
#: ../admin/classes/tmp/settings.php:121
|
1013 |
msgid "Archives"
|
1014 |
msgstr "بایگانی"
|
1015 |
|
1016 |
+
#: ../admin/classes/tmp/settings.php:122
|
1017 |
msgid "Categories"
|
1018 |
msgstr "دسته بندی ها"
|
1019 |
|
1020 |
+
#: ../admin/classes/tmp/settings.php:123
|
1021 |
msgid "Search Results"
|
1022 |
msgstr "نتایج جستجوها"
|
1023 |
|
1024 |
+
#: ../admin/classes/tmp/settings.php:124
|
1025 |
msgid "Tags"
|
1026 |
msgstr "برچسب ها"
|
1027 |
|
1028 |
+
#: ../admin/classes/tmp/settings.php:125
|
1029 |
msgid "Author Page"
|
1030 |
msgstr "صفحه نویسنده"
|
1031 |
|
1032 |
+
#: ../admin/classes/tmp/settings.php:127
|
1033 |
msgid "You can filter theses pages on auto display option."
|
1034 |
msgstr ""
|
1035 |
"شما می توانید بر روی این صفحات فیلتر گذاری کنید تا دکمه لایک نمایش داده نشود"
|
1036 |
|
1037 |
+
#: ../admin/classes/tmp/settings.php:132 ../admin/classes/tmp/settings.php:223
|
1038 |
+
#: ../admin/classes/tmp/settings.php:377 ../admin/classes/tmp/settings.php:489
|
1039 |
msgid "Only registered Users"
|
1040 |
msgstr "محدودسازی لایک کاربران"
|
1041 |
|
1042 |
+
#: ../admin/classes/tmp/settings.php:134
|
1043 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1044 |
msgstr ""
|
1045 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1046 |
"مطالب را لایک کنند."
|
1047 |
|
1048 |
+
#: ../admin/classes/tmp/settings.php:141 ../admin/classes/tmp/settings.php:232
|
1049 |
+
#: ../admin/classes/tmp/settings.php:386 ../admin/classes/tmp/settings.php:498
|
1050 |
msgid "Do Not Log"
|
1051 |
msgstr "وقایع نگاری نکن"
|
1052 |
|
1053 |
+
#: ../admin/classes/tmp/settings.php:142 ../admin/classes/tmp/settings.php:233
|
1054 |
+
#: ../admin/classes/tmp/settings.php:387 ../admin/classes/tmp/settings.php:499
|
1055 |
msgid "Logged By Cookie"
|
1056 |
msgstr "با کوکی"
|
1057 |
|
1058 |
+
#: ../admin/classes/tmp/settings.php:143 ../admin/classes/tmp/settings.php:234
|
1059 |
+
#: ../admin/classes/tmp/settings.php:388 ../admin/classes/tmp/settings.php:500
|
1060 |
msgid "Logged By IP"
|
1061 |
msgstr "با آی پی"
|
1062 |
|
1063 |
+
#: ../admin/classes/tmp/settings.php:144 ../admin/classes/tmp/settings.php:235
|
1064 |
+
#: ../admin/classes/tmp/settings.php:389 ../admin/classes/tmp/settings.php:501
|
1065 |
msgid "Logged By Cookie & IP"
|
1066 |
msgstr "با کوکی و آی پی"
|
1067 |
|
1068 |
+
#: ../admin/classes/tmp/settings.php:145 ../admin/classes/tmp/settings.php:236
|
1069 |
+
#: ../admin/classes/tmp/settings.php:390 ../admin/classes/tmp/settings.php:502
|
1070 |
msgid "Logged By Username"
|
1071 |
msgstr "با نام کاربری"
|
1072 |
|
1073 |
+
#: ../admin/classes/tmp/settings.php:151 ../admin/classes/tmp/settings.php:242
|
1074 |
+
#: ../admin/classes/tmp/settings.php:396 ../admin/classes/tmp/settings.php:508
|
1075 |
msgid "Show Liked Users Box"
|
1076 |
msgstr "نمایش باکس کاربران لایک کرده"
|
1077 |
|
1078 |
+
#: ../admin/classes/tmp/settings.php:153 ../admin/classes/tmp/settings.php:244
|
1079 |
+
#: ../admin/classes/tmp/settings.php:398 ../admin/classes/tmp/settings.php:510
|
1080 |
msgid ""
|
1081 |
"Active this option to show liked users avatars in the bottom of button like."
|
1082 |
msgstr ""
|
1083 |
"با فعال سازی این گزینه، می توانید آواتار کاربران لایک کرده، را در زیر دکمه "
|
1084 |
"لایک، نمایش دهید."
|
1085 |
|
1086 |
+
#: ../admin/classes/tmp/settings.php:158 ../admin/classes/tmp/settings.php:249
|
1087 |
+
#: ../admin/classes/tmp/settings.php:403 ../admin/classes/tmp/settings.php:515
|
1088 |
msgid "Size of Gravatars"
|
1089 |
msgstr "سایز آوتار"
|
1090 |
|
1091 |
+
#: ../admin/classes/tmp/settings.php:159 ../admin/classes/tmp/settings.php:250
|
1092 |
+
#: ../admin/classes/tmp/settings.php:404 ../admin/classes/tmp/settings.php:516
|
1093 |
msgid "Size of Gravatars to return (max is 512)"
|
1094 |
msgstr "سایز تصاویر گراواتار (بیشترین اندازه 512)"
|
1095 |
|
1096 |
+
#: ../admin/classes/tmp/settings.php:164 ../admin/classes/tmp/settings.php:255
|
1097 |
+
#: ../admin/classes/tmp/settings.php:409 ../admin/classes/tmp/settings.php:521
|
1098 |
msgid "Number Of The Users"
|
1099 |
msgstr "تعداد کاربران قابل نمایش"
|
1100 |
|
1101 |
+
#: ../admin/classes/tmp/settings.php:165 ../admin/classes/tmp/settings.php:256
|
1102 |
+
#: ../admin/classes/tmp/settings.php:410 ../admin/classes/tmp/settings.php:522
|
1103 |
msgid "The number of users to show in the users liked box"
|
1104 |
msgstr "حداکثر چند کاربر در باکس لایک کنندگان، نمایش داده شوند؟!؟"
|
1105 |
|
1106 |
+
#: ../admin/classes/tmp/settings.php:171 ../admin/classes/tmp/settings.php:262
|
1107 |
+
#: ../admin/classes/tmp/settings.php:416 ../admin/classes/tmp/settings.php:429
|
1108 |
+
#: ../admin/classes/tmp/settings.php:435 ../admin/classes/tmp/settings.php:528
|
1109 |
msgid "Allowed Variables:"
|
1110 |
msgstr "متغیرهای قابل استفاده:"
|
1111 |
|
1112 |
+
#: ../admin/classes/tmp/settings.php:175 ../admin/classes/tmp/settings.php:266
|
1113 |
+
#: ../admin/classes/tmp/settings.php:439 ../admin/classes/tmp/settings.php:532
|
1114 |
msgid "Delete All Logs"
|
1115 |
msgstr "حذف تمام وقایع"
|
1116 |
|
1117 |
+
#: ../admin/classes/tmp/settings.php:176 ../admin/classes/tmp/settings.php:267
|
1118 |
+
#: ../admin/classes/tmp/settings.php:440 ../admin/classes/tmp/settings.php:533
|
1119 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1120 |
msgstr ""
|
1121 |
"شما قصد دارید که تمامی \"وقایع\" ثبت شده را حذف کنید! این عمل برگشت نا پذیر "
|
1122 |
"است."
|
1123 |
|
1124 |
+
#: ../admin/classes/tmp/settings.php:181 ../admin/classes/tmp/settings.php:272
|
1125 |
+
#: ../admin/classes/tmp/settings.php:445 ../admin/classes/tmp/settings.php:538
|
1126 |
msgid "Delete All Data"
|
1127 |
msgstr "حذف تمام داده ها"
|
1128 |
|
1129 |
+
#: ../admin/classes/tmp/settings.php:182 ../admin/classes/tmp/settings.php:273
|
1130 |
+
#: ../admin/classes/tmp/settings.php:446 ../admin/classes/tmp/settings.php:539
|
1131 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1132 |
msgstr ""
|
1133 |
"شما قصد دارید که تمامی \"داده ها\" ثبت شده را حذف کنید! این عمل برگشت نا "
|
1134 |
"پذیر است."
|
1135 |
|
1136 |
+
#: ../admin/classes/tmp/settings.php:225
|
1137 |
msgid ""
|
1138 |
"<strong>Only</strong> registered users have permission to like comments."
|
1139 |
msgstr ""
|
1140 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1141 |
"دیدگاه ها را لایک کنند."
|
1142 |
|
1143 |
+
#: ../admin/classes/tmp/settings.php:284
|
1144 |
msgid "Customize"
|
1145 |
msgstr "سفارشی سازی"
|
1146 |
|
1147 |
+
#: ../admin/classes/tmp/settings.php:289
|
1148 |
msgid "Custom Style"
|
1149 |
msgstr "سفارشی سازی"
|
1150 |
|
1151 |
+
#: ../admin/classes/tmp/settings.php:294
|
1152 |
msgid "Active this option to see the custom style settings."
|
1153 |
msgstr ""
|
1154 |
"با فعال سازی این گزینه، می توانید استایل سفارشی خود را در افزونه به کار "
|
1155 |
"ببرید."
|
1156 |
|
1157 |
+
#: ../admin/classes/tmp/settings.php:298
|
1158 |
msgid "Button style"
|
1159 |
msgstr "دکمه لایک"
|
1160 |
|
1161 |
+
#: ../admin/classes/tmp/settings.php:299 ../admin/classes/tmp/settings.php:312
|
1162 |
msgid "Background"
|
1163 |
msgstr "رنگ پس زمینه"
|
1164 |
|
1165 |
+
#: ../admin/classes/tmp/settings.php:303 ../admin/classes/tmp/settings.php:316
|
1166 |
msgid "Border Color"
|
1167 |
msgstr "رنگ حاشیه"
|
1168 |
|
1169 |
+
#: ../admin/classes/tmp/settings.php:307 ../admin/classes/tmp/settings.php:320
|
1170 |
msgid "Text Color"
|
1171 |
msgstr "رنگ متن"
|
1172 |
|
1173 |
+
#: ../admin/classes/tmp/settings.php:311
|
1174 |
msgid "Counter Style"
|
1175 |
msgstr "باکس شمارنده"
|
1176 |
|
1177 |
+
#: ../admin/classes/tmp/settings.php:324
|
1178 |
msgid "Loading Animation"
|
1179 |
msgstr "انیمیشن بارگذاری"
|
1180 |
|
1181 |
+
#: ../admin/classes/tmp/settings.php:329
|
1182 |
msgid "Custom CSS"
|
1183 |
msgstr "سفارشی سازی css"
|
1184 |
|
1185 |
+
#: ../admin/classes/tmp/settings.php:363
|
1186 |
msgid "Activity Content"
|
1187 |
msgstr "در متن فعالیت"
|
1188 |
|
1189 |
+
#: ../admin/classes/tmp/settings.php:364
|
1190 |
msgid "Activity Meta"
|
1191 |
msgstr "در متاباکس فعالیت"
|
1192 |
|
1193 |
+
#: ../admin/classes/tmp/settings.php:370
|
1194 |
msgid "Activity Comment"
|
1195 |
msgstr "نظرات فعالیت ها"
|
1196 |
|
1197 |
+
#: ../admin/classes/tmp/settings.php:372
|
1198 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1199 |
msgstr ""
|
1200 |
" با فعال سازی این گزینه، سیستم لایک در بخش دیدگاه های مربوط به بادی پرس فعال "
|
1201 |
"می شود."
|
1202 |
|
1203 |
+
#: ../admin/classes/tmp/settings.php:379
|
1204 |
msgid ""
|
1205 |
"<strong>Only</strong> registered users have permission to like activities."
|
1206 |
msgstr ""
|
1207 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1208 |
"فعالیت های بادی پرس را لایک کنند."
|
1209 |
|
1210 |
+
#: ../admin/classes/tmp/settings.php:421
|
1211 |
msgid "BuddyPress Activity"
|
1212 |
msgstr "فعالیت های بادی پرس"
|
1213 |
|
1214 |
+
#: ../admin/classes/tmp/settings.php:423
|
1215 |
msgid "insert new likes in buddyPress activity page"
|
1216 |
msgstr ""
|
1217 |
"با فعال سازی این گزینه، اطلاعات جدیدترین لایک ها به بخش فعالیت های بادی پرس "
|
1218 |
"اضافه خواهد شد."
|
1219 |
|
1220 |
+
#: ../admin/classes/tmp/settings.php:491
|
1221 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1222 |
msgstr ""
|
1223 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1224 |
"تاپیک ها را لایک کنند."
|
1225 |
|
1226 |
+
#: ../admin/classes/tmp/settings.php:526
|
1227 |
msgid "Users who have liked this topic:"
|
1228 |
msgstr "کاربرانی که این تاپیک را پسندیده اند:"
|
1229 |
|
lang/wp-ulike-nl_NL.mo
CHANGED
Binary file
|
lang/wp-ulike-nl_NL.po
CHANGED
@@ -1,22 +1,23 @@
|
|
1 |
-
#
|
|
|
2 |
# Translators:
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _e
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
@@ -62,9 +63,8 @@ msgid "Reviews"
|
|
62 |
msgstr "Beoordelingen"
|
63 |
|
64 |
#: ../admin/about.php:125
|
65 |
-
#, fuzzy
|
66 |
msgid "Introducing WP ULike"
|
67 |
-
msgstr "
|
68 |
|
69 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
70 |
msgid "About WP ULike"
|
@@ -81,9 +81,8 @@ msgstr ""
|
|
81 |
"reacties en BuddyPress activiteiten."
|
82 |
|
83 |
#: ../admin/about.php:155
|
84 |
-
#, fuzzy
|
85 |
msgid "WP Ulike Extension"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: ../admin/about.php:156
|
89 |
msgid ""
|
@@ -122,9 +121,8 @@ msgid ""
|
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../admin/about.php:195
|
125 |
-
#, fuzzy
|
126 |
msgid "myCRED Points Support"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: ../admin/about.php:196
|
130 |
msgid ""
|
@@ -235,9 +233,8 @@ msgid "Activity Likes Logs"
|
|
235 |
msgstr "Evenementen likes log"
|
236 |
|
237 |
#: ../admin/admin.php:171 ../admin/logs.php:509 ../admin/stats.php:45
|
238 |
-
#, fuzzy
|
239 |
msgid "Topics Likes Logs"
|
240 |
-
msgstr "
|
241 |
|
242 |
#: ../admin/classes/class-settings.php:17
|
243 |
msgid "Custom Settings"
|
@@ -252,9 +249,8 @@ msgid "Reset Settings"
|
|
252 |
msgstr "Instellingen resetten"
|
253 |
|
254 |
#: ../admin/classes/class-settings.php:44
|
255 |
-
#, fuzzy
|
256 |
msgid "Similar Settings"
|
257 |
-
msgstr "
|
258 |
|
259 |
#: ../admin/classes/class-settings.php:48
|
260 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
@@ -298,7 +294,7 @@ msgstr ""
|
|
298 |
|
299 |
#: ../admin/classes/class-settings.php:57
|
300 |
msgid "Template Variables"
|
301 |
-
msgstr ""
|
302 |
|
303 |
#: ../admin/classes/class-settings.php:59
|
304 |
msgid "Start the loop of logs"
|
@@ -536,7 +532,7 @@ msgstr ""
|
|
536 |
|
537 |
#: ../admin/classes/class-widget.php:288
|
538 |
msgid "Simple"
|
539 |
-
msgstr ""
|
540 |
|
541 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
542 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
@@ -553,9 +549,8 @@ msgid "Number of items to show:"
|
|
553 |
msgstr ""
|
554 |
|
555 |
#: ../admin/classes/class-widget.php:306
|
556 |
-
#, fuzzy
|
557 |
msgid "Thumbnail/Avatar size:"
|
558 |
-
msgstr "
|
559 |
|
560 |
#: ../admin/classes/class-widget.php:312
|
561 |
msgid "Profile URL:"
|
@@ -855,9 +850,8 @@ msgid "Loading Animation"
|
|
855 |
msgstr "Animatie laden"
|
856 |
|
857 |
#: ../admin/classes/tmp/settings.php:314
|
858 |
-
#, fuzzy
|
859 |
msgid "Custom CSS"
|
860 |
-
msgstr "
|
861 |
|
862 |
#: ../admin/classes/tmp/settings.php:348
|
863 |
msgid "Activity Content"
|
@@ -881,10 +875,8 @@ msgid "insert new likes in buddyPress activity page"
|
|
881 |
msgstr "nieuwe likes toevoegen aan buddyprefs activiteiten pagina"
|
882 |
|
883 |
#: ../admin/classes/tmp/settings.php:469
|
884 |
-
#, fuzzy
|
885 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
886 |
msgstr ""
|
887 |
-
"<strong>Alleen</strong> geregistreerde gebruikers mogen deze post likes."
|
888 |
|
889 |
#: ../admin/classes/tmp/settings.php:504
|
890 |
msgid "Users who have liked this topic:"
|
@@ -985,9 +977,8 @@ msgid "Topic ID"
|
|
985 |
msgstr ""
|
986 |
|
987 |
#: ../admin/logs.php:523
|
988 |
-
#, fuzzy
|
989 |
msgid "Topic Title"
|
990 |
-
msgstr "
|
991 |
|
992 |
#: ../admin/stats.php:30
|
993 |
msgid "Welcome to WP ULike Statistics!"
|
@@ -1055,7 +1046,7 @@ msgstr "Gisteren"
|
|
1055 |
|
1056 |
#: ../admin/stats.php:148
|
1057 |
msgid "Week"
|
1058 |
-
msgstr ""
|
1059 |
|
1060 |
#: ../admin/stats.php:153
|
1061 |
msgid "Month"
|
@@ -1066,9 +1057,8 @@ msgid "Total"
|
|
1066 |
msgstr "Totaal"
|
1067 |
|
1068 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
1069 |
-
#, fuzzy
|
1070 |
msgid "Top Likers"
|
1071 |
-
msgstr "
|
1072 |
|
1073 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1074 |
#: ../admin/stats.php:245
|
@@ -1094,9 +1084,8 @@ msgid "Activities Likes Stats"
|
|
1094 |
msgstr ""
|
1095 |
|
1096 |
#: ../admin/stats.php:246 ../admin/stats.php:348
|
1097 |
-
#, fuzzy
|
1098 |
msgid "Topics Likes Stats"
|
1099 |
-
msgstr "
|
1100 |
|
1101 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1102 |
msgid "Likes Percent"
|
@@ -1120,7 +1109,7 @@ msgstr ""
|
|
1120 |
|
1121 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1122 |
msgid "Limit"
|
1123 |
-
msgstr ""
|
1124 |
|
1125 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1126 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
@@ -1154,9 +1143,8 @@ msgid "Liking Content"
|
|
1154 |
msgstr ""
|
1155 |
|
1156 |
#: ../inc/wp-functions.php:312
|
1157 |
-
#, fuzzy
|
1158 |
msgid "Liked Content"
|
1159 |
-
msgstr "
|
1160 |
|
1161 |
#: ../inc/wp-functions.php:313
|
1162 |
msgid "Unliking Content"
|
@@ -1167,14 +1155,12 @@ msgid "Unliked Content"
|
|
1167 |
msgstr ""
|
1168 |
|
1169 |
#: ../inc/wp-functions.php:336 ../inc/wp-functions.php:370
|
1170 |
-
#, fuzzy
|
1171 |
msgid "Recent Posts Liked"
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
#: ../inc/wp-functions.php:341 ../inc/wp-functions.php:410
|
1175 |
-
#, fuzzy
|
1176 |
msgid "Recent Comments Liked"
|
1177 |
-
msgstr "
|
1178 |
|
1179 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1180 |
msgid "This user has not made any likes."
|
@@ -1306,42 +1292,13 @@ msgid "Error: This Method Is Not Exist!"
|
|
1306 |
msgstr ""
|
1307 |
|
1308 |
#: ../wp-ulike.php:124
|
1309 |
-
#, fuzzy
|
1310 |
msgid "Settings"
|
1311 |
-
msgstr "
|
1312 |
|
1313 |
#: ../wp-ulike.php:125
|
1314 |
-
#, fuzzy
|
1315 |
msgid "Statistics"
|
1316 |
-
msgstr "
|
1317 |
|
1318 |
#: ../wp-ulike.php:126
|
1319 |
msgid "About"
|
1320 |
-
msgstr ""
|
1321 |
-
|
1322 |
-
#~ msgid "Novelty Of WP ULike"
|
1323 |
-
#~ msgstr "Nieuw in WP ULike"
|
1324 |
-
|
1325 |
-
#~ msgid "New setting panel"
|
1326 |
-
#~ msgstr "Nieuw configuratiescherm"
|
1327 |
-
|
1328 |
-
#~ msgid "Better coding on plugin files"
|
1329 |
-
#~ msgstr "Betere code in de plugin"
|
1330 |
-
|
1331 |
-
#~ msgid "Buddypress likes support"
|
1332 |
-
#~ msgstr "Buddypress Like ondersteuning"
|
1333 |
-
|
1334 |
-
#~ msgid "Likes logs support"
|
1335 |
-
#~ msgstr "Ondersteuning voor likes logs"
|
1336 |
-
|
1337 |
-
#~ msgid "Overview"
|
1338 |
-
#~ msgstr "Overzicht"
|
1339 |
-
|
1340 |
-
#~ msgid "Text After Like"
|
1341 |
-
#~ msgstr "Tekst na like"
|
1342 |
-
|
1343 |
-
#~ msgid "Like Me Again!"
|
1344 |
-
#~ msgstr "Like me opnieuw!"
|
1345 |
-
|
1346 |
-
#~ msgid "Text After Unlike"
|
1347 |
-
#~ msgstr "Tekst na unlike"
|
1 |
+
# Copyright (C) 2015 WP ULike
|
2 |
+
# This file is distributed under the same license as the WP ULike package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: WP ULike\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-ulike\n"
|
8 |
+
"POT-Creation-Date: 2015-05-21 11:36+0330\n"
|
9 |
+
"PO-Revision-Date: 2017-01-20 21:22+0330\n"
|
10 |
+
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
11 |
+
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/wp-translations/"
|
12 |
+
"wp-ulike/language/nl_NL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: nl_NL\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
63 |
msgstr "Beoordelingen"
|
64 |
|
65 |
#: ../admin/about.php:125
|
|
|
66 |
msgid "Introducing WP ULike"
|
67 |
+
msgstr ""
|
68 |
|
69 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
70 |
msgid "About WP ULike"
|
81 |
"reacties en BuddyPress activiteiten."
|
82 |
|
83 |
#: ../admin/about.php:155
|
|
|
84 |
msgid "WP Ulike Extension"
|
85 |
+
msgstr ""
|
86 |
|
87 |
#: ../admin/about.php:156
|
88 |
msgid ""
|
121 |
msgstr ""
|
122 |
|
123 |
#: ../admin/about.php:195
|
|
|
124 |
msgid "myCRED Points Support"
|
125 |
+
msgstr ""
|
126 |
|
127 |
#: ../admin/about.php:196
|
128 |
msgid ""
|
233 |
msgstr "Evenementen likes log"
|
234 |
|
235 |
#: ../admin/admin.php:171 ../admin/logs.php:509 ../admin/stats.php:45
|
|
|
236 |
msgid "Topics Likes Logs"
|
237 |
+
msgstr ""
|
238 |
|
239 |
#: ../admin/classes/class-settings.php:17
|
240 |
msgid "Custom Settings"
|
249 |
msgstr "Instellingen resetten"
|
250 |
|
251 |
#: ../admin/classes/class-settings.php:44
|
|
|
252 |
msgid "Similar Settings"
|
253 |
+
msgstr ""
|
254 |
|
255 |
#: ../admin/classes/class-settings.php:48
|
256 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
294 |
|
295 |
#: ../admin/classes/class-settings.php:57
|
296 |
msgid "Template Variables"
|
297 |
+
msgstr "Sjabloon Variabelen"
|
298 |
|
299 |
#: ../admin/classes/class-settings.php:59
|
300 |
msgid "Start the loop of logs"
|
532 |
|
533 |
#: ../admin/classes/class-widget.php:288
|
534 |
msgid "Simple"
|
535 |
+
msgstr "Simpel"
|
536 |
|
537 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
538 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
549 |
msgstr ""
|
550 |
|
551 |
#: ../admin/classes/class-widget.php:306
|
|
|
552 |
msgid "Thumbnail/Avatar size:"
|
553 |
+
msgstr ""
|
554 |
|
555 |
#: ../admin/classes/class-widget.php:312
|
556 |
msgid "Profile URL:"
|
850 |
msgstr "Animatie laden"
|
851 |
|
852 |
#: ../admin/classes/tmp/settings.php:314
|
|
|
853 |
msgid "Custom CSS"
|
854 |
+
msgstr "Aangepast CSS"
|
855 |
|
856 |
#: ../admin/classes/tmp/settings.php:348
|
857 |
msgid "Activity Content"
|
875 |
msgstr "nieuwe likes toevoegen aan buddyprefs activiteiten pagina"
|
876 |
|
877 |
#: ../admin/classes/tmp/settings.php:469
|
|
|
878 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
879 |
msgstr ""
|
|
|
880 |
|
881 |
#: ../admin/classes/tmp/settings.php:504
|
882 |
msgid "Users who have liked this topic:"
|
977 |
msgstr ""
|
978 |
|
979 |
#: ../admin/logs.php:523
|
|
|
980 |
msgid "Topic Title"
|
981 |
+
msgstr ""
|
982 |
|
983 |
#: ../admin/stats.php:30
|
984 |
msgid "Welcome to WP ULike Statistics!"
|
1046 |
|
1047 |
#: ../admin/stats.php:148
|
1048 |
msgid "Week"
|
1049 |
+
msgstr "Week"
|
1050 |
|
1051 |
#: ../admin/stats.php:153
|
1052 |
msgid "Month"
|
1057 |
msgstr "Totaal"
|
1058 |
|
1059 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
|
|
1060 |
msgid "Top Likers"
|
1061 |
+
msgstr ""
|
1062 |
|
1063 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1064 |
#: ../admin/stats.php:245
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: ../admin/stats.php:246 ../admin/stats.php:348
|
|
|
1087 |
msgid "Topics Likes Stats"
|
1088 |
+
msgstr ""
|
1089 |
|
1090 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1091 |
msgid "Likes Percent"
|
1109 |
|
1110 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1111 |
msgid "Limit"
|
1112 |
+
msgstr "Limiet"
|
1113 |
|
1114 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1115 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
1143 |
msgstr ""
|
1144 |
|
1145 |
#: ../inc/wp-functions.php:312
|
|
|
1146 |
msgid "Liked Content"
|
1147 |
+
msgstr ""
|
1148 |
|
1149 |
#: ../inc/wp-functions.php:313
|
1150 |
msgid "Unliking Content"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: ../inc/wp-functions.php:336 ../inc/wp-functions.php:370
|
|
|
1158 |
msgid "Recent Posts Liked"
|
1159 |
+
msgstr ""
|
1160 |
|
1161 |
#: ../inc/wp-functions.php:341 ../inc/wp-functions.php:410
|
|
|
1162 |
msgid "Recent Comments Liked"
|
1163 |
+
msgstr ""
|
1164 |
|
1165 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1166 |
msgid "This user has not made any likes."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: ../wp-ulike.php:124
|
|
|
1295 |
msgid "Settings"
|
1296 |
+
msgstr "Settings"
|
1297 |
|
1298 |
#: ../wp-ulike.php:125
|
|
|
1299 |
msgid "Statistics"
|
1300 |
+
msgstr "Statistieken"
|
1301 |
|
1302 |
#: ../wp-ulike.php:126
|
1303 |
msgid "About"
|
1304 |
+
msgstr "Over"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/wp-ulike-pt_PT.mo
CHANGED
Binary file
|
lang/wp-ulike-pt_PT.po
CHANGED
@@ -1,38 +1,43 @@
|
|
1 |
-
#
|
|
|
2 |
# Translators:
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _e
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
23 |
#: ../admin/about.php:107
|
24 |
msgid "Welcome to WP ULike"
|
25 |
-
msgstr ""
|
26 |
|
27 |
#: ../admin/about.php:109
|
28 |
msgid ""
|
29 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
30 |
"powerful version yet."
|
31 |
msgstr ""
|
|
|
|
|
32 |
|
33 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
34 |
msgid "Visit our homepage"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: ../admin/about.php:112
|
38 |
msgid "Version"
|
@@ -40,7 +45,7 @@ msgstr "Versão"
|
|
40 |
|
41 |
#: ../admin/about.php:115
|
42 |
msgid "Getting Started"
|
43 |
-
msgstr ""
|
44 |
|
45 |
#: ../admin/about.php:116
|
46 |
msgid "Credits"
|
@@ -54,19 +59,19 @@ msgstr "Suporte"
|
|
54 |
#: ../admin/about.php:118 ../admin/classes/class-settings.php:111
|
55 |
#: ../admin/stats.php:52
|
56 |
msgid "FAQ"
|
57 |
-
msgstr "
|
58 |
|
59 |
#: ../admin/about.php:119
|
60 |
msgid "Reviews"
|
61 |
-
msgstr ""
|
62 |
|
63 |
#: ../admin/about.php:125
|
64 |
msgid "Introducing WP ULike"
|
65 |
-
msgstr ""
|
66 |
|
67 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
68 |
msgid "About WP ULike"
|
69 |
-
msgstr ""
|
70 |
|
71 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
72 |
msgid ""
|
@@ -75,30 +80,36 @@ msgid ""
|
|
75 |
"comments AND buddypress activities. Its very simple to use and supports many "
|
76 |
"options."
|
77 |
msgstr ""
|
|
|
|
|
|
|
|
|
78 |
|
79 |
#: ../admin/about.php:155
|
80 |
msgid "WP Ulike Extension"
|
81 |
-
msgstr ""
|
82 |
|
83 |
#: ../admin/about.php:156
|
84 |
msgid ""
|
85 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
86 |
"activities & bbPress Topics."
|
87 |
msgstr ""
|
|
|
|
|
88 |
|
89 |
#: ../admin/about.php:165
|
90 |
msgid "Added More Than 20 Language Files"
|
91 |
-
msgstr ""
|
92 |
|
93 |
#: ../admin/about.php:166
|
94 |
msgid ""
|
95 |
"WP ULike is already translated into +20 languages, with more always in "
|
96 |
"progress."
|
97 |
-
msgstr ""
|
98 |
|
99 |
#: ../admin/about.php:175
|
100 |
msgid "User Profile Links"
|
101 |
-
msgstr ""
|
102 |
|
103 |
#: ../admin/about.php:176
|
104 |
msgid ""
|
@@ -108,7 +119,7 @@ msgstr ""
|
|
108 |
|
109 |
#: ../admin/about.php:185
|
110 |
msgid "New Themes And Styles"
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: ../admin/about.php:186
|
114 |
msgid ""
|
@@ -128,7 +139,7 @@ msgstr ""
|
|
128 |
|
129 |
#: ../admin/about.php:205 ../admin/stats.php:175 ../admin/stats.php:350
|
130 |
msgid "Likers World Map"
|
131 |
-
msgstr ""
|
132 |
|
133 |
#: ../admin/about.php:206
|
134 |
msgid ""
|
@@ -138,7 +149,7 @@ msgstr ""
|
|
138 |
|
139 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
140 |
msgid "WP ULike Statistics"
|
141 |
-
msgstr ""
|
142 |
|
143 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
144 |
msgid "Home"
|
@@ -146,23 +157,23 @@ msgstr "Início"
|
|
146 |
|
147 |
#: ../admin/about.php:216
|
148 |
msgid "OR"
|
149 |
-
msgstr ""
|
150 |
|
151 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
152 |
msgid "WP ULike Settings"
|
153 |
-
msgstr ""
|
154 |
|
155 |
#: ../admin/about.php:222
|
156 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
157 |
-
msgstr ""
|
158 |
|
159 |
#: ../admin/about.php:223
|
160 |
msgid "Project Leaders"
|
161 |
-
msgstr "
|
162 |
|
163 |
#: ../admin/about.php:228
|
164 |
msgid "Project Lead & Developer"
|
165 |
-
msgstr ""
|
166 |
|
167 |
#: ../admin/about.php:232
|
168 |
msgid "Translations"
|
@@ -170,19 +181,19 @@ msgstr "Traduções"
|
|
170 |
|
171 |
#: ../admin/about.php:271
|
172 |
msgid "Would you like to help translate the plugin into more languages?"
|
173 |
-
msgstr ""
|
174 |
|
175 |
#: ../admin/about.php:271
|
176 |
msgid "Join our WP-Translations Community"
|
177 |
-
msgstr ""
|
178 |
|
179 |
#: ../admin/about.php:273
|
180 |
msgid "Other Plugins"
|
181 |
-
msgstr ""
|
182 |
|
183 |
#: ../admin/about.php:292
|
184 |
msgid "Like this plugin?"
|
185 |
-
msgstr ""
|
186 |
|
187 |
#: ../admin/about.php:293
|
188 |
msgid ""
|
@@ -200,11 +211,11 @@ msgstr ""
|
|
200 |
|
201 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
202 |
msgid "WP ULike"
|
203 |
-
msgstr ""
|
204 |
|
205 |
#: ../admin/admin.php:83
|
206 |
msgid "Settings saved."
|
207 |
-
msgstr "Definições guardadas"
|
208 |
|
209 |
#: ../admin/admin.php:113 ../admin/admin.php:141
|
210 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
@@ -216,7 +227,7 @@ msgstr ""
|
|
216 |
|
217 |
#: ../admin/admin.php:159 ../admin/logs.php:139 ../admin/stats.php:42
|
218 |
msgid "Post Likes Logs"
|
219 |
-
msgstr ""
|
220 |
|
221 |
#: ../admin/admin.php:163 ../admin/logs.php:260 ../admin/stats.php:43
|
222 |
msgid "Comment Likes Logs"
|
@@ -232,25 +243,25 @@ msgstr ""
|
|
232 |
|
233 |
#: ../admin/classes/class-settings.php:17
|
234 |
msgid "Custom Settings"
|
235 |
-
msgstr ""
|
236 |
|
237 |
#: ../admin/classes/class-settings.php:28 ../admin/stats.php:355
|
238 |
msgid "Save Settings"
|
239 |
-
msgstr ""
|
240 |
|
241 |
#: ../admin/classes/class-settings.php:29
|
242 |
msgid "Reset Settings"
|
243 |
-
msgstr ""
|
244 |
|
245 |
#: ../admin/classes/class-settings.php:44
|
246 |
msgid "Similar Settings"
|
247 |
-
msgstr ""
|
248 |
|
249 |
#: ../admin/classes/class-settings.php:48
|
250 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
251 |
#: ../admin/classes/tmp/settings.php:362 ../admin/classes/tmp/settings.php:474
|
252 |
msgid "Logging Method"
|
253 |
-
msgstr ""
|
254 |
|
255 |
#: ../admin/classes/class-settings.php:50
|
256 |
msgid ""
|
@@ -288,16 +299,16 @@ msgstr ""
|
|
288 |
|
289 |
#: ../admin/classes/class-settings.php:57
|
290 |
msgid "Template Variables"
|
291 |
-
msgstr ""
|
292 |
|
293 |
#: ../admin/classes/class-settings.php:59
|
294 |
msgid "Start the loop of logs"
|
295 |
-
msgstr ""
|
296 |
|
297 |
#: ../admin/classes/class-settings.php:59
|
298 |
#: ../admin/classes/class-settings.php:60
|
299 |
msgid "required"
|
300 |
-
msgstr ""
|
301 |
|
302 |
#: ../admin/classes/class-settings.php:60
|
303 |
msgid "End of the while loop"
|
@@ -323,20 +334,20 @@ msgstr ""
|
|
323 |
|
324 |
#: ../admin/classes/class-settings.php:66
|
325 |
msgid "Display the permalink"
|
326 |
-
msgstr ""
|
327 |
|
328 |
#: ../admin/classes/class-settings.php:67
|
329 |
#: ../admin/classes/class-settings.php:71
|
330 |
msgid "Display the likes count number"
|
331 |
-
msgstr ""
|
332 |
|
333 |
#: ../admin/classes/class-settings.php:68
|
334 |
msgid "Display the post title"
|
335 |
-
msgstr ""
|
336 |
|
337 |
#: ../admin/classes/class-settings.php:70
|
338 |
msgid "Display the comment author name"
|
339 |
-
msgstr ""
|
340 |
|
341 |
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:72
|
342 |
msgid "Posts"
|
@@ -349,7 +360,7 @@ msgstr "Artigos"
|
|
349 |
#: ../admin/classes/tmp/settings.php:86 ../admin/classes/tmp/settings.php:192
|
350 |
#: ../admin/classes/tmp/settings.php:340 ../admin/classes/tmp/settings.php:452
|
351 |
msgid "Automatic display"
|
352 |
-
msgstr ""
|
353 |
|
354 |
#: ../admin/classes/class-settings.php:81
|
355 |
msgid ""
|
@@ -371,12 +382,12 @@ msgstr ""
|
|
371 |
#: ../admin/classes/class-settings.php:98
|
372 |
#: ../admin/classes/class-settings.php:106
|
373 |
msgid "Default Template:"
|
374 |
-
msgstr ""
|
375 |
|
376 |
#: ../admin/classes/class-settings.php:81
|
377 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
378 |
msgid "Users who have LIKED this post:"
|
379 |
-
msgstr ""
|
380 |
|
381 |
#: ../admin/classes/class-settings.php:88
|
382 |
#: ../admin/classes/tmp/settings.php:178
|
@@ -415,7 +426,7 @@ msgstr ""
|
|
415 |
#: ../admin/classes/class-settings.php:98
|
416 |
#: ../admin/classes/tmp/settings.php:406
|
417 |
msgid "Post Activity Text"
|
418 |
-
msgstr ""
|
419 |
|
420 |
#: ../admin/classes/class-settings.php:98
|
421 |
#: ../admin/classes/tmp/settings.php:412
|
@@ -425,7 +436,7 @@ msgstr ""
|
|
425 |
#: ../admin/classes/class-settings.php:104
|
426 |
#: ../admin/classes/tmp/settings.php:438
|
427 |
msgid "bbPress"
|
428 |
-
msgstr ""
|
429 |
|
430 |
#: ../admin/classes/class-settings.php:111
|
431 |
msgid "For more information:"
|
@@ -444,25 +455,25 @@ msgstr ""
|
|
444 |
#: ../admin/classes/class-settings.php:323
|
445 |
#: ../admin/classes/class-settings.php:347
|
446 |
msgid "No options defined."
|
447 |
-
msgstr ""
|
448 |
|
449 |
#: ../admin/classes/class-settings.php:334
|
450 |
#, php-format
|
451 |
msgid "Select %s"
|
452 |
-
msgstr "
|
453 |
|
454 |
#: ../admin/classes/class-settings.php:335
|
455 |
#, php-format
|
456 |
msgid "Remove %s"
|
457 |
-
msgstr ""
|
458 |
|
459 |
#: ../admin/classes/class-settings.php:359
|
460 |
msgid "No action defined."
|
461 |
-
msgstr ""
|
462 |
|
463 |
#: ../admin/classes/class-widget.php:11
|
464 |
msgid "WP Ulike Widget"
|
465 |
-
msgstr ""
|
466 |
|
467 |
#: ../admin/classes/class-widget.php:12
|
468 |
msgid ""
|
@@ -471,7 +482,7 @@ msgstr ""
|
|
471 |
|
472 |
#: ../admin/classes/class-widget.php:79
|
473 |
msgid "you haven't liked any post yet!"
|
474 |
-
msgstr ""
|
475 |
|
476 |
#: ../admin/classes/class-widget.php:126
|
477 |
msgid "on"
|
@@ -481,7 +492,7 @@ msgstr "on"
|
|
481 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
482 |
#: ../admin/stats.php:205
|
483 |
msgid "Like"
|
484 |
-
msgstr ""
|
485 |
|
486 |
#: ../admin/classes/class-widget.php:266
|
487 |
msgid "Most Liked"
|
@@ -493,11 +504,11 @@ msgstr "Título:"
|
|
493 |
|
494 |
#: ../admin/classes/class-widget.php:275
|
495 |
msgid "Type:"
|
496 |
-
msgstr ""
|
497 |
|
498 |
#: ../admin/classes/class-widget.php:277 ../inc/wp-strings.php:26
|
499 |
msgid "Most Liked Posts"
|
500 |
-
msgstr ""
|
501 |
|
502 |
#: ../admin/classes/class-widget.php:278 ../inc/wp-strings.php:27
|
503 |
msgid "Most Liked Comments"
|
@@ -513,15 +524,15 @@ msgstr ""
|
|
513 |
|
514 |
#: ../admin/classes/class-widget.php:281
|
515 |
msgid "Last Posts Liked By User"
|
516 |
-
msgstr ""
|
517 |
|
518 |
#: ../admin/classes/class-widget.php:286
|
519 |
msgid "Style:"
|
520 |
-
msgstr ""
|
521 |
|
522 |
#: ../admin/classes/class-widget.php:288
|
523 |
msgid "Simple"
|
524 |
-
msgstr ""
|
525 |
|
526 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
527 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
@@ -543,7 +554,7 @@ msgstr ""
|
|
543 |
|
544 |
#: ../admin/classes/class-widget.php:312
|
545 |
msgid "Profile URL:"
|
546 |
-
msgstr ""
|
547 |
|
548 |
#: ../admin/classes/class-widget.php:315
|
549 |
msgid "UltimateMember"
|
@@ -563,11 +574,11 @@ msgstr "Geral"
|
|
563 |
|
564 |
#: ../admin/classes/tmp/settings.php:15
|
565 |
msgid "Button Type"
|
566 |
-
msgstr ""
|
567 |
|
568 |
#: ../admin/classes/tmp/settings.php:18
|
569 |
msgid "Icon"
|
570 |
-
msgstr ""
|
571 |
|
572 |
#: ../admin/classes/tmp/settings.php:19
|
573 |
msgid "Text"
|
@@ -575,25 +586,25 @@ msgstr "Texto"
|
|
575 |
|
576 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
577 |
msgid "Button Text"
|
578 |
-
msgstr ""
|
579 |
|
580 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
581 |
#: ../admin/classes/tmp/settings.php:37
|
582 |
msgid "Unlike"
|
583 |
-
msgstr ""
|
584 |
|
585 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
586 |
msgid "Button Icon"
|
587 |
-
msgstr ""
|
588 |
|
589 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
590 |
#: ../admin/classes/tmp/settings.php:310
|
591 |
msgid "Best size: 16x16"
|
592 |
-
msgstr ""
|
593 |
|
594 |
#: ../admin/classes/tmp/settings.php:41
|
595 |
msgid "You have not permission to unlike"
|
596 |
-
msgstr ""
|
597 |
|
598 |
#: ../admin/classes/tmp/settings.php:42
|
599 |
msgid "Permission Text"
|
@@ -605,15 +616,15 @@ msgstr ""
|
|
605 |
|
606 |
#: ../admin/classes/tmp/settings.php:49
|
607 |
msgid "Alert Box"
|
608 |
-
msgstr ""
|
609 |
|
610 |
#: ../admin/classes/tmp/settings.php:50
|
611 |
msgid "Like Button"
|
612 |
-
msgstr "Botão de
|
613 |
|
614 |
#: ../admin/classes/tmp/settings.php:54
|
615 |
msgid "You Should Login To Submit Your Like"
|
616 |
-
msgstr ""
|
617 |
|
618 |
#: ../admin/classes/tmp/settings.php:55
|
619 |
msgid "Users Login Text"
|
@@ -648,7 +659,7 @@ msgstr "Temas"
|
|
648 |
#: ../admin/classes/tmp/settings.php:333 ../admin/classes/tmp/settings.php:445
|
649 |
#: ../inc/wp-strings.php:25
|
650 |
msgid "Default"
|
651 |
-
msgstr "
|
652 |
|
653 |
#: ../admin/classes/tmp/settings.php:91 ../admin/classes/tmp/settings.php:197
|
654 |
#: ../admin/classes/tmp/settings.php:345 ../admin/classes/tmp/settings.php:457
|
@@ -667,7 +678,7 @@ msgstr ""
|
|
667 |
|
668 |
#: ../admin/classes/tmp/settings.php:96 ../admin/classes/tmp/settings.php:202
|
669 |
msgid "Top and Bottom"
|
670 |
-
msgstr ""
|
671 |
|
672 |
#: ../admin/classes/tmp/settings.php:101
|
673 |
msgid "Auto Display Filter"
|
@@ -675,7 +686,7 @@ msgstr ""
|
|
675 |
|
676 |
#: ../admin/classes/tmp/settings.php:104
|
677 |
msgid "Single Posts"
|
678 |
-
msgstr ""
|
679 |
|
680 |
#: ../admin/classes/tmp/settings.php:105
|
681 |
msgid "Pages"
|
@@ -683,7 +694,7 @@ msgstr "Páginas"
|
|
683 |
|
684 |
#: ../admin/classes/tmp/settings.php:106
|
685 |
msgid "Archives"
|
686 |
-
msgstr "
|
687 |
|
688 |
#: ../admin/classes/tmp/settings.php:107
|
689 |
msgid "Categories"
|
@@ -691,7 +702,7 @@ msgstr "Categorias"
|
|
691 |
|
692 |
#: ../admin/classes/tmp/settings.php:108
|
693 |
msgid "Search Results"
|
694 |
-
msgstr "Resultados
|
695 |
|
696 |
#: ../admin/classes/tmp/settings.php:109
|
697 |
msgid "Tags"
|
@@ -699,25 +710,27 @@ msgstr "Etiquetas"
|
|
699 |
|
700 |
#: ../admin/classes/tmp/settings.php:110
|
701 |
msgid "Author Page"
|
702 |
-
msgstr ""
|
703 |
|
704 |
#: ../admin/classes/tmp/settings.php:112
|
705 |
msgid "You can filter theses pages on auto display option."
|
706 |
-
msgstr ""
|
707 |
|
708 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
709 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
710 |
msgid "Only registered Users"
|
711 |
-
msgstr ""
|
712 |
|
713 |
#: ../admin/classes/tmp/settings.php:119
|
714 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
715 |
msgstr ""
|
|
|
|
|
716 |
|
717 |
#: ../admin/classes/tmp/settings.php:126 ../admin/classes/tmp/settings.php:217
|
718 |
#: ../admin/classes/tmp/settings.php:364 ../admin/classes/tmp/settings.php:476
|
719 |
msgid "Do Not Log"
|
720 |
-
msgstr ""
|
721 |
|
722 |
#: ../admin/classes/tmp/settings.php:127 ../admin/classes/tmp/settings.php:218
|
723 |
#: ../admin/classes/tmp/settings.php:365 ../admin/classes/tmp/settings.php:477
|
@@ -753,7 +766,7 @@ msgstr ""
|
|
753 |
#: ../admin/classes/tmp/settings.php:143 ../admin/classes/tmp/settings.php:234
|
754 |
#: ../admin/classes/tmp/settings.php:381 ../admin/classes/tmp/settings.php:493
|
755 |
msgid "Size of Gravatars"
|
756 |
-
msgstr ""
|
757 |
|
758 |
#: ../admin/classes/tmp/settings.php:144 ../admin/classes/tmp/settings.php:235
|
759 |
#: ../admin/classes/tmp/settings.php:382 ../admin/classes/tmp/settings.php:494
|
@@ -763,7 +776,7 @@ msgstr ""
|
|
763 |
#: ../admin/classes/tmp/settings.php:149 ../admin/classes/tmp/settings.php:240
|
764 |
#: ../admin/classes/tmp/settings.php:387 ../admin/classes/tmp/settings.php:499
|
765 |
msgid "Number Of The Users"
|
766 |
-
msgstr ""
|
767 |
|
768 |
#: ../admin/classes/tmp/settings.php:150 ../admin/classes/tmp/settings.php:241
|
769 |
#: ../admin/classes/tmp/settings.php:388 ../admin/classes/tmp/settings.php:500
|
@@ -774,12 +787,12 @@ msgstr ""
|
|
774 |
#: ../admin/classes/tmp/settings.php:394 ../admin/classes/tmp/settings.php:407
|
775 |
#: ../admin/classes/tmp/settings.php:413 ../admin/classes/tmp/settings.php:506
|
776 |
msgid "Allowed Variables:"
|
777 |
-
msgstr ""
|
778 |
|
779 |
#: ../admin/classes/tmp/settings.php:160 ../admin/classes/tmp/settings.php:251
|
780 |
#: ../admin/classes/tmp/settings.php:417 ../admin/classes/tmp/settings.php:510
|
781 |
msgid "Delete All Logs"
|
782 |
-
msgstr ""
|
783 |
|
784 |
#: ../admin/classes/tmp/settings.php:161 ../admin/classes/tmp/settings.php:252
|
785 |
#: ../admin/classes/tmp/settings.php:418 ../admin/classes/tmp/settings.php:511
|
@@ -789,7 +802,7 @@ msgstr ""
|
|
789 |
#: ../admin/classes/tmp/settings.php:166 ../admin/classes/tmp/settings.php:257
|
790 |
#: ../admin/classes/tmp/settings.php:423 ../admin/classes/tmp/settings.php:516
|
791 |
msgid "Delete All Data"
|
792 |
-
msgstr ""
|
793 |
|
794 |
#: ../admin/classes/tmp/settings.php:167 ../admin/classes/tmp/settings.php:258
|
795 |
#: ../admin/classes/tmp/settings.php:424 ../admin/classes/tmp/settings.php:517
|
@@ -807,7 +820,7 @@ msgstr "Personalizar"
|
|
807 |
|
808 |
#: ../admin/classes/tmp/settings.php:274
|
809 |
msgid "Custom Style"
|
810 |
-
msgstr ""
|
811 |
|
812 |
#: ../admin/classes/tmp/settings.php:279
|
813 |
msgid "Active this option to see the custom style settings."
|
@@ -823,11 +836,11 @@ msgstr "Fundo"
|
|
823 |
|
824 |
#: ../admin/classes/tmp/settings.php:288 ../admin/classes/tmp/settings.php:301
|
825 |
msgid "Border Color"
|
826 |
-
msgstr ""
|
827 |
|
828 |
#: ../admin/classes/tmp/settings.php:292 ../admin/classes/tmp/settings.php:305
|
829 |
msgid "Text Color"
|
830 |
-
msgstr "Cor do
|
831 |
|
832 |
#: ../admin/classes/tmp/settings.php:296
|
833 |
msgid "Counter Style"
|
@@ -835,29 +848,30 @@ msgstr ""
|
|
835 |
|
836 |
#: ../admin/classes/tmp/settings.php:309
|
837 |
msgid "Loading Animation"
|
838 |
-
msgstr ""
|
839 |
|
840 |
#: ../admin/classes/tmp/settings.php:314
|
841 |
-
#, fuzzy
|
842 |
msgid "Custom CSS"
|
843 |
-
msgstr "Personalizar"
|
844 |
|
845 |
#: ../admin/classes/tmp/settings.php:348
|
846 |
msgid "Activity Content"
|
847 |
-
msgstr ""
|
848 |
|
849 |
#: ../admin/classes/tmp/settings.php:349
|
850 |
msgid "Activity Meta"
|
851 |
-
msgstr ""
|
852 |
|
853 |
#: ../admin/classes/tmp/settings.php:357
|
854 |
msgid ""
|
855 |
"<strong>Only</strong> registered users have permission to like activities."
|
856 |
msgstr ""
|
|
|
|
|
857 |
|
858 |
#: ../admin/classes/tmp/settings.php:399
|
859 |
msgid "BuddyPress Activity"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: ../admin/classes/tmp/settings.php:401
|
863 |
msgid "insert new likes in buddyPress activity page"
|
@@ -866,6 +880,8 @@ msgstr ""
|
|
866 |
#: ../admin/classes/tmp/settings.php:469
|
867 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
868 |
msgstr ""
|
|
|
|
|
869 |
|
870 |
#: ../admin/classes/tmp/settings.php:504
|
871 |
msgid "Users who have liked this topic:"
|
@@ -884,7 +900,7 @@ msgstr ""
|
|
884 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
885 |
#: ../admin/logs.php:508
|
886 |
msgid "WP ULike Logs"
|
887 |
-
msgstr ""
|
888 |
|
889 |
#: ../admin/logs.php:149 ../admin/logs.php:270 ../admin/logs.php:397
|
890 |
#: ../admin/logs.php:519
|
@@ -903,21 +919,21 @@ msgstr "Estado"
|
|
903 |
|
904 |
#: ../admin/logs.php:152
|
905 |
msgid "Post ID"
|
906 |
-
msgstr ""
|
907 |
|
908 |
#: ../admin/logs.php:153
|
909 |
msgid "Post Title"
|
910 |
-
msgstr ""
|
911 |
|
912 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
913 |
#: ../admin/logs.php:524
|
914 |
msgid "Date / Time"
|
915 |
-
msgstr ""
|
916 |
|
917 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
918 |
#: ../admin/logs.php:525
|
919 |
msgid "IP"
|
920 |
-
msgstr ""
|
921 |
|
922 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
923 |
#: ../admin/logs.php:526
|
@@ -927,7 +943,7 @@ msgstr "Ações"
|
|
927 |
#: ../admin/logs.php:174 ../admin/logs.php:296 ../admin/logs.php:422
|
928 |
#: ../admin/logs.php:544 ../admin/stats.php:198
|
929 |
msgid "Guest User"
|
930 |
-
msgstr ""
|
931 |
|
932 |
#: ../admin/logs.php:219 ../admin/logs.php:345 ../admin/logs.php:468
|
933 |
#: ../admin/logs.php:590
|
@@ -938,32 +954,32 @@ msgstr ""
|
|
938 |
|
939 |
#: ../admin/logs.php:273
|
940 |
msgid "Comment ID"
|
941 |
-
msgstr ""
|
942 |
|
943 |
#: ../admin/logs.php:274
|
944 |
msgid "Comment Author"
|
945 |
-
msgstr ""
|
946 |
|
947 |
#: ../admin/logs.php:275
|
948 |
msgid "Comment Text"
|
949 |
-
msgstr ""
|
950 |
|
951 |
#: ../admin/logs.php:400
|
952 |
msgid "Activity ID"
|
953 |
-
msgstr ""
|
954 |
|
955 |
#: ../admin/logs.php:401
|
956 |
msgid "Permalink"
|
957 |
-
msgstr ""
|
958 |
|
959 |
#: ../admin/logs.php:438
|
960 |
#, php-format
|
961 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
962 |
-
msgstr ""
|
963 |
|
964 |
#: ../admin/logs.php:522
|
965 |
msgid "Topic ID"
|
966 |
-
msgstr ""
|
967 |
|
968 |
#: ../admin/logs.php:523
|
969 |
msgid "Topic Title"
|
@@ -971,7 +987,7 @@ msgstr ""
|
|
971 |
|
972 |
#: ../admin/stats.php:30
|
973 |
msgid "Welcome to WP ULike Statistics!"
|
974 |
-
msgstr ""
|
975 |
|
976 |
#: ../admin/stats.php:31
|
977 |
msgid "We have provided some useful statistics tools in this page:"
|
@@ -979,7 +995,7 @@ msgstr ""
|
|
979 |
|
980 |
#: ../admin/stats.php:35
|
981 |
msgid "Get Started"
|
982 |
-
msgstr "
|
983 |
|
984 |
#: ../admin/stats.php:37
|
985 |
msgid "or"
|
@@ -987,7 +1003,7 @@ msgstr "ou"
|
|
987 |
|
988 |
#: ../admin/stats.php:40
|
989 |
msgid "Other Tools"
|
990 |
-
msgstr ""
|
991 |
|
992 |
#: ../admin/stats.php:49
|
993 |
msgid "Documentation"
|
@@ -999,11 +1015,11 @@ msgstr "Contacto"
|
|
999 |
|
1000 |
#: ../admin/stats.php:54
|
1001 |
msgid "GitHub Repository"
|
1002 |
-
msgstr ""
|
1003 |
|
1004 |
#: ../admin/stats.php:80
|
1005 |
msgid "Posts Likes Summary"
|
1006 |
-
msgstr ""
|
1007 |
|
1008 |
#: ../admin/stats.php:88
|
1009 |
msgid "Comments Likes Summary"
|
@@ -1019,11 +1035,11 @@ msgstr ""
|
|
1019 |
|
1020 |
#: ../admin/stats.php:114 ../admin/stats.php:344
|
1021 |
msgid "Summary"
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
#: ../admin/stats.php:126
|
1025 |
msgid "Total Likes"
|
1026 |
-
msgstr ""
|
1027 |
|
1028 |
#: ../admin/stats.php:138
|
1029 |
msgid "Today"
|
@@ -1031,15 +1047,15 @@ msgstr "Hoje"
|
|
1031 |
|
1032 |
#: ../admin/stats.php:143
|
1033 |
msgid "Yesterday"
|
1034 |
-
msgstr ""
|
1035 |
|
1036 |
#: ../admin/stats.php:148
|
1037 |
msgid "Week"
|
1038 |
-
msgstr ""
|
1039 |
|
1040 |
#: ../admin/stats.php:153
|
1041 |
msgid "Month"
|
1042 |
-
msgstr ""
|
1043 |
|
1044 |
#: ../admin/stats.php:158
|
1045 |
msgid "Total"
|
@@ -1047,22 +1063,22 @@ msgstr "Total"
|
|
1047 |
|
1048 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
1049 |
msgid "Top Likers"
|
1050 |
-
msgstr ""
|
1051 |
|
1052 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1053 |
#: ../admin/stats.php:245
|
1054 |
msgid "View Logs"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1058 |
msgid "Posts Likes Stats"
|
1059 |
-
msgstr ""
|
1060 |
|
1061 |
#: ../admin/stats.php:228 ../admin/stats.php:234 ../admin/stats.php:240
|
1062 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1063 |
#, php-format
|
1064 |
msgid "In The Last %s Days"
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1068 |
msgid "Comments Likes Stats"
|
@@ -1078,11 +1094,11 @@ msgstr ""
|
|
1078 |
|
1079 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1080 |
msgid "Likes Percent"
|
1081 |
-
msgstr ""
|
1082 |
|
1083 |
#: ../admin/stats.php:341
|
1084 |
msgid "Show on screen"
|
1085 |
-
msgstr "Mostrar
|
1086 |
|
1087 |
#: ../admin/stats.php:343
|
1088 |
msgid "Welcome"
|
@@ -1090,7 +1106,7 @@ msgstr "Bem-vindo"
|
|
1090 |
|
1091 |
#: ../admin/stats.php:354
|
1092 |
msgid "Days"
|
1093 |
-
msgstr ""
|
1094 |
|
1095 |
#: ../inc/classes/class-mycred.php:202
|
1096 |
msgid "Points for Liking content"
|
@@ -1098,7 +1114,7 @@ msgstr ""
|
|
1098 |
|
1099 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1100 |
msgid "Limit"
|
1101 |
-
msgstr ""
|
1102 |
|
1103 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1104 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
@@ -1119,7 +1135,7 @@ msgstr ""
|
|
1119 |
|
1120 |
#: ../inc/wp-functions.php:172
|
1121 |
msgid "WP ULike Activity"
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
#: ../inc/wp-functions.php:303
|
1125 |
msgid ""
|
@@ -1157,35 +1173,35 @@ msgstr ""
|
|
1157 |
|
1158 |
#: ../inc/wp-strings.php:3
|
1159 |
msgid "Allow To Like"
|
1160 |
-
msgstr ""
|
1161 |
|
1162 |
#: ../inc/wp-strings.php:4
|
1163 |
msgid "Guests Only"
|
1164 |
-
msgstr ""
|
1165 |
|
1166 |
#: ../inc/wp-strings.php:5
|
1167 |
msgid "Registered Users Only"
|
1168 |
-
msgstr ""
|
1169 |
|
1170 |
#: ../inc/wp-strings.php:6
|
1171 |
msgid "Registered Users And Guests"
|
1172 |
-
msgstr ""
|
1173 |
|
1174 |
#: ../inc/wp-strings.php:7
|
1175 |
msgid "Who Is Allowed To Like?"
|
1176 |
-
msgstr ""
|
1177 |
|
1178 |
#: ../inc/wp-strings.php:8
|
1179 |
msgid "Filter Options:"
|
1180 |
-
msgstr ""
|
1181 |
|
1182 |
#: ../inc/wp-strings.php:9
|
1183 |
msgid "Sort Options:"
|
1184 |
-
msgstr ""
|
1185 |
|
1186 |
#: ../inc/wp-strings.php:11
|
1187 |
msgid "Dislike"
|
1188 |
-
msgstr ""
|
1189 |
|
1190 |
#: ../inc/wp-strings.php:12
|
1191 |
msgid "Dislike Support"
|
@@ -1201,7 +1217,7 @@ msgstr ""
|
|
1201 |
|
1202 |
#: ../inc/wp-strings.php:15
|
1203 |
msgid "Show tooltips"
|
1204 |
-
msgstr ""
|
1205 |
|
1206 |
#: ../inc/wp-strings.php:16
|
1207 |
msgid "Alignment"
|
@@ -1209,11 +1225,11 @@ msgstr "Alinhamento"
|
|
1209 |
|
1210 |
#: ../inc/wp-strings.php:17
|
1211 |
msgid "Left"
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
#: ../inc/wp-strings.php:18
|
1215 |
msgid "Center"
|
1216 |
-
msgstr "
|
1217 |
|
1218 |
#: ../inc/wp-strings.php:19
|
1219 |
msgid "Right"
|
@@ -1237,7 +1253,7 @@ msgstr ""
|
|
1237 |
|
1238 |
#: ../inc/wp-strings.php:24
|
1239 |
msgid "Tooltip"
|
1240 |
-
msgstr ""
|
1241 |
|
1242 |
#: ../inc/wp-strings.php:29
|
1243 |
msgid "Total Users Liked"
|
@@ -1253,46 +1269,41 @@ msgstr ""
|
|
1253 |
|
1254 |
#: ../inc/wp-strings.php:32
|
1255 |
msgid "Upvote"
|
1256 |
-
msgstr ""
|
1257 |
|
1258 |
#: ../inc/wp-strings.php:33
|
1259 |
msgid "Downvote"
|
1260 |
-
msgstr ""
|
1261 |
|
1262 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:291
|
1263 |
msgid "You need to login in order to like this post: "
|
1264 |
-
msgstr ""
|
1265 |
|
1266 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1267 |
#: ../inc/wp-ulike.php:291
|
1268 |
msgid "click here"
|
1269 |
-
msgstr ""
|
1270 |
|
1271 |
#: ../inc/wp-ulike.php:142
|
1272 |
msgid "You need to login in order to like this comment: "
|
1273 |
-
msgstr ""
|
1274 |
|
1275 |
#: ../inc/wp-ulike.php:219
|
1276 |
msgid "You need to login in order to like this activity: "
|
1277 |
-
msgstr ""
|
1278 |
|
1279 |
#: ../inc/wp-ulike.php:343
|
1280 |
msgid "Error: This Method Is Not Exist!"
|
1281 |
-
msgstr ""
|
1282 |
|
1283 |
#: ../wp-ulike.php:124
|
1284 |
-
#, fuzzy
|
1285 |
msgid "Settings"
|
1286 |
-
msgstr "Definições
|
1287 |
|
1288 |
#: ../wp-ulike.php:125
|
1289 |
-
#, fuzzy
|
1290 |
msgid "Statistics"
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
#: ../wp-ulike.php:126
|
1294 |
msgid "About"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#~ msgid "Overview"
|
1298 |
-
#~ msgstr "Visão geral"
|
1 |
+
# Copyright (C) 2015 WP ULike
|
2 |
+
# This file is distributed under the same license as the WP ULike package.
|
3 |
# Translators:
|
4 |
+
# Manuela Silva <manuela.silva@sky.com>, 2016
|
5 |
+
# Manuela Silva <manuela.silva@sky.com>, 2016
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WP ULike\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-ulike\n"
|
10 |
+
"POT-Creation-Date: 2015-05-21 11:36+0330\n"
|
11 |
+
"PO-Revision-Date: 2017-01-20 21:22+0330\n"
|
12 |
+
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
13 |
+
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/wp-"
|
14 |
+
"translations/wp-ulike/language/pt_PT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
+
"Language: pt_PT\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
+
"X-Generator: Poedit 1.5.4\n"
|
21 |
"X-Poedit-Basepath: .\n"
|
22 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
"X-Poedit-SearchPath-1: ..\n"
|
25 |
|
26 |
#: ../admin/about.php:107
|
27 |
msgid "Welcome to WP ULike"
|
28 |
+
msgstr "Bem-vindo ao WP ULike"
|
29 |
|
30 |
#: ../admin/about.php:109
|
31 |
msgid ""
|
32 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
33 |
"powerful version yet."
|
34 |
msgstr ""
|
35 |
+
"Obrigado por escolher WP ULike! Esta versão, é a nossa versão mais simples e "
|
36 |
+
"mais poderosa de sempre."
|
37 |
|
38 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
39 |
msgid "Visit our homepage"
|
40 |
+
msgstr "Visite a nossa página principal"
|
41 |
|
42 |
#: ../admin/about.php:112
|
43 |
msgid "Version"
|
45 |
|
46 |
#: ../admin/about.php:115
|
47 |
msgid "Getting Started"
|
48 |
+
msgstr "Iniciação"
|
49 |
|
50 |
#: ../admin/about.php:116
|
51 |
msgid "Credits"
|
59 |
#: ../admin/about.php:118 ../admin/classes/class-settings.php:111
|
60 |
#: ../admin/stats.php:52
|
61 |
msgid "FAQ"
|
62 |
+
msgstr "Perguntas Mais Frequentes"
|
63 |
|
64 |
#: ../admin/about.php:119
|
65 |
msgid "Reviews"
|
66 |
+
msgstr "Críticas"
|
67 |
|
68 |
#: ../admin/about.php:125
|
69 |
msgid "Introducing WP ULike"
|
70 |
+
msgstr "Introduzindo WP ULike"
|
71 |
|
72 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
73 |
msgid "About WP ULike"
|
74 |
+
msgstr "Sobre WP ULike"
|
75 |
|
76 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
77 |
msgid ""
|
80 |
"comments AND buddypress activities. Its very simple to use and supports many "
|
81 |
"options."
|
82 |
msgstr ""
|
83 |
+
"O Plug-in WP ULike permite-lhe integrar um Botão Gostar Ajax no seu site da "
|
84 |
+
"Web do WordPress para permitir que os seus visitantes gostem e removam o "
|
85 |
+
"gosto das páginas, artigos, comentários e atividades do BuddyPress. É muito "
|
86 |
+
"fácil de utilizar e suporta várias opções."
|
87 |
|
88 |
#: ../admin/about.php:155
|
89 |
msgid "WP Ulike Extension"
|
90 |
+
msgstr "Extensão de WP Ulike"
|
91 |
|
92 |
#: ../admin/about.php:156
|
93 |
msgid ""
|
94 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
95 |
"activities & bbPress Topics."
|
96 |
msgstr ""
|
97 |
+
"De momento, WP ULike suporta artigos / comentários do do WordPress, "
|
98 |
+
"atividades do BuddyPress e tópicos do bbPress."
|
99 |
|
100 |
#: ../admin/about.php:165
|
101 |
msgid "Added More Than 20 Language Files"
|
102 |
+
msgstr "Adicionados mais de 20 ficheiros de idioma"
|
103 |
|
104 |
#: ../admin/about.php:166
|
105 |
msgid ""
|
106 |
"WP ULike is already translated into +20 languages, with more always in "
|
107 |
"progress."
|
108 |
+
msgstr "WP ULike já tem mais de +20 idiomas traduzidos, com mais em progresso."
|
109 |
|
110 |
#: ../admin/about.php:175
|
111 |
msgid "User Profile Links"
|
112 |
+
msgstr "Hiperligações de Perfil do Utilizador"
|
113 |
|
114 |
#: ../admin/about.php:176
|
115 |
msgid ""
|
119 |
|
120 |
#: ../admin/about.php:185
|
121 |
msgid "New Themes And Styles"
|
122 |
+
msgstr "Novos Temas e Estilos"
|
123 |
|
124 |
#: ../admin/about.php:186
|
125 |
msgid ""
|
139 |
|
140 |
#: ../admin/about.php:205 ../admin/stats.php:175 ../admin/stats.php:350
|
141 |
msgid "Likers World Map"
|
142 |
+
msgstr "Mapa Mundo de Gostos"
|
143 |
|
144 |
#: ../admin/about.php:206
|
145 |
msgid ""
|
149 |
|
150 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
151 |
msgid "WP ULike Statistics"
|
152 |
+
msgstr "Estatísticas do WP ULike"
|
153 |
|
154 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
155 |
msgid "Home"
|
157 |
|
158 |
#: ../admin/about.php:216
|
159 |
msgid "OR"
|
160 |
+
msgstr "OU"
|
161 |
|
162 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
163 |
msgid "WP ULike Settings"
|
164 |
+
msgstr "Definições do WP ULike"
|
165 |
|
166 |
#: ../admin/about.php:222
|
167 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
168 |
+
msgstr "WP ULike é criado com muita dedicação e tempo. Desfrute-o :)"
|
169 |
|
170 |
#: ../admin/about.php:223
|
171 |
msgid "Project Leaders"
|
172 |
+
msgstr "Líderes do Projeto"
|
173 |
|
174 |
#: ../admin/about.php:228
|
175 |
msgid "Project Lead & Developer"
|
176 |
+
msgstr "Líder do Projeto e Programador"
|
177 |
|
178 |
#: ../admin/about.php:232
|
179 |
msgid "Translations"
|
181 |
|
182 |
#: ../admin/about.php:271
|
183 |
msgid "Would you like to help translate the plugin into more languages?"
|
184 |
+
msgstr "Gostaria de traduzir o plug-in para mais idiomas?"
|
185 |
|
186 |
#: ../admin/about.php:271
|
187 |
msgid "Join our WP-Translations Community"
|
188 |
+
msgstr "Junte-se à nossa Comunidade de Tradutores WP"
|
189 |
|
190 |
#: ../admin/about.php:273
|
191 |
msgid "Other Plugins"
|
192 |
+
msgstr "Outros Plug-ins"
|
193 |
|
194 |
#: ../admin/about.php:292
|
195 |
msgid "Like this plugin?"
|
196 |
+
msgstr "Gosta deste plug-in?"
|
197 |
|
198 |
#: ../admin/about.php:293
|
199 |
msgid ""
|
211 |
|
212 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
213 |
msgid "WP ULike"
|
214 |
+
msgstr "WP ULike"
|
215 |
|
216 |
#: ../admin/admin.php:83
|
217 |
msgid "Settings saved."
|
218 |
+
msgstr "Definições guardadas."
|
219 |
|
220 |
#: ../admin/admin.php:113 ../admin/admin.php:141
|
221 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
227 |
|
228 |
#: ../admin/admin.php:159 ../admin/logs.php:139 ../admin/stats.php:42
|
229 |
msgid "Post Likes Logs"
|
230 |
+
msgstr "Registos de Gostos do Artigo"
|
231 |
|
232 |
#: ../admin/admin.php:163 ../admin/logs.php:260 ../admin/stats.php:43
|
233 |
msgid "Comment Likes Logs"
|
243 |
|
244 |
#: ../admin/classes/class-settings.php:17
|
245 |
msgid "Custom Settings"
|
246 |
+
msgstr "Definições Personalizadas"
|
247 |
|
248 |
#: ../admin/classes/class-settings.php:28 ../admin/stats.php:355
|
249 |
msgid "Save Settings"
|
250 |
+
msgstr "Definições de Guardar "
|
251 |
|
252 |
#: ../admin/classes/class-settings.php:29
|
253 |
msgid "Reset Settings"
|
254 |
+
msgstr "Redefinir Definições"
|
255 |
|
256 |
#: ../admin/classes/class-settings.php:44
|
257 |
msgid "Similar Settings"
|
258 |
+
msgstr "Definições Similares"
|
259 |
|
260 |
#: ../admin/classes/class-settings.php:48
|
261 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
262 |
#: ../admin/classes/tmp/settings.php:362 ../admin/classes/tmp/settings.php:474
|
263 |
msgid "Logging Method"
|
264 |
+
msgstr "Método de Registo"
|
265 |
|
266 |
#: ../admin/classes/class-settings.php:50
|
267 |
msgid ""
|
299 |
|
300 |
#: ../admin/classes/class-settings.php:57
|
301 |
msgid "Template Variables"
|
302 |
+
msgstr "Variáveis de Modelo"
|
303 |
|
304 |
#: ../admin/classes/class-settings.php:59
|
305 |
msgid "Start the loop of logs"
|
306 |
+
msgstr "Iniciar a repetição dos registos"
|
307 |
|
308 |
#: ../admin/classes/class-settings.php:59
|
309 |
#: ../admin/classes/class-settings.php:60
|
310 |
msgid "required"
|
311 |
+
msgstr "obrigatório"
|
312 |
|
313 |
#: ../admin/classes/class-settings.php:60
|
314 |
msgid "End of the while loop"
|
334 |
|
335 |
#: ../admin/classes/class-settings.php:66
|
336 |
msgid "Display the permalink"
|
337 |
+
msgstr "Exibir a hiperligação permanente"
|
338 |
|
339 |
#: ../admin/classes/class-settings.php:67
|
340 |
#: ../admin/classes/class-settings.php:71
|
341 |
msgid "Display the likes count number"
|
342 |
+
msgstr "Exibir o número de contagem dos gostos"
|
343 |
|
344 |
#: ../admin/classes/class-settings.php:68
|
345 |
msgid "Display the post title"
|
346 |
+
msgstr "Exibir o título do artigo"
|
347 |
|
348 |
#: ../admin/classes/class-settings.php:70
|
349 |
msgid "Display the comment author name"
|
350 |
+
msgstr "Exibir o nome do autor do comentário"
|
351 |
|
352 |
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:72
|
353 |
msgid "Posts"
|
360 |
#: ../admin/classes/tmp/settings.php:86 ../admin/classes/tmp/settings.php:192
|
361 |
#: ../admin/classes/tmp/settings.php:340 ../admin/classes/tmp/settings.php:452
|
362 |
msgid "Automatic display"
|
363 |
+
msgstr "Exibição Automática"
|
364 |
|
365 |
#: ../admin/classes/class-settings.php:81
|
366 |
msgid ""
|
382 |
#: ../admin/classes/class-settings.php:98
|
383 |
#: ../admin/classes/class-settings.php:106
|
384 |
msgid "Default Template:"
|
385 |
+
msgstr "Modelo predefinido:"
|
386 |
|
387 |
#: ../admin/classes/class-settings.php:81
|
388 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
389 |
msgid "Users who have LIKED this post:"
|
390 |
+
msgstr "Utilizadores que GOSTARAM deste artigo:"
|
391 |
|
392 |
#: ../admin/classes/class-settings.php:88
|
393 |
#: ../admin/classes/tmp/settings.php:178
|
426 |
#: ../admin/classes/class-settings.php:98
|
427 |
#: ../admin/classes/tmp/settings.php:406
|
428 |
msgid "Post Activity Text"
|
429 |
+
msgstr "Texto da Atividade do Artigo"
|
430 |
|
431 |
#: ../admin/classes/class-settings.php:98
|
432 |
#: ../admin/classes/tmp/settings.php:412
|
436 |
#: ../admin/classes/class-settings.php:104
|
437 |
#: ../admin/classes/tmp/settings.php:438
|
438 |
msgid "bbPress"
|
439 |
+
msgstr "bbPress"
|
440 |
|
441 |
#: ../admin/classes/class-settings.php:111
|
442 |
msgid "For more information:"
|
455 |
#: ../admin/classes/class-settings.php:323
|
456 |
#: ../admin/classes/class-settings.php:347
|
457 |
msgid "No options defined."
|
458 |
+
msgstr "Sem opções definidas."
|
459 |
|
460 |
#: ../admin/classes/class-settings.php:334
|
461 |
#, php-format
|
462 |
msgid "Select %s"
|
463 |
+
msgstr "Selecionar %s"
|
464 |
|
465 |
#: ../admin/classes/class-settings.php:335
|
466 |
#, php-format
|
467 |
msgid "Remove %s"
|
468 |
+
msgstr "Remover %s"
|
469 |
|
470 |
#: ../admin/classes/class-settings.php:359
|
471 |
msgid "No action defined."
|
472 |
+
msgstr "Sem ação definida."
|
473 |
|
474 |
#: ../admin/classes/class-widget.php:11
|
475 |
msgid "WP Ulike Widget"
|
476 |
+
msgstr "Widget do WP Ulike"
|
477 |
|
478 |
#: ../admin/classes/class-widget.php:12
|
479 |
msgid ""
|
482 |
|
483 |
#: ../admin/classes/class-widget.php:79
|
484 |
msgid "you haven't liked any post yet!"
|
485 |
+
msgstr "Ainda não gostou de nenhum artigo!"
|
486 |
|
487 |
#: ../admin/classes/class-widget.php:126
|
488 |
msgid "on"
|
492 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
493 |
#: ../admin/stats.php:205
|
494 |
msgid "Like"
|
495 |
+
msgstr "Gostar"
|
496 |
|
497 |
#: ../admin/classes/class-widget.php:266
|
498 |
msgid "Most Liked"
|
504 |
|
505 |
#: ../admin/classes/class-widget.php:275
|
506 |
msgid "Type:"
|
507 |
+
msgstr "Tipo:"
|
508 |
|
509 |
#: ../admin/classes/class-widget.php:277 ../inc/wp-strings.php:26
|
510 |
msgid "Most Liked Posts"
|
511 |
+
msgstr "Artigos com Mais 'Gostos'"
|
512 |
|
513 |
#: ../admin/classes/class-widget.php:278 ../inc/wp-strings.php:27
|
514 |
msgid "Most Liked Comments"
|
524 |
|
525 |
#: ../admin/classes/class-widget.php:281
|
526 |
msgid "Last Posts Liked By User"
|
527 |
+
msgstr "Últimos Artigos 'Gostar' pelo Utilizador"
|
528 |
|
529 |
#: ../admin/classes/class-widget.php:286
|
530 |
msgid "Style:"
|
531 |
+
msgstr "Estilo:"
|
532 |
|
533 |
#: ../admin/classes/class-widget.php:288
|
534 |
msgid "Simple"
|
535 |
+
msgstr "Simples"
|
536 |
|
537 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
538 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
554 |
|
555 |
#: ../admin/classes/class-widget.php:312
|
556 |
msgid "Profile URL:"
|
557 |
+
msgstr "URL do perfil:"
|
558 |
|
559 |
#: ../admin/classes/class-widget.php:315
|
560 |
msgid "UltimateMember"
|
574 |
|
575 |
#: ../admin/classes/tmp/settings.php:15
|
576 |
msgid "Button Type"
|
577 |
+
msgstr "Tipo de Botão"
|
578 |
|
579 |
#: ../admin/classes/tmp/settings.php:18
|
580 |
msgid "Icon"
|
581 |
+
msgstr "Ícone"
|
582 |
|
583 |
#: ../admin/classes/tmp/settings.php:19
|
584 |
msgid "Text"
|
586 |
|
587 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
588 |
msgid "Button Text"
|
589 |
+
msgstr "Botão de Texto"
|
590 |
|
591 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
592 |
#: ../admin/classes/tmp/settings.php:37
|
593 |
msgid "Unlike"
|
594 |
+
msgstr "Remover Gostar"
|
595 |
|
596 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
597 |
msgid "Button Icon"
|
598 |
+
msgstr "Ícone de Botão"
|
599 |
|
600 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
601 |
#: ../admin/classes/tmp/settings.php:310
|
602 |
msgid "Best size: 16x16"
|
603 |
+
msgstr "Melhor tamanho: 16x16"
|
604 |
|
605 |
#: ../admin/classes/tmp/settings.php:41
|
606 |
msgid "You have not permission to unlike"
|
607 |
+
msgstr "Não tem permissão para remover o gosto"
|
608 |
|
609 |
#: ../admin/classes/tmp/settings.php:42
|
610 |
msgid "Permission Text"
|
616 |
|
617 |
#: ../admin/classes/tmp/settings.php:49
|
618 |
msgid "Alert Box"
|
619 |
+
msgstr "Caixa de Alerta"
|
620 |
|
621 |
#: ../admin/classes/tmp/settings.php:50
|
622 |
msgid "Like Button"
|
623 |
+
msgstr "Botão de Gostar"
|
624 |
|
625 |
#: ../admin/classes/tmp/settings.php:54
|
626 |
msgid "You Should Login To Submit Your Like"
|
627 |
+
msgstr "Deverá iniciar a sessão para submeter o seu gosto"
|
628 |
|
629 |
#: ../admin/classes/tmp/settings.php:55
|
630 |
msgid "Users Login Text"
|
659 |
#: ../admin/classes/tmp/settings.php:333 ../admin/classes/tmp/settings.php:445
|
660 |
#: ../inc/wp-strings.php:25
|
661 |
msgid "Default"
|
662 |
+
msgstr "Predefinição"
|
663 |
|
664 |
#: ../admin/classes/tmp/settings.php:91 ../admin/classes/tmp/settings.php:197
|
665 |
#: ../admin/classes/tmp/settings.php:345 ../admin/classes/tmp/settings.php:457
|
678 |
|
679 |
#: ../admin/classes/tmp/settings.php:96 ../admin/classes/tmp/settings.php:202
|
680 |
msgid "Top and Bottom"
|
681 |
+
msgstr "Topo e Base"
|
682 |
|
683 |
#: ../admin/classes/tmp/settings.php:101
|
684 |
msgid "Auto Display Filter"
|
686 |
|
687 |
#: ../admin/classes/tmp/settings.php:104
|
688 |
msgid "Single Posts"
|
689 |
+
msgstr "Artigo Único"
|
690 |
|
691 |
#: ../admin/classes/tmp/settings.php:105
|
692 |
msgid "Pages"
|
694 |
|
695 |
#: ../admin/classes/tmp/settings.php:106
|
696 |
msgid "Archives"
|
697 |
+
msgstr "Arquivos"
|
698 |
|
699 |
#: ../admin/classes/tmp/settings.php:107
|
700 |
msgid "Categories"
|
702 |
|
703 |
#: ../admin/classes/tmp/settings.php:108
|
704 |
msgid "Search Results"
|
705 |
+
msgstr "Resultados de Procura"
|
706 |
|
707 |
#: ../admin/classes/tmp/settings.php:109
|
708 |
msgid "Tags"
|
710 |
|
711 |
#: ../admin/classes/tmp/settings.php:110
|
712 |
msgid "Author Page"
|
713 |
+
msgstr "Página do Autor"
|
714 |
|
715 |
#: ../admin/classes/tmp/settings.php:112
|
716 |
msgid "You can filter theses pages on auto display option."
|
717 |
+
msgstr "Pode filtrar estas páginas na opções de exibição automática"
|
718 |
|
719 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
720 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
721 |
msgid "Only registered Users"
|
722 |
+
msgstr "Apenas Utilizadores registados"
|
723 |
|
724 |
#: ../admin/classes/tmp/settings.php:119
|
725 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
726 |
msgstr ""
|
727 |
+
"<strong>Apenas</strong> os utilizadores registados têm permissão para gostar "
|
728 |
+
"de artigos."
|
729 |
|
730 |
#: ../admin/classes/tmp/settings.php:126 ../admin/classes/tmp/settings.php:217
|
731 |
#: ../admin/classes/tmp/settings.php:364 ../admin/classes/tmp/settings.php:476
|
732 |
msgid "Do Not Log"
|
733 |
+
msgstr "Não Registar Eventos"
|
734 |
|
735 |
#: ../admin/classes/tmp/settings.php:127 ../admin/classes/tmp/settings.php:218
|
736 |
#: ../admin/classes/tmp/settings.php:365 ../admin/classes/tmp/settings.php:477
|
766 |
#: ../admin/classes/tmp/settings.php:143 ../admin/classes/tmp/settings.php:234
|
767 |
#: ../admin/classes/tmp/settings.php:381 ../admin/classes/tmp/settings.php:493
|
768 |
msgid "Size of Gravatars"
|
769 |
+
msgstr "Tamanho dos Gravatars"
|
770 |
|
771 |
#: ../admin/classes/tmp/settings.php:144 ../admin/classes/tmp/settings.php:235
|
772 |
#: ../admin/classes/tmp/settings.php:382 ../admin/classes/tmp/settings.php:494
|
776 |
#: ../admin/classes/tmp/settings.php:149 ../admin/classes/tmp/settings.php:240
|
777 |
#: ../admin/classes/tmp/settings.php:387 ../admin/classes/tmp/settings.php:499
|
778 |
msgid "Number Of The Users"
|
779 |
+
msgstr "Número de Utilziadores"
|
780 |
|
781 |
#: ../admin/classes/tmp/settings.php:150 ../admin/classes/tmp/settings.php:241
|
782 |
#: ../admin/classes/tmp/settings.php:388 ../admin/classes/tmp/settings.php:500
|
787 |
#: ../admin/classes/tmp/settings.php:394 ../admin/classes/tmp/settings.php:407
|
788 |
#: ../admin/classes/tmp/settings.php:413 ../admin/classes/tmp/settings.php:506
|
789 |
msgid "Allowed Variables:"
|
790 |
+
msgstr "Variáveis permitidas:"
|
791 |
|
792 |
#: ../admin/classes/tmp/settings.php:160 ../admin/classes/tmp/settings.php:251
|
793 |
#: ../admin/classes/tmp/settings.php:417 ../admin/classes/tmp/settings.php:510
|
794 |
msgid "Delete All Logs"
|
795 |
+
msgstr "Eliminar Todos os Registos"
|
796 |
|
797 |
#: ../admin/classes/tmp/settings.php:161 ../admin/classes/tmp/settings.php:252
|
798 |
#: ../admin/classes/tmp/settings.php:418 ../admin/classes/tmp/settings.php:511
|
802 |
#: ../admin/classes/tmp/settings.php:166 ../admin/classes/tmp/settings.php:257
|
803 |
#: ../admin/classes/tmp/settings.php:423 ../admin/classes/tmp/settings.php:516
|
804 |
msgid "Delete All Data"
|
805 |
+
msgstr "Eliminar Todos os Dados"
|
806 |
|
807 |
#: ../admin/classes/tmp/settings.php:167 ../admin/classes/tmp/settings.php:258
|
808 |
#: ../admin/classes/tmp/settings.php:424 ../admin/classes/tmp/settings.php:517
|
820 |
|
821 |
#: ../admin/classes/tmp/settings.php:274
|
822 |
msgid "Custom Style"
|
823 |
+
msgstr "Estilo Personalizado"
|
824 |
|
825 |
#: ../admin/classes/tmp/settings.php:279
|
826 |
msgid "Active this option to see the custom style settings."
|
836 |
|
837 |
#: ../admin/classes/tmp/settings.php:288 ../admin/classes/tmp/settings.php:301
|
838 |
msgid "Border Color"
|
839 |
+
msgstr "Cor da Margem"
|
840 |
|
841 |
#: ../admin/classes/tmp/settings.php:292 ../admin/classes/tmp/settings.php:305
|
842 |
msgid "Text Color"
|
843 |
+
msgstr "Cor do Texto"
|
844 |
|
845 |
#: ../admin/classes/tmp/settings.php:296
|
846 |
msgid "Counter Style"
|
848 |
|
849 |
#: ../admin/classes/tmp/settings.php:309
|
850 |
msgid "Loading Animation"
|
851 |
+
msgstr "A Carregar Animação"
|
852 |
|
853 |
#: ../admin/classes/tmp/settings.php:314
|
|
|
854 |
msgid "Custom CSS"
|
855 |
+
msgstr "Personalizar CSS"
|
856 |
|
857 |
#: ../admin/classes/tmp/settings.php:348
|
858 |
msgid "Activity Content"
|
859 |
+
msgstr "Atividade de Conteúdo"
|
860 |
|
861 |
#: ../admin/classes/tmp/settings.php:349
|
862 |
msgid "Activity Meta"
|
863 |
+
msgstr "Atividade de Metadados"
|
864 |
|
865 |
#: ../admin/classes/tmp/settings.php:357
|
866 |
msgid ""
|
867 |
"<strong>Only</strong> registered users have permission to like activities."
|
868 |
msgstr ""
|
869 |
+
"<strong>Apenas</strong> os utilizadores registados têm permissão para gostar "
|
870 |
+
"das atividades."
|
871 |
|
872 |
#: ../admin/classes/tmp/settings.php:399
|
873 |
msgid "BuddyPress Activity"
|
874 |
+
msgstr "Atividade do BuddyPress"
|
875 |
|
876 |
#: ../admin/classes/tmp/settings.php:401
|
877 |
msgid "insert new likes in buddyPress activity page"
|
880 |
#: ../admin/classes/tmp/settings.php:469
|
881 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
882 |
msgstr ""
|
883 |
+
"<strong>Apenas</strong> os utilizadores registados têm permissão para gostar "
|
884 |
+
"dos Tópicos."
|
885 |
|
886 |
#: ../admin/classes/tmp/settings.php:504
|
887 |
msgid "Users who have liked this topic:"
|
900 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
901 |
#: ../admin/logs.php:508
|
902 |
msgid "WP ULike Logs"
|
903 |
+
msgstr "Registos de WP ULike"
|
904 |
|
905 |
#: ../admin/logs.php:149 ../admin/logs.php:270 ../admin/logs.php:397
|
906 |
#: ../admin/logs.php:519
|
919 |
|
920 |
#: ../admin/logs.php:152
|
921 |
msgid "Post ID"
|
922 |
+
msgstr "Id. do Artigo"
|
923 |
|
924 |
#: ../admin/logs.php:153
|
925 |
msgid "Post Title"
|
926 |
+
msgstr "Título do Artigo"
|
927 |
|
928 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
929 |
#: ../admin/logs.php:524
|
930 |
msgid "Date / Time"
|
931 |
+
msgstr "Data / Hora"
|
932 |
|
933 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
934 |
#: ../admin/logs.php:525
|
935 |
msgid "IP"
|
936 |
+
msgstr "IP"
|
937 |
|
938 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
939 |
#: ../admin/logs.php:526
|
943 |
#: ../admin/logs.php:174 ../admin/logs.php:296 ../admin/logs.php:422
|
944 |
#: ../admin/logs.php:544 ../admin/stats.php:198
|
945 |
msgid "Guest User"
|
946 |
+
msgstr "Utilizador Convidado"
|
947 |
|
948 |
#: ../admin/logs.php:219 ../admin/logs.php:345 ../admin/logs.php:468
|
949 |
#: ../admin/logs.php:590
|
954 |
|
955 |
#: ../admin/logs.php:273
|
956 |
msgid "Comment ID"
|
957 |
+
msgstr "Id. do Comentário"
|
958 |
|
959 |
#: ../admin/logs.php:274
|
960 |
msgid "Comment Author"
|
961 |
+
msgstr "Autor do Comentário"
|
962 |
|
963 |
#: ../admin/logs.php:275
|
964 |
msgid "Comment Text"
|
965 |
+
msgstr "Texto do Comentário"
|
966 |
|
967 |
#: ../admin/logs.php:400
|
968 |
msgid "Activity ID"
|
969 |
+
msgstr "Id. da Atividade"
|
970 |
|
971 |
#: ../admin/logs.php:401
|
972 |
msgid "Permalink"
|
973 |
+
msgstr "Hiperligação permanente"
|
974 |
|
975 |
#: ../admin/logs.php:438
|
976 |
#, php-format
|
977 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
978 |
+
msgstr "<a href=\"%1$s\">Hiperligação Permanente Atividade</a>"
|
979 |
|
980 |
#: ../admin/logs.php:522
|
981 |
msgid "Topic ID"
|
982 |
+
msgstr "Id. do Tópico"
|
983 |
|
984 |
#: ../admin/logs.php:523
|
985 |
msgid "Topic Title"
|
987 |
|
988 |
#: ../admin/stats.php:30
|
989 |
msgid "Welcome to WP ULike Statistics!"
|
990 |
+
msgstr "Bem-vindo às Estatísticas de WP ULike"
|
991 |
|
992 |
#: ../admin/stats.php:31
|
993 |
msgid "We have provided some useful statistics tools in this page:"
|
995 |
|
996 |
#: ../admin/stats.php:35
|
997 |
msgid "Get Started"
|
998 |
+
msgstr "Comece Aqui"
|
999 |
|
1000 |
#: ../admin/stats.php:37
|
1001 |
msgid "or"
|
1003 |
|
1004 |
#: ../admin/stats.php:40
|
1005 |
msgid "Other Tools"
|
1006 |
+
msgstr "Outras Ferramentas"
|
1007 |
|
1008 |
#: ../admin/stats.php:49
|
1009 |
msgid "Documentation"
|
1015 |
|
1016 |
#: ../admin/stats.php:54
|
1017 |
msgid "GitHub Repository"
|
1018 |
+
msgstr "Repositório do GitHub"
|
1019 |
|
1020 |
#: ../admin/stats.php:80
|
1021 |
msgid "Posts Likes Summary"
|
1022 |
+
msgstr "Resumo dos Gostos de Artigos"
|
1023 |
|
1024 |
#: ../admin/stats.php:88
|
1025 |
msgid "Comments Likes Summary"
|
1035 |
|
1036 |
#: ../admin/stats.php:114 ../admin/stats.php:344
|
1037 |
msgid "Summary"
|
1038 |
+
msgstr "Resumo"
|
1039 |
|
1040 |
#: ../admin/stats.php:126
|
1041 |
msgid "Total Likes"
|
1042 |
+
msgstr "Total de Gostos"
|
1043 |
|
1044 |
#: ../admin/stats.php:138
|
1045 |
msgid "Today"
|
1047 |
|
1048 |
#: ../admin/stats.php:143
|
1049 |
msgid "Yesterday"
|
1050 |
+
msgstr "Ontem"
|
1051 |
|
1052 |
#: ../admin/stats.php:148
|
1053 |
msgid "Week"
|
1054 |
+
msgstr "Semana"
|
1055 |
|
1056 |
#: ../admin/stats.php:153
|
1057 |
msgid "Month"
|
1058 |
+
msgstr "Mês"
|
1059 |
|
1060 |
#: ../admin/stats.php:158
|
1061 |
msgid "Total"
|
1063 |
|
1064 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
1065 |
msgid "Top Likers"
|
1066 |
+
msgstr "Melhores Gostos"
|
1067 |
|
1068 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1069 |
#: ../admin/stats.php:245
|
1070 |
msgid "View Logs"
|
1071 |
+
msgstr "Ver Registos"
|
1072 |
|
1073 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1074 |
msgid "Posts Likes Stats"
|
1075 |
+
msgstr "Estado dos Gostos de Artigos"
|
1076 |
|
1077 |
#: ../admin/stats.php:228 ../admin/stats.php:234 ../admin/stats.php:240
|
1078 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1079 |
#, php-format
|
1080 |
msgid "In The Last %s Days"
|
1081 |
+
msgstr "Nos últimos %s dias"
|
1082 |
|
1083 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1084 |
msgid "Comments Likes Stats"
|
1094 |
|
1095 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1096 |
msgid "Likes Percent"
|
1097 |
+
msgstr "Percentagem de Gostos"
|
1098 |
|
1099 |
#: ../admin/stats.php:341
|
1100 |
msgid "Show on screen"
|
1101 |
+
msgstr "Mostrar no ecrã"
|
1102 |
|
1103 |
#: ../admin/stats.php:343
|
1104 |
msgid "Welcome"
|
1106 |
|
1107 |
#: ../admin/stats.php:354
|
1108 |
msgid "Days"
|
1109 |
+
msgstr "Dias"
|
1110 |
|
1111 |
#: ../inc/classes/class-mycred.php:202
|
1112 |
msgid "Points for Liking content"
|
1114 |
|
1115 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1116 |
msgid "Limit"
|
1117 |
+
msgstr "Limite"
|
1118 |
|
1119 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1120 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
1135 |
|
1136 |
#: ../inc/wp-functions.php:172
|
1137 |
msgid "WP ULike Activity"
|
1138 |
+
msgstr "Atividade do WP ULike"
|
1139 |
|
1140 |
#: ../inc/wp-functions.php:303
|
1141 |
msgid ""
|
1173 |
|
1174 |
#: ../inc/wp-strings.php:3
|
1175 |
msgid "Allow To Like"
|
1176 |
+
msgstr "Permitir Gostar"
|
1177 |
|
1178 |
#: ../inc/wp-strings.php:4
|
1179 |
msgid "Guests Only"
|
1180 |
+
msgstr "Apenas Convidados"
|
1181 |
|
1182 |
#: ../inc/wp-strings.php:5
|
1183 |
msgid "Registered Users Only"
|
1184 |
+
msgstr "Apenas Utilizadores Registados"
|
1185 |
|
1186 |
#: ../inc/wp-strings.php:6
|
1187 |
msgid "Registered Users And Guests"
|
1188 |
+
msgstr "Utilizadores e Convidados Registados"
|
1189 |
|
1190 |
#: ../inc/wp-strings.php:7
|
1191 |
msgid "Who Is Allowed To Like?"
|
1192 |
+
msgstr "A quem é permitido gostar?"
|
1193 |
|
1194 |
#: ../inc/wp-strings.php:8
|
1195 |
msgid "Filter Options:"
|
1196 |
+
msgstr "Opções de filtro:"
|
1197 |
|
1198 |
#: ../inc/wp-strings.php:9
|
1199 |
msgid "Sort Options:"
|
1200 |
+
msgstr "Opções de ordenação:"
|
1201 |
|
1202 |
#: ../inc/wp-strings.php:11
|
1203 |
msgid "Dislike"
|
1204 |
+
msgstr "Remover Gosto"
|
1205 |
|
1206 |
#: ../inc/wp-strings.php:12
|
1207 |
msgid "Dislike Support"
|
1217 |
|
1218 |
#: ../inc/wp-strings.php:15
|
1219 |
msgid "Show tooltips"
|
1220 |
+
msgstr "Mostrar dicas da ferramenta"
|
1221 |
|
1222 |
#: ../inc/wp-strings.php:16
|
1223 |
msgid "Alignment"
|
1225 |
|
1226 |
#: ../inc/wp-strings.php:17
|
1227 |
msgid "Left"
|
1228 |
+
msgstr "Esquerda"
|
1229 |
|
1230 |
#: ../inc/wp-strings.php:18
|
1231 |
msgid "Center"
|
1232 |
+
msgstr "Centro"
|
1233 |
|
1234 |
#: ../inc/wp-strings.php:19
|
1235 |
msgid "Right"
|
1253 |
|
1254 |
#: ../inc/wp-strings.php:24
|
1255 |
msgid "Tooltip"
|
1256 |
+
msgstr "Dica da Ferramenta"
|
1257 |
|
1258 |
#: ../inc/wp-strings.php:29
|
1259 |
msgid "Total Users Liked"
|
1269 |
|
1270 |
#: ../inc/wp-strings.php:32
|
1271 |
msgid "Upvote"
|
1272 |
+
msgstr "Votar +"
|
1273 |
|
1274 |
#: ../inc/wp-strings.php:33
|
1275 |
msgid "Downvote"
|
1276 |
+
msgstr "Votar -"
|
1277 |
|
1278 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:291
|
1279 |
msgid "You need to login in order to like this post: "
|
1280 |
+
msgstr "Precisa de iniciar a sessão para poder gostar este artigo: "
|
1281 |
|
1282 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1283 |
#: ../inc/wp-ulike.php:291
|
1284 |
msgid "click here"
|
1285 |
+
msgstr "clique aqui"
|
1286 |
|
1287 |
#: ../inc/wp-ulike.php:142
|
1288 |
msgid "You need to login in order to like this comment: "
|
1289 |
+
msgstr "Precisa de iniciar a sessão para gostar deste comentário:"
|
1290 |
|
1291 |
#: ../inc/wp-ulike.php:219
|
1292 |
msgid "You need to login in order to like this activity: "
|
1293 |
+
msgstr "Precisa de iniciar a sessão para gostar desta atividade:"
|
1294 |
|
1295 |
#: ../inc/wp-ulike.php:343
|
1296 |
msgid "Error: This Method Is Not Exist!"
|
1297 |
+
msgstr "Erro: este método não existe!"
|
1298 |
|
1299 |
#: ../wp-ulike.php:124
|
|
|
1300 |
msgid "Settings"
|
1301 |
+
msgstr "Definições"
|
1302 |
|
1303 |
#: ../wp-ulike.php:125
|
|
|
1304 |
msgid "Statistics"
|
1305 |
+
msgstr "Estatisticas"
|
1306 |
|
1307 |
#: ../wp-ulike.php:126
|
1308 |
msgid "About"
|
1309 |
+
msgstr "Sobre"
|
|
|
|
|
|
lang/wp-ulike-ru_RU.mo
CHANGED
Binary file
|
lang/wp-ulike-ru_RU.po
CHANGED
@@ -1,29 +1,32 @@
|
|
1 |
-
#
|
|
|
2 |
# Translators:
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
|
|
10 |
"ulike/language/ru_RU/)\n"
|
11 |
-
"Language: ru_RU\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
|
|
|
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
-
"X-Poedit-KeywordsList: _e
|
20 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
#: ../admin/about.php:107
|
25 |
msgid "Welcome to WP ULike"
|
26 |
-
msgstr ""
|
27 |
|
28 |
#: ../admin/about.php:109
|
29 |
msgid ""
|
@@ -33,7 +36,7 @@ msgstr ""
|
|
33 |
|
34 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
35 |
msgid "Visit our homepage"
|
36 |
-
msgstr ""
|
37 |
|
38 |
#: ../admin/about.php:112
|
39 |
msgid "Version"
|
@@ -63,11 +66,11 @@ msgstr "Отзывы"
|
|
63 |
|
64 |
#: ../admin/about.php:125
|
65 |
msgid "Introducing WP ULike"
|
66 |
-
msgstr ""
|
67 |
|
68 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
69 |
msgid "About WP ULike"
|
70 |
-
msgstr ""
|
71 |
|
72 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
73 |
msgid ""
|
@@ -139,7 +142,7 @@ msgstr ""
|
|
139 |
|
140 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
141 |
msgid "WP ULike Statistics"
|
142 |
-
msgstr ""
|
143 |
|
144 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
145 |
msgid "Home"
|
@@ -147,15 +150,15 @@ msgstr "Главная"
|
|
147 |
|
148 |
#: ../admin/about.php:216
|
149 |
msgid "OR"
|
150 |
-
msgstr ""
|
151 |
|
152 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
153 |
msgid "WP ULike Settings"
|
154 |
-
msgstr ""
|
155 |
|
156 |
#: ../admin/about.php:222
|
157 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
158 |
-
msgstr ""
|
159 |
|
160 |
#: ../admin/about.php:223
|
161 |
msgid "Project Leaders"
|
@@ -179,7 +182,7 @@ msgstr ""
|
|
179 |
|
180 |
#: ../admin/about.php:273
|
181 |
msgid "Other Plugins"
|
182 |
-
msgstr ""
|
183 |
|
184 |
#: ../admin/about.php:292
|
185 |
msgid "Like this plugin?"
|
@@ -201,7 +204,7 @@ msgstr ""
|
|
201 |
|
202 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
203 |
msgid "WP ULike"
|
204 |
-
msgstr ""
|
205 |
|
206 |
#: ../admin/admin.php:83
|
207 |
msgid "Settings saved."
|
@@ -209,11 +212,11 @@ msgstr "Настройки сохранены."
|
|
209 |
|
210 |
#: ../admin/admin.php:113 ../admin/admin.php:141
|
211 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
212 |
-
msgstr ""
|
213 |
|
214 |
#: ../admin/admin.php:115 ../admin/admin.php:143
|
215 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
216 |
-
msgstr ""
|
217 |
|
218 |
#: ../admin/admin.php:159 ../admin/logs.php:139 ../admin/stats.php:42
|
219 |
msgid "Post Likes Logs"
|
@@ -241,18 +244,17 @@ msgstr "Сохранить настройки"
|
|
241 |
|
242 |
#: ../admin/classes/class-settings.php:29
|
243 |
msgid "Reset Settings"
|
244 |
-
msgstr ""
|
245 |
|
246 |
#: ../admin/classes/class-settings.php:44
|
247 |
-
#, fuzzy
|
248 |
msgid "Similar Settings"
|
249 |
-
msgstr "
|
250 |
|
251 |
#: ../admin/classes/class-settings.php:48
|
252 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
253 |
#: ../admin/classes/tmp/settings.php:362 ../admin/classes/tmp/settings.php:474
|
254 |
msgid "Logging Method"
|
255 |
-
msgstr ""
|
256 |
|
257 |
#: ../admin/classes/class-settings.php:50
|
258 |
msgid ""
|
@@ -299,7 +301,7 @@ msgstr ""
|
|
299 |
#: ../admin/classes/class-settings.php:59
|
300 |
#: ../admin/classes/class-settings.php:60
|
301 |
msgid "required"
|
302 |
-
msgstr ""
|
303 |
|
304 |
#: ../admin/classes/class-settings.php:60
|
305 |
msgid "End of the while loop"
|
@@ -309,15 +311,15 @@ msgstr ""
|
|
309 |
#: ../admin/classes/class-settings.php:65
|
310 |
#: ../admin/classes/class-settings.php:69
|
311 |
msgid "Display the liker name"
|
312 |
-
msgstr ""
|
313 |
|
314 |
#: ../admin/classes/class-settings.php:62
|
315 |
msgid "Display the liker avatar (By Gravatar)"
|
316 |
-
msgstr ""
|
317 |
|
318 |
#: ../admin/classes/class-settings.php:63
|
319 |
msgid "Display the BuddyPress user profile url"
|
320 |
-
msgstr ""
|
321 |
|
322 |
#: ../admin/classes/class-settings.php:64
|
323 |
msgid "Display the UltimateMemebr user profile url"
|
@@ -325,20 +327,20 @@ msgstr ""
|
|
325 |
|
326 |
#: ../admin/classes/class-settings.php:66
|
327 |
msgid "Display the permalink"
|
328 |
-
msgstr ""
|
329 |
|
330 |
#: ../admin/classes/class-settings.php:67
|
331 |
#: ../admin/classes/class-settings.php:71
|
332 |
msgid "Display the likes count number"
|
333 |
-
msgstr ""
|
334 |
|
335 |
#: ../admin/classes/class-settings.php:68
|
336 |
msgid "Display the post title"
|
337 |
-
msgstr ""
|
338 |
|
339 |
#: ../admin/classes/class-settings.php:70
|
340 |
msgid "Display the comment author name"
|
341 |
-
msgstr ""
|
342 |
|
343 |
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:72
|
344 |
msgid "Posts"
|
@@ -351,7 +353,7 @@ msgstr "Записи"
|
|
351 |
#: ../admin/classes/tmp/settings.php:86 ../admin/classes/tmp/settings.php:192
|
352 |
#: ../admin/classes/tmp/settings.php:340 ../admin/classes/tmp/settings.php:452
|
353 |
msgid "Automatic display"
|
354 |
-
msgstr ""
|
355 |
|
356 |
#: ../admin/classes/class-settings.php:81
|
357 |
msgid ""
|
@@ -373,12 +375,12 @@ msgstr ""
|
|
373 |
#: ../admin/classes/class-settings.php:98
|
374 |
#: ../admin/classes/class-settings.php:106
|
375 |
msgid "Default Template:"
|
376 |
-
msgstr ""
|
377 |
|
378 |
#: ../admin/classes/class-settings.php:81
|
379 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
380 |
msgid "Users who have LIKED this post:"
|
381 |
-
msgstr ""
|
382 |
|
383 |
#: ../admin/classes/class-settings.php:88
|
384 |
#: ../admin/classes/tmp/settings.php:178
|
@@ -394,7 +396,7 @@ msgstr ""
|
|
394 |
#: ../admin/classes/class-settings.php:90
|
395 |
#: ../admin/classes/tmp/settings.php:245
|
396 |
msgid "Users who have LIKED this comment:"
|
397 |
-
msgstr ""
|
398 |
|
399 |
#: ../admin/classes/class-settings.php:96
|
400 |
#: ../admin/classes/class-widget.php:314 ../admin/classes/tmp/settings.php:326
|
@@ -427,7 +429,7 @@ msgstr ""
|
|
427 |
#: ../admin/classes/class-settings.php:104
|
428 |
#: ../admin/classes/tmp/settings.php:438
|
429 |
msgid "bbPress"
|
430 |
-
msgstr ""
|
431 |
|
432 |
#: ../admin/classes/class-settings.php:111
|
433 |
msgid "For more information:"
|
@@ -435,7 +437,7 @@ msgstr "Для дополнительной информации:"
|
|
435 |
|
436 |
#: ../admin/classes/class-settings.php:170
|
437 |
msgid "Default settings have been reset."
|
438 |
-
msgstr ""
|
439 |
|
440 |
#: ../admin/classes/class-settings.php:247
|
441 |
msgid ""
|
@@ -456,15 +458,15 @@ msgstr "Выбор %s"
|
|
456 |
#: ../admin/classes/class-settings.php:335
|
457 |
#, php-format
|
458 |
msgid "Remove %s"
|
459 |
-
msgstr ""
|
460 |
|
461 |
#: ../admin/classes/class-settings.php:359
|
462 |
msgid "No action defined."
|
463 |
-
msgstr ""
|
464 |
|
465 |
#: ../admin/classes/class-widget.php:11
|
466 |
msgid "WP Ulike Widget"
|
467 |
-
msgstr ""
|
468 |
|
469 |
#: ../admin/classes/class-widget.php:12
|
470 |
msgid ""
|
@@ -473,7 +475,7 @@ msgstr ""
|
|
473 |
|
474 |
#: ../admin/classes/class-widget.php:79
|
475 |
msgid "you haven't liked any post yet!"
|
476 |
-
msgstr ""
|
477 |
|
478 |
#: ../admin/classes/class-widget.php:126
|
479 |
msgid "on"
|
@@ -483,7 +485,7 @@ msgstr "on"
|
|
483 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
484 |
#: ../admin/stats.php:205
|
485 |
msgid "Like"
|
486 |
-
msgstr ""
|
487 |
|
488 |
#: ../admin/classes/class-widget.php:266
|
489 |
msgid "Most Liked"
|
@@ -495,7 +497,7 @@ msgstr "Заголовок:"
|
|
495 |
|
496 |
#: ../admin/classes/class-widget.php:275
|
497 |
msgid "Type:"
|
498 |
-
msgstr ""
|
499 |
|
500 |
#: ../admin/classes/class-widget.php:277 ../inc/wp-strings.php:26
|
501 |
msgid "Most Liked Posts"
|
@@ -519,11 +521,11 @@ msgstr ""
|
|
519 |
|
520 |
#: ../admin/classes/class-widget.php:286
|
521 |
msgid "Style:"
|
522 |
-
msgstr ""
|
523 |
|
524 |
#: ../admin/classes/class-widget.php:288
|
525 |
msgid "Simple"
|
526 |
-
msgstr ""
|
527 |
|
528 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
529 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
@@ -537,15 +539,15 @@ msgstr ""
|
|
537 |
|
538 |
#: ../admin/classes/class-widget.php:300
|
539 |
msgid "Number of items to show:"
|
540 |
-
msgstr ""
|
541 |
|
542 |
#: ../admin/classes/class-widget.php:306
|
543 |
msgid "Thumbnail/Avatar size:"
|
544 |
-
msgstr ""
|
545 |
|
546 |
#: ../admin/classes/class-widget.php:312
|
547 |
msgid "Profile URL:"
|
548 |
-
msgstr ""
|
549 |
|
550 |
#: ../admin/classes/class-widget.php:315
|
551 |
msgid "UltimateMember"
|
@@ -577,16 +579,16 @@ msgstr "Текст"
|
|
577 |
|
578 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
579 |
msgid "Button Text"
|
580 |
-
msgstr ""
|
581 |
|
582 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
583 |
#: ../admin/classes/tmp/settings.php:37
|
584 |
msgid "Unlike"
|
585 |
-
msgstr ""
|
586 |
|
587 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
588 |
msgid "Button Icon"
|
589 |
-
msgstr ""
|
590 |
|
591 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
592 |
#: ../admin/classes/tmp/settings.php:310
|
@@ -599,7 +601,7 @@ msgstr ""
|
|
599 |
|
600 |
#: ../admin/classes/tmp/settings.php:42
|
601 |
msgid "Permission Text"
|
602 |
-
msgstr ""
|
603 |
|
604 |
#: ../admin/classes/tmp/settings.php:46
|
605 |
msgid "Users Login Type"
|
@@ -611,7 +613,7 @@ msgstr ""
|
|
611 |
|
612 |
#: ../admin/classes/tmp/settings.php:50
|
613 |
msgid "Like Button"
|
614 |
-
msgstr ""
|
615 |
|
616 |
#: ../admin/classes/tmp/settings.php:54
|
617 |
msgid "You Should Login To Submit Your Like"
|
@@ -660,16 +662,16 @@ msgstr ""
|
|
660 |
#: ../admin/classes/tmp/settings.php:94 ../admin/classes/tmp/settings.php:200
|
661 |
#: ../admin/classes/tmp/settings.php:460
|
662 |
msgid "Top of Content"
|
663 |
-
msgstr ""
|
664 |
|
665 |
#: ../admin/classes/tmp/settings.php:95 ../admin/classes/tmp/settings.php:201
|
666 |
#: ../admin/classes/tmp/settings.php:461
|
667 |
msgid "Bottom of Content"
|
668 |
-
msgstr ""
|
669 |
|
670 |
#: ../admin/classes/tmp/settings.php:96 ../admin/classes/tmp/settings.php:202
|
671 |
msgid "Top and Bottom"
|
672 |
-
msgstr ""
|
673 |
|
674 |
#: ../admin/classes/tmp/settings.php:101
|
675 |
msgid "Auto Display Filter"
|
@@ -701,7 +703,7 @@ msgstr "Метки"
|
|
701 |
|
702 |
#: ../admin/classes/tmp/settings.php:110
|
703 |
msgid "Author Page"
|
704 |
-
msgstr ""
|
705 |
|
706 |
#: ../admin/classes/tmp/settings.php:112
|
707 |
msgid "You can filter theses pages on auto display option."
|
@@ -710,7 +712,7 @@ msgstr ""
|
|
710 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
711 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
712 |
msgid "Only registered Users"
|
713 |
-
msgstr ""
|
714 |
|
715 |
#: ../admin/classes/tmp/settings.php:119
|
716 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
@@ -719,7 +721,7 @@ msgstr ""
|
|
719 |
#: ../admin/classes/tmp/settings.php:126 ../admin/classes/tmp/settings.php:217
|
720 |
#: ../admin/classes/tmp/settings.php:364 ../admin/classes/tmp/settings.php:476
|
721 |
msgid "Do Not Log"
|
722 |
-
msgstr ""
|
723 |
|
724 |
#: ../admin/classes/tmp/settings.php:127 ../admin/classes/tmp/settings.php:218
|
725 |
#: ../admin/classes/tmp/settings.php:365 ../admin/classes/tmp/settings.php:477
|
@@ -765,7 +767,7 @@ msgstr ""
|
|
765 |
#: ../admin/classes/tmp/settings.php:149 ../admin/classes/tmp/settings.php:240
|
766 |
#: ../admin/classes/tmp/settings.php:387 ../admin/classes/tmp/settings.php:499
|
767 |
msgid "Number Of The Users"
|
768 |
-
msgstr ""
|
769 |
|
770 |
#: ../admin/classes/tmp/settings.php:150 ../admin/classes/tmp/settings.php:241
|
771 |
#: ../admin/classes/tmp/settings.php:388 ../admin/classes/tmp/settings.php:500
|
@@ -781,7 +783,7 @@ msgstr ""
|
|
781 |
#: ../admin/classes/tmp/settings.php:160 ../admin/classes/tmp/settings.php:251
|
782 |
#: ../admin/classes/tmp/settings.php:417 ../admin/classes/tmp/settings.php:510
|
783 |
msgid "Delete All Logs"
|
784 |
-
msgstr ""
|
785 |
|
786 |
#: ../admin/classes/tmp/settings.php:161 ../admin/classes/tmp/settings.php:252
|
787 |
#: ../admin/classes/tmp/settings.php:418 ../admin/classes/tmp/settings.php:511
|
@@ -791,7 +793,7 @@ msgstr ""
|
|
791 |
#: ../admin/classes/tmp/settings.php:166 ../admin/classes/tmp/settings.php:257
|
792 |
#: ../admin/classes/tmp/settings.php:423 ../admin/classes/tmp/settings.php:516
|
793 |
msgid "Delete All Data"
|
794 |
-
msgstr ""
|
795 |
|
796 |
#: ../admin/classes/tmp/settings.php:167 ../admin/classes/tmp/settings.php:258
|
797 |
#: ../admin/classes/tmp/settings.php:424 ../admin/classes/tmp/settings.php:517
|
@@ -840,9 +842,8 @@ msgid "Loading Animation"
|
|
840 |
msgstr ""
|
841 |
|
842 |
#: ../admin/classes/tmp/settings.php:314
|
843 |
-
#, fuzzy
|
844 |
msgid "Custom CSS"
|
845 |
-
msgstr "
|
846 |
|
847 |
#: ../admin/classes/tmp/settings.php:348
|
848 |
msgid "Activity Content"
|
@@ -859,7 +860,7 @@ msgstr ""
|
|
859 |
|
860 |
#: ../admin/classes/tmp/settings.php:399
|
861 |
msgid "BuddyPress Activity"
|
862 |
-
msgstr ""
|
863 |
|
864 |
#: ../admin/classes/tmp/settings.php:401
|
865 |
msgid "insert new likes in buddyPress activity page"
|
@@ -871,7 +872,7 @@ msgstr ""
|
|
871 |
|
872 |
#: ../admin/classes/tmp/settings.php:504
|
873 |
msgid "Users who have liked this topic:"
|
874 |
-
msgstr ""
|
875 |
|
876 |
#: ../admin/logs.php:17 ../admin/logs.php:142 ../admin/logs.php:212
|
877 |
#: ../admin/logs.php:263 ../admin/logs.php:337 ../admin/logs.php:390
|
@@ -881,7 +882,7 @@ msgstr "Логи"
|
|
881 |
|
882 |
#: ../admin/logs.php:80
|
883 |
msgid "Are you sure to remove this item?!"
|
884 |
-
msgstr ""
|
885 |
|
886 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
887 |
#: ../admin/logs.php:508
|
@@ -909,17 +910,17 @@ msgstr "ID записи"
|
|
909 |
|
910 |
#: ../admin/logs.php:153
|
911 |
msgid "Post Title"
|
912 |
-
msgstr ""
|
913 |
|
914 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
915 |
#: ../admin/logs.php:524
|
916 |
msgid "Date / Time"
|
917 |
-
msgstr ""
|
918 |
|
919 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
920 |
#: ../admin/logs.php:525
|
921 |
msgid "IP"
|
922 |
-
msgstr ""
|
923 |
|
924 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
925 |
#: ../admin/logs.php:526
|
@@ -940,15 +941,15 @@ msgstr ""
|
|
940 |
|
941 |
#: ../admin/logs.php:273
|
942 |
msgid "Comment ID"
|
943 |
-
msgstr ""
|
944 |
|
945 |
#: ../admin/logs.php:274
|
946 |
msgid "Comment Author"
|
947 |
-
msgstr ""
|
948 |
|
949 |
#: ../admin/logs.php:275
|
950 |
msgid "Comment Text"
|
951 |
-
msgstr ""
|
952 |
|
953 |
#: ../admin/logs.php:400
|
954 |
msgid "Activity ID"
|
@@ -965,19 +966,21 @@ msgstr ""
|
|
965 |
|
966 |
#: ../admin/logs.php:522
|
967 |
msgid "Topic ID"
|
968 |
-
msgstr ""
|
969 |
|
970 |
#: ../admin/logs.php:523
|
971 |
msgid "Topic Title"
|
972 |
-
msgstr ""
|
973 |
|
974 |
#: ../admin/stats.php:30
|
975 |
msgid "Welcome to WP ULike Statistics!"
|
976 |
-
msgstr ""
|
977 |
|
978 |
#: ../admin/stats.php:31
|
979 |
msgid "We have provided some useful statistics tools in this page:"
|
980 |
msgstr ""
|
|
|
|
|
981 |
|
982 |
#: ../admin/stats.php:35
|
983 |
msgid "Get Started"
|
@@ -989,7 +992,7 @@ msgstr "или"
|
|
989 |
|
990 |
#: ../admin/stats.php:40
|
991 |
msgid "Other Tools"
|
992 |
-
msgstr ""
|
993 |
|
994 |
#: ../admin/stats.php:49
|
995 |
msgid "Documentation"
|
@@ -1001,7 +1004,7 @@ msgstr "Контакт"
|
|
1001 |
|
1002 |
#: ../admin/stats.php:54
|
1003 |
msgid "GitHub Repository"
|
1004 |
-
msgstr ""
|
1005 |
|
1006 |
#: ../admin/stats.php:80
|
1007 |
msgid "Posts Likes Summary"
|
@@ -1025,7 +1028,7 @@ msgstr "Суммарно"
|
|
1025 |
|
1026 |
#: ../admin/stats.php:126
|
1027 |
msgid "Total Likes"
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
#: ../admin/stats.php:138
|
1031 |
msgid "Today"
|
@@ -1037,7 +1040,7 @@ msgstr "Вчера"
|
|
1037 |
|
1038 |
#: ../admin/stats.php:148
|
1039 |
msgid "Week"
|
1040 |
-
msgstr ""
|
1041 |
|
1042 |
#: ../admin/stats.php:153
|
1043 |
msgid "Month"
|
@@ -1054,7 +1057,7 @@ msgstr ""
|
|
1054 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1055 |
#: ../admin/stats.php:245
|
1056 |
msgid "View Logs"
|
1057 |
-
msgstr ""
|
1058 |
|
1059 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1060 |
msgid "Posts Likes Stats"
|
@@ -1064,7 +1067,7 @@ msgstr ""
|
|
1064 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1065 |
#, php-format
|
1066 |
msgid "In The Last %s Days"
|
1067 |
-
msgstr ""
|
1068 |
|
1069 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1070 |
msgid "Comments Likes Stats"
|
@@ -1080,7 +1083,7 @@ msgstr ""
|
|
1080 |
|
1081 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1082 |
msgid "Likes Percent"
|
1083 |
-
msgstr ""
|
1084 |
|
1085 |
#: ../admin/stats.php:341
|
1086 |
msgid "Show on screen"
|
@@ -1100,7 +1103,7 @@ msgstr ""
|
|
1100 |
|
1101 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1102 |
msgid "Limit"
|
1103 |
-
msgstr ""
|
1104 |
|
1105 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1106 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
@@ -1121,7 +1124,7 @@ msgstr ""
|
|
1121 |
|
1122 |
#: ../inc/wp-functions.php:172
|
1123 |
msgid "WP ULike Activity"
|
1124 |
-
msgstr ""
|
1125 |
|
1126 |
#: ../inc/wp-functions.php:303
|
1127 |
msgid ""
|
@@ -1155,27 +1158,27 @@ msgstr ""
|
|
1155 |
|
1156 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1157 |
msgid "This user has not made any likes."
|
1158 |
-
msgstr ""
|
1159 |
|
1160 |
#: ../inc/wp-strings.php:3
|
1161 |
msgid "Allow To Like"
|
1162 |
-
msgstr ""
|
1163 |
|
1164 |
#: ../inc/wp-strings.php:4
|
1165 |
msgid "Guests Only"
|
1166 |
-
msgstr ""
|
1167 |
|
1168 |
#: ../inc/wp-strings.php:5
|
1169 |
msgid "Registered Users Only"
|
1170 |
-
msgstr ""
|
1171 |
|
1172 |
#: ../inc/wp-strings.php:6
|
1173 |
msgid "Registered Users And Guests"
|
1174 |
-
msgstr ""
|
1175 |
|
1176 |
#: ../inc/wp-strings.php:7
|
1177 |
msgid "Who Is Allowed To Like?"
|
1178 |
-
msgstr ""
|
1179 |
|
1180 |
#: ../inc/wp-strings.php:8
|
1181 |
msgid "Filter Options:"
|
@@ -1183,11 +1186,11 @@ msgstr ""
|
|
1183 |
|
1184 |
#: ../inc/wp-strings.php:9
|
1185 |
msgid "Sort Options:"
|
1186 |
-
msgstr ""
|
1187 |
|
1188 |
#: ../inc/wp-strings.php:11
|
1189 |
msgid "Dislike"
|
1190 |
-
msgstr ""
|
1191 |
|
1192 |
#: ../inc/wp-strings.php:12
|
1193 |
msgid "Dislike Support"
|
@@ -1199,11 +1202,11 @@ msgstr ""
|
|
1199 |
|
1200 |
#: ../inc/wp-strings.php:14
|
1201 |
msgid "Show Counter"
|
1202 |
-
msgstr ""
|
1203 |
|
1204 |
#: ../inc/wp-strings.php:15
|
1205 |
msgid "Show tooltips"
|
1206 |
-
msgstr ""
|
1207 |
|
1208 |
#: ../inc/wp-strings.php:16
|
1209 |
msgid "Alignment"
|
@@ -1227,7 +1230,7 @@ msgstr ""
|
|
1227 |
|
1228 |
#: ../inc/wp-strings.php:21
|
1229 |
msgid "BuddyPress Notifications"
|
1230 |
-
msgstr ""
|
1231 |
|
1232 |
#: ../inc/wp-strings.php:22
|
1233 |
msgid "Liker Attempts"
|
@@ -1263,16 +1266,16 @@ msgstr ""
|
|
1263 |
|
1264 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:291
|
1265 |
msgid "You need to login in order to like this post: "
|
1266 |
-
msgstr ""
|
1267 |
|
1268 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1269 |
#: ../inc/wp-ulike.php:291
|
1270 |
msgid "click here"
|
1271 |
-
msgstr ""
|
1272 |
|
1273 |
#: ../inc/wp-ulike.php:142
|
1274 |
msgid "You need to login in order to like this comment: "
|
1275 |
-
msgstr ""
|
1276 |
|
1277 |
#: ../inc/wp-ulike.php:219
|
1278 |
msgid "You need to login in order to like this activity: "
|
@@ -1280,21 +1283,16 @@ msgstr ""
|
|
1280 |
|
1281 |
#: ../inc/wp-ulike.php:343
|
1282 |
msgid "Error: This Method Is Not Exist!"
|
1283 |
-
msgstr ""
|
1284 |
|
1285 |
#: ../wp-ulike.php:124
|
1286 |
-
#, fuzzy
|
1287 |
msgid "Settings"
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
#: ../wp-ulike.php:125
|
1291 |
-
#, fuzzy
|
1292 |
msgid "Statistics"
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
#: ../wp-ulike.php:126
|
1296 |
msgid "About"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#~ msgid "Overview"
|
1300 |
-
#~ msgstr "Общая информация"
|
1 |
+
# Copyright (C) 2015 WP ULike
|
2 |
+
# This file is distributed under the same license as the WP ULike package.
|
3 |
# Translators:
|
4 |
+
# Victor Bychek, 2016
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: WP ULike\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-ulike\n"
|
9 |
+
"POT-Creation-Date: 2015-05-21 11:36+0330\n"
|
10 |
+
"PO-Revision-Date: 2017-01-20 21:22+0330\n"
|
11 |
+
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
12 |
+
"Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/wp-"
|
13 |
"ulike/language/ru_RU/)\n"
|
|
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Language: ru_RU\n"
|
18 |
+
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
19 |
+
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
20 |
+
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
21 |
+
"X-Generator: Poedit 1.5.4\n"
|
22 |
"X-Poedit-Basepath: .\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPath-1: ..\n"
|
26 |
|
27 |
#: ../admin/about.php:107
|
28 |
msgid "Welcome to WP ULike"
|
29 |
+
msgstr "Добро пожаловать в WP ULike"
|
30 |
|
31 |
#: ../admin/about.php:109
|
32 |
msgid ""
|
36 |
|
37 |
#: ../admin/about.php:110 ../admin/stats.php:37
|
38 |
msgid "Visit our homepage"
|
39 |
+
msgstr "Посетите наш сайт"
|
40 |
|
41 |
#: ../admin/about.php:112
|
42 |
msgid "Version"
|
66 |
|
67 |
#: ../admin/about.php:125
|
68 |
msgid "Introducing WP ULike"
|
69 |
+
msgstr "Вступление в WP ULike"
|
70 |
|
71 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
72 |
msgid "About WP ULike"
|
73 |
+
msgstr "О WP ULike"
|
74 |
|
75 |
#: ../admin/about.php:133 ../admin/classes/class-settings.php:46
|
76 |
msgid ""
|
142 |
|
143 |
#: ../admin/about.php:216 ../admin/admin.php:175 ../admin/stats.php:23
|
144 |
msgid "WP ULike Statistics"
|
145 |
+
msgstr "Статистика WP ULike"
|
146 |
|
147 |
#: ../admin/about.php:216 ../admin/classes/tmp/settings.php:103
|
148 |
msgid "Home"
|
150 |
|
151 |
#: ../admin/about.php:216
|
152 |
msgid "OR"
|
153 |
+
msgstr "ИЛИ"
|
154 |
|
155 |
#: ../admin/about.php:216 ../admin/admin.php:72
|
156 |
msgid "WP ULike Settings"
|
157 |
+
msgstr "Настройки WP ULike"
|
158 |
|
159 |
#: ../admin/about.php:222
|
160 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
161 |
+
msgstr "WP ULike создан множеством любви и временем. Наслаждайтесь им:)"
|
162 |
|
163 |
#: ../admin/about.php:223
|
164 |
msgid "Project Leaders"
|
182 |
|
183 |
#: ../admin/about.php:273
|
184 |
msgid "Other Plugins"
|
185 |
+
msgstr "Другие плагины"
|
186 |
|
187 |
#: ../admin/about.php:292
|
188 |
msgid "Like this plugin?"
|
204 |
|
205 |
#: ../admin/admin.php:75 ../inc/wp-functions.php:302
|
206 |
msgid "WP ULike"
|
207 |
+
msgstr "WP ULike"
|
208 |
|
209 |
#: ../admin/admin.php:83
|
210 |
msgid "Settings saved."
|
212 |
|
213 |
#: ../admin/admin.php:113 ../admin/admin.php:141
|
214 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
215 |
+
msgstr "Не удалось! Произошла ошибка при удалении всех логов/данных ULike"
|
216 |
|
217 |
#: ../admin/admin.php:115 ../admin/admin.php:143
|
218 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
219 |
+
msgstr "Успех! Все логи/данные ULike удалены"
|
220 |
|
221 |
#: ../admin/admin.php:159 ../admin/logs.php:139 ../admin/stats.php:42
|
222 |
msgid "Post Likes Logs"
|
244 |
|
245 |
#: ../admin/classes/class-settings.php:29
|
246 |
msgid "Reset Settings"
|
247 |
+
msgstr "Сбросить настройки"
|
248 |
|
249 |
#: ../admin/classes/class-settings.php:44
|
|
|
250 |
msgid "Similar Settings"
|
251 |
+
msgstr ""
|
252 |
|
253 |
#: ../admin/classes/class-settings.php:48
|
254 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
255 |
#: ../admin/classes/tmp/settings.php:362 ../admin/classes/tmp/settings.php:474
|
256 |
msgid "Logging Method"
|
257 |
+
msgstr "Метод входа"
|
258 |
|
259 |
#: ../admin/classes/class-settings.php:50
|
260 |
msgid ""
|
301 |
#: ../admin/classes/class-settings.php:59
|
302 |
#: ../admin/classes/class-settings.php:60
|
303 |
msgid "required"
|
304 |
+
msgstr "обязательно"
|
305 |
|
306 |
#: ../admin/classes/class-settings.php:60
|
307 |
msgid "End of the while loop"
|
311 |
#: ../admin/classes/class-settings.php:65
|
312 |
#: ../admin/classes/class-settings.php:69
|
313 |
msgid "Display the liker name"
|
314 |
+
msgstr "Отображать имя лайкнувшего"
|
315 |
|
316 |
#: ../admin/classes/class-settings.php:62
|
317 |
msgid "Display the liker avatar (By Gravatar)"
|
318 |
+
msgstr "Отображать аватар лайкнувшего (через Gravatar)"
|
319 |
|
320 |
#: ../admin/classes/class-settings.php:63
|
321 |
msgid "Display the BuddyPress user profile url"
|
322 |
+
msgstr "Отображать ссылку на профиль BuddyPress"
|
323 |
|
324 |
#: ../admin/classes/class-settings.php:64
|
325 |
msgid "Display the UltimateMemebr user profile url"
|
327 |
|
328 |
#: ../admin/classes/class-settings.php:66
|
329 |
msgid "Display the permalink"
|
330 |
+
msgstr "Отображать постоянную ссылку"
|
331 |
|
332 |
#: ../admin/classes/class-settings.php:67
|
333 |
#: ../admin/classes/class-settings.php:71
|
334 |
msgid "Display the likes count number"
|
335 |
+
msgstr "Отображать количество лайков"
|
336 |
|
337 |
#: ../admin/classes/class-settings.php:68
|
338 |
msgid "Display the post title"
|
339 |
+
msgstr "Отображать заголовок публикации"
|
340 |
|
341 |
#: ../admin/classes/class-settings.php:70
|
342 |
msgid "Display the comment author name"
|
343 |
+
msgstr "Отображать имя автора комментария"
|
344 |
|
345 |
#: ../admin/classes/class-settings.php:79 ../admin/classes/tmp/settings.php:72
|
346 |
msgid "Posts"
|
353 |
#: ../admin/classes/tmp/settings.php:86 ../admin/classes/tmp/settings.php:192
|
354 |
#: ../admin/classes/tmp/settings.php:340 ../admin/classes/tmp/settings.php:452
|
355 |
msgid "Automatic display"
|
356 |
+
msgstr "Автоматически отображать"
|
357 |
|
358 |
#: ../admin/classes/class-settings.php:81
|
359 |
msgid ""
|
375 |
#: ../admin/classes/class-settings.php:98
|
376 |
#: ../admin/classes/class-settings.php:106
|
377 |
msgid "Default Template:"
|
378 |
+
msgstr "Шаблон по умолчаниюЖ"
|
379 |
|
380 |
#: ../admin/classes/class-settings.php:81
|
381 |
#: ../admin/classes/tmp/settings.php:154 ../inc/classes/class-ulike.php:423
|
382 |
msgid "Users who have LIKED this post:"
|
383 |
+
msgstr "Пользователи, которым ПОНРАВИЛСЯ этот пост:"
|
384 |
|
385 |
#: ../admin/classes/class-settings.php:88
|
386 |
#: ../admin/classes/tmp/settings.php:178
|
396 |
#: ../admin/classes/class-settings.php:90
|
397 |
#: ../admin/classes/tmp/settings.php:245
|
398 |
msgid "Users who have LIKED this comment:"
|
399 |
+
msgstr "Пользователи, которым ПОНРАВИЛСЯ этот комментарий:"
|
400 |
|
401 |
#: ../admin/classes/class-settings.php:96
|
402 |
#: ../admin/classes/class-widget.php:314 ../admin/classes/tmp/settings.php:326
|
429 |
#: ../admin/classes/class-settings.php:104
|
430 |
#: ../admin/classes/tmp/settings.php:438
|
431 |
msgid "bbPress"
|
432 |
+
msgstr "bbPress"
|
433 |
|
434 |
#: ../admin/classes/class-settings.php:111
|
435 |
msgid "For more information:"
|
437 |
|
438 |
#: ../admin/classes/class-settings.php:170
|
439 |
msgid "Default settings have been reset."
|
440 |
+
msgstr "Настройки успешно сброшены."
|
441 |
|
442 |
#: ../admin/classes/class-settings.php:247
|
443 |
msgid ""
|
458 |
#: ../admin/classes/class-settings.php:335
|
459 |
#, php-format
|
460 |
msgid "Remove %s"
|
461 |
+
msgstr "Удалить %s"
|
462 |
|
463 |
#: ../admin/classes/class-settings.php:359
|
464 |
msgid "No action defined."
|
465 |
+
msgstr "Действий не определено."
|
466 |
|
467 |
#: ../admin/classes/class-widget.php:11
|
468 |
msgid "WP Ulike Widget"
|
469 |
+
msgstr "Виджет WP Ulike"
|
470 |
|
471 |
#: ../admin/classes/class-widget.php:12
|
472 |
msgid ""
|
475 |
|
476 |
#: ../admin/classes/class-widget.php:79
|
477 |
msgid "you haven't liked any post yet!"
|
478 |
+
msgstr "вы ещё не лайкнули ни одного поста!"
|
479 |
|
480 |
#: ../admin/classes/class-widget.php:126
|
481 |
msgid "on"
|
485 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:32
|
486 |
#: ../admin/stats.php:205
|
487 |
msgid "Like"
|
488 |
+
msgstr "Нравится"
|
489 |
|
490 |
#: ../admin/classes/class-widget.php:266
|
491 |
msgid "Most Liked"
|
497 |
|
498 |
#: ../admin/classes/class-widget.php:275
|
499 |
msgid "Type:"
|
500 |
+
msgstr "Тип:"
|
501 |
|
502 |
#: ../admin/classes/class-widget.php:277 ../inc/wp-strings.php:26
|
503 |
msgid "Most Liked Posts"
|
521 |
|
522 |
#: ../admin/classes/class-widget.php:286
|
523 |
msgid "Style:"
|
524 |
+
msgstr "Стиль:"
|
525 |
|
526 |
#: ../admin/classes/class-widget.php:288
|
527 |
msgid "Simple"
|
528 |
+
msgstr "Простой"
|
529 |
|
530 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
531 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
539 |
|
540 |
#: ../admin/classes/class-widget.php:300
|
541 |
msgid "Number of items to show:"
|
542 |
+
msgstr "Количество элементов для показа:"
|
543 |
|
544 |
#: ../admin/classes/class-widget.php:306
|
545 |
msgid "Thumbnail/Avatar size:"
|
546 |
+
msgstr "Размер аватара/миниатюры:"
|
547 |
|
548 |
#: ../admin/classes/class-widget.php:312
|
549 |
msgid "Profile URL:"
|
550 |
+
msgstr "URL профиля:"
|
551 |
|
552 |
#: ../admin/classes/class-widget.php:315
|
553 |
msgid "UltimateMember"
|
579 |
|
580 |
#: ../admin/classes/tmp/settings.php:24 ../admin/classes/tmp/settings.php:28
|
581 |
msgid "Button Text"
|
582 |
+
msgstr "Текст кнопки"
|
583 |
|
584 |
#: ../admin/classes/tmp/settings.php:27 ../admin/classes/tmp/settings.php:28
|
585 |
#: ../admin/classes/tmp/settings.php:37
|
586 |
msgid "Unlike"
|
587 |
+
msgstr "Не нравится"
|
588 |
|
589 |
#: ../admin/classes/tmp/settings.php:32 ../admin/classes/tmp/settings.php:37
|
590 |
msgid "Button Icon"
|
591 |
+
msgstr "Значок Кнопки"
|
592 |
|
593 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
594 |
#: ../admin/classes/tmp/settings.php:310
|
601 |
|
602 |
#: ../admin/classes/tmp/settings.php:42
|
603 |
msgid "Permission Text"
|
604 |
+
msgstr "Текст разрешения"
|
605 |
|
606 |
#: ../admin/classes/tmp/settings.php:46
|
607 |
msgid "Users Login Type"
|
613 |
|
614 |
#: ../admin/classes/tmp/settings.php:50
|
615 |
msgid "Like Button"
|
616 |
+
msgstr "Кнопка Лайка"
|
617 |
|
618 |
#: ../admin/classes/tmp/settings.php:54
|
619 |
msgid "You Should Login To Submit Your Like"
|
662 |
#: ../admin/classes/tmp/settings.php:94 ../admin/classes/tmp/settings.php:200
|
663 |
#: ../admin/classes/tmp/settings.php:460
|
664 |
msgid "Top of Content"
|
665 |
+
msgstr "Верх контента"
|
666 |
|
667 |
#: ../admin/classes/tmp/settings.php:95 ../admin/classes/tmp/settings.php:201
|
668 |
#: ../admin/classes/tmp/settings.php:461
|
669 |
msgid "Bottom of Content"
|
670 |
+
msgstr "Низ контента"
|
671 |
|
672 |
#: ../admin/classes/tmp/settings.php:96 ../admin/classes/tmp/settings.php:202
|
673 |
msgid "Top and Bottom"
|
674 |
+
msgstr "Верх и низ"
|
675 |
|
676 |
#: ../admin/classes/tmp/settings.php:101
|
677 |
msgid "Auto Display Filter"
|
703 |
|
704 |
#: ../admin/classes/tmp/settings.php:110
|
705 |
msgid "Author Page"
|
706 |
+
msgstr "Страница автора"
|
707 |
|
708 |
#: ../admin/classes/tmp/settings.php:112
|
709 |
msgid "You can filter theses pages on auto display option."
|
712 |
#: ../admin/classes/tmp/settings.php:117 ../admin/classes/tmp/settings.php:208
|
713 |
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:467
|
714 |
msgid "Only registered Users"
|
715 |
+
msgstr "Только зарегистрированные пользователи"
|
716 |
|
717 |
#: ../admin/classes/tmp/settings.php:119
|
718 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
721 |
#: ../admin/classes/tmp/settings.php:126 ../admin/classes/tmp/settings.php:217
|
722 |
#: ../admin/classes/tmp/settings.php:364 ../admin/classes/tmp/settings.php:476
|
723 |
msgid "Do Not Log"
|
724 |
+
msgstr "Не логгировать"
|
725 |
|
726 |
#: ../admin/classes/tmp/settings.php:127 ../admin/classes/tmp/settings.php:218
|
727 |
#: ../admin/classes/tmp/settings.php:365 ../admin/classes/tmp/settings.php:477
|
767 |
#: ../admin/classes/tmp/settings.php:149 ../admin/classes/tmp/settings.php:240
|
768 |
#: ../admin/classes/tmp/settings.php:387 ../admin/classes/tmp/settings.php:499
|
769 |
msgid "Number Of The Users"
|
770 |
+
msgstr "Количество пользователей"
|
771 |
|
772 |
#: ../admin/classes/tmp/settings.php:150 ../admin/classes/tmp/settings.php:241
|
773 |
#: ../admin/classes/tmp/settings.php:388 ../admin/classes/tmp/settings.php:500
|
783 |
#: ../admin/classes/tmp/settings.php:160 ../admin/classes/tmp/settings.php:251
|
784 |
#: ../admin/classes/tmp/settings.php:417 ../admin/classes/tmp/settings.php:510
|
785 |
msgid "Delete All Logs"
|
786 |
+
msgstr "Удалить все логи"
|
787 |
|
788 |
#: ../admin/classes/tmp/settings.php:161 ../admin/classes/tmp/settings.php:252
|
789 |
#: ../admin/classes/tmp/settings.php:418 ../admin/classes/tmp/settings.php:511
|
793 |
#: ../admin/classes/tmp/settings.php:166 ../admin/classes/tmp/settings.php:257
|
794 |
#: ../admin/classes/tmp/settings.php:423 ../admin/classes/tmp/settings.php:516
|
795 |
msgid "Delete All Data"
|
796 |
+
msgstr "Удалить все данные"
|
797 |
|
798 |
#: ../admin/classes/tmp/settings.php:167 ../admin/classes/tmp/settings.php:258
|
799 |
#: ../admin/classes/tmp/settings.php:424 ../admin/classes/tmp/settings.php:517
|
842 |
msgstr ""
|
843 |
|
844 |
#: ../admin/classes/tmp/settings.php:314
|
|
|
845 |
msgid "Custom CSS"
|
846 |
+
msgstr "Произвольный CSS"
|
847 |
|
848 |
#: ../admin/classes/tmp/settings.php:348
|
849 |
msgid "Activity Content"
|
860 |
|
861 |
#: ../admin/classes/tmp/settings.php:399
|
862 |
msgid "BuddyPress Activity"
|
863 |
+
msgstr "Активность BuddyPress"
|
864 |
|
865 |
#: ../admin/classes/tmp/settings.php:401
|
866 |
msgid "insert new likes in buddyPress activity page"
|
872 |
|
873 |
#: ../admin/classes/tmp/settings.php:504
|
874 |
msgid "Users who have liked this topic:"
|
875 |
+
msgstr "Пользователи, которым понравилась эта тема:"
|
876 |
|
877 |
#: ../admin/logs.php:17 ../admin/logs.php:142 ../admin/logs.php:212
|
878 |
#: ../admin/logs.php:263 ../admin/logs.php:337 ../admin/logs.php:390
|
882 |
|
883 |
#: ../admin/logs.php:80
|
884 |
msgid "Are you sure to remove this item?!"
|
885 |
+
msgstr "Вы уверены, что хотите удалить этот элемент?"
|
886 |
|
887 |
#: ../admin/logs.php:138 ../admin/logs.php:259 ../admin/logs.php:386
|
888 |
#: ../admin/logs.php:508
|
910 |
|
911 |
#: ../admin/logs.php:153
|
912 |
msgid "Post Title"
|
913 |
+
msgstr "Заголовок поста"
|
914 |
|
915 |
#: ../admin/logs.php:154 ../admin/logs.php:276 ../admin/logs.php:402
|
916 |
#: ../admin/logs.php:524
|
917 |
msgid "Date / Time"
|
918 |
+
msgstr "Дата и время"
|
919 |
|
920 |
#: ../admin/logs.php:155 ../admin/logs.php:277 ../admin/logs.php:403
|
921 |
#: ../admin/logs.php:525
|
922 |
msgid "IP"
|
923 |
+
msgstr "IP"
|
924 |
|
925 |
#: ../admin/logs.php:156 ../admin/logs.php:278 ../admin/logs.php:404
|
926 |
#: ../admin/logs.php:526
|
941 |
|
942 |
#: ../admin/logs.php:273
|
943 |
msgid "Comment ID"
|
944 |
+
msgstr "ID комментария"
|
945 |
|
946 |
#: ../admin/logs.php:274
|
947 |
msgid "Comment Author"
|
948 |
+
msgstr "Автор комментария"
|
949 |
|
950 |
#: ../admin/logs.php:275
|
951 |
msgid "Comment Text"
|
952 |
+
msgstr "Текст комментария"
|
953 |
|
954 |
#: ../admin/logs.php:400
|
955 |
msgid "Activity ID"
|
966 |
|
967 |
#: ../admin/logs.php:522
|
968 |
msgid "Topic ID"
|
969 |
+
msgstr "ID темы"
|
970 |
|
971 |
#: ../admin/logs.php:523
|
972 |
msgid "Topic Title"
|
973 |
+
msgstr "Заголовок темы"
|
974 |
|
975 |
#: ../admin/stats.php:30
|
976 |
msgid "Welcome to WP ULike Statistics!"
|
977 |
+
msgstr "Добро пожаловать в статистику WP ULike!"
|
978 |
|
979 |
#: ../admin/stats.php:31
|
980 |
msgid "We have provided some useful statistics tools in this page:"
|
981 |
msgstr ""
|
982 |
+
"Мы предоставляем несколько полезных статистических инструментов на этой "
|
983 |
+
"странице:"
|
984 |
|
985 |
#: ../admin/stats.php:35
|
986 |
msgid "Get Started"
|
992 |
|
993 |
#: ../admin/stats.php:40
|
994 |
msgid "Other Tools"
|
995 |
+
msgstr "Другие инструменты"
|
996 |
|
997 |
#: ../admin/stats.php:49
|
998 |
msgid "Documentation"
|
1004 |
|
1005 |
#: ../admin/stats.php:54
|
1006 |
msgid "GitHub Repository"
|
1007 |
+
msgstr "GitHub репозиторий"
|
1008 |
|
1009 |
#: ../admin/stats.php:80
|
1010 |
msgid "Posts Likes Summary"
|
1028 |
|
1029 |
#: ../admin/stats.php:126
|
1030 |
msgid "Total Likes"
|
1031 |
+
msgstr "Всего лайков"
|
1032 |
|
1033 |
#: ../admin/stats.php:138
|
1034 |
msgid "Today"
|
1040 |
|
1041 |
#: ../admin/stats.php:148
|
1042 |
msgid "Week"
|
1043 |
+
msgstr "Неделя"
|
1044 |
|
1045 |
#: ../admin/stats.php:153
|
1046 |
msgid "Month"
|
1057 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1058 |
#: ../admin/stats.php:245
|
1059 |
msgid "View Logs"
|
1060 |
+
msgstr "Просмотреть журнал событий"
|
1061 |
|
1062 |
#: ../admin/stats.php:228 ../admin/stats.php:345
|
1063 |
msgid "Posts Likes Stats"
|
1067 |
#: ../admin/stats.php:246 ../admin/stats.php:277
|
1068 |
#, php-format
|
1069 |
msgid "In The Last %s Days"
|
1070 |
+
msgstr "За последние %s дней"
|
1071 |
|
1072 |
#: ../admin/stats.php:234 ../admin/stats.php:346
|
1073 |
msgid "Comments Likes Stats"
|
1083 |
|
1084 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1085 |
msgid "Likes Percent"
|
1086 |
+
msgstr "Процент лайков"
|
1087 |
|
1088 |
#: ../admin/stats.php:341
|
1089 |
msgid "Show on screen"
|
1103 |
|
1104 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1105 |
msgid "Limit"
|
1106 |
+
msgstr "Лимит"
|
1107 |
|
1108 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1109 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
1124 |
|
1125 |
#: ../inc/wp-functions.php:172
|
1126 |
msgid "WP ULike Activity"
|
1127 |
+
msgstr "Активность WP ULike"
|
1128 |
|
1129 |
#: ../inc/wp-functions.php:303
|
1130 |
msgid ""
|
1158 |
|
1159 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1160 |
msgid "This user has not made any likes."
|
1161 |
+
msgstr "Этот пользователь не может ставить лайки."
|
1162 |
|
1163 |
#: ../inc/wp-strings.php:3
|
1164 |
msgid "Allow To Like"
|
1165 |
+
msgstr "Разрешено лайкать"
|
1166 |
|
1167 |
#: ../inc/wp-strings.php:4
|
1168 |
msgid "Guests Only"
|
1169 |
+
msgstr "Только гости"
|
1170 |
|
1171 |
#: ../inc/wp-strings.php:5
|
1172 |
msgid "Registered Users Only"
|
1173 |
+
msgstr "Только зарегистрированные пользователи"
|
1174 |
|
1175 |
#: ../inc/wp-strings.php:6
|
1176 |
msgid "Registered Users And Guests"
|
1177 |
+
msgstr "Зарегистрированные пользователи и гости"
|
1178 |
|
1179 |
#: ../inc/wp-strings.php:7
|
1180 |
msgid "Who Is Allowed To Like?"
|
1181 |
+
msgstr "Кому разрешено лайкать?"
|
1182 |
|
1183 |
#: ../inc/wp-strings.php:8
|
1184 |
msgid "Filter Options:"
|
1186 |
|
1187 |
#: ../inc/wp-strings.php:9
|
1188 |
msgid "Sort Options:"
|
1189 |
+
msgstr "Параметры сортировки"
|
1190 |
|
1191 |
#: ../inc/wp-strings.php:11
|
1192 |
msgid "Dislike"
|
1193 |
+
msgstr "Не нравится"
|
1194 |
|
1195 |
#: ../inc/wp-strings.php:12
|
1196 |
msgid "Dislike Support"
|
1202 |
|
1203 |
#: ../inc/wp-strings.php:14
|
1204 |
msgid "Show Counter"
|
1205 |
+
msgstr "Показать счётчик"
|
1206 |
|
1207 |
#: ../inc/wp-strings.php:15
|
1208 |
msgid "Show tooltips"
|
1209 |
+
msgstr "Показать подсказки"
|
1210 |
|
1211 |
#: ../inc/wp-strings.php:16
|
1212 |
msgid "Alignment"
|
1230 |
|
1231 |
#: ../inc/wp-strings.php:21
|
1232 |
msgid "BuddyPress Notifications"
|
1233 |
+
msgstr "Оповещения BuddyPress"
|
1234 |
|
1235 |
#: ../inc/wp-strings.php:22
|
1236 |
msgid "Liker Attempts"
|
1266 |
|
1267 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:291
|
1268 |
msgid "You need to login in order to like this post: "
|
1269 |
+
msgstr "Вам нужно войти, чтобы лайкнуть этот пост:"
|
1270 |
|
1271 |
#: ../inc/wp-ulike.php:70 ../inc/wp-ulike.php:142 ../inc/wp-ulike.php:219
|
1272 |
#: ../inc/wp-ulike.php:291
|
1273 |
msgid "click here"
|
1274 |
+
msgstr "нажмите здесь"
|
1275 |
|
1276 |
#: ../inc/wp-ulike.php:142
|
1277 |
msgid "You need to login in order to like this comment: "
|
1278 |
+
msgstr "Вам нужно войти, чтобы лайкнуть этот комментарий:"
|
1279 |
|
1280 |
#: ../inc/wp-ulike.php:219
|
1281 |
msgid "You need to login in order to like this activity: "
|
1283 |
|
1284 |
#: ../inc/wp-ulike.php:343
|
1285 |
msgid "Error: This Method Is Not Exist!"
|
1286 |
+
msgstr "Ошибка: Этот метод не существует!"
|
1287 |
|
1288 |
#: ../wp-ulike.php:124
|
|
|
1289 |
msgid "Settings"
|
1290 |
+
msgstr "Настройки"
|
1291 |
|
1292 |
#: ../wp-ulike.php:125
|
|
|
1293 |
msgid "Statistics"
|
1294 |
+
msgstr "Статистика"
|
1295 |
|
1296 |
#: ../wp-ulike.php:126
|
1297 |
msgid "About"
|
1298 |
+
msgstr "Детали"
|
|
|
|
|
|
lang/wp-ulike-zh_CN.mo
CHANGED
Binary file
|
lang/wp-ulike-zh_CN.po
CHANGED
@@ -1,22 +1,23 @@
|
|
1 |
-
#
|
|
|
2 |
# Translators:
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _e
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPath-1: ..\n"
|
22 |
|
@@ -61,9 +62,8 @@ msgid "Reviews"
|
|
61 |
msgstr "点评"
|
62 |
|
63 |
#: ../admin/about.php:125
|
64 |
-
#, fuzzy
|
65 |
msgid "Introducing WP ULike"
|
66 |
-
msgstr "
|
67 |
|
68 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
69 |
msgid "About WP ULike"
|
@@ -81,9 +81,8 @@ msgstr ""
|
|
81 |
"持很多选项设置。"
|
82 |
|
83 |
#: ../admin/about.php:155
|
84 |
-
#, fuzzy
|
85 |
msgid "WP Ulike Extension"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: ../admin/about.php:156
|
89 |
msgid ""
|
@@ -122,9 +121,8 @@ msgid ""
|
|
122 |
msgstr ""
|
123 |
|
124 |
#: ../admin/about.php:195
|
125 |
-
#, fuzzy
|
126 |
msgid "myCRED Points Support"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: ../admin/about.php:196
|
130 |
msgid ""
|
@@ -235,9 +233,8 @@ msgid "Activity Likes Logs"
|
|
235 |
msgstr "活动喜欢日志"
|
236 |
|
237 |
#: ../admin/admin.php:171 ../admin/logs.php:509 ../admin/stats.php:45
|
238 |
-
#, fuzzy
|
239 |
msgid "Topics Likes Logs"
|
240 |
-
msgstr "
|
241 |
|
242 |
#: ../admin/classes/class-settings.php:17
|
243 |
msgid "Custom Settings"
|
@@ -252,9 +249,8 @@ msgid "Reset Settings"
|
|
252 |
msgstr "恢复默认设置"
|
253 |
|
254 |
#: ../admin/classes/class-settings.php:44
|
255 |
-
#, fuzzy
|
256 |
msgid "Similar Settings"
|
257 |
-
msgstr "
|
258 |
|
259 |
#: ../admin/classes/class-settings.php:48
|
260 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
@@ -531,7 +527,7 @@ msgstr ""
|
|
531 |
|
532 |
#: ../admin/classes/class-widget.php:288
|
533 |
msgid "Simple"
|
534 |
-
msgstr ""
|
535 |
|
536 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
537 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
@@ -548,9 +544,8 @@ msgid "Number of items to show:"
|
|
548 |
msgstr ""
|
549 |
|
550 |
#: ../admin/classes/class-widget.php:306
|
551 |
-
#, fuzzy
|
552 |
msgid "Thumbnail/Avatar size:"
|
553 |
-
msgstr "
|
554 |
|
555 |
#: ../admin/classes/class-widget.php:312
|
556 |
msgid "Profile URL:"
|
@@ -849,9 +844,8 @@ msgid "Loading Animation"
|
|
849 |
msgstr "加载动画"
|
850 |
|
851 |
#: ../admin/classes/tmp/settings.php:314
|
852 |
-
#, fuzzy
|
853 |
msgid "Custom CSS"
|
854 |
-
msgstr "
|
855 |
|
856 |
#: ../admin/classes/tmp/settings.php:348
|
857 |
msgid "Activity Content"
|
@@ -875,9 +869,8 @@ msgid "insert new likes in buddyPress activity page"
|
|
875 |
msgstr "插入喜欢按钮到buddyPress活动页面"
|
876 |
|
877 |
#: ../admin/classes/tmp/settings.php:469
|
878 |
-
#, fuzzy
|
879 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
880 |
-
msgstr "
|
881 |
|
882 |
#: ../admin/classes/tmp/settings.php:504
|
883 |
msgid "Users who have liked this topic:"
|
@@ -980,9 +973,8 @@ msgid "Topic ID"
|
|
980 |
msgstr ""
|
981 |
|
982 |
#: ../admin/logs.php:523
|
983 |
-
#, fuzzy
|
984 |
msgid "Topic Title"
|
985 |
-
msgstr "
|
986 |
|
987 |
#: ../admin/stats.php:30
|
988 |
msgid "Welcome to WP ULike Statistics!"
|
@@ -1061,9 +1053,8 @@ msgid "Total"
|
|
1061 |
msgstr "总计"
|
1062 |
|
1063 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
1064 |
-
#, fuzzy
|
1065 |
msgid "Top Likers"
|
1066 |
-
msgstr "
|
1067 |
|
1068 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1069 |
#: ../admin/stats.php:245
|
@@ -1089,9 +1080,8 @@ msgid "Activities Likes Stats"
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
#: ../admin/stats.php:246 ../admin/stats.php:348
|
1092 |
-
#, fuzzy
|
1093 |
msgid "Topics Likes Stats"
|
1094 |
-
msgstr "
|
1095 |
|
1096 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1097 |
msgid "Likes Percent"
|
@@ -1115,7 +1105,7 @@ msgstr ""
|
|
1115 |
|
1116 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1117 |
msgid "Limit"
|
1118 |
-
msgstr ""
|
1119 |
|
1120 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1121 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
@@ -1149,9 +1139,8 @@ msgid "Liking Content"
|
|
1149 |
msgstr ""
|
1150 |
|
1151 |
#: ../inc/wp-functions.php:312
|
1152 |
-
#, fuzzy
|
1153 |
msgid "Liked Content"
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
#: ../inc/wp-functions.php:313
|
1157 |
msgid "Unliking Content"
|
@@ -1166,9 +1155,8 @@ msgid "Recent Posts Liked"
|
|
1166 |
msgstr ""
|
1167 |
|
1168 |
#: ../inc/wp-functions.php:341 ../inc/wp-functions.php:410
|
1169 |
-
#, fuzzy
|
1170 |
msgid "Recent Comments Liked"
|
1171 |
-
msgstr "
|
1172 |
|
1173 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1174 |
msgid "This user has not made any likes."
|
@@ -1300,42 +1288,13 @@ msgid "Error: This Method Is Not Exist!"
|
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: ../wp-ulike.php:124
|
1303 |
-
#, fuzzy
|
1304 |
msgid "Settings"
|
1305 |
-
msgstr "
|
1306 |
|
1307 |
#: ../wp-ulike.php:125
|
1308 |
-
#, fuzzy
|
1309 |
msgid "Statistics"
|
1310 |
-
msgstr "
|
1311 |
|
1312 |
#: ../wp-ulike.php:126
|
1313 |
msgid "About"
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#~ msgid "Novelty Of WP ULike"
|
1317 |
-
#~ msgstr "WP ULike 的新特色"
|
1318 |
-
|
1319 |
-
#~ msgid "New setting panel"
|
1320 |
-
#~ msgstr "新设置面板"
|
1321 |
-
|
1322 |
-
#~ msgid "Better coding on plugin files"
|
1323 |
-
#~ msgstr "更好的文件编码"
|
1324 |
-
|
1325 |
-
#~ msgid "Buddypress likes support"
|
1326 |
-
#~ msgstr "Buddypress 喜欢支持"
|
1327 |
-
|
1328 |
-
#~ msgid "Likes logs support"
|
1329 |
-
#~ msgstr "喜欢日志支持"
|
1330 |
-
|
1331 |
-
#~ msgid "Overview"
|
1332 |
-
#~ msgstr "概述"
|
1333 |
-
|
1334 |
-
#~ msgid "Text After Like"
|
1335 |
-
#~ msgstr "[喜欢]后的文字"
|
1336 |
-
|
1337 |
-
#~ msgid "Like Me Again!"
|
1338 |
-
#~ msgstr "再喜欢一次!"
|
1339 |
-
|
1340 |
-
#~ msgid "Text After Unlike"
|
1341 |
-
#~ msgstr "[不喜欢]后的文字"
|
1 |
+
# Copyright (C) 2015 WP ULike
|
2 |
+
# This file is distributed under the same license as the WP ULike package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: WP ULike\n"
|
7 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-ulike\n"
|
8 |
+
"POT-Creation-Date: 2015-05-21 11:36+0330\n"
|
9 |
+
"PO-Revision-Date: 2017-01-20 21:23+0330\n"
|
10 |
+
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
11 |
+
"Language-Team: Chinese (China) (http://www.transifex.com/wp-translations/wp-"
|
12 |
+
"ulike/language/zh_CN/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: zh_CN\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"X-Generator: Poedit 1.5.4\n"
|
19 |
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
62 |
msgstr "点评"
|
63 |
|
64 |
#: ../admin/about.php:125
|
|
|
65 |
msgid "Introducing WP ULike"
|
66 |
+
msgstr ""
|
67 |
|
68 |
#: ../admin/about.php:132 ../admin/admin.php:179 ../admin/stats.php:36
|
69 |
msgid "About WP ULike"
|
81 |
"持很多选项设置。"
|
82 |
|
83 |
#: ../admin/about.php:155
|
|
|
84 |
msgid "WP Ulike Extension"
|
85 |
+
msgstr ""
|
86 |
|
87 |
#: ../admin/about.php:156
|
88 |
msgid ""
|
121 |
msgstr ""
|
122 |
|
123 |
#: ../admin/about.php:195
|
|
|
124 |
msgid "myCRED Points Support"
|
125 |
+
msgstr ""
|
126 |
|
127 |
#: ../admin/about.php:196
|
128 |
msgid ""
|
233 |
msgstr "活动喜欢日志"
|
234 |
|
235 |
#: ../admin/admin.php:171 ../admin/logs.php:509 ../admin/stats.php:45
|
|
|
236 |
msgid "Topics Likes Logs"
|
237 |
+
msgstr ""
|
238 |
|
239 |
#: ../admin/classes/class-settings.php:17
|
240 |
msgid "Custom Settings"
|
249 |
msgstr "恢复默认设置"
|
250 |
|
251 |
#: ../admin/classes/class-settings.php:44
|
|
|
252 |
msgid "Similar Settings"
|
253 |
+
msgstr ""
|
254 |
|
255 |
#: ../admin/classes/class-settings.php:48
|
256 |
#: ../admin/classes/tmp/settings.php:124 ../admin/classes/tmp/settings.php:215
|
527 |
|
528 |
#: ../admin/classes/class-widget.php:288
|
529 |
msgid "Simple"
|
530 |
+
msgstr "简单"
|
531 |
|
532 |
#: ../admin/classes/class-widget.php:289 ../admin/classes/tmp/settings.php:80
|
533 |
#: ../admin/classes/tmp/settings.php:186 ../admin/classes/tmp/settings.php:334
|
544 |
msgstr ""
|
545 |
|
546 |
#: ../admin/classes/class-widget.php:306
|
|
|
547 |
msgid "Thumbnail/Avatar size:"
|
548 |
+
msgstr ""
|
549 |
|
550 |
#: ../admin/classes/class-widget.php:312
|
551 |
msgid "Profile URL:"
|
844 |
msgstr "加载动画"
|
845 |
|
846 |
#: ../admin/classes/tmp/settings.php:314
|
|
|
847 |
msgid "Custom CSS"
|
848 |
+
msgstr "自定义CSS"
|
849 |
|
850 |
#: ../admin/classes/tmp/settings.php:348
|
851 |
msgid "Activity Content"
|
869 |
msgstr "插入喜欢按钮到buddyPress活动页面"
|
870 |
|
871 |
#: ../admin/classes/tmp/settings.php:469
|
|
|
872 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
873 |
+
msgstr ""
|
874 |
|
875 |
#: ../admin/classes/tmp/settings.php:504
|
876 |
msgid "Users who have liked this topic:"
|
973 |
msgstr ""
|
974 |
|
975 |
#: ../admin/logs.php:523
|
|
|
976 |
msgid "Topic Title"
|
977 |
+
msgstr ""
|
978 |
|
979 |
#: ../admin/stats.php:30
|
980 |
msgid "Welcome to WP ULike Statistics!"
|
1053 |
msgstr "总计"
|
1054 |
|
1055 |
#: ../admin/stats.php:192 ../admin/stats.php:351
|
|
|
1056 |
msgid "Top Likers"
|
1057 |
+
msgstr ""
|
1058 |
|
1059 |
#: ../admin/stats.php:227 ../admin/stats.php:233 ../admin/stats.php:239
|
1060 |
#: ../admin/stats.php:245
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#: ../admin/stats.php:246 ../admin/stats.php:348
|
|
|
1083 |
msgid "Topics Likes Stats"
|
1084 |
+
msgstr ""
|
1085 |
|
1086 |
#: ../admin/stats.php:277 ../admin/stats.php:349
|
1087 |
msgid "Likes Percent"
|
1105 |
|
1106 |
#: ../inc/classes/class-mycred.php:209 ../inc/classes/class-mycred.php:226
|
1107 |
msgid "Limit"
|
1108 |
+
msgstr "限量"
|
1109 |
|
1110 |
#: ../inc/classes/class-mycred.php:214 ../inc/classes/class-mycred.php:231
|
1111 |
#: ../inc/classes/class-mycred.php:243 ../inc/classes/class-mycred.php:255
|
1139 |
msgstr ""
|
1140 |
|
1141 |
#: ../inc/wp-functions.php:312
|
|
|
1142 |
msgid "Liked Content"
|
1143 |
+
msgstr ""
|
1144 |
|
1145 |
#: ../inc/wp-functions.php:313
|
1146 |
msgid "Unliking Content"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: ../inc/wp-functions.php:341 ../inc/wp-functions.php:410
|
|
|
1158 |
msgid "Recent Comments Liked"
|
1159 |
+
msgstr ""
|
1160 |
|
1161 |
#: ../inc/wp-functions.php:386 ../inc/wp-functions.php:427
|
1162 |
msgid "This user has not made any likes."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: ../wp-ulike.php:124
|
|
|
1291 |
msgid "Settings"
|
1292 |
+
msgstr "设置"
|
1293 |
|
1294 |
#: ../wp-ulike.php:125
|
|
|
1295 |
msgid "Statistics"
|
1296 |
+
msgstr "统计"
|
1297 |
|
1298 |
#: ../wp-ulike.php:126
|
1299 |
msgid "About"
|
1300 |
+
msgstr "关于"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://alimir.ir
|
|
4 |
Author: Ali Mirzaei
|
5 |
Tags: wp ulike, wordpress youlike plugin, like button, rating, vote, voting, most liked posts, wordpress like page, wordpress like post, wordpress vote page, wordpress vote post, wp like page, wp like post, wp like plugin, buddypress like system, buddypress votes, comment like system, voting button, wordpress, buddypress, statistics, stats likes, bbpress, bbPress like, WP-Translations, forums, community, credit, points, mycred, users, ultimate member
|
6 |
Requires at least: 3.5
|
7 |
-
Tested up to: 4.
|
8 |
-
Stable tag: 2.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -13,7 +13,7 @@ WP ULike enables you to add Ajax Like button into your WP and allowing your visi
|
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
WP ULike plugin
|
17 |
|
18 |
= More Information =
|
19 |
* Visit Our <a target="_blank" href="http://preview.alimir.ir/developer/wp-ulike/">Home Page</a>.
|
@@ -32,6 +32,7 @@ WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordP
|
|
32 |
* Compatible with WP version 3.5 & above.
|
33 |
* Added automatically with filtering options (no Code required).
|
34 |
* Different logging method options.
|
|
|
35 |
* Shortcode support.
|
36 |
* Support custom templates with separate variables.
|
37 |
* Comment likes support.
|
@@ -178,6 +179,17 @@ endif;
|
|
178 |
|
179 |
== Changelog ==
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
= 2.4 =
|
182 |
* Added: Buddypress comments support in activity stream.
|
183 |
* Added: Widget period option. (All, Year, Month, Week, Yesterday, Today).
|
@@ -191,7 +203,7 @@ endif;
|
|
191 |
* Removed: 'wp_ulike_get_version' function and replced it with WP_ULIKE_VERSION constant.
|
192 |
* Removed: wp-ulike-rtl.css file and mixed it with wp-ulike.css
|
193 |
* Updated: French Language File.
|
194 |
-
* Updated:
|
195 |
* Updated: About Page Information.
|
196 |
|
197 |
= 2.3 =
|
@@ -350,6 +362,9 @@ endif;
|
|
350 |
|
351 |
== Upgrade Notice ==
|
352 |
|
|
|
|
|
|
|
353 |
= 2.4 =
|
354 |
Hey Guys. Approximately 5 months, We haven't had any update! Yeah It's a long time :( The reason for this delay was my misery business and busy time of working on my final thesis in university. I apologize for this delay and unanswered support requests in wordpress forums and sented emails. Finally, I found a free time to working on "WP ULike" & some other of my plugins and answer the support requests. The first release of this work is WP ULike 2.4 with some new options and bug fixes. Hope to enjoy this version and I really excited to working on the premium version of WP ULike with many amazing abilitites as soon as possible. Best regards, Alimir.
|
355 |
|
4 |
Author: Ali Mirzaei
|
5 |
Tags: wp ulike, wordpress youlike plugin, like button, rating, vote, voting, most liked posts, wordpress like page, wordpress like post, wordpress vote page, wordpress vote post, wp like page, wp like post, wp like plugin, buddypress like system, buddypress votes, comment like system, voting button, wordpress, buddypress, statistics, stats likes, bbpress, bbPress like, WP-Translations, forums, community, credit, points, mycred, users, ultimate member
|
6 |
Requires at least: 3.5
|
7 |
+
Tested up to: 4.7.1
|
8 |
+
Stable tag: 2.4.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
WP ULike is a WordPress plugin that also supports BuddyPress, bbPress and a number of other plugins. It aims to be a comprehensive "Like" system for your site and enables site users to like a wide range of content types, including posts, forum topics and replies, comments and activity updates. It's very simple to use and supports many options and full Statistics tools. Also, All are free :)
|
17 |
|
18 |
= More Information =
|
19 |
* Visit Our <a target="_blank" href="http://preview.alimir.ir/developer/wp-ulike/">Home Page</a>.
|
32 |
* Compatible with WP version 3.5 & above.
|
33 |
* Added automatically with filtering options (no Code required).
|
34 |
* Different logging method options.
|
35 |
+
* Notifications System. (Custom toast messages after each activity)
|
36 |
* Shortcode support.
|
37 |
* Support custom templates with separate variables.
|
38 |
* Comment likes support.
|
179 |
|
180 |
== Changelog ==
|
181 |
|
182 |
+
= 2.4.1 =
|
183 |
+
* Added: Notifications System. (Custom toast messages after each activity)
|
184 |
+
* Fixed: bbPress replys bug.
|
185 |
+
* Fixed: Settings UI tabs crash.
|
186 |
+
* Updated: Portuguese Language File.
|
187 |
+
* Updated: Dutch Language File.
|
188 |
+
* Updated: Chinese Language File.
|
189 |
+
* Updated: Russian Language File.
|
190 |
+
* Updated: Greek Language File.
|
191 |
+
* Updated: Persian Language File.
|
192 |
+
|
193 |
= 2.4 =
|
194 |
* Added: Buddypress comments support in activity stream.
|
195 |
* Added: Widget period option. (All, Year, Month, Week, Yesterday, Today).
|
203 |
* Removed: 'wp_ulike_get_version' function and replced it with WP_ULIKE_VERSION constant.
|
204 |
* Removed: wp-ulike-rtl.css file and mixed it with wp-ulike.css
|
205 |
* Updated: French Language File.
|
206 |
+
* Updated: Portuguese Language File.
|
207 |
* Updated: About Page Information.
|
208 |
|
209 |
= 2.3 =
|
362 |
|
363 |
== Upgrade Notice ==
|
364 |
|
365 |
+
= 2.4.1 =
|
366 |
+
Hello. Approximately 1 year, We haven't had any update! :( The reason for this delay was my military service. I apologize for this delay and unanswered support requests in wordpress forums and sented emails.
|
367 |
+
|
368 |
= 2.4 =
|
369 |
Hey Guys. Approximately 5 months, We haven't had any update! Yeah It's a long time :( The reason for this delay was my misery business and busy time of working on my final thesis in university. I apologize for this delay and unanswered support requests in wordpress forums and sented emails. Finally, I found a free time to working on "WP ULike" & some other of my plugins and answer the support requests. The first release of this work is WP ULike 2.4 with some new options and bug fixes. Hope to enjoy this version and I really excited to working on the premium version of WP ULike with many amazing abilitites as soon as possible. Best regards, Alimir.
|
370 |
|
wp-ulike.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name:WP ULike
|
4 |
Plugin URI: http://preview.alimir.ir/developer/wp-ulike/
|
5 |
Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
|
6 |
-
Version: 2.4
|
7 |
Author: Ali Mirzaei
|
8 |
Author URI: http://about.alimir.ir
|
9 |
Text Domain: wp-ulike
|
@@ -12,7 +12,7 @@ License: GPL2
|
|
12 |
*/
|
13 |
|
14 |
//Do not change this value
|
15 |
-
define( 'WP_ULIKE_VERSION' , '2.4' );
|
16 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
17 |
define( 'WP_ULIKE_DB_VERSION' , '1.3' );
|
18 |
|
3 |
Plugin Name:WP ULike
|
4 |
Plugin URI: http://preview.alimir.ir/developer/wp-ulike/
|
5 |
Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
|
6 |
+
Version: 2.4.1
|
7 |
Author: Ali Mirzaei
|
8 |
Author URI: http://about.alimir.ir
|
9 |
Text Domain: wp-ulike
|
12 |
*/
|
13 |
|
14 |
//Do not change this value
|
15 |
+
define( 'WP_ULIKE_VERSION' , '2.4.1' );
|
16 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
17 |
define( 'WP_ULIKE_DB_VERSION' , '1.3' );
|
18 |
|