Version Description
- Added: New option to remove the plugin's css and js file on certain pages.
- Added: New attributes support in wp ulike shortcode for all types.
- Added: Many optimization & improvements in wp ulike core.
- Added: New triggers on ulike process.
- Added: Some new hooks in voting templates.
- Updated: Statistics scripts to the latest versions.
- Modified: The statistics functionality with better optimizations.
- Modified: ULike Widget functionality and make it more flexible and optimized.
- Modified: Some old documents.
- Fixed: Some issues in options default values.
- Fixed: An issue with enqueue_script in logs page.
Download this release
Release Info
Developer | alimir |
Plugin | WP ULike |
Version | 3.0 |
Comparing to | |
See all releases |
Code changes from version 2.9.1 to 3.0
- admin/admin.php +23 -23
- admin/classes/class-charts.php +115 -120
- admin/classes/class-settings.php +0 -1
- admin/classes/class-widget.php +403 -256
- admin/classes/js/statistics.js +149 -142
- admin/classes/tmp/options.php +555 -0
- admin/classes/tmp/settings.php +0 -548
- admin/logs.php +2 -4
- admin/stats.php +4 -4
- assets/css/wp-ulike.css +3 -0
- assets/css/wp-ulike.min.css +1 -1
- {admin/classes → assets}/img/no-thumbnail.png +0 -0
- assets/js/wp-ulike.js +25 -17
- assets/js/wp-ulike.min.js +1 -1
- inc/classes/class-ulike.php +41 -0
- inc/wp-functions.php +62 -26
- inc/wp-script.php +0 -51
- inc/wp-templates.php +8 -2
- inc/wp-ulike.php +188 -174
- lang/wp-ulike-NO.mo +0 -0
- lang/wp-ulike-NO.po +732 -704
- lang/wp-ulike-ar.mo +0 -0
- lang/wp-ulike-ar.po +752 -709
- lang/wp-ulike-cs_CZ.mo +0 -0
- lang/wp-ulike-cs_CZ.po +732 -704
- lang/wp-ulike-de_DE.mo +0 -0
- lang/wp-ulike-de_DE.po +732 -704
- lang/wp-ulike-el.mo +0 -0
- lang/wp-ulike-el.po +732 -703
- lang/wp-ulike-en_US.mo +0 -0
- lang/wp-ulike-en_US.po +722 -695
- lang/wp-ulike-es_ES.mo +0 -0
- lang/wp-ulike-es_ES.po +732 -704
- lang/wp-ulike-fa_IR.mo +0 -0
- lang/wp-ulike-fa_IR.po +22 -34
admin/admin.php
CHANGED
@@ -66,33 +66,33 @@
|
|
66 |
//include setting class
|
67 |
require_once( WP_ULIKE_ADMIN_DIR . '/classes/class-settings.php' );
|
68 |
//include setting templates
|
69 |
-
require_once( WP_ULIKE_ADMIN_DIR . '/classes/tmp/
|
70 |
//activate general setting panel
|
71 |
$wp_ulike_setting = wp_ulike_create_settings_page(
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
);
|
88 |
|
89 |
//activate other settings panels
|
90 |
$wp_ulike_setting->apply_settings( array(
|
91 |
-
'wp_ulike_posts'
|
92 |
-
'wp_ulike_comments'
|
93 |
-
'wp_ulike_buddypress'
|
94 |
-
'wp_ulike_bbpress'
|
95 |
-
'wp_ulike_customize'
|
96 |
)
|
97 |
);
|
98 |
|
@@ -228,12 +228,12 @@
|
|
228 |
'callback' => 'wp_ulike_set_default_template',
|
229 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/default.svg'
|
230 |
),
|
231 |
-
'wpulike-heart'
|
232 |
'name' => __('Heart', WP_ULIKE_SLUG),
|
233 |
'callback' => 'wp_ulike_set_simple_heart_template',
|
234 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/heart.svg'
|
235 |
),
|
236 |
-
'wpulike-robeen'
|
237 |
'name' => __('Robeen', WP_ULIKE_SLUG),
|
238 |
'callback' => 'wp_ulike_set_robeen_template',
|
239 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/twitter.svg'
|
66 |
//include setting class
|
67 |
require_once( WP_ULIKE_ADMIN_DIR . '/classes/class-settings.php' );
|
68 |
//include setting templates
|
69 |
+
require_once( WP_ULIKE_ADMIN_DIR . '/classes/tmp/options.php' );
|
70 |
//activate general setting panel
|
71 |
$wp_ulike_setting = wp_ulike_create_settings_page(
|
72 |
+
'wp-ulike-settings',
|
73 |
+
__( 'WP ULike Settings', WP_ULIKE_SLUG ),
|
74 |
+
array(
|
75 |
+
'parent' => false,
|
76 |
+
'title' => __( 'WP ULike', WP_ULIKE_SLUG ),
|
77 |
+
'position' => 313,
|
78 |
+
'icon_url' => 'dashicons-wp-ulike'
|
79 |
+
),
|
80 |
+
array(
|
81 |
+
'wp_ulike_general' => wp_ulike_get_options_info('general')
|
82 |
+
),
|
83 |
+
array(
|
84 |
+
'tabs' => true,
|
85 |
+
'updated' => __('Settings saved.',WP_ULIKE_SLUG)
|
86 |
+
)
|
87 |
);
|
88 |
|
89 |
//activate other settings panels
|
90 |
$wp_ulike_setting->apply_settings( array(
|
91 |
+
'wp_ulike_posts' => apply_filters( 'wp_ulike_posts_settings' , wp_ulike_get_options_info('posts') ),
|
92 |
+
'wp_ulike_comments' => apply_filters( 'wp_ulike_comments_settings' , wp_ulike_get_options_info('comments') ),
|
93 |
+
'wp_ulike_buddypress' => apply_filters( 'wp_ulike_buddypress_settings', wp_ulike_get_options_info('buddypress') ),
|
94 |
+
'wp_ulike_bbpress' => apply_filters( 'wp_ulike_bbpress_settings' , wp_ulike_get_options_info('bbpress') ),
|
95 |
+
'wp_ulike_customize' => apply_filters( 'wp_ulike_customize_settings' , wp_ulike_get_options_info('customizer') )
|
96 |
)
|
97 |
);
|
98 |
|
228 |
'callback' => 'wp_ulike_set_default_template',
|
229 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/default.svg'
|
230 |
),
|
231 |
+
'wpulike-heart' => array(
|
232 |
'name' => __('Heart', WP_ULIKE_SLUG),
|
233 |
'callback' => 'wp_ulike_set_simple_heart_template',
|
234 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/heart.svg'
|
235 |
),
|
236 |
+
'wpulike-robeen' => array(
|
237 |
'name' => __('Robeen', WP_ULIKE_SLUG),
|
238 |
'callback' => 'wp_ulike_set_robeen_template',
|
239 |
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/twitter.svg'
|
admin/classes/class-charts.php
CHANGED
@@ -3,6 +3,13 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
3 |
|
4 |
class wp_ulike_stats extends wp_ulike_widget{
|
5 |
private $wpdb;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
/**
|
8 |
* Constructor
|
@@ -20,26 +27,26 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
20 |
* @author Alimir
|
21 |
* @since 2.0
|
22 |
* @updated 2.3
|
23 |
-
* @updated
|
24 |
* @return Void
|
25 |
*/
|
26 |
public function enqueue_script($hook)
|
27 |
{
|
28 |
-
$currentScreen = get_current_screen();
|
29 |
$get_option = get_option( 'wp_ulike_statistics_screen' );
|
30 |
-
|
31 |
-
// if ( $currentScreen->id != $hook )
|
|
|
|
|
32 |
|
33 |
// Register Script
|
34 |
-
|
35 |
'wp_ulike_stats',
|
36 |
WP_ULIKE_ADMIN_URL . '/classes/js/statistics.js',
|
37 |
array('jquery'),
|
38 |
null,
|
39 |
true
|
40 |
);
|
41 |
-
// Enqueue Script
|
42 |
-
wp_enqueue_script('wp_ulike_stats');
|
43 |
|
44 |
wp_localize_script( 'wp_ulike_stats', 'wp_ulike_statistics', array(
|
45 |
'posts_date_labels' => $this->posts_dataset('label'),
|
@@ -51,7 +58,8 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
51 |
'activities_dataset' => $this->activities_dataset('dataset'),
|
52 |
'topics_dataset' => $this->topics_dataset('dataset'),
|
53 |
'data_map' => $get_option['likers_map'] == 1 ? $this->data_map() : null
|
54 |
-
));
|
|
|
55 |
wp_enqueue_script('postbox');
|
56 |
}
|
57 |
|
@@ -198,17 +206,16 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
198 |
*/
|
199 |
public function get_all_data_date($table,$name){
|
200 |
$table_name = $this->wpdb->prefix . $table;
|
201 |
-
if($this->wpdb->get_var("SHOW TABLES LIKE '$table_name'") == $table_name) {
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
|
|
209 |
}
|
210 |
-
else
|
211 |
-
return 0;
|
212 |
}
|
213 |
|
214 |
|
@@ -218,42 +225,48 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
218 |
* @author Alimir
|
219 |
* @since 2.3
|
220 |
* @updated 2.6 //added new GeoIP system
|
|
|
221 |
* @return String
|
222 |
*/
|
223 |
-
public function data_map(){
|
224 |
-
|
225 |
-
$return_val =
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
|
|
|
|
|
|
|
|
247 |
|
248 |
foreach($return_val as $return){
|
249 |
//$cdata = strtolower(wp_ulike_get_geoip($return->get_user_ip,'code'));
|
250 |
-
$cdata = strtolower(getCountryFromIP($return->get_user_ip, "code"));
|
251 |
-
|
252 |
-
|
|
|
253 |
$country_data[$cdata] += $return->get_count_user_ip;
|
254 |
}
|
255 |
|
256 |
-
return json_encode($country_data);
|
257 |
}
|
258 |
|
259 |
/**
|
@@ -261,31 +274,40 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
261 |
*
|
262 |
* @author Alimir
|
263 |
* @since 2.3
|
|
|
264 |
* @return Array
|
265 |
*/
|
266 |
public function get_top_likers(){
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
}
|
290 |
|
291 |
/**
|
@@ -293,74 +315,47 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
|
|
293 |
*
|
294 |
* @author Alimir
|
295 |
* @since 2.6
|
|
|
296 |
* @return Array
|
297 |
*/
|
298 |
-
public function get_tops($type){
|
299 |
-
switch($type){
|
300 |
case 'top_posts':
|
301 |
-
return parent::most_liked_posts(
|
302 |
-
"numberOf" => 10,
|
303 |
-
"period" => 'all',
|
304 |
-
"sizeOf" => 32,
|
305 |
-
"trim" => 10,
|
306 |
-
"profile_url" => 'bp',
|
307 |
-
"show_count" => 1,
|
308 |
-
"show_thumb" => 0,
|
309 |
-
"before_item" => '<li>',
|
310 |
-
"after_item" => '</li>'
|
311 |
-
)
|
312 |
-
);
|
313 |
break;
|
314 |
case 'top_comments':
|
315 |
-
return parent::most_liked_comments(
|
316 |
-
"numberOf" => 10,
|
317 |
-
"period" => 'all',
|
318 |
-
"sizeOf" => 32,
|
319 |
-
"trim" => 10,
|
320 |
-
"profile_url" => 'bp',
|
321 |
-
"show_count" => 1,
|
322 |
-
"show_thumb" => 0,
|
323 |
-
"before_item" => '<li>',
|
324 |
-
"after_item" => '</li>'
|
325 |
-
)
|
326 |
-
);
|
327 |
break;
|
328 |
case 'top_activities':
|
329 |
-
return parent::most_liked_activities(
|
330 |
-
"numberOf" => 10,
|
331 |
-
"period" => 'all',
|
332 |
-
"sizeOf" => 32,
|
333 |
-
"trim" => 18,
|
334 |
-
"profile_url" => 'bp',
|
335 |
-
"show_count" => 1,
|
336 |
-
"show_thumb" => 0,
|
337 |
-
"before_item" => '<li>',
|
338 |
-
"after_item" => '</li>'
|
339 |
-
)
|
340 |
-
);
|
341 |
break;
|
342 |
case 'top_topics':
|
343 |
-
return parent::most_liked_topics(
|
344 |
-
"numberOf" => 10,
|
345 |
-
"period" => 'all',
|
346 |
-
"sizeOf" => 32,
|
347 |
-
"trim" => 10,
|
348 |
-
"profile_url" => 'bp',
|
349 |
-
"show_count" => 1,
|
350 |
-
"show_thumb" => 0,
|
351 |
-
"before_item" => '<li>',
|
352 |
-
"after_item" => '</li>'
|
353 |
-
)
|
354 |
-
);
|
355 |
break;
|
356 |
default:
|
357 |
return;
|
358 |
}
|
359 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
}
|
361 |
|
362 |
-
//
|
363 |
global $wp_ulike_stats;
|
364 |
-
$wp_ulike_stats =
|
365 |
|
366 |
}
|
3 |
|
4 |
class wp_ulike_stats extends wp_ulike_widget{
|
5 |
private $wpdb;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Instance of this class.
|
9 |
+
*
|
10 |
+
* @var object
|
11 |
+
*/
|
12 |
+
protected static $instance = null;
|
13 |
|
14 |
/**
|
15 |
* Constructor
|
27 |
* @author Alimir
|
28 |
* @since 2.0
|
29 |
* @updated 2.3
|
30 |
+
* @updated 3.0
|
31 |
* @return Void
|
32 |
*/
|
33 |
public function enqueue_script($hook)
|
34 |
{
|
35 |
+
// $currentScreen = get_current_screen();
|
36 |
$get_option = get_option( 'wp_ulike_statistics_screen' );
|
37 |
+
|
38 |
+
// if ( $currentScreen->id != $hook ) {
|
39 |
+
// return;
|
40 |
+
// }
|
41 |
|
42 |
// Register Script
|
43 |
+
wp_enqueue_script(
|
44 |
'wp_ulike_stats',
|
45 |
WP_ULIKE_ADMIN_URL . '/classes/js/statistics.js',
|
46 |
array('jquery'),
|
47 |
null,
|
48 |
true
|
49 |
);
|
|
|
|
|
50 |
|
51 |
wp_localize_script( 'wp_ulike_stats', 'wp_ulike_statistics', array(
|
52 |
'posts_date_labels' => $this->posts_dataset('label'),
|
58 |
'activities_dataset' => $this->activities_dataset('dataset'),
|
59 |
'topics_dataset' => $this->topics_dataset('dataset'),
|
60 |
'data_map' => $get_option['likers_map'] == 1 ? $this->data_map() : null
|
61 |
+
));
|
62 |
+
|
63 |
wp_enqueue_script('postbox');
|
64 |
}
|
65 |
|
206 |
*/
|
207 |
public function get_all_data_date($table,$name){
|
208 |
$table_name = $this->wpdb->prefix . $table;
|
209 |
+
if( $this->wpdb->get_var("SHOW TABLES LIKE '$table_name'") == $table_name ) {
|
210 |
+
return $this->wpdb->get_var( "
|
211 |
+
SELECT SUM(meta_value)
|
212 |
+
FROM ".$this->wpdb->prefix."$table
|
213 |
+
WHERE meta_key LIKE '$name'
|
214 |
+
" );
|
215 |
+
}
|
216 |
+
else {
|
217 |
+
return ;
|
218 |
}
|
|
|
|
|
219 |
}
|
220 |
|
221 |
|
225 |
* @author Alimir
|
226 |
* @since 2.3
|
227 |
* @updated 2.6 //added new GeoIP system
|
228 |
+
* @updated 3.0
|
229 |
* @return String
|
230 |
*/
|
231 |
+
public function data_map( $country_data = array() ){
|
232 |
+
|
233 |
+
if ( false === ( $return_val = get_transient( 'wp_ulike_get_likers_dispersal_statistics' ) ) ) {
|
234 |
+
// Make new sql request
|
235 |
+
$return_val = $this->wpdb->get_results( "
|
236 |
+
SELECT T.user_ip AS get_user_ip , SUM(T.count_user_ip) AS get_count_user_ip
|
237 |
+
FROM(
|
238 |
+
SELECT ip AS user_ip, count(ip) AS count_user_ip
|
239 |
+
FROM ".$this->wpdb->prefix."ulike
|
240 |
+
GROUP BY user_ip
|
241 |
+
UNION ALL
|
242 |
+
SELECT ip AS user_ip, count(ip) AS count_user_ip
|
243 |
+
FROM ".$this->wpdb->prefix."ulike_activities
|
244 |
+
GROUP BY user_ip
|
245 |
+
UNION ALL
|
246 |
+
SELECT ip AS user_ip, count(ip) AS count_user_ip
|
247 |
+
FROM ".$this->wpdb->prefix."ulike_comments
|
248 |
+
GROUP BY user_ip
|
249 |
+
UNION ALL
|
250 |
+
SELECT ip AS user_ip, count(ip) AS count_user_ip
|
251 |
+
FROM ".$this->wpdb->prefix."ulike_forums
|
252 |
+
GROUP BY user_ip
|
253 |
+
) AS T
|
254 |
+
GROUP BY get_user_ip
|
255 |
+
" );
|
256 |
+
// Set transient
|
257 |
+
set_transient( 'wp_ulike_get_likers_dispersal_statistics', $return_val, 24 * HOUR_IN_SECONDS );
|
258 |
+
}
|
259 |
|
260 |
foreach($return_val as $return){
|
261 |
//$cdata = strtolower(wp_ulike_get_geoip($return->get_user_ip,'code'));
|
262 |
+
$cdata = strtolower( getCountryFromIP( $return->get_user_ip, "code" ) );
|
263 |
+
if( ! isset( $country_data[$cdata] ) ) {
|
264 |
+
$country_data[$cdata] = 0;
|
265 |
+
}
|
266 |
$country_data[$cdata] += $return->get_count_user_ip;
|
267 |
}
|
268 |
|
269 |
+
return json_encode( $country_data );
|
270 |
}
|
271 |
|
272 |
/**
|
274 |
*
|
275 |
* @author Alimir
|
276 |
* @since 2.3
|
277 |
+
* @since 3.0
|
278 |
* @return Array
|
279 |
*/
|
280 |
public function get_top_likers(){
|
281 |
+
|
282 |
+
if ( false === ( $result = get_transient( 'wp_ulike_get_top_likers' ) ) ) {
|
283 |
+
// Make new sql request
|
284 |
+
$result = $this->wpdb->get_results( "
|
285 |
+
SELECT T.user_id, SUM(T.CountUser) AS SumUser, T.ip
|
286 |
+
FROM(
|
287 |
+
SELECT user_id, count(user_id) AS CountUser, ip
|
288 |
+
FROM ".$this->wpdb->prefix."ulike
|
289 |
+
GROUP BY user_id
|
290 |
+
UNION ALL
|
291 |
+
SELECT user_id, count(user_id) AS CountUser, ip
|
292 |
+
FROM ".$this->wpdb->prefix."ulike_activities
|
293 |
+
GROUP BY user_id
|
294 |
+
UNION ALL
|
295 |
+
SELECT user_id, count(user_id) AS CountUser, ip
|
296 |
+
FROM ".$this->wpdb->prefix."ulike_comments
|
297 |
+
GROUP BY user_id
|
298 |
+
UNION ALL
|
299 |
+
SELECT user_id, count(user_id) AS CountUser, ip
|
300 |
+
FROM ".$this->wpdb->prefix."ulike_forums
|
301 |
+
GROUP BY user_id
|
302 |
+
) AS T
|
303 |
+
GROUP BY T.user_id
|
304 |
+
ORDER BY SumUser DESC LIMIT 10
|
305 |
+
" );
|
306 |
+
// Set transient
|
307 |
+
set_transient( 'wp_ulike_get_top_likers', $result, 24 * HOUR_IN_SECONDS );
|
308 |
+
}
|
309 |
+
|
310 |
+
return $result;
|
311 |
}
|
312 |
|
313 |
/**
|
315 |
*
|
316 |
* @author Alimir
|
317 |
* @since 2.6
|
318 |
+
* @since 3.0
|
319 |
* @return Array
|
320 |
*/
|
321 |
+
public function get_tops( $type ){
|
322 |
+
switch( $type ){
|
323 |
case 'top_posts':
|
324 |
+
return parent::most_liked_posts();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
break;
|
326 |
case 'top_comments':
|
327 |
+
return parent::most_liked_comments();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
break;
|
329 |
case 'top_activities':
|
330 |
+
return parent::most_liked_activities();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
break;
|
332 |
case 'top_topics':
|
333 |
+
return parent::most_liked_topics();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
break;
|
335 |
default:
|
336 |
return;
|
337 |
}
|
338 |
}
|
339 |
+
|
340 |
+
/**
|
341 |
+
* Return an instance of this class.
|
342 |
+
*
|
343 |
+
* @return object A single instance of this class.
|
344 |
+
*/
|
345 |
+
public static function get_instance() {
|
346 |
+
|
347 |
+
// If the single instance hasn't been set, set it now.
|
348 |
+
if ( null == self::$instance ) {
|
349 |
+
self::$instance = new self;
|
350 |
+
}
|
351 |
+
|
352 |
+
return self::$instance;
|
353 |
+
}
|
354 |
+
|
355 |
}
|
356 |
|
357 |
+
// global variable
|
358 |
global $wp_ulike_stats;
|
359 |
+
$wp_ulike_stats = wp_ulike_stats::get_instance();
|
360 |
|
361 |
}
|
admin/classes/class-settings.php
CHANGED
@@ -50,7 +50,6 @@ class wp_ulike_settings {
|
|
50 |
'<li>'.__('If you select <strong>"Do Not Log"</strong> method: Any data logs can\'t save, There is no limitation in the like/dislike, unlike/undislike capacity do not work', WP_ULIKE_SLUG).'</li>'.
|
51 |
'<li>'.__('If you select <strong>"Logged By Cookie"</strong> method: Any data logs can\'t save, The like/dislike condition will be limited by SetCookie, unlike/undislike capacity do not work', WP_ULIKE_SLUG).'</li>'.
|
52 |
'<li>'.__('If you select <strong>"Logged By IP"</strong> method: Data logs will save for all users, the convey of like/dislike condition will check by user IP', WP_ULIKE_SLUG).'</li>'.
|
53 |
-
'<li>'.__('If you select <strong>"Logged By Cookie & IP"</strong> method: Data logs will save for all users, the convey of like/dislike condition will check by user IP & SetCookie', WP_ULIKE_SLUG).'</li>'.
|
54 |
'<li>'.__('If you select <strong>"Logged By Username"</strong> method: data logs only is saved for registered users, the convey of like/dislike condition will check by username, There is no permission for guest users to unlike/undislike', WP_ULIKE_SLUG).'</li>
|
55 |
</ul>'.
|
56 |
|
50 |
'<li>'.__('If you select <strong>"Do Not Log"</strong> method: Any data logs can\'t save, There is no limitation in the like/dislike, unlike/undislike capacity do not work', WP_ULIKE_SLUG).'</li>'.
|
51 |
'<li>'.__('If you select <strong>"Logged By Cookie"</strong> method: Any data logs can\'t save, The like/dislike condition will be limited by SetCookie, unlike/undislike capacity do not work', WP_ULIKE_SLUG).'</li>'.
|
52 |
'<li>'.__('If you select <strong>"Logged By IP"</strong> method: Data logs will save for all users, the convey of like/dislike condition will check by user IP', WP_ULIKE_SLUG).'</li>'.
|
|
|
53 |
'<li>'.__('If you select <strong>"Logged By Username"</strong> method: data logs only is saved for registered users, the convey of like/dislike condition will check by username, There is no permission for guest users to unlike/undislike', WP_ULIKE_SLUG).'</li>
|
54 |
</ul>'.
|
55 |
|
admin/classes/class-widget.php
CHANGED
@@ -22,37 +22,55 @@ class wp_ulike_widget extends WP_Widget {
|
|
22 |
* @updated 2.4
|
23 |
* @return String
|
24 |
*/
|
25 |
-
public function most_liked_posts(array $
|
26 |
global $wpdb;
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
foreach ($posts as $post) {
|
46 |
$post_title = stripslashes($post->post_title);
|
47 |
-
$permalink
|
48 |
$post_count = $post->meta_value;
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
}
|
|
|
|
|
56 |
}
|
57 |
|
58 |
/**
|
@@ -64,40 +82,58 @@ class wp_ulike_widget extends WP_Widget {
|
|
64 |
* @updated 2.4
|
65 |
* @return String
|
66 |
*/
|
67 |
-
public function most_liked_comments(array $
|
68 |
global $wpdb;
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
foreach ($comments as $comment) {
|
88 |
-
$comment_author
|
89 |
-
$post_permalink
|
90 |
-
$post_title
|
91 |
-
$comment_permalink
|
92 |
$comment_likes_count = $comment->meta_value;
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
}
|
|
|
|
|
101 |
}
|
102 |
|
103 |
/**
|
@@ -109,37 +145,54 @@ class wp_ulike_widget extends WP_Widget {
|
|
109 |
* @updated 2.4
|
110 |
* @return String
|
111 |
*/
|
112 |
-
public function last_posts_liked_by_current_user(array $
|
113 |
global $wpdb,$user_ID,$wp_user_IP;
|
114 |
|
115 |
-
$
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
if($likes
|
126 |
foreach ($likes as $like) {
|
127 |
-
$permalink
|
128 |
-
$post_title
|
129 |
-
$post_count
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
}
|
136 |
}
|
137 |
else{
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
}
|
142 |
-
|
|
|
143 |
}
|
144 |
|
145 |
/**
|
@@ -150,36 +203,54 @@ class wp_ulike_widget extends WP_Widget {
|
|
150 |
* @updated 2.4
|
151 |
* @return String
|
152 |
*/
|
153 |
-
public function most_liked_topics(array $
|
154 |
global $wpdb;
|
155 |
-
|
156 |
-
$request = "SELECT posts.ID, posts.post_title, posts.post_content, meta.meta_value
|
157 |
-
FROM
|
158 |
-
".$wpdb->prefix."posts AS posts,
|
159 |
-
".$wpdb->prefix."postmeta AS meta,
|
160 |
-
".$wpdb->prefix."ulike_forums AS likes
|
161 |
-
WHERE
|
162 |
-
posts.ID = meta.post_ID
|
163 |
-
AND meta.post_ID = likes.topic_id
|
164 |
-
AND posts.post_status = 'publish'
|
165 |
-
AND meta.meta_key = '_topicliked'
|
166 |
-
".$this->period($settings['period'])."
|
167 |
-
GROUP BY posts.ID
|
168 |
-
ORDER BY CAST( meta.meta_value AS SIGNED ) DESC LIMIT ".$settings['numberOf']."
|
169 |
-
";
|
170 |
-
|
171 |
-
$posts = $wpdb->get_results($request);
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
foreach ($posts as $post) {
|
174 |
-
$post_title
|
175 |
-
$permalink
|
176 |
-
$post_count
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
}
|
|
|
|
|
183 |
}
|
184 |
|
185 |
/**
|
@@ -191,43 +262,63 @@ class wp_ulike_widget extends WP_Widget {
|
|
191 |
* @updated 2.6 //added post counter value
|
192 |
* @return String
|
193 |
*/
|
194 |
-
public function most_liked_activities(array $
|
195 |
global $wpdb;
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
$bp_prefix = 'base_prefix';
|
199 |
-
else
|
200 |
-
$bp_prefix = 'prefix';
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
215 |
|
216 |
foreach ($activities as $activity) {
|
217 |
-
$activity_permalink
|
218 |
-
$activity_action
|
219 |
-
|
220 |
-
$activity_action = $activity->action;
|
221 |
-
$post_count = $activity->meta_value;
|
222 |
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
echo $settings['after_item'];
|
230 |
}
|
|
|
|
|
231 |
}
|
232 |
|
233 |
/**
|
@@ -239,61 +330,83 @@ class wp_ulike_widget extends WP_Widget {
|
|
239 |
* @updated 2.4
|
240 |
* @return String
|
241 |
*/
|
242 |
-
public function most_liked_users(array $
|
243 |
global $wpdb;
|
244 |
-
|
245 |
-
$
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
|
283 |
-
if($
|
284 |
-
$return_profile_url = bp_core_get_user_domain($
|
285 |
-
}
|
286 |
-
|
287 |
-
um_fetch_user($like->user_id);
|
288 |
$return_profile_url = um_user_profile_url();
|
289 |
}
|
290 |
|
291 |
-
if($get_user_info
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
}
|
296 |
}
|
|
|
|
|
297 |
}
|
298 |
|
299 |
/**
|
@@ -303,12 +416,13 @@ class wp_ulike_widget extends WP_Widget {
|
|
303 |
* @since 2.3
|
304 |
* @return String
|
305 |
*/
|
306 |
-
public function get_post_thumbnail($id
|
307 |
$thumbnail = get_the_post_thumbnail( $id, array( $sizeOf, $sizeOf), array( 'class' => 'wp_ulike_thumbnail' ) );
|
308 |
-
if($thumbnail != '')
|
309 |
-
|
310 |
-
else
|
311 |
-
|
|
|
312 |
}
|
313 |
|
314 |
/**
|
@@ -320,18 +434,18 @@ class wp_ulike_widget extends WP_Widget {
|
|
320 |
*/
|
321 |
public function period($period){
|
322 |
switch ($period) {
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
}
|
336 |
}
|
337 |
|
@@ -345,39 +459,44 @@ class wp_ulike_widget extends WP_Widget {
|
|
345 |
* @return String
|
346 |
*/
|
347 |
public function widget( $args, $instance ) {
|
348 |
-
$title
|
349 |
-
$type
|
350 |
-
$style
|
351 |
|
352 |
$settings = array(
|
353 |
-
"numberOf"
|
354 |
-
|
355 |
-
"sizeOf"
|
356 |
-
"trim"
|
357 |
-
"profile_url"
|
358 |
-
"show_count"
|
359 |
-
"show_thumb"
|
360 |
-
"before_item"
|
361 |
-
"after_item"
|
362 |
);
|
363 |
|
364 |
echo $args['before_widget'];
|
365 |
-
|
366 |
-
|
|
|
|
|
|
|
367 |
echo '<ul class="most_liked_'.$type.' wp_ulike_style_'.$style.'">';
|
368 |
-
if($type == "post")
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
|
|
380 |
echo '</ul>';
|
|
|
381 |
echo $args['after_widget'];
|
382 |
}
|
383 |
|
@@ -387,16 +506,29 @@ class wp_ulike_widget extends WP_Widget {
|
|
387 |
* @author Alimir
|
388 |
* @since 1.1
|
389 |
* @updated 2.3
|
|
|
390 |
* @return String
|
391 |
*/
|
392 |
public function form( $instance ) {
|
393 |
//Set up some default widget settings.
|
394 |
-
$defaults = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
$instance = wp_parse_args( (array) $instance, $defaults );
|
396 |
?>
|
397 |
<p>
|
398 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title:', WP_ULIKE_SLUG); ?></label>
|
399 |
-
<input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>"
|
400 |
</p>
|
401 |
|
402 |
<p>
|
@@ -411,6 +543,11 @@ class wp_ulike_widget extends WP_Widget {
|
|
411 |
</select>
|
412 |
</p>
|
413 |
|
|
|
|
|
|
|
|
|
|
|
414 |
<p>
|
415 |
<label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e('Period:', WP_ULIKE_SLUG); ?></label>
|
416 |
<select name="<?php echo $this->get_field_name( 'period' ); ?>" style="width:100%;">
|
@@ -433,21 +570,9 @@ class wp_ulike_widget extends WP_Widget {
|
|
433 |
|
434 |
<p>
|
435 |
<label for="<?php echo $this->get_field_id( 'trim' ); ?>"><?php _e('Title Trim (Length):', WP_ULIKE_SLUG); ?></label>
|
436 |
-
<input
|
437 |
-
<span class="range-value" style="display: block; margin-top:5px; text-align:center; font-size:18px;"><?php echo $instance['trim']; ?></span>
|
438 |
-
</p>
|
439 |
-
|
440 |
-
<p>
|
441 |
-
<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e('Number of items to show:', WP_ULIKE_SLUG); ?></label>
|
442 |
-
<input type="range" min="1" max="100" class="input-range" id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" value="<?php echo $instance['count']; ?>" style="width:100%;" />
|
443 |
-
<span class="range-value" style="display: block; margin-top:5px; text-align:center; font-size:18px;"><?php echo $instance['count']; ?></span>
|
444 |
-
</p>
|
445 |
-
|
446 |
-
<p>
|
447 |
-
<label for="<?php echo $this->get_field_id( 'size' ); ?>"><?php _e('Thumbnail/Avatar size:', WP_ULIKE_SLUG); ?><small> (min. 8)</small></label>
|
448 |
-
<input type="range" min="8" max="512" step="2" class="input-range" id="<?php echo $this->get_field_id( 'size' ); ?>" name="<?php echo $this->get_field_name( 'size' ); ?>" value="<?php echo $instance['size']; ?>" style="width:100%;" />
|
449 |
-
<span class="range-value" style="display: block; margin-top:5px; text-align:center; font-size:18px;"><?php echo $instance['size']; ?></span>
|
450 |
</p>
|
|
|
451 |
|
452 |
<p>
|
453 |
<label for="<?php echo $this->get_field_id( 'profile_url' ); ?>"><?php _e('Profile URL:', WP_ULIKE_SLUG); ?></label>
|
@@ -466,14 +591,11 @@ class wp_ulike_widget extends WP_Widget {
|
|
466 |
<input class="checkbox" type="checkbox" id="<?php echo $this->get_field_id( 'show_thumb' ); ?>" name="<?php echo $this->get_field_name( 'show_thumb' ); ?>" <?php if($instance['show_thumb'] == true) echo 'checked="checked"'; ?> />
|
467 |
<label for="<?php echo $this->get_field_id( 'show_thumb' ); ?>"><?php _e('Activate Thumbnail/Avatar', WP_ULIKE_SLUG); ?></label>
|
468 |
</p>
|
469 |
-
|
470 |
-
<
|
471 |
-
|
472 |
-
$('
|
473 |
-
|
474 |
-
});
|
475 |
-
});
|
476 |
-
</script>
|
477 |
|
478 |
<?php
|
479 |
}
|
@@ -484,22 +606,47 @@ class wp_ulike_widget extends WP_Widget {
|
|
484 |
* @author Alimir
|
485 |
* @since 1.1
|
486 |
* @updated 2.3
|
|
|
487 |
* @return String
|
488 |
*/
|
489 |
public function update( $new_instance, $old_instance ) {
|
490 |
$instance = $old_instance;
|
491 |
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
$instance['profile_url'] = strip_tags( $new_instance['profile_url'] );
|
500 |
-
$instance['show_count']
|
501 |
-
$instance['show_thumb']
|
502 |
|
503 |
return $instance;
|
504 |
}
|
|
|
505 |
}
|
22 |
* @updated 2.4
|
23 |
* @return String
|
24 |
*/
|
25 |
+
public function most_liked_posts( $args = array(), $result = '' ) {
|
26 |
global $wpdb;
|
27 |
+
|
28 |
+
$defaults = array(
|
29 |
+
"numberOf" => 10,
|
30 |
+
"period" => 'all',
|
31 |
+
"sizeOf" => 32,
|
32 |
+
"trim" => 10,
|
33 |
+
"profile_url" => '',
|
34 |
+
"show_count" => true,
|
35 |
+
"show_thumb" => false,
|
36 |
+
"before_item" => '<li>',
|
37 |
+
"after_item" => '</li>'
|
38 |
+
);
|
39 |
+
// Parse args
|
40 |
+
$settings = wp_parse_args( $args, $defaults );
|
41 |
+
// Extract settings
|
42 |
+
extract($settings);
|
43 |
+
|
44 |
+
if ( false === ( $posts = get_transient( 'wp_ulike_get_most_liked_posts' ) ) ) {
|
45 |
+
// Make new sql request
|
46 |
+
$posts = $wpdb->get_results( "
|
47 |
+
SELECT p.ID, p.post_title, p.post_content, m.meta_value
|
48 |
+
FROM $wpdb->posts AS p, $wpdb->postmeta AS m, ".$wpdb->prefix."ulike AS l
|
49 |
+
WHERE p.ID = m.post_ID
|
50 |
+
AND m.post_ID = l.post_id
|
51 |
+
AND p.post_status = 'publish'
|
52 |
+
AND m.meta_key = '_liked'
|
53 |
+
".$this->period($period)."
|
54 |
+
GROUP BY p.ID
|
55 |
+
ORDER BY CAST( m.meta_value AS SIGNED ) DESC LIMIT $numberOf
|
56 |
+
" );
|
57 |
+
|
58 |
+
set_transient( 'wp_ulike_get_most_liked_posts', $posts, 6 * HOUR_IN_SECONDS );
|
59 |
+
}
|
60 |
|
61 |
foreach ($posts as $post) {
|
62 |
$post_title = stripslashes($post->post_title);
|
63 |
+
$permalink = get_permalink($post->ID);
|
64 |
$post_count = $post->meta_value;
|
65 |
|
66 |
+
$result .= $before_item;
|
67 |
+
$result .= $show_thumb ? $this->get_post_thumbnail( $post->ID, $sizeOf ) : '';
|
68 |
+
$result .= '<a href="' . $permalink . '" title="' . $post_title.'" rel="nofollow">'. wp_trim_words( $post_title, $num_words = $trim, $more = null ) . '</a>';
|
69 |
+
$result .= $show_count ? ' <span class="wp_counter_span">'.wp_ulike_format_number($post_count).'</span>' : '';
|
70 |
+
$result .= $after_item;
|
71 |
}
|
72 |
+
|
73 |
+
return $result;
|
74 |
}
|
75 |
|
76 |
/**
|
82 |
* @updated 2.4
|
83 |
* @return String
|
84 |
*/
|
85 |
+
public function most_liked_comments( $args = array(), $result = '' ) {
|
86 |
global $wpdb;
|
87 |
+
|
88 |
+
$defaults = array(
|
89 |
+
"numberOf" => 10,
|
90 |
+
"period" => 'all',
|
91 |
+
"sizeOf" => 32,
|
92 |
+
"trim" => 10,
|
93 |
+
"profile_url" => '',
|
94 |
+
"show_count" => true,
|
95 |
+
"show_thumb" => false,
|
96 |
+
"before_item" => '<li>',
|
97 |
+
"after_item" => '</li>'
|
98 |
+
);
|
99 |
+
// Parse args
|
100 |
+
$settings = wp_parse_args( $args, $defaults );
|
101 |
+
// Extract settings
|
102 |
+
extract($settings);
|
103 |
+
|
104 |
+
if ( false === ( $comments = get_transient( 'wp_ulike_get_most_liked_comments' ) ) ) {
|
105 |
+
// Make new sql request
|
106 |
+
$comments = $wpdb->get_results( "
|
107 |
+
SELECT *
|
108 |
+
FROM $wpdb->comments AS c, $wpdb->commentmeta AS m, ".$wpdb->prefix."ulike_comments AS l
|
109 |
+
WHERE c.comment_ID = m.comment_id
|
110 |
+
AND m.comment_id = l.comment_id
|
111 |
+
AND c.comment_approved = '1'
|
112 |
+
AND m.meta_key = '_commentliked'
|
113 |
+
".$this->period($period)."
|
114 |
+
GROUP BY c.comment_ID
|
115 |
+
ORDER BY CAST( m.meta_value AS SIGNED ) DESC LIMIT $numberOf
|
116 |
+
" );
|
117 |
+
|
118 |
+
set_transient( 'wp_ulike_get_most_liked_comments', $comments, 6 * HOUR_IN_SECONDS );
|
119 |
+
}
|
120 |
|
121 |
foreach ($comments as $comment) {
|
122 |
+
$comment_author = stripslashes($comment->comment_author);
|
123 |
+
$post_permalink = get_permalink($comment->comment_post_ID);
|
124 |
+
$post_title = get_the_title($comment->comment_post_ID);
|
125 |
+
$comment_permalink = get_permalink($comment->comment_ID);
|
126 |
$comment_likes_count = $comment->meta_value;
|
127 |
|
128 |
+
$result .= $before_item;
|
129 |
+
$result .= $show_thumb ? get_avatar( $comment->comment_author_email, $sizeOf ) : '';
|
130 |
+
$result .= '<span class="comment-author-link">' . $comment_author . '</span> ' . __('on',WP_ULIKE_SLUG);
|
131 |
+
$result .= ' <a href="' . $post_permalink . '#comment-' . $comment->comment_ID . '" title="' . $post_title.'" rel="nofollow">' . wp_trim_words( $post_title, $num_words = $trim, $more = null ) . '</a>';
|
132 |
+
$result .= $show_count ? ' <span class="wp_counter_span">'.wp_ulike_format_number($comment_likes_count).'</span>' : '';
|
133 |
+
$result .= $after_item;
|
134 |
}
|
135 |
+
|
136 |
+
return $result;
|
137 |
}
|
138 |
|
139 |
/**
|
145 |
* @updated 2.4
|
146 |
* @return String
|
147 |
*/
|
148 |
+
public function last_posts_liked_by_current_user( $args = array(), $result = '' ) {
|
149 |
global $wpdb,$user_ID,$wp_user_IP;
|
150 |
|
151 |
+
$defaults = array(
|
152 |
+
"numberOf" => 10,
|
153 |
+
"period" => 'all',
|
154 |
+
"sizeOf" => 32,
|
155 |
+
"trim" => 10,
|
156 |
+
"profile_url" => '',
|
157 |
+
"show_count" => true,
|
158 |
+
"show_thumb" => false,
|
159 |
+
"before_item" => '<li>',
|
160 |
+
"after_item" => '</li>'
|
161 |
+
);
|
162 |
+
// Parse args
|
163 |
+
$settings = wp_parse_args( $args, $defaults );
|
164 |
+
// Extract settings
|
165 |
+
extract($settings);
|
166 |
+
|
167 |
+
$likes = $wpdb->get_results( "
|
168 |
+
SELECT U.post_id, P.meta_value AS counter
|
169 |
+
FROM ".$wpdb->prefix."ulike AS U,
|
170 |
+
$wpdb->postmeta AS P
|
171 |
+
WHERE ( U.ip LIKE '$wp_user_IP' OR U.user_id = $user_ID )
|
172 |
+
AND U.post_id = P.post_id AND meta_key='_liked'
|
173 |
+
GROUP BY U.post_id
|
174 |
+
ORDER BY MAX(U.date_time) DESC LIMIT $numberOf
|
175 |
+
" );
|
176 |
|
177 |
+
if( $likes !== 0 ){
|
178 |
foreach ($likes as $like) {
|
179 |
+
$permalink = get_permalink($like->post_id);
|
180 |
+
$post_title = get_the_title($like->post_id);
|
181 |
+
$post_count = $like->counter;
|
182 |
+
$result .= $before_item;
|
183 |
+
$result .= $show_thumb ? $this->get_post_thumbnail( $like->post_id, $sizeOf ) : '';
|
184 |
+
$result .= '<a href="' . $permalink . '" title="' . $post_title.'" rel="nofollow">' . wp_trim_words( $post_title, $num_words = $trim, $more = null ) . '</a>';
|
185 |
+
$result .= $show_count ? ' <span class="wp_counter_span">'.wp_ulike_format_number( $post_count ).'</span>' : '';
|
186 |
+
$result .= $after_item;
|
187 |
}
|
188 |
}
|
189 |
else{
|
190 |
+
$result .= $before_item;
|
191 |
+
$result .= __( 'you haven\'t liked any post yet!',WP_ULIKE_SLUG );
|
192 |
+
$result .= $after_item;
|
193 |
}
|
194 |
+
|
195 |
+
return $result;
|
196 |
}
|
197 |
|
198 |
/**
|
203 |
* @updated 2.4
|
204 |
* @return String
|
205 |
*/
|
206 |
+
public function most_liked_topics( $args = array(), $result = '' ) {
|
207 |
global $wpdb;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
+
$defaults = array(
|
210 |
+
"numberOf" => 10,
|
211 |
+
"period" => 'all',
|
212 |
+
"sizeOf" => 32,
|
213 |
+
"trim" => 10,
|
214 |
+
"profile_url" => '',
|
215 |
+
"show_count" => true,
|
216 |
+
"show_thumb" => false,
|
217 |
+
"before_item" => '<li>',
|
218 |
+
"after_item" => '</li>'
|
219 |
+
);
|
220 |
+
// Parse args
|
221 |
+
$settings = wp_parse_args( $args, $defaults );
|
222 |
+
// Extract settings
|
223 |
+
extract($settings);
|
224 |
+
|
225 |
+
if ( false === ( $posts = get_transient( 'wp_ulike_get_most_liked_topics' ) ) ) {
|
226 |
+
// Make new sql request
|
227 |
+
$posts = $wpdb->get_results( "
|
228 |
+
SELECT p.ID, p.post_title, p.post_content, m.meta_value
|
229 |
+
FROM $wpdb->posts AS p, $wpdb->postmeta AS m, ".$wpdb->prefix."ulike_forums AS l
|
230 |
+
WHERE p.ID = m.post_ID
|
231 |
+
AND m.post_ID = l.topic_id
|
232 |
+
AND p.post_status = 'publish'
|
233 |
+
AND m.meta_key = '_topicliked'
|
234 |
+
".$this->period($period)."
|
235 |
+
GROUP BY p.ID
|
236 |
+
ORDER BY CAST( m.meta_value AS SIGNED ) DESC LIMIT $numberOf
|
237 |
+
" );
|
238 |
+
|
239 |
+
set_transient( 'wp_ulike_get_most_liked_topics', $posts, 6 * HOUR_IN_SECONDS );
|
240 |
+
}
|
241 |
+
|
242 |
foreach ($posts as $post) {
|
243 |
+
$post_title = empty($post->post_title) ? $post->post_content : stripslashes($post->post_title);
|
244 |
+
$permalink = get_permalink($post->ID);
|
245 |
+
$post_count = $post->meta_value;
|
246 |
+
|
247 |
+
$result .= $before_item;
|
248 |
+
$result .= '<a href="' . $permalink . '" title="' . $post_title.'" rel="nofollow">'. wp_trim_words( $post_title, $num_words = $trim, $more = null ) . '</a>';
|
249 |
+
$result .= $show_count ? ' <span class="wp_counter_span">'.wp_ulike_format_number($post_count).'</span>' : '';
|
250 |
+
$result .= $after_item;
|
251 |
}
|
252 |
+
|
253 |
+
return $result;
|
254 |
}
|
255 |
|
256 |
/**
|
262 |
* @updated 2.6 //added post counter value
|
263 |
* @return String
|
264 |
*/
|
265 |
+
public function most_liked_activities( $args = array(), $result = '' ) {
|
266 |
global $wpdb;
|
267 |
+
|
268 |
+
$defaults = array(
|
269 |
+
"numberOf" => 10,
|
270 |
+
"period" => 'all',
|
271 |
+
"sizeOf" => 32,
|
272 |
+
"trim" => 18,
|
273 |
+
"profile_url" => '',
|
274 |
+
"show_count" => true,
|
275 |
+
"show_thumb" => false,
|
276 |
+
"before_item" => '<li>',
|
277 |
+
"after_item" => '</li>'
|
278 |
+
);
|
279 |
+
// Parse args
|
280 |
+
$settings = wp_parse_args( $args, $defaults );
|
281 |
+
// Extract settings
|
282 |
+
extract($settings);
|
283 |
+
|
284 |
+
if ( is_multisite() ) {
|
285 |
$bp_prefix = 'base_prefix';
|
286 |
+
} else {
|
287 |
+
$bp_prefix = 'prefix';
|
288 |
+
}
|
289 |
+
|
290 |
+
if ( false === ( $activities = get_transient( 'wp_ulike_get_most_liked_activities' ) ) ) {
|
291 |
+
// Make new sql request
|
292 |
+
$activities = $wpdb->get_results( "
|
293 |
+
SELECT * FROM
|
294 |
+
".$wpdb->$bp_prefix."bp_activity AS b,
|
295 |
+
".$wpdb->$bp_prefix."bp_activity_meta AS m,
|
296 |
+
".$wpdb->prefix."ulike_activities AS l
|
297 |
+
WHERE b.id = m.activity_id
|
298 |
+
AND m.activity_id = l.activity_id
|
299 |
+
AND m.meta_key = '_activityliked'
|
300 |
+
".$this->period($period)."
|
301 |
+
GROUP BY b.id
|
302 |
+
ORDER BY CAST( m.meta_value AS SIGNED ) DESC LIMIT $numberOf
|
303 |
+
" );
|
304 |
+
|
305 |
+
set_transient( 'wp_ulike_get_most_liked_activities', $activities, 6 * HOUR_IN_SECONDS );
|
306 |
+
}
|
307 |
|
308 |
foreach ($activities as $activity) {
|
309 |
+
$activity_permalink = bp_activity_get_permalink( $activity->activity_id );
|
310 |
+
$activity_action = ! empty( $activity->content ) ? $activity->content : $activity->action;
|
311 |
+
$post_count = $activity->meta_value;
|
|
|
|
|
312 |
|
313 |
+
$result .= $before_item;
|
314 |
+
$result .= '<a href="' . $activity_permalink . '" rel="nofollow">';
|
315 |
+
$result .= wp_trim_words( $activity_action, $num_words = $trim, $more = null );
|
316 |
+
$result .= '</a>';
|
317 |
+
$result .= $show_count ? ' <span class="wp_counter_span">'.wp_ulike_format_number($post_count).'</span>' : '';
|
318 |
+
$result .= $after_item;
|
|
|
319 |
}
|
320 |
+
|
321 |
+
return $result;
|
322 |
}
|
323 |
|
324 |
/**
|
330 |
* @updated 2.4
|
331 |
* @return String
|
332 |
*/
|
333 |
+
public function most_liked_users( $args = array(), $result = '' ) {
|
334 |
global $wpdb;
|
335 |
+
|
336 |
+
$defaults = array(
|
337 |
+
"numberOf" => 10,
|
338 |
+
"period" => 'all',
|
339 |
+
"sizeOf" => 32,
|
340 |
+
"trim" => 10,
|
341 |
+
"profile_url" => 'bp',
|
342 |
+
"show_count" => true,
|
343 |
+
"show_thumb" => false,
|
344 |
+
"before_item" => '<li>',
|
345 |
+
"after_item" => '</li>'
|
346 |
+
);
|
347 |
+
// Parse args
|
348 |
+
$settings = wp_parse_args( $args, $defaults );
|
349 |
+
// Extract settings
|
350 |
+
extract($settings);
|
351 |
+
|
352 |
+
if ( false === ( $likers = get_transient( 'wp_ulike_get_most_likers' ) ) ) {
|
353 |
+
// Make new sql request
|
354 |
+
$likers = $wpdb->get_results( "
|
355 |
+
SELECT T.user_id, SUM(T.CountUser) AS SumUser
|
356 |
+
FROM(
|
357 |
+
SELECT user_id, count(user_id) AS CountUser
|
358 |
+
FROM ".$wpdb->prefix."ulike
|
359 |
+
WHERE user_id BETWEEN 1 AND 999999
|
360 |
+
".$this->period($period)."
|
361 |
+
GROUP BY user_id
|
362 |
+
UNION ALL
|
363 |
+
SELECT user_id, count(user_id) AS CountUser
|
364 |
+
FROM ".$wpdb->prefix."ulike_activities
|
365 |
+
WHERE user_id BETWEEN 1 AND 999999
|
366 |
+
".$this->period($period)."
|
367 |
+
GROUP BY user_id
|
368 |
+
UNION ALL
|
369 |
+
SELECT user_id, count(user_id) AS CountUser
|
370 |
+
FROM ".$wpdb->prefix."ulike_comments
|
371 |
+
WHERE user_id BETWEEN 1 AND 999999
|
372 |
+
".$this->period($period)."
|
373 |
+
GROUP BY user_id
|
374 |
+
UNION ALL
|
375 |
+
SELECT user_id, count(user_id) AS CountUser
|
376 |
+
FROM ".$wpdb->prefix."ulike_forums
|
377 |
+
WHERE user_id BETWEEN 1 AND 999999
|
378 |
+
".$this->period($period)."
|
379 |
+
GROUP BY user_id
|
380 |
+
) AS T
|
381 |
+
GROUP BY T.user_id
|
382 |
+
ORDER BY SumUser DESC LIMIT $numberOf
|
383 |
+
" );
|
384 |
+
|
385 |
+
set_transient( 'wp_ulike_get_most_likers', $likers, 6 * HOUR_IN_SECONDS );
|
386 |
+
}
|
387 |
+
|
388 |
+
foreach ($likers as $liker) {
|
389 |
+
$get_user_id = stripslashes($liker->user_id);
|
390 |
+
$get_user_info = get_userdata($get_user_id);
|
391 |
+
$get_likes_count = $liker->SumUser;
|
392 |
+
$return_profile_url = '#';
|
393 |
+
$echo_likes_count = $show_count ? ' ('.$get_likes_count . ' ' . __('Like',WP_ULIKE_SLUG).')' : '';
|
394 |
|
395 |
+
if( $profile_url == 'bp' && function_exists('bp_core_get_user_domain') ) {
|
396 |
+
$return_profile_url = bp_core_get_user_domain( $liker->user_id );
|
397 |
+
} elseif( $profile_url == 'um' && function_exists('um_fetch_user') ) {
|
398 |
+
um_fetch_user( $liker->user_id );
|
|
|
399 |
$return_profile_url = um_user_profile_url();
|
400 |
}
|
401 |
|
402 |
+
if( ! empty( $get_user_info ) ){
|
403 |
+
$result .= $before_item;
|
404 |
+
$result .= '<a href="'.$return_profile_url.'" class="user-tooltip" title="'.$get_user_info->display_name . $echo_likes_count.'">'.get_avatar( $get_user_info->user_email, $sizeOf, '' , 'avatar').'</a>';
|
405 |
+
$result .= $after_item;
|
406 |
}
|
407 |
}
|
408 |
+
|
409 |
+
return $result;
|
410 |
}
|
411 |
|
412 |
/**
|
416 |
* @since 2.3
|
417 |
* @return String
|
418 |
*/
|
419 |
+
public function get_post_thumbnail( $id, $sizeOf ){
|
420 |
$thumbnail = get_the_post_thumbnail( $id, array( $sizeOf, $sizeOf), array( 'class' => 'wp_ulike_thumbnail' ) );
|
421 |
+
if($thumbnail != ''){
|
422 |
+
return $thumbnail;
|
423 |
+
} else {
|
424 |
+
return '<img src="'.WP_ULIKE_ASSETS_URL.'/img/no-thumbnail.png" class="wp_ulike_thumbnail" alt="no-thumbnail" width="'.$sizeOf.'"/>';
|
425 |
+
}
|
426 |
}
|
427 |
|
428 |
/**
|
434 |
*/
|
435 |
public function period($period){
|
436 |
switch ($period) {
|
437 |
+
case "today":
|
438 |
+
return "AND DATE(date_time) = DATE(NOW())";
|
439 |
+
case "yesterday":
|
440 |
+
return "AND DATE(date_time) = DATE(subdate(current_date, 1))";
|
441 |
+
case "week":
|
442 |
+
return "AND week(DATE(date_time)) = week(DATE(NOW()))";
|
443 |
+
case "month":
|
444 |
+
return "AND month(DATE(date_time)) = month(DATE(NOW()))";
|
445 |
+
case "year":
|
446 |
+
return "AND year(DATE(date_time)) = year(DATE(NOW()))";
|
447 |
+
default:
|
448 |
+
return "";
|
449 |
}
|
450 |
}
|
451 |
|
459 |
* @return String
|
460 |
*/
|
461 |
public function widget( $args, $instance ) {
|
462 |
+
$title = apply_filters('widget_title', $instance['title'] );
|
463 |
+
$type = $instance['type'];
|
464 |
+
$style = $instance['style'];
|
465 |
|
466 |
$settings = array(
|
467 |
+
"numberOf" => $instance['count'],
|
468 |
+
"period" => $instance['period'],
|
469 |
+
"sizeOf" => $instance['size'],
|
470 |
+
"trim" => $instance['trim'],
|
471 |
+
"profile_url" => $instance['profile_url'],
|
472 |
+
"show_count" => $instance['show_count'],
|
473 |
+
"show_thumb" => $instance['show_thumb'],
|
474 |
+
"before_item" => '<li>',
|
475 |
+
"after_item" => '</li>'
|
476 |
);
|
477 |
|
478 |
echo $args['before_widget'];
|
479 |
+
|
480 |
+
if ( ! empty( $title ) ) {
|
481 |
+
echo $args['before_title'] . $title . $args['after_title'];
|
482 |
+
}
|
483 |
+
|
484 |
echo '<ul class="most_liked_'.$type.' wp_ulike_style_'.$style.'">';
|
485 |
+
if( $type == "post" ){
|
486 |
+
echo $this->most_liked_posts( $settings );
|
487 |
+
} elseif( $type == "comment" ){
|
488 |
+
echo $this->most_liked_comments( $settings );
|
489 |
+
} elseif( $type == "activity" ){
|
490 |
+
echo $this->most_liked_activities( $settings );
|
491 |
+
} elseif( $type == "topic" ){
|
492 |
+
echo $this->most_liked_topics( $settings );
|
493 |
+
} elseif( $type == "users" ){
|
494 |
+
echo $this->most_liked_users( $settings );
|
495 |
+
} elseif( $type == "last_posts_liked" ){
|
496 |
+
echo $this->last_posts_liked_by_current_user( $settings );
|
497 |
+
}
|
498 |
echo '</ul>';
|
499 |
+
|
500 |
echo $args['after_widget'];
|
501 |
}
|
502 |
|
506 |
* @author Alimir
|
507 |
* @since 1.1
|
508 |
* @updated 2.3
|
509 |
+
* @updated 3.0
|
510 |
* @return String
|
511 |
*/
|
512 |
public function form( $instance ) {
|
513 |
//Set up some default widget settings.
|
514 |
+
$defaults = array(
|
515 |
+
'title' => __('Most Liked', WP_ULIKE_SLUG),
|
516 |
+
'count' => 10,
|
517 |
+
'size' => 32,
|
518 |
+
'trim' => 10,
|
519 |
+
'profile_url' => 'bp',
|
520 |
+
'show_count' => false,
|
521 |
+
'show_thumb' => false,
|
522 |
+
'type' => 'post',
|
523 |
+
'style' => 'simple',
|
524 |
+
'period' => 'all'
|
525 |
+
);
|
526 |
+
// Make instance array
|
527 |
$instance = wp_parse_args( (array) $instance, $defaults );
|
528 |
?>
|
529 |
<p>
|
530 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title:', WP_ULIKE_SLUG); ?></label>
|
531 |
+
<input id="<?php echo $this->get_field_id( 'title' ); ?>" class="widefat" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" type="text">
|
532 |
</p>
|
533 |
|
534 |
<p>
|
543 |
</select>
|
544 |
</p>
|
545 |
|
546 |
+
<p>
|
547 |
+
<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e('Number of items to show:', WP_ULIKE_SLUG); ?></label>
|
548 |
+
<input id="<?php echo $this->get_field_id( 'count' ); ?>" class="tiny-text" name="<?php echo $this->get_field_name( 'count' ); ?>" value="<?php echo $instance['count']; ?>" step="1" min="1" size="3" type="number">
|
549 |
+
</p>
|
550 |
+
|
551 |
<p>
|
552 |
<label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e('Period:', WP_ULIKE_SLUG); ?></label>
|
553 |
<select name="<?php echo $this->get_field_name( 'period' ); ?>" style="width:100%;">
|
570 |
|
571 |
<p>
|
572 |
<label for="<?php echo $this->get_field_id( 'trim' ); ?>"><?php _e('Title Trim (Length):', WP_ULIKE_SLUG); ?></label>
|
573 |
+
<input id="<?php echo $this->get_field_name( 'trim' ); ?>" class="tiny-text" name="<?php echo $this->get_field_name( 'trim' ); ?>" value="<?php echo $instance['trim']; ?>" step="1" min="1" size="3" type="number">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
</p>
|
575 |
+
|
576 |
|
577 |
<p>
|
578 |
<label for="<?php echo $this->get_field_id( 'profile_url' ); ?>"><?php _e('Profile URL:', WP_ULIKE_SLUG); ?></label>
|
591 |
<input class="checkbox" type="checkbox" id="<?php echo $this->get_field_id( 'show_thumb' ); ?>" name="<?php echo $this->get_field_name( 'show_thumb' ); ?>" <?php if($instance['show_thumb'] == true) echo 'checked="checked"'; ?> />
|
592 |
<label for="<?php echo $this->get_field_id( 'show_thumb' ); ?>"><?php _e('Activate Thumbnail/Avatar', WP_ULIKE_SLUG); ?></label>
|
593 |
</p>
|
594 |
+
|
595 |
+
<p>
|
596 |
+
<label for="<?php echo $this->get_field_id( 'size' ); ?>"><?php _e('Thumbnail/Avatar size:', WP_ULIKE_SLUG); ?><small> (min. 8)</small></label>
|
597 |
+
<input id="<?php echo $this->get_field_id( 'size' ); ?>" class="tiny-text" name="<?php echo $this->get_field_name( 'size' ); ?>" value="<?php echo $instance['size']; ?>" step="1" min="8" size="3" type="number">
|
598 |
+
</p>
|
|
|
|
|
|
|
599 |
|
600 |
<?php
|
601 |
}
|
606 |
* @author Alimir
|
607 |
* @since 1.1
|
608 |
* @updated 2.3
|
609 |
+
* @updated 3.0
|
610 |
* @return String
|
611 |
*/
|
612 |
public function update( $new_instance, $old_instance ) {
|
613 |
$instance = $old_instance;
|
614 |
|
615 |
+
// Delete widgets transient
|
616 |
+
switch ( strip_tags( $new_instance['type'] ) ) {
|
617 |
+
case 'post':
|
618 |
+
delete_transient( 'wp_ulike_get_most_liked_posts' );
|
619 |
+
break;
|
620 |
+
|
621 |
+
case 'comment':
|
622 |
+
delete_transient( 'wp_ulike_get_most_liked_comments' );
|
623 |
+
break;
|
624 |
+
|
625 |
+
case 'activity':
|
626 |
+
delete_transient( 'wp_ulike_get_most_liked_activities' );
|
627 |
+
break;
|
628 |
+
|
629 |
+
case 'topic':
|
630 |
+
delete_transient( 'wp_ulike_get_most_liked_topics' );
|
631 |
+
break;
|
632 |
+
|
633 |
+
case 'users':
|
634 |
+
delete_transient( 'wp_ulike_get_most_likers' );
|
635 |
+
break;
|
636 |
+
}
|
637 |
+
|
638 |
+
$instance['title'] = strip_tags( $new_instance['title'] );
|
639 |
+
$instance['count'] = strip_tags( $new_instance['count'] );
|
640 |
+
$instance['type'] = strip_tags( $new_instance['type'] );
|
641 |
+
$instance['period'] = strip_tags( $new_instance['period'] );
|
642 |
+
$instance['style'] = strip_tags( $new_instance['style'] );
|
643 |
+
$instance['size'] = strip_tags( $new_instance['size'] );
|
644 |
+
$instance['trim'] = strip_tags( $new_instance['trim'] );
|
645 |
$instance['profile_url'] = strip_tags( $new_instance['profile_url'] );
|
646 |
+
$instance['show_count'] = isset($new_instance['show_count']) ? true : false;
|
647 |
+
$instance['show_thumb'] = isset($new_instance['show_thumb']) ? true : false;
|
648 |
|
649 |
return $instance;
|
650 |
}
|
651 |
+
|
652 |
}
|
admin/classes/js/statistics.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! WP ULike -
|
2 |
* http://wp-ulike.alimir.ir/
|
3 |
* Alimir 2017;
|
4 |
*/
|
@@ -10,14 +10,13 @@
|
|
10 |
/*!
|
11 |
* Chart.js
|
12 |
* http://chartjs.org/
|
13 |
-
* Version:
|
14 |
*
|
15 |
-
* Copyright
|
16 |
* Released under the MIT license
|
17 |
-
* https://github.com/
|
18 |
*/
|
19 |
-
(function(){"use strict";var t=this,i=t.Chart,e=function(t){this.canvas=t.canvas,this.ctx=t;this.width=t.canvas.width,this.height=t.canvas.height;return this.aspectRatio=this.width/this.height,s.retinaScale(this),this};e.defaults={global:{animation:!0,animationSteps:60,animationEasing:"easeOutQuart",showScale:!0,scaleOverride:!1,scaleSteps:null,scaleStepWidth:null,scaleStartValue:null,scaleLineColor:"rgba(0,0,0,.1)",scaleLineWidth:1,scaleShowLabels:!0,scaleLabel:"<%=value%>",scaleIntegersOnly:!0,scaleBeginAtZero:!1,scaleFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",scaleFontSize:12,scaleFontStyle:"normal",scaleFontColor:"#666",responsive:!1,maintainAspectRatio:!0,showTooltips:!0,customTooltips:!1,tooltipEvents:["mousemove","touchstart","touchmove","mouseout"],tooltipFillColor:"rgba(0,0,0,0.8)",tooltipFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",tooltipFontSize:14,tooltipFontStyle:"normal",tooltipFontColor:"#fff",tooltipTitleFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",tooltipTitleFontSize:14,tooltipTitleFontStyle:"bold",tooltipTitleFontColor:"#fff",tooltipYPadding:6,tooltipXPadding:6,tooltipCaretSize:8,tooltipCornerRadius:6,tooltipXOffset:10,tooltipTemplate:"<%if (label){%><%=label%>: <%}%><%= value %>",multiTooltipTemplate:"<%= value %>",multiTooltipKeyBackground:"#fff",onAnimationProgress:function(){},onAnimationComplete:function(){}}},e.types={};var s=e.helpers={},n=s.each=function(t,i,e){var s=Array.prototype.slice.call(arguments,3);if(t)if(t.length===+t.length){var n;for(n=0;n<t.length;n++)i.apply(e,[t[n],n].concat(s))}else for(var o in t)i.apply(e,[t[o],o].concat(s))},o=s.clone=function(t){var i={};return n(t,function(e,s){t.hasOwnProperty(s)&&(i[s]=e)}),i},a=s.extend=function(t){return n(Array.prototype.slice.call(arguments,1),function(i){n(i,function(e,s){i.hasOwnProperty(s)&&(t[s]=e)})}),t},h=s.merge=function(){var t=Array.prototype.slice.call(arguments,0);return t.unshift({}),a.apply(null,t)},l=s.indexOf=function(t,i){if(Array.prototype.indexOf)return t.indexOf(i);for(var e=0;e<t.length;e++)if(t[e]===i)return e;return-1},r=(s.where=function(t,i){var e=[];return s.each(t,function(t){i(t)&&e.push(t)}),e},s.findNextWhere=function(t,i,e){e||(e=-1);for(var s=e+1;s<t.length;s++){var n=t[s];if(i(n))return n}},s.findPreviousWhere=function(t,i,e){e||(e=t.length);for(var s=e-1;s>=0;s--){var n=t[s];if(i(n))return n}},s.inherits=function(t){var i=this,e=t&&t.hasOwnProperty("constructor")?t.constructor:function(){return i.apply(this,arguments)},s=function(){this.constructor=e};return s.prototype=i.prototype,e.prototype=new s,e.extend=r,t&&a(e.prototype,t),e.__super__=i.prototype,e}),c=s.noop=function(){},u=s.uid=function(){var t=0;return function(){return"chart-"+t++}}(),d=s.warn=function(t){window.console&&"function"==typeof window.console.warn&&console.warn(t)},p=s.amd="function"==typeof define&&define.amd,f=s.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},g=s.max=function(t){return Math.max.apply(Math,t)},m=s.min=function(t){return Math.min.apply(Math,t)},v=(s.cap=function(t,i,e){if(f(i)){if(t>i)return i}else if(f(e)&&e>t)return e;return t},s.getDecimalPlaces=function(t){return t%1!==0&&f(t)?t.toString().split(".")[1].length:0}),S=s.radians=function(t){return t*(Math.PI/180)},x=(s.getAngleFromPoint=function(t,i){var e=i.x-t.x,s=i.y-t.y,n=Math.sqrt(e*e+s*s),o=2*Math.PI+Math.atan2(s,e);return 0>e&&0>s&&(o+=2*Math.PI),{angle:o,distance:n}},s.aliasPixel=function(t){return t%2===0?0:.5}),y=(s.splineCurve=function(t,i,e,s){var n=Math.sqrt(Math.pow(i.x-t.x,2)+Math.pow(i.y-t.y,2)),o=Math.sqrt(Math.pow(e.x-i.x,2)+Math.pow(e.y-i.y,2)),a=s*n/(n+o),h=s*o/(n+o);return{inner:{x:i.x-a*(e.x-t.x),y:i.y-a*(e.y-t.y)},outer:{x:i.x+h*(e.x-t.x),y:i.y+h*(e.y-t.y)}}},s.calculateOrderOfMagnitude=function(t){return Math.floor(Math.log(t)/Math.LN10)}),C=(s.calculateScaleRange=function(t,i,e,s,n){var o=2,a=Math.floor(i/(1.5*e)),h=o>=a,l=g(t),r=m(t);l===r&&(l+=.5,r>=.5&&!s?r-=.5:l+=.5);for(var c=Math.abs(l-r),u=y(c),d=Math.ceil(l/(1*Math.pow(10,u)))*Math.pow(10,u),p=s?0:Math.floor(r/(1*Math.pow(10,u)))*Math.pow(10,u),f=d-p,v=Math.pow(10,u),S=Math.round(f/v);(S>a||a>2*S)&&!h;)if(S>a)v*=2,S=Math.round(f/v),S%1!==0&&(h=!0);else if(n&&u>=0){if(v/2%1!==0)break;v/=2,S=Math.round(f/v)}else v/=2,S=Math.round(f/v);return h&&(S=o,v=f/S),{steps:S,stepValue:v,min:p,max:p+S*v}},s.template=function(t,i){function e(t,i){var e=/\W/.test(t)?new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+t.replace(/[\r\t\n]/g," ").split("<%").join(" ").replace(/((^|%>)[^\t]*)'/g,"$1\r").replace(/\t=(.*?)%>/g,"',$1,'").split(" ").join("');").split("%>").join("p.push('").split("\r").join("\\'")+"');}return p.join('');"):s[t]=s[t];return i?e(i):e}if(t instanceof Function)return t(i);var s={};return e(t,i)}),w=(s.generateLabels=function(t,i,e,s){var o=new Array(i);return labelTemplateString&&n(o,function(i,n){o[n]=C(t,{value:e+s*(n+1)})}),o},s.easingEffects={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return-1*t*(t-2)},easeInOutQuad:function(t){return(t/=.5)<1?.5*t*t:-0.5*(--t*(t-2)-1)},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return 1*((t=t/1-1)*t*t+1)},easeInOutCubic:function(t){return(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return-1*((t=t/1-1)*t*t*t-1)},easeInOutQuart:function(t){return(t/=.5)<1?.5*t*t*t*t:-0.5*((t-=2)*t*t*t-2)},easeInQuint:function(t){return 1*(t/=1)*t*t*t*t},easeOutQuint:function(t){return 1*((t=t/1-1)*t*t*t*t+1)},easeInOutQuint:function(t){return(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},easeInSine:function(t){return-1*Math.cos(t/1*(Math.PI/2))+1},easeOutSine:function(t){return 1*Math.sin(t/1*(Math.PI/2))},easeInOutSine:function(t){return-0.5*(Math.cos(Math.PI*t/1)-1)},easeInExpo:function(t){return 0===t?1:1*Math.pow(2,10*(t/1-1))},easeOutExpo:function(t){return 1===t?1:1*(-Math.pow(2,-10*t/1)+1)},easeInOutExpo:function(t){return 0===t?0:1===t?1:(t/=.5)<1?.5*Math.pow(2,10*(t-1)):.5*(-Math.pow(2,-10*--t)+2)},easeInCirc:function(t){return t>=1?t:-1*(Math.sqrt(1-(t/=1)*t)-1)},easeOutCirc:function(t){return 1*Math.sqrt(1-(t=t/1-1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-0.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:1==(t/=1)?1:(e||(e=.3),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),-(s*Math.pow(2,10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e)))},easeOutElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:1==(t/=1)?1:(e||(e=.3),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),s*Math.pow(2,-10*t)*Math.sin(2*(1*t-i)*Math.PI/e)+1)},easeInOutElastic:function(t){var i=1.70158,e=0,s=1;return 0===t?0:2==(t/=.5)?1:(e||(e=.3*1.5),s<Math.abs(1)?(s=1,i=e/4):i=e/(2*Math.PI)*Math.asin(1/s),1>t?-.5*s*Math.pow(2,10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e):s*Math.pow(2,-10*(t-=1))*Math.sin(2*(1*t-i)*Math.PI/e)*.5+1)},easeInBack:function(t){var i=1.70158;return 1*(t/=1)*t*((i+1)*t-i)},easeOutBack:function(t){var i=1.70158;return 1*((t=t/1-1)*t*((i+1)*t+i)+1)},easeInOutBack:function(t){var i=1.70158;return(t/=.5)<1?.5*t*t*(((i*=1.525)+1)*t-i):.5*((t-=2)*t*(((i*=1.525)+1)*t+i)+2)},easeInBounce:function(t){return 1-w.easeOutBounce(1-t)},easeOutBounce:function(t){return(t/=1)<1/2.75?7.5625*t*t:2/2.75>t?1*(7.5625*(t-=1.5/2.75)*t+.75):2.5/2.75>t?1*(7.5625*(t-=2.25/2.75)*t+.9375):1*(7.5625*(t-=2.625/2.75)*t+.984375)},easeInOutBounce:function(t){return.5>t?.5*w.easeInBounce(2*t):.5*w.easeOutBounce(2*t-1)+.5}}),b=s.requestAnimFrame=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)}}(),P=(s.cancelAnimFrame=function(){return window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||window.oCancelAnimationFrame||window.msCancelAnimationFrame||function(t){return window.clearTimeout(t,1e3/60)}}(),s.animationLoop=function(t,i,e,s,n,o){var a=0,h=w[e]||w.linear,l=function(){a++;var e=a/i,r=h(e);t.call(o,r,e,a),s.call(o,r,e),i>a?o.animationFrame=b(l):n.apply(o)};b(l)},s.getRelativePosition=function(t){var i,e,s=t.originalEvent||t,n=t.currentTarget||t.srcElement,o=n.getBoundingClientRect();return s.touches?(i=s.touches[0].clientX-o.left,e=s.touches[0].clientY-o.top):(i=s.clientX-o.left,e=s.clientY-o.top),{x:i,y:e}},s.addEvent=function(t,i,e){t.addEventListener?t.addEventListener(i,e):t.attachEvent?t.attachEvent("on"+i,e):t["on"+i]=e}),L=s.removeEvent=function(t,i,e){t.removeEventListener?t.removeEventListener(i,e,!1):t.detachEvent?t.detachEvent("on"+i,e):t["on"+i]=c},k=(s.bindEvents=function(t,i,e){t.events||(t.events={}),n(i,function(i){t.events[i]=function(){e.apply(t,arguments)},P(t.chart.canvas,i,t.events[i])})},s.unbindEvents=function(t,i){n(i,function(i,e){L(t.chart.canvas,e,i)})}),F=s.getMaximumWidth=function(t){var i=t.parentNode;return i.clientWidth},R=s.getMaximumHeight=function(t){var i=t.parentNode;return i.clientHeight},T=(s.getMaximumSize=s.getMaximumWidth,s.retinaScale=function(t){var i=t.ctx,e=t.canvas.width,s=t.canvas.height;window.devicePixelRatio&&(i.canvas.style.width=e+"px",i.canvas.style.height=s+"px",i.canvas.height=s*window.devicePixelRatio,i.canvas.width=e*window.devicePixelRatio,i.scale(window.devicePixelRatio,window.devicePixelRatio))}),A=s.clear=function(t){t.ctx.clearRect(0,0,t.width,t.height)},M=s.fontString=function(t,i,e){return i+" "+t+"px "+e},W=s.longestText=function(t,i,e){t.font=i;var s=0;return n(e,function(i){var e=t.measureText(i).width;s=e>s?e:s}),s},z=s.drawRoundedRectangle=function(t,i,e,s,n,o){t.beginPath(),t.moveTo(i+o,e),t.lineTo(i+s-o,e),t.quadraticCurveTo(i+s,e,i+s,e+o),t.lineTo(i+s,e+n-o),t.quadraticCurveTo(i+s,e+n,i+s-o,e+n),t.lineTo(i+o,e+n),t.quadraticCurveTo(i,e+n,i,e+n-o),t.lineTo(i,e+o),t.quadraticCurveTo(i,e,i+o,e),t.closePath()};e.instances={},e.Type=function(t,i,s){this.options=i,this.chart=s,this.id=u(),e.instances[this.id]=this,i.responsive&&this.resize(),this.initialize.call(this,t)},a(e.Type.prototype,{initialize:function(){return this},clear:function(){return A(this.chart),this},stop:function(){return s.cancelAnimFrame.call(t,this.animationFrame),this},resize:function(t){this.stop();var i=this.chart.canvas,e=F(this.chart.canvas),s=this.options.maintainAspectRatio?e/this.chart.aspectRatio:R(this.chart.canvas);return i.width=this.chart.width=e,i.height=this.chart.height=s,T(this.chart),"function"==typeof t&&t.apply(this,Array.prototype.slice.call(arguments,1)),this},reflow:c,render:function(t){return t&&this.reflow(),this.options.animation&&!t?s.animationLoop(this.draw,this.options.animationSteps,this.options.animationEasing,this.options.onAnimationProgress,this.options.onAnimationComplete,this):(this.draw(),this.options.onAnimationComplete.call(this)),this},generateLegend:function(){return C(this.options.legendTemplate,this)},destroy:function(){this.clear(),k(this,this.events);var t=this.chart.canvas;t.width=this.chart.width,t.height=this.chart.height,t.style.removeProperty?(t.style.removeProperty("width"),t.style.removeProperty("height")):(t.style.removeAttribute("width"),t.style.removeAttribute("height")),delete e.instances[this.id]},showTooltip:function(t,i){"undefined"==typeof this.activeElements&&(this.activeElements=[]);var o=function(t){var i=!1;return t.length!==this.activeElements.length?i=!0:(n(t,function(t,e){t!==this.activeElements[e]&&(i=!0)},this),i)}.call(this,t);if(o||i){if(this.activeElements=t,this.draw(),this.options.customTooltips&&this.options.customTooltips(!1),t.length>0)if(this.datasets&&this.datasets.length>1){for(var a,h,r=this.datasets.length-1;r>=0&&(a=this.datasets[r].points||this.datasets[r].bars||this.datasets[r].segments,h=l(a,t[0]),-1===h);r--);var c=[],u=[],d=function(){var t,i,e,n,o,a=[],l=[],r=[];return s.each(this.datasets,function(i){t=i.points||i.bars||i.segments,t[h]&&t[h].hasValue()&&a.push(t[h])}),s.each(a,function(t){l.push(t.x),r.push(t.y),c.push(s.template(this.options.multiTooltipTemplate,t)),u.push({fill:t._saved.fillColor||t.fillColor,stroke:t._saved.strokeColor||t.strokeColor})},this),o=m(r),e=g(r),n=m(l),i=g(l),{x:n>this.chart.width/2?n:i,y:(o+e)/2}}.call(this,h);new e.MultiTooltip({x:d.x,y:d.y,xPadding:this.options.tooltipXPadding,yPadding:this.options.tooltipYPadding,xOffset:this.options.tooltipXOffset,fillColor:this.options.tooltipFillColor,textColor:this.options.tooltipFontColor,fontFamily:this.options.tooltipFontFamily,fontStyle:this.options.tooltipFontStyle,fontSize:this.options.tooltipFontSize,titleTextColor:this.options.tooltipTitleFontColor,titleFontFamily:this.options.tooltipTitleFontFamily,titleFontStyle:this.options.tooltipTitleFontStyle,titleFontSize:this.options.tooltipTitleFontSize,cornerRadius:this.options.tooltipCornerRadius,labels:c,legendColors:u,legendColorBackground:this.options.multiTooltipKeyBackground,title:t[0].label,chart:this.chart,ctx:this.chart.ctx,custom:this.options.customTooltips}).draw()}else n(t,function(t){var i=t.tooltipPosition();new e.Tooltip({x:Math.round(i.x),y:Math.round(i.y),xPadding:this.options.tooltipXPadding,yPadding:this.options.tooltipYPadding,fillColor:this.options.tooltipFillColor,textColor:this.options.tooltipFontColor,fontFamily:this.options.tooltipFontFamily,fontStyle:this.options.tooltipFontStyle,fontSize:this.options.tooltipFontSize,caretHeight:this.options.tooltipCaretSize,cornerRadius:this.options.tooltipCornerRadius,text:C(this.options.tooltipTemplate,t),chart:this.chart,custom:this.options.customTooltips}).draw()},this);return this}},toBase64Image:function(){return this.chart.canvas.toDataURL.apply(this.chart.canvas,arguments)}}),e.Type.extend=function(t){var i=this,s=function(){return i.apply(this,arguments)};if(s.prototype=o(i.prototype),a(s.prototype,t),s.extend=e.Type.extend,t.name||i.prototype.name){var n=t.name||i.prototype.name,l=e.defaults[i.prototype.name]?o(e.defaults[i.prototype.name]):{};e.defaults[n]=a(l,t.defaults),e.types[n]=s,e.prototype[n]=function(t,i){var o=h(e.defaults.global,e.defaults[n],i||{});return new s(t,o,this)}}else d("Name not provided for this chart, so it hasn't been registered");return i},e.Element=function(t){a(this,t),this.initialize.apply(this,arguments),this.save()},a(e.Element.prototype,{initialize:function(){},restore:function(t){return t?n(t,function(t){this[t]=this._saved[t]},this):a(this,this._saved),this},save:function(){return this._saved=o(this),delete this._saved._saved,this},update:function(t){return n(t,function(t,i){this._saved[i]=this[i],this[i]=t},this),this},transition:function(t,i){return n(t,function(t,e){this[e]=(t-this._saved[e])*i+this._saved[e]},this),this},tooltipPosition:function(){return{x:this.x,y:this.y}},hasValue:function(){return f(this.value)}}),e.Element.extend=r,e.Point=e.Element.extend({display:!0,inRange:function(t,i){var e=this.hitDetectionRadius+this.radius;return Math.pow(t-this.x,2)+Math.pow(i-this.y,2)<Math.pow(e,2)},draw:function(){if(this.display){var t=this.ctx;t.beginPath(),t.arc(this.x,this.y,this.radius,0,2*Math.PI),t.closePath(),t.strokeStyle=this.strokeColor,t.lineWidth=this.strokeWidth,t.fillStyle=this.fillColor,t.fill(),t.stroke()}}}),e.Arc=e.Element.extend({inRange:function(t,i){var e=s.getAngleFromPoint(this,{x:t,y:i}),n=e.angle>=this.startAngle&&e.angle<=this.endAngle,o=e.distance>=this.innerRadius&&e.distance<=this.outerRadius;return n&&o},tooltipPosition:function(){var t=this.startAngle+(this.endAngle-this.startAngle)/2,i=(this.outerRadius-this.innerRadius)/2+this.innerRadius;return{x:this.x+Math.cos(t)*i,y:this.y+Math.sin(t)*i}},draw:function(t){var i=this.ctx;i.beginPath(),i.arc(this.x,this.y,this.outerRadius,this.startAngle,this.endAngle),i.arc(this.x,this.y,this.innerRadius,this.endAngle,this.startAngle,!0),i.closePath(),i.strokeStyle=this.strokeColor,i.lineWidth=this.strokeWidth,i.fillStyle=this.fillColor,i.fill(),i.lineJoin="bevel",this.showStroke&&i.stroke()}}),e.Rectangle=e.Element.extend({draw:function(){var t=this.ctx,i=this.width/2,e=this.x-i,s=this.x+i,n=this.base-(this.base-this.y),o=this.strokeWidth/2;this.showStroke&&(e+=o,s-=o,n+=o),t.beginPath(),t.fillStyle=this.fillColor,t.strokeStyle=this.strokeColor,t.lineWidth=this.strokeWidth,t.moveTo(e,this.base),t.lineTo(e,n),t.lineTo(s,n),t.lineTo(s,this.base),t.fill(),this.showStroke&&t.stroke()},height:function(){return this.base-this.y},inRange:function(t,i){return t>=this.x-this.width/2&&t<=this.x+this.width/2&&i>=this.y&&i<=this.base}}),e.Tooltip=e.Element.extend({draw:function(){var t=this.chart.ctx;t.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.xAlign="center",this.yAlign="above";var i=this.caretPadding=2,e=t.measureText(this.text).width+2*this.xPadding,s=this.fontSize+2*this.yPadding,n=s+this.caretHeight+i;this.x+e/2>this.chart.width?this.xAlign="left":this.x-e/2<0&&(this.xAlign="right"),this.y-n<0&&(this.yAlign="below");var o=this.x-e/2,a=this.y-n;if(t.fillStyle=this.fillColor,this.custom)this.custom(this);else{switch(this.yAlign){case"above":t.beginPath(),t.moveTo(this.x,this.y-i),t.lineTo(this.x+this.caretHeight,this.y-(i+this.caretHeight)),t.lineTo(this.x-this.caretHeight,this.y-(i+this.caretHeight)),t.closePath(),t.fill();break;case"below":a=this.y+i+this.caretHeight,t.beginPath(),t.moveTo(this.x,this.y+i),t.lineTo(this.x+this.caretHeight,this.y+i+this.caretHeight),t.lineTo(this.x-this.caretHeight,this.y+i+this.caretHeight),t.closePath(),t.fill()}switch(this.xAlign){case"left":o=this.x-e+(this.cornerRadius+this.caretHeight);break;case"right":o=this.x-(this.cornerRadius+this.caretHeight)}z(t,o,a,e,s,this.cornerRadius),t.fill(),t.fillStyle=this.textColor,t.textAlign="center",t.textBaseline="middle",t.fillText(this.text,o+e/2,a+s/2)}}}),e.MultiTooltip=e.Element.extend({initialize:function(){this.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.titleFont=M(this.titleFontSize,this.titleFontStyle,this.titleFontFamily),this.height=this.labels.length*this.fontSize+(this.labels.length-1)*(this.fontSize/2)+2*this.yPadding+1.5*this.titleFontSize,this.ctx.font=this.titleFont;var t=this.ctx.measureText(this.title).width,i=W(this.ctx,this.font,this.labels)+this.fontSize+3,e=g([i,t]);this.width=e+2*this.xPadding;var s=this.height/2;this.y-s<0?this.y=s:this.y+s>this.chart.height&&(this.y=this.chart.height-s),this.x>this.chart.width/2?this.x-=this.xOffset+this.width:this.x+=this.xOffset},getLineHeight:function(t){var i=this.y-this.height/2+this.yPadding,e=t-1;return 0===t?i+this.titleFontSize/2:i+(1.5*this.fontSize*e+this.fontSize/2)+1.5*this.titleFontSize},draw:function(){if(this.custom)this.custom(this);else{z(this.ctx,this.x,this.y-this.height/2,this.width,this.height,this.cornerRadius);var t=this.ctx;t.fillStyle=this.fillColor,t.fill(),t.closePath(),t.textAlign="left",t.textBaseline="middle",t.fillStyle=this.titleTextColor,t.font=this.titleFont,t.fillText(this.title,this.x+this.xPadding,this.getLineHeight(0)),t.font=this.font,s.each(this.labels,function(i,e){t.fillStyle=this.textColor,t.fillText(i,this.x+this.xPadding+this.fontSize+3,this.getLineHeight(e+1)),t.fillStyle=this.legendColorBackground,t.fillRect(this.x+this.xPadding,this.getLineHeight(e+1)-this.fontSize/2,this.fontSize,this.fontSize),t.fillStyle=this.legendColors[e].fill,t.fillRect(this.x+this.xPadding,this.getLineHeight(e+1)-this.fontSize/2,this.fontSize,this.fontSize)},this)}}}),e.Scale=e.Element.extend({initialize:function(){this.fit()},buildYLabels:function(){this.yLabels=[];for(var t=v(this.stepValue),i=0;i<=this.steps;i++)this.yLabels.push(C(this.templateString,{value:(this.min+i*this.stepValue).toFixed(t)}));this.yLabelWidth=this.display&&this.showLabels?W(this.ctx,this.font,this.yLabels):0},addXLabel:function(t){this.xLabels.push(t),this.valuesCount++,this.fit()},removeXLabel:function(){this.xLabels.shift(),this.valuesCount--,this.fit()},fit:function(){this.startPoint=this.display?this.fontSize:0,this.endPoint=this.display?this.height-1.5*this.fontSize-5:this.height,this.startPoint+=this.padding,this.endPoint-=this.padding;var t,i=this.endPoint-this.startPoint;for(this.calculateYRange(i),this.buildYLabels(),this.calculateXLabelRotation();i>this.endPoint-this.startPoint;)i=this.endPoint-this.startPoint,t=this.yLabelWidth,this.calculateYRange(i),this.buildYLabels(),t<this.yLabelWidth&&this.calculateXLabelRotation()},calculateXLabelRotation:function(){this.ctx.font=this.font;var t,i,e=this.ctx.measureText(this.xLabels[0]).width,s=this.ctx.measureText(this.xLabels[this.xLabels.length-1]).width;if(this.xScalePaddingRight=s/2+3,this.xScalePaddingLeft=e/2>this.yLabelWidth+10?e/2:this.yLabelWidth+10,this.xLabelRotation=0,this.display){var n,o=W(this.ctx,this.font,this.xLabels);this.xLabelWidth=o;for(var a=Math.floor(this.calculateX(1)-this.calculateX(0))-6;this.xLabelWidth>a&&0===this.xLabelRotation||this.xLabelWidth>a&&this.xLabelRotation<=90&&this.xLabelRotation>0;)n=Math.cos(S(this.xLabelRotation)),t=n*e,i=n*s,t+this.fontSize/2>this.yLabelWidth+8&&(this.xScalePaddingLeft=t+this.fontSize/2),this.xScalePaddingRight=this.fontSize/2,this.xLabelRotation++,this.xLabelWidth=n*o;this.xLabelRotation>0&&(this.endPoint-=Math.sin(S(this.xLabelRotation))*o+3)}else this.xLabelWidth=0,this.xScalePaddingRight=this.padding,this.xScalePaddingLeft=this.padding},calculateYRange:c,drawingArea:function(){return this.startPoint-this.endPoint},calculateY:function(t){var i=this.drawingArea()/(this.min-this.max);return this.endPoint-i*(t-this.min)},calculateX:function(t){var i=(this.xLabelRotation>0,this.width-(this.xScalePaddingLeft+this.xScalePaddingRight)),e=i/(this.valuesCount-(this.offsetGridLines?0:1)),s=e*t+this.xScalePaddingLeft;return this.offsetGridLines&&(s+=e/2),Math.round(s)},update:function(t){s.extend(this,t),this.fit()},draw:function(){var t=this.ctx,i=(this.endPoint-this.startPoint)/this.steps,e=Math.round(this.xScalePaddingLeft);this.display&&(t.fillStyle=this.textColor,t.font=this.font,n(this.yLabels,function(n,o){var a=this.endPoint-i*o,h=Math.round(a),l=this.showHorizontalLines;t.textAlign="right",t.textBaseline="middle",this.showLabels&&t.fillText(n,e-10,a),0!==o||l||(l=!0),l&&t.beginPath(),o>0?(t.lineWidth=this.gridLineWidth,t.strokeStyle=this.gridLineColor):(t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor),h+=s.aliasPixel(t.lineWidth),l&&(t.moveTo(e,h),t.lineTo(this.width,h),t.stroke(),t.closePath()),t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor,t.beginPath(),t.moveTo(e-5,h),t.lineTo(e,h),t.stroke(),t.closePath()},this),n(this.xLabels,function(i,e){var s=this.calculateX(e)+x(this.lineWidth),n=this.calculateX(e-(this.offsetGridLines?.5:0))+x(this.lineWidth),o=this.xLabelRotation>0,a=this.showVerticalLines;0!==e||a||(a=!0),a&&t.beginPath(),e>0?(t.lineWidth=this.gridLineWidth,t.strokeStyle=this.gridLineColor):(t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor),a&&(t.moveTo(n,this.endPoint),t.lineTo(n,this.startPoint-3),t.stroke(),t.closePath()),t.lineWidth=this.lineWidth,t.strokeStyle=this.lineColor,t.beginPath(),t.moveTo(n,this.endPoint),t.lineTo(n,this.endPoint+5),t.stroke(),t.closePath(),t.save(),t.translate(s,o?this.endPoint+12:this.endPoint+8),t.rotate(-1*S(this.xLabelRotation)),t.font=this.font,t.textAlign=o?"right":"center",t.textBaseline=o?"middle":"top",t.fillText(i,0,0),t.restore()},this))}}),e.RadialScale=e.Element.extend({initialize:function(){this.size=m([this.height,this.width]),this.drawingArea=this.display?this.size/2-(this.fontSize/2+this.backdropPaddingY):this.size/2},calculateCenterOffset:function(t){var i=this.drawingArea/(this.max-this.min);return(t-this.min)*i},update:function(){this.lineArc?this.drawingArea=this.display?this.size/2-(this.fontSize/2+this.backdropPaddingY):this.size/2:this.setScaleSize(),this.buildYLabels()},buildYLabels:function(){this.yLabels=[];for(var t=v(this.stepValue),i=0;i<=this.steps;i++)this.yLabels.push(C(this.templateString,{value:(this.min+i*this.stepValue).toFixed(t)}))},getCircumference:function(){return 2*Math.PI/this.valuesCount},setScaleSize:function(){var t,i,e,s,n,o,a,h,l,r,c,u,d=m([this.height/2-this.pointLabelFontSize-5,this.width/2]),p=this.width,g=0;for(this.ctx.font=M(this.pointLabelFontSize,this.pointLabelFontStyle,this.pointLabelFontFamily),i=0;i<this.valuesCount;i++)t=this.getPointPosition(i,d),e=this.ctx.measureText(C(this.templateString,{value:this.labels[i]})).width+5,0===i||i===this.valuesCount/2?(s=e/2,t.x+s>p&&(p=t.x+s,n=i),t.x-s<g&&(g=t.x-s,a=i)):i<this.valuesCount/2?t.x+e>p&&(p=t.x+e,n=i):i>this.valuesCount/2&&t.x-e<g&&(g=t.x-e,a=i);l=g,r=Math.ceil(p-this.width),o=this.getIndexAngle(n),h=this.getIndexAngle(a),c=r/Math.sin(o+Math.PI/2),u=l/Math.sin(h+Math.PI/2),c=f(c)?c:0,u=f(u)?u:0,this.drawingArea=d-(u+c)/2,this.setCenterPoint(u,c)},setCenterPoint:function(t,i){var e=this.width-i-this.drawingArea,s=t+this.drawingArea;this.xCenter=(s+e)/2,this.yCenter=this.height/2},getIndexAngle:function(t){var i=2*Math.PI/this.valuesCount;return t*i-Math.PI/2},getPointPosition:function(t,i){var e=this.getIndexAngle(t);return{x:Math.cos(e)*i+this.xCenter,y:Math.sin(e)*i+this.yCenter}},draw:function(){if(this.display){var t=this.ctx;if(n(this.yLabels,function(i,e){if(e>0){var s,n=e*(this.drawingArea/this.steps),o=this.yCenter-n;if(this.lineWidth>0)if(t.strokeStyle=this.lineColor,t.lineWidth=this.lineWidth,this.lineArc)t.beginPath(),t.arc(this.xCenter,this.yCenter,n,0,2*Math.PI),t.closePath(),t.stroke();else{t.beginPath();for(var a=0;a<this.valuesCount;a++)s=this.getPointPosition(a,this.calculateCenterOffset(this.min+e*this.stepValue)),0===a?t.moveTo(s.x,s.y):t.lineTo(s.x,s.y);t.closePath(),t.stroke()}if(this.showLabels){if(t.font=M(this.fontSize,this.fontStyle,this.fontFamily),this.showLabelBackdrop){var h=t.measureText(i).width;t.fillStyle=this.backdropColor,t.fillRect(this.xCenter-h/2-this.backdropPaddingX,o-this.fontSize/2-this.backdropPaddingY,h+2*this.backdropPaddingX,this.fontSize+2*this.backdropPaddingY)}t.textAlign="center",t.textBaseline="middle",t.fillStyle=this.fontColor,t.fillText(i,this.xCenter,o)}}},this),!this.lineArc){t.lineWidth=this.angleLineWidth,t.strokeStyle=this.angleLineColor;for(var i=this.valuesCount-1;i>=0;i--){if(this.angleLineWidth>0){var e=this.getPointPosition(i,this.calculateCenterOffset(this.max));t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(e.x,e.y),t.stroke(),t.closePath()}var s=this.getPointPosition(i,this.calculateCenterOffset(this.max)+5);t.font=M(this.pointLabelFontSize,this.pointLabelFontStyle,this.pointLabelFontFamily),t.fillStyle=this.pointLabelFontColor;var o=this.labels.length,a=this.labels.length/2,h=a/2,l=h>i||i>o-h,r=i===h||i===o-h;t.textAlign=0===i?"center":i===a?"center":a>i?"left":"right",t.textBaseline=r?"middle":l?"bottom":"top",t.fillText(this.labels[i],s.x,s.y)}}}}}),s.addEvent(window,"resize",function(){var t;return function(){clearTimeout(t),t=setTimeout(function(){n(e.instances,function(t){t.options.responsive&&t.resize(t.render,!0)})},50)}}()),p?define(function(){return e}):"object"==typeof module&&module.exports&&(module.exports=e),t.Chart=e,e.noConflict=function(){return t.Chart=i,e}}).call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleBeginAtZero:!0,scaleShowGridLines:!0,scaleGridLineColor:"rgba(0,0,0,.05)",scaleGridLineWidth:1,scaleShowHorizontalLines:!0,scaleShowVerticalLines:!0,barShowStroke:!0,barStrokeWidth:2,barValueSpacing:5,barDatasetSpacing:1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].fillColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Bar",defaults:s,initialize:function(t){var s=this.options;this.ScaleClass=i.Scale.extend({offsetGridLines:!0,calculateBarX:function(t,i,e){var n=this.calculateBaseWidth(),o=this.calculateX(e)-n/2,a=this.calculateBarWidth(t);return o+a*i+i*s.barDatasetSpacing+a/2},calculateBaseWidth:function(){return this.calculateX(1)-this.calculateX(0)-2*s.barValueSpacing},calculateBarWidth:function(t){var i=this.calculateBaseWidth()-(t-1)*s.barDatasetSpacing;return i/t}}),this.datasets=[],this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getBarsAtEvent(t):[];this.eachBars(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),this.BarClass=i.Rectangle.extend({strokeWidth:this.options.barStrokeWidth,showStroke:this.options.barShowStroke,ctx:this.chart.ctx}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,bars:[]};this.datasets.push(s),e.each(i.data,function(e,n){s.bars.push(new this.BarClass({value:e,label:t.labels[n],datasetLabel:i.label,strokeColor:i.strokeColor,fillColor:i.fillColor,highlightFill:i.highlightFill||i.fillColor,highlightStroke:i.highlightStroke||i.strokeColor}))},this)},this),this.buildScale(t.labels),this.BarClass.prototype.base=this.scale.endPoint,this.eachBars(function(t,i,s){e.extend(t,{width:this.scale.calculateBarWidth(this.datasets.length),x:this.scale.calculateBarX(this.datasets.length,s,i),y:this.scale.endPoint}),t.save()},this),this.render()},update:function(){this.scale.update(),e.each(this.activeElements,function(t){t.restore(["fillColor","strokeColor"])}),this.eachBars(function(t){t.save()}),this.render()},eachBars:function(t){e.each(this.datasets,function(i,s){e.each(i.bars,t,this,s)},this)},getBarsAtEvent:function(t){for(var i,s=[],n=e.getRelativePosition(t),o=function(t){s.push(t.bars[i])},a=0;a<this.datasets.length;a++)for(i=0;i<this.datasets[a].bars.length;i++)if(this.datasets[a].bars[i].inRange(n.x,n.y))return e.each(this.datasets,o),s;return s},buildScale:function(t){var i=this,s=function(){var t=[];return i.eachBars(function(i){t.push(i.value)}),t},n={templateString:this.options.scaleLabel,height:this.chart.height,width:this.chart.width,ctx:this.chart.ctx,textColor:this.options.scaleFontColor,fontSize:this.options.scaleFontSize,fontStyle:this.options.scaleFontStyle,fontFamily:this.options.scaleFontFamily,valuesCount:t.length,beginAtZero:this.options.scaleBeginAtZero,integersOnly:this.options.scaleIntegersOnly,calculateYRange:function(t){var i=e.calculateScaleRange(s(),t,this.fontSize,this.beginAtZero,this.integersOnly);e.extend(this,i)},xLabels:t,font:e.fontString(this.options.scaleFontSize,this.options.scaleFontStyle,this.options.scaleFontFamily),lineWidth:this.options.scaleLineWidth,lineColor:this.options.scaleLineColor,showHorizontalLines:this.options.scaleShowHorizontalLines,showVerticalLines:this.options.scaleShowVerticalLines,gridLineWidth:this.options.scaleShowGridLines?this.options.scaleGridLineWidth:0,gridLineColor:this.options.scaleShowGridLines?this.options.scaleGridLineColor:"rgba(0,0,0,0)",padding:this.options.showScale?0:this.options.barShowStroke?this.options.barStrokeWidth:0,showLabels:this.options.scaleShowLabels,display:this.options.showScale};this.options.scaleOverride&&e.extend(n,{calculateYRange:e.noop,steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}),this.scale=new this.ScaleClass(n)},addData:function(t,i){e.each(t,function(t,e){this.datasets[e].bars.push(new this.BarClass({value:t,label:i,x:this.scale.calculateBarX(this.datasets.length,e,this.scale.valuesCount+1),y:this.scale.endPoint,width:this.scale.calculateBarWidth(this.datasets.length),base:this.scale.endPoint,strokeColor:this.datasets[e].strokeColor,fillColor:this.datasets[e].fillColor}))},this),this.scale.addXLabel(i),this.update()},removeData:function(){this.scale.removeXLabel(),e.each(this.datasets,function(t){t.bars.shift()},this),this.update()},reflow:function(){e.extend(this.BarClass.prototype,{y:this.scale.endPoint,base:this.scale.endPoint});
|
20 |
-
var t=e.extend({height:this.chart.height,width:this.chart.width});this.scale.update(t)},draw:function(t){var i=t||1;this.clear();this.chart.ctx;this.scale.draw(i),e.each(this.datasets,function(t,s){e.each(t.bars,function(t,e){t.hasValue()&&(t.base=this.scale.endPoint,t.transition({x:this.scale.calculateBarX(this.datasets.length,s,e),y:this.scale.calculateY(t.value),width:this.scale.calculateBarWidth(this.datasets.length)},i).draw())},this)},this)}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={segmentShowStroke:!0,segmentStrokeColor:"#fff",segmentStrokeWidth:2,percentageInnerCutout:50,animationSteps:100,animationEasing:"easeOutBounce",animateRotate:!0,animateScale:!1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<segments.length; i++){%><li><span style="background-color:<%=segments[i].fillColor%>"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Doughnut",defaults:s,initialize:function(t){this.segments=[],this.outerRadius=(e.min([this.chart.width,this.chart.height])-this.options.segmentStrokeWidth/2)/2,this.SegmentArc=i.Arc.extend({ctx:this.chart.ctx,x:this.chart.width/2,y:this.chart.height/2}),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getSegmentsAtEvent(t):[];e.each(this.segments,function(t){t.restore(["fillColor"])}),e.each(i,function(t){t.fillColor=t.highlightColor}),this.showTooltip(i)}),this.calculateTotal(t),e.each(t,function(t,i){this.addData(t,i,!0)},this),this.render()},getSegmentsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.segments,function(t){t.inRange(s.x,s.y)&&i.push(t)},this),i},addData:function(t,i,e){var s=i||this.segments.length;this.segments.splice(s,0,new this.SegmentArc({value:t.value,outerRadius:this.options.animateScale?0:this.outerRadius,innerRadius:this.options.animateScale?0:this.outerRadius/100*this.options.percentageInnerCutout,fillColor:t.color,highlightColor:t.highlight||t.color,showStroke:this.options.segmentShowStroke,strokeWidth:this.options.segmentStrokeWidth,strokeColor:this.options.segmentStrokeColor,startAngle:1.5*Math.PI,circumference:this.options.animateRotate?0:this.calculateCircumference(t.value),label:t.label})),e||(this.reflow(),this.update())},calculateCircumference:function(t){return 2*Math.PI*(t/this.total)},calculateTotal:function(t){this.total=0,e.each(t,function(t){this.total+=t.value},this)},update:function(){this.calculateTotal(this.segments),e.each(this.activeElements,function(t){t.restore(["fillColor"])}),e.each(this.segments,function(t){t.save()}),this.render()},removeData:function(t){var i=e.isNumber(t)?t:this.segments.length-1;this.segments.splice(i,1),this.reflow(),this.update()},reflow:function(){e.extend(this.SegmentArc.prototype,{x:this.chart.width/2,y:this.chart.height/2}),this.outerRadius=(e.min([this.chart.width,this.chart.height])-this.options.segmentStrokeWidth/2)/2,e.each(this.segments,function(t){t.update({outerRadius:this.outerRadius,innerRadius:this.outerRadius/100*this.options.percentageInnerCutout})},this)},draw:function(t){var i=t?t:1;this.clear(),e.each(this.segments,function(t,e){t.transition({circumference:this.calculateCircumference(t.value),outerRadius:this.outerRadius,innerRadius:this.outerRadius/100*this.options.percentageInnerCutout},i),t.endAngle=t.startAngle+t.circumference,t.draw(),0===e&&(t.startAngle=1.5*Math.PI),e<this.segments.length-1&&(this.segments[e+1].startAngle=t.endAngle)},this)}}),i.types.Doughnut.extend({name:"Pie",defaults:e.merge(s,{percentageInnerCutout:0})})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleShowGridLines:!0,scaleGridLineColor:"rgba(0,0,0,.05)",scaleGridLineWidth:1,scaleShowHorizontalLines:!0,scaleShowVerticalLines:!0,bezierCurve:!0,bezierCurveTension:.4,pointDot:!0,pointDotRadius:4,pointDotStrokeWidth:1,pointHitDetectionRadius:20,datasetStroke:!0,datasetStrokeWidth:2,datasetFill:!0,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].strokeColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"Line",defaults:s,initialize:function(t){this.PointClass=i.Point.extend({strokeWidth:this.options.pointDotStrokeWidth,radius:this.options.pointDotRadius,display:this.options.pointDot,hitDetectionRadius:this.options.pointHitDetectionRadius,ctx:this.chart.ctx,inRange:function(t){return Math.pow(t-this.x,2)<Math.pow(this.radius+this.hitDetectionRadius,2)}}),this.datasets=[],this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getPointsAtEvent(t):[];this.eachPoints(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,pointColor:i.pointColor,pointStrokeColor:i.pointStrokeColor,points:[]};this.datasets.push(s),e.each(i.data,function(e,n){s.points.push(new this.PointClass({value:e,label:t.labels[n],datasetLabel:i.label,strokeColor:i.pointStrokeColor,fillColor:i.pointColor,highlightFill:i.pointHighlightFill||i.pointColor,highlightStroke:i.pointHighlightStroke||i.pointStrokeColor}))},this),this.buildScale(t.labels),this.eachPoints(function(t,i){e.extend(t,{x:this.scale.calculateX(i),y:this.scale.endPoint}),t.save()},this)},this),this.render()},update:function(){this.scale.update(),e.each(this.activeElements,function(t){t.restore(["fillColor","strokeColor"])}),this.eachPoints(function(t){t.save()}),this.render()},eachPoints:function(t){e.each(this.datasets,function(i){e.each(i.points,t,this)},this)},getPointsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.datasets,function(t){e.each(t.points,function(t){t.inRange(s.x,s.y)&&i.push(t)})},this),i},buildScale:function(t){var s=this,n=function(){var t=[];return s.eachPoints(function(i){t.push(i.value)}),t},o={templateString:this.options.scaleLabel,height:this.chart.height,width:this.chart.width,ctx:this.chart.ctx,textColor:this.options.scaleFontColor,fontSize:this.options.scaleFontSize,fontStyle:this.options.scaleFontStyle,fontFamily:this.options.scaleFontFamily,valuesCount:t.length,beginAtZero:this.options.scaleBeginAtZero,integersOnly:this.options.scaleIntegersOnly,calculateYRange:function(t){var i=e.calculateScaleRange(n(),t,this.fontSize,this.beginAtZero,this.integersOnly);e.extend(this,i)},xLabels:t,font:e.fontString(this.options.scaleFontSize,this.options.scaleFontStyle,this.options.scaleFontFamily),lineWidth:this.options.scaleLineWidth,lineColor:this.options.scaleLineColor,showHorizontalLines:this.options.scaleShowHorizontalLines,showVerticalLines:this.options.scaleShowVerticalLines,gridLineWidth:this.options.scaleShowGridLines?this.options.scaleGridLineWidth:0,gridLineColor:this.options.scaleShowGridLines?this.options.scaleGridLineColor:"rgba(0,0,0,0)",padding:this.options.showScale?0:this.options.pointDotRadius+this.options.pointDotStrokeWidth,showLabels:this.options.scaleShowLabels,display:this.options.showScale};this.options.scaleOverride&&e.extend(o,{calculateYRange:e.noop,steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}),this.scale=new i.Scale(o)},addData:function(t,i){e.each(t,function(t,e){this.datasets[e].points.push(new this.PointClass({value:t,label:i,x:this.scale.calculateX(this.scale.valuesCount+1),y:this.scale.endPoint,strokeColor:this.datasets[e].pointStrokeColor,fillColor:this.datasets[e].pointColor}))},this),this.scale.addXLabel(i),this.update()},removeData:function(){this.scale.removeXLabel(),e.each(this.datasets,function(t){t.points.shift()},this),this.update()},reflow:function(){var t=e.extend({height:this.chart.height,width:this.chart.width});this.scale.update(t)},draw:function(t){var i=t||1;this.clear();var s=this.chart.ctx,n=function(t){return null!==t.value},o=function(t,i,s){return e.findNextWhere(i,n,s)||t},a=function(t,i,s){return e.findPreviousWhere(i,n,s)||t};this.scale.draw(i),e.each(this.datasets,function(t){var h=e.where(t.points,n);e.each(t.points,function(t,e){t.hasValue()&&t.transition({y:this.scale.calculateY(t.value),x:this.scale.calculateX(e)},i)},this),this.options.bezierCurve&&e.each(h,function(t,i){var s=i>0&&i<h.length-1?this.options.bezierCurveTension:0;t.controlPoints=e.splineCurve(a(t,h,i),t,o(t,h,i),s),t.controlPoints.outer.y>this.scale.endPoint?t.controlPoints.outer.y=this.scale.endPoint:t.controlPoints.outer.y<this.scale.startPoint&&(t.controlPoints.outer.y=this.scale.startPoint),t.controlPoints.inner.y>this.scale.endPoint?t.controlPoints.inner.y=this.scale.endPoint:t.controlPoints.inner.y<this.scale.startPoint&&(t.controlPoints.inner.y=this.scale.startPoint)},this),s.lineWidth=this.options.datasetStrokeWidth,s.strokeStyle=t.strokeColor,s.beginPath(),e.each(h,function(t,i){if(0===i)s.moveTo(t.x,t.y);else if(this.options.bezierCurve){var e=a(t,h,i);s.bezierCurveTo(e.controlPoints.outer.x,e.controlPoints.outer.y,t.controlPoints.inner.x,t.controlPoints.inner.y,t.x,t.y)}else s.lineTo(t.x,t.y)},this),s.stroke(),this.options.datasetFill&&h.length>0&&(s.lineTo(h[h.length-1].x,this.scale.endPoint),s.lineTo(h[0].x,this.scale.endPoint),s.fillStyle=t.fillColor,s.closePath(),s.fill()),e.each(h,function(t){t.draw()})},this)}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers,s={scaleShowLabelBackdrop:!0,scaleBackdropColor:"rgba(255,255,255,0.75)",scaleBeginAtZero:!0,scaleBackdropPaddingY:2,scaleBackdropPaddingX:2,scaleShowLine:!0,segmentShowStroke:!0,segmentStrokeColor:"#fff",segmentStrokeWidth:2,animationSteps:100,animationEasing:"easeOutBounce",animateRotate:!0,animateScale:!1,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<segments.length; i++){%><li><span style="background-color:<%=segments[i].fillColor%>"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>'};i.Type.extend({name:"PolarArea",defaults:s,initialize:function(t){this.segments=[],this.SegmentArc=i.Arc.extend({showStroke:this.options.segmentShowStroke,strokeWidth:this.options.segmentStrokeWidth,strokeColor:this.options.segmentStrokeColor,ctx:this.chart.ctx,innerRadius:0,x:this.chart.width/2,y:this.chart.height/2}),this.scale=new i.RadialScale({display:this.options.showScale,fontStyle:this.options.scaleFontStyle,fontSize:this.options.scaleFontSize,fontFamily:this.options.scaleFontFamily,fontColor:this.options.scaleFontColor,showLabels:this.options.scaleShowLabels,showLabelBackdrop:this.options.scaleShowLabelBackdrop,backdropColor:this.options.scaleBackdropColor,backdropPaddingY:this.options.scaleBackdropPaddingY,backdropPaddingX:this.options.scaleBackdropPaddingX,lineWidth:this.options.scaleShowLine?this.options.scaleLineWidth:0,lineColor:this.options.scaleLineColor,lineArc:!0,width:this.chart.width,height:this.chart.height,xCenter:this.chart.width/2,yCenter:this.chart.height/2,ctx:this.chart.ctx,templateString:this.options.scaleLabel,valuesCount:t.length}),this.updateScaleRange(t),this.scale.update(),e.each(t,function(t,i){this.addData(t,i,!0)},this),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getSegmentsAtEvent(t):[];e.each(this.segments,function(t){t.restore(["fillColor"])}),e.each(i,function(t){t.fillColor=t.highlightColor}),this.showTooltip(i)}),this.render()},getSegmentsAtEvent:function(t){var i=[],s=e.getRelativePosition(t);return e.each(this.segments,function(t){t.inRange(s.x,s.y)&&i.push(t)},this),i},addData:function(t,i,e){var s=i||this.segments.length;this.segments.splice(s,0,new this.SegmentArc({fillColor:t.color,highlightColor:t.highlight||t.color,label:t.label,value:t.value,outerRadius:this.options.animateScale?0:this.scale.calculateCenterOffset(t.value),circumference:this.options.animateRotate?0:this.scale.getCircumference(),startAngle:1.5*Math.PI})),e||(this.reflow(),this.update())},removeData:function(t){var i=e.isNumber(t)?t:this.segments.length-1;this.segments.splice(i,1),this.reflow(),this.update()},calculateTotal:function(t){this.total=0,e.each(t,function(t){this.total+=t.value},this),this.scale.valuesCount=this.segments.length},updateScaleRange:function(t){var i=[];e.each(t,function(t){i.push(t.value)});var s=this.options.scaleOverride?{steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}:e.calculateScaleRange(i,e.min([this.chart.width,this.chart.height])/2,this.options.scaleFontSize,this.options.scaleBeginAtZero,this.options.scaleIntegersOnly);e.extend(this.scale,s,{size:e.min([this.chart.width,this.chart.height]),xCenter:this.chart.width/2,yCenter:this.chart.height/2})},update:function(){this.calculateTotal(this.segments),e.each(this.segments,function(t){t.save()}),this.render()},reflow:function(){e.extend(this.SegmentArc.prototype,{x:this.chart.width/2,y:this.chart.height/2}),this.updateScaleRange(this.segments),this.scale.update(),e.extend(this.scale,{xCenter:this.chart.width/2,yCenter:this.chart.height/2}),e.each(this.segments,function(t){t.update({outerRadius:this.scale.calculateCenterOffset(t.value)})},this)},draw:function(t){var i=t||1;this.clear(),e.each(this.segments,function(t,e){t.transition({circumference:this.scale.getCircumference(),outerRadius:this.scale.calculateCenterOffset(t.value)},i),t.endAngle=t.startAngle+t.circumference,0===e&&(t.startAngle=1.5*Math.PI),e<this.segments.length-1&&(this.segments[e+1].startAngle=t.endAngle),t.draw()},this),this.scale.draw()}})}.call(this),function(){"use strict";var t=this,i=t.Chart,e=i.helpers;i.Type.extend({name:"Radar",defaults:{scaleShowLine:!0,angleShowLineOut:!0,scaleShowLabels:!1,scaleBeginAtZero:!0,angleLineColor:"rgba(0,0,0,.1)",angleLineWidth:1,pointLabelFontFamily:"'Arial'",pointLabelFontStyle:"normal",pointLabelFontSize:10,pointLabelFontColor:"#666",pointDot:!0,pointDotRadius:3,pointDotStrokeWidth:1,pointHitDetectionRadius:20,datasetStroke:!0,datasetStrokeWidth:2,datasetFill:!0,legendTemplate:'<ul class="<%=name.toLowerCase()%>-legend"><% for (var i=0; i<datasets.length; i++){%><li><span style="background-color:<%=datasets[i].strokeColor%>"></span><%if(datasets[i].label){%><%=datasets[i].label%><%}%></li><%}%></ul>'},initialize:function(t){this.PointClass=i.Point.extend({strokeWidth:this.options.pointDotStrokeWidth,radius:this.options.pointDotRadius,display:this.options.pointDot,hitDetectionRadius:this.options.pointHitDetectionRadius,ctx:this.chart.ctx}),this.datasets=[],this.buildScale(t),this.options.showTooltips&&e.bindEvents(this,this.options.tooltipEvents,function(t){var i="mouseout"!==t.type?this.getPointsAtEvent(t):[];this.eachPoints(function(t){t.restore(["fillColor","strokeColor"])}),e.each(i,function(t){t.fillColor=t.highlightFill,t.strokeColor=t.highlightStroke}),this.showTooltip(i)}),e.each(t.datasets,function(i){var s={label:i.label||null,fillColor:i.fillColor,strokeColor:i.strokeColor,pointColor:i.pointColor,pointStrokeColor:i.pointStrokeColor,points:[]};this.datasets.push(s),e.each(i.data,function(e,n){var o;this.scale.animation||(o=this.scale.getPointPosition(n,this.scale.calculateCenterOffset(e))),s.points.push(new this.PointClass({value:e,label:t.labels[n],datasetLabel:i.label,x:this.options.animation?this.scale.xCenter:o.x,y:this.options.animation?this.scale.yCenter:o.y,strokeColor:i.pointStrokeColor,fillColor:i.pointColor,highlightFill:i.pointHighlightFill||i.pointColor,highlightStroke:i.pointHighlightStroke||i.pointStrokeColor}))},this)},this),this.render()},eachPoints:function(t){e.each(this.datasets,function(i){e.each(i.points,t,this)},this)},getPointsAtEvent:function(t){var i=e.getRelativePosition(t),s=e.getAngleFromPoint({x:this.scale.xCenter,y:this.scale.yCenter},i),n=2*Math.PI/this.scale.valuesCount,o=Math.round((s.angle-1.5*Math.PI)/n),a=[];return(o>=this.scale.valuesCount||0>o)&&(o=0),s.distance<=this.scale.drawingArea&&e.each(this.datasets,function(t){a.push(t.points[o])}),a},buildScale:function(t){this.scale=new i.RadialScale({display:this.options.showScale,fontStyle:this.options.scaleFontStyle,fontSize:this.options.scaleFontSize,fontFamily:this.options.scaleFontFamily,fontColor:this.options.scaleFontColor,showLabels:this.options.scaleShowLabels,showLabelBackdrop:this.options.scaleShowLabelBackdrop,backdropColor:this.options.scaleBackdropColor,backdropPaddingY:this.options.scaleBackdropPaddingY,backdropPaddingX:this.options.scaleBackdropPaddingX,lineWidth:this.options.scaleShowLine?this.options.scaleLineWidth:0,lineColor:this.options.scaleLineColor,angleLineColor:this.options.angleLineColor,angleLineWidth:this.options.angleShowLineOut?this.options.angleLineWidth:0,pointLabelFontColor:this.options.pointLabelFontColor,pointLabelFontSize:this.options.pointLabelFontSize,pointLabelFontFamily:this.options.pointLabelFontFamily,pointLabelFontStyle:this.options.pointLabelFontStyle,height:this.chart.height,width:this.chart.width,xCenter:this.chart.width/2,yCenter:this.chart.height/2,ctx:this.chart.ctx,templateString:this.options.scaleLabel,labels:t.labels,valuesCount:t.datasets[0].data.length}),this.scale.setScaleSize(),this.updateScaleRange(t.datasets),this.scale.buildYLabels()},updateScaleRange:function(t){var i=function(){var i=[];return e.each(t,function(t){t.data?i=i.concat(t.data):e.each(t.points,function(t){i.push(t.value)})}),i}(),s=this.options.scaleOverride?{steps:this.options.scaleSteps,stepValue:this.options.scaleStepWidth,min:this.options.scaleStartValue,max:this.options.scaleStartValue+this.options.scaleSteps*this.options.scaleStepWidth}:e.calculateScaleRange(i,e.min([this.chart.width,this.chart.height])/2,this.options.scaleFontSize,this.options.scaleBeginAtZero,this.options.scaleIntegersOnly);e.extend(this.scale,s)},addData:function(t,i){this.scale.valuesCount++,e.each(t,function(t,e){var s=this.scale.getPointPosition(this.scale.valuesCount,this.scale.calculateCenterOffset(t));this.datasets[e].points.push(new this.PointClass({value:t,label:i,x:s.x,y:s.y,strokeColor:this.datasets[e].pointStrokeColor,fillColor:this.datasets[e].pointColor}))},this),this.scale.labels.push(i),this.reflow(),this.update()},removeData:function(){this.scale.valuesCount--,this.scale.labels.shift(),e.each(this.datasets,function(t){t.points.shift()},this),this.reflow(),this.update()},update:function(){this.eachPoints(function(t){t.save()}),this.reflow(),this.render()},reflow:function(){e.extend(this.scale,{width:this.chart.width,height:this.chart.height,size:e.min([this.chart.width,this.chart.height]),xCenter:this.chart.width/2,yCenter:this.chart.height/2}),this.updateScaleRange(this.datasets),this.scale.setScaleSize(),this.scale.buildYLabels()},draw:function(t){var i=t||1,s=this.chart.ctx;this.clear(),this.scale.draw(),e.each(this.datasets,function(t){e.each(t.points,function(t,e){t.hasValue()&&t.transition(this.scale.getPointPosition(e,this.scale.calculateCenterOffset(t.value)),i)},this),s.lineWidth=this.options.datasetStrokeWidth,s.strokeStyle=t.strokeColor,s.beginPath(),e.each(t.points,function(t,i){0===i?s.moveTo(t.x,t.y):s.lineTo(t.x,t.y)},this),s.closePath(),s.stroke(),s.fillStyle=t.fillColor,s.fill(),e.each(t.points,function(t){t.hasValue()&&t.draw()})},this)}})}.call(this);
|
21 |
|
22 |
|
23 |
/* ================== admin/classes/js/src/jquery.vmap.min.js =================== */
|
@@ -53,7 +52,7 @@ jQuery.fn.vectorMap('addMap', 'world_en', {"width":950,"height":550,"paths":{"id
|
|
53 |
var value=$(this).data('id');
|
54 |
var table=$(this).data('table');
|
55 |
var r = confirm(wp_ulike_logs.message);
|
56 |
-
if (r
|
57 |
jQuery.ajax({
|
58 |
type:'POST',
|
59 |
url: wp_ulike_logs.ajaxurl,
|
@@ -79,181 +78,189 @@ jQuery.fn.vectorMap('addMap', 'world_en', {"width":950,"height":550,"paths":{"id
|
|
79 |
var activities_dataset_var = JSON.parse(wp_ulike_statistics.activities_dataset);
|
80 |
var topics_dataset_var = JSON.parse(wp_ulike_statistics.topics_dataset);
|
81 |
var world_map_data = JSON.parse(wp_ulike_statistics.data_map);
|
82 |
-
var activities_dataset_sum
|
83 |
-
|
|
|
|
|
84 |
//posts dataset
|
85 |
if(posts_dataset_var !== null){
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
]
|
103 |
-
}
|
104 |
}
|
105 |
|
106 |
//comments dataset
|
107 |
if(comments_dataset_var !== null){
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
}
|
126 |
}
|
127 |
|
128 |
|
129 |
//activities dataset
|
130 |
if(activities_dataset_var !== null){
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
]
|
148 |
-
}
|
149 |
}
|
150 |
|
151 |
//Topics dataset
|
152 |
if(topics_dataset_var !== null){
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
]
|
170 |
-
}
|
171 |
}
|
172 |
|
173 |
-
var pieData =
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
}
|
198 |
-
];
|
199 |
|
200 |
|
201 |
-
var
|
202 |
-
var
|
203 |
-
var
|
204 |
-
var
|
205 |
-
var
|
206 |
|
207 |
-
if (
|
208 |
-
if(posts_dataset_var !== null){
|
209 |
-
var ctx1 =
|
210 |
-
new Chart(ctx1
|
211 |
-
|
212 |
-
|
|
|
|
|
|
|
213 |
}else{
|
214 |
document.getElementById("posts_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
215 |
}
|
216 |
}
|
217 |
|
218 |
-
if (
|
219 |
-
if(comments_dataset_var !== null){
|
220 |
-
var ctx2 =
|
221 |
-
new Chart(ctx2
|
222 |
-
|
223 |
-
|
|
|
|
|
|
|
224 |
}else{
|
225 |
document.getElementById("comments_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
226 |
}
|
227 |
}
|
228 |
|
229 |
-
if (
|
230 |
-
if(activities_dataset_var !== null){
|
231 |
-
var ctx3 =
|
232 |
-
new Chart(ctx3
|
233 |
-
|
234 |
-
|
|
|
|
|
|
|
235 |
}else{
|
236 |
document.getElementById("activities_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
237 |
}
|
238 |
}
|
239 |
|
240 |
-
if (
|
241 |
-
if(topics_dataset_var !== null){
|
242 |
-
var
|
243 |
-
new Chart(
|
244 |
-
|
245 |
-
|
|
|
|
|
|
|
246 |
}else{
|
247 |
document.getElementById("topics_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
248 |
}
|
249 |
}
|
250 |
|
251 |
-
if
|
252 |
-
if(activities_dataset_var !== null || topics_dataset_var !== null || comments_dataset_var || null && posts_dataset_var || null){
|
253 |
-
var
|
254 |
-
new Chart(
|
255 |
-
|
256 |
-
|
|
|
|
|
|
|
257 |
}else{
|
258 |
document.getElementById("piechart_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
259 |
}
|
1 |
+
/*! WP ULike - v3.0
|
2 |
* http://wp-ulike.alimir.ir/
|
3 |
* Alimir 2017;
|
4 |
*/
|
10 |
/*!
|
11 |
* Chart.js
|
12 |
* http://chartjs.org/
|
13 |
+
* Version: 2.7.1
|
14 |
*
|
15 |
+
* Copyright 2017 Nick Downie
|
16 |
* Released under the MIT license
|
17 |
+
* https://github.com/chartjs/Chart.js/blob/master/LICENSE.md
|
18 |
*/
|
19 |
+
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Chart=t()}}(function(){return function t(e,n,i){function a(r,l){if(!n[r]){if(!e[r]){var s="function"==typeof require&&require;if(!l&&s)return s(r,!0);if(o)return o(r,!0);var u=new Error("Cannot find module '"+r+"'");throw u.code="MODULE_NOT_FOUND",u}var d=n[r]={exports:{}};e[r][0].call(d.exports,function(t){var n=e[r][1][t];return a(n||t)},d,d.exports,t,e,n,i)}return n[r].exports}for(var o="function"==typeof require&&require,r=0;r<i.length;r++)a(i[r]);return a}({1:[function(t,e,n){},{}],2:[function(t,e,n){function i(t){if(t){var e=[0,0,0],n=1,i=t.match(/^#([a-fA-F0-9]{3})$/i);if(i){i=i[1];for(a=0;a<e.length;a++)e[a]=parseInt(i[a]+i[a],16)}else if(i=t.match(/^#([a-fA-F0-9]{6})$/i)){i=i[1];for(a=0;a<e.length;a++)e[a]=parseInt(i.slice(2*a,2*a+2),16)}else if(i=t.match(/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(a=0;a<e.length;a++)e[a]=parseInt(i[a+1]);n=parseFloat(i[4])}else if(i=t.match(/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)){for(a=0;a<e.length;a++)e[a]=Math.round(2.55*parseFloat(i[a+1]));n=parseFloat(i[4])}else if(i=t.match(/(\w+)/)){if("transparent"==i[1])return[0,0,0,0];if(!(e=c[i[1]]))return}for(var a=0;a<e.length;a++)e[a]=u(e[a],0,255);return n=n||0==n?u(n,0,1):1,e[3]=n,e}}function a(t){if(t){var e=t.match(/^hsla?\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(e){var n=parseFloat(e[4]);return[u(parseInt(e[1]),0,360),u(parseFloat(e[2]),0,100),u(parseFloat(e[3]),0,100),u(isNaN(n)?1:n,0,1)]}}}function o(t){if(t){var e=t.match(/^hwb\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/);if(e){var n=parseFloat(e[4]);return[u(parseInt(e[1]),0,360),u(parseFloat(e[2]),0,100),u(parseFloat(e[3]),0,100),u(isNaN(n)?1:n,0,1)]}}}function r(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"rgba("+t[0]+", "+t[1]+", "+t[2]+", "+e+")"}function l(t,e){return"rgba("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%, "+(e||t[3]||1)+")"}function s(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+e+")"}function u(t,e,n){return Math.min(Math.max(e,t),n)}function d(t){var e=t.toString(16).toUpperCase();return e.length<2?"0"+e:e}var c=t(6);e.exports={getRgba:i,getHsla:a,getRgb:function(t){var e=i(t);return e&&e.slice(0,3)},getHsl:function(t){var e=a(t);return e&&e.slice(0,3)},getHwb:o,getAlpha:function(t){var e=i(t);return e?e[3]:(e=a(t))?e[3]:(e=o(t))?e[3]:void 0},hexString:function(t){return"#"+d(t[0])+d(t[1])+d(t[2])},rgbString:function(t,e){return e<1||t[3]&&t[3]<1?r(t,e):"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:r,percentString:function(t,e){return e<1||t[3]&&t[3]<1?l(t,e):"rgb("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%)"},percentaString:l,hslString:function(t,e){return e<1||t[3]&&t[3]<1?s(t,e):"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:s,hwbString:function(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return h[t.slice(0,3)]}};var h={};for(var f in c)h[c[f]]=f},{6:6}],3:[function(t,e,n){var i=t(5),a=t(2),o=function(t){if(t instanceof o)return t;if(!(this instanceof o))return new o(t);this.valid=!1,this.values={rgb:[0,0,0],hsl:[0,0,0],hsv:[0,0,0],hwb:[0,0,0],cmyk:[0,0,0,0],alpha:1};var e;"string"==typeof t?(e=a.getRgba(t))?this.setValues("rgb",e):(e=a.getHsla(t))?this.setValues("hsl",e):(e=a.getHwb(t))&&this.setValues("hwb",e):"object"==typeof t&&(void 0!==(e=t).r||void 0!==e.red?this.setValues("rgb",e):void 0!==e.l||void 0!==e.lightness?this.setValues("hsl",e):void 0!==e.v||void 0!==e.value?this.setValues("hsv",e):void 0!==e.w||void 0!==e.whiteness?this.setValues("hwb",e):void 0===e.c&&void 0===e.cyan||this.setValues("cmyk",e))};o.prototype={isValid:function(){return this.valid},rgb:function(){return this.setSpace("rgb",arguments)},hsl:function(){return this.setSpace("hsl",arguments)},hsv:function(){return this.setSpace("hsv",arguments)},hwb:function(){return this.setSpace("hwb",arguments)},cmyk:function(){return this.setSpace("cmyk",arguments)},rgbArray:function(){return this.values.rgb},hslArray:function(){return this.values.hsl},hsvArray:function(){return this.values.hsv},hwbArray:function(){var t=this.values;return 1!==t.alpha?t.hwb.concat([t.alpha]):t.hwb},cmykArray:function(){return this.values.cmyk},rgbaArray:function(){var t=this.values;return t.rgb.concat([t.alpha])},hslaArray:function(){var t=this.values;return t.hsl.concat([t.alpha])},alpha:function(t){return void 0===t?this.values.alpha:(this.setValues("alpha",t),this)},red:function(t){return this.setChannel("rgb",0,t)},green:function(t){return this.setChannel("rgb",1,t)},blue:function(t){return this.setChannel("rgb",2,t)},hue:function(t){return t&&(t=(t%=360)<0?360+t:t),this.setChannel("hsl",0,t)},saturation:function(t){return this.setChannel("hsl",1,t)},lightness:function(t){return this.setChannel("hsl",2,t)},saturationv:function(t){return this.setChannel("hsv",1,t)},whiteness:function(t){return this.setChannel("hwb",1,t)},blackness:function(t){return this.setChannel("hwb",2,t)},value:function(t){return this.setChannel("hsv",2,t)},cyan:function(t){return this.setChannel("cmyk",0,t)},magenta:function(t){return this.setChannel("cmyk",1,t)},yellow:function(t){return this.setChannel("cmyk",2,t)},black:function(t){return this.setChannel("cmyk",3,t)},hexString:function(){return a.hexString(this.values.rgb)},rgbString:function(){return a.rgbString(this.values.rgb,this.values.alpha)},rgbaString:function(){return a.rgbaString(this.values.rgb,this.values.alpha)},percentString:function(){return a.percentString(this.values.rgb,this.values.alpha)},hslString:function(){return a.hslString(this.values.hsl,this.values.alpha)},hslaString:function(){return a.hslaString(this.values.hsl,this.values.alpha)},hwbString:function(){return a.hwbString(this.values.hwb,this.values.alpha)},keyword:function(){return a.keyword(this.values.rgb,this.values.alpha)},rgbNumber:function(){var t=this.values.rgb;return t[0]<<16|t[1]<<8|t[2]},luminosity:function(){for(var t=this.values.rgb,e=[],n=0;n<t.length;n++){var i=t[n]/255;e[n]=i<=.03928?i/12.92:Math.pow((i+.055)/1.055,2.4)}return.2126*e[0]+.7152*e[1]+.0722*e[2]},contrast:function(t){var e=this.luminosity(),n=t.luminosity();return e>n?(e+.05)/(n+.05):(n+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,n=(e[0]+t)%360;return e[0]=n<0?360+n:n,this.setValues("hsl",e),this},mix:function(t,e){var n=this,i=t,a=void 0===e?.5:e,o=2*a-1,r=n.alpha()-i.alpha(),l=((o*r==-1?o:(o+r)/(1+o*r))+1)/2,s=1-l;return this.rgb(l*n.red()+s*i.red(),l*n.green()+s*i.green(),l*n.blue()+s*i.blue()).alpha(n.alpha()*a+i.alpha()*(1-a))},toJSON:function(){return this.rgb()},clone:function(){var t,e,n=new o,i=this.values,a=n.values;for(var r in i)i.hasOwnProperty(r)&&(t=i[r],"[object Array]"===(e={}.toString.call(t))?a[r]=t.slice(0):"[object Number]"===e?a[r]=t:console.error("unexpected color value:",t));return n}},o.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},o.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},o.prototype.getValues=function(t){for(var e=this.values,n={},i=0;i<t.length;i++)n[t.charAt(i)]=e[t][i];return 1!==e.alpha&&(n.a=e.alpha),n},o.prototype.setValues=function(t,e){var n,a=this.values,o=this.spaces,r=this.maxes,l=1;if(this.valid=!0,"alpha"===t)l=e;else if(e.length)a[t]=e.slice(0,t.length),l=e[t.length];else if(void 0!==e[t.charAt(0)]){for(n=0;n<t.length;n++)a[t][n]=e[t.charAt(n)];l=e.a}else if(void 0!==e[o[t][0]]){var s=o[t];for(n=0;n<t.length;n++)a[t][n]=e[s[n]];l=e.alpha}if(a.alpha=Math.max(0,Math.min(1,void 0===l?a.alpha:l)),"alpha"===t)return!1;var u;for(n=0;n<t.length;n++)u=Math.max(0,Math.min(r[t][n],a[t][n])),a[t][n]=Math.round(u);for(var d in o)d!==t&&(a[d]=i[t][d](a[t]));return!0},o.prototype.setSpace=function(t,e){var n=e[0];return void 0===n?this.getValues(t):("number"==typeof n&&(n=Array.prototype.slice.call(e)),this.setValues(t,n),this)},o.prototype.setChannel=function(t,e,n){var i=this.values[t];return void 0===n?i[e]:n===i[e]?this:(i[e]=n,this.setValues(t,i),this)},"undefined"!=typeof window&&(window.Color=o),e.exports=o},{2:2,5:5}],4:[function(t,e,n){function i(t){var e,n,i,a=t[0]/255,o=t[1]/255,r=t[2]/255,l=Math.min(a,o,r),s=Math.max(a,o,r),u=s-l;return s==l?e=0:a==s?e=(o-r)/u:o==s?e=2+(r-a)/u:r==s&&(e=4+(a-o)/u),(e=Math.min(60*e,360))<0&&(e+=360),i=(l+s)/2,n=s==l?0:i<=.5?u/(s+l):u/(2-s-l),[e,100*n,100*i]}function a(t){var e,n,i,a=t[0],o=t[1],r=t[2],l=Math.min(a,o,r),s=Math.max(a,o,r),u=s-l;return n=0==s?0:u/s*1e3/10,s==l?e=0:a==s?e=(o-r)/u:o==s?e=2+(r-a)/u:r==s&&(e=4+(a-o)/u),(e=Math.min(60*e,360))<0&&(e+=360),i=s/255*1e3/10,[e,n,i]}function o(t){var e=t[0],n=t[1],a=t[2];return[i(t)[0],100*(1/255*Math.min(e,Math.min(n,a))),100*(a=1-1/255*Math.max(e,Math.max(n,a)))]}function l(t){var e,n,i,a,o=t[0]/255,r=t[1]/255,l=t[2]/255;return a=Math.min(1-o,1-r,1-l),e=(1-o-a)/(1-a)||0,n=(1-r-a)/(1-a)||0,i=(1-l-a)/(1-a)||0,[100*e,100*n,100*i,100*a]}function s(t){return C[JSON.stringify(t)]}function u(t){var e=t[0]/255,n=t[1]/255,i=t[2]/255;return[100*(.4124*(e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)),100*(.2126*e+.7152*n+.0722*i),100*(.0193*e+.1192*n+.9505*i)]}function d(t){var e,n,i,a=u(t),o=a[0],r=a[1],l=a[2];return o/=95.047,r/=100,l/=108.883,o=o>.008856?Math.pow(o,1/3):7.787*o+16/116,r=r>.008856?Math.pow(r,1/3):7.787*r+16/116,l=l>.008856?Math.pow(l,1/3):7.787*l+16/116,e=116*r-16,n=500*(o-r),i=200*(r-l),[e,n,i]}function c(t){var e,n,i,a,o,r=t[0]/360,l=t[1]/100,s=t[2]/100;if(0==l)return o=255*s,[o,o,o];e=2*s-(n=s<.5?s*(1+l):s+l-s*l),a=[0,0,0];for(var u=0;u<3;u++)(i=r+1/3*-(u-1))<0&&i++,i>1&&i--,o=6*i<1?e+6*(n-e)*i:2*i<1?n:3*i<2?e+(n-e)*(2/3-i)*6:e,a[u]=255*o;return a}function h(t){var e=t[0]/60,n=t[1]/100,i=t[2]/100,a=Math.floor(e)%6,o=e-Math.floor(e),r=255*i*(1-n),l=255*i*(1-n*o),s=255*i*(1-n*(1-o)),i=255*i;switch(a){case 0:return[i,s,r];case 1:return[l,i,r];case 2:return[r,i,s];case 3:return[r,l,i];case 4:return[s,r,i];case 5:return[i,r,l]}}function f(t){var e,n,i,a,o=t[0]/360,l=t[1]/100,s=t[2]/100,u=l+s;switch(u>1&&(l/=u,s/=u),e=Math.floor(6*o),n=1-s,i=6*o-e,0!=(1&e)&&(i=1-i),a=l+i*(n-l),e){default:case 6:case 0:r=n,g=a,b=l;break;case 1:r=a,g=n,b=l;break;case 2:r=l,g=n,b=a;break;case 3:r=l,g=a,b=n;break;case 4:r=a,g=l,b=n;break;case 5:r=n,g=l,b=a}return[255*r,255*g,255*b]}function p(t){var e,n,i,a=t[0]/100,o=t[1]/100,r=t[2]/100,l=t[3]/100;return e=1-Math.min(1,a*(1-l)+l),n=1-Math.min(1,o*(1-l)+l),i=1-Math.min(1,r*(1-l)+l),[255*e,255*n,255*i]}function v(t){var e,n,i,a=t[0]/100,o=t[1]/100,r=t[2]/100;return e=3.2406*a+-1.5372*o+-.4986*r,n=-.9689*a+1.8758*o+.0415*r,i=.0557*a+-.204*o+1.057*r,e=e>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,e=Math.min(Math.max(0,e),1),n=Math.min(Math.max(0,n),1),i=Math.min(Math.max(0,i),1),[255*e,255*n,255*i]}function m(t){var e,n,i,a=t[0],o=t[1],r=t[2];return a/=95.047,o/=100,r/=108.883,a=a>.008856?Math.pow(a,1/3):7.787*a+16/116,o=o>.008856?Math.pow(o,1/3):7.787*o+16/116,r=r>.008856?Math.pow(r,1/3):7.787*r+16/116,e=116*o-16,n=500*(a-o),i=200*(o-r),[e,n,i]}function x(t){var e,n,i,a,o=t[0],r=t[1],l=t[2];return o<=8?a=(n=100*o/903.3)/100*7.787+16/116:(n=100*Math.pow((o+16)/116,3),a=Math.pow(n/100,1/3)),e=e/95.047<=.008856?e=95.047*(r/500+a-16/116)/7.787:95.047*Math.pow(r/500+a,3),i=i/108.883<=.008859?i=108.883*(a-l/200-16/116)/7.787:108.883*Math.pow(a-l/200,3),[e,n,i]}function y(t){var e,n,i,a=t[0],o=t[1],r=t[2];return e=Math.atan2(r,o),(n=360*e/2/Math.PI)<0&&(n+=360),i=Math.sqrt(o*o+r*r),[a,i,n]}function k(t){return v(x(t))}function w(t){var e,n,i,a=t[0],o=t[1];return i=t[2]/360*2*Math.PI,e=o*Math.cos(i),n=o*Math.sin(i),[a,e,n]}function M(t){return S[t]}e.exports={rgb2hsl:i,rgb2hsv:a,rgb2hwb:o,rgb2cmyk:l,rgb2keyword:s,rgb2xyz:u,rgb2lab:d,rgb2lch:function(t){return y(d(t))},hsl2rgb:c,hsl2hsv:function(t){var e,n,i=t[0],a=t[1]/100,o=t[2]/100;return 0===o?[0,0,0]:(o*=2,a*=o<=1?o:2-o,n=(o+a)/2,e=2*a/(o+a),[i,100*e,100*n])},hsl2hwb:function(t){return o(c(t))},hsl2cmyk:function(t){return l(c(t))},hsl2keyword:function(t){return s(c(t))},hsv2rgb:h,hsv2hsl:function(t){var e,n,i=t[0],a=t[1]/100,o=t[2]/100;return n=(2-a)*o,e=a*o,e/=n<=1?n:2-n,e=e||0,n/=2,[i,100*e,100*n]},hsv2hwb:function(t){return o(h(t))},hsv2cmyk:function(t){return l(h(t))},hsv2keyword:function(t){return s(h(t))},hwb2rgb:f,hwb2hsl:function(t){return i(f(t))},hwb2hsv:function(t){return a(f(t))},hwb2cmyk:function(t){return l(f(t))},hwb2keyword:function(t){return s(f(t))},cmyk2rgb:p,cmyk2hsl:function(t){return i(p(t))},cmyk2hsv:function(t){return a(p(t))},cmyk2hwb:function(t){return o(p(t))},cmyk2keyword:function(t){return s(p(t))},keyword2rgb:M,keyword2hsl:function(t){return i(M(t))},keyword2hsv:function(t){return a(M(t))},keyword2hwb:function(t){return o(M(t))},keyword2cmyk:function(t){return l(M(t))},keyword2lab:function(t){return d(M(t))},keyword2xyz:function(t){return u(M(t))},xyz2rgb:v,xyz2lab:m,xyz2lch:function(t){return y(m(t))},lab2xyz:x,lab2rgb:k,lab2lch:y,lch2lab:w,lch2xyz:function(t){return x(w(t))},lch2rgb:function(t){return k(w(t))}};var S={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},C={};for(var _ in S)C[JSON.stringify(S[_])]=_},{}],5:[function(t,e,n){var i=t(4),a=function(){return new u};for(var o in i){a[o+"Raw"]=function(t){return function(e){return"number"==typeof e&&(e=Array.prototype.slice.call(arguments)),i[t](e)}}(o);var r=/(\w+)2(\w+)/.exec(o),l=r[1],s=r[2];(a[l]=a[l]||{})[s]=a[o]=function(t){return function(e){"number"==typeof e&&(e=Array.prototype.slice.call(arguments));var n=i[t](e);if("string"==typeof n||void 0===n)return n;for(var a=0;a<n.length;a++)n[a]=Math.round(n[a]);return n}}(o)}var u=function(){this.convs={}};u.prototype.routeSpace=function(t,e){var n=e[0];return void 0===n?this.getValues(t):("number"==typeof n&&(n=Array.prototype.slice.call(e)),this.setValues(t,n))},u.prototype.setValues=function(t,e){return this.space=t,this.convs={},this.convs[t]=e,this},u.prototype.getValues=function(t){var e=this.convs[t];if(!e){var n=this.space,i=this.convs[n];e=a[n][t](i),this.convs[t]=e}return e},["rgb","hsl","hsv","cmyk","keyword"].forEach(function(t){u.prototype[t]=function(e){return this.routeSpace(t,arguments)}}),e.exports=a},{4:4}],6:[function(t,e,n){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],7:[function(t,e,n){var i=t(29)();i.helpers=t(45),t(27)(i),i.defaults=t(25),i.Element=t(26),i.elements=t(40),i.Interaction=t(28),i.platform=t(48),t(31)(i),t(22)(i),t(23)(i),t(24)(i),t(30)(i),t(33)(i),t(32)(i),t(35)(i),t(54)(i),t(52)(i),t(53)(i),t(55)(i),t(56)(i),t(57)(i),t(15)(i),t(16)(i),t(17)(i),t(18)(i),t(19)(i),t(20)(i),t(21)(i),t(8)(i),t(9)(i),t(10)(i),t(11)(i),t(12)(i),t(13)(i),t(14)(i);var a=[];a.push(t(49)(i),t(50)(i),t(51)(i)),i.plugins.register(a),i.platform.initialize(),e.exports=i,"undefined"!=typeof window&&(window.Chart=i),i.canvasHelpers=i.helpers.canvas},{10:10,11:11,12:12,13:13,14:14,15:15,16:16,17:17,18:18,19:19,20:20,21:21,22:22,23:23,24:24,25:25,26:26,27:27,28:28,29:29,30:30,31:31,32:32,33:33,35:35,40:40,45:45,48:48,49:49,50:50,51:51,52:52,53:53,54:54,55:55,56:56,57:57,8:8,9:9}],8:[function(t,e,n){"use strict";e.exports=function(t){t.Bar=function(e,n){return n.type="bar",new t(e,n)}}},{}],9:[function(t,e,n){"use strict";e.exports=function(t){t.Bubble=function(e,n){return n.type="bubble",new t(e,n)}}},{}],10:[function(t,e,n){"use strict";e.exports=function(t){t.Doughnut=function(e,n){return n.type="doughnut",new t(e,n)}}},{}],11:[function(t,e,n){"use strict";e.exports=function(t){t.Line=function(e,n){return n.type="line",new t(e,n)}}},{}],12:[function(t,e,n){"use strict";e.exports=function(t){t.PolarArea=function(e,n){return n.type="polarArea",new t(e,n)}}},{}],13:[function(t,e,n){"use strict";e.exports=function(t){t.Radar=function(e,n){return n.type="radar",new t(e,n)}}},{}],14:[function(t,e,n){"use strict";e.exports=function(t){t.Scatter=function(e,n){return n.type="scatter",new t(e,n)}}},{}],15:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),i._set("horizontalBar",{hover:{mode:"index",axis:"y"},scales:{xAxes:[{type:"linear",position:"bottom"}],yAxes:[{position:"left",type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}]},elements:{rectangle:{borderSkipped:"left"}},tooltips:{callbacks:{title:function(t,e){var n="";return t.length>0&&(t[0].yLabel?n=t[0].yLabel:e.labels.length>0&&t[0].index<e.labels.length&&(n=e.labels[t[0].index])),n},label:function(t,e){return(e.datasets[t.datasetIndex].label||"")+": "+t.xLabel}},mode:"index",axis:"y"}}),e.exports=function(t){t.controllers.bar=t.DatasetController.extend({dataElementType:a.Rectangle,initialize:function(){var e,n=this;t.DatasetController.prototype.initialize.apply(n,arguments),(e=n.getMeta()).stack=n.getDataset().stack,e.bar=!0},update:function(t){var e,n,i=this,a=i.getMeta().data;for(i._ruler=i.getRuler(),e=0,n=a.length;e<n;++e)i.updateElement(a[e],e,t)},updateElement:function(t,e,n){var i=this,a=i.chart,r=i.getMeta(),l=i.getDataset(),s=t.custom||{},u=a.options.elements.rectangle;t._xScale=i.getScaleForId(r.xAxisID),t._yScale=i.getScaleForId(r.yAxisID),t._datasetIndex=i.index,t._index=e,t._model={datasetLabel:l.label,label:a.data.labels[e],borderSkipped:s.borderSkipped?s.borderSkipped:u.borderSkipped,backgroundColor:s.backgroundColor?s.backgroundColor:o.valueAtIndexOrDefault(l.backgroundColor,e,u.backgroundColor),borderColor:s.borderColor?s.borderColor:o.valueAtIndexOrDefault(l.borderColor,e,u.borderColor),borderWidth:s.borderWidth?s.borderWidth:o.valueAtIndexOrDefault(l.borderWidth,e,u.borderWidth)},i.updateElementGeometry(t,e,n),t.pivot()},updateElementGeometry:function(t,e,n){var i=this,a=t._model,o=i.getValueScale(),r=o.getBasePixel(),l=o.isHorizontal(),s=i._ruler||i.getRuler(),u=i.calculateBarValuePixels(i.index,e),d=i.calculateBarIndexPixels(i.index,e,s);a.horizontal=l,a.base=n?r:u.base,a.x=l?n?r:u.head:d.center,a.y=l?d.center:n?r:u.head,a.height=l?d.size:void 0,a.width=l?void 0:d.size},getValueScaleId:function(){return this.getMeta().yAxisID},getIndexScaleId:function(){return this.getMeta().xAxisID},getValueScale:function(){return this.getScaleForId(this.getValueScaleId())},getIndexScale:function(){return this.getScaleForId(this.getIndexScaleId())},getStackCount:function(t){var e,n,i=this,a=i.chart,o=i.getIndexScale().options.stacked,r=void 0===t?a.data.datasets.length:t+1,l=[];for(e=0;e<r;++e)(n=a.getDatasetMeta(e)).bar&&a.isDatasetVisible(e)&&(!1===o||!0===o&&-1===l.indexOf(n.stack)||void 0===o&&(void 0===n.stack||-1===l.indexOf(n.stack)))&&l.push(n.stack);return l.length},getStackIndex:function(t){return this.getStackCount(t)-1},getRuler:function(){var t,e,n=this,i=n.getIndexScale(),a=n.getStackCount(),o=n.index,r=[],l=i.isHorizontal(),s=l?i.left:i.top,u=s+(l?i.width:i.height);for(t=0,e=n.getMeta().data.length;t<e;++t)r.push(i.getPixelForValue(null,t,o));return{pixels:r,start:s,end:u,stackCount:a,scale:i}},calculateBarValuePixels:function(t,e){var n,i,a,o,r,l,s=this,u=s.chart,d=s.getMeta(),c=s.getValueScale(),h=u.data.datasets,f=c.getRightValue(h[t].data[e]),g=c.options.stacked,p=d.stack,v=0;if(g||void 0===g&&void 0!==p)for(n=0;n<t;++n)(i=u.getDatasetMeta(n)).bar&&i.stack===p&&i.controller.getValueScaleId()===c.id&&u.isDatasetVisible(n)&&(a=c.getRightValue(h[n].data[e]),(f<0&&a<0||f>=0&&a>0)&&(v+=a));return o=c.getPixelForValue(v),r=c.getPixelForValue(v+f),l=(r-o)/2,{size:l,base:o,head:r,center:r+l/2}},calculateBarIndexPixels:function(t,e,n){var i,a,r,l,s,u,d=this,c=n.scale.options,h=d.getStackIndex(t),f=n.pixels,g=f[e],p=f.length,v=n.start,m=n.end;return 1===p?(i=g>v?g-v:m-g,a=g<m?m-g:g-v):(e>0&&(i=(g-f[e-1])/2,e===p-1&&(a=i)),e<p-1&&(a=(f[e+1]-g)/2,0===e&&(i=a))),r=i*c.categoryPercentage,l=a*c.categoryPercentage,s=(r+l)/n.stackCount,u=s*c.barPercentage,u=Math.min(o.valueOrDefault(c.barThickness,u),o.valueOrDefault(c.maxBarThickness,1/0)),g-=r,g+=s*h,g+=(s-u)/2,{size:u,base:g,head:g+u,center:g+u/2}},draw:function(){var t=this,e=t.chart,n=t.getValueScale(),i=t.getMeta().data,a=t.getDataset(),r=i.length,l=0;for(o.canvas.clipArea(e.ctx,e.chartArea);l<r;++l)isNaN(n.getRightValue(a.data[l]))||i[l].draw();o.canvas.unclipArea(e.ctx)},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t._index,i=t.custom||{},a=t._model;a.backgroundColor=i.hoverBackgroundColor?i.hoverBackgroundColor:o.valueAtIndexOrDefault(e.hoverBackgroundColor,n,o.getHoverColor(a.backgroundColor)),a.borderColor=i.hoverBorderColor?i.hoverBorderColor:o.valueAtIndexOrDefault(e.hoverBorderColor,n,o.getHoverColor(a.borderColor)),a.borderWidth=i.hoverBorderWidth?i.hoverBorderWidth:o.valueAtIndexOrDefault(e.hoverBorderWidth,n,a.borderWidth)},removeHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t._index,i=t.custom||{},a=t._model,r=this.chart.options.elements.rectangle;a.backgroundColor=i.backgroundColor?i.backgroundColor:o.valueAtIndexOrDefault(e.backgroundColor,n,r.backgroundColor),a.borderColor=i.borderColor?i.borderColor:o.valueAtIndexOrDefault(e.borderColor,n,r.borderColor),a.borderWidth=i.borderWidth?i.borderWidth:o.valueAtIndexOrDefault(e.borderWidth,n,r.borderWidth)}}),t.controllers.horizontalBar=t.controllers.bar.extend({getValueScaleId:function(){return this.getMeta().xAxisID},getIndexScaleId:function(){return this.getMeta().yAxisID}})}},{25:25,40:40,45:45}],16:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("bubble",{hover:{mode:"single"},scales:{xAxes:[{type:"linear",position:"bottom",id:"x-axis-0"}],yAxes:[{type:"linear",position:"left",id:"y-axis-0"}]},tooltips:{callbacks:{title:function(){return""},label:function(t,e){var n=e.datasets[t.datasetIndex].label||"",i=e.datasets[t.datasetIndex].data[t.index];return n+": ("+t.xLabel+", "+t.yLabel+", "+i.r+")"}}}}),e.exports=function(t){t.controllers.bubble=t.DatasetController.extend({dataElementType:a.Point,update:function(t){var e=this,n=e.getMeta().data;o.each(n,function(n,i){e.updateElement(n,i,t)})},updateElement:function(t,e,n){var i=this,a=i.getMeta(),o=t.custom||{},r=i.getScaleForId(a.xAxisID),l=i.getScaleForId(a.yAxisID),s=i._resolveElementOptions(t,e),u=i.getDataset().data[e],d=i.index,c=n?r.getPixelForDecimal(.5):r.getPixelForValue("object"==typeof u?u:NaN,e,d),h=n?l.getBasePixel():l.getPixelForValue(u,e,d);t._xScale=r,t._yScale=l,t._options=s,t._datasetIndex=d,t._index=e,t._model={backgroundColor:s.backgroundColor,borderColor:s.borderColor,borderWidth:s.borderWidth,hitRadius:s.hitRadius,pointStyle:s.pointStyle,radius:n?0:s.radius,skip:o.skip||isNaN(c)||isNaN(h),x:c,y:h},t.pivot()},setHoverStyle:function(t){var e=t._model,n=t._options;e.backgroundColor=o.valueOrDefault(n.hoverBackgroundColor,o.getHoverColor(n.backgroundColor)),e.borderColor=o.valueOrDefault(n.hoverBorderColor,o.getHoverColor(n.borderColor)),e.borderWidth=o.valueOrDefault(n.hoverBorderWidth,n.borderWidth),e.radius=n.radius+n.hoverRadius},removeHoverStyle:function(t){var e=t._model,n=t._options;e.backgroundColor=n.backgroundColor,e.borderColor=n.borderColor,e.borderWidth=n.borderWidth,e.radius=n.radius},_resolveElementOptions:function(t,e){var n,i,a,r=this,l=r.chart,s=l.data.datasets[r.index],u=t.custom||{},d=l.options.elements.point,c=o.options.resolve,h=s.data[e],f={},g={chart:l,dataIndex:e,dataset:s,datasetIndex:r.index},p=["backgroundColor","borderColor","borderWidth","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth","hoverRadius","hitRadius","pointStyle"];for(n=0,i=p.length;n<i;++n)f[a=p[n]]=c([u[a],s[a],d[a]],g,e);return f.radius=c([u.radius,h?h.r:void 0,s.radius,d.radius],g,e),f}})}},{25:25,40:40,45:45}],17:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("doughnut",{animation:{animateRotate:!0,animateScale:!1},hover:{mode:"single"},legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');var n=t.data,i=n.datasets,a=n.labels;if(i.length)for(var o=0;o<i[0].data.length;++o)e.push('<li><span style="background-color:'+i[0].backgroundColor[o]+'"></span>'),a[o]&&e.push(a[o]),e.push("</li>");return e.push("</ul>"),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(n,i){var a=t.getDatasetMeta(0),r=e.datasets[0],l=a.data[i],s=l&&l.custom||{},u=o.valueAtIndexOrDefault,d=t.options.elements.arc;return{text:n,fillStyle:s.backgroundColor?s.backgroundColor:u(r.backgroundColor,i,d.backgroundColor),strokeStyle:s.borderColor?s.borderColor:u(r.borderColor,i,d.borderColor),lineWidth:s.borderWidth?s.borderWidth:u(r.borderWidth,i,d.borderWidth),hidden:isNaN(r.data[i])||a.data[i].hidden,index:i}}):[]}},onClick:function(t,e){var n,i,a,o=e.index,r=this.chart;for(n=0,i=(r.data.datasets||[]).length;n<i;++n)(a=r.getDatasetMeta(n)).data[o]&&(a.data[o].hidden=!a.data[o].hidden);r.update()}},cutoutPercentage:50,rotation:-.5*Math.PI,circumference:2*Math.PI,tooltips:{callbacks:{title:function(){return""},label:function(t,e){var n=e.labels[t.index],i=": "+e.datasets[t.datasetIndex].data[t.index];return o.isArray(n)?(n=n.slice())[0]+=i:n+=i,n}}}}),i._set("pie",o.clone(i.doughnut)),i._set("pie",{cutoutPercentage:0}),e.exports=function(t){t.controllers.doughnut=t.controllers.pie=t.DatasetController.extend({dataElementType:a.Arc,linkScales:o.noop,getRingIndex:function(t){for(var e=0,n=0;n<t;++n)this.chart.isDatasetVisible(n)&&++e;return e},update:function(t){var e=this,n=e.chart,i=n.chartArea,a=n.options,r=a.elements.arc,l=i.right-i.left-r.borderWidth,s=i.bottom-i.top-r.borderWidth,u=Math.min(l,s),d={x:0,y:0},c=e.getMeta(),h=a.cutoutPercentage,f=a.circumference;if(f<2*Math.PI){var g=a.rotation%(2*Math.PI),p=(g+=2*Math.PI*(g>=Math.PI?-1:g<-Math.PI?1:0))+f,v={x:Math.cos(g),y:Math.sin(g)},m={x:Math.cos(p),y:Math.sin(p)},b=g<=0&&p>=0||g<=2*Math.PI&&2*Math.PI<=p,x=g<=.5*Math.PI&&.5*Math.PI<=p||g<=2.5*Math.PI&&2.5*Math.PI<=p,y=g<=-Math.PI&&-Math.PI<=p||g<=Math.PI&&Math.PI<=p,k=g<=.5*-Math.PI&&.5*-Math.PI<=p||g<=1.5*Math.PI&&1.5*Math.PI<=p,w=h/100,M={x:y?-1:Math.min(v.x*(v.x<0?1:w),m.x*(m.x<0?1:w)),y:k?-1:Math.min(v.y*(v.y<0?1:w),m.y*(m.y<0?1:w))},S={x:b?1:Math.max(v.x*(v.x>0?1:w),m.x*(m.x>0?1:w)),y:x?1:Math.max(v.y*(v.y>0?1:w),m.y*(m.y>0?1:w))},C={width:.5*(S.x-M.x),height:.5*(S.y-M.y)};u=Math.min(l/C.width,s/C.height),d={x:-.5*(S.x+M.x),y:-.5*(S.y+M.y)}}n.borderWidth=e.getMaxBorderWidth(c.data),n.outerRadius=Math.max((u-n.borderWidth)/2,0),n.innerRadius=Math.max(h?n.outerRadius/100*h:0,0),n.radiusLength=(n.outerRadius-n.innerRadius)/n.getVisibleDatasetCount(),n.offsetX=d.x*n.outerRadius,n.offsetY=d.y*n.outerRadius,c.total=e.calculateTotal(),e.outerRadius=n.outerRadius-n.radiusLength*e.getRingIndex(e.index),e.innerRadius=Math.max(e.outerRadius-n.radiusLength,0),o.each(c.data,function(n,i){e.updateElement(n,i,t)})},updateElement:function(t,e,n){var i=this,a=i.chart,r=a.chartArea,l=a.options,s=l.animation,u=(r.left+r.right)/2,d=(r.top+r.bottom)/2,c=l.rotation,h=l.rotation,f=i.getDataset(),g=n&&s.animateRotate?0:t.hidden?0:i.calculateCircumference(f.data[e])*(l.circumference/(2*Math.PI)),p=n&&s.animateScale?0:i.innerRadius,v=n&&s.animateScale?0:i.outerRadius,m=o.valueAtIndexOrDefault;o.extend(t,{_datasetIndex:i.index,_index:e,_model:{x:u+a.offsetX,y:d+a.offsetY,startAngle:c,endAngle:h,circumference:g,outerRadius:v,innerRadius:p,label:m(f.label,e,a.data.labels[e])}});var b=t._model;this.removeHoverStyle(t),n&&s.animateRotate||(b.startAngle=0===e?l.rotation:i.getMeta().data[e-1]._model.endAngle,b.endAngle=b.startAngle+b.circumference),t.pivot()},removeHoverStyle:function(e){t.DatasetController.prototype.removeHoverStyle.call(this,e,this.chart.options.elements.arc)},calculateTotal:function(){var t,e=this.getDataset(),n=this.getMeta(),i=0;return o.each(n.data,function(n,a){t=e.data[a],isNaN(t)||n.hidden||(i+=Math.abs(t))}),i},calculateCircumference:function(t){var e=this.getMeta().total;return e>0&&!isNaN(t)?2*Math.PI*(t/e):0},getMaxBorderWidth:function(t){for(var e,n,i=0,a=this.index,o=t.length,r=0;r<o;r++)e=t[r]._model?t[r]._model.borderWidth:0,i=(n=t[r]._chart?t[r]._chart.config.data.datasets[a].hoverBorderWidth:0)>(i=e>i?e:i)?n:i;return i}})}},{25:25,40:40,45:45}],18:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("line",{showLines:!0,spanGaps:!1,hover:{mode:"label"},scales:{xAxes:[{type:"category",id:"x-axis-0"}],yAxes:[{type:"linear",id:"y-axis-0"}]}}),e.exports=function(t){function e(t,e){return o.valueOrDefault(t.showLine,e.showLines)}t.controllers.line=t.DatasetController.extend({datasetElementType:a.Line,dataElementType:a.Point,update:function(t){var n,i,a,r=this,l=r.getMeta(),s=l.dataset,u=l.data||[],d=r.chart.options,c=d.elements.line,h=r.getScaleForId(l.yAxisID),f=r.getDataset(),g=e(f,d);for(g&&(a=s.custom||{},void 0!==f.tension&&void 0===f.lineTension&&(f.lineTension=f.tension),s._scale=h,s._datasetIndex=r.index,s._children=u,s._model={spanGaps:f.spanGaps?f.spanGaps:d.spanGaps,tension:a.tension?a.tension:o.valueOrDefault(f.lineTension,c.tension),backgroundColor:a.backgroundColor?a.backgroundColor:f.backgroundColor||c.backgroundColor,borderWidth:a.borderWidth?a.borderWidth:f.borderWidth||c.borderWidth,borderColor:a.borderColor?a.borderColor:f.borderColor||c.borderColor,borderCapStyle:a.borderCapStyle?a.borderCapStyle:f.borderCapStyle||c.borderCapStyle,borderDash:a.borderDash?a.borderDash:f.borderDash||c.borderDash,borderDashOffset:a.borderDashOffset?a.borderDashOffset:f.borderDashOffset||c.borderDashOffset,borderJoinStyle:a.borderJoinStyle?a.borderJoinStyle:f.borderJoinStyle||c.borderJoinStyle,fill:a.fill?a.fill:void 0!==f.fill?f.fill:c.fill,steppedLine:a.steppedLine?a.steppedLine:o.valueOrDefault(f.steppedLine,c.stepped),cubicInterpolationMode:a.cubicInterpolationMode?a.cubicInterpolationMode:o.valueOrDefault(f.cubicInterpolationMode,c.cubicInterpolationMode)},s.pivot()),n=0,i=u.length;n<i;++n)r.updateElement(u[n],n,t);for(g&&0!==s._model.tension&&r.updateBezierControlPoints(),n=0,i=u.length;n<i;++n)u[n].pivot()},getPointBackgroundColor:function(t,e){var n=this.chart.options.elements.point.backgroundColor,i=this.getDataset(),a=t.custom||{};return a.backgroundColor?n=a.backgroundColor:i.pointBackgroundColor?n=o.valueAtIndexOrDefault(i.pointBackgroundColor,e,n):i.backgroundColor&&(n=i.backgroundColor),n},getPointBorderColor:function(t,e){var n=this.chart.options.elements.point.borderColor,i=this.getDataset(),a=t.custom||{};return a.borderColor?n=a.borderColor:i.pointBorderColor?n=o.valueAtIndexOrDefault(i.pointBorderColor,e,n):i.borderColor&&(n=i.borderColor),n},getPointBorderWidth:function(t,e){var n=this.chart.options.elements.point.borderWidth,i=this.getDataset(),a=t.custom||{};return isNaN(a.borderWidth)?!isNaN(i.pointBorderWidth)||o.isArray(i.pointBorderWidth)?n=o.valueAtIndexOrDefault(i.pointBorderWidth,e,n):isNaN(i.borderWidth)||(n=i.borderWidth):n=a.borderWidth,n},updateElement:function(t,e,n){var i,a,r=this,l=r.getMeta(),s=t.custom||{},u=r.getDataset(),d=r.index,c=u.data[e],h=r.getScaleForId(l.yAxisID),f=r.getScaleForId(l.xAxisID),g=r.chart.options.elements.point;void 0!==u.radius&&void 0===u.pointRadius&&(u.pointRadius=u.radius),void 0!==u.hitRadius&&void 0===u.pointHitRadius&&(u.pointHitRadius=u.hitRadius),i=f.getPixelForValue("object"==typeof c?c:NaN,e,d),a=n?h.getBasePixel():r.calculatePointY(c,e,d),t._xScale=f,t._yScale=h,t._datasetIndex=d,t._index=e,t._model={x:i,y:a,skip:s.skip||isNaN(i)||isNaN(a),radius:s.radius||o.valueAtIndexOrDefault(u.pointRadius,e,g.radius),pointStyle:s.pointStyle||o.valueAtIndexOrDefault(u.pointStyle,e,g.pointStyle),backgroundColor:r.getPointBackgroundColor(t,e),borderColor:r.getPointBorderColor(t,e),borderWidth:r.getPointBorderWidth(t,e),tension:l.dataset._model?l.dataset._model.tension:0,steppedLine:!!l.dataset._model&&l.dataset._model.steppedLine,hitRadius:s.hitRadius||o.valueAtIndexOrDefault(u.pointHitRadius,e,g.hitRadius)}},calculatePointY:function(t,e,n){var i,a,o,r=this,l=r.chart,s=r.getMeta(),u=r.getScaleForId(s.yAxisID),d=0,c=0;if(u.options.stacked){for(i=0;i<n;i++)if(a=l.data.datasets[i],"line"===(o=l.getDatasetMeta(i)).type&&o.yAxisID===u.id&&l.isDatasetVisible(i)){var h=Number(u.getRightValue(a.data[e]));h<0?c+=h||0:d+=h||0}var f=Number(u.getRightValue(t));return f<0?u.getPixelForValue(c+f):u.getPixelForValue(d+f)}return u.getPixelForValue(t)},updateBezierControlPoints:function(){function t(t,e,n){return Math.max(Math.min(t,n),e)}var e,n,i,a,r=this,l=r.getMeta(),s=r.chart.chartArea,u=l.data||[];if(l.dataset._model.spanGaps&&(u=u.filter(function(t){return!t._model.skip})),"monotone"===l.dataset._model.cubicInterpolationMode)o.splineCurveMonotone(u);else for(e=0,n=u.length;e<n;++e)i=u[e]._model,a=o.splineCurve(o.previousItem(u,e)._model,i,o.nextItem(u,e)._model,l.dataset._model.tension),i.controlPointPreviousX=a.previous.x,i.controlPointPreviousY=a.previous.y,i.controlPointNextX=a.next.x,i.controlPointNextY=a.next.y;if(r.chart.options.elements.line.capBezierPoints)for(e=0,n=u.length;e<n;++e)(i=u[e]._model).controlPointPreviousX=t(i.controlPointPreviousX,s.left,s.right),i.controlPointPreviousY=t(i.controlPointPreviousY,s.top,s.bottom),i.controlPointNextX=t(i.controlPointNextX,s.left,s.right),i.controlPointNextY=t(i.controlPointNextY,s.top,s.bottom)},draw:function(){var t=this,n=t.chart,i=t.getMeta(),a=i.data||[],r=n.chartArea,l=a.length,s=0;for(o.canvas.clipArea(n.ctx,r),e(t.getDataset(),n.options)&&i.dataset.draw(),o.canvas.unclipArea(n.ctx);s<l;++s)a[s].draw(r)},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t._index,i=t.custom||{},a=t._model;a.radius=i.hoverRadius||o.valueAtIndexOrDefault(e.pointHoverRadius,n,this.chart.options.elements.point.hoverRadius),a.backgroundColor=i.hoverBackgroundColor||o.valueAtIndexOrDefault(e.pointHoverBackgroundColor,n,o.getHoverColor(a.backgroundColor)),a.borderColor=i.hoverBorderColor||o.valueAtIndexOrDefault(e.pointHoverBorderColor,n,o.getHoverColor(a.borderColor)),a.borderWidth=i.hoverBorderWidth||o.valueAtIndexOrDefault(e.pointHoverBorderWidth,n,a.borderWidth)},removeHoverStyle:function(t){var e=this,n=e.chart.data.datasets[t._datasetIndex],i=t._index,a=t.custom||{},r=t._model;void 0!==n.radius&&void 0===n.pointRadius&&(n.pointRadius=n.radius),r.radius=a.radius||o.valueAtIndexOrDefault(n.pointRadius,i,e.chart.options.elements.point.radius),r.backgroundColor=e.getPointBackgroundColor(t,i),r.borderColor=e.getPointBorderColor(t,i),r.borderWidth=e.getPointBorderWidth(t,i)}})}},{25:25,40:40,45:45}],19:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("polarArea",{scale:{type:"radialLinear",angleLines:{display:!1},gridLines:{circular:!0},pointLabels:{display:!1},ticks:{beginAtZero:!0}},animation:{animateRotate:!0,animateScale:!0},startAngle:-.5*Math.PI,legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');var n=t.data,i=n.datasets,a=n.labels;if(i.length)for(var o=0;o<i[0].data.length;++o)e.push('<li><span style="background-color:'+i[0].backgroundColor[o]+'"></span>'),a[o]&&e.push(a[o]),e.push("</li>");return e.push("</ul>"),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(n,i){var a=t.getDatasetMeta(0),r=e.datasets[0],l=a.data[i].custom||{},s=o.valueAtIndexOrDefault,u=t.options.elements.arc;return{text:n,fillStyle:l.backgroundColor?l.backgroundColor:s(r.backgroundColor,i,u.backgroundColor),strokeStyle:l.borderColor?l.borderColor:s(r.borderColor,i,u.borderColor),lineWidth:l.borderWidth?l.borderWidth:s(r.borderWidth,i,u.borderWidth),hidden:isNaN(r.data[i])||a.data[i].hidden,index:i}}):[]}},onClick:function(t,e){var n,i,a,o=e.index,r=this.chart;for(n=0,i=(r.data.datasets||[]).length;n<i;++n)(a=r.getDatasetMeta(n)).data[o].hidden=!a.data[o].hidden;r.update()}},tooltips:{callbacks:{title:function(){return""},label:function(t,e){return e.labels[t.index]+": "+t.yLabel}}}}),e.exports=function(t){t.controllers.polarArea=t.DatasetController.extend({dataElementType:a.Arc,linkScales:o.noop,update:function(t){var e=this,n=e.chart,i=n.chartArea,a=e.getMeta(),r=n.options,l=r.elements.arc,s=Math.min(i.right-i.left,i.bottom-i.top);n.outerRadius=Math.max((s-l.borderWidth/2)/2,0),n.innerRadius=Math.max(r.cutoutPercentage?n.outerRadius/100*r.cutoutPercentage:1,0),n.radiusLength=(n.outerRadius-n.innerRadius)/n.getVisibleDatasetCount(),e.outerRadius=n.outerRadius-n.radiusLength*e.index,e.innerRadius=e.outerRadius-n.radiusLength,a.count=e.countVisibleElements(),o.each(a.data,function(n,i){e.updateElement(n,i,t)})},updateElement:function(t,e,n){for(var i=this,a=i.chart,r=i.getDataset(),l=a.options,s=l.animation,u=a.scale,d=a.data.labels,c=i.calculateCircumference(r.data[e]),h=u.xCenter,f=u.yCenter,g=0,p=i.getMeta(),v=0;v<e;++v)isNaN(r.data[v])||p.data[v].hidden||++g;var m=l.startAngle,b=t.hidden?0:u.getDistanceFromCenterForValue(r.data[e]),x=m+c*g,y=x+(t.hidden?0:c),k=s.animateScale?0:u.getDistanceFromCenterForValue(r.data[e]);o.extend(t,{_datasetIndex:i.index,_index:e,_scale:u,_model:{x:h,y:f,innerRadius:0,outerRadius:n?k:b,startAngle:n&&s.animateRotate?m:x,endAngle:n&&s.animateRotate?m:y,label:o.valueAtIndexOrDefault(d,e,d[e])}}),i.removeHoverStyle(t),t.pivot()},removeHoverStyle:function(e){t.DatasetController.prototype.removeHoverStyle.call(this,e,this.chart.options.elements.arc)},countVisibleElements:function(){var t=this.getDataset(),e=this.getMeta(),n=0;return o.each(e.data,function(e,i){isNaN(t.data[i])||e.hidden||n++}),n},calculateCircumference:function(t){var e=this.getMeta().count;return e>0&&!isNaN(t)?2*Math.PI/e:0}})}},{25:25,40:40,45:45}],20:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("radar",{scale:{type:"radialLinear"},elements:{line:{tension:0}}}),e.exports=function(t){t.controllers.radar=t.DatasetController.extend({datasetElementType:a.Line,dataElementType:a.Point,linkScales:o.noop,update:function(t){var e=this,n=e.getMeta(),i=n.dataset,a=n.data,r=i.custom||{},l=e.getDataset(),s=e.chart.options.elements.line,u=e.chart.scale;void 0!==l.tension&&void 0===l.lineTension&&(l.lineTension=l.tension),o.extend(n.dataset,{_datasetIndex:e.index,_scale:u,_children:a,_loop:!0,_model:{tension:r.tension?r.tension:o.valueOrDefault(l.lineTension,s.tension),backgroundColor:r.backgroundColor?r.backgroundColor:l.backgroundColor||s.backgroundColor,borderWidth:r.borderWidth?r.borderWidth:l.borderWidth||s.borderWidth,borderColor:r.borderColor?r.borderColor:l.borderColor||s.borderColor,fill:r.fill?r.fill:void 0!==l.fill?l.fill:s.fill,borderCapStyle:r.borderCapStyle?r.borderCapStyle:l.borderCapStyle||s.borderCapStyle,borderDash:r.borderDash?r.borderDash:l.borderDash||s.borderDash,borderDashOffset:r.borderDashOffset?r.borderDashOffset:l.borderDashOffset||s.borderDashOffset,borderJoinStyle:r.borderJoinStyle?r.borderJoinStyle:l.borderJoinStyle||s.borderJoinStyle}}),n.dataset.pivot(),o.each(a,function(n,i){e.updateElement(n,i,t)},e),e.updateBezierControlPoints()},updateElement:function(t,e,n){var i=this,a=t.custom||{},r=i.getDataset(),l=i.chart.scale,s=i.chart.options.elements.point,u=l.getPointPositionForValue(e,r.data[e]);void 0!==r.radius&&void 0===r.pointRadius&&(r.pointRadius=r.radius),void 0!==r.hitRadius&&void 0===r.pointHitRadius&&(r.pointHitRadius=r.hitRadius),o.extend(t,{_datasetIndex:i.index,_index:e,_scale:l,_model:{x:n?l.xCenter:u.x,y:n?l.yCenter:u.y,tension:a.tension?a.tension:o.valueOrDefault(r.lineTension,i.chart.options.elements.line.tension),radius:a.radius?a.radius:o.valueAtIndexOrDefault(r.pointRadius,e,s.radius),backgroundColor:a.backgroundColor?a.backgroundColor:o.valueAtIndexOrDefault(r.pointBackgroundColor,e,s.backgroundColor),borderColor:a.borderColor?a.borderColor:o.valueAtIndexOrDefault(r.pointBorderColor,e,s.borderColor),borderWidth:a.borderWidth?a.borderWidth:o.valueAtIndexOrDefault(r.pointBorderWidth,e,s.borderWidth),pointStyle:a.pointStyle?a.pointStyle:o.valueAtIndexOrDefault(r.pointStyle,e,s.pointStyle),hitRadius:a.hitRadius?a.hitRadius:o.valueAtIndexOrDefault(r.pointHitRadius,e,s.hitRadius)}}),t._model.skip=a.skip?a.skip:isNaN(t._model.x)||isNaN(t._model.y)},updateBezierControlPoints:function(){var t=this.chart.chartArea,e=this.getMeta();o.each(e.data,function(n,i){var a=n._model,r=o.splineCurve(o.previousItem(e.data,i,!0)._model,a,o.nextItem(e.data,i,!0)._model,a.tension);a.controlPointPreviousX=Math.max(Math.min(r.previous.x,t.right),t.left),a.controlPointPreviousY=Math.max(Math.min(r.previous.y,t.bottom),t.top),a.controlPointNextX=Math.max(Math.min(r.next.x,t.right),t.left),a.controlPointNextY=Math.max(Math.min(r.next.y,t.bottom),t.top),n.pivot()})},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t.custom||{},i=t._index,a=t._model;a.radius=n.hoverRadius?n.hoverRadius:o.valueAtIndexOrDefault(e.pointHoverRadius,i,this.chart.options.elements.point.hoverRadius),a.backgroundColor=n.hoverBackgroundColor?n.hoverBackgroundColor:o.valueAtIndexOrDefault(e.pointHoverBackgroundColor,i,o.getHoverColor(a.backgroundColor)),a.borderColor=n.hoverBorderColor?n.hoverBorderColor:o.valueAtIndexOrDefault(e.pointHoverBorderColor,i,o.getHoverColor(a.borderColor)),a.borderWidth=n.hoverBorderWidth?n.hoverBorderWidth:o.valueAtIndexOrDefault(e.pointHoverBorderWidth,i,a.borderWidth)},removeHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t.custom||{},i=t._index,a=t._model,r=this.chart.options.elements.point;a.radius=n.radius?n.radius:o.valueAtIndexOrDefault(e.pointRadius,i,r.radius),a.backgroundColor=n.backgroundColor?n.backgroundColor:o.valueAtIndexOrDefault(e.pointBackgroundColor,i,r.backgroundColor),a.borderColor=n.borderColor?n.borderColor:o.valueAtIndexOrDefault(e.pointBorderColor,i,r.borderColor),a.borderWidth=n.borderWidth?n.borderWidth:o.valueAtIndexOrDefault(e.pointBorderWidth,i,r.borderWidth)}})}},{25:25,40:40,45:45}],21:[function(t,e,n){"use strict";t(25)._set("scatter",{hover:{mode:"single"},scales:{xAxes:[{id:"x-axis-1",type:"linear",position:"bottom"}],yAxes:[{id:"y-axis-1",type:"linear",position:"left"}]},showLines:!1,tooltips:{callbacks:{title:function(){return""},label:function(t){return"("+t.xLabel+", "+t.yLabel+")"}}}}),e.exports=function(t){t.controllers.scatter=t.controllers.line}},{25:25}],22:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{animation:{duration:1e3,easing:"easeOutQuart",onProgress:o.noop,onComplete:o.noop}}),e.exports=function(t){t.Animation=a.extend({chart:null,currentStep:0,numSteps:60,easing:"",render:null,onAnimationProgress:null,onAnimationComplete:null}),t.animationService={frameDuration:17,animations:[],dropFrames:0,request:null,addAnimation:function(t,e,n,i){var a,o,r=this.animations;for(e.chart=t,i||(t.animating=!0),a=0,o=r.length;a<o;++a)if(r[a].chart===t)return void(r[a]=e);r.push(e),1===r.length&&this.requestAnimationFrame()},cancelAnimation:function(t){var e=o.findIndex(this.animations,function(e){return e.chart===t});-1!==e&&(this.animations.splice(e,1),t.animating=!1)},requestAnimationFrame:function(){var t=this;null===t.request&&(t.request=o.requestAnimFrame.call(window,function(){t.request=null,t.startDigest()}))},startDigest:function(){var t=this,e=Date.now(),n=0;t.dropFrames>1&&(n=Math.floor(t.dropFrames),t.dropFrames=t.dropFrames%1),t.advance(1+n);var i=Date.now();t.dropFrames+=(i-e)/t.frameDuration,t.animations.length>0&&t.requestAnimationFrame()},advance:function(t){for(var e,n,i=this.animations,a=0;a<i.length;)n=(e=i[a]).chart,e.currentStep=(e.currentStep||0)+t,e.currentStep=Math.min(e.currentStep,e.numSteps),o.callback(e.render,[n,e],n),o.callback(e.onAnimationProgress,[e],n),e.currentStep>=e.numSteps?(o.callback(e.onAnimationComplete,[e],n),n.animating=!1,i.splice(a,1)):++a}},Object.defineProperty(t.Animation.prototype,"animationObject",{get:function(){return this}}),Object.defineProperty(t.Animation.prototype,"chartInstance",{get:function(){return this.chart},set:function(t){this.chart=t}})}},{25:25,26:26,45:45}],23:[function(t,e,n){"use strict";var i=t(25),a=t(45),o=t(28),r=t(48);e.exports=function(t){function e(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=a.configMerge(i.global,i[t.type],t.options||{}),t}function n(t){var e=t.options;e.scale?t.scale.options=e.scale:e.scales&&e.scales.xAxes.concat(e.scales.yAxes).forEach(function(e){t.scales[e.id].options=e}),t.tooltip._options=e.tooltips}function l(t){return"top"===t||"bottom"===t}var s=t.plugins;t.types={},t.instances={},t.controllers={},a.extend(t.prototype,{construct:function(n,i){var o=this;i=e(i);var l=r.acquireContext(n,i),s=l&&l.canvas,u=s&&s.height,d=s&&s.width;o.id=a.uid(),o.ctx=l,o.canvas=s,o.config=i,o.width=d,o.height=u,o.aspectRatio=u?d/u:null,o.options=i.options,o._bufferedRender=!1,o.chart=o,o.controller=o,t.instances[o.id]=o,Object.defineProperty(o,"data",{get:function(){return o.config.data},set:function(t){o.config.data=t}}),l&&s?(o.initialize(),o.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return s.notify(t,"beforeInit"),a.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildScales(),t.initToolTip(),s.notify(t,"afterInit"),t},clear:function(){return a.canvas.clear(this),this},stop:function(){return t.animationService.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,i=e.canvas,o=n.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(a.getMaximumWidth(i))),l=Math.max(0,Math.floor(o?r/o:a.getMaximumHeight(i)));if((e.width!==r||e.height!==l)&&(i.width=e.width=r,i.height=e.height=l,i.style.width=r+"px",i.style.height=l+"px",a.retinaScale(e,n.devicePixelRatio),!t)){var u={width:r,height:l};s.notify(e,"resize",[u]),e.options.onResize&&e.options.onResize(e,u),e.stop(),e.update(e.options.responsiveAnimationDuration)}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;a.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),a.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),n&&(n.id=n.id||"scale")},buildScales:function(){var e=this,n=e.options,i=e.scales={},o=[];n.scales&&(o=o.concat((n.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(n.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),n.scale&&o.push({options:n.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),a.each(o,function(n){var o=n.options,r=a.valueOrDefault(o.type,n.dtype),s=t.scaleService.getScaleConstructor(r);if(s){l(o.position)!==l(n.dposition)&&(o.position=n.dposition);var u=new s({id:o.id,options:o,ctx:e.ctx,chart:e});i[u.id]=u,u.mergeTicksOptions(),n.isDefault&&(e.scale=u)}}),t.scaleService.addScalesToLayout(this)},buildOrUpdateControllers:function(){var e=this,n=[],i=[];return a.each(e.data.datasets,function(a,o){var r=e.getDatasetMeta(o),l=a.type||e.config.type;if(r.type&&r.type!==l&&(e.destroyDatasetMeta(o),r=e.getDatasetMeta(o)),r.type=l,n.push(r.type),r.controller)r.controller.updateIndex(o);else{var s=t.controllers[r.type];if(void 0===s)throw new Error('"'+r.type+'" is not a chart type.');r.controller=new s(e,o),i.push(r.controller)}},e),i},resetElements:function(){var t=this;a.each(t.data.datasets,function(e,n){t.getDatasetMeta(n).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),n(e),!1!==s.notify(e,"beforeUpdate")){e.tooltip._data=e.data;var i=e.buildOrUpdateControllers();a.each(e.data.datasets,function(t,n){e.getDatasetMeta(n).controller.buildOrUpdateElements()},e),e.updateLayout(),a.each(i,function(t){t.reset()}),e.updateDatasets(),e.tooltip.initialize(),e.lastActive=[],s.notify(e,"afterUpdate"),e._bufferedRender?e._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:e.render(t)}},updateLayout:function(){var e=this;!1!==s.notify(e,"beforeLayout")&&(t.layoutService.update(this,this.width,this.height),s.notify(e,"afterScaleUpdate"),s.notify(e,"afterLayout"))},updateDatasets:function(){var t=this;if(!1!==s.notify(t,"beforeDatasetsUpdate")){for(var e=0,n=t.data.datasets.length;e<n;++e)t.updateDataset(e);s.notify(t,"afterDatasetsUpdate")}},updateDataset:function(t){var e=this,n=e.getDatasetMeta(t),i={meta:n,index:t};!1!==s.notify(e,"beforeDatasetUpdate",[i])&&(n.controller.update(),s.notify(e,"afterDatasetUpdate",[i]))},render:function(e){var n=this;e&&"object"==typeof e||(e={duration:e,lazy:arguments[1]});var i=e.duration,o=e.lazy;if(!1!==s.notify(n,"beforeRender")){var r=n.options.animation,l=function(t){s.notify(n,"afterRender"),a.callback(r&&r.onComplete,[t],n)};if(r&&(void 0!==i&&0!==i||void 0===i&&0!==r.duration)){var u=new t.Animation({numSteps:(i||r.duration)/16.66,easing:e.easing||r.easing,render:function(t,e){var n=a.easing.effects[e.easing],i=e.currentStep,o=i/e.numSteps;t.draw(n(o),o,i)},onAnimationProgress:r.onProgress,onAnimationComplete:l});t.animationService.addAnimation(n,u,i,o)}else n.draw(),l(new t.Animation({numSteps:0,chart:n}));return n}},draw:function(t){var e=this;e.clear(),a.isNullOrUndef(t)&&(t=1),e.transition(t),!1!==s.notify(e,"beforeDraw",[t])&&(a.each(e.boxes,function(t){t.draw(e.chartArea)},e),e.scale&&e.scale.draw(),e.drawDatasets(t),e._drawTooltip(t),s.notify(e,"afterDraw",[t]))},transition:function(t){for(var e=this,n=0,i=(e.data.datasets||[]).length;n<i;++n)e.isDatasetVisible(n)&&e.getDatasetMeta(n).controller.transition(t);e.tooltip.transition(t)},drawDatasets:function(t){var e=this;if(!1!==s.notify(e,"beforeDatasetsDraw",[t])){for(var n=(e.data.datasets||[]).length-1;n>=0;--n)e.isDatasetVisible(n)&&e.drawDataset(n,t);s.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var n=this,i=n.getDatasetMeta(t),a={meta:i,index:t,easingValue:e};!1!==s.notify(n,"beforeDatasetDraw",[a])&&(i.controller.draw(e),s.notify(n,"afterDatasetDraw",[a]))},_drawTooltip:function(t){var e=this,n=e.tooltip,i={tooltip:n,easingValue:t};!1!==s.notify(e,"beforeTooltipDraw",[i])&&(n.draw(),s.notify(e,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return o.modes.single(this,t)},getElementsAtEvent:function(t){return o.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return o.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,n){var i=o.modes[e];return"function"==typeof i?i(this,t,n):[]},getDatasetAtEvent:function(t){return o.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this,n=e.data.datasets[t];n._meta||(n._meta={});var i=n._meta[e.id];return i||(i=n._meta[e.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,n=this.data.datasets.length;e<n;++e)this.isDatasetVisible(e)&&t++;return t},isDatasetVisible:function(t){var e=this.getDatasetMeta(t);return"boolean"==typeof e.hidden?!e.hidden:!this.data.datasets[t].hidden},generateLegend:function(){return this.options.legendCallback(this)},destroyDatasetMeta:function(t){var e=this.id,n=this.data.datasets[t],i=n._meta&&n._meta[e];i&&(i.controller.destroy(),delete n._meta[e])},destroy:function(){var e,n,i=this,o=i.canvas;for(i.stop(),e=0,n=i.data.datasets.length;e<n;++e)i.destroyDatasetMeta(e);o&&(i.unbindEvents(),a.canvas.clear(i),r.releaseContext(i.ctx),i.canvas=null,i.ctx=null),s.notify(i,"destroy"),delete t.instances[i.id]},toBase64Image:function(){return this.canvas.toDataURL.apply(this.canvas,arguments)},initToolTip:function(){var e=this;e.tooltip=new t.Tooltip({_chart:e,_chartInstance:e,_data:e.data,_options:e.options.tooltips},e)},bindEvents:function(){var t=this,e=t._listeners={},n=function(){t.eventHandler.apply(t,arguments)};a.each(t.options.events,function(i){r.addEventListener(t,i,n),e[i]=n}),t.options.responsive&&(n=function(){t.resize()},r.addEventListener(t,"resize",n),e.resize=n)},unbindEvents:function(){var t=this,e=t._listeners;e&&(delete t._listeners,a.each(e,function(e,n){r.removeEventListener(t,n,e)}))},updateHoverStyle:function(t,e,n){var i,a,o,r=n?"setHoverStyle":"removeHoverStyle";for(a=0,o=t.length;a<o;++a)(i=t[a])&&this.getDatasetMeta(i._datasetIndex).controller[r](i)},eventHandler:function(t){var e=this,n=e.tooltip;if(!1!==s.notify(e,"beforeEvent",[t])){e._bufferedRender=!0,e._bufferedRequest=null;var i=e.handleEvent(t);i|=n&&n.handleEvent(t),s.notify(e,"afterEvent",[t]);var a=e._bufferedRequest;return a?e.render(a):i&&!e.animating&&(e.stop(),e.render(e.options.hover.animationDuration,!0)),e._bufferedRender=!1,e._bufferedRequest=null,e}},handleEvent:function(t){var e=this,n=e.options||{},i=n.hover,o=!1;return e.lastActive=e.lastActive||[],"mouseout"===t.type?e.active=[]:e.active=e.getElementsAtEventForMode(t,i.mode,i),a.callback(n.onHover||n.hover.onHover,[t.native,e.active],e),"mouseup"!==t.type&&"click"!==t.type||n.onClick&&n.onClick.call(e,t.native,e.active),e.lastActive.length&&e.updateHoverStyle(e.lastActive,i.mode,!1),e.active.length&&i.mode&&e.updateHoverStyle(e.active,i.mode,!0),o=!a.arrayEquals(e.active,e.lastActive),e.lastActive=e.active,o}}),t.Controller=t}},{25:25,28:28,45:45,48:48}],24:[function(t,e,n){"use strict";var i=t(45);e.exports=function(t){function e(t,e){t._chartjs?t._chartjs.listeners.push(e):(Object.defineProperty(t,"_chartjs",{configurable:!0,enumerable:!1,value:{listeners:[e]}}),a.forEach(function(e){var n="onData"+e.charAt(0).toUpperCase()+e.slice(1),a=t[e];Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value:function(){var e=Array.prototype.slice.call(arguments),o=a.apply(this,e);return i.each(t._chartjs.listeners,function(t){"function"==typeof t[n]&&t[n].apply(t,e)}),o}})}))}function n(t,e){var n=t._chartjs;if(n){var i=n.listeners,o=i.indexOf(e);-1!==o&&i.splice(o,1),i.length>0||(a.forEach(function(e){delete t[e]}),delete t._chartjs)}}var a=["push","pop","shift","splice","unshift"];t.DatasetController=function(t,e){this.initialize(t,e)},i.extend(t.DatasetController.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){var n=this;n.chart=t,n.index=e,n.linkScales(),n.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),n=t.getDataset();null===e.xAxisID&&(e.xAxisID=n.xAxisID||t.chart.options.scales.xAxes[0].id),null===e.yAxisID&&(e.yAxisID=n.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},reset:function(){this.update(!0)},destroy:function(){this._data&&n(this._data,this)},createMetaDataset:function(){var t=this,e=t.datasetElementType;return e&&new e({_chart:t.chart,_datasetIndex:t.index})},createMetaData:function(t){var e=this,n=e.dataElementType;return n&&new n({_chart:e.chart,_datasetIndex:e.index,_index:t})},addElements:function(){var t,e,n=this,i=n.getMeta(),a=n.getDataset().data||[],o=i.data;for(t=0,e=a.length;t<e;++t)o[t]=o[t]||n.createMetaData(t);i.dataset=i.dataset||n.createMetaDataset()},addElementAndReset:function(t){var e=this.createMetaData(t);this.getMeta().data.splice(t,0,e),this.updateElement(e,t,!0)},buildOrUpdateElements:function(){var t=this,i=t.getDataset(),a=i.data||(i.data=[]);t._data!==a&&(t._data&&n(t._data,t),e(a,t),t._data=a),t.resyncElements()},update:i.noop,transition:function(t){for(var e=this.getMeta(),n=e.data||[],i=n.length,a=0;a<i;++a)n[a].transition(t);e.dataset&&e.dataset.transition(t)},draw:function(){var t=this.getMeta(),e=t.data||[],n=e.length,i=0;for(t.dataset&&t.dataset.draw();i<n;++i)e[i].draw()},removeHoverStyle:function(t,e){var n=this.chart.data.datasets[t._datasetIndex],a=t._index,o=t.custom||{},r=i.valueAtIndexOrDefault,l=t._model;l.backgroundColor=o.backgroundColor?o.backgroundColor:r(n.backgroundColor,a,e.backgroundColor),l.borderColor=o.borderColor?o.borderColor:r(n.borderColor,a,e.borderColor),l.borderWidth=o.borderWidth?o.borderWidth:r(n.borderWidth,a,e.borderWidth)},setHoverStyle:function(t){var e=this.chart.data.datasets[t._datasetIndex],n=t._index,a=t.custom||{},o=i.valueAtIndexOrDefault,r=i.getHoverColor,l=t._model;l.backgroundColor=a.hoverBackgroundColor?a.hoverBackgroundColor:o(e.hoverBackgroundColor,n,r(l.backgroundColor)),l.borderColor=a.hoverBorderColor?a.hoverBorderColor:o(e.hoverBorderColor,n,r(l.borderColor)),l.borderWidth=a.hoverBorderWidth?a.hoverBorderWidth:o(e.hoverBorderWidth,n,l.borderWidth)},resyncElements:function(){var t=this,e=t.getMeta(),n=t.getDataset().data,i=e.data.length,a=n.length;a<i?e.data.splice(a,i-a):a>i&&t.insertElements(i,a-i)},insertElements:function(t,e){for(var n=0;n<e;++n)this.addElementAndReset(t+n)},onDataPush:function(){this.insertElements(this.getDataset().data.length-1,arguments.length)},onDataPop:function(){this.getMeta().data.pop()},onDataShift:function(){this.getMeta().data.shift()},onDataSplice:function(t,e){this.getMeta().data.splice(t,e),this.insertElements(t,arguments.length-2)},onDataUnshift:function(){this.insertElements(0,arguments.length)}}),t.DatasetController.extend=i.inherits}},{45:45}],25:[function(t,e,n){"use strict";var i=t(45);e.exports={_set:function(t,e){return i.merge(this[t]||(this[t]={}),e)}}},{45:45}],26:[function(t,e,n){"use strict";function i(t,e,n,i){var o,r,l,s,u,d,c,h,f,g=Object.keys(n);for(o=0,r=g.length;o<r;++o)if(l=g[o],d=n[l],e.hasOwnProperty(l)||(e[l]=d),(s=e[l])!==d&&"_"!==l[0]){if(t.hasOwnProperty(l)||(t[l]=s),u=t[l],(c=typeof d)===typeof u)if("string"===c){if((h=a(u)).valid&&(f=a(d)).valid){e[l]=f.mix(h,i).rgbString();continue}}else if("number"===c&&isFinite(u)&&isFinite(d)){e[l]=u+(d-u)*i;continue}e[l]=d}}var a=t(3),o=t(45),r=function(t){o.extend(this,t),this.initialize.apply(this,arguments)};o.extend(r.prototype,{initialize:function(){this.hidden=!1},pivot:function(){var t=this;return t._view||(t._view=o.clone(t._model)),t._start={},t},transition:function(t){var e=this,n=e._model,a=e._start,o=e._view;return n&&1!==t?(o||(o=e._view={}),a||(a=e._start={}),i(a,o,n,t),e):(e._view=n,e._start=null,e)},tooltipPosition:function(){return{x:this._model.x,y:this._model.y}},hasValue:function(){return o.isNumber(this._model.x)&&o.isNumber(this._model.y)}}),r.extend=o.inherits,e.exports=r},{3:3,45:45}],27:[function(t,e,n){"use strict";var i=t(3),a=t(25),o=t(45);e.exports=function(t){function e(t,e,n){var i;return"string"==typeof t?(i=parseInt(t,10),-1!==t.indexOf("%")&&(i=i/100*e.parentNode[n])):i=t,i}function n(t){return void 0!==t&&null!==t&&"none"!==t}function r(t,i,a){var o=document.defaultView,r=t.parentNode,l=o.getComputedStyle(t)[i],s=o.getComputedStyle(r)[i],u=n(l),d=n(s),c=Number.POSITIVE_INFINITY;return u||d?Math.min(u?e(l,t,a):c,d?e(s,r,a):c):"none"}o.configMerge=function(){return o.merge(o.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(e,n,i,a){var r=n[e]||{},l=i[e];"scales"===e?n[e]=o.scaleMerge(r,l):"scale"===e?n[e]=o.merge(r,[t.scaleService.getScaleDefaults(l.type),l]):o._merger(e,n,i,a)}})},o.scaleMerge=function(){return o.merge(o.clone(arguments[0]),[].slice.call(arguments,1),{merger:function(e,n,i,a){if("xAxes"===e||"yAxes"===e){var r,l,s,u=i[e].length;for(n[e]||(n[e]=[]),r=0;r<u;++r)s=i[e][r],l=o.valueOrDefault(s.type,"xAxes"===e?"category":"linear"),r>=n[e].length&&n[e].push({}),!n[e][r].type||s.type&&s.type!==n[e][r].type?o.merge(n[e][r],[t.scaleService.getScaleDefaults(l),s]):o.merge(n[e][r],s)}else o._merger(e,n,i,a)}})},o.where=function(t,e){if(o.isArray(t)&&Array.prototype.filter)return t.filter(e);var n=[];return o.each(t,function(t){e(t)&&n.push(t)}),n},o.findIndex=Array.prototype.findIndex?function(t,e,n){return t.findIndex(e,n)}:function(t,e,n){n=void 0===n?t:n;for(var i=0,a=t.length;i<a;++i)if(e.call(n,t[i],i,t))return i;return-1},o.findNextWhere=function(t,e,n){o.isNullOrUndef(n)&&(n=-1);for(var i=n+1;i<t.length;i++){var a=t[i];if(e(a))return a}},o.findPreviousWhere=function(t,e,n){o.isNullOrUndef(n)&&(n=t.length);for(var i=n-1;i>=0;i--){var a=t[i];if(e(a))return a}},o.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},o.almostEquals=function(t,e,n){return Math.abs(t-e)<n},o.almostWhole=function(t,e){var n=Math.round(t);return n-e<t&&n+e>t},o.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},o.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},o.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},o.log10=Math.log10?function(t){return Math.log10(t)}:function(t){return Math.log(t)/Math.LN10},o.toRadians=function(t){return t*(Math.PI/180)},o.toDegrees=function(t){return t*(180/Math.PI)},o.getAngleFromPoint=function(t,e){var n=e.x-t.x,i=e.y-t.y,a=Math.sqrt(n*n+i*i),o=Math.atan2(i,n);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:a}},o.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},o.aliasPixel=function(t){return t%2==0?0:.5},o.splineCurve=function(t,e,n,i){var a=t.skip?e:t,o=e,r=n.skip?e:n,l=Math.sqrt(Math.pow(o.x-a.x,2)+Math.pow(o.y-a.y,2)),s=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),u=l/(l+s),d=s/(l+s),c=i*(u=isNaN(u)?0:u),h=i*(d=isNaN(d)?0:d);return{previous:{x:o.x-c*(r.x-a.x),y:o.y-c*(r.y-a.y)},next:{x:o.x+h*(r.x-a.x),y:o.y+h*(r.y-a.y)}}},o.EPSILON=Number.EPSILON||1e-14,o.splineCurveMonotone=function(t){var e,n,i,a,r=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),l=r.length;for(e=0;e<l;++e)if(!(i=r[e]).model.skip){if(n=e>0?r[e-1]:null,(a=e<l-1?r[e+1]:null)&&!a.model.skip){var s=a.model.x-i.model.x;i.deltaK=0!==s?(a.model.y-i.model.y)/s:0}!n||n.model.skip?i.mK=i.deltaK:!a||a.model.skip?i.mK=n.deltaK:this.sign(n.deltaK)!==this.sign(i.deltaK)?i.mK=0:i.mK=(n.deltaK+i.deltaK)/2}var u,d,c,h;for(e=0;e<l-1;++e)i=r[e],a=r[e+1],i.model.skip||a.model.skip||(o.almostEquals(i.deltaK,0,this.EPSILON)?i.mK=a.mK=0:(u=i.mK/i.deltaK,d=a.mK/i.deltaK,(h=Math.pow(u,2)+Math.pow(d,2))<=9||(c=3/Math.sqrt(h),i.mK=u*c*i.deltaK,a.mK=d*c*i.deltaK)));var f;for(e=0;e<l;++e)(i=r[e]).model.skip||(n=e>0?r[e-1]:null,a=e<l-1?r[e+1]:null,n&&!n.model.skip&&(f=(i.model.x-n.model.x)/3,i.model.controlPointPreviousX=i.model.x-f,i.model.controlPointPreviousY=i.model.y-f*i.mK),a&&!a.model.skip&&(f=(a.model.x-i.model.x)/3,i.model.controlPointNextX=i.model.x+f,i.model.controlPointNextY=i.model.y+f*i.mK))},o.nextItem=function(t,e,n){return n?e>=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},o.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},o.niceNum=function(t,e){var n=Math.floor(o.log10(t)),i=t/Math.pow(10,n);return(e?i<1.5?1:i<3?2:i<7?5:10:i<=1?1:i<=2?2:i<=5?5:10)*Math.pow(10,n)},o.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},o.getRelativePosition=function(t,e){var n,i,a=t.originalEvent||t,r=t.currentTarget||t.srcElement,l=r.getBoundingClientRect(),s=a.touches;s&&s.length>0?(n=s[0].clientX,i=s[0].clientY):(n=a.clientX,i=a.clientY);var u=parseFloat(o.getStyle(r,"padding-left")),d=parseFloat(o.getStyle(r,"padding-top")),c=parseFloat(o.getStyle(r,"padding-right")),h=parseFloat(o.getStyle(r,"padding-bottom")),f=l.right-l.left-u-c,g=l.bottom-l.top-d-h;return n=Math.round((n-l.left-u)/f*r.width/e.currentDevicePixelRatio),i=Math.round((i-l.top-d)/g*r.height/e.currentDevicePixelRatio),{x:n,y:i}},o.getConstraintWidth=function(t){return r(t,"max-width","clientWidth")},o.getConstraintHeight=function(t){return r(t,"max-height","clientHeight")},o.getMaximumWidth=function(t){var e=t.parentNode;if(!e)return t.clientWidth;var n=parseInt(o.getStyle(e,"padding-left"),10),i=parseInt(o.getStyle(e,"padding-right"),10),a=e.clientWidth-n-i,r=o.getConstraintWidth(t);return isNaN(r)?a:Math.min(a,r)},o.getMaximumHeight=function(t){var e=t.parentNode;if(!e)return t.clientHeight;var n=parseInt(o.getStyle(e,"padding-top"),10),i=parseInt(o.getStyle(e,"padding-bottom"),10),a=e.clientHeight-n-i,r=o.getConstraintHeight(t);return isNaN(r)?a:Math.min(a,r)},o.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},o.retinaScale=function(t,e){var n=t.currentDevicePixelRatio=e||window.devicePixelRatio||1;if(1!==n){var i=t.canvas,a=t.height,o=t.width;i.height=a*n,i.width=o*n,t.ctx.scale(n,n),i.style.height=a+"px",i.style.width=o+"px"}},o.fontString=function(t,e,n){return e+" "+t+"px "+n},o.longestText=function(t,e,n,i){var a=(i=i||{}).data=i.data||{},r=i.garbageCollect=i.garbageCollect||[];i.font!==e&&(a=i.data={},r=i.garbageCollect=[],i.font=e),t.font=e;var l=0;o.each(n,function(e){void 0!==e&&null!==e&&!0!==o.isArray(e)?l=o.measureText(t,a,r,l,e):o.isArray(e)&&o.each(e,function(e){void 0===e||null===e||o.isArray(e)||(l=o.measureText(t,a,r,l,e))})});var s=r.length/2;if(s>n.length){for(var u=0;u<s;u++)delete a[r[u]];r.splice(0,s)}return l},o.measureText=function(t,e,n,i,a){var o=e[a];return o||(o=e[a]=t.measureText(a).width,n.push(a)),o>i&&(i=o),i},o.numberOfLabelLines=function(t){var e=1;return o.each(t,function(t){o.isArray(t)&&t.length>e&&(e=t.length)}),e},o.color=i?function(t){return t instanceof CanvasGradient&&(t=a.global.defaultColor),i(t)}:function(t){return console.error("Color.js not found!"),t},o.getHoverColor=function(t){return t instanceof CanvasPattern?t:o.color(t).saturate(.5).darken(.1).rgbString()}}},{25:25,3:3,45:45}],28:[function(t,e,n){"use strict";function i(t,e){return t.native?{x:t.x,y:t.y}:u.getRelativePosition(t,e)}function a(t,e){var n,i,a,o,r;for(i=0,o=t.data.datasets.length;i<o;++i)if(t.isDatasetVisible(i))for(a=0,r=(n=t.getDatasetMeta(i)).data.length;a<r;++a){var l=n.data[a];l._view.skip||e(l)}}function o(t,e){var n=[];return a(t,function(t){t.inRange(e.x,e.y)&&n.push(t)}),n}function r(t,e,n,i){var o=Number.POSITIVE_INFINITY,r=[];return a(t,function(t){if(!n||t.inRange(e.x,e.y)){var a=t.getCenterPoint(),l=i(e,a);l<o?(r=[t],o=l):l===o&&r.push(t)}}),r}function l(t){var e=-1!==t.indexOf("x"),n=-1!==t.indexOf("y");return function(t,i){var a=e?Math.abs(t.x-i.x):0,o=n?Math.abs(t.y-i.y):0;return Math.sqrt(Math.pow(a,2)+Math.pow(o,2))}}function s(t,e,n){var a=i(e,t);n.axis=n.axis||"x";var s=l(n.axis),u=n.intersect?o(t,a):r(t,a,!1,s),d=[];return u.length?(t.data.datasets.forEach(function(e,n){if(t.isDatasetVisible(n)){var i=t.getDatasetMeta(n).data[u[0]._index];i&&!i._view.skip&&d.push(i)}}),d):[]}var u=t(45);e.exports={modes:{single:function(t,e){var n=i(e,t),o=[];return a(t,function(t){if(t.inRange(n.x,n.y))return o.push(t),o}),o.slice(0,1)},label:s,index:s,dataset:function(t,e,n){var a=i(e,t);n.axis=n.axis||"xy";var s=l(n.axis),u=n.intersect?o(t,a):r(t,a,!1,s);return u.length>0&&(u=t.getDatasetMeta(u[0]._datasetIndex).data),u},"x-axis":function(t,e){return s(t,e,{intersect:!1})},point:function(t,e){return o(t,i(e,t))},nearest:function(t,e,n){var a=i(e,t);n.axis=n.axis||"xy";var o=l(n.axis),s=r(t,a,n.intersect,o);return s.length>1&&s.sort(function(t,e){var n=t.getArea()-e.getArea();return 0===n&&(n=t._datasetIndex-e._datasetIndex),n}),s.slice(0,1)},x:function(t,e,n){var o=i(e,t),r=[],l=!1;return a(t,function(t){t.inXRange(o.x)&&r.push(t),t.inRange(o.x,o.y)&&(l=!0)}),n.intersect&&!l&&(r=[]),r},y:function(t,e,n){var o=i(e,t),r=[],l=!1;return a(t,function(t){t.inYRange(o.y)&&r.push(t),t.inRange(o.x,o.y)&&(l=!0)}),n.intersect&&!l&&(r=[]),r}}}},{45:45}],29:[function(t,e,n){"use strict";t(25)._set("global",{responsive:!0,responsiveAnimationDuration:0,maintainAspectRatio:!0,events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,defaultColor:"rgba(0,0,0,0.1)",defaultFontColor:"#666",defaultFontFamily:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",defaultFontSize:12,defaultFontStyle:"normal",showLines:!0,elements:{},layout:{padding:{top:0,right:0,bottom:0,left:0}}}),e.exports=function(){var t=function(t,e){return this.construct(t,e),this};return t.Chart=t,t}},{25:25}],30:[function(t,e,n){"use strict";var i=t(45);e.exports=function(t){function e(t,e){return i.where(t,function(t){return t.position===e})}function n(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,n){var i=e?n:t,a=e?t:n;return i.weight===a.weight?i._tmpIndex_-a._tmpIndex_:i.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}t.layoutService={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var n=t.boxes?t.boxes.indexOf(e):-1;-1!==n&&t.boxes.splice(n,1)},configure:function(t,e,n){for(var i,a=["fullWidth","position","weight"],o=a.length,r=0;r<o;++r)i=a[r],n.hasOwnProperty(i)&&(e[i]=n[i])},update:function(t,a,o){function r(t){var e=i.findNextWhere(_,function(e){return e.box===t});if(e)if(t.isHorizontal()){var n={left:Math.max(T,D),right:Math.max(F,I),top:0,bottom:0};t.update(t.fullWidth?x:S,y/2,n)}else t.update(e.minSize.width,C)}function l(t){t.isHorizontal()?(t.left=t.fullWidth?d:T,t.right=t.fullWidth?a-c:T+S,t.top=V,t.bottom=V+t.height,V=t.bottom):(t.left=N,t.right=N+t.width,t.top=O,t.bottom=O+C,N=t.right)}if(t){var s=t.options.layout||{},u=i.options.toPadding(s.padding),d=u.left,c=u.right,h=u.top,f=u.bottom,g=e(t.boxes,"left"),p=e(t.boxes,"right"),v=e(t.boxes,"top"),m=e(t.boxes,"bottom"),b=e(t.boxes,"chartArea");n(g,!0),n(p,!1),n(v,!0),n(m,!1);var x=a-d-c,y=o-h-f,k=y/2,w=(a-x/2)/(g.length+p.length),M=(o-k)/(v.length+m.length),S=x,C=y,_=[];i.each(g.concat(p,v,m),function(t){var e,n=t.isHorizontal();n?(e=t.update(t.fullWidth?x:S,M),C-=e.height):(e=t.update(w,k),S-=e.width),_.push({horizontal:n,minSize:e,box:t})});var D=0,I=0,P=0,A=0;i.each(v.concat(m),function(t){if(t.getPadding){var e=t.getPadding();D=Math.max(D,e.left),I=Math.max(I,e.right)}}),i.each(g.concat(p),function(t){if(t.getPadding){var e=t.getPadding();P=Math.max(P,e.top),A=Math.max(A,e.bottom)}});var T=d,F=c,O=h,R=f;i.each(g.concat(p),r),i.each(g,function(t){T+=t.width}),i.each(p,function(t){F+=t.width}),i.each(v.concat(m),r),i.each(v,function(t){O+=t.height}),i.each(m,function(t){R+=t.height}),i.each(g.concat(p),function(t){var e=i.findNextWhere(_,function(e){return e.box===t}),n={left:0,right:0,top:O,bottom:R};e&&t.update(e.minSize.width,C,n)}),T=d,F=c,O=h,R=f,i.each(g,function(t){T+=t.width}),i.each(p,function(t){F+=t.width}),i.each(v,function(t){O+=t.height}),i.each(m,function(t){R+=t.height});var L=Math.max(D-T,0);T+=L,F+=Math.max(I-F,0);var z=Math.max(P-O,0);O+=z,R+=Math.max(A-R,0);var B=o-O-R,W=a-T-F;W===S&&B===C||(i.each(g,function(t){t.height=B}),i.each(p,function(t){t.height=B}),i.each(v,function(t){t.fullWidth||(t.width=W)}),i.each(m,function(t){t.fullWidth||(t.width=W)}),C=B,S=W);var N=d+L,V=h+z;i.each(g.concat(v),l),N+=S,V+=C,i.each(p,l),i.each(m,l),t.chartArea={left:T,top:O,right:T+S,bottom:O+C},i.each(b,function(e){e.left=t.chartArea.left,e.top=t.chartArea.top,e.right=t.chartArea.right,e.bottom=t.chartArea.bottom,e.update(S,C)})}}}}},{45:45}],31:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{plugins:{}}),e.exports=function(t){t.plugins={_plugins:[],_cacheId:0,register:function(t){var e=this._plugins;[].concat(t).forEach(function(t){-1===e.indexOf(t)&&e.push(t)}),this._cacheId++},unregister:function(t){var e=this._plugins;[].concat(t).forEach(function(t){var n=e.indexOf(t);-1!==n&&e.splice(n,1)}),this._cacheId++},clear:function(){this._plugins=[],this._cacheId++},count:function(){return this._plugins.length},getAll:function(){return this._plugins},notify:function(t,e,n){var i,a,o,r,l,s=this.descriptors(t),u=s.length;for(i=0;i<u;++i)if(a=s[i],o=a.plugin,"function"==typeof(l=o[e])&&((r=[t].concat(n||[])).push(a.options),!1===l.apply(o,r)))return!1;return!0},descriptors:function(t){var e=t._plugins||(t._plugins={});if(e.id===this._cacheId)return e.descriptors;var n=[],a=[],r=t&&t.config||{},l=r.options&&r.options.plugins||{};return this._plugins.concat(r.plugins||[]).forEach(function(t){if(-1===n.indexOf(t)){var e=t.id,r=l[e];!1!==r&&(!0===r&&(r=o.clone(i.global.plugins[e])),n.push(t),a.push({plugin:t,options:r||{}}))}}),e.descriptors=a,e.id=this._cacheId,a}},t.pluginService=t.plugins,t.PluginBase=a.extend({})}},{25:25,26:26,45:45}],32:[function(t,e,n){"use strict";function i(t){var e,n,i=[];for(e=0,n=t.length;e<n;++e)i.push(t[e].label);return i}function a(t,e,n){var i=t.getPixelForTick(e);return n&&(i-=0===e?(t.getPixelForTick(1)-i)/2:(i-t.getPixelForTick(e-1))/2),i}var o=t(25),r=t(26),l=t(45),s=t(34);o._set("scale",{display:!0,position:"left",offset:!1,gridLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1,drawBorder:!0,drawOnChartArea:!0,drawTicks:!0,tickMarkLength:10,zeroLineWidth:1,zeroLineColor:"rgba(0,0,0,0.25)",zeroLineBorderDash:[],zeroLineBorderDashOffset:0,offsetGridLines:!1,borderDash:[],borderDashOffset:0},scaleLabel:{display:!1,labelString:"",lineHeight:1.2,padding:{top:4,bottom:4}},ticks:{beginAtZero:!1,minRotation:0,maxRotation:50,mirror:!1,padding:0,reverse:!1,display:!0,autoSkip:!0,autoSkipPadding:0,labelOffset:0,callback:s.formatters.values,minor:{},major:{}}}),e.exports=function(t){function e(t,e,n){return l.isArray(e)?l.longestText(t,n,e):t.measureText(e).width}function n(t){var e=l.valueOrDefault,n=o.global,i=e(t.fontSize,n.defaultFontSize),a=e(t.fontStyle,n.defaultFontStyle),r=e(t.fontFamily,n.defaultFontFamily);return{size:i,style:a,family:r,font:l.fontString(i,a,r)}}function s(t){return l.options.toLineHeight(l.valueOrDefault(t.lineHeight,1.2),l.valueOrDefault(t.fontSize,o.global.defaultFontSize))}t.Scale=r.extend({getPadding:function(){var t=this;return{left:t.paddingLeft||0,top:t.paddingTop||0,right:t.paddingRight||0,bottom:t.paddingBottom||0}},getTicks:function(){return this._ticks},mergeTicksOptions:function(){var t=this.options.ticks;!1===t.minor&&(t.minor={display:!1}),!1===t.major&&(t.major={display:!1});for(var e in t)"major"!==e&&"minor"!==e&&(void 0===t.minor[e]&&(t.minor[e]=t[e]),void 0===t.major[e]&&(t.major[e]=t[e]))},beforeUpdate:function(){l.callback(this.options.beforeUpdate,[this])},update:function(t,e,n){var i,a,o,r,s,u,d=this;for(d.beforeUpdate(),d.maxWidth=t,d.maxHeight=e,d.margins=l.extend({left:0,right:0,top:0,bottom:0},n),d.longestTextCache=d.longestTextCache||{},d.beforeSetDimensions(),d.setDimensions(),d.afterSetDimensions(),d.beforeDataLimits(),d.determineDataLimits(),d.afterDataLimits(),d.beforeBuildTicks(),s=d.buildTicks()||[],d.afterBuildTicks(),d.beforeTickToLabelConversion(),o=d.convertTicksToLabels(s)||d.ticks,d.afterTickToLabelConversion(),d.ticks=o,i=0,a=o.length;i<a;++i)r=o[i],(u=s[i])?u.label=r:s.push(u={label:r,major:!1});return d._ticks=s,d.beforeCalculateTickRotation(),d.calculateTickRotation(),d.afterCalculateTickRotation(),d.beforeFit(),d.fit(),d.afterFit(),d.afterUpdate(),d.minSize},afterUpdate:function(){l.callback(this.options.afterUpdate,[this])},beforeSetDimensions:function(){l.callback(this.options.beforeSetDimensions,[this])},setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0},afterSetDimensions:function(){l.callback(this.options.afterSetDimensions,[this])},beforeDataLimits:function(){l.callback(this.options.beforeDataLimits,[this])},determineDataLimits:l.noop,afterDataLimits:function(){l.callback(this.options.afterDataLimits,[this])},beforeBuildTicks:function(){l.callback(this.options.beforeBuildTicks,[this])},buildTicks:l.noop,afterBuildTicks:function(){l.callback(this.options.afterBuildTicks,[this])},beforeTickToLabelConversion:function(){l.callback(this.options.beforeTickToLabelConversion,[this])},convertTicksToLabels:function(){var t=this,e=t.options.ticks;t.ticks=t.ticks.map(e.userCallback||e.callback,this)},afterTickToLabelConversion:function(){l.callback(this.options.afterTickToLabelConversion,[this])},beforeCalculateTickRotation:function(){l.callback(this.options.beforeCalculateTickRotation,[this])},calculateTickRotation:function(){var t=this,e=t.ctx,a=t.options.ticks,o=i(t._ticks),r=n(a);e.font=r.font;var s=a.minRotation||0;if(o.length&&t.options.display&&t.isHorizontal())for(var u,d=l.longestText(e,r.font,o,t.longestTextCache),c=d,h=t.getPixelForTick(1)-t.getPixelForTick(0)-6;c>h&&s<a.maxRotation;){var f=l.toRadians(s);if(u=Math.cos(f),Math.sin(f)*d>t.maxHeight){s--;break}s++,c=u*d}t.labelRotation=s},afterCalculateTickRotation:function(){l.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){l.callback(this.options.beforeFit,[this])},fit:function(){var t=this,a=t.minSize={width:0,height:0},o=i(t._ticks),r=t.options,u=r.ticks,d=r.scaleLabel,c=r.gridLines,h=r.display,f=t.isHorizontal(),g=n(u),p=r.gridLines.tickMarkLength;if(a.width=f?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:h&&c.drawTicks?p:0,a.height=f?h&&c.drawTicks?p:0:t.maxHeight,d.display&&h){var v=s(d)+l.options.toPadding(d.padding).height;f?a.height+=v:a.width+=v}if(u.display&&h){var m=l.longestText(t.ctx,g.font,o,t.longestTextCache),b=l.numberOfLabelLines(o),x=.5*g.size,y=t.options.ticks.padding;if(f){t.longestLabelWidth=m;var k=l.toRadians(t.labelRotation),w=Math.cos(k),M=Math.sin(k)*m+g.size*b+x*(b-1)+x;a.height=Math.min(t.maxHeight,a.height+M+y),t.ctx.font=g.font;var S=e(t.ctx,o[0],g.font),C=e(t.ctx,o[o.length-1],g.font);0!==t.labelRotation?(t.paddingLeft="bottom"===r.position?w*S+3:w*x+3,t.paddingRight="bottom"===r.position?w*x+3:w*C+3):(t.paddingLeft=S/2+3,t.paddingRight=C/2+3)}else u.mirror?m=0:m+=y+x,a.width=Math.min(t.maxWidth,a.width+m),t.paddingTop=g.size/2,t.paddingBottom=g.size/2}t.handleMargins(),t.width=a.width,t.height=a.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){l.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(l.isNullOrUndef(t))return NaN;if("number"==typeof t&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:l.noop,getPixelForValue:l.noop,getValueForPixel:l.noop,getPixelForTick:function(t){var e=this,n=e.options.offset;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(n?0:1),1),a=i*t+e.paddingLeft;n&&(a+=i/2);var o=e.left+Math.round(a);return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,i=e.left+Math.round(n);return i+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this,e=t.min,n=t.max;return t.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0},_autoSkip:function(t){var e,n,i,a,o=this,r=o.isHorizontal(),s=o.options.ticks.minor,u=t.length,d=l.toRadians(o.labelRotation),c=Math.cos(d),h=o.longestLabelWidth*c,f=[];for(s.maxTicksLimit&&(a=s.maxTicksLimit),r&&(e=!1,(h+s.autoSkipPadding)*u>o.width-(o.paddingLeft+o.paddingRight)&&(e=1+Math.floor((h+s.autoSkipPadding)*u/(o.width-(o.paddingLeft+o.paddingRight)))),a&&u>a&&(e=Math.max(e,Math.floor(u/a)))),n=0;n<u;n++)i=t[n],(e>1&&n%e>0||n%e==0&&n+e>=u)&&n!==u-1&&delete i.label,f.push(i);return f},draw:function(t){var e=this,i=e.options;if(i.display){var r=e.ctx,u=o.global,d=i.ticks.minor,c=i.ticks.major||d,h=i.gridLines,f=i.scaleLabel,g=0!==e.labelRotation,p=e.isHorizontal(),v=d.autoSkip?e._autoSkip(e.getTicks()):e.getTicks(),m=l.valueOrDefault(d.fontColor,u.defaultFontColor),b=n(d),x=l.valueOrDefault(c.fontColor,u.defaultFontColor),y=n(c),k=h.drawTicks?h.tickMarkLength:0,w=l.valueOrDefault(f.fontColor,u.defaultFontColor),M=n(f),S=l.options.toPadding(f.padding),C=l.toRadians(e.labelRotation),_=[],D="right"===i.position?e.left:e.right-k,I="right"===i.position?e.left+k:e.right,P="bottom"===i.position?e.top:e.bottom-k,A="bottom"===i.position?e.top+k:e.bottom;if(l.each(v,function(n,o){if(!l.isNullOrUndef(n.label)){var r,s,c,f,m=n.label;o===e.zeroLineIndex&&i.offset===h.offsetGridLines?(r=h.zeroLineWidth,s=h.zeroLineColor,c=h.zeroLineBorderDash,f=h.zeroLineBorderDashOffset):(r=l.valueAtIndexOrDefault(h.lineWidth,o),s=l.valueAtIndexOrDefault(h.color,o),c=l.valueOrDefault(h.borderDash,u.borderDash),f=l.valueOrDefault(h.borderDashOffset,u.borderDashOffset));var b,x,y,w,M,S,T,F,O,R,L="middle",z="middle",B=d.padding;if(p){var W=k+B;"bottom"===i.position?(z=g?"middle":"top",L=g?"right":"center",R=e.top+W):(z=g?"middle":"bottom",L=g?"left":"center",R=e.bottom-W);var N=a(e,o,h.offsetGridLines&&v.length>1);N<e.left&&(s="rgba(0,0,0,0)"),N+=l.aliasPixel(r),O=e.getPixelForTick(o)+d.labelOffset,b=y=M=T=N,x=P,w=A,S=t.top,F=t.bottom}else{var V,E="left"===i.position;d.mirror?(L=E?"left":"right",V=B):(L=E?"right":"left",V=k+B),O=E?e.right-V:e.left+V;var H=a(e,o,h.offsetGridLines&&v.length>1);H<e.top&&(s="rgba(0,0,0,0)"),H+=l.aliasPixel(r),R=e.getPixelForTick(o)+d.labelOffset,b=D,y=I,M=t.left,T=t.right,x=w=S=F=H}_.push({tx1:b,ty1:x,tx2:y,ty2:w,x1:M,y1:S,x2:T,y2:F,labelX:O,labelY:R,glWidth:r,glColor:s,glBorderDash:c,glBorderDashOffset:f,rotation:-1*C,label:m,major:n.major,textBaseline:z,textAlign:L})}}),l.each(_,function(t){if(h.display&&(r.save(),r.lineWidth=t.glWidth,r.strokeStyle=t.glColor,r.setLineDash&&(r.setLineDash(t.glBorderDash),r.lineDashOffset=t.glBorderDashOffset),r.beginPath(),h.drawTicks&&(r.moveTo(t.tx1,t.ty1),r.lineTo(t.tx2,t.ty2)),h.drawOnChartArea&&(r.moveTo(t.x1,t.y1),r.lineTo(t.x2,t.y2)),r.stroke(),r.restore()),d.display){r.save(),r.translate(t.labelX,t.labelY),r.rotate(t.rotation),r.font=t.major?y.font:b.font,r.fillStyle=t.major?x:m,r.textBaseline=t.textBaseline,r.textAlign=t.textAlign;var e=t.label;if(l.isArray(e))for(var n=0,i=0;n<e.length;++n)r.fillText(""+e[n],0,i),i+=1.5*b.size;else r.fillText(e,0,0);r.restore()}}),f.display){var T,F,O=0,R=s(f)/2;if(p)T=e.left+(e.right-e.left)/2,F="bottom"===i.position?e.bottom-R-S.bottom:e.top+R+S.top;else{var L="left"===i.position;T=L?e.left+R+S.top:e.right-R-S.top,F=e.top+(e.bottom-e.top)/2,O=L?-.5*Math.PI:.5*Math.PI}r.save(),r.translate(T,F),r.rotate(O),r.textAlign="center",r.textBaseline="middle",r.fillStyle=w,r.font=M.font,r.fillText(f.labelString,0,0),r.restore()}if(h.drawBorder){r.lineWidth=l.valueAtIndexOrDefault(h.lineWidth,0),r.strokeStyle=l.valueAtIndexOrDefault(h.color,0);var z=e.left,B=e.right,W=e.top,N=e.bottom,V=l.aliasPixel(r.lineWidth);p?(W=N="top"===i.position?e.bottom:e.top,W+=V,N+=V):(z=B="left"===i.position?e.right:e.left,z+=V,B+=V),r.beginPath(),r.moveTo(z,W),r.lineTo(B,N),r.stroke()}}}})}},{25:25,26:26,34:34,45:45}],33:[function(t,e,n){"use strict";var i=t(25),a=t(45);e.exports=function(t){t.scaleService={constructors:{},defaults:{},registerScaleType:function(t,e,n){this.constructors[t]=e,this.defaults[t]=a.clone(n)},getScaleConstructor:function(t){return this.constructors.hasOwnProperty(t)?this.constructors[t]:void 0},getScaleDefaults:function(t){return this.defaults.hasOwnProperty(t)?a.merge({},[i.scale,this.defaults[t]]):{}},updateScaleDefaults:function(t,e){var n=this;n.defaults.hasOwnProperty(t)&&(n.defaults[t]=a.extend(n.defaults[t],e))},addScalesToLayout:function(e){a.each(e.scales,function(n){n.fullWidth=n.options.fullWidth,n.position=n.options.position,n.weight=n.options.weight,t.layoutService.addBox(e,n)})}}}},{25:25,45:45}],34:[function(t,e,n){"use strict";var i=t(45);e.exports={generators:{linear:function(t,e){var n,a=[];if(t.stepSize&&t.stepSize>0)n=t.stepSize;else{var o=i.niceNum(e.max-e.min,!1);n=i.niceNum(o/(t.maxTicks-1),!0)}var r=Math.floor(e.min/n)*n,l=Math.ceil(e.max/n)*n;t.min&&t.max&&t.stepSize&&i.almostWhole((t.max-t.min)/t.stepSize,n/1e3)&&(r=t.min,l=t.max);var s=(l-r)/n;s=i.almostEquals(s,Math.round(s),n/1e3)?Math.round(s):Math.ceil(s),a.push(void 0!==t.min?t.min:r);for(var u=1;u<s;++u)a.push(r+u*n);return a.push(void 0!==t.max?t.max:l),a},logarithmic:function(t,e){var n,a,o=[],r=i.valueOrDefault,l=r(t.min,Math.pow(10,Math.floor(i.log10(e.min)))),s=Math.floor(i.log10(e.max)),u=Math.ceil(e.max/Math.pow(10,s));0===l?(n=Math.floor(i.log10(e.minNotZero)),a=Math.floor(e.minNotZero/Math.pow(10,n)),o.push(l),l=a*Math.pow(10,n)):(n=Math.floor(i.log10(l)),a=Math.floor(l/Math.pow(10,n)));do{o.push(l),10===++a&&(a=1,++n),l=a*Math.pow(10,n)}while(n<s||n===s&&a<u);var d=r(t.max,l);return o.push(d),o}},formatters:{values:function(t){return i.isArray(t)?t:""+t},linear:function(t,e,n){var a=n.length>3?n[2]-n[1]:n[1]-n[0];Math.abs(a)>1&&t!==Math.floor(t)&&(a=t-Math.floor(t));var o=i.log10(Math.abs(a)),r="";if(0!==t){var l=-1*Math.floor(o);l=Math.max(Math.min(l,20),0),r=t.toFixed(l)}else r="0";return r},logarithmic:function(t,e,n){var a=t/Math.pow(10,Math.floor(i.log10(t)));return 0===t?"0":1===a||2===a||5===a||0===e||e===n.length-1?t.toExponential():""}}}},{45:45}],35:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{tooltips:{enabled:!0,custom:null,mode:"nearest",position:"average",intersect:!0,backgroundColor:"rgba(0,0,0,0.8)",titleFontStyle:"bold",titleSpacing:2,titleMarginBottom:6,titleFontColor:"#fff",titleAlign:"left",bodySpacing:2,bodyFontColor:"#fff",bodyAlign:"left",footerFontStyle:"bold",footerSpacing:2,footerMarginTop:6,footerFontColor:"#fff",footerAlign:"left",yPadding:6,xPadding:6,caretPadding:2,caretSize:5,cornerRadius:6,multiKeyBackground:"#fff",displayColors:!0,borderColor:"rgba(0,0,0,0)",borderWidth:0,callbacks:{beforeTitle:o.noop,title:function(t,e){var n="",i=e.labels,a=i?i.length:0;if(t.length>0){var o=t[0];o.xLabel?n=o.xLabel:a>0&&o.index<a&&(n=i[o.index])}return n},afterTitle:o.noop,beforeBody:o.noop,beforeLabel:o.noop,label:function(t,e){var n=e.datasets[t.datasetIndex].label||"";return n&&(n+=": "),n+=t.yLabel},labelColor:function(t,e){var n=e.getDatasetMeta(t.datasetIndex).data[t.index]._view;return{borderColor:n.borderColor,backgroundColor:n.backgroundColor}},labelTextColor:function(){return this._options.bodyFontColor},afterLabel:o.noop,afterBody:o.noop,beforeFooter:o.noop,footer:o.noop,afterFooter:o.noop}}}),e.exports=function(t){function e(t,e){var n=o.color(t);return n.alpha(e*n.alpha()).rgbaString()}function n(t,e){return e&&(o.isArray(e)?Array.prototype.push.apply(t,e):t.push(e)),t}function r(t){var e=t._xScale,n=t._yScale||t._scale,i=t._index,a=t._datasetIndex;return{xLabel:e?e.getLabelForIndex(i,a):"",yLabel:n?n.getLabelForIndex(i,a):"",index:i,datasetIndex:a,x:t._model.x,y:t._model.y}}function l(t){var e=i.global,n=o.valueOrDefault;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,bodyFontColor:t.bodyFontColor,_bodyFontFamily:n(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:n(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:n(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:n(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:n(t.titleFontStyle,e.defaultFontStyle),titleFontSize:n(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:n(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:n(t.footerFontStyle,e.defaultFontStyle),footerFontSize:n(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function s(t,e){var n=t._chart.ctx,i=2*e.yPadding,a=0,r=e.body,l=r.reduce(function(t,e){return t+e.before.length+e.lines.length+e.after.length},0);l+=e.beforeBody.length+e.afterBody.length;var s=e.title.length,u=e.footer.length,d=e.titleFontSize,c=e.bodyFontSize,h=e.footerFontSize;i+=s*d,i+=s?(s-1)*e.titleSpacing:0,i+=s?e.titleMarginBottom:0,i+=l*c,i+=l?(l-1)*e.bodySpacing:0,i+=u?e.footerMarginTop:0,i+=u*h,i+=u?(u-1)*e.footerSpacing:0;var f=0,g=function(t){a=Math.max(a,n.measureText(t).width+f)};return n.font=o.fontString(d,e._titleFontStyle,e._titleFontFamily),o.each(e.title,g),n.font=o.fontString(c,e._bodyFontStyle,e._bodyFontFamily),o.each(e.beforeBody.concat(e.afterBody),g),f=e.displayColors?c+2:0,o.each(r,function(t){o.each(t.before,g),o.each(t.lines,g),o.each(t.after,g)}),f=0,n.font=o.fontString(h,e._footerFontStyle,e._footerFontFamily),o.each(e.footer,g),a+=2*e.xPadding,{width:a,height:i}}function u(t,e){var n=t._model,i=t._chart,a=t._chart.chartArea,o="center",r="center";n.y<e.height?r="top":n.y>i.height-e.height&&(r="bottom");var l,s,u,d,c,h=(a.left+a.right)/2,f=(a.top+a.bottom)/2;"center"===r?(l=function(t){return t<=h},s=function(t){return t>h}):(l=function(t){return t<=e.width/2},s=function(t){return t>=i.width-e.width/2}),u=function(t){return t+e.width>i.width},d=function(t){return t-e.width<0},c=function(t){return t<=f?"top":"bottom"},l(n.x)?(o="left",u(n.x)&&(o="center",r=c(n.y))):s(n.x)&&(o="right",d(n.x)&&(o="center",r=c(n.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:o,yAlign:g.yAlign?g.yAlign:r}}function d(t,e,n){var i=t.x,a=t.y,o=t.caretSize,r=t.caretPadding,l=t.cornerRadius,s=n.xAlign,u=n.yAlign,d=o+r,c=l+r;return"right"===s?i-=e.width:"center"===s&&(i-=e.width/2),"top"===u?a+=d:a-="bottom"===u?e.height+d:e.height/2,"center"===u?"left"===s?i+=d:"right"===s&&(i-=d):"left"===s?i-=c:"right"===s&&(i+=c),{x:i,y:a}}t.Tooltip=a.extend({initialize:function(){this._model=l(this._options),this._lastActive=[]},getTitle:function(){var t=this,e=t._options.callbacks,i=e.beforeTitle.apply(t,arguments),a=e.title.apply(t,arguments),o=e.afterTitle.apply(t,arguments),r=[];return r=n(r,i),r=n(r,a),r=n(r,o)},getBeforeBody:function(){var t=this._options.callbacks.beforeBody.apply(this,arguments);return o.isArray(t)?t:void 0!==t?[t]:[]},getBody:function(t,e){var i=this,a=i._options.callbacks,r=[];return o.each(t,function(t){var o={before:[],lines:[],after:[]};n(o.before,a.beforeLabel.call(i,t,e)),n(o.lines,a.label.call(i,t,e)),n(o.after,a.afterLabel.call(i,t,e)),r.push(o)}),r},getAfterBody:function(){var t=this._options.callbacks.afterBody.apply(this,arguments);return o.isArray(t)?t:void 0!==t?[t]:[]},getFooter:function(){var t=this,e=t._options.callbacks,i=e.beforeFooter.apply(t,arguments),a=e.footer.apply(t,arguments),o=e.afterFooter.apply(t,arguments),r=[];return r=n(r,i),r=n(r,a),r=n(r,o)},update:function(e){var n,i,a=this,c=a._options,h=a._model,f=a._model=l(c),g=a._active,p=a._data,v={xAlign:h.xAlign,yAlign:h.yAlign},m={x:h.x,y:h.y},b={width:h.width,height:h.height},x={x:h.caretX,y:h.caretY};if(g.length){f.opacity=1;var y=[],k=[];x=t.Tooltip.positioners[c.position].call(a,g,a._eventPosition);var w=[];for(n=0,i=g.length;n<i;++n)w.push(r(g[n]));c.filter&&(w=w.filter(function(t){return c.filter(t,p)})),c.itemSort&&(w=w.sort(function(t,e){return c.itemSort(t,e,p)})),o.each(w,function(t){y.push(c.callbacks.labelColor.call(a,t,a._chart)),k.push(c.callbacks.labelTextColor.call(a,t,a._chart))}),f.title=a.getTitle(w,p),f.beforeBody=a.getBeforeBody(w,p),f.body=a.getBody(w,p),f.afterBody=a.getAfterBody(w,p),f.footer=a.getFooter(w,p),f.x=Math.round(x.x),f.y=Math.round(x.y),f.caretPadding=c.caretPadding,f.labelColors=y,f.labelTextColors=k,f.dataPoints=w,m=d(f,b=s(this,f),v=u(this,b))}else f.opacity=0;return f.xAlign=v.xAlign,f.yAlign=v.yAlign,f.x=m.x,f.y=m.y,f.width=b.width,f.height=b.height,f.caretX=x.x,f.caretY=x.y,a._model=f,e&&c.custom&&c.custom.call(a,f),a},drawCaret:function(t,e){var n=this._chart.ctx,i=this._view,a=this.getCaretPosition(t,e,i);n.lineTo(a.x1,a.y1),n.lineTo(a.x2,a.y2),n.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,n){var i,a,o,r,l,s,u=n.caretSize,d=n.cornerRadius,c=n.xAlign,h=n.yAlign,f=t.x,g=t.y,p=e.width,v=e.height;if("center"===h)l=g+v/2,"left"===c?(a=(i=f)-u,o=i,r=l+u,s=l-u):(a=(i=f+p)+u,o=i,r=l-u,s=l+u);else if("left"===c?(i=(a=f+d+u)-u,o=a+u):"right"===c?(i=(a=f+p-d-u)-u,o=a+u):(i=(a=f+p/2)-u,o=a+u),"top"===h)l=(r=g)-u,s=r;else{l=(r=g+v)+u,s=r;var m=o;o=i,i=m}return{x1:i,x2:a,x3:o,y1:r,y2:l,y3:s}},drawTitle:function(t,n,i,a){var r=n.title;if(r.length){i.textAlign=n._titleAlign,i.textBaseline="top";var l=n.titleFontSize,s=n.titleSpacing;i.fillStyle=e(n.titleFontColor,a),i.font=o.fontString(l,n._titleFontStyle,n._titleFontFamily);var u,d;for(u=0,d=r.length;u<d;++u)i.fillText(r[u],t.x,t.y),t.y+=l+s,u+1===r.length&&(t.y+=n.titleMarginBottom-s)}},drawBody:function(t,n,i,a){var r=n.bodyFontSize,l=n.bodySpacing,s=n.body;i.textAlign=n._bodyAlign,i.textBaseline="top",i.font=o.fontString(r,n._bodyFontStyle,n._bodyFontFamily);var u=0,d=function(e){i.fillText(e,t.x+u,t.y),t.y+=r+l};i.fillStyle=e(n.bodyFontColor,a),o.each(n.beforeBody,d);var c=n.displayColors;u=c?r+2:0,o.each(s,function(l,s){var u=e(n.labelTextColors[s],a);i.fillStyle=u,o.each(l.before,d),o.each(l.lines,function(o){c&&(i.fillStyle=e(n.legendColorBackground,a),i.fillRect(t.x,t.y,r,r),i.lineWidth=1,i.strokeStyle=e(n.labelColors[s].borderColor,a),i.strokeRect(t.x,t.y,r,r),i.fillStyle=e(n.labelColors[s].backgroundColor,a),i.fillRect(t.x+1,t.y+1,r-2,r-2),i.fillStyle=u),d(o)}),o.each(l.after,d)}),u=0,o.each(n.afterBody,d),t.y-=l},drawFooter:function(t,n,i,a){var r=n.footer;r.length&&(t.y+=n.footerMarginTop,i.textAlign=n._footerAlign,i.textBaseline="top",i.fillStyle=e(n.footerFontColor,a),i.font=o.fontString(n.footerFontSize,n._footerFontStyle,n._footerFontFamily),o.each(r,function(e){i.fillText(e,t.x,t.y),t.y+=n.footerFontSize+n.footerSpacing}))},drawBackground:function(t,n,i,a,o){i.fillStyle=e(n.backgroundColor,o),i.strokeStyle=e(n.borderColor,o),i.lineWidth=n.borderWidth;var r=n.xAlign,l=n.yAlign,s=t.x,u=t.y,d=a.width,c=a.height,h=n.cornerRadius;i.beginPath(),i.moveTo(s+h,u),"top"===l&&this.drawCaret(t,a),i.lineTo(s+d-h,u),i.quadraticCurveTo(s+d,u,s+d,u+h),"center"===l&&"right"===r&&this.drawCaret(t,a),i.lineTo(s+d,u+c-h),i.quadraticCurveTo(s+d,u+c,s+d-h,u+c),"bottom"===l&&this.drawCaret(t,a),i.lineTo(s+h,u+c),i.quadraticCurveTo(s,u+c,s,u+c-h),"center"===l&&"left"===r&&this.drawCaret(t,a),i.lineTo(s,u+h),i.quadraticCurveTo(s,u,s+h,u),i.closePath(),i.fill(),n.borderWidth>0&&i.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var n={width:e.width,height:e.height},i={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(this.drawBackground(i,e,t,n,a),i.x+=e.xPadding,i.y+=e.yPadding,this.drawTitle(i,e,t,a),this.drawBody(i,e,t,a),this.drawFooter(i,e,t,a))}},handleEvent:function(t){var e=this,n=e._options,i=!1;if(e._lastActive=e._lastActive||[],"mouseout"===t.type?e._active=[]:e._active=e._chart.getElementsAtEventForMode(t,n.mode,n),!(i=!o.arrayEquals(e._active,e._lastActive)))return!1;if(e._lastActive=e._active,n.enabled||n.custom){e._eventPosition={x:t.x,y:t.y};var a=e._model;e.update(!0),e.pivot(),i|=a.x!==e._model.x||a.y!==e._model.y}return i}}),t.Tooltip.positioners={average:function(t){if(!t.length)return!1;var e,n,i=0,a=0,o=0;for(e=0,n=t.length;e<n;++e){var r=t[e];if(r&&r.hasValue()){var l=r.tooltipPosition();i+=l.x,a+=l.y,++o}}return{x:Math.round(i/o),y:Math.round(a/o)}},nearest:function(t,e){var n,i,a,r=e.x,l=e.y,s=Number.POSITIVE_INFINITY;for(n=0,i=t.length;n<i;++n){var u=t[n];if(u&&u.hasValue()){var d=u.getCenterPoint(),c=o.distanceBetweenPoints(e,d);c<s&&(s=c,a=u)}}if(a){var h=a.tooltipPosition();r=h.x,l=h.y}return{x:r,y:l}}}}},{25:25,26:26,45:45}],36:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{elements:{arc:{backgroundColor:i.global.defaultColor,borderColor:"#fff",borderWidth:2}}}),e.exports=a.extend({inLabelRange:function(t){var e=this._view;return!!e&&Math.pow(t-e.x,2)<Math.pow(e.radius+e.hoverRadius,2)},inRange:function(t,e){var n=this._view;if(n){for(var i=o.getAngleFromPoint(n,{x:t,y:e}),a=i.angle,r=i.distance,l=n.startAngle,s=n.endAngle;s<l;)s+=2*Math.PI;for(;a>s;)a-=2*Math.PI;for(;a<l;)a+=2*Math.PI;var u=a>=l&&a<=s,d=r>=n.innerRadius&&r<=n.outerRadius;return u&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t=this._chart.ctx,e=this._view,n=e.startAngle,i=e.endAngle;t.beginPath(),t.arc(e.x,e.y,e.outerRadius,n,i),t.arc(e.x,e.y,e.innerRadius,i,n,!0),t.closePath(),t.strokeStyle=e.borderColor,t.lineWidth=e.borderWidth,t.fillStyle=e.backgroundColor,t.fill(),t.lineJoin="bevel",e.borderWidth&&t.stroke()}})},{25:25,26:26,45:45}],37:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45),r=i.global;i._set("global",{elements:{line:{tension:.4,backgroundColor:r.defaultColor,borderWidth:3,borderColor:r.defaultColor,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}}),e.exports=a.extend({draw:function(){var t,e,n,i,a=this,l=a._view,s=a._chart.ctx,u=l.spanGaps,d=a._children.slice(),c=r.elements.line,h=-1;for(a._loop&&d.length&&d.push(d[0]),s.save(),s.lineCap=l.borderCapStyle||c.borderCapStyle,s.setLineDash&&s.setLineDash(l.borderDash||c.borderDash),s.lineDashOffset=l.borderDashOffset||c.borderDashOffset,s.lineJoin=l.borderJoinStyle||c.borderJoinStyle,s.lineWidth=l.borderWidth||c.borderWidth,s.strokeStyle=l.borderColor||r.defaultColor,s.beginPath(),h=-1,t=0;t<d.length;++t)e=d[t],n=o.previousItem(d,t),i=e._view,0===t?i.skip||(s.moveTo(i.x,i.y),h=t):(n=-1===h?n:d[h],i.skip||(h!==t-1&&!u||-1===h?s.moveTo(i.x,i.y):o.canvas.lineTo(s,n._view,e._view),h=t));s.stroke(),s.restore()}})},{25:25,26:26,45:45}],38:[function(t,e,n){"use strict";function i(t){var e=this._view;return!!e&&Math.pow(t-e.x,2)<Math.pow(e.radius+e.hitRadius,2)}var a=t(25),o=t(26),r=t(45),l=a.global.defaultColor;a._set("global",{elements:{point:{radius:3,pointStyle:"circle",backgroundColor:l,borderColor:l,borderWidth:1,hitRadius:1,hoverRadius:4,hoverBorderWidth:1}}}),e.exports=o.extend({inRange:function(t,e){var n=this._view;return!!n&&Math.pow(t-n.x,2)+Math.pow(e-n.y,2)<Math.pow(n.hitRadius+n.radius,2)},inLabelRange:i,inXRange:i,inYRange:function(t){var e=this._view;return!!e&&Math.pow(t-e.y,2)<Math.pow(e.radius+e.hitRadius,2)},getCenterPoint:function(){var t=this._view;return{x:t.x,y:t.y}},getArea:function(){return Math.PI*Math.pow(this._view.radius,2)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y,padding:t.radius+t.borderWidth}},draw:function(t){var e=this._view,n=this._model,i=this._chart.ctx,o=e.pointStyle,s=e.radius,u=e.x,d=e.y,c=r.color,h=0;e.skip||(i.strokeStyle=e.borderColor||l,i.lineWidth=r.valueOrDefault(e.borderWidth,a.global.elements.point.borderWidth),i.fillStyle=e.backgroundColor||l,void 0!==t&&(n.x<t.left||1.01*t.right<n.x||n.y<t.top||1.01*t.bottom<n.y)&&(n.x<t.left?h=(u-n.x)/(t.left-n.x):1.01*t.right<n.x?h=(n.x-u)/(n.x-t.right):n.y<t.top?h=(d-n.y)/(t.top-n.y):1.01*t.bottom<n.y&&(h=(n.y-d)/(n.y-t.bottom)),h=Math.round(100*h)/100,i.strokeStyle=c(i.strokeStyle).alpha(h).rgbString(),i.fillStyle=c(i.fillStyle).alpha(h).rgbString()),r.canvas.drawPoint(i,o,s,u,d))}})},{25:25,26:26,45:45}],39:[function(t,e,n){"use strict";function i(t){return void 0!==t._view.width}function a(t){var e,n,a,o,r=t._view;if(i(t)){var l=r.width/2;e=r.x-l,n=r.x+l,a=Math.min(r.y,r.base),o=Math.max(r.y,r.base)}else{var s=r.height/2;e=Math.min(r.x,r.base),n=Math.max(r.x,r.base),a=r.y-s,o=r.y+s}return{left:e,top:a,right:n,bottom:o}}var o=t(25),r=t(26);o._set("global",{elements:{rectangle:{backgroundColor:o.global.defaultColor,borderColor:o.global.defaultColor,borderSkipped:"bottom",borderWidth:0}}}),e.exports=r.extend({draw:function(){function t(t){return m[(b+t)%4]}var e,n,i,a,o,r,l,s=this._chart.ctx,u=this._view,d=u.borderWidth;if(u.horizontal?(e=u.base,n=u.x,i=u.y-u.height/2,a=u.y+u.height/2,o=n>e?1:-1,r=1,l=u.borderSkipped||"left"):(e=u.x-u.width/2,n=u.x+u.width/2,i=u.y,o=1,r=(a=u.base)>i?1:-1,l=u.borderSkipped||"bottom"),d){var c=Math.min(Math.abs(e-n),Math.abs(i-a)),h=(d=d>c?c:d)/2,f=e+("left"!==l?h*o:0),g=n+("right"!==l?-h*o:0),p=i+("top"!==l?h*r:0),v=a+("bottom"!==l?-h*r:0);f!==g&&(i=p,a=v),p!==v&&(e=f,n=g)}s.beginPath(),s.fillStyle=u.backgroundColor,s.strokeStyle=u.borderColor,s.lineWidth=d;var m=[[e,a],[e,i],[n,i],[n,a]],b=["bottom","left","top","right"].indexOf(l,0);-1===b&&(b=0);var x=t(0);s.moveTo(x[0],x[1]);for(var y=1;y<4;y++)x=t(y),s.lineTo(x[0],x[1]);s.fill(),d&&s.stroke()},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){var n=!1;if(this._view){var i=a(this);n=t>=i.left&&t<=i.right&&e>=i.top&&e<=i.bottom}return n},inLabelRange:function(t,e){var n=this;if(!n._view)return!1;var o=a(n);return i(n)?t>=o.left&&t<=o.right:e>=o.top&&e<=o.bottom},inXRange:function(t){var e=a(this);return t>=e.left&&t<=e.right},inYRange:function(t){var e=a(this);return t>=e.top&&t<=e.bottom},getCenterPoint:function(){var t,e,n=this._view;return i(this)?(t=n.x,e=(n.y+n.base)/2):(t=(n.x+n.base)/2,e=n.y),{x:t,y:e}},getArea:function(){var t=this._view;return t.width*Math.abs(t.y-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}})},{25:25,26:26}],40:[function(t,e,n){"use strict";e.exports={},e.exports.Arc=t(36),e.exports.Line=t(37),e.exports.Point=t(38),e.exports.Rectangle=t(39)},{36:36,37:37,38:38,39:39}],41:[function(t,e,n){"use strict";var i=t(42),n=e.exports={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,i,a,o){if(o){var r=Math.min(o,i/2),l=Math.min(o,a/2);t.moveTo(e+r,n),t.lineTo(e+i-r,n),t.quadraticCurveTo(e+i,n,e+i,n+l),t.lineTo(e+i,n+a-l),t.quadraticCurveTo(e+i,n+a,e+i-r,n+a),t.lineTo(e+r,n+a),t.quadraticCurveTo(e,n+a,e,n+a-l),t.lineTo(e,n+l),t.quadraticCurveTo(e,n,e+r,n)}else t.rect(e,n,i,a)},drawPoint:function(t,e,n,i,a){var o,r,l,s,u,d;if(!e||"object"!=typeof e||"[object HTMLImageElement]"!==(o=e.toString())&&"[object HTMLCanvasElement]"!==o){if(!(isNaN(n)||n<=0)){switch(e){default:t.beginPath(),t.arc(i,a,n,0,2*Math.PI),t.closePath(),t.fill();break;case"triangle":t.beginPath(),u=(r=3*n/Math.sqrt(3))*Math.sqrt(3)/2,t.moveTo(i-r/2,a+u/3),t.lineTo(i+r/2,a+u/3),t.lineTo(i,a-2*u/3),t.closePath(),t.fill();break;case"rect":d=1/Math.SQRT2*n,t.beginPath(),t.fillRect(i-d,a-d,2*d,2*d),t.strokeRect(i-d,a-d,2*d,2*d);break;case"rectRounded":var c=n/Math.SQRT2,h=i-c,f=a-c,g=Math.SQRT2*n;t.beginPath(),this.roundedRect(t,h,f,g,g,n/2),t.closePath(),t.fill();break;case"rectRot":d=1/Math.SQRT2*n,t.beginPath(),t.moveTo(i-d,a),t.lineTo(i,a+d),t.lineTo(i+d,a),t.lineTo(i,a-d),t.closePath(),t.fill();break;case"cross":t.beginPath(),t.moveTo(i,a+n),t.lineTo(i,a-n),t.moveTo(i-n,a),t.lineTo(i+n,a),t.closePath();break;case"crossRot":t.beginPath(),l=Math.cos(Math.PI/4)*n,s=Math.sin(Math.PI/4)*n,t.moveTo(i-l,a-s),t.lineTo(i+l,a+s),t.moveTo(i-l,a+s),t.lineTo(i+l,a-s),t.closePath();break;case"star":t.beginPath(),t.moveTo(i,a+n),t.lineTo(i,a-n),t.moveTo(i-n,a),t.lineTo(i+n,a),l=Math.cos(Math.PI/4)*n,s=Math.sin(Math.PI/4)*n,t.moveTo(i-l,a-s),t.lineTo(i+l,a+s),t.moveTo(i-l,a+s),t.lineTo(i+l,a-s),t.closePath();break;case"line":t.beginPath(),t.moveTo(i-n,a),t.lineTo(i+n,a),t.closePath();break;case"dash":t.beginPath(),t.moveTo(i,a),t.lineTo(i+n,a),t.closePath()}t.stroke()}}else t.drawImage(e,i-e.width/2,a-e.height/2,e.width,e.height)},clipArea:function(t,e){t.save(),t.beginPath(),t.rect(e.left,e.top,e.right-e.left,e.bottom-e.top),t.clip()},unclipArea:function(t){t.restore()},lineTo:function(t,e,n,i){if(n.steppedLine)return"after"===n.steppedLine&&!i||"after"!==n.steppedLine&&i?t.lineTo(e.x,n.y):t.lineTo(n.x,e.y),void t.lineTo(n.x,n.y);n.tension?t.bezierCurveTo(i?e.controlPointPreviousX:e.controlPointNextX,i?e.controlPointPreviousY:e.controlPointNextY,i?n.controlPointNextX:n.controlPointPreviousX,i?n.controlPointNextY:n.controlPointPreviousY,n.x,n.y):t.lineTo(n.x,n.y)}};i.clear=n.clear,i.drawRoundedRectangle=function(t){t.beginPath(),n.roundedRect.apply(n,arguments),t.closePath()}},{42:42}],42:[function(t,e,n){"use strict";var i={noop:function(){},uid:function(){var t=0;return function(){return t++}}(),isNullOrUndef:function(t){return null===t||void 0===t},isArray:Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},isObject:function(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)},valueOrDefault:function(t,e){return void 0===t?e:t},valueAtIndexOrDefault:function(t,e,n){return i.valueOrDefault(i.isArray(t)?t[e]:t,n)},callback:function(t,e,n){if(t&&"function"==typeof t.call)return t.apply(n,e)},each:function(t,e,n,a){var o,r,l;if(i.isArray(t))if(r=t.length,a)for(o=r-1;o>=0;o--)e.call(n,t[o],o);else for(o=0;o<r;o++)e.call(n,t[o],o);else if(i.isObject(t))for(r=(l=Object.keys(t)).length,o=0;o<r;o++)e.call(n,t[l[o]],l[o])},arrayEquals:function(t,e){var n,a,o,r;if(!t||!e||t.length!==e.length)return!1;for(n=0,a=t.length;n<a;++n)if(o=t[n],r=e[n],o instanceof Array&&r instanceof Array){if(!i.arrayEquals(o,r))return!1}else if(o!==r)return!1;return!0},clone:function(t){if(i.isArray(t))return t.map(i.clone);if(i.isObject(t)){for(var e={},n=Object.keys(t),a=n.length,o=0;o<a;++o)e[n[o]]=i.clone(t[n[o]]);return e}return t},_merger:function(t,e,n,a){var o=e[t],r=n[t];i.isObject(o)&&i.isObject(r)?i.merge(o,r,a):e[t]=i.clone(r)},_mergerIf:function(t,e,n){var a=e[t],o=n[t];i.isObject(a)&&i.isObject(o)?i.mergeIf(a,o):e.hasOwnProperty(t)||(e[t]=i.clone(o))},merge:function(t,e,n){var a,o,r,l,s,u=i.isArray(e)?e:[e],d=u.length;if(!i.isObject(t))return t;for(a=(n=n||{}).merger||i._merger,o=0;o<d;++o)if(e=u[o],i.isObject(e))for(s=0,l=(r=Object.keys(e)).length;s<l;++s)a(r[s],t,e,n);return t},mergeIf:function(t,e){return i.merge(t,e,{merger:i._mergerIf})},extend:function(t){for(var e=1,n=arguments.length;e<n;++e)i.each(arguments[e],function(e,n){t[n]=e});return t},inherits:function(t){var e=this,n=t&&t.hasOwnProperty("constructor")?t.constructor:function(){return e.apply(this,arguments)},a=function(){this.constructor=n};return a.prototype=e.prototype,n.prototype=new a,n.extend=i.inherits,t&&i.extend(n.prototype,t),n.__super__=e.prototype,n}};e.exports=i,i.callCallback=i.callback,i.indexOf=function(t,e,n){return Array.prototype.indexOf.call(t,e,n)},i.getValueOrDefault=i.valueOrDefault,i.getValueAtIndexOrDefault=i.valueAtIndexOrDefault},{}],43:[function(t,e,n){"use strict";var i=t(42),a={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return-t*(t-2)},easeInOutQuad:function(t){return(t/=.5)<1?.5*t*t:-.5*(--t*(t-2)-1)},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return(t-=1)*t*t+1},easeInOutCubic:function(t){return(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return-((t-=1)*t*t*t-1)},easeInOutQuart:function(t){return(t/=.5)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return(t-=1)*t*t*t*t+1},easeInOutQuint:function(t){return(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},easeInSine:function(t){return 1-Math.cos(t*(Math.PI/2))},easeOutSine:function(t){return Math.sin(t*(Math.PI/2))},easeInOutSine:function(t){return-.5*(Math.cos(Math.PI*t)-1)},easeInExpo:function(t){return 0===t?0:Math.pow(2,10*(t-1))},easeOutExpo:function(t){return 1===t?1:1-Math.pow(2,-10*t)},easeInOutExpo:function(t){return 0===t?0:1===t?1:(t/=.5)<1?.5*Math.pow(2,10*(t-1)):.5*(2-Math.pow(2,-10*--t))},easeInCirc:function(t){return t>=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),-i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n))},easeOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),i*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/n)+1)},easeInOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:2==(t/=.5)?1:(n||(n=.45),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),t<1?i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*-.5:i*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-a.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*a.easeInBounce(2*t):.5*a.easeOutBounce(2*t-1)+.5}};e.exports={effects:a},i.easingEffects=a},{42:42}],44:[function(t,e,n){"use strict";var i=t(42);e.exports={toLineHeight:function(t,e){var n=(""+t).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);if(!n||"normal"===n[1])return 1.2*e;switch(t=+n[2],n[3]){case"px":return t;case"%":t/=100}return e*t},toPadding:function(t){var e,n,a,o;return i.isObject(t)?(e=+t.top||0,n=+t.right||0,a=+t.bottom||0,o=+t.left||0):e=n=a=o=+t||0,{top:e,right:n,bottom:a,left:o,height:e+a,width:o+n}},resolve:function(t,e,n){var a,o,r;for(a=0,o=t.length;a<o;++a)if(void 0!==(r=t[a])&&(void 0!==e&&"function"==typeof r&&(r=r(e)),void 0!==n&&i.isArray(r)&&(r=r[n]),void 0!==r))return r}}},{42:42}],45:[function(t,e,n){"use strict";e.exports=t(42),e.exports.easing=t(43),e.exports.canvas=t(41),e.exports.options=t(44)},{41:41,42:42,43:43,44:44}],46:[function(t,e,n){e.exports={acquireContext:function(t){return t&&t.canvas&&(t=t.canvas),t&&t.getContext("2d")||null}}},{}],47:[function(t,e,n){"use strict";function i(t,e){var n=v.getStyle(t,e),i=n&&n.match(/^(\d+)(\.\d+)?px$/);return i?Number(i[1]):void 0}function a(t,e){var n=t.style,a=t.getAttribute("height"),o=t.getAttribute("width");if(t[m]={initial:{height:a,width:o,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===o||""===o){var r=i(t,"width");void 0!==r&&(t.width=r)}if(null===a||""===a)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var l=i(t,"height");void 0!==r&&(t.height=l)}return t}function o(t,e,n){t.addEventListener(e,n,M)}function r(t,e,n){t.removeEventListener(e,n,M)}function l(t,e,n,i,a){return{type:t,chart:e,native:a||null,x:void 0!==n?n:null,y:void 0!==i?i:null}}function s(t,e){var n=w[t.type]||t.type,i=v.getRelativePosition(t,e);return l(n,e,i.x,i.y,t)}function u(t,e){var n=!1,i=[];return function(){i=Array.prototype.slice.call(arguments),e=e||this,n||(n=!0,v.requestAnimFrame.call(window,function(){n=!1,t.apply(e,i)}))}}function d(t){var e=document.createElement("div"),n=b+"size-monitor",i="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;";e.style.cssText=i,e.className=n,e.innerHTML='<div class="'+n+'-expand" style="'+i+'"><div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div></div><div class="'+n+'-shrink" style="'+i+'"><div style="position:absolute;width:200%;height:200%;left:0; top:0"></div></div>';var a=e.childNodes[0],r=e.childNodes[1];e._reset=function(){a.scrollLeft=1e6,a.scrollTop=1e6,r.scrollLeft=1e6,r.scrollTop=1e6};var l=function(){e._reset(),t()};return o(a,"scroll",l.bind(a,"expand")),o(r,"scroll",l.bind(r,"shrink")),e}function c(t,e){var n=t[m]||(t[m]={}),i=n.renderProxy=function(t){t.animationName===y&&e()};v.each(k,function(e){o(t,e,i)}),n.reflow=!!t.offsetParent,t.classList.add(x)}function h(t){var e=t[m]||{},n=e.renderProxy;n&&(v.each(k,function(e){r(t,e,n)}),delete e.renderProxy),t.classList.remove(x)}function f(t,e,n){var i=t[m]||(t[m]={}),a=i.resizer=d(u(function(){if(i.resizer)return e(l("resize",n))}));c(t,function(){if(i.resizer){var e=t.parentNode;e&&e!==a.parentNode&&e.insertBefore(a,e.firstChild),a._reset()}})}function g(t){var e=t[m]||{},n=e.resizer;delete e.resizer,h(t),n&&n.parentNode&&n.parentNode.removeChild(n)}function p(t,e){var n=t._style||document.createElement("style");t._style||(t._style=n,e="/* Chart.js */\n"+e,n.setAttribute("type","text/css"),document.getElementsByTagName("head")[0].appendChild(n)),n.appendChild(document.createTextNode(e))}var v=t(45),m="$chartjs",b="chartjs-",x=b+"render-monitor",y=b+"render-animation",k=["animationstart","webkitAnimationStart"],w={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},M=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};e.exports={_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,initialize:function(){var t="from{opacity:0.99}to{opacity:1}";p(this,"@-webkit-keyframes "+y+"{"+t+"}@keyframes "+y+"{"+t+"}."+x+"{-webkit-animation:"+y+" 0.001s;animation:"+y+" 0.001s;}")},acquireContext:function(t,e){"string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas);var n=t&&t.getContext&&t.getContext("2d");return n&&n.canvas===t?(a(t,e),n):null},releaseContext:function(t){var e=t.canvas;if(e[m]){var n=e[m].initial;["height","width"].forEach(function(t){var i=n[t];v.isNullOrUndef(i)?e.removeAttribute(t):e.setAttribute(t,i)}),v.each(n.style||{},function(t,n){e.style[n]=t}),e.width=e.width,delete e[m]}},addEventListener:function(t,e,n){var i=t.canvas;if("resize"!==e){var a=n[m]||(n[m]={});o(i,e,(a.proxies||(a.proxies={}))[t.id+"_"+e]=function(e){n(s(e,t))})}else f(i,n,t)},removeEventListener:function(t,e,n){var i=t.canvas;if("resize"!==e){var a=((n[m]||{}).proxies||{})[t.id+"_"+e];a&&r(i,e,a)}else g(i)}},v.addEvent=o,v.removeEvent=r},{45:45}],48:[function(t,e,n){"use strict";var i=t(45),a=t(46),o=t(47),r=o._enabled?o:a;e.exports=i.extend({initialize:function(){},acquireContext:function(){},releaseContext:function(){},addEventListener:function(){},removeEventListener:function(){}},r)},{45:45,46:46,47:47}],49:[function(t,e,n){"use strict";var i=t(25),a=t(40),o=t(45);i._set("global",{plugins:{filler:{propagate:!0}}}),e.exports=function(){function t(t,e,n){var i,a=t._model||{},o=a.fill;if(void 0===o&&(o=!!a.backgroundColor),!1===o||null===o)return!1;if(!0===o)return"origin";if(i=parseFloat(o,10),isFinite(i)&&Math.floor(i)===i)return"-"!==o[0]&&"+"!==o[0]||(i=e+i),!(i===e||i<0||i>=n)&&i;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function e(t){var e,n=t.el._model||{},i=t.el._scale||{},a=t.fill,o=null;if(isFinite(a))return null;if("start"===a?o=void 0===n.scaleBottom?i.bottom:n.scaleBottom:"end"===a?o=void 0===n.scaleTop?i.top:n.scaleTop:void 0!==n.scaleZero?o=n.scaleZero:i.getBasePosition?o=i.getBasePosition():i.getBasePixel&&(o=i.getBasePixel()),void 0!==o&&null!==o){if(void 0!==o.x&&void 0!==o.y)return o;if("number"==typeof o&&isFinite(o))return e=i.isHorizontal(),{x:e?o:null,y:e?null:o}}return null}function n(t,e,n){var i,a=t[e].fill,o=[e];if(!n)return a;for(;!1!==a&&-1===o.indexOf(a);){if(!isFinite(a))return a;if(!(i=t[a]))return!1;if(i.visible)return a;o.push(a),a=i.fill}return!1}function r(t){var e=t.fill,n="dataset";return!1===e?null:(isFinite(e)||(n="boundary"),d[n](t))}function l(t){return t&&!t.skip}function s(t,e,n,i,a){var r;if(i&&a){for(t.moveTo(e[0].x,e[0].y),r=1;r<i;++r)o.canvas.lineTo(t,e[r-1],e[r]);for(t.lineTo(n[a-1].x,n[a-1].y),r=a-1;r>0;--r)o.canvas.lineTo(t,n[r],n[r-1],!0)}}function u(t,e,n,i,a,o){var r,u,d,c,h,f,g,p=e.length,v=i.spanGaps,m=[],b=[],x=0,y=0;for(t.beginPath(),r=0,u=p+!!o;r<u;++r)h=n(c=e[d=r%p]._view,d,i),f=l(c),g=l(h),f&&g?(x=m.push(c),y=b.push(h)):x&&y&&(v?(f&&m.push(c),g&&b.push(h)):(s(t,m,b,x,y),x=y=0,m=[],b=[]));s(t,m,b,x,y),t.closePath(),t.fillStyle=a,t.fill()}var d={dataset:function(t){var e=t.fill,n=t.chart,i=n.getDatasetMeta(e),a=i&&n.isDatasetVisible(e)&&i.dataset._children||[],o=a.length||0;return o?function(t,e){return e<o&&a[e]._view||null}:null},boundary:function(t){var e=t.boundary,n=e?e.x:null,i=e?e.y:null;return function(t){return{x:null===n?t.x:n,y:null===i?t.y:i}}}};return{id:"filler",afterDatasetsUpdate:function(i,o){var l,s,u,d,c=(i.data.datasets||[]).length,h=o.propagate,f=[];for(s=0;s<c;++s)d=null,(u=(l=i.getDatasetMeta(s)).dataset)&&u._model&&u instanceof a.Line&&(d={visible:i.isDatasetVisible(s),fill:t(u,s,c),chart:i,el:u}),l.$filler=d,f.push(d);for(s=0;s<c;++s)(d=f[s])&&(d.fill=n(f,s,h),d.boundary=e(d),d.mapper=r(d))},beforeDatasetDraw:function(t,e){var n=e.meta.$filler;if(n){var a=t.ctx,r=n.el,l=r._view,s=r._children||[],d=n.mapper,c=l.backgroundColor||i.global.defaultColor;d&&c&&s.length&&(o.canvas.clipArea(a,t.chartArea),u(a,s,d,l,c,r._loop),o.canvas.unclipArea(a))}}}}},{25:25,40:40,45:45}],50:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var n=e.datasetIndex,i=this.chart,a=i.getDatasetMeta(n);a.hidden=null===a.hidden?!i.data.datasets[n].hidden:null,i.update()},onHover:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return o.isArray(e.datasets)?e.datasets.map(function(e,n){return{text:e.label,fillStyle:o.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(n),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:n}},this):[]}}},legendCallback:function(t){var e=[];e.push('<ul class="'+t.id+'-legend">');for(var n=0;n<t.data.datasets.length;n++)e.push('<li><span style="background-color:'+t.data.datasets[n].backgroundColor+'"></span>'),t.data.datasets[n].label&&e.push(t.data.datasets[n].label),e.push("</li>");return e.push("</ul>"),e.join("")}}),e.exports=function(t){function e(t,e){return t.usePointStyle?e*Math.SQRT2:t.boxWidth}function n(e,n){var i=new t.Legend({ctx:e.ctx,options:n,chart:e});r.configure(e,i,n),r.addBox(e,i),e.legend=i}var r=t.layoutService,l=o.noop;return t.Legend=a.extend({initialize:function(t){o.extend(this,t),this.legendHitBoxes=[],this.doughnutMode=!1},beforeUpdate:l,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:l,beforeSetDimensions:l,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:l,beforeBuildLabels:l,buildLabels:function(){var t=this,e=t.options.labels||{},n=o.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(n=n.filter(function(n){return e.filter(n,t.chart.data)})),t.options.reverse&&n.reverse(),t.legendItems=n},afterBuildLabels:l,beforeFit:l,fit:function(){var t=this,n=t.options,a=n.labels,r=n.display,l=t.ctx,s=i.global,u=o.valueOrDefault,d=u(a.fontSize,s.defaultFontSize),c=u(a.fontStyle,s.defaultFontStyle),h=u(a.fontFamily,s.defaultFontFamily),f=o.fontString(d,c,h),g=t.legendHitBoxes=[],p=t.minSize,v=t.isHorizontal();if(v?(p.width=t.maxWidth,p.height=r?10:0):(p.width=r?10:0,p.height=t.maxHeight),r)if(l.font=f,v){var m=t.lineWidths=[0],b=t.legendItems.length?d+a.padding:0;l.textAlign="left",l.textBaseline="top",o.each(t.legendItems,function(n,i){var o=e(a,d)+d/2+l.measureText(n.text).width;m[m.length-1]+o+a.padding>=t.width&&(b+=d+a.padding,m[m.length]=t.left),g[i]={left:0,top:0,width:o,height:d},m[m.length-1]+=o+a.padding}),p.height+=b}else{var x=a.padding,y=t.columnWidths=[],k=a.padding,w=0,M=0,S=d+x;o.each(t.legendItems,function(t,n){var i=e(a,d)+d/2+l.measureText(t.text).width;M+S>p.height&&(k+=w+a.padding,y.push(w),w=0,M=0),w=Math.max(w,i),M+=S,g[n]={left:0,top:0,width:i,height:d}}),k+=w,y.push(w),p.width+=k}t.width=p.width,t.height=p.height},afterFit:l,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,n=t.options,a=n.labels,r=i.global,l=r.elements.line,s=t.width,u=t.lineWidths;if(n.display){var d,c=t.ctx,h=o.valueOrDefault,f=h(a.fontColor,r.defaultFontColor),g=h(a.fontSize,r.defaultFontSize),p=h(a.fontStyle,r.defaultFontStyle),v=h(a.fontFamily,r.defaultFontFamily),m=o.fontString(g,p,v);c.textAlign="left",c.textBaseline="middle",c.lineWidth=.5,c.strokeStyle=f,c.fillStyle=f,c.font=m;var b=e(a,g),x=t.legendHitBoxes,y=function(t,e,i){if(!(isNaN(b)||b<=0)){c.save(),c.fillStyle=h(i.fillStyle,r.defaultColor),c.lineCap=h(i.lineCap,l.borderCapStyle),c.lineDashOffset=h(i.lineDashOffset,l.borderDashOffset),c.lineJoin=h(i.lineJoin,l.borderJoinStyle),c.lineWidth=h(i.lineWidth,l.borderWidth),c.strokeStyle=h(i.strokeStyle,r.defaultColor);var a=0===h(i.lineWidth,l.borderWidth);if(c.setLineDash&&c.setLineDash(h(i.lineDash,l.borderDash)),n.labels&&n.labels.usePointStyle){var s=g*Math.SQRT2/2,u=s/Math.SQRT2,d=t+u,f=e+u;o.canvas.drawPoint(c,i.pointStyle,s,d,f)}else a||c.strokeRect(t,e,b,g),c.fillRect(t,e,b,g);c.restore()}},k=function(t,e,n,i){var a=g/2,o=b+a+t,r=e+a;c.fillText(n.text,o,r),n.hidden&&(c.beginPath(),c.lineWidth=2,c.moveTo(o,r),c.lineTo(o+i,r),c.stroke())},w=t.isHorizontal();d=w?{x:t.left+(s-u[0])/2,y:t.top+a.padding,line:0}:{x:t.left+a.padding,y:t.top+a.padding,line:0};var M=g+a.padding;o.each(t.legendItems,function(e,n){var i=c.measureText(e.text).width,o=b+g/2+i,r=d.x,l=d.y;w?r+o>=s&&(l=d.y+=M,d.line++,r=d.x=t.left+(s-u[d.line])/2):l+M>t.bottom&&(r=d.x=r+t.columnWidths[d.line]+a.padding,l=d.y=t.top+a.padding,d.line++),y(r,l,e),x[n].left=r,x[n].top=l,k(r,l,e,i),w?d.x+=o+a.padding:d.y+=M})}},handleEvent:function(t){var e=this,n=e.options,i="mouseup"===t.type?"click":t.type,a=!1;if("mousemove"===i){if(!n.onHover)return}else{if("click"!==i)return;if(!n.onClick)return}var o=t.x,r=t.y;if(o>=e.left&&o<=e.right&&r>=e.top&&r<=e.bottom)for(var l=e.legendHitBoxes,s=0;s<l.length;++s){var u=l[s];if(o>=u.left&&o<=u.left+u.width&&r>=u.top&&r<=u.top+u.height){if("click"===i){n.onClick.call(e,t.native,e.legendItems[s]),a=!0;break}if("mousemove"===i){n.onHover.call(e,t.native,e.legendItems[s]),a=!0;break}}}return a}}),{id:"legend",beforeInit:function(t){var e=t.options.legend;e&&n(t,e)},beforeUpdate:function(t){var e=t.options.legend,a=t.legend;e?(o.mergeIf(e,i.global.legend),a?(r.configure(t,a,e),a.options=e):n(t,e)):a&&(r.removeBox(t,a),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}}}},{25:25,26:26,45:45}],51:[function(t,e,n){"use strict";var i=t(25),a=t(26),o=t(45);i._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,lineHeight:1.2,padding:10,position:"top",text:"",weight:2e3}}),e.exports=function(t){function e(e,i){var a=new t.Title({ctx:e.ctx,options:i,chart:e});n.configure(e,a,i),n.addBox(e,a),e.titleBlock=a}var n=t.layoutService,r=o.noop;return t.Title=a.extend({initialize:function(t){var e=this;o.extend(e,t),e.legendHitBoxes=[]},beforeUpdate:r,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:r,beforeSetDimensions:r,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:r,beforeBuildLabels:r,buildLabels:r,afterBuildLabels:r,beforeFit:r,fit:function(){var t=this,e=o.valueOrDefault,n=t.options,a=n.display,r=e(n.fontSize,i.global.defaultFontSize),l=t.minSize,s=o.isArray(n.text)?n.text.length:1,u=o.options.toLineHeight(n.lineHeight,r),d=a?s*u+2*n.padding:0;t.isHorizontal()?(l.width=t.maxWidth,l.height=d):(l.width=d,l.height=t.maxHeight),t.width=l.width,t.height=l.height},afterFit:r,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,n=o.valueOrDefault,a=t.options,r=i.global;if(a.display){var l,s,u,d=n(a.fontSize,r.defaultFontSize),c=n(a.fontStyle,r.defaultFontStyle),h=n(a.fontFamily,r.defaultFontFamily),f=o.fontString(d,c,h),g=o.options.toLineHeight(a.lineHeight,d),p=g/2+a.padding,v=0,m=t.top,b=t.left,x=t.bottom,y=t.right;e.fillStyle=n(a.fontColor,r.defaultFontColor),e.font=f,t.isHorizontal()?(s=b+(y-b)/2,u=m+p,l=y-b):(s="left"===a.position?b+p:y-p,u=m+(x-m)/2,l=x-m,v=Math.PI*("left"===a.position?-.5:.5)),e.save(),e.translate(s,u),e.rotate(v),e.textAlign="center",e.textBaseline="middle";var k=a.text;if(o.isArray(k))for(var w=0,M=0;M<k.length;++M)e.fillText(k[M],0,w,l),w+=g;else e.fillText(k,0,0,l);e.restore()}}}),{id:"title",beforeInit:function(t){var n=t.options.title;n&&e(t,n)},beforeUpdate:function(a){var r=a.options.title,l=a.titleBlock;r?(o.mergeIf(r,i.global.title),l?(n.configure(a,l,r),l.options=r):e(a,r)):l&&(t.layoutService.removeBox(a,l),delete a.titleBlock)}}}},{25:25,26:26,45:45}],52:[function(t,e,n){"use strict";e.exports=function(t){var e=t.Scale.extend({getLabels:function(){var t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels},determineDataLimits:function(){var t=this,e=t.getLabels();t.minIndex=0,t.maxIndex=e.length-1;var n;void 0!==t.options.ticks.min&&(n=e.indexOf(t.options.ticks.min),t.minIndex=-1!==n?n:t.minIndex),void 0!==t.options.ticks.max&&(n=e.indexOf(t.options.ticks.max),t.maxIndex=-1!==n?n:t.maxIndex),t.min=e[t.minIndex],t.max=e[t.maxIndex]},buildTicks:function(){var t=this,e=t.getLabels();t.ticks=0===t.minIndex&&t.maxIndex===e.length-1?e:e.slice(t.minIndex,t.maxIndex+1)},getLabelForIndex:function(t,e){var n=this,i=n.chart.data,a=n.isHorizontal();return i.yLabels&&!a?n.getRightValue(i.datasets[e].data[t]):n.ticks[t-n.minIndex]},getPixelForValue:function(t,e){var n,i=this,a=i.options.offset,o=Math.max(i.maxIndex+1-i.minIndex-(a?0:1),1);if(void 0!==t&&null!==t&&(n=i.isHorizontal()?t.x:t.y),void 0!==n||void 0!==t&&isNaN(e)){var r=i.getLabels();t=n||t;var l=r.indexOf(t);e=-1!==l?l:e}if(i.isHorizontal()){var s=i.width/o,u=s*(e-i.minIndex);return a&&(u+=s/2),i.left+Math.round(u)}var d=i.height/o,c=d*(e-i.minIndex);return a&&(c+=d/2),i.top+Math.round(c)},getPixelForTick:function(t){return this.getPixelForValue(this.ticks[t],t+this.minIndex,null)},getValueForPixel:function(t){var e=this,n=e.options.offset,i=Math.max(e._ticks.length-(n?0:1),1),a=e.isHorizontal(),o=(a?e.width:e.height)/i;return t-=a?e.left:e.top,n&&(t-=o/2),(t<=0?0:Math.round(t/o))+e.minIndex},getBasePixel:function(){return this.bottom}});t.scaleService.registerScaleType("category",e,{position:"bottom"})}},{}],53:[function(t,e,n){"use strict";var i=t(25),a=t(45),o=t(34);e.exports=function(t){var e={position:"left",ticks:{callback:o.formatters.linear}},n=t.LinearScaleBase.extend({determineDataLimits:function(){function t(t){return r?t.xAxisID===e.id:t.yAxisID===e.id}var e=this,n=e.options,i=e.chart,o=i.data.datasets,r=e.isHorizontal();e.min=null,e.max=null;var l=n.stacked;if(void 0===l&&a.each(o,function(e,n){if(!l){var a=i.getDatasetMeta(n);i.isDatasetVisible(n)&&t(a)&&void 0!==a.stack&&(l=!0)}}),n.stacked||l){var s={};a.each(o,function(o,r){var l=i.getDatasetMeta(r),u=[l.type,void 0===n.stacked&&void 0===l.stack?r:"",l.stack].join(".");void 0===s[u]&&(s[u]={positiveValues:[],negativeValues:[]});var d=s[u].positiveValues,c=s[u].negativeValues;i.isDatasetVisible(r)&&t(l)&&a.each(o.data,function(t,i){var a=+e.getRightValue(t);isNaN(a)||l.data[i].hidden||(d[i]=d[i]||0,c[i]=c[i]||0,n.relativePoints?d[i]=100:a<0?c[i]+=a:d[i]+=a)})}),a.each(s,function(t){var n=t.positiveValues.concat(t.negativeValues),i=a.min(n),o=a.max(n);e.min=null===e.min?i:Math.min(e.min,i),e.max=null===e.max?o:Math.max(e.max,o)})}else a.each(o,function(n,o){var r=i.getDatasetMeta(o);i.isDatasetVisible(o)&&t(r)&&a.each(n.data,function(t,n){var i=+e.getRightValue(t);isNaN(i)||r.data[n].hidden||(null===e.min?e.min=i:i<e.min&&(e.min=i),null===e.max?e.max=i:i>e.max&&(e.max=i))})});e.min=isFinite(e.min)&&!isNaN(e.min)?e.min:0,e.max=isFinite(e.max)&&!isNaN(e.max)?e.max:1,this.handleTickRangeOptions()},getTickLimit:function(){var t,e=this,n=e.options.ticks;if(e.isHorizontal())t=Math.min(n.maxTicksLimit?n.maxTicksLimit:11,Math.ceil(e.width/50));else{var o=a.valueOrDefault(n.fontSize,i.global.defaultFontSize);t=Math.min(n.maxTicksLimit?n.maxTicksLimit:11,Math.ceil(e.height/(2*o)))}return t},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e,n=this,i=n.start,a=+n.getRightValue(t),o=n.end-i;return n.isHorizontal()?(e=n.left+n.width/o*(a-i),Math.round(e)):(e=n.bottom-n.height/o*(a-i),Math.round(e))},getValueForPixel:function(t){var e=this,n=e.isHorizontal(),i=n?e.width:e.height,a=(n?t-e.left:e.bottom-t)/i;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}});t.scaleService.registerScaleType("linear",n,e)}},{25:25,34:34,45:45}],54:[function(t,e,n){"use strict";var i=t(45),a=t(34);e.exports=function(t){var e=i.noop;t.LinearScaleBase=t.Scale.extend({getRightValue:function(e){return"string"==typeof e?+e:t.Scale.prototype.getRightValue.call(this,e)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var n=i.sign(t.min),a=i.sign(t.max);n<0&&a<0?t.max=0:n>0&&a>0&&(t.min=0)}var o=void 0!==e.min||void 0!==e.suggestedMin,r=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),o!==r&&t.min>=t.max&&(o?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:e,handleDirectionalChanges:e,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),o={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,stepSize:i.valueOrDefault(e.fixedStepSize,e.stepSize)},r=t.ticks=a.generators.linear(o,t);t.handleDirectionalChanges(),t.max=i.max(r),t.min=i.min(r),e.reverse?(r.reverse(),t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max)},convertTicksToLabels:function(){var e=this;e.ticksAsNumbers=e.ticks.slice(),e.zeroLineIndex=e.ticks.indexOf(0),t.Scale.prototype.convertTicksToLabels.call(e)}})}},{34:34,45:45}],55:[function(t,e,n){"use strict";var i=t(45),a=t(34);e.exports=function(t){var e={position:"left",ticks:{callback:a.formatters.logarithmic}},n=t.Scale.extend({determineDataLimits:function(){function t(t){return s?t.xAxisID===e.id:t.yAxisID===e.id}var e=this,n=e.options,a=n.ticks,o=e.chart,r=o.data.datasets,l=i.valueOrDefault,s=e.isHorizontal();e.min=null,e.max=null,e.minNotZero=null;var u=n.stacked;if(void 0===u&&i.each(r,function(e,n){if(!u){var i=o.getDatasetMeta(n);o.isDatasetVisible(n)&&t(i)&&void 0!==i.stack&&(u=!0)}}),n.stacked||u){var d={};i.each(r,function(a,r){var l=o.getDatasetMeta(r),s=[l.type,void 0===n.stacked&&void 0===l.stack?r:"",l.stack].join(".");o.isDatasetVisible(r)&&t(l)&&(void 0===d[s]&&(d[s]=[]),i.each(a.data,function(t,i){var a=d[s],o=+e.getRightValue(t);isNaN(o)||l.data[i].hidden||(a[i]=a[i]||0,n.relativePoints?a[i]=100:a[i]+=o)}))}),i.each(d,function(t){var n=i.min(t),a=i.max(t);e.min=null===e.min?n:Math.min(e.min,n),e.max=null===e.max?a:Math.max(e.max,a)})}else i.each(r,function(n,a){var r=o.getDatasetMeta(a);o.isDatasetVisible(a)&&t(r)&&i.each(n.data,function(t,n){var i=+e.getRightValue(t);isNaN(i)||r.data[n].hidden||(null===e.min?e.min=i:i<e.min&&(e.min=i),null===e.max?e.max=i:i>e.max&&(e.max=i),0!==i&&(null===e.minNotZero||i<e.minNotZero)&&(e.minNotZero=i))})});e.min=l(a.min,e.min),e.max=l(a.max,e.max),e.min===e.max&&(0!==e.min&&null!==e.min?(e.min=Math.pow(10,Math.floor(i.log10(e.min))-1),e.max=Math.pow(10,Math.floor(i.log10(e.max))+1)):(e.min=1,e.max=10))},buildTicks:function(){var t=this,e=t.options.ticks,n={min:e.min,max:e.max},o=t.ticks=a.generators.logarithmic(n,t);t.isHorizontal()||o.reverse(),t.max=i.max(o),t.min=i.min(o),e.reverse?(o.reverse(),t.start=t.max,t.end=t.min):(t.start=t.min,t.end=t.max)},convertTicksToLabels:function(){this.tickValues=this.ticks.slice(),t.Scale.prototype.convertTicksToLabels.call(this)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForTick:function(t){return this.getPixelForValue(this.tickValues[t])},getPixelForValue:function(t){var e,n,a,o=this,r=o.start,l=+o.getRightValue(t),s=o.options.ticks;return o.isHorizontal()?(a=i.log10(o.end)-i.log10(r),0===l?n=o.left:(e=o.width,n=o.left+e/a*(i.log10(l)-i.log10(r)))):(e=o.height,0!==r||s.reverse?0===o.end&&s.reverse?(a=i.log10(o.start)-i.log10(o.minNotZero),n=l===o.end?o.top:l===o.minNotZero?o.top+.02*e:o.top+.02*e+.98*e/a*(i.log10(l)-i.log10(o.minNotZero))):0===l?n=s.reverse?o.top:o.bottom:(a=i.log10(o.end)-i.log10(r),e=o.height,n=o.bottom-e/a*(i.log10(l)-i.log10(r))):(a=i.log10(o.end)-i.log10(o.minNotZero),n=l===r?o.bottom:l===o.minNotZero?o.bottom-.02*e:o.bottom-.02*e-.98*e/a*(i.log10(l)-i.log10(o.minNotZero)))),n},getValueForPixel:function(t){var e,n,a=this,o=i.log10(a.end)-i.log10(a.start);return a.isHorizontal()?(n=a.width,e=a.start*Math.pow(10,(t-a.left)*o/n)):(n=a.height,e=Math.pow(10,(a.bottom-t)*o/n)/a.start),e}});t.scaleService.registerScaleType("logarithmic",n,e)}},{34:34,45:45}],56:[function(t,e,n){"use strict";var i=t(25),a=t(45),o=t(34);e.exports=function(t){function e(t){var e=t.options;return e.angleLines.display||e.pointLabels.display?t.chart.data.labels.length:0}function n(t){var e=t.options.pointLabels,n=a.valueOrDefault(e.fontSize,v.defaultFontSize),i=a.valueOrDefault(e.fontStyle,v.defaultFontStyle),o=a.valueOrDefault(e.fontFamily,v.defaultFontFamily);return{size:n,style:i,family:o,font:a.fontString(n,i,o)}}function r(t,e,n){return a.isArray(n)?{w:a.longestText(t,t.font,n),h:n.length*e+1.5*(n.length-1)*e}:{w:t.measureText(n).width,h:e}}function l(t,e,n,i,a){return t===i||t===a?{start:e-n/2,end:e+n/2}:t<i||t>a?{start:e-n-5,end:e}:{start:e,end:e+n+5}}function s(t){var i,o,s,u=n(t),d=Math.min(t.height/2,t.width/2),c={r:t.width,l:0,t:t.height,b:0},h={};t.ctx.font=u.font,t._pointLabelSizes=[];var f=e(t);for(i=0;i<f;i++){s=t.getPointPosition(i,d),o=r(t.ctx,u.size,t.pointLabels[i]||""),t._pointLabelSizes[i]=o;var g=t.getIndexAngle(i),p=a.toDegrees(g)%360,v=l(p,s.x,o.w,0,180),m=l(p,s.y,o.h,90,270);v.start<c.l&&(c.l=v.start,h.l=g),v.end>c.r&&(c.r=v.end,h.r=g),m.start<c.t&&(c.t=m.start,h.t=g),m.end>c.b&&(c.b=m.end,h.b=g)}t.setReductions(d,c,h)}function u(t){var e=Math.min(t.height/2,t.width/2);t.drawingArea=Math.round(e),t.setCenterPoint(0,0,0,0)}function d(t){return 0===t||180===t?"center":t<180?"left":"right"}function c(t,e,n,i){if(a.isArray(e))for(var o=n.y,r=1.5*i,l=0;l<e.length;++l)t.fillText(e[l],n.x,o),o+=r;else t.fillText(e,n.x,n.y)}function h(t,e,n){90===t||270===t?n.y-=e.h/2:(t>270||t<90)&&(n.y-=e.h)}function f(t){var i=t.ctx,o=a.valueOrDefault,r=t.options,l=r.angleLines,s=r.pointLabels;i.lineWidth=l.lineWidth,i.strokeStyle=l.color;var u=t.getDistanceFromCenterForValue(r.ticks.reverse?t.min:t.max),f=n(t);i.textBaseline="top";for(var g=e(t)-1;g>=0;g--){if(l.display){var p=t.getPointPosition(g,u);i.beginPath(),i.moveTo(t.xCenter,t.yCenter),i.lineTo(p.x,p.y),i.stroke(),i.closePath()}if(s.display){var m=t.getPointPosition(g,u+5),b=o(s.fontColor,v.defaultFontColor);i.font=f.font,i.fillStyle=b;var x=t.getIndexAngle(g),y=a.toDegrees(x);i.textAlign=d(y),h(y,t._pointLabelSizes[g],m),c(i,t.pointLabels[g]||"",m,f.size)}}}function g(t,n,i,o){var r=t.ctx;if(r.strokeStyle=a.valueAtIndexOrDefault(n.color,o-1),r.lineWidth=a.valueAtIndexOrDefault(n.lineWidth,o-1),t.options.gridLines.circular)r.beginPath(),r.arc(t.xCenter,t.yCenter,i,0,2*Math.PI),r.closePath(),r.stroke();else{var l=e(t);if(0===l)return;r.beginPath();var s=t.getPointPosition(0,i);r.moveTo(s.x,s.y);for(var u=1;u<l;u++)s=t.getPointPosition(u,i),r.lineTo(s.x,s.y);r.closePath(),r.stroke()}}function p(t){return a.isNumber(t)?t:0}var v=i.global,m={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0, 0, 0, 0.1)",lineWidth:1},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:o.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(t){return t}}},b=t.LinearScaleBase.extend({setDimensions:function(){var t=this,e=t.options,n=e.ticks;t.width=t.maxWidth,t.height=t.maxHeight,t.xCenter=Math.round(t.width/2),t.yCenter=Math.round(t.height/2);var i=a.min([t.height,t.width]),o=a.valueOrDefault(n.fontSize,v.defaultFontSize);t.drawingArea=e.display?i/2-(o/2+n.backdropPaddingY):i/2},determineDataLimits:function(){var t=this,e=t.chart,n=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY;a.each(e.data.datasets,function(o,r){if(e.isDatasetVisible(r)){var l=e.getDatasetMeta(r);a.each(o.data,function(e,a){var o=+t.getRightValue(e);isNaN(o)||l.data[a].hidden||(n=Math.min(o,n),i=Math.max(o,i))})}}),t.min=n===Number.POSITIVE_INFINITY?0:n,t.max=i===Number.NEGATIVE_INFINITY?0:i,t.handleTickRangeOptions()},getTickLimit:function(){var t=this.options.ticks,e=a.valueOrDefault(t.fontSize,v.defaultFontSize);return Math.min(t.maxTicksLimit?t.maxTicksLimit:11,Math.ceil(this.drawingArea/(1.5*e)))},convertTicksToLabels:function(){var e=this;t.LinearScaleBase.prototype.convertTicksToLabels.call(e),e.pointLabels=e.chart.data.labels.map(e.options.pointLabels.callback,e)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){this.options.pointLabels.display?s(this):u(this)},setReductions:function(t,e,n){var i=this,a=e.l/Math.sin(n.l),o=Math.max(e.r-i.width,0)/Math.sin(n.r),r=-e.t/Math.cos(n.t),l=-Math.max(e.b-i.height,0)/Math.cos(n.b);a=p(a),o=p(o),r=p(r),l=p(l),i.drawingArea=Math.min(Math.round(t-(a+o)/2),Math.round(t-(r+l)/2)),i.setCenterPoint(a,o,r,l)},setCenterPoint:function(t,e,n,i){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,l=n+a.drawingArea,s=a.height-i-a.drawingArea;a.xCenter=Math.round((r+o)/2+a.left),a.yCenter=Math.round((l+s)/2+a.top)},getIndexAngle:function(t){return t*(2*Math.PI/e(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var n=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*n:(t-e.min)*n},getPointPosition:function(t,e){var n=this,i=n.getIndexAngle(t)-Math.PI/2;return{x:Math.round(Math.cos(i)*e)+n.xCenter,y:Math.round(Math.sin(i)*e)+n.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this,e=t.min,n=t.max;return t.getPointPositionForValue(0,t.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0)},draw:function(){var t=this,e=t.options,n=e.gridLines,i=e.ticks,o=a.valueOrDefault;if(e.display){var r=t.ctx,l=this.getIndexAngle(0),s=o(i.fontSize,v.defaultFontSize),u=o(i.fontStyle,v.defaultFontStyle),d=o(i.fontFamily,v.defaultFontFamily),c=a.fontString(s,u,d);a.each(t.ticks,function(e,a){if(a>0||i.reverse){var u=t.getDistanceFromCenterForValue(t.ticksAsNumbers[a]);if(n.display&&0!==a&&g(t,n,u,a),i.display){var d=o(i.fontColor,v.defaultFontColor);if(r.font=c,r.save(),r.translate(t.xCenter,t.yCenter),r.rotate(l),i.showLabelBackdrop){var h=r.measureText(e).width;r.fillStyle=i.backdropColor,r.fillRect(-h/2-i.backdropPaddingX,-u-s/2-i.backdropPaddingY,h+2*i.backdropPaddingX,s+2*i.backdropPaddingY)}r.textAlign="center",r.textBaseline="middle",r.fillStyle=d,r.fillText(e,0,-u),r.restore()}}}),(e.angleLines.display||e.pointLabels.display)&&f(t)}}});t.scaleService.registerScaleType("radialLinear",b,m)}},{25:25,34:34,45:45}],57:[function(t,e,n){"use strict";function i(t,e){return t-e}function a(t){var e,n,i,a={},o=[];for(e=0,n=t.length;e<n;++e)a[i=t[e]]||(a[i]=!0,o.push(i));return o}function o(t,e,n,i){if("linear"===i||!t.length)return[{time:e,pos:0},{time:n,pos:1}];var a,o,r,l,s,u=[],d=[e];for(a=0,o=t.length;a<o;++a)(l=t[a])>e&&l<n&&d.push(l);for(d.push(n),a=0,o=d.length;a<o;++a)s=d[a+1],r=d[a-1],l=d[a],void 0!==r&&void 0!==s&&Math.round((s+r)/2)===l||u.push({time:l,pos:a/(o-1)});return u}function r(t,e,n){for(var i,a,o,r=0,l=t.length-1;r>=0&&r<=l;){if(i=r+l>>1,a=t[i-1]||null,o=t[i],!a)return{lo:null,hi:o};if(o[e]<n)r=i+1;else{if(!(a[e]>n))return{lo:a,hi:o};l=i-1}}return{lo:o,hi:null}}function l(t,e,n,i){var a=r(t,e,n),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],l=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=l[e]-o[e],u=s?(n-o[e])/s:0,d=(l[i]-o[i])*u;return o[i]+d}function s(t,e){var n=e.parser,i=e.parser||e.format;return"function"==typeof n?n(t):"string"==typeof t&&"string"==typeof i?m(t,i):(t instanceof m||(t=m(t)),t.isValid()?t:"function"==typeof i?i(t):t)}function u(t,e){if(x.isNullOrUndef(t))return null;var n=e.options.time,i=s(e.getRightValue(t),n);return i.isValid()?(n.round&&i.startOf(n.round),i.valueOf()):null}function d(t,e,n,i){var a,o,r,l=e-t,s=w[n],u=s.size,d=s.steps;if(!d)return Math.ceil(l/((i||1)*u));for(a=0,o=d.length;a<o&&(r=d[a],!(Math.ceil(l/(u*r))<=i));++a);return r}function c(t,e,n,i){var a,o,r,l=M.length;for(a=M.indexOf(t);a<l-1;++a)if(o=w[M[a]],r=o.steps?o.steps[o.steps.length-1]:k,o.common&&Math.ceil((n-e)/(r*o.size))<=i)return M[a];return M[l-1]}function h(t,e,n,i){var a,o,r=m.duration(m(i).diff(m(n)));for(a=M.length-1;a>=M.indexOf(e);a--)if(o=M[a],w[o].common&&r.as(o)>=t.length)return o;return M[e?M.indexOf(e):0]}function f(t){for(var e=M.indexOf(t)+1,n=M.length;e<n;++e)if(w[M[e]].common)return M[e]}function g(t,e,n,i){var a,o=i.time,r=o.unit||c(o.minUnit,t,e,n),l=f(r),s=x.valueOrDefault(o.stepSize,o.unitStepSize),u="week"===r&&o.isoWeekday,h=i.ticks.major.enabled,g=w[r],p=m(t),v=m(e),b=[];for(s||(s=d(t,e,r,n)),u&&(p=p.isoWeekday(u),v=v.isoWeekday(u)),p=p.startOf(u?"day":r),(v=v.startOf(u?"day":r))<e&&v.add(1,r),a=m(p),h&&l&&!u&&!o.round&&(a.startOf(l),a.add(~~((p-a)/(g.size*s))*s,r));a<v;a.add(s,r))b.push(+a);return b.push(+a),b}function p(t,e,n,i,a){var o,r,s=0,u=0;return a.offset&&e.length&&(a.time.min||(o=e.length>1?e[1]:i,r=e[0],s=(l(t,"time",o,"pos")-l(t,"time",r,"pos"))/2),a.time.max||(o=e[e.length-1],r=e.length>1?e[e.length-2]:n,u=(l(t,"time",o,"pos")-l(t,"time",r,"pos"))/2)),{left:s,right:u}}function v(t,e){var n,i,a,o,r=[];for(n=0,i=t.length;n<i;++n)a=t[n],o=!!e&&a===+m(a).startOf(e),r.push({value:a,major:o});return r}var m=t(1);m="function"==typeof m?m:window.moment;var b=t(25),x=t(45),y=Number.MIN_SAFE_INTEGER||-9007199254740991,k=Number.MAX_SAFE_INTEGER||9007199254740991,w={millisecond:{common:!0,size:1,steps:[1,2,5,10,20,50,100,250,500]},second:{common:!0,size:1e3,steps:[1,2,5,10,30]},minute:{common:!0,size:6e4,steps:[1,2,5,10,30]},hour:{common:!0,size:36e5,steps:[1,2,3,6,12]},day:{common:!0,size:864e5,steps:[1,2,5]},week:{common:!1,size:6048e5,steps:[1,2,3,4]},month:{common:!0,size:2628e6,steps:[1,2,3]},quarter:{common:!1,size:7884e6,steps:[1,2,3,4]},year:{common:!0,size:3154e7}},M=Object.keys(w);e.exports=function(t){var e=t.Scale.extend({initialize:function(){if(!m)throw new Error("Chart.js - Moment.js could not be found! You must include it before Chart.js to use the time scale. Download at https://momentjs.com");this.mergeTicksOptions(),t.Scale.prototype.initialize.call(this)},update:function(){var e=this,n=e.options;return n.time&&n.time.format&&console.warn("options.time.format is deprecated and replaced by options.time.parser."),t.Scale.prototype.update.apply(e,arguments)},getRightValue:function(e){return e&&void 0!==e.t&&(e=e.t),t.Scale.prototype.getRightValue.call(this,e)},determineDataLimits:function(){var t,e,n,o,r,l,s=this,d=s.chart,c=s.options.time,h=k,f=y,g=[],p=[],v=[];for(t=0,n=d.data.labels.length;t<n;++t)v.push(u(d.data.labels[t],s));for(t=0,n=(d.data.datasets||[]).length;t<n;++t)if(d.isDatasetVisible(t))if(r=d.data.datasets[t].data,x.isObject(r[0]))for(p[t]=[],e=0,o=r.length;e<o;++e)l=u(r[e],s),g.push(l),p[t][e]=l;else g.push.apply(g,v),p[t]=v.slice(0);else p[t]=[];v.length&&(v=a(v).sort(i),h=Math.min(h,v[0]),f=Math.max(f,v[v.length-1])),g.length&&(g=a(g).sort(i),h=Math.min(h,g[0]),f=Math.max(f,g[g.length-1])),h=u(c.min,s)||h,f=u(c.max,s)||f,h=h===k?+m().startOf("day"):h,f=f===y?+m().endOf("day")+1:f,s.min=Math.min(h,f),s.max=Math.max(h+1,f),s._horizontal=s.isHorizontal(),s._table=[],s._timestamps={data:g,datasets:p,labels:v}},buildTicks:function(){var t,e,n,i=this,a=i.min,r=i.max,l=i.options,s=l.time,d=[],c=[];switch(l.ticks.source){case"data":d=i._timestamps.data;break;case"labels":d=i._timestamps.labels;break;case"auto":default:d=g(a,r,i.getLabelCapacity(a),l)}for("ticks"===l.bounds&&d.length&&(a=d[0],r=d[d.length-1]),a=u(s.min,i)||a,r=u(s.max,i)||r,t=0,e=d.length;t<e;++t)(n=d[t])>=a&&n<=r&&c.push(n);return i.min=a,i.max=r,i._unit=s.unit||h(c,s.minUnit,i.min,i.max),i._majorUnit=f(i._unit),i._table=o(i._timestamps.data,a,r,l.distribution),i._offsets=p(i._table,c,a,r,l),v(c,i._majorUnit)},getLabelForIndex:function(t,e){var n=this,i=n.chart.data,a=n.options.time,o=i.labels&&t<i.labels.length?i.labels[t]:"",r=i.datasets[e].data[t];return x.isObject(r)&&(o=n.getRightValue(r)),a.tooltipFormat&&(o=s(o,a).format(a.tooltipFormat)),o},tickFormatFunction:function(t,e,n,i){var a=this,o=a.options,r=t.valueOf(),l=o.time.displayFormats,s=l[a._unit],u=a._majorUnit,d=l[u],c=t.clone().startOf(u).valueOf(),h=o.ticks.major,f=h.enabled&&u&&d&&r===c,g=t.format(i||(f?d:s)),p=f?h:o.ticks.minor,v=x.valueOrDefault(p.callback,p.userCallback);return v?v(g,e,n):g},convertTicksToLabels:function(t){var e,n,i=[];for(e=0,n=t.length;e<n;++e)i.push(this.tickFormatFunction(m(t[e].value),e,t));return i},getPixelForOffset:function(t){var e=this,n=e._horizontal?e.width:e.height,i=e._horizontal?e.left:e.top,a=l(e._table,"time",t,"pos");return i+n*(e._offsets.left+a)/(e._offsets.left+1+e._offsets.right)},getPixelForValue:function(t,e,n){var i=this,a=null;if(void 0!==e&&void 0!==n&&(a=i._timestamps.datasets[n][e]),null===a&&(a=u(t,i)),null!==a)return i.getPixelForOffset(a)},getPixelForTick:function(t){var e=this.getTicks();return t>=0&&t<e.length?this.getPixelForOffset(e[t].value):null},getValueForPixel:function(t){var e=this,n=e._horizontal?e.width:e.height,i=e._horizontal?e.left:e.top,a=(n?(t-i)/n:0)*(e._offsets.left+1+e._offsets.left)-e._offsets.right,o=l(e._table,"pos",a,"time");return m(o)},getLabelWidth:function(t){var e=this,n=e.options.ticks,i=e.ctx.measureText(t).width,a=x.toRadians(n.maxRotation),o=Math.cos(a),r=Math.sin(a);return i*o+x.valueOrDefault(n.fontSize,b.global.defaultFontSize)*r},getLabelCapacity:function(t){var e=this,n=e.options.time.displayFormats.millisecond,i=e.tickFormatFunction(m(t),0,[],n),a=e.getLabelWidth(i),o=e.isHorizontal()?e.width:e.height;return Math.floor(o/a)}});t.scaleService.registerScaleType("time",e,{position:"bottom",distribution:"linear",bounds:"data",time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}})}},{1:1,25:25,45:45}]},{},[7])(7)});
|
|
|
20 |
|
21 |
|
22 |
/* ================== admin/classes/js/src/jquery.vmap.min.js =================== */
|
52 |
var value=$(this).data('id');
|
53 |
var table=$(this).data('table');
|
54 |
var r = confirm(wp_ulike_logs.message);
|
55 |
+
if (r === true) {
|
56 |
jQuery.ajax({
|
57 |
type:'POST',
|
58 |
url: wp_ulike_logs.ajaxurl,
|
78 |
var activities_dataset_var = JSON.parse(wp_ulike_statistics.activities_dataset);
|
79 |
var topics_dataset_var = JSON.parse(wp_ulike_statistics.topics_dataset);
|
80 |
var world_map_data = JSON.parse(wp_ulike_statistics.data_map);
|
81 |
+
var activities_dataset_sum = 0;
|
82 |
+
var topics_dataset_sum = 0;
|
83 |
+
var comments_dataset_sum = 0;
|
84 |
+
var posts_dataset_sum = 0;
|
85 |
//posts dataset
|
86 |
if(posts_dataset_var !== null){
|
87 |
+
for (var postNum = 0; postNum < posts_dataset_var.length; postNum++) {
|
88 |
+
posts_dataset_sum += parseInt(posts_dataset_var[postNum]);
|
89 |
+
}
|
90 |
+
var posts_date = {
|
91 |
+
labels : JSON.parse(wp_ulike_statistics.posts_date_labels),
|
92 |
+
datasets : [
|
93 |
+
{
|
94 |
+
label: "Liked Posts",
|
95 |
+
data : posts_dataset_var,
|
96 |
+
backgroundColor: "rgba(66, 165, 245,0.8)",
|
97 |
+
borderColor: "rgba(21, 101, 192,1)",
|
98 |
+
pointBackgroundColor: "rgba(255,255,255,1)",
|
99 |
+
borderWidth: 1
|
100 |
+
}
|
101 |
+
]
|
102 |
+
};
|
|
|
|
|
103 |
}
|
104 |
|
105 |
//comments dataset
|
106 |
if(comments_dataset_var !== null){
|
107 |
+
for (var commentNum = 0; commentNum < comments_dataset_var.length; commentNum++) {
|
108 |
+
comments_dataset_sum += parseInt(comments_dataset_var[commentNum]);
|
109 |
+
}
|
110 |
+
var comments_date = {
|
111 |
+
labels : JSON.parse(wp_ulike_statistics.comments_date_labels),
|
112 |
+
datasets : [
|
113 |
+
{
|
114 |
+
label: "Liked Comments",
|
115 |
+
data : comments_dataset_var,
|
116 |
+
backgroundColor : "rgba(255, 202, 40,0.8)",
|
117 |
+
borderColor : "rgba(255, 143, 0,1)",
|
118 |
+
pointBackgroundColor: "rgba(255,255,255,1)",
|
119 |
+
borderWidth: 1
|
120 |
+
|
121 |
+
}
|
122 |
+
]
|
123 |
+
};
|
|
|
124 |
}
|
125 |
|
126 |
|
127 |
//activities dataset
|
128 |
if(activities_dataset_var !== null){
|
129 |
+
for (var activityNum = 0; activityNum < activities_dataset_var.length; activityNum++) {
|
130 |
+
activities_dataset_sum += parseInt(activities_dataset_var[activityNum]);
|
131 |
+
}
|
132 |
+
var activities_date = {
|
133 |
+
labels : JSON.parse(wp_ulike_statistics.activities_date_labels),
|
134 |
+
datasets : [
|
135 |
+
{
|
136 |
+
label: "Liked Activities",
|
137 |
+
data : activities_dataset_var,
|
138 |
+
backgroundColor: "rgba(239, 83, 80,0.8)",
|
139 |
+
borderColor: "rgba(198, 40, 40,1)",
|
140 |
+
pointBackgroundColor: "rgba(255,255,255,1)",
|
141 |
+
borderWidth: 1
|
142 |
+
}
|
143 |
+
]
|
144 |
+
};
|
|
|
|
|
145 |
}
|
146 |
|
147 |
//Topics dataset
|
148 |
if(topics_dataset_var !== null){
|
149 |
+
for (var topicNum = 0; topicNum < topics_dataset_var.length; topicNum++) {
|
150 |
+
topics_dataset_sum += parseInt(topics_dataset_var[topicNum]);
|
151 |
+
}
|
152 |
+
var topics_date = {
|
153 |
+
labels : JSON.parse(wp_ulike_statistics.topics_date_labels),
|
154 |
+
datasets : [
|
155 |
+
{
|
156 |
+
label: "Liked Topics",
|
157 |
+
data : topics_dataset_var,
|
158 |
+
backgroundColor: "rgba(102, 187, 106,0.8)",
|
159 |
+
borderColor: "rgba(27, 94, 32,1)",
|
160 |
+
pointBackgroundColor: "rgba(255,255,255,1)",
|
161 |
+
borderWidth: 1
|
162 |
+
}
|
163 |
+
]
|
164 |
+
};
|
|
|
|
|
165 |
}
|
166 |
|
167 |
+
var pieData = {
|
168 |
+
datasets: [{
|
169 |
+
data: [
|
170 |
+
posts_dataset_sum,
|
171 |
+
comments_dataset_sum,
|
172 |
+
activities_dataset_sum,
|
173 |
+
topics_dataset_sum
|
174 |
+
],
|
175 |
+
backgroundColor: [
|
176 |
+
"#42a5f5",
|
177 |
+
"#ffca28",
|
178 |
+
"#F7464A",
|
179 |
+
"#66bb6a",
|
180 |
+
],
|
181 |
+
}],
|
182 |
+
|
183 |
+
// These labels appear in the legend and in the tooltips when hovering different arcs
|
184 |
+
labels: [
|
185 |
+
'Posts',
|
186 |
+
'Comments',
|
187 |
+
'Activities',
|
188 |
+
'Topics',
|
189 |
+
]
|
190 |
+
};
|
|
|
|
|
191 |
|
192 |
|
193 |
+
var postsChart = document.getElementById('chart1');
|
194 |
+
var commentsChart = document.getElementById('chart2');
|
195 |
+
var activitiesChart = document.getElementById('chart3');
|
196 |
+
var topicsChart = document.getElementById('chart4');
|
197 |
+
var allocationChart = document.getElementById('piechart');
|
198 |
|
199 |
+
if ( postsChart !== null ) {
|
200 |
+
if( posts_dataset_var !== null ){
|
201 |
+
var ctx1 = postsChart.getContext("2d");
|
202 |
+
postsChart = new Chart(ctx1, {
|
203 |
+
// The type of chart we want to create
|
204 |
+
type: 'line',
|
205 |
+
// The data for our dataset
|
206 |
+
data: posts_date
|
207 |
+
});
|
208 |
}else{
|
209 |
document.getElementById("posts_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
210 |
}
|
211 |
}
|
212 |
|
213 |
+
if ( commentsChart !== null ) {
|
214 |
+
if( comments_dataset_var !== null ){
|
215 |
+
var ctx2 = commentsChart.getContext("2d");
|
216 |
+
commentsChart = new Chart(ctx2, {
|
217 |
+
// The type of chart we want to create
|
218 |
+
type: 'line',
|
219 |
+
// The data for our dataset
|
220 |
+
data: comments_date
|
221 |
+
});
|
222 |
}else{
|
223 |
document.getElementById("comments_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
224 |
}
|
225 |
}
|
226 |
|
227 |
+
if ( activitiesChart !== null ) {
|
228 |
+
if( activities_dataset_var !== null ){
|
229 |
+
var ctx3 = activitiesChart.getContext("2d");
|
230 |
+
activitiesChart = new Chart(ctx3, {
|
231 |
+
// The type of chart we want to create
|
232 |
+
type: 'line',
|
233 |
+
// The data for our dataset
|
234 |
+
data: activities_date
|
235 |
+
});
|
236 |
}else{
|
237 |
document.getElementById("activities_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
238 |
}
|
239 |
}
|
240 |
|
241 |
+
if ( topicsChart !== null ) {
|
242 |
+
if( topics_dataset_var !== null ){
|
243 |
+
var ctx4 = topicsChart.getContext("2d");
|
244 |
+
topicsChart = new Chart(ctx4, {
|
245 |
+
// The type of chart we want to create
|
246 |
+
type: 'line',
|
247 |
+
// The data for our dataset
|
248 |
+
data: topics_date
|
249 |
+
});
|
250 |
}else{
|
251 |
document.getElementById("topics_likes_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
252 |
}
|
253 |
}
|
254 |
|
255 |
+
if( allocationChart !== null ) {
|
256 |
+
if( activities_dataset_var !== null || topics_dataset_var !== null || comments_dataset_var || null && posts_dataset_var || null ){
|
257 |
+
var ctx5 = allocationChart.getContext("2d");
|
258 |
+
allocationChart = new Chart(ctx5, {
|
259 |
+
// The type of chart we want to create
|
260 |
+
type: 'pie',
|
261 |
+
// The data for our dataset
|
262 |
+
data: pieData
|
263 |
+
});
|
264 |
}else{
|
265 |
document.getElementById("piechart_stats").getElementsByClassName("main")[0].innerHTML = "No Data Found!";
|
266 |
}
|
admin/classes/tmp/options.php
ADDED
@@ -0,0 +1,555 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) exit;
|
5 |
+
|
6 |
+
function wp_ulike_get_options_info( $type, $result = array() ) {
|
7 |
+
|
8 |
+
switch ( $type ) {
|
9 |
+
case 'general':
|
10 |
+
$result = array(
|
11 |
+
'title' => '<i class="dashicons-before dashicons-admin-settings"></i>' . ' ' . __( 'General',WP_ULIKE_SLUG),
|
12 |
+
'fields' => array(
|
13 |
+
'button_type' => array(
|
14 |
+
'type' => 'visual-select',
|
15 |
+
'label' => __( 'Button Type', WP_ULIKE_SLUG),
|
16 |
+
'default' => 'text',
|
17 |
+
'options' => array(
|
18 |
+
'image' => array(
|
19 |
+
'name' => __('Icon', WP_ULIKE_SLUG),
|
20 |
+
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/icon.svg'
|
21 |
+
),
|
22 |
+
'text' => array(
|
23 |
+
'name' => __('Text', WP_ULIKE_SLUG),
|
24 |
+
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/text.svg'
|
25 |
+
)
|
26 |
+
)
|
27 |
+
),
|
28 |
+
'button_text' => array(
|
29 |
+
'default' => __('Like',WP_ULIKE_SLUG),
|
30 |
+
'label' => __( 'Button Text', WP_ULIKE_SLUG) . ' (' . __('Like', WP_ULIKE_SLUG) .')',
|
31 |
+
),
|
32 |
+
'button_text_u' => array(
|
33 |
+
'default' => __('Unlike',WP_ULIKE_SLUG),
|
34 |
+
'label' => __( 'Button Text', WP_ULIKE_SLUG) . ' (' . __('Unlike', WP_ULIKE_SLUG) .')',
|
35 |
+
),
|
36 |
+
'button_url' => array(
|
37 |
+
'type' => 'media',
|
38 |
+
'label' => __( 'Button Icon', WP_ULIKE_SLUG) . ' (' . __('Like', WP_ULIKE_SLUG) .')',
|
39 |
+
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
40 |
+
),
|
41 |
+
'button_url_u' => array(
|
42 |
+
'type' => 'media',
|
43 |
+
'label' => __( 'Button Icon', WP_ULIKE_SLUG) . ' (' . __('Unlike', WP_ULIKE_SLUG) .')',
|
44 |
+
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
45 |
+
),
|
46 |
+
'permission_text' => array(
|
47 |
+
'default' => __('You have not permission to unlike',WP_ULIKE_SLUG),
|
48 |
+
'label' => __( 'Permission Text', WP_ULIKE_SLUG)
|
49 |
+
),
|
50 |
+
'login_type' => array(
|
51 |
+
'type' => 'radio',
|
52 |
+
'label' => __( 'Users Login Type',WP_ULIKE_SLUG),
|
53 |
+
'default' => 'button',
|
54 |
+
'options' => array(
|
55 |
+
'alert' => __('Alert Box', WP_ULIKE_SLUG),
|
56 |
+
'button' => __('Like Button', WP_ULIKE_SLUG)
|
57 |
+
)
|
58 |
+
),
|
59 |
+
'login_text' => array(
|
60 |
+
'default' => __('You Should Login To Submit Your Like',WP_ULIKE_SLUG),
|
61 |
+
'label' => __( 'Users Login Text', WP_ULIKE_SLUG)
|
62 |
+
),
|
63 |
+
'plugin_files' => array(
|
64 |
+
'type' => 'multi',
|
65 |
+
'label' => __( 'Disable Plugin Files',WP_ULIKE_SLUG ),
|
66 |
+
'options' => array(
|
67 |
+
'home' => __('Home', WP_ULIKE_SLUG),
|
68 |
+
'single' => __('Single Posts', WP_ULIKE_SLUG),
|
69 |
+
'page' => __('Pages', WP_ULIKE_SLUG),
|
70 |
+
'archive' => __('Archives', WP_ULIKE_SLUG),
|
71 |
+
'category' => __('Categories', WP_ULIKE_SLUG),
|
72 |
+
'search' => __('Search Results', WP_ULIKE_SLUG),
|
73 |
+
'tag' => __('Tags', WP_ULIKE_SLUG),
|
74 |
+
'author' => __('Author Page', WP_ULIKE_SLUG),
|
75 |
+
'buddypress' => __('BuddyPress Pages', WP_ULIKE_SLUG),
|
76 |
+
'bbpress' => __('bbPress Pages', WP_ULIKE_SLUG),
|
77 |
+
'woocommerce' => __('WooCommerce Pages', WP_ULIKE_SLUG)
|
78 |
+
),
|
79 |
+
'description' => __('Remove the plugin\'s css and js file on these pages.', WP_ULIKE_SLUG)
|
80 |
+
),
|
81 |
+
'format_number' => array(
|
82 |
+
'type' => 'checkbox',
|
83 |
+
'default' => 0,
|
84 |
+
'label' => __('Format Number', WP_ULIKE_SLUG),
|
85 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
86 |
+
'description' => __('Convert numbers of Likes with string (kilobyte) format.', WP_ULIKE_SLUG) . '<strong> (WHEN? likes>=1000)</strong>'
|
87 |
+
),
|
88 |
+
'notifications' => array(
|
89 |
+
'type' => 'checkbox',
|
90 |
+
'default' => 1,
|
91 |
+
'label' => __('Notifications', WP_ULIKE_SLUG),
|
92 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
93 |
+
'description' => __('Custom toast messages after each activity', WP_ULIKE_SLUG)
|
94 |
+
),
|
95 |
+
'like_notice' => array(
|
96 |
+
'default' => __('Thanks! You Liked This.',WP_ULIKE_SLUG),
|
97 |
+
'label' => __( 'Liked Notice Message', WP_ULIKE_SLUG)
|
98 |
+
),
|
99 |
+
'unlike_notice' => array(
|
100 |
+
'default' => __('Sorry! You unliked this.',WP_ULIKE_SLUG),
|
101 |
+
'label' => __( 'Unliked Notice Message', WP_ULIKE_SLUG)
|
102 |
+
)
|
103 |
+
)
|
104 |
+
);//end wp_ulike_general
|
105 |
+
break;
|
106 |
+
|
107 |
+
case 'posts':
|
108 |
+
$result = array(
|
109 |
+
'title' => '<i class="dashicons-before dashicons-admin-post"></i>' . ' ' . __( 'Posts',WP_ULIKE_SLUG),
|
110 |
+
'fields' => array(
|
111 |
+
'theme' => array(
|
112 |
+
'type' => 'visual-select',
|
113 |
+
'default' => 'wpulike-default',
|
114 |
+
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
115 |
+
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
116 |
+
),
|
117 |
+
'auto_display' => array(
|
118 |
+
'type' => 'checkbox',
|
119 |
+
'default' => 1,
|
120 |
+
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
121 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
122 |
+
),
|
123 |
+
'auto_display_position' => array(
|
124 |
+
'type' => 'radio',
|
125 |
+
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
126 |
+
'default' => 'bottom',
|
127 |
+
'options' => array(
|
128 |
+
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
129 |
+
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG),
|
130 |
+
'top_bottom' => __('Top and Bottom', WP_ULIKE_SLUG)
|
131 |
+
)
|
132 |
+
),
|
133 |
+
'auto_display_filter' => array(
|
134 |
+
'type' => 'multi',
|
135 |
+
'label' => __( 'Auto Display Filter',WP_ULIKE_SLUG ),
|
136 |
+
'options' => array(
|
137 |
+
'home' => __('Home', WP_ULIKE_SLUG),
|
138 |
+
'single' => __('Single Posts', WP_ULIKE_SLUG),
|
139 |
+
'page' => __('Pages', WP_ULIKE_SLUG),
|
140 |
+
'archive' => __('Archives', WP_ULIKE_SLUG),
|
141 |
+
'category' => __('Categories', WP_ULIKE_SLUG),
|
142 |
+
'search' => __('Search Results', WP_ULIKE_SLUG),
|
143 |
+
'tag' => __('Tags', WP_ULIKE_SLUG),
|
144 |
+
'author' => __('Author Page', WP_ULIKE_SLUG)
|
145 |
+
),
|
146 |
+
'description' => __('You can filter theses pages on auto display option.', WP_ULIKE_SLUG)
|
147 |
+
),
|
148 |
+
'google_rich_snippets' => array(
|
149 |
+
'type' => 'checkbox',
|
150 |
+
'default' => 0,
|
151 |
+
'label' => '*' . __('Google Rich Snippets', WP_ULIKE_SLUG),
|
152 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
153 |
+
'description' => __('Add rich snippet for ratings in form of schema.org', WP_ULIKE_SLUG)
|
154 |
+
),
|
155 |
+
'only_registered_users' => array(
|
156 |
+
'type' => 'checkbox',
|
157 |
+
'default' => 0,
|
158 |
+
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
159 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
160 |
+
'description' => __('<strong>Only</strong> registered users have permission to like posts.', WP_ULIKE_SLUG)
|
161 |
+
),
|
162 |
+
'logging_method' => array(
|
163 |
+
'type' => 'select',
|
164 |
+
'default' => 'by_username',
|
165 |
+
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
166 |
+
'options' => array(
|
167 |
+
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
168 |
+
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
169 |
+
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
170 |
+
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
171 |
+
)
|
172 |
+
),
|
173 |
+
'users_liked_box' => array(
|
174 |
+
'type' => 'checkbox',
|
175 |
+
'default' => 1,
|
176 |
+
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
177 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
178 |
+
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
179 |
+
),
|
180 |
+
'users_liked_box_avatar_size' => array(
|
181 |
+
'type' => 'number',
|
182 |
+
'default' => 32,
|
183 |
+
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
184 |
+
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
185 |
+
),
|
186 |
+
'number_of_users' => array(
|
187 |
+
'type' => 'number',
|
188 |
+
'default' => 10,
|
189 |
+
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
190 |
+
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
191 |
+
),
|
192 |
+
'users_liked_box_template' => array(
|
193 |
+
'type' => 'textarea',
|
194 |
+
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have LIKED this post:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
195 |
+
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
196 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
197 |
+
),
|
198 |
+
'delete_logs' => array(
|
199 |
+
'type' => 'action',
|
200 |
+
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
201 |
+
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
202 |
+
'action' => 'wp_ulike_delete_all_logs'
|
203 |
+
),
|
204 |
+
'delete_data' => array(
|
205 |
+
'type' => 'action',
|
206 |
+
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
207 |
+
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
208 |
+
'action' => 'wp_ulike_delete_all_data'
|
209 |
+
)
|
210 |
+
)
|
211 |
+
);//end wp_ulike_posts
|
212 |
+
break;
|
213 |
+
|
214 |
+
case 'comments':
|
215 |
+
$result = array(
|
216 |
+
'title' => '<i class="dashicons-before dashicons-admin-comments"></i>' . ' ' . __( 'Comments',WP_ULIKE_SLUG),
|
217 |
+
'fields' => array(
|
218 |
+
'theme' => array(
|
219 |
+
'type' => 'visual-select',
|
220 |
+
'default' => 'wpulike-heart',
|
221 |
+
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
222 |
+
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
223 |
+
),
|
224 |
+
'auto_display' => array(
|
225 |
+
'type' => 'checkbox',
|
226 |
+
'default' => 1,
|
227 |
+
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
228 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
229 |
+
),
|
230 |
+
'auto_display_position' => array(
|
231 |
+
'type' => 'radio',
|
232 |
+
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
233 |
+
'default' => 'bottom',
|
234 |
+
'options' => array(
|
235 |
+
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
236 |
+
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG),
|
237 |
+
'top_bottom' => __('Top and Bottom', WP_ULIKE_SLUG)
|
238 |
+
)
|
239 |
+
),
|
240 |
+
'only_registered_users' => array(
|
241 |
+
'type' => 'checkbox',
|
242 |
+
'default' => 0,
|
243 |
+
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
244 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
245 |
+
'description' => __('<strong>Only</strong> registered users have permission to like comments.', WP_ULIKE_SLUG)
|
246 |
+
),
|
247 |
+
'logging_method' => array(
|
248 |
+
'type' => 'select',
|
249 |
+
'default' => 'by_username',
|
250 |
+
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
251 |
+
'options' => array(
|
252 |
+
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
253 |
+
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
254 |
+
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
255 |
+
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
256 |
+
)
|
257 |
+
),
|
258 |
+
'users_liked_box' => array(
|
259 |
+
'type' => 'checkbox',
|
260 |
+
'default' => 1,
|
261 |
+
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
262 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
263 |
+
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
264 |
+
),
|
265 |
+
'users_liked_box_avatar_size' => array(
|
266 |
+
'type' => 'number',
|
267 |
+
'default' => 32,
|
268 |
+
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
269 |
+
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
270 |
+
),
|
271 |
+
'number_of_users' => array(
|
272 |
+
'type' => 'number',
|
273 |
+
'default' => 10,
|
274 |
+
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
275 |
+
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
276 |
+
),
|
277 |
+
'users_liked_box_template' => array(
|
278 |
+
'type' => 'textarea',
|
279 |
+
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have LIKED this comment:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
280 |
+
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
281 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
282 |
+
),
|
283 |
+
'delete_logs' => array(
|
284 |
+
'type' => 'action',
|
285 |
+
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
286 |
+
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
287 |
+
'action' => 'wp_ulike_delete_all_logs'
|
288 |
+
),
|
289 |
+
'delete_data' => array(
|
290 |
+
'type' => 'action',
|
291 |
+
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
292 |
+
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
293 |
+
'action' => 'wp_ulike_delete_all_data'
|
294 |
+
)
|
295 |
+
)
|
296 |
+
);//end wp_ulike_comments
|
297 |
+
break;
|
298 |
+
|
299 |
+
case 'buddypress':
|
300 |
+
$result = ! function_exists('is_buddypress') ? array() : array(
|
301 |
+
'title' => '<i class="dashicons-before dashicons-buddypress"></i>' . ' ' . __( 'BuddyPress',WP_ULIKE_SLUG),
|
302 |
+
'fields' => array(
|
303 |
+
'theme' => array(
|
304 |
+
'type' => 'visual-select',
|
305 |
+
'default' => 'wpulike-robeen',
|
306 |
+
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
307 |
+
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
308 |
+
),
|
309 |
+
'auto_display' => array(
|
310 |
+
'type' => 'checkbox',
|
311 |
+
'default' => 1,
|
312 |
+
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
313 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
314 |
+
),
|
315 |
+
'auto_display_position' => array(
|
316 |
+
'type' => 'radio',
|
317 |
+
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
318 |
+
'default' => 'meta',
|
319 |
+
'options' => array(
|
320 |
+
'content' => __('Activity Content', WP_ULIKE_SLUG),
|
321 |
+
'meta' => __('Activity Meta', WP_ULIKE_SLUG)
|
322 |
+
)
|
323 |
+
),
|
324 |
+
'activity_comment'=> array(
|
325 |
+
'type' => 'checkbox',
|
326 |
+
'default' => 1,
|
327 |
+
'label' => __('Activity Comment', WP_ULIKE_SLUG),
|
328 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
329 |
+
'description' => __('Add the possibility to like Buddypress comments in the activity stream', WP_ULIKE_SLUG)
|
330 |
+
),
|
331 |
+
'only_registered_users' => array(
|
332 |
+
'type' => 'checkbox',
|
333 |
+
'default' => 0,
|
334 |
+
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
335 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
336 |
+
'description' => __('<strong>Only</strong> registered users have permission to like activities.', WP_ULIKE_SLUG)
|
337 |
+
),
|
338 |
+
'logging_method' => array(
|
339 |
+
'type' => 'select',
|
340 |
+
'default' => 'by_cookie_ip',
|
341 |
+
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
342 |
+
'options' => array(
|
343 |
+
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
344 |
+
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
345 |
+
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
346 |
+
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
347 |
+
)
|
348 |
+
),
|
349 |
+
'users_liked_box' => array(
|
350 |
+
'type' => 'checkbox',
|
351 |
+
'default' => 1,
|
352 |
+
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
353 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
354 |
+
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
355 |
+
),
|
356 |
+
'users_liked_box_avatar_size' => array(
|
357 |
+
'type' => 'number',
|
358 |
+
'default' => 32,
|
359 |
+
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
360 |
+
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
361 |
+
),
|
362 |
+
'number_of_users' => array(
|
363 |
+
'type' => 'number',
|
364 |
+
'default' => 10,
|
365 |
+
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
366 |
+
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
367 |
+
),
|
368 |
+
'users_liked_box_template' => array(
|
369 |
+
'type' => 'textarea',
|
370 |
+
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have liked this activity:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
371 |
+
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
372 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
373 |
+
),
|
374 |
+
'new_likes_activity' => array(
|
375 |
+
'type' => 'checkbox',
|
376 |
+
'default' => 0,
|
377 |
+
'label' => __('BuddyPress Activity', WP_ULIKE_SLUG),
|
378 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
379 |
+
'description' => __('insert new likes in buddyPress activity page', WP_ULIKE_SLUG)
|
380 |
+
),
|
381 |
+
'custom_notification' => array(
|
382 |
+
'type' => 'checkbox',
|
383 |
+
'default' => 0,
|
384 |
+
'label' => __('BuddyPress Custom Notification', WP_ULIKE_SLUG),
|
385 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
386 |
+
'description' => __('Sends out notifications when you get a like from someone', WP_ULIKE_SLUG)
|
387 |
+
),
|
388 |
+
'bp_post_activity_add_header' => array(
|
389 |
+
'type' => 'textarea',
|
390 |
+
'default' => '<strong>%POST_LIKER%</strong> liked <a href="%POST_PERMALINK%" title="%POST_TITLE%">%POST_TITLE%</a>. (So far, This post has <span class="badge">%POST_COUNT%</span> likes)',
|
391 |
+
'label' => __('Post Activity Text', WP_ULIKE_SLUG),
|
392 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%POST_LIKER%</code> , <code>%POST_PERMALINK%</code> , <code>%POST_COUNT%</code> , <code>%POST_TITLE%</code>'
|
393 |
+
),
|
394 |
+
'bp_comment_activity_add_header' => array(
|
395 |
+
'type' => 'textarea',
|
396 |
+
'default' => '<strong>%COMMENT_LIKER%</strong> liked <strong>%COMMENT_AUTHOR%</strong> comment. (So far, %COMMENT_AUTHOR% has <span class="badge">%COMMENT_COUNT%</span> likes for this comment)',
|
397 |
+
'label' => __('Comment Activity Text', WP_ULIKE_SLUG),
|
398 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%COMMENT_LIKER%</code> , <code>%COMMENT_AUTHOR%</code> , <code>%COMMENT_COUNT%</code>, <code>%COMMENT_PERMALINK%</code>'
|
399 |
+
),
|
400 |
+
'delete_logs' => array(
|
401 |
+
'type' => 'action',
|
402 |
+
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
403 |
+
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
404 |
+
'action' => 'wp_ulike_delete_all_logs'
|
405 |
+
),
|
406 |
+
'delete_data' => array(
|
407 |
+
'type' => 'action',
|
408 |
+
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
409 |
+
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
410 |
+
'action' => 'wp_ulike_delete_all_data'
|
411 |
+
)
|
412 |
+
)
|
413 |
+
);//end wp_ulike_buddypress
|
414 |
+
break;
|
415 |
+
|
416 |
+
case 'bbpress':
|
417 |
+
$result = ! function_exists('is_bbpress') ? array() : array(
|
418 |
+
'title' => '<i class="dashicons-before dashicons-bbpress"></i>' . ' ' . __( 'bbPress',WP_ULIKE_SLUG),
|
419 |
+
'fields' => array(
|
420 |
+
'theme' => array(
|
421 |
+
'type' => 'visual-select',
|
422 |
+
'default' => 'wpulike-default',
|
423 |
+
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
424 |
+
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
425 |
+
),
|
426 |
+
'auto_display' => array(
|
427 |
+
'type' => 'checkbox',
|
428 |
+
'default' => 1,
|
429 |
+
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
430 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
431 |
+
),
|
432 |
+
'auto_display_position' => array(
|
433 |
+
'type' => 'radio',
|
434 |
+
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
435 |
+
'default' => 'bottom',
|
436 |
+
'options' => array(
|
437 |
+
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
438 |
+
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG)
|
439 |
+
)
|
440 |
+
),
|
441 |
+
'only_registered_users' => array(
|
442 |
+
'type' => 'checkbox',
|
443 |
+
'default' => 0,
|
444 |
+
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
445 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
446 |
+
'description' => __('<strong>Only</strong> registered users have permission to like Topics.', WP_ULIKE_SLUG)
|
447 |
+
),
|
448 |
+
'logging_method' => array(
|
449 |
+
'type' => 'select',
|
450 |
+
'default' => 'by_cookie_ip',
|
451 |
+
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
452 |
+
'options' => array(
|
453 |
+
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
454 |
+
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
455 |
+
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
456 |
+
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
457 |
+
)
|
458 |
+
),
|
459 |
+
'users_liked_box' => array(
|
460 |
+
'type' => 'checkbox',
|
461 |
+
'default' => 1,
|
462 |
+
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
463 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
464 |
+
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
465 |
+
),
|
466 |
+
'users_liked_box_avatar_size' => array(
|
467 |
+
'type' => 'number',
|
468 |
+
'default' => 32,
|
469 |
+
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
470 |
+
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
471 |
+
),
|
472 |
+
'number_of_users' => array(
|
473 |
+
'type' => 'number',
|
474 |
+
'default' => 10,
|
475 |
+
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
476 |
+
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
477 |
+
),
|
478 |
+
'users_liked_box_template' => array(
|
479 |
+
'type' => 'textarea',
|
480 |
+
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have liked this topic:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
481 |
+
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
482 |
+
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
483 |
+
),
|
484 |
+
'delete_logs' => array(
|
485 |
+
'type' => 'action',
|
486 |
+
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
487 |
+
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
488 |
+
'action' => 'wp_ulike_delete_all_logs'
|
489 |
+
),
|
490 |
+
'delete_data' => array(
|
491 |
+
'type' => 'action',
|
492 |
+
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
493 |
+
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
494 |
+
'action' => 'wp_ulike_delete_all_data'
|
495 |
+
)
|
496 |
+
)
|
497 |
+
);//end wp_ulike_buddypress
|
498 |
+
break;
|
499 |
+
|
500 |
+
case 'customizer':
|
501 |
+
$result = array(
|
502 |
+
'title' => '<i class="dashicons-before dashicons-art"></i>' . ' ' . __( 'Customize',WP_ULIKE_SLUG),
|
503 |
+
'fields' => array(
|
504 |
+
'custom_style' => array(
|
505 |
+
'type' => 'checkbox',
|
506 |
+
'default' => 0,
|
507 |
+
'label' => __('Custom Style', WP_ULIKE_SLUG),
|
508 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
509 |
+
'attributes' => array(
|
510 |
+
'class' => 'wp_ulike_custom_style_activation'
|
511 |
+
),
|
512 |
+
'description' => __('Active this option to see the custom style settings.', WP_ULIKE_SLUG)
|
513 |
+
),
|
514 |
+
'btn_bg' => array(
|
515 |
+
'type' => 'color',
|
516 |
+
'label' => __('Button style', WP_ULIKE_SLUG),
|
517 |
+
'description' => __('Background', WP_ULIKE_SLUG)
|
518 |
+
),
|
519 |
+
'btn_border' => array(
|
520 |
+
'type' => 'color',
|
521 |
+
'description' => __('Border Color', WP_ULIKE_SLUG)
|
522 |
+
),
|
523 |
+
'btn_color' => array(
|
524 |
+
'type' => 'color',
|
525 |
+
'description' => __('Text Color', WP_ULIKE_SLUG)
|
526 |
+
),
|
527 |
+
'counter_bg' => array(
|
528 |
+
'type' => 'color',
|
529 |
+
'label' => __( 'Counter Style', WP_ULIKE_SLUG),
|
530 |
+
'description' => __('Background', WP_ULIKE_SLUG)
|
531 |
+
),
|
532 |
+
'counter_border' => array(
|
533 |
+
'type' => 'color',
|
534 |
+
'description' => __('Border Color', WP_ULIKE_SLUG)
|
535 |
+
),
|
536 |
+
'counter_color' => array(
|
537 |
+
'type' => 'color',
|
538 |
+
'description' => __('Text Color', WP_ULIKE_SLUG)
|
539 |
+
),
|
540 |
+
'loading_animation' => array(
|
541 |
+
'type' => 'media',
|
542 |
+
'label' => __( 'Loading Animation', WP_ULIKE_SLUG) . ' (.GIF)',
|
543 |
+
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
544 |
+
),
|
545 |
+
'custom_css' => array(
|
546 |
+
'type' => 'textarea',
|
547 |
+
'label' => __('Custom CSS', WP_ULIKE_SLUG),
|
548 |
+
)
|
549 |
+
)
|
550 |
+
);//end wp_ulike_customize
|
551 |
+
break;
|
552 |
+
}
|
553 |
+
|
554 |
+
return $result;
|
555 |
+
}
|
admin/classes/tmp/settings.php
DELETED
@@ -1,548 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) exit;
|
5 |
-
|
6 |
-
/*******************************************************
|
7 |
-
General Settings
|
8 |
-
*******************************************************/
|
9 |
-
|
10 |
-
$wp_ulike_general = array(
|
11 |
-
'title' => '<i class="dashicons-before dashicons-admin-settings"></i>' . ' ' . __( 'General',WP_ULIKE_SLUG),
|
12 |
-
'fields' => array(
|
13 |
-
'button_type' => array(
|
14 |
-
'type' => 'visual-select',
|
15 |
-
'label' => __( 'Button Type', WP_ULIKE_SLUG),
|
16 |
-
'default' => 'image',
|
17 |
-
'options' => array(
|
18 |
-
'image' => array(
|
19 |
-
'name' => __('Icon', WP_ULIKE_SLUG),
|
20 |
-
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/icon.svg'
|
21 |
-
),
|
22 |
-
'text' => array(
|
23 |
-
'name' => __('Text', WP_ULIKE_SLUG),
|
24 |
-
'symbol' => WP_ULIKE_ASSETS_URL . '/img/svg/text.svg'
|
25 |
-
)
|
26 |
-
)
|
27 |
-
),
|
28 |
-
'button_text' => array(
|
29 |
-
'default' => __('Like',WP_ULIKE_SLUG),
|
30 |
-
'label' => __( 'Button Text', WP_ULIKE_SLUG) . ' (' . __('Like', WP_ULIKE_SLUG) .')',
|
31 |
-
),
|
32 |
-
'button_text_u' => array(
|
33 |
-
'default' => __('Unlike',WP_ULIKE_SLUG),
|
34 |
-
'label' => __( 'Button Text', WP_ULIKE_SLUG) . ' (' . __('Unlike', WP_ULIKE_SLUG) .')',
|
35 |
-
),
|
36 |
-
'button_url' => array(
|
37 |
-
'type' => 'media',
|
38 |
-
'label' => __( 'Button Icon', WP_ULIKE_SLUG) . ' (' . __('Like', WP_ULIKE_SLUG) .')',
|
39 |
-
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
40 |
-
),
|
41 |
-
'button_url_u' => array(
|
42 |
-
'type' => 'media',
|
43 |
-
'label' => __( 'Button Icon', WP_ULIKE_SLUG) . ' (' . __('Unlike', WP_ULIKE_SLUG) .')',
|
44 |
-
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
45 |
-
),
|
46 |
-
'permission_text' => array(
|
47 |
-
'default' => __('You have not permission to unlike',WP_ULIKE_SLUG),
|
48 |
-
'label' => __( 'Permission Text', WP_ULIKE_SLUG)
|
49 |
-
),
|
50 |
-
'login_type' => array(
|
51 |
-
'type' => 'radio',
|
52 |
-
'label' => __( 'Users Login Type',WP_ULIKE_SLUG),
|
53 |
-
'default' => 'alert',
|
54 |
-
'options' => array(
|
55 |
-
'alert' => __('Alert Box', WP_ULIKE_SLUG),
|
56 |
-
'button' => __('Like Button', WP_ULIKE_SLUG)
|
57 |
-
)
|
58 |
-
),
|
59 |
-
'login_text' => array(
|
60 |
-
'default' => __('You Should Login To Submit Your Like',WP_ULIKE_SLUG),
|
61 |
-
'label' => __( 'Users Login Text', WP_ULIKE_SLUG)
|
62 |
-
),
|
63 |
-
'format_number' => array(
|
64 |
-
'type' => 'checkbox',
|
65 |
-
'default' => 0,
|
66 |
-
'label' => __('Format Number', WP_ULIKE_SLUG),
|
67 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
68 |
-
'description' => __('Convert numbers of Likes with string (kilobyte) format.', WP_ULIKE_SLUG) . '<strong> (WHEN? likes>=1000)</strong>'
|
69 |
-
),
|
70 |
-
'notifications' => array(
|
71 |
-
'type' => 'checkbox',
|
72 |
-
'default' => 0,
|
73 |
-
'label' => __('Notifications', WP_ULIKE_SLUG),
|
74 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
75 |
-
'description' => __('Custom toast messages after each activity', WP_ULIKE_SLUG)
|
76 |
-
),
|
77 |
-
'like_notice' => array(
|
78 |
-
'default' => __('Thanks! You Liked This.',WP_ULIKE_SLUG),
|
79 |
-
'label' => __( 'Liked Notice Message', WP_ULIKE_SLUG)
|
80 |
-
),
|
81 |
-
'unlike_notice' => array(
|
82 |
-
'default' => __('Sorry! You unliked this.',WP_ULIKE_SLUG),
|
83 |
-
'label' => __( 'Unliked Notice Message', WP_ULIKE_SLUG)
|
84 |
-
)
|
85 |
-
)
|
86 |
-
);//end wp_ulike_general
|
87 |
-
|
88 |
-
/*******************************************************
|
89 |
-
Posts Settings
|
90 |
-
*******************************************************/
|
91 |
-
|
92 |
-
$wp_ulike_posts = array(
|
93 |
-
'title' => '<i class="dashicons-before dashicons-admin-post"></i>' . ' ' . __( 'Posts',WP_ULIKE_SLUG),
|
94 |
-
'fields' => array(
|
95 |
-
'theme' => array(
|
96 |
-
'type' => 'visual-select',
|
97 |
-
'default' => 'default',
|
98 |
-
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
99 |
-
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
100 |
-
),
|
101 |
-
'auto_display' => array(
|
102 |
-
'type' => 'checkbox',
|
103 |
-
'default' => 1,
|
104 |
-
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
105 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
106 |
-
),
|
107 |
-
'auto_display_position' => array(
|
108 |
-
'type' => 'radio',
|
109 |
-
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
110 |
-
'default' => 'bottom',
|
111 |
-
'options' => array(
|
112 |
-
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
113 |
-
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG),
|
114 |
-
'top_bottom' => __('Top and Bottom', WP_ULIKE_SLUG)
|
115 |
-
)
|
116 |
-
),
|
117 |
-
'auto_display_filter' => array(
|
118 |
-
'type' => 'multi',
|
119 |
-
'label' => __( 'Auto Display Filter',WP_ULIKE_SLUG ),
|
120 |
-
'options' => array(
|
121 |
-
'home' => __('Home', WP_ULIKE_SLUG),
|
122 |
-
'single' => __('Single Posts', WP_ULIKE_SLUG),
|
123 |
-
'page' => __('Pages', WP_ULIKE_SLUG),
|
124 |
-
'archive' => __('Archives', WP_ULIKE_SLUG),
|
125 |
-
'category' => __('Categories', WP_ULIKE_SLUG),
|
126 |
-
'search' => __('Search Results', WP_ULIKE_SLUG),
|
127 |
-
'tag' => __('Tags', WP_ULIKE_SLUG),
|
128 |
-
'author' => __('Author Page', WP_ULIKE_SLUG)
|
129 |
-
),
|
130 |
-
'description' => __('You can filter theses pages on auto display option.', WP_ULIKE_SLUG)
|
131 |
-
),
|
132 |
-
'google_rich_snippets' => array(
|
133 |
-
'type' => 'checkbox',
|
134 |
-
'default' => 0,
|
135 |
-
'label' => '*' . __('Google Rich Snippets', WP_ULIKE_SLUG),
|
136 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
137 |
-
'description' => __('Add rich snippet for ratings in form of schema.org', WP_ULIKE_SLUG)
|
138 |
-
),
|
139 |
-
'only_registered_users' => array(
|
140 |
-
'type' => 'checkbox',
|
141 |
-
'default' => 0,
|
142 |
-
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
143 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
144 |
-
'description' => __('<strong>Only</strong> registered users have permission to like posts.', WP_ULIKE_SLUG)
|
145 |
-
),
|
146 |
-
'logging_method' => array(
|
147 |
-
'type' => 'select',
|
148 |
-
'default' => 'by_username',
|
149 |
-
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
150 |
-
'options' => array(
|
151 |
-
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
152 |
-
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
153 |
-
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
154 |
-
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
155 |
-
)
|
156 |
-
),
|
157 |
-
'users_liked_box' => array(
|
158 |
-
'type' => 'checkbox',
|
159 |
-
'default' => 1,
|
160 |
-
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
161 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
162 |
-
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
163 |
-
),
|
164 |
-
'users_liked_box_avatar_size' => array(
|
165 |
-
'type' => 'number',
|
166 |
-
'default' => 32,
|
167 |
-
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
168 |
-
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
169 |
-
),
|
170 |
-
'number_of_users' => array(
|
171 |
-
'type' => 'number',
|
172 |
-
'default' => 10,
|
173 |
-
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
174 |
-
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
175 |
-
),
|
176 |
-
'users_liked_box_template' => array(
|
177 |
-
'type' => 'textarea',
|
178 |
-
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have LIKED this post:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
179 |
-
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
180 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
181 |
-
),
|
182 |
-
'delete_logs' => array(
|
183 |
-
'type' => 'action',
|
184 |
-
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
185 |
-
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
186 |
-
'action' => 'wp_ulike_delete_all_logs'
|
187 |
-
),
|
188 |
-
'delete_data' => array(
|
189 |
-
'type' => 'action',
|
190 |
-
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
191 |
-
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
192 |
-
'action' => 'wp_ulike_delete_all_data'
|
193 |
-
)
|
194 |
-
)
|
195 |
-
);//end wp_ulike_posts
|
196 |
-
|
197 |
-
/*******************************************************
|
198 |
-
Comments Settings
|
199 |
-
*******************************************************/
|
200 |
-
|
201 |
-
$wp_ulike_comments = array(
|
202 |
-
'title' => '<i class="dashicons-before dashicons-admin-comments"></i>' . ' ' . __( 'Comments',WP_ULIKE_SLUG),
|
203 |
-
'fields' => array(
|
204 |
-
'theme' => array(
|
205 |
-
'type' => 'visual-select',
|
206 |
-
'default' => 'default',
|
207 |
-
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
208 |
-
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
209 |
-
),
|
210 |
-
'auto_display' => array(
|
211 |
-
'type' => 'checkbox',
|
212 |
-
'default' => 1,
|
213 |
-
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
214 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
215 |
-
),
|
216 |
-
'auto_display_position' => array(
|
217 |
-
'type' => 'radio',
|
218 |
-
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
219 |
-
'default' => 'bottom',
|
220 |
-
'options' => array(
|
221 |
-
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
222 |
-
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG),
|
223 |
-
'top_bottom' => __('Top and Bottom', WP_ULIKE_SLUG)
|
224 |
-
)
|
225 |
-
),
|
226 |
-
'only_registered_users' => array(
|
227 |
-
'type' => 'checkbox',
|
228 |
-
'default' => 0,
|
229 |
-
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
230 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
231 |
-
'description' => __('<strong>Only</strong> registered users have permission to like comments.', WP_ULIKE_SLUG)
|
232 |
-
),
|
233 |
-
'logging_method' => array(
|
234 |
-
'type' => 'select',
|
235 |
-
'default' => 'by_username',
|
236 |
-
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
237 |
-
'options' => array(
|
238 |
-
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
239 |
-
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
240 |
-
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
241 |
-
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
242 |
-
)
|
243 |
-
),
|
244 |
-
'users_liked_box' => array(
|
245 |
-
'type' => 'checkbox',
|
246 |
-
'default' => 1,
|
247 |
-
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
248 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
249 |
-
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
250 |
-
),
|
251 |
-
'users_liked_box_avatar_size' => array(
|
252 |
-
'type' => 'number',
|
253 |
-
'default' => 32,
|
254 |
-
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
255 |
-
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
256 |
-
),
|
257 |
-
'number_of_users' => array(
|
258 |
-
'type' => 'number',
|
259 |
-
'default' => 10,
|
260 |
-
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
261 |
-
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
262 |
-
),
|
263 |
-
'users_liked_box_template' => array(
|
264 |
-
'type' => 'textarea',
|
265 |
-
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have LIKED this comment:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
266 |
-
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
267 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
268 |
-
),
|
269 |
-
'delete_logs' => array(
|
270 |
-
'type' => 'action',
|
271 |
-
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
272 |
-
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
273 |
-
'action' => 'wp_ulike_delete_all_logs'
|
274 |
-
),
|
275 |
-
'delete_data' => array(
|
276 |
-
'type' => 'action',
|
277 |
-
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
278 |
-
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
279 |
-
'action' => 'wp_ulike_delete_all_data'
|
280 |
-
)
|
281 |
-
)
|
282 |
-
);//end wp_ulike_comments
|
283 |
-
|
284 |
-
/*******************************************************
|
285 |
-
Customize Settings
|
286 |
-
*******************************************************/
|
287 |
-
|
288 |
-
$wp_ulike_customize = array(
|
289 |
-
'title' => '<i class="dashicons-before dashicons-art"></i>' . ' ' . __( 'Customize',WP_ULIKE_SLUG),
|
290 |
-
'fields' => array(
|
291 |
-
'custom_style' => array(
|
292 |
-
'type' => 'checkbox',
|
293 |
-
'default' => 0,
|
294 |
-
'label' => __('Custom Style', WP_ULIKE_SLUG),
|
295 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
296 |
-
'attributes' => array(
|
297 |
-
'class' => 'wp_ulike_custom_style_activation'
|
298 |
-
),
|
299 |
-
'description' => __('Active this option to see the custom style settings.', WP_ULIKE_SLUG)
|
300 |
-
),
|
301 |
-
'btn_bg' => array(
|
302 |
-
'type' => 'color',
|
303 |
-
'label' => __('Button style', WP_ULIKE_SLUG),
|
304 |
-
'description' => __('Background', WP_ULIKE_SLUG)
|
305 |
-
),
|
306 |
-
'btn_border' => array(
|
307 |
-
'type' => 'color',
|
308 |
-
'description' => __('Border Color', WP_ULIKE_SLUG)
|
309 |
-
),
|
310 |
-
'btn_color' => array(
|
311 |
-
'type' => 'color',
|
312 |
-
'description' => __('Text Color', WP_ULIKE_SLUG)
|
313 |
-
),
|
314 |
-
'counter_bg' => array(
|
315 |
-
'type' => 'color',
|
316 |
-
'label' => __( 'Counter Style', WP_ULIKE_SLUG),
|
317 |
-
'description' => __('Background', WP_ULIKE_SLUG)
|
318 |
-
),
|
319 |
-
'counter_border' => array(
|
320 |
-
'type' => 'color',
|
321 |
-
'description' => __('Border Color', WP_ULIKE_SLUG)
|
322 |
-
),
|
323 |
-
'counter_color' => array(
|
324 |
-
'type' => 'color',
|
325 |
-
'description' => __('Text Color', WP_ULIKE_SLUG)
|
326 |
-
),
|
327 |
-
'loading_animation' => array(
|
328 |
-
'type' => 'media',
|
329 |
-
'label' => __( 'Loading Animation', WP_ULIKE_SLUG) . ' (.GIF)',
|
330 |
-
'description' => __( 'Best size: 16x16',WP_ULIKE_SLUG)
|
331 |
-
),
|
332 |
-
'custom_css' => array(
|
333 |
-
'type' => 'textarea',
|
334 |
-
'label' => __('Custom CSS', WP_ULIKE_SLUG),
|
335 |
-
)
|
336 |
-
)
|
337 |
-
);//end wp_ulike_customize
|
338 |
-
|
339 |
-
/*******************************************************
|
340 |
-
BP Settings
|
341 |
-
*******************************************************/
|
342 |
-
|
343 |
-
$wp_ulike_buddypress = array();
|
344 |
-
if ( function_exists('is_buddypress') ) {
|
345 |
-
$wp_ulike_buddypress = array(
|
346 |
-
'title' => '<i class="dashicons-before dashicons-buddypress"></i>' . ' ' . __( 'BuddyPress',WP_ULIKE_SLUG),
|
347 |
-
'fields' => array(
|
348 |
-
'theme' => array(
|
349 |
-
'type' => 'visual-select',
|
350 |
-
'default' => 'default',
|
351 |
-
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
352 |
-
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
353 |
-
),
|
354 |
-
'auto_display' => array(
|
355 |
-
'type' => 'checkbox',
|
356 |
-
'default' => 0,
|
357 |
-
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
358 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
359 |
-
),
|
360 |
-
'auto_display_position' => array(
|
361 |
-
'type' => 'radio',
|
362 |
-
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
363 |
-
'default' => 'bottom',
|
364 |
-
'options' => array(
|
365 |
-
'content' => __('Activity Content', WP_ULIKE_SLUG),
|
366 |
-
'meta' => __('Activity Meta', WP_ULIKE_SLUG)
|
367 |
-
)
|
368 |
-
),
|
369 |
-
'activity_comment'=> array(
|
370 |
-
'type' => 'checkbox',
|
371 |
-
'default' => 1,
|
372 |
-
'label' => __('Activity Comment', WP_ULIKE_SLUG),
|
373 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
374 |
-
'description' => __('Add the possibility to like Buddypress comments in the activity stream', WP_ULIKE_SLUG)
|
375 |
-
),
|
376 |
-
'only_registered_users' => array(
|
377 |
-
'type' => 'checkbox',
|
378 |
-
'default' => 0,
|
379 |
-
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
380 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
381 |
-
'description' => __('<strong>Only</strong> registered users have permission to like activities.', WP_ULIKE_SLUG)
|
382 |
-
),
|
383 |
-
'logging_method' => array(
|
384 |
-
'type' => 'select',
|
385 |
-
'default' => 'by_cookie_ip',
|
386 |
-
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
387 |
-
'options' => array(
|
388 |
-
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
389 |
-
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
390 |
-
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
391 |
-
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
392 |
-
)
|
393 |
-
),
|
394 |
-
'users_liked_box' => array(
|
395 |
-
'type' => 'checkbox',
|
396 |
-
'default' => 1,
|
397 |
-
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
398 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
399 |
-
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
400 |
-
),
|
401 |
-
'users_liked_box_avatar_size' => array(
|
402 |
-
'type' => 'number',
|
403 |
-
'default' => 32,
|
404 |
-
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
405 |
-
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
406 |
-
),
|
407 |
-
'number_of_users' => array(
|
408 |
-
'type' => 'number',
|
409 |
-
'default' => 10,
|
410 |
-
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
411 |
-
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
412 |
-
),
|
413 |
-
'users_liked_box_template' => array(
|
414 |
-
'type' => 'textarea',
|
415 |
-
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have liked this activity:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
416 |
-
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
417 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
418 |
-
),
|
419 |
-
'new_likes_activity' => array(
|
420 |
-
'type' => 'checkbox',
|
421 |
-
'default' => 0,
|
422 |
-
'label' => __('BuddyPress Activity', WP_ULIKE_SLUG),
|
423 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
424 |
-
'description' => __('insert new likes in buddyPress activity page', WP_ULIKE_SLUG)
|
425 |
-
),
|
426 |
-
'custom_notification' => array(
|
427 |
-
'type' => 'checkbox',
|
428 |
-
'default' => 0,
|
429 |
-
'label' => __('BuddyPress Custom Notification', WP_ULIKE_SLUG),
|
430 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
431 |
-
'description' => __('Sends out notifications when you get a like from someone', WP_ULIKE_SLUG)
|
432 |
-
),
|
433 |
-
'bp_post_activity_add_header' => array(
|
434 |
-
'type' => 'textarea',
|
435 |
-
'default' => '<strong>%POST_LIKER%</strong> liked <a href="%POST_PERMALINK%" title="%POST_TITLE%">%POST_TITLE%</a>. (So far, This post has <span class="badge">%POST_COUNT%</span> likes)',
|
436 |
-
'label' => __('Post Activity Text', WP_ULIKE_SLUG),
|
437 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%POST_LIKER%</code> , <code>%POST_PERMALINK%</code> , <code>%POST_COUNT%</code> , <code>%POST_TITLE%</code>'
|
438 |
-
),
|
439 |
-
'bp_comment_activity_add_header' => array(
|
440 |
-
'type' => 'textarea',
|
441 |
-
'default' => '<strong>%COMMENT_LIKER%</strong> liked <strong>%COMMENT_AUTHOR%</strong> comment. (So far, %COMMENT_AUTHOR% has <span class="badge">%COMMENT_COUNT%</span> likes for this comment)',
|
442 |
-
'label' => __('Comment Activity Text', WP_ULIKE_SLUG),
|
443 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%COMMENT_LIKER%</code> , <code>%COMMENT_AUTHOR%</code> , <code>%COMMENT_COUNT%</code>, <code>%COMMENT_PERMALINK%</code>'
|
444 |
-
),
|
445 |
-
'delete_logs' => array(
|
446 |
-
'type' => 'action',
|
447 |
-
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
448 |
-
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
449 |
-
'action' => 'wp_ulike_delete_all_logs'
|
450 |
-
),
|
451 |
-
'delete_data' => array(
|
452 |
-
'type' => 'action',
|
453 |
-
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
454 |
-
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
455 |
-
'action' => 'wp_ulike_delete_all_data'
|
456 |
-
)
|
457 |
-
)
|
458 |
-
);//end wp_ulike_buddypress
|
459 |
-
}
|
460 |
-
|
461 |
-
/*******************************************************
|
462 |
-
bbPress Settings
|
463 |
-
*******************************************************/
|
464 |
-
|
465 |
-
$wp_ulike_bbpress = array();
|
466 |
-
if (function_exists('is_bbpress')){
|
467 |
-
$wp_ulike_bbpress = array(
|
468 |
-
'title' => '<i class="dashicons-before dashicons-bbpress"></i>' . ' ' . __( 'bbPress',WP_ULIKE_SLUG),
|
469 |
-
'fields' => array(
|
470 |
-
'theme' => array(
|
471 |
-
'type' => 'visual-select',
|
472 |
-
'default' => 'default',
|
473 |
-
'label' => __( 'Themes',WP_ULIKE_SLUG),
|
474 |
-
'options' => apply_filters( 'wp_ulike_add_templates_list', call_user_func('wp_ulike_generate_templates_list') )
|
475 |
-
),
|
476 |
-
'auto_display' => array(
|
477 |
-
'type' => 'checkbox',
|
478 |
-
'default' => 0,
|
479 |
-
'label' => __('Automatic display', WP_ULIKE_SLUG),
|
480 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG)
|
481 |
-
),
|
482 |
-
'auto_display_position' => array(
|
483 |
-
'type' => 'radio',
|
484 |
-
'label' => __( 'Auto Display Position',WP_ULIKE_SLUG),
|
485 |
-
'default' => 'bottom',
|
486 |
-
'options' => array(
|
487 |
-
'top' => __('Top of Content', WP_ULIKE_SLUG),
|
488 |
-
'bottom' => __('Bottom of Content', WP_ULIKE_SLUG)
|
489 |
-
)
|
490 |
-
),
|
491 |
-
'only_registered_users' => array(
|
492 |
-
'type' => 'checkbox',
|
493 |
-
'default' => 0,
|
494 |
-
'label' => __('Only registered Users', WP_ULIKE_SLUG),
|
495 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
496 |
-
'description' => __('<strong>Only</strong> registered users have permission to like Topics.', WP_ULIKE_SLUG)
|
497 |
-
),
|
498 |
-
'logging_method' => array(
|
499 |
-
'type' => 'select',
|
500 |
-
'default' => 'by_cookie_ip',
|
501 |
-
'label' => __( 'Logging Method',WP_ULIKE_SLUG),
|
502 |
-
'options' => array(
|
503 |
-
'do_not_log' => __('Do Not Log', WP_ULIKE_SLUG),
|
504 |
-
'by_cookie' => __('Logged By Cookie', WP_ULIKE_SLUG),
|
505 |
-
'by_ip' => __('Logged By IP', WP_ULIKE_SLUG),
|
506 |
-
'by_username' => __('Logged By Username', WP_ULIKE_SLUG)
|
507 |
-
)
|
508 |
-
),
|
509 |
-
'users_liked_box' => array(
|
510 |
-
'type' => 'checkbox',
|
511 |
-
'default' => 1,
|
512 |
-
'label' => __('Show Liked Users Box', WP_ULIKE_SLUG),
|
513 |
-
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
514 |
-
'description' => __('Active this option to show liked users avatars in the bottom of button like.', WP_ULIKE_SLUG)
|
515 |
-
),
|
516 |
-
'users_liked_box_avatar_size' => array(
|
517 |
-
'type' => 'number',
|
518 |
-
'default' => 32,
|
519 |
-
'label' => __( 'Size of Gravatars', WP_ULIKE_SLUG),
|
520 |
-
'description' => __('Size of Gravatars to return (max is 512)', WP_ULIKE_SLUG)
|
521 |
-
),
|
522 |
-
'number_of_users' => array(
|
523 |
-
'type' => 'number',
|
524 |
-
'default' => 10,
|
525 |
-
'label' => __( 'Number Of The Users', WP_ULIKE_SLUG),
|
526 |
-
'description' => __('The number of users to show in the users liked box', WP_ULIKE_SLUG)
|
527 |
-
),
|
528 |
-
'users_liked_box_template' => array(
|
529 |
-
'type' => 'textarea',
|
530 |
-
'default' => '<br /><p style="margin-top:5px"> '.__('Users who have liked this topic:',WP_ULIKE_SLUG).'</p> <ul class="tiles">%START_WHILE%<li><a class="user-tooltip" title="%USER_NAME%">%USER_AVATAR%</a></li>%END_WHILE%</ul>',
|
531 |
-
'label' => __('Users Like Box Template', WP_ULIKE_SLUG),
|
532 |
-
'description' => __('Allowed Variables:', WP_ULIKE_SLUG) . ' <code>%USER_AVATAR%</code> , <code>%BP_PROFILE_URL%</code> , <code>%UM_PROFILE_URL%</code> , <code>%USER_NAME%</code> , <code>%START_WHILE%</code> , <code>%END_WHILE%</code>'
|
533 |
-
),
|
534 |
-
'delete_logs' => array(
|
535 |
-
'type' => 'action',
|
536 |
-
'label' => __( 'Delete All Logs', WP_ULIKE_SLUG ),
|
537 |
-
'description' => __( 'You Are About To Delete All Likes Logs. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
538 |
-
'action' => 'wp_ulike_delete_all_logs'
|
539 |
-
),
|
540 |
-
'delete_data' => array(
|
541 |
-
'type' => 'action',
|
542 |
-
'label' => __( 'Delete All Data', WP_ULIKE_SLUG ),
|
543 |
-
'description' => __( 'You Are About To Delete All Likes Data. This Action Is Not Reversible.', WP_ULIKE_SLUG),
|
544 |
-
'action' => 'wp_ulike_delete_all_data'
|
545 |
-
)
|
546 |
-
)
|
547 |
-
);//end wp_ulike_buddypress
|
548 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/logs.php
CHANGED
@@ -65,20 +65,18 @@
|
|
65 |
function wp_ulike_logs_enqueue_script($hook){
|
66 |
$currentScreen = get_current_screen();
|
67 |
|
68 |
-
if ( $currentScreen->id
|
69 |
return;
|
70 |
}
|
71 |
|
72 |
// Register Script
|
73 |
-
|
74 |
'wp_ulike_stats',
|
75 |
WP_ULIKE_ADMIN_URL . '/classes/js/statistics.js',
|
76 |
array('jquery'),
|
77 |
null,
|
78 |
true
|
79 |
);
|
80 |
-
// Enqueue Script
|
81 |
-
wp_enqueue_script('wp_ulike_stats');
|
82 |
|
83 |
//localize script
|
84 |
wp_localize_script( 'wp_ulike_stats', 'wp_ulike_logs', array(
|
65 |
function wp_ulike_logs_enqueue_script($hook){
|
66 |
$currentScreen = get_current_screen();
|
67 |
|
68 |
+
if ( $currentScreen->id !== $hook || ! preg_match( '/logs/', $currentScreen->id ) ) {
|
69 |
return;
|
70 |
}
|
71 |
|
72 |
// Register Script
|
73 |
+
wp_enqueue_script(
|
74 |
'wp_ulike_stats',
|
75 |
WP_ULIKE_ADMIN_URL . '/classes/js/statistics.js',
|
76 |
array('jquery'),
|
77 |
null,
|
78 |
true
|
79 |
);
|
|
|
|
|
80 |
|
81 |
//localize script
|
82 |
wp_localize_script( 'wp_ulike_stats', 'wp_ulike_logs', array(
|
admin/stats.php
CHANGED
@@ -218,7 +218,7 @@
|
|
218 |
<div class="handlediv" title="Click to toggle"><br></div>
|
219 |
<h3 class="hndle"><span><i class="dashicons dashicons-admin-post"></i> '.__('Most Liked Posts',WP_ULIKE_SLUG) . '</span></h3>
|
220 |
<div class="inside"><div class="top-widget"><ol>';
|
221 |
-
$wp_ulike_stats->get_tops('top_posts');
|
222 |
echo '</ol></div></div></div>';
|
223 |
}
|
224 |
|
@@ -228,7 +228,7 @@
|
|
228 |
<div class="handlediv" title="Click to toggle"><br></div>
|
229 |
<h3 class="hndle"><span><i class="dashicons dashicons-admin-comments"></i> '.__('Most Liked Comments',WP_ULIKE_SLUG) . '</span></h3>
|
230 |
<div class="inside"><div class="top-widget"><ol>';
|
231 |
-
$wp_ulike_stats->get_tops('top_comments');
|
232 |
echo '</ol></div></div></div>';
|
233 |
}
|
234 |
|
@@ -238,7 +238,7 @@
|
|
238 |
<div class="handlediv" title="Click to toggle"><br></div>
|
239 |
<h3 class="hndle"><span><i class="dashicons dashicons-groups"></i> '.__('Most Liked Activities',WP_ULIKE_SLUG) . '</span></h3>
|
240 |
<div class="inside"><div class="top-widget"><ol>';
|
241 |
-
$wp_ulike_stats->get_tops('top_activities');
|
242 |
echo '</ol></div></div></div>';
|
243 |
}
|
244 |
|
@@ -248,7 +248,7 @@
|
|
248 |
<div class="handlediv" title="Click to toggle"><br></div>
|
249 |
<h3 class="hndle"><span><i class="dashicons dashicons-index-card"></i> '.__('Most Liked Topics',WP_ULIKE_SLUG) . '</span></h3>
|
250 |
<div class="inside"><div class="top-widget"><ol>';
|
251 |
-
$wp_ulike_stats->get_tops('top_topics');
|
252 |
echo '</ol></div></div></div>';
|
253 |
}
|
254 |
|
218 |
<div class="handlediv" title="Click to toggle"><br></div>
|
219 |
<h3 class="hndle"><span><i class="dashicons dashicons-admin-post"></i> '.__('Most Liked Posts',WP_ULIKE_SLUG) . '</span></h3>
|
220 |
<div class="inside"><div class="top-widget"><ol>';
|
221 |
+
echo $wp_ulike_stats->get_tops('top_posts');
|
222 |
echo '</ol></div></div></div>';
|
223 |
}
|
224 |
|
228 |
<div class="handlediv" title="Click to toggle"><br></div>
|
229 |
<h3 class="hndle"><span><i class="dashicons dashicons-admin-comments"></i> '.__('Most Liked Comments',WP_ULIKE_SLUG) . '</span></h3>
|
230 |
<div class="inside"><div class="top-widget"><ol>';
|
231 |
+
echo $wp_ulike_stats->get_tops('top_comments');
|
232 |
echo '</ol></div></div></div>';
|
233 |
}
|
234 |
|
238 |
<div class="handlediv" title="Click to toggle"><br></div>
|
239 |
<h3 class="hndle"><span><i class="dashicons dashicons-groups"></i> '.__('Most Liked Activities',WP_ULIKE_SLUG) . '</span></h3>
|
240 |
<div class="inside"><div class="top-widget"><ol>';
|
241 |
+
echo $wp_ulike_stats->get_tops('top_activities');
|
242 |
echo '</ol></div></div></div>';
|
243 |
}
|
244 |
|
248 |
<div class="handlediv" title="Click to toggle"><br></div>
|
249 |
<h3 class="hndle"><span><i class="dashicons dashicons-index-card"></i> '.__('Most Liked Topics',WP_ULIKE_SLUG) . '</span></h3>
|
250 |
<div class="inside"><div class="top-widget"><ol>';
|
251 |
+
echo $wp_ulike_stats->get_tops('top_topics');
|
252 |
echo '</ol></div></div></div>';
|
253 |
}
|
254 |
|
assets/css/wp-ulike.css
CHANGED
@@ -367,6 +367,9 @@
|
|
367 |
right: 8px;
|
368 |
font-weight: 600;
|
369 |
}
|
|
|
|
|
|
|
370 |
.wpulike-robeen svg {
|
371 |
cursor: pointer;
|
372 |
overflow: visible;
|
367 |
right: 8px;
|
368 |
font-weight: 600;
|
369 |
}
|
370 |
+
.wpulike-robeen label {
|
371 |
+
margin: 0;
|
372 |
+
}
|
373 |
.wpulike-robeen svg {
|
374 |
cursor: pointer;
|
375 |
overflow: visible;
|
assets/css/wp-ulike.min.css
CHANGED
@@ -3,4 +3,4 @@
|
|
3 |
* WP ULike 2.9
|
4 |
* @author Alimir [https://wordpress.org/plugins/wp-ulike/]
|
5 |
===============================================================
|
6 |
-
*/.wpulike{display:inline-block;position:relative;vertical-align:middle;overflow:hidden;line-height:normal;margin:0}.wpulike .wp_ulike_btn{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;vertical-align:middle;line-height:normal;padding:10px 20px;font-size:.75em;cursor:pointer;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,.5) inset;text-shadow:0 1px 0 rgba(255,255,255,.5);text-decoration:none;-webkit-transition:.25s;-moz-transition:.25s;-ms-transition:.25s;-o-transition:.25s;transition:.25s}.wpulike .wp_ulike_btn.wp_ulike_put_text{padding:2px 10px}.wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}.wpulike .wp_ulike_is_loading .wp_ulike_btn span{visibility:hidden}.wp_ulike_click_is_disabled{pointer-events:none;cursor:default}.wpulike-default .wp_ulike_btn:focus{outline:0;border-color:#999}.wpulike-default .wp_ulike_btn:hover{text-decoration:none;color:#eaeaea;text-shadow:0 1px 0 rgba(0,0,0,.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike-default .wp_ulike_btn:active{text-decoration:none;color:#eaeaea;text-shadow:0 1px 0 rgba(0,0,0,.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike-default .wp_ulike_btn.wp_ulike_put_image{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center}.wpulike-default .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike-default .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-default .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)}.wpulike-default .wp_ulike_hide_me{visibility:hidden}#buddypress .activity-content .wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}#buddypress .activity-content .wpulike-default .count-box{font-size:small;padding:.3em .5em}#buddypress .activity ul.item-list li{position:initial}#buddypress div.activity-meta .tiles li a{padding:0}#buddypress div.activity-meta .wpulike-default .wp_ulike_btn{padding:12px 10px!important}#buddypress div.activity-meta .wpulike-default .wp_ulike_btn.wp_ulike_put_text{padding:7px 10px!important}#bbpress-forums .bbp-reply-content .wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}#bbpress-forums .bbp-reply-content .wpulike-default .count-box{font-size:small;padding:.3em .5em}#bbpress-forums .wpulike-default .wp_ulike_btn{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:#505050;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,.5) inset;text-shadow:0 1px 0 rgba(255,255,255,.5);text-decoration:none}#bbpress-forums .wpulike-default .wp_ulike_btn.wp_ulike_put_image{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}#bbpress-forums .wpulike-default .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike-heart .wp_ulike_general_class{display:block;border:1px solid #e0e0e0;background:url(../img/bg/button-love.png) no-repeat center right;border-radius:5px;padding:3px}.wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}.wpulike-heart .wp_ulike_btn:hover{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .wp_ulike_btn:active{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}.wpulike-heart .count-box{border:none;vertical-align:middle;background-color:transparent;padding:.25em .5em;margin-left:0;color:#505050;font-size:.8em}.wpulike-heart .count-box:before{border:none;background:0 0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}@keyframes animateCircle{40%{transform:scale(10);opacity:1;fill:#dd4688}55%{transform:scale(11);opacity:1;fill:#d46abf}65%{transform:scale(12);opacity:1;fill:#cc8ef5}75%{transform:scale(13);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.5}85%{transform:scale(17);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.2}95%{transform:scale(18);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.1}100%{transform:scale(19);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:0}}@keyframes animateHeart{0%{transform:scale(.2)}40%{transform:scale(1.2)}100%{transform:scale(1)}}@keyframes animateHeartOut{0%{transform:scale(1.4)}100%{transform:scale(1)}}.wpulike-robeen .count-box{position:relative;bottom:18px;right:8px;font-weight:600}.wpulike-robeen svg{cursor:pointer;overflow:visible;width:50px}.wpulike-robeen svg .heart{transform-origin:center;animation:animateHeartOut .3s linear forwards}.wpulike-robeen svg .main-circ{transform-origin:29.5px 29.5px}.wpulike-robeen .wp_ulike_btn{display:none!important}.wpulike-robeen .wp_ulike_btn:checked+svg .heart{transform:scale(.2);fill:#e2264d;animation:animateHeart .3s linear forwards .25s}.wpulike-robeen .wp_ulike_btn:checked+svg .main-circ{transition:all 2s;animation:animateCircle .3s linear forwards;opacity:1}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1{opacity:1;transition:.1s all .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1 .oval1{transform:scale(0) translate(0,-30px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1 .oval2{transform:scale(0) translate(10px,-50px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2 .oval1{transform:scale(0) translate(30px,-15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2 .oval2{transform:scale(0) translate(60px,-15px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3 .oval1{transform:scale(0) translate(30px,0);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3 .oval2{transform:scale(0) translate(60px,10px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4 .oval1{transform:scale(0) translate(30px,15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4 .oval2{transform:scale(0) translate(40px,50px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5 .oval1{transform:scale(0) translate(-10px,20px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5 .oval2{transform:scale(0) translate(-60px,30px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6 .oval1{transform:scale(0) translate(-30px,0);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6 .oval2{transform:scale(0) translate(-60px,-5px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7 .oval1{transform:scale(0) translate(-30px,-15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7 .oval2{transform:scale(0) translate(-55px,-30px);transform-origin:0 0 0;transition:1.5s transform .3s}.tiles{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.tiles li{display:inline-table!important;cursor:pointer!important}.tiles li img{display:block!important;float:none!important}.tiles li.inactive{visibility:hidden!important;opacity:0!important}.most_liked_users{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.most_liked_users li{display:inline-table!important;cursor:pointer!important;margin:0 2px!important}.most_liked_users li img{display:block!important;float:none!important}.most_liked_users li.inactive{visibility:hidden!important;opacity:0!important}.commentlist .tiles .avatar{left:0!important}.wp_ulike_thumbnail{vertical-align:middle;margin:0 10px 0 0}.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}.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-message label{color:#fff}.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;line-height:1}.toast-close-button:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4}.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4}.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 #888;-webkit-box-shadow:0 0 12px #888;box-shadow:0 0 12px #888;color:#fff;opacity:.8}#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;cursor:pointer}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#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{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div{width:96%;margin-left:auto;margin-right:auto}#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}@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}}/*!>>>>>>>>>>>>>>>>>>>>>>> #RTL <<<<<<<<<<<<<<<<<<<<<<<<<<< */.rtl .wpulike-default .count-box{margin-right:.5em;margin-left:inherit}.rtl .wpulike-default .count-box:before{right:-.2125em;left:inherit;border-color:#898f9c #898f9c transparent transparent}.rtl .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-heart .wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-heart .count-box{margin-right:0;margin-left:inherit}.rtl #buddypress .activity-content .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl #buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl #buddypress .activity-content .wpulike-heart wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl #bbpress-forums .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl #bbpress-forums .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl #bbpress-forums .wpulike-heart wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-robeen .count-box{right:inherit;left:8px}.rtl .commentlist .tiles .avatar{left:inherit!important;right:0!important}.rtl .wp_ulike_thumbnail{margin:0 0 0 10px}.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}
|
3 |
* WP ULike 2.9
|
4 |
* @author Alimir [https://wordpress.org/plugins/wp-ulike/]
|
5 |
===============================================================
|
6 |
+
*/.wpulike{display:inline-block;position:relative;vertical-align:middle;overflow:hidden;line-height:normal;margin:0}.wpulike .wp_ulike_btn{margin:0;display:inline-block;border-radius:.25em;border:1px solid #d3d3d3;vertical-align:middle;line-height:normal;padding:10px 20px;font-size:.75em;cursor:pointer;color:#777;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,.5) inset;text-shadow:0 1px 0 rgba(255,255,255,.5);text-decoration:none;-webkit-transition:.25s;-moz-transition:.25s;-ms-transition:.25s;-o-transition:.25s;transition:.25s}.wpulike .wp_ulike_btn.wp_ulike_put_text{padding:2px 10px}.wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}.wpulike .wp_ulike_is_loading .wp_ulike_btn span{visibility:hidden}.wp_ulike_click_is_disabled{pointer-events:none;cursor:default}.wpulike-default .wp_ulike_btn:focus{outline:0;border-color:#999}.wpulike-default .wp_ulike_btn:hover{text-decoration:none;color:#eaeaea;text-shadow:0 1px 0 rgba(0,0,0,.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike-default .wp_ulike_btn:active{text-decoration:none;color:#eaeaea;text-shadow:0 1px 0 rgba(0,0,0,.3);background-color:#bdc3c7;border-color:#95a5a6}.wpulike-default .wp_ulike_btn.wp_ulike_put_image{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center}.wpulike-default .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike-default .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-default .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)}.wpulike-default .wp_ulike_hide_me{visibility:hidden}#buddypress .activity-content .wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}#buddypress .activity-content .wpulike-default .count-box{font-size:small;padding:.3em .5em}#buddypress .activity ul.item-list li{position:initial}#buddypress div.activity-meta .tiles li a{padding:0}#buddypress div.activity-meta .wpulike-default .wp_ulike_btn{padding:12px 10px!important}#buddypress div.activity-meta .wpulike-default .wp_ulike_btn.wp_ulike_put_text{padding:7px 10px!important}#bbpress-forums .bbp-reply-content .wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(../img/icons/loading.gif)!important;background-repeat:no-repeat;background-position:center center}#bbpress-forums .bbp-reply-content .wpulike-default .count-box{font-size:small;padding:.3em .5em}#bbpress-forums .wpulike-default .wp_ulike_btn{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:#505050;background:#dfdfdf;box-shadow:1px 1px 0 rgba(255,255,255,.5) inset;text-shadow:0 1px 0 rgba(255,255,255,.5);text-decoration:none}#bbpress-forums .wpulike-default .wp_ulike_btn.wp_ulike_put_image{background-image:url(../img/icons/add.png);background-repeat:no-repeat;background-position:center center;padding:1em 1.8em}#bbpress-forums .wpulike-default .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove.png)}.wpulike-heart .wp_ulike_general_class{display:block;border:1px solid #e0e0e0;background:url(../img/bg/button-love.png) no-repeat center right;border-radius:5px;padding:3px}.wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}.wpulike-heart .wp_ulike_btn:hover{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .wp_ulike_btn:active{background-color:transparent;box-shadow:none;color:#ef0000}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}.wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}.wpulike-heart .count-box{border:none;vertical-align:middle;background-color:transparent;padding:.25em .5em;margin-left:0;color:#505050;font-size:.8em}.wpulike-heart .count-box:before{border:none;background:0 0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}#buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn{border:none;padding:0 10px;font-weight:600;box-shadow:none;background:0 0;border-right:1px solid #d3d3d3;border-radius:0}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border:none;box-shadow:none;background-image:url(../img/icons/add-heart-16.png);background-repeat:no-repeat!important;background-position:center center!important;padding:11px 16px!important;border-right:1px solid #e0e0e0}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image:hover{background-image:url(../img/icons/add-heart-hover.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike{background-image:url(../img/icons/remove-heart-16.png)}#bbpress-forums .bbp-reply-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image.image-unlike:hover{background-image:url(../img/icons/remove-heart-hover.png)}@keyframes animateCircle{40%{transform:scale(10);opacity:1;fill:#dd4688}55%{transform:scale(11);opacity:1;fill:#d46abf}65%{transform:scale(12);opacity:1;fill:#cc8ef5}75%{transform:scale(13);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.5}85%{transform:scale(17);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.2}95%{transform:scale(18);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:.1}100%{transform:scale(19);opacity:1;fill:transparent;stroke:#cc8ef5;stroke-width:0}}@keyframes animateHeart{0%{transform:scale(.2)}40%{transform:scale(1.2)}100%{transform:scale(1)}}@keyframes animateHeartOut{0%{transform:scale(1.4)}100%{transform:scale(1)}}.wpulike-robeen .count-box{position:relative;bottom:18px;right:8px;font-weight:600}.wpulike-robeen label{margin:0}.wpulike-robeen svg{cursor:pointer;overflow:visible;width:50px}.wpulike-robeen svg .heart{transform-origin:center;animation:animateHeartOut .3s linear forwards}.wpulike-robeen svg .main-circ{transform-origin:29.5px 29.5px}.wpulike-robeen .wp_ulike_btn{display:none!important}.wpulike-robeen .wp_ulike_btn:checked+svg .heart{transform:scale(.2);fill:#e2264d;animation:animateHeart .3s linear forwards .25s}.wpulike-robeen .wp_ulike_btn:checked+svg .main-circ{transition:all 2s;animation:animateCircle .3s linear forwards;opacity:1}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1{opacity:1;transition:.1s all .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1 .oval1{transform:scale(0) translate(0,-30px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp1 .oval2{transform:scale(0) translate(10px,-50px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2 .oval1{transform:scale(0) translate(30px,-15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp2 .oval2{transform:scale(0) translate(60px,-15px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3 .oval1{transform:scale(0) translate(30px,0);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp3 .oval2{transform:scale(0) translate(60px,10px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4 .oval1{transform:scale(0) translate(30px,15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp4 .oval2{transform:scale(0) translate(40px,50px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5 .oval1{transform:scale(0) translate(-10px,20px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp5 .oval2{transform:scale(0) translate(-60px,30px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6 .oval1{transform:scale(0) translate(-30px,0);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp6 .oval2{transform:scale(0) translate(-60px,-5px);transform-origin:0 0 0;transition:1.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7{opacity:1;transition:.1s all .3s;opacity:1;transition:.1s opacity .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7 .oval1{transform:scale(0) translate(-30px,-15px);transform-origin:0 0 0;transition:.5s transform .3s}.wpulike-robeen .wp_ulike_btn:checked+svg .grp7 .oval2{transform:scale(0) translate(-55px,-30px);transform-origin:0 0 0;transition:1.5s transform .3s}.tiles{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.tiles li{display:inline-table!important;cursor:pointer!important}.tiles li img{display:block!important;float:none!important}.tiles li.inactive{visibility:hidden!important;opacity:0!important}.most_liked_users{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.most_liked_users li{display:inline-table!important;cursor:pointer!important;margin:0 2px!important}.most_liked_users li img{display:block!important;float:none!important}.most_liked_users li.inactive{visibility:hidden!important;opacity:0!important}.commentlist .tiles .avatar{left:0!important}.wp_ulike_thumbnail{vertical-align:middle;margin:0 10px 0 0}.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}.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-message label{color:#fff}.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;line-height:1}.toast-close-button:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4}.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4}.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 #888;-webkit-box-shadow:0 0 12px #888;box-shadow:0 0 12px #888;color:#fff;opacity:.8}#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;cursor:pointer}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#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{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div{width:96%;margin-left:auto;margin-right:auto}#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}@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}}/*!>>>>>>>>>>>>>>>>>>>>>>> #RTL <<<<<<<<<<<<<<<<<<<<<<<<<<< */.rtl .wpulike-default .count-box{margin-right:.5em;margin-left:inherit}.rtl .wpulike-default .count-box:before{right:-.2125em;left:inherit;border-color:#898f9c #898f9c transparent transparent}.rtl .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-heart .wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-heart .count-box{margin-right:0;margin-left:inherit}.rtl #buddypress .activity-content .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl #buddypress .activity-content .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl #buddypress .activity-content .wpulike-heart wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl #bbpress-forums .wpulike-heart .wp_ulike_btn{border-left:1px solid #d3d3d3;border-right:0}.rtl #bbpress-forums .wpulike-heart .wp_ulike_btn.wp_ulike_put_image{border-left:1px solid #e0e0e0;border-right:0}.rtl #bbpress-forums .wpulike-heart wp_ulike_is_loading .wp_ulike_btn{border-left:1px solid #e0e0e0;border-right:0}.rtl .wpulike-robeen .count-box{right:inherit;left:8px}.rtl .commentlist .tiles .avatar{left:inherit!important;right:0!important}.rtl .wp_ulike_thumbnail{margin:0 0 0 10px}.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}
|
{admin/classes → assets}/img/no-thumbnail.png
RENAMED
File without changes
|
assets/js/wp-ulike.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! WP ULike -
|
2 |
* http://wp-ulike.alimir.ir/
|
3 |
* Alimir 2017;
|
4 |
*/
|
@@ -483,15 +483,16 @@
|
|
483 |
|
484 |
// Create the defaults once
|
485 |
var pluginName = "WordpressUlike",
|
486 |
-
$window
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
|
|
495 |
},
|
496 |
attributesMap = {
|
497 |
'ulike-id' : 'ID',
|
@@ -544,10 +545,12 @@
|
|
544 |
type: this.settings.type
|
545 |
},
|
546 |
beforeSend:function(){
|
|
|
547 |
this.generalElement.addClass( 'wp_ulike_is_loading' );
|
548 |
}.bind(this),
|
549 |
success: function( response ){
|
550 |
this._update( response );
|
|
|
551 |
}.bind(this)
|
552 |
});
|
553 |
},
|
@@ -638,15 +641,20 @@
|
|
638 |
|
639 |
|
640 |
/* Run :) */
|
641 |
-
(function(
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
$(this).bind('DOMNodeInserted', function(e) {
|
647 |
$(".wpulike").WordpressUlike();
|
648 |
-
});
|
649 |
-
});
|
|
|
|
|
|
|
|
|
650 |
// removes "empty" paragraphs
|
651 |
$('p').filter(function () { return this.innerHTML == "" }).remove();
|
|
|
652 |
})( jQuery );
|
1 |
+
/*! WP ULike - v3.0
|
2 |
* http://wp-ulike.alimir.ir/
|
3 |
* Alimir 2017;
|
4 |
*/
|
483 |
|
484 |
// Create the defaults once
|
485 |
var pluginName = "WordpressUlike",
|
486 |
+
$window = $(window),
|
487 |
+
$document = $(document),
|
488 |
+
defaults = {
|
489 |
+
ID : 0, /* Auto ID value by element type */
|
490 |
+
nonce : 0, /* Get nonce token */
|
491 |
+
type : '', /* Values : likeThis (Posts),likeThisComment, likeThisActivity, likeThisTopic */
|
492 |
+
likeStatus : 0, /* Values : 0 (Is not logged-in), 1 (Is not liked), 2 (Is liked), 3 (Is unliked), 4 (Already liked) */
|
493 |
+
counterSelector: wp_ulike_params.counter_selector, /* You can change this value by add filter on 'wp_ulike_counter_selector' */
|
494 |
+
generalSelector: wp_ulike_params.general_selector, /* You can change this value by add filter on 'wp_ulike_general_selector' */
|
495 |
+
buttonSelector : wp_ulike_params.button_selector /* You can change this value by add filter on 'wp_ulike_button_selector' */
|
496 |
},
|
497 |
attributesMap = {
|
498 |
'ulike-id' : 'ID',
|
545 |
type: this.settings.type
|
546 |
},
|
547 |
beforeSend:function(){
|
548 |
+
$document.trigger('WordpressUlikeLoading');
|
549 |
this.generalElement.addClass( 'wp_ulike_is_loading' );
|
550 |
}.bind(this),
|
551 |
success: function( response ){
|
552 |
this._update( response );
|
553 |
+
$document.trigger('WordpressUlikeUpdated');
|
554 |
}.bind(this)
|
555 |
});
|
556 |
},
|
641 |
|
642 |
|
643 |
/* Run :) */
|
644 |
+
;(function($){
|
645 |
+
|
646 |
+
// on document ready
|
647 |
+
$(function(){
|
648 |
+
// Upgrading 'WordpressUlike' datasheets when new DOM has been inserted
|
649 |
$(this).bind('DOMNodeInserted', function(e) {
|
650 |
$(".wpulike").WordpressUlike();
|
651 |
+
});
|
652 |
+
});
|
653 |
+
|
654 |
+
// init WordpressUlike
|
655 |
+
$(".wpulike").WordpressUlike();
|
656 |
+
|
657 |
// removes "empty" paragraphs
|
658 |
$('p').filter(function () { return this.innerHTML == "" }).remove();
|
659 |
+
|
660 |
})( jQuery );
|
assets/js/wp-ulike.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){e(["jquery"],function(e){return function(){function t(t,s){return t||(t=l()),(c=e("#"+t.containerId)).length?c:(s&&(c=n(t)),c)}function s(t){for(var s=c.children(),n=s.length-1;n>=0;n--)i(e(s[n]),t)}function i(t,s,i){var n=!(!i||!i.force)&&i.force;return!(!t||!n&&0!==e(":focus",t).length)&&(t[s.hideMethod]({duration:s.hideDuration,easing:s.hideEasing,complete:function(){u(t)}}),!0)}function n(t){return(c=e("<div/>").attr("id",t.containerId).addClass(t.positionClass)).appendTo(e(t.target)),c}function o(){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 a(e){d&&d(e)}function r(s){function i(e){return null==e&&(e=""),e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function n(){var e="";switch(s.iconClass){case"toast-success":case"toast-info":e="polite";break;default:e="assertive"}x.attr("aria-live",e)}function o(){s.iconClass&&x.addClass(b.toastClass).addClass(E)}function r(){b.newestOnTop?c.prepend(x):c.append(x)}function d(){if(s.title){var e=s.title;b.escapeHtml&&(e=i(s.title)),O.append(e).addClass(b.titleClass),x.append(O)}}function
|
1 |
+
!function(e){e(["jquery"],function(e){return function(){function t(t,s){return t||(t=l()),(c=e("#"+t.containerId)).length?c:(s&&(c=n(t)),c)}function s(t){for(var s=c.children(),n=s.length-1;n>=0;n--)i(e(s[n]),t)}function i(t,s,i){var n=!(!i||!i.force)&&i.force;return!(!t||!n&&0!==e(":focus",t).length)&&(t[s.hideMethod]({duration:s.hideDuration,easing:s.hideEasing,complete:function(){u(t)}}),!0)}function n(t){return(c=e("<div/>").attr("id",t.containerId).addClass(t.positionClass)).appendTo(e(t.target)),c}function o(){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 a(e){d&&d(e)}function r(s){function i(e){return null==e&&(e=""),e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function n(){var e="";switch(s.iconClass){case"toast-success":case"toast-info":e="polite";break;default:e="assertive"}x.attr("aria-live",e)}function o(){s.iconClass&&x.addClass(b.toastClass).addClass(E)}function r(){b.newestOnTop?c.prepend(x):c.append(x)}function d(){if(s.title){var e=s.title;b.escapeHtml&&(e=i(s.title)),O.append(e).addClass(b.titleClass),x.append(O)}}function g(){if(s.message){var e=s.message;b.escapeHtml&&(e=i(s.message)),y.append(e).addClass(b.messageClass),x.append(y)}}function m(){b.closeButton&&(H.addClass(b.closeClass).attr("role","button"),x.prepend(H))}function f(){b.progressBar&&(D.addClass(b.progressClass),x.prepend(D))}function _(){b.rtl&&x.addClass("rtl")}function w(t){var s=t&&!1!==b.closeMethod?b.closeMethod:b.hideMethod,i=t&&!1!==b.closeDuration?b.closeDuration:b.hideDuration,n=t&&!1!==b.closeEasing?b.closeEasing:b.hideEasing;if(!e(":focus",x).length||t)return clearTimeout(S.intervalId),x[s]({duration:i,easing:n,complete:function(){u(x),clearTimeout(T),b.onHidden&&"hidden"!==I.state&&b.onHidden(),I.state="hidden",I.endTime=new Date,a(I)}})}function k(){(b.timeOut>0||b.extendedTimeOut>0)&&(T=setTimeout(w,b.extendedTimeOut),S.maxHideTime=parseFloat(b.extendedTimeOut),S.hideEta=(new Date).getTime()+S.maxHideTime)}function v(){clearTimeout(T),S.hideEta=0,x.stop(!0,!0)[b.showMethod]({duration:b.showDuration,easing:b.showEasing})}function C(){var e=(S.hideEta-(new Date).getTime())/S.maxHideTime*100;D.width(e+"%")}var b=l(),E=s.iconClass||b.iconClass;if(void 0!==s.optionsOverride&&(b=e.extend(b,s.optionsOverride),E=s.optionsOverride.iconClass||E),!function(e,t){if(e.preventDuplicates){if(t.message===p)return!0;p=t.message}return!1}(b,s)){h++,c=t(b,!0);var T=null,x=e("<div/>"),O=e("<div/>"),y=e("<div/>"),D=e("<div/>"),H=e(b.closeHtml),S={intervalId:null,hideEta:null,maxHideTime:null},I={toastId:h,state:"visible",startTime:new Date,options:b,map:s};return o(),d(),g(),m(),f(),_(),r(),n(),x.hide(),x[b.showMethod]({duration:b.showDuration,easing:b.showEasing,complete:b.onShown}),b.timeOut>0&&(T=setTimeout(w,b.timeOut),S.maxHideTime=parseFloat(b.timeOut),S.hideEta=(new Date).getTime()+S.maxHideTime,b.progressBar&&(S.intervalId=setInterval(C,10))),b.closeOnHover&&x.hover(v,k),!b.onclick&&b.tapToDismiss&&x.click(w),b.closeButton&&H&&H.click(function(e){e.stopPropagation?e.stopPropagation():void 0!==e.cancelBubble&&!0!==e.cancelBubble&&(e.cancelBubble=!0),b.onCloseClick&&b.onCloseClick(e),w(!0)}),b.onclick&&x.click(function(e){b.onclick(e),w()}),a(I),b.debug&&console&&console.log(I),x}}function l(){return e.extend({},o(),m.options)}function u(e){c||(c=t()),e.is(":visible")||(e.remove(),e=null,0===c.children().length&&(c.remove(),p=void 0))}var c,d,p,h=0,g={error:"error",info:"info",success:"success",warning:"warning"},m={clear:function(e,n){var o=l();c||t(o),i(e,o,n)||s(o)},remove:function(s){var i=l();c||t(i),s&&0===e(":focus",s).length?u(s):c.children().length&&c.remove()},error:function(e,t,s){return r({type:g.error,iconClass:l().iconClasses.error,message:e,optionsOverride:s,title:t})},getContainer:t,info:function(e,t,s){return r({type:g.info,iconClass:l().iconClasses.info,message:e,optionsOverride:s,title:t})},options:{},subscribe:function(e){d=e},success:function(e,t,s){return r({type:g.success,iconClass:l().iconClasses.success,message:e,optionsOverride:s,title:t})},version:"2.1.3",warning:function(e,t,s){return r({type:g.warning,iconClass:l().iconClasses.warning,message:e,optionsOverride:s,title:t})}};return m}()})}("function"==typeof define&&define.amd?define:function(e,t){"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):window.toastr=t(window.jQuery)}),function(e,t,s,i){"use strict";function n(t,s){this.element=t,this.$element=e(t),this.settings=e.extend({},r,s),this._defaults=r,this._name=o,this.buttonElement=this.$element.find(this.settings.buttonSelector),this.generalElement=this.$element.find(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector);for(var n in l){var a=this.buttonElement.data(n);a!==i&&(this.settings[l[n]]=a)}this.init()}var o="WordpressUlike",a=(e(t),e(s)),r={ID:0,nonce:0,type:"",likeStatus:0,counterSelector:wp_ulike_params.counter_selector,generalSelector:wp_ulike_params.general_selector,buttonSelector:wp_ulike_params.button_selector},l={"ulike-id":"ID","ulike-nonce":"nonce","ulike-type":"type","ulike-status":"likeStatus"};e.extend(n.prototype,{init:function(){this.buttonElement.click(this._ajaxify.bind(this))},_ajaxify:function(){e.ajax({type:"POST",cache:!1,dataType:"json",url:wp_ulike_params.ajax_url,data:{action:"wp_ulike_process",id:this.settings.ID,nonce:this.settings.nonce,status:this.settings.likeStatus,type:this.settings.type},beforeSend:function(){a.trigger("WordpressUlikeLoading"),this.generalElement.addClass("wp_ulike_is_loading")}.bind(this),success:function(e){this._update(e),a.trigger("WordpressUlikeUpdated")}.bind(this)})},_update:function(e){switch(this.generalElement.removeClass("wp_ulike_is_loading"),this.settings.likeStatus){case 1:this.buttonElement.attr("data-ulike-status",4),this.settings.likeStatus=4,this.generalElement.addClass("wp_ulike_is_liked").removeClass("wp_ulike_is_not_liked"),this.generalElement.children().first().addClass("wp_ulike_click_is_disabled"),this.counterElement.text(e.data),this._actions("success",e.message,e.btnText,4);break;case 2:this.buttonElement.attr("data-ulike-status",3),this.settings.likeStatus=3,this.generalElement.addClass("wp_ulike_is_unliked").removeClass("wp_ulike_is_liked"),this.counterElement.text(e.data),this._actions("error",e.message,e.btnText,3);break;case 3:this.buttonElement.attr("data-ulike-status",2),this.settings.likeStatus=2,this.generalElement.addClass("wp_ulike_is_liked").removeClass("wp_ulike_is_unliked"),this.counterElement.text(e.data),this._actions("success",e.message,e.btnText,2);break;case 4:this._actions("info",e.message,e.btnText,4),this.generalElement.children().first().addClass("wp_ulike_click_is_disabled");break;default:this._actions("warning",e.message,e.btnText,0)}},_actions:function(e,t,s,i){"image"===wp_ulike_params.button_type?3!==i&&2!==i||this.buttonElement.toggleClass("image-unlike"):"text"===wp_ulike_params.button_type&&this.buttonElement.find("span").html(s),"1"===wp_ulike_params.notifications&&(toastr.options={closeButton:!1,debug:!1,newestOnTop:!1,progressBar:!1,positionClass:"toast-bottom-right",preventDuplicates:!1,showDuration:300,hideDuration:2e3,timeOut:5e3,extendedTimeOut:1e3,showEasing:"swing",hideEasing:"linear",showMethod:"fadeIn",hideMethod:"fadeOut"},toastr[e](t))}}),e.fn[o]=function(t){return this.each(function(){e.data(this,"plugin_"+o)||e.data(this,"plugin_"+o,new n(this,t))})}}(jQuery,window,document),function(e){e(function(){e(this).bind("DOMNodeInserted",function(t){e(".wpulike").WordpressUlike()})}),e(".wpulike").WordpressUlike(),e("p").filter(function(){return""==this.innerHTML}).remove()}(jQuery);
|
inc/classes/class-ulike.php
CHANGED
@@ -18,7 +18,40 @@ if ( ! class_exists( 'wp_ulike' ) ) {
|
|
18 |
{
|
19 |
global $wpdb;
|
20 |
$this->wpdb = $wpdb;
|
|
|
|
|
|
|
21 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
/**
|
24 |
* Select the logging type
|
@@ -381,6 +414,7 @@ if ( ! class_exists( 'wp_ulike' ) ) {
|
|
381 |
* @since 2.0
|
382 |
* @updated 2.2
|
383 |
* @updated 2.9
|
|
|
384 |
* @return Void
|
385 |
*/
|
386 |
public function update_meta_data($id, $key, $data){
|
@@ -389,16 +423,23 @@ if ( ! class_exists( 'wp_ulike' ) ) {
|
|
389 |
// Update Values
|
390 |
switch ( $key ) {
|
391 |
case '_liked' :
|
|
|
|
|
|
|
|
|
392 |
case '_topicliked' :
|
393 |
update_post_meta( $id, $key, $data );
|
394 |
update_postmeta_cache( $id );
|
|
|
395 |
break;
|
396 |
case '_commentliked' :
|
397 |
update_comment_meta( $id, $key, $data );
|
398 |
update_meta_cache( 'comment', $id );
|
|
|
399 |
break;
|
400 |
case '_activityliked':
|
401 |
bp_activity_update_meta( $id, $key, $data );
|
|
|
402 |
break;
|
403 |
default:
|
404 |
return 0;
|
18 |
{
|
19 |
global $wpdb;
|
20 |
$this->wpdb = $wpdb;
|
21 |
+
|
22 |
+
// Enqueue Scripts
|
23 |
+
add_action( 'wp_enqueue_scripts', array( $this, 'load_assets' ) );
|
24 |
}
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Load the plugin assets
|
28 |
+
*
|
29 |
+
* @author Alimir
|
30 |
+
* @since 3.0
|
31 |
+
* @return Void
|
32 |
+
*/
|
33 |
+
public function load_assets() {
|
34 |
+
// If user has been disabled this page in options, then return.
|
35 |
+
if( ! is_wp_ulike( wp_ulike_get_setting( 'wp_ulike_general', 'plugin_files') ) ) {
|
36 |
+
return;
|
37 |
+
}
|
38 |
+
//Add wp_ulike script file with special functions.
|
39 |
+
wp_enqueue_script( 'wp_ulike', WP_ULIKE_ASSETS_URL . '/js/wp-ulike.min.js', array( 'jquery' ), '3.0', true);
|
40 |
+
|
41 |
+
//localize script
|
42 |
+
wp_localize_script( 'wp_ulike', 'wp_ulike_params', array(
|
43 |
+
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
44 |
+
'counter_selector' => apply_filters('wp_ulike_counter_selector', '.count-box'),
|
45 |
+
'button_selector' => apply_filters('wp_ulike_button_selector', '.wp_ulike_btn'),
|
46 |
+
'general_selector' => apply_filters('wp_ulike_general_selector', '.wp_ulike_general_class'),
|
47 |
+
'button_type' => wp_ulike_get_setting( 'wp_ulike_general', 'button_type'),
|
48 |
+
'notifications' => wp_ulike_get_setting( 'wp_ulike_general', 'notifications')
|
49 |
+
));
|
50 |
+
wp_enqueue_style( 'wp-ulike', WP_ULIKE_ASSETS_URL . '/css/wp-ulike.min.css' );
|
51 |
+
|
52 |
+
//add your custom style from setting panel.
|
53 |
+
wp_add_inline_style( 'wp-ulike', wp_ulike_get_custom_style() );
|
54 |
+
}
|
55 |
|
56 |
/**
|
57 |
* Select the logging type
|
414 |
* @since 2.0
|
415 |
* @updated 2.2
|
416 |
* @updated 2.9
|
417 |
+
* @updated 3.0
|
418 |
* @return Void
|
419 |
*/
|
420 |
public function update_meta_data($id, $key, $data){
|
423 |
// Update Values
|
424 |
switch ( $key ) {
|
425 |
case '_liked' :
|
426 |
+
update_post_meta( $id, $key, $data );
|
427 |
+
update_postmeta_cache( $id );
|
428 |
+
delete_transient( 'wp_ulike_get_most_liked_posts' );
|
429 |
+
break;
|
430 |
case '_topicliked' :
|
431 |
update_post_meta( $id, $key, $data );
|
432 |
update_postmeta_cache( $id );
|
433 |
+
delete_transient( 'wp_ulike_get_most_liked_topics' );
|
434 |
break;
|
435 |
case '_commentliked' :
|
436 |
update_comment_meta( $id, $key, $data );
|
437 |
update_meta_cache( 'comment', $id );
|
438 |
+
delete_transient( 'wp_ulike_get_most_liked_comments' );
|
439 |
break;
|
440 |
case '_activityliked':
|
441 |
bp_activity_update_meta( $id, $key, $data );
|
442 |
+
delete_transient( 'wp_ulike_get_most_liked_activities' );
|
443 |
break;
|
444 |
default:
|
445 |
return 0;
|
inc/wp-functions.php
CHANGED
@@ -11,11 +11,40 @@
|
|
11 |
*
|
12 |
* @author Alimir
|
13 |
* @since 1.4
|
14 |
-
* @
|
|
|
15 |
*/
|
16 |
add_shortcode( 'wp_ulike', 'wp_ulike_shortcode' );
|
17 |
-
function wp_ulike_shortcode(){
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
|
21 |
/**
|
@@ -34,7 +63,7 @@
|
|
34 |
$button = '';
|
35 |
|
36 |
//add wp_ulike function
|
37 |
-
if( !is_feed() &&
|
38 |
$button = wp_ulike('put');
|
39 |
}
|
40 |
|
@@ -53,32 +82,39 @@
|
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
-
*
|
57 |
*
|
58 |
* @author Alimir
|
59 |
* @since 1.9
|
|
|
|
|
60 |
* @return boolean
|
61 |
*/
|
62 |
-
function
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
|
84 |
/**
|
@@ -113,7 +149,7 @@
|
|
113 |
*
|
114 |
* @author Alimir
|
115 |
* @since 2.7
|
116 |
-
* @
|
117 |
* @return String
|
118 |
*/
|
119 |
add_filter( 'wp_ulike_posts_microdata', 'wp_ulike_get_posts_microdata');
|
11 |
*
|
12 |
* @author Alimir
|
13 |
* @since 1.4
|
14 |
+
* @updated 3.0
|
15 |
+
* @return wp ulike button
|
16 |
*/
|
17 |
add_shortcode( 'wp_ulike', 'wp_ulike_shortcode' );
|
18 |
+
function wp_ulike_shortcode( $atts, $content = null ){
|
19 |
+
// Final result
|
20 |
+
$result = '';
|
21 |
+
// Default Args
|
22 |
+
$args = shortcode_atts( array(
|
23 |
+
"for" => 'post', //shortcode Type (post, comment, activity, topic)
|
24 |
+
"id" => '', //Post ID
|
25 |
+
"slug" => 'post', //Slug Name
|
26 |
+
"style" => '', //Get Default Theme
|
27 |
+
"attributes" => '' //Get Attributes Filter
|
28 |
+
), $atts );
|
29 |
+
|
30 |
+
switch ( $args['for'] ) {
|
31 |
+
case 'comment':
|
32 |
+
$result = $content . wp_ulike_comments( 'put', array_filter( $args ) );
|
33 |
+
break;
|
34 |
+
|
35 |
+
case 'activity':
|
36 |
+
$result = $content . wp_ulike_buddypress( 'put', array_filter( $args ) );
|
37 |
+
break;
|
38 |
+
|
39 |
+
case 'topic':
|
40 |
+
$result = $content . wp_ulike_bbpress( 'put', array_filter( $args ) );
|
41 |
+
break;
|
42 |
+
|
43 |
+
default:
|
44 |
+
$result = $content . wp_ulike( 'put', array_filter( $args ) );
|
45 |
+
}
|
46 |
+
|
47 |
+
return $result;
|
48 |
}
|
49 |
|
50 |
/**
|
63 |
$button = '';
|
64 |
|
65 |
//add wp_ulike function
|
66 |
+
if( !is_feed() && is_wp_ulike( wp_ulike_get_setting( 'wp_ulike_posts', 'auto_display_filter') ) ){
|
67 |
$button = wp_ulike('put');
|
68 |
}
|
69 |
|
82 |
}
|
83 |
|
84 |
/**
|
85 |
+
* Check wp ulike callback
|
86 |
*
|
87 |
* @author Alimir
|
88 |
* @since 1.9
|
89 |
+
* @since 1.9
|
90 |
+
* @updated 3.0
|
91 |
* @return boolean
|
92 |
*/
|
93 |
+
function is_wp_ulike( $options, $args = array() ){
|
94 |
+
|
95 |
+
$defaults = array(
|
96 |
+
'is_home' => is_home() && $options['home'] == '1',
|
97 |
+
'is_single' => is_single() && $options['single'] == '1',
|
98 |
+
'is_page' => is_page() && $options['page'] == '1',
|
99 |
+
'is_archive' => is_archive() && $options['archive'] == '1',
|
100 |
+
'is_category' => is_category() && $options['category'] == '1',
|
101 |
+
'is_search' => is_search() && $options['search'] == '1',
|
102 |
+
'is_tag' => is_tag() && $options['tag'] == '1',
|
103 |
+
'is_author' => is_author() && $options['author'] == '1',
|
104 |
+
'is_bp' => function_exists('is_buddypress') && is_buddypress() && isset( $options['buddypress'] ) && $options['buddypress'] == '1',
|
105 |
+
'is_bbpress' => function_exists('is_bbpress') && is_bbpress() && isset( $options['bbpress'] ) && $options['bbpress'] == '1',
|
106 |
+
'is_wc' => function_exists('is_woocommerce') && is_woocommerce() && isset( $options['woocommerce'] ) && $options['woocommerce'] == '1',
|
107 |
+
);
|
108 |
+
|
109 |
+
$parsed_args = wp_parse_args( $args, $defaults );
|
110 |
+
|
111 |
+
foreach ( $parsed_args as $key => $value ) {
|
112 |
+
if( $value ) {
|
113 |
+
return false;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
|
117 |
+
return true;
|
118 |
}
|
119 |
|
120 |
/**
|
149 |
*
|
150 |
* @author Alimir
|
151 |
* @since 2.7
|
152 |
+
* @updated 2.8 // Replaced 'mysql2date' with 'get_post_time' function
|
153 |
* @return String
|
154 |
*/
|
155 |
add_filter( 'wp_ulike_posts_microdata', 'wp_ulike_get_posts_microdata');
|
inc/wp-script.php
DELETED
@@ -1,51 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
if ( ! defined( 'ABSPATH' ) ) exit; // No direct access allowed
|
4 |
-
|
5 |
-
/**
|
6 |
-
* Add Plugin script files + Creating Localize Objects
|
7 |
-
*
|
8 |
-
* @author Alimir
|
9 |
-
* @since 1.0
|
10 |
-
* @updated 2.2
|
11 |
-
* @updated 2.4.1
|
12 |
-
* @updated 2.8 //Removed like_notice & unlike_notice variables of 'wp_localize_script' function + Dequeued 'wp_ulike_plugins' script
|
13 |
-
* @return void
|
14 |
-
*/
|
15 |
-
add_action('init', 'wp_ulike_enqueue_scripts');
|
16 |
-
|
17 |
-
function wp_ulike_enqueue_scripts() {
|
18 |
-
//enqueue JQuery script
|
19 |
-
wp_enqueue_script( 'jquery' );
|
20 |
-
//Add wp_ulike script file with special functions.
|
21 |
-
wp_enqueue_script('wp_ulike', WP_ULIKE_ASSETS_URL . '/js/wp-ulike.min.js', array('jquery'), '2.8.1', true);
|
22 |
-
//localize script
|
23 |
-
wp_localize_script( 'wp_ulike', 'wp_ulike_params', array(
|
24 |
-
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
25 |
-
'counter_selector' => apply_filters('wp_ulike_counter_selector', '.count-box'),
|
26 |
-
'button_selector' => apply_filters('wp_ulike_button_selector', '.wp_ulike_btn'),
|
27 |
-
'general_selector' => apply_filters('wp_ulike_general_selector', '.wp_ulike_general_class'),
|
28 |
-
'button_type' => wp_ulike_get_setting( 'wp_ulike_general', 'button_type'),
|
29 |
-
'notifications' => wp_ulike_get_setting( 'wp_ulike_general', 'notifications')
|
30 |
-
));
|
31 |
-
//wp_ajax hooks for the custom AJAX requests
|
32 |
-
add_action('wp_ajax_wp_ulike_process','wp_ulike_process');
|
33 |
-
add_action('wp_ajax_nopriv_wp_ulike_process', 'wp_ulike_process');
|
34 |
-
}
|
35 |
-
|
36 |
-
/**
|
37 |
-
* Add Plugin CSS styles + Custom Style Support
|
38 |
-
*
|
39 |
-
* @author Alimir
|
40 |
-
* @since 1.0
|
41 |
-
* @updated 2.3
|
42 |
-
* @updated 2.4
|
43 |
-
* @return Void (Enqueue CSS styles)
|
44 |
-
*/
|
45 |
-
add_action('wp_enqueue_scripts', 'wp_ulike_enqueue_style');
|
46 |
-
|
47 |
-
function wp_ulike_enqueue_style() {
|
48 |
-
wp_enqueue_style( 'wp-ulike', WP_ULIKE_ASSETS_URL . '/css/wp-ulike.min.css' );
|
49 |
-
//add your custom style from setting panel.
|
50 |
-
wp_add_inline_style( 'wp-ulike', wp_ulike_get_custom_style() );
|
51 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/wp-templates.php
CHANGED
@@ -12,6 +12,7 @@
|
|
12 |
function wp_ulike_set_default_template( array $wp_ulike_template ){
|
13 |
//This function will turn output buffering on
|
14 |
ob_start();
|
|
|
15 |
?>
|
16 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-default" <?php echo $wp_ulike_template['attributes']; ?>>
|
17 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
@@ -28,6 +29,7 @@
|
|
28 |
<?php echo $wp_ulike_template['microdata']; ?>
|
29 |
</div>
|
30 |
<?php
|
|
|
31 |
return ob_get_clean(); // data is now in here
|
32 |
}
|
33 |
|
@@ -40,7 +42,8 @@
|
|
40 |
*/
|
41 |
function wp_ulike_set_simple_heart_template( array $wp_ulike_template ){
|
42 |
//This function will turn output buffering on
|
43 |
-
ob_start();
|
|
|
44 |
?>
|
45 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-heart" <?php echo $wp_ulike_template['attributes']; ?>>
|
46 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
@@ -57,6 +60,7 @@
|
|
57 |
<?php echo $wp_ulike_template['microdata']; ?>
|
58 |
</div>
|
59 |
<?php
|
|
|
60 |
return ob_get_clean(); // data is now in here
|
61 |
}
|
62 |
|
@@ -73,7 +77,8 @@
|
|
73 |
$checked = 'checked="checked"';
|
74 |
}
|
75 |
//This function will turn output buffering on
|
76 |
-
ob_start();
|
|
|
77 |
?>
|
78 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-robeen" <?php echo $wp_ulike_template['attributes']; ?>>
|
79 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
@@ -87,5 +92,6 @@
|
|
87 |
<?php echo $wp_ulike_template['microdata']; ?>
|
88 |
</div>
|
89 |
<?php
|
|
|
90 |
return ob_get_clean(); // data is now in here
|
91 |
}
|
12 |
function wp_ulike_set_default_template( array $wp_ulike_template ){
|
13 |
//This function will turn output buffering on
|
14 |
ob_start();
|
15 |
+
do_action( 'wp_ulike_before_template' );
|
16 |
?>
|
17 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-default" <?php echo $wp_ulike_template['attributes']; ?>>
|
18 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
29 |
<?php echo $wp_ulike_template['microdata']; ?>
|
30 |
</div>
|
31 |
<?php
|
32 |
+
do_action( 'wp_ulike_after_template' );
|
33 |
return ob_get_clean(); // data is now in here
|
34 |
}
|
35 |
|
42 |
*/
|
43 |
function wp_ulike_set_simple_heart_template( array $wp_ulike_template ){
|
44 |
//This function will turn output buffering on
|
45 |
+
ob_start();
|
46 |
+
do_action( 'wp_ulike_before_template' );
|
47 |
?>
|
48 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-heart" <?php echo $wp_ulike_template['attributes']; ?>>
|
49 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
60 |
<?php echo $wp_ulike_template['microdata']; ?>
|
61 |
</div>
|
62 |
<?php
|
63 |
+
do_action( 'wp_ulike_after_template' );
|
64 |
return ob_get_clean(); // data is now in here
|
65 |
}
|
66 |
|
77 |
$checked = 'checked="checked"';
|
78 |
}
|
79 |
//This function will turn output buffering on
|
80 |
+
ob_start();
|
81 |
+
do_action( 'wp_ulike_before_template' );
|
82 |
?>
|
83 |
<div id="wp-ulike-<?php echo $wp_ulike_template['slug'] . '-' . $wp_ulike_template['ID']; ?>" class="wpulike wpulike-robeen" <?php echo $wp_ulike_template['attributes']; ?>>
|
84 |
<div class="<?php echo $wp_ulike_template['general_class']; ?>">
|
92 |
<?php echo $wp_ulike_template['microdata']; ?>
|
93 |
</div>
|
94 |
<?php
|
95 |
+
do_action( 'wp_ulike_after_template' );
|
96 |
return ob_get_clean(); // data is now in here
|
97 |
}
|
inc/wp-ulike.php
CHANGED
@@ -17,39 +17,39 @@
|
|
17 |
//global variables
|
18 |
global $post, $wp_ulike_class, $wp_user_IP;
|
19 |
|
20 |
-
$post_ID
|
21 |
-
$get_post_meta
|
22 |
-
$get_like
|
23 |
-
$return_userID
|
24 |
-
$attributes
|
25 |
-
$microdata
|
26 |
-
$style
|
27 |
|
28 |
//Main data
|
29 |
-
$defaults
|
30 |
-
"id"
|
31 |
-
"user_id"
|
32 |
-
"user_ip"
|
33 |
-
"get_like"
|
34 |
-
"method"
|
35 |
-
"setting"
|
36 |
-
"type"
|
37 |
-
"table"
|
38 |
-
"column"
|
39 |
-
"key"
|
40 |
-
"cookie"
|
41 |
-
"slug"
|
42 |
-
"style"
|
43 |
-
"microdata"
|
44 |
-
"attributes"
|
45 |
);
|
46 |
|
47 |
$parsed_args = wp_parse_args( $args, $defaults );
|
48 |
|
49 |
if( ( wp_ulike_get_setting( 'wp_ulike_posts', 'only_registered_users') != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_posts', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
50 |
//call wp_get_ulike function from wp_ulike class
|
51 |
-
$wp_ulike
|
52 |
-
$wp_ulike
|
53 |
|
54 |
if ($type == 'put') {
|
55 |
return $wp_ulike;
|
@@ -84,39 +84,39 @@
|
|
84 |
//global variables
|
85 |
global $wp_ulike_class, $wp_user_IP;
|
86 |
|
87 |
-
$
|
88 |
-
$comment_meta
|
89 |
-
$get_like
|
90 |
-
$return_userID
|
91 |
-
$attributes
|
92 |
-
$microdata
|
93 |
-
$style
|
94 |
|
95 |
//Main Data
|
96 |
-
$defaults
|
97 |
-
"id"
|
98 |
-
"user_id"
|
99 |
-
"user_ip"
|
100 |
-
"get_like"
|
101 |
-
"method"
|
102 |
-
"setting"
|
103 |
-
"type"
|
104 |
-
"table"
|
105 |
-
"column"
|
106 |
-
"key"
|
107 |
-
"cookie"
|
108 |
-
"slug"
|
109 |
-
"style"
|
110 |
-
"microdata"
|
111 |
-
"attributes"
|
112 |
);
|
113 |
|
114 |
$parsed_args = wp_parse_args( $args, $defaults );
|
115 |
|
116 |
if( ( wp_ulike_get_setting( 'wp_ulike_comments', 'only_registered_users' ) != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_comments', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
117 |
//call wp_get_ulike function from wp_ulike class
|
118 |
-
$wp_ulike
|
119 |
-
$wp_ulike
|
120 |
|
121 |
if ($type == 'put') {
|
122 |
return $wp_ulike;
|
@@ -153,35 +153,35 @@
|
|
153 |
global $wp_ulike_class, $wp_user_IP;
|
154 |
|
155 |
if ( bp_get_activity_comment_id() != null ){
|
156 |
-
$activityID = bp_get_activity_comment_id();
|
157 |
} else {
|
158 |
-
$activityID = bp_get_activity_id();
|
159 |
}
|
160 |
|
161 |
-
$bp_get_meta
|
162 |
-
$get_like
|
163 |
-
$return_userID
|
164 |
-
$attributes
|
165 |
-
$microdata
|
166 |
-
$style
|
167 |
|
168 |
//Main Data
|
169 |
-
$defaults
|
170 |
-
"id"
|
171 |
-
"user_id"
|
172 |
-
"user_ip"
|
173 |
-
"get_like"
|
174 |
-
"method"
|
175 |
-
"setting"
|
176 |
-
"type"
|
177 |
-
"table"
|
178 |
-
"column"
|
179 |
-
"key"
|
180 |
-
"cookie"
|
181 |
-
"slug"
|
182 |
-
"style"
|
183 |
-
"microdata"
|
184 |
-
"attributes"
|
185 |
);
|
186 |
|
187 |
$parsed_args = wp_parse_args( $args, $defaults );
|
@@ -227,41 +227,42 @@
|
|
227 |
global $post,$wp_ulike_class,$wp_user_IP;
|
228 |
|
229 |
//Thanks to @Yehonal for this commit
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
$
|
235 |
-
$
|
236 |
-
$
|
237 |
-
$
|
238 |
-
$
|
|
|
239 |
|
240 |
//Main Data
|
241 |
-
$defaults
|
242 |
-
"id"
|
243 |
-
"user_id"
|
244 |
-
"user_ip"
|
245 |
-
"get_like"
|
246 |
-
"method"
|
247 |
-
"setting"
|
248 |
-
"type"
|
249 |
-
"table"
|
250 |
-
"column"
|
251 |
-
"key"
|
252 |
-
"cookie"
|
253 |
-
"slug"
|
254 |
-
"style"
|
255 |
-
"microdata"
|
256 |
-
"attributes"
|
257 |
);
|
258 |
|
259 |
$parsed_args = wp_parse_args( $args, $defaults );
|
260 |
|
261 |
if( ( wp_ulike_get_setting( 'wp_ulike_bbpress', 'only_registered_users' ) != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_bbpress', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
262 |
//call wp_get_ulike function from wp_ulike class
|
263 |
-
$wp_ulike
|
264 |
-
$wp_ulike
|
265 |
|
266 |
if ($type == 'put') {
|
267 |
return $wp_ulike;
|
@@ -292,108 +293,121 @@
|
|
292 |
* @updated 2.4.1
|
293 |
* @updated 2.8 //Replaced 'WP_Ajax_Response' class with 'wp_send_json' function + Added message respond
|
294 |
* @updated 2.8.1 //Added 'wp_ulike_respond_for_not_liked_data' & 'wp_ulike_respond_for_unliked_data' & 'wp_ulike_respond_for_liked_data' filters
|
|
|
295 |
* @return String
|
296 |
*/
|
297 |
function wp_ulike_process(){
|
298 |
-
|
299 |
global $wp_ulike_class,$wp_user_IP;
|
300 |
-
|
301 |
-
$
|
302 |
-
$
|
303 |
-
$
|
304 |
-
$
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
}
|
341 |
|
342 |
-
$get_like
|
343 |
-
$return_userID
|
344 |
|
345 |
-
$args = array(
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
|
|
357 |
);
|
358 |
-
|
359 |
-
if( $post_ID == null || ! wp_verify_nonce( $nonce_token, $post_type . $post_ID ) ) wp_die();
|
360 |
|
361 |
switch ( $like_status ){
|
362 |
case 0:
|
363 |
$response = array(
|
364 |
-
'message'
|
365 |
-
'btnText'
|
366 |
-
'data'
|
367 |
);
|
368 |
break;
|
369 |
case 1:
|
370 |
$response = array(
|
371 |
-
'message'
|
372 |
-
'btnText'
|
373 |
-
'data'
|
374 |
);
|
375 |
break;
|
376 |
case 2:
|
377 |
$response = array(
|
378 |
-
'message'
|
379 |
-
'btnText'
|
380 |
-
'data'
|
381 |
);
|
382 |
break;
|
383 |
case 3:
|
384 |
$response = array(
|
385 |
-
'message'
|
386 |
-
'btnText'
|
387 |
-
'data'
|
388 |
);
|
389 |
break;
|
390 |
default:
|
391 |
$response = array(
|
392 |
-
'message'
|
393 |
-
'btnText'
|
394 |
-
'data'
|
395 |
);
|
396 |
}
|
397 |
|
398 |
wp_send_json($response);
|
399 |
-
}
|
|
|
|
|
|
17 |
//global variables
|
18 |
global $post, $wp_ulike_class, $wp_user_IP;
|
19 |
|
20 |
+
$post_ID = isset( $args['id'] ) ? $args['id'] : $post->ID;
|
21 |
+
$get_post_meta = get_post_meta( $post_ID, '_liked', true );
|
22 |
+
$get_like = empty( $get_post_meta ) ? 0 : $get_post_meta;
|
23 |
+
$return_userID = $wp_ulike_class->get_reutrn_id();
|
24 |
+
$attributes = apply_filters( 'wp_ulike_posts_add_attr', null );
|
25 |
+
$microdata = apply_filters( 'wp_ulike_posts_microdata', null );
|
26 |
+
$style = wp_ulike_get_setting( 'wp_ulike_posts', 'theme' );
|
27 |
|
28 |
//Main data
|
29 |
+
$defaults = array(
|
30 |
+
"id" => $post_ID, //Post ID
|
31 |
+
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
32 |
+
"user_ip" => $wp_user_IP, //User IP
|
33 |
+
"get_like" => $get_like, //Number Of Likes
|
34 |
+
"method" => 'likeThis', //JavaScript method
|
35 |
+
"setting" => 'wp_ulike_posts', //Setting Key
|
36 |
+
"type" => 'post', //Function type (post/process)
|
37 |
+
"table" => 'ulike', //posts table
|
38 |
+
"column" => 'post_id', //ulike table column name
|
39 |
+
"key" => '_liked', //meta key
|
40 |
+
"cookie" => 'liked-', //Cookie Name
|
41 |
+
"slug" => 'post', //Slug Name
|
42 |
+
"style" => $style, //Get Default Theme
|
43 |
+
"microdata" => $microdata, //Get Microdata Filter
|
44 |
+
"attributes" => $attributes //Get Attributes Filter
|
45 |
);
|
46 |
|
47 |
$parsed_args = wp_parse_args( $args, $defaults );
|
48 |
|
49 |
if( ( wp_ulike_get_setting( 'wp_ulike_posts', 'only_registered_users') != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_posts', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
50 |
//call wp_get_ulike function from wp_ulike class
|
51 |
+
$wp_ulike = $wp_ulike_class->wp_get_ulike( $parsed_args );
|
52 |
+
$wp_ulike .= $wp_ulike_class->get_liked_users( $parsed_args );
|
53 |
|
54 |
if ($type == 'put') {
|
55 |
return $wp_ulike;
|
84 |
//global variables
|
85 |
global $wp_ulike_class, $wp_user_IP;
|
86 |
|
87 |
+
$comment_ID = isset( $args['id'] ) ? $args['id'] : get_comment_ID();
|
88 |
+
$comment_meta = get_comment_meta( $comment_ID, '_commentliked', true );
|
89 |
+
$get_like = empty( $comment_meta ) ? 0 : $comment_meta;
|
90 |
+
$return_userID = $wp_ulike_class->get_reutrn_id();
|
91 |
+
$attributes = apply_filters( 'wp_ulike_comments_add_attr', null );
|
92 |
+
$microdata = apply_filters( 'wp_ulike_comments_microdata', null );
|
93 |
+
$style = wp_ulike_get_setting( 'wp_ulike_comments', 'theme' );
|
94 |
|
95 |
//Main Data
|
96 |
+
$defaults = array(
|
97 |
+
"id" => $comment_ID, //Comment ID
|
98 |
+
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
99 |
+
"user_ip" => $wp_user_IP, //User IP
|
100 |
+
"get_like" => $get_like, //Number Of Likes
|
101 |
+
"method" => 'likeThisComment', //JavaScript method
|
102 |
+
"setting" => 'wp_ulike_comments', //Setting Key
|
103 |
+
"type" => 'post', //Function type (post/process)
|
104 |
+
"table" => 'ulike_comments', //Comments table
|
105 |
+
"column" => 'comment_id', //ulike_comments table column name
|
106 |
+
"key" => '_commentliked', //meta key
|
107 |
+
"cookie" => 'comment-liked-', //Cookie Name
|
108 |
+
"slug" => 'comment', //Slug Name
|
109 |
+
"style" => $style, //Get Default Theme
|
110 |
+
"microdata" => $microdata, //Get Microdata Filter
|
111 |
+
"attributes" => $attributes //Get Attributes Filter
|
112 |
);
|
113 |
|
114 |
$parsed_args = wp_parse_args( $args, $defaults );
|
115 |
|
116 |
if( ( wp_ulike_get_setting( 'wp_ulike_comments', 'only_registered_users' ) != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_comments', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
117 |
//call wp_get_ulike function from wp_ulike class
|
118 |
+
$wp_ulike = $wp_ulike_class->wp_get_ulike( $parsed_args );
|
119 |
+
$wp_ulike .= $wp_ulike_class->get_liked_users( $parsed_args );
|
120 |
|
121 |
if ($type == 'put') {
|
122 |
return $wp_ulike;
|
153 |
global $wp_ulike_class, $wp_user_IP;
|
154 |
|
155 |
if ( bp_get_activity_comment_id() != null ){
|
156 |
+
$activityID = isset( $args['id'] ) ? $args['id'] : bp_get_activity_comment_id();
|
157 |
} else {
|
158 |
+
$activityID = isset( $args['id'] ) ? $args['id'] : bp_get_activity_id();
|
159 |
}
|
160 |
|
161 |
+
$bp_get_meta = bp_activity_get_meta($activityID, '_activityliked');
|
162 |
+
$get_like = empty( $bp_get_meta ) ? 0 : $bp_get_meta;
|
163 |
+
$return_userID = $wp_ulike_class->get_reutrn_id();
|
164 |
+
$attributes = apply_filters( 'wp_ulike_activities_add_attr', null );
|
165 |
+
$microdata = apply_filters( 'wp_ulike_activities_microdata', null );
|
166 |
+
$style = wp_ulike_get_setting( 'wp_ulike_buddypress', 'theme' );
|
167 |
|
168 |
//Main Data
|
169 |
+
$defaults = array(
|
170 |
+
"id" => $activityID, //Activity ID
|
171 |
+
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
172 |
+
"user_ip" => $wp_user_IP, //User IP
|
173 |
+
"get_like" => $get_like, //Number Of Likes
|
174 |
+
"method" => 'likeThisActivity', //JavaScript method
|
175 |
+
"setting" => 'wp_ulike_buddypress', //Setting Key
|
176 |
+
"type" => 'post', //Function type (post/process)
|
177 |
+
"table" => 'ulike_activities', //Activities table
|
178 |
+
"column" => 'activity_id', //ulike_activities table column name
|
179 |
+
"key" => '_activityliked', //meta key
|
180 |
+
"cookie" => 'activity-liked-', //Cookie Name
|
181 |
+
"slug" => 'activity', //Slug Name
|
182 |
+
"style" => $style, //Get Default Theme
|
183 |
+
"microdata" => $microdata, //Get Microdata Filter
|
184 |
+
"attributes" => $attributes //Get Attributes Filter
|
185 |
);
|
186 |
|
187 |
$parsed_args = wp_parse_args( $args, $defaults );
|
227 |
global $post,$wp_ulike_class,$wp_user_IP;
|
228 |
|
229 |
//Thanks to @Yehonal for this commit
|
230 |
+
$replyID = bbp_get_reply_id();
|
231 |
+
$post_ID = !$replyID ? $post->ID : $replyID;
|
232 |
+
$post_ID = isset( $args['id'] ) ? $args['id'] : $post_ID;
|
233 |
+
|
234 |
+
$get_post_meta = get_post_meta( $post_ID, '_topicliked', true );
|
235 |
+
$get_like = empty( $get_post_meta ) ? 0 : $get_post_meta;
|
236 |
+
$return_userID = $wp_ulike_class->get_reutrn_id();
|
237 |
+
$attributes = apply_filters( 'wp_ulike_topics_add_attr', null );
|
238 |
+
$microdata = apply_filters( 'wp_ulike_topics_microdata', null );
|
239 |
+
$style = wp_ulike_get_setting( 'wp_ulike_bbpress', 'theme' );
|
240 |
|
241 |
//Main Data
|
242 |
+
$defaults = array(
|
243 |
+
"id" => $post_ID, //Post ID
|
244 |
+
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
245 |
+
"user_ip" => $wp_user_IP, //User IP
|
246 |
+
"get_like" => $get_like, //Number Of Likes
|
247 |
+
"method" => 'likeThisTopic', //JavaScript method
|
248 |
+
"setting" => 'wp_ulike_bbpress', //Setting Key
|
249 |
+
"type" => 'post', //Function type (post/process)
|
250 |
+
"table" => 'ulike_forums', //posts table
|
251 |
+
"column" => 'topic_id', //ulike table column name
|
252 |
+
"key" => '_topicliked', //meta key
|
253 |
+
"cookie" => 'topic-liked-', //Cookie Name
|
254 |
+
"slug" => 'topic', //Slug Name
|
255 |
+
"style" => $style, //Get Default Theme
|
256 |
+
"microdata" => $microdata, //Get Microdata Filter
|
257 |
+
"attributes" => $attributes //Get Attributes Filter
|
258 |
);
|
259 |
|
260 |
$parsed_args = wp_parse_args( $args, $defaults );
|
261 |
|
262 |
if( ( wp_ulike_get_setting( 'wp_ulike_bbpress', 'only_registered_users' ) != '1' ) or ( wp_ulike_get_setting( 'wp_ulike_bbpress', 'only_registered_users' ) == '1' && is_user_logged_in() ) ) {
|
263 |
//call wp_get_ulike function from wp_ulike class
|
264 |
+
$wp_ulike = $wp_ulike_class->wp_get_ulike( $parsed_args );
|
265 |
+
$wp_ulike .= $wp_ulike_class->get_liked_users( $parsed_args );
|
266 |
|
267 |
if ($type == 'put') {
|
268 |
return $wp_ulike;
|
293 |
* @updated 2.4.1
|
294 |
* @updated 2.8 //Replaced 'WP_Ajax_Response' class with 'wp_send_json' function + Added message respond
|
295 |
* @updated 2.8.1 //Added 'wp_ulike_respond_for_not_liked_data' & 'wp_ulike_respond_for_unliked_data' & 'wp_ulike_respond_for_liked_data' filters
|
296 |
+
* @updated 3.0
|
297 |
* @return String
|
298 |
*/
|
299 |
function wp_ulike_process(){
|
300 |
+
// Global variables
|
301 |
global $wp_ulike_class,$wp_user_IP;
|
302 |
+
|
303 |
+
$post_ID = $_POST['id'];
|
304 |
+
$post_type = $_POST['type'];
|
305 |
+
$like_status = $_POST['status'];
|
306 |
+
$nonce_token = $_POST['nonce'];
|
307 |
+
$response = array();
|
308 |
+
|
309 |
+
if( $post_ID == null || ! wp_verify_nonce( $nonce_token, $post_type . $post_ID ) ) {
|
310 |
+
wp_die( __( 'Error: Something Wrong Happened!', WP_ULIKE_SLUG ) );
|
311 |
+
}
|
312 |
+
|
313 |
+
switch ( $post_type ) {
|
314 |
+
case 'likeThis':
|
315 |
+
$get_meta_data = get_post_meta($post_ID, '_liked', true);
|
316 |
+
$setting_key = 'wp_ulike_posts';
|
317 |
+
$table_name = 'ulike';
|
318 |
+
$column_name = 'post_id';
|
319 |
+
$meta_key = '_liked';
|
320 |
+
$cookie_name = 'liked-';
|
321 |
+
break;
|
322 |
+
|
323 |
+
case 'likeThisComment':
|
324 |
+
$get_meta_data = get_comment_meta($post_ID, '_commentliked', true);
|
325 |
+
$setting_key = 'wp_ulike_comments';
|
326 |
+
$table_name = 'ulike_comments';
|
327 |
+
$column_name = 'comment_id';
|
328 |
+
$meta_key = '_commentliked';
|
329 |
+
$cookie_name = 'comment-liked-';
|
330 |
+
break;
|
331 |
+
|
332 |
+
case 'likeThisActivity':
|
333 |
+
$get_meta_data = bp_activity_get_meta($post_ID, '_activityliked');
|
334 |
+
$setting_key = 'wp_ulike_buddypress';
|
335 |
+
$table_name = 'ulike_activities';
|
336 |
+
$column_name = 'activity_id';
|
337 |
+
$meta_key = '_activityliked';
|
338 |
+
$cookie_name = 'activity-liked-';
|
339 |
+
break;
|
340 |
+
|
341 |
+
case 'likeThisTopic':
|
342 |
+
$get_meta_data = get_post_meta($post_ID, '_topicliked', true);
|
343 |
+
$setting_key = 'wp_ulike_bbpress';
|
344 |
+
$table_name = 'ulike_forums';
|
345 |
+
$column_name = 'topic_id';
|
346 |
+
$meta_key = '_topicliked';
|
347 |
+
$cookie_name = 'topic-liked-';
|
348 |
+
break;
|
349 |
+
|
350 |
+
default:
|
351 |
+
wp_die( __( 'Error: This Method Is Not Exist!', WP_ULIKE_SLUG ) );
|
352 |
}
|
353 |
|
354 |
+
$get_like = $get_meta_data != '' ? $get_meta_data : 0;
|
355 |
+
$return_userID = $wp_ulike_class->get_reutrn_id();
|
356 |
|
357 |
+
$args = apply_filters( 'wp_ulike_ajax_process_atts', array(
|
358 |
+
"id" => $post_ID, //Post ID
|
359 |
+
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
360 |
+
"user_ip" => $wp_user_IP, //User IP
|
361 |
+
"get_like" => $get_like, //Number Of Likes
|
362 |
+
"method" => $post_type, //JavaScript method
|
363 |
+
"setting" => $setting_key, //Setting Key
|
364 |
+
"type" => 'process', //Function type (post/process)
|
365 |
+
"table" => $table_name, //posts table
|
366 |
+
"column" => $column_name, //ulike table column name
|
367 |
+
"key" => $meta_key, //meta key
|
368 |
+
"cookie" => $cookie_name //Cookie Name
|
369 |
+
), $post_ID
|
370 |
);
|
|
|
|
|
371 |
|
372 |
switch ( $like_status ){
|
373 |
case 0:
|
374 |
$response = array(
|
375 |
+
'message' => wp_ulike_get_setting( 'wp_ulike_general', 'login_text' ),
|
376 |
+
'btnText' => html_entity_decode( wp_ulike_get_setting( 'wp_ulike_general', 'button_text' ) ),
|
377 |
+
'data' => NULL
|
378 |
);
|
379 |
break;
|
380 |
case 1:
|
381 |
$response = array(
|
382 |
+
'message' => wp_ulike_get_setting( 'wp_ulike_general', 'like_notice' ),
|
383 |
+
'btnText' => html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text' ) ),
|
384 |
+
'data' => apply_filters( 'wp_ulike_respond_for_not_liked_data', $wp_ulike_class->wp_get_ulike( $args ), $post_ID )
|
385 |
);
|
386 |
break;
|
387 |
case 2:
|
388 |
$response = array(
|
389 |
+
'message' => wp_ulike_get_setting( 'wp_ulike_general', 'unlike_notice' ),
|
390 |
+
'btnText' => html_entity_decode( wp_ulike_get_setting( 'wp_ulike_general', 'button_text' ) ),
|
391 |
+
'data' => apply_filters( 'wp_ulike_respond_for_unliked_data', $wp_ulike_class->wp_get_ulike( $args ), $post_ID )
|
392 |
);
|
393 |
break;
|
394 |
case 3:
|
395 |
$response = array(
|
396 |
+
'message' => wp_ulike_get_setting( 'wp_ulike_general', 'like_notice'),
|
397 |
+
'btnText' => html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text_u' ) ),
|
398 |
+
'data' => apply_filters( 'wp_ulike_respond_for_liked_data', $wp_ulike_class->wp_get_ulike( $args ), $post_ID )
|
399 |
);
|
400 |
break;
|
401 |
default:
|
402 |
$response = array(
|
403 |
+
'message' => wp_ulike_get_setting( 'wp_ulike_general', 'permission_text' ),
|
404 |
+
'btnText' => html_entity_decode( wp_ulike_get_setting( 'wp_ulike_general', 'button_text' ) ),
|
405 |
+
'data' => NULL
|
406 |
);
|
407 |
}
|
408 |
|
409 |
wp_send_json($response);
|
410 |
+
}
|
411 |
+
// wp_ajax hooks for the custom AJAX requests
|
412 |
+
add_action( 'wp_ajax_wp_ulike_process' , 'wp_ulike_process' );
|
413 |
+
add_action( 'wp_ajax_nopriv_wp_ulike_process' , 'wp_ulike_process' );
|
lang/wp-ulike-NO.mo
CHANGED
Binary file
|
lang/wp-ulike-NO.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/"
|
@@ -21,69 +21,57 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
-
#: admin/about.php:
|
25 |
-
#: build/wp-ulike/admin/about.php:290
|
26 |
-
msgid "Like this plugin?"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
30 |
-
#: build/wp-ulike/admin/about.php:291
|
31 |
-
msgid ""
|
32 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
33 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
37 |
msgid "Welcome to WP ULike"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/about.php:
|
41 |
msgid ""
|
42 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
43 |
"powerful version yet."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/about.php:
|
47 |
#: build/wp-ulike/admin/stats.php:38
|
48 |
msgid "Visit our homepage"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: admin/about.php:
|
52 |
msgid "Version"
|
53 |
msgstr "Versjon"
|
54 |
|
55 |
-
#: admin/about.php:
|
56 |
msgid "Getting Started"
|
57 |
msgstr "La oss sette i gang"
|
58 |
|
59 |
-
#: admin/about.php:
|
60 |
msgid "Credits"
|
61 |
msgstr "Kreditter"
|
62 |
|
63 |
-
#: admin/about.php:
|
64 |
-
#: build/wp-ulike/admin/about.php:
|
65 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
66 |
#: build/wp-ulike/admin/stats.php:52
|
67 |
msgid "Support"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin/about.php:
|
71 |
-
#: build/wp-ulike/admin/about.php:
|
72 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
73 |
#: build/wp-ulike/admin/stats.php:53
|
74 |
msgid "FAQ"
|
75 |
msgstr "Vanlige spørsmål"
|
76 |
|
77 |
-
#: admin/about.php:
|
78 |
msgid "Reviews"
|
79 |
msgstr "Omtaler"
|
80 |
|
81 |
-
#: admin/about.php:
|
82 |
msgid "Introducing WP ULike"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/about.php:
|
86 |
-
#: build/wp-ulike/admin/about.php:
|
87 |
#: build/wp-ulike/admin/stats.php:37
|
88 |
msgid "About WP ULike"
|
89 |
msgstr ""
|
@@ -96,118 +84,137 @@ msgid ""
|
|
96 |
"options."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/about.php:
|
100 |
msgid "WP Ulike Extension"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/about.php:
|
104 |
msgid ""
|
105 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
106 |
"activities & bbPress Topics."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/about.php:
|
110 |
msgid "Added More Than 20 Language Files"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/about.php:
|
114 |
msgid ""
|
115 |
"WP ULike is already translated into +20 languages, with more always in "
|
116 |
"progress."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/about.php:
|
120 |
msgid "User Profile Links"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/about.php:
|
124 |
msgid ""
|
125 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
126 |
"UltimateMember plugins."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/about.php:
|
130 |
msgid "New Themes And Styles"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/about.php:
|
134 |
msgid ""
|
135 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
136 |
"customize them by your taste."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/about.php:
|
140 |
msgid "myCRED Points Support"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/about.php:
|
144 |
msgid ""
|
145 |
"myCRED is an adaptive points management system that lets you award / charge "
|
146 |
"your users for interacting with your WordPress."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/about.php:
|
150 |
-
#: build/wp-ulike/admin/about.php:
|
151 |
#: build/wp-ulike/admin/stats.php:395
|
152 |
msgid "Likers World Map"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/about.php:
|
156 |
msgid ""
|
157 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
158 |
"likers by their country in the world map & Top Liker widget."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/about.php:
|
162 |
-
#: build/wp-ulike/admin/about.php:
|
163 |
#: build/wp-ulike/admin/stats.php:24
|
164 |
msgid "WP ULike Statistics"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/about.php:
|
168 |
-
#: build/wp-ulike/admin/about.php:
|
169 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
170 |
msgid "Home"
|
171 |
msgstr "Hjem"
|
172 |
|
173 |
-
#: admin/about.php:
|
174 |
msgid "OR"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin/about.php:
|
178 |
-
#: build/wp-ulike/admin/admin.php:
|
179 |
msgid "WP ULike Settings"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: admin/about.php:
|
183 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin/about.php:
|
187 |
msgid "Project Leaders"
|
188 |
msgstr "Prosjektledere"
|
189 |
|
190 |
-
#: admin/about.php:
|
191 |
msgid "Project Lead & Developer"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: admin/about.php:
|
195 |
msgid "Translations"
|
196 |
msgstr "Oversettelser"
|
197 |
|
198 |
-
#: admin/about.php:
|
199 |
msgid "Would you like to help translate the plugin into more languages?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/about.php:
|
203 |
msgid "Join our WP-Translations Community"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: admin/about.php:
|
207 |
msgid "Other Plugins"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid ""
|
212 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
213 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -218,56 +225,56 @@ msgstr ""
|
|
218 |
msgid "WP ULike"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin/admin.php:
|
222 |
msgid "Settings saved."
|
223 |
msgstr "Innstillinger lagret."
|
224 |
|
225 |
-
#: admin/admin.php:
|
226 |
-
#: build/wp-ulike/admin/admin.php:
|
227 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin/admin.php:
|
231 |
-
#: build/wp-ulike/admin/admin.php:
|
232 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin/admin.php:
|
236 |
-
#: build/wp-ulike/admin/admin.php:
|
237 |
#: build/wp-ulike/admin/stats.php:43
|
238 |
msgid "Post Likes Logs"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/admin.php:
|
242 |
-
#: build/wp-ulike/admin/admin.php:
|
243 |
#: build/wp-ulike/admin/stats.php:44
|
244 |
msgid "Comment Likes Logs"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/admin.php:
|
248 |
-
#: build/wp-ulike/admin/admin.php:
|
249 |
#: build/wp-ulike/admin/stats.php:45
|
250 |
msgid "Activity Likes Logs"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin/admin.php:
|
254 |
-
#: build/wp-ulike/admin/admin.php:
|
255 |
#: build/wp-ulike/admin/stats.php:46
|
256 |
msgid "Topics Likes Logs"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/admin.php:
|
260 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
261 |
msgid "Default"
|
262 |
msgstr "Standard"
|
263 |
|
264 |
-
#: admin/admin.php:
|
265 |
-
#: build/wp-ulike/admin/admin.php:
|
266 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
267 |
msgid "Heart"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin/admin.php:
|
271 |
msgid "Robeen"
|
272 |
msgstr ""
|
273 |
|
@@ -292,14 +299,14 @@ msgstr ""
|
|
292 |
msgid "Similar Settings"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
296 |
-
#: admin/classes/tmp/
|
297 |
-
#: admin/classes/tmp/
|
298 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
299 |
-
#: build/wp-ulike/admin/classes/tmp/
|
300 |
-
#: build/wp-ulike/admin/classes/tmp/
|
301 |
-
#: build/wp-ulike/admin/classes/tmp/
|
302 |
-
#: build/wp-ulike/admin/classes/tmp/
|
303 |
msgid "Logging Method"
|
304 |
msgstr ""
|
305 |
|
@@ -329,242 +336,235 @@ msgstr ""
|
|
329 |
#: admin/classes/class-settings.php:53
|
330 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
331 |
msgid ""
|
332 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
333 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
334 |
-
"user IP & SetCookie"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: admin/classes/class-settings.php:54
|
338 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
339 |
-
msgid ""
|
340 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
341 |
"is saved for registered users, the convey of like/dislike condition will "
|
342 |
"check by username, There is no permission for guest users to unlike/undislike"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/classes/class-settings.php:
|
346 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
347 |
msgid "Template Variables"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/classes/class-settings.php:
|
351 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
352 |
msgid "Start the loop of logs"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/classes/class-settings.php:
|
|
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
357 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
358 |
msgid "required"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/classes/class-settings.php:
|
362 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
363 |
msgid "End of the while loop"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/classes/class-settings.php:
|
367 |
-
#: admin/classes/class-settings.php:
|
368 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
369 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
370 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
371 |
msgid "Display the liker name"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/classes/class-settings.php:
|
375 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
376 |
msgid "Display the liker avatar (By Gravatar)"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/classes/class-settings.php:
|
380 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
381 |
msgid "Display the BuddyPress user profile url"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/classes/class-settings.php:
|
385 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
386 |
msgid "Display the UltimateMemebr user profile url"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/classes/class-settings.php:
|
390 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
391 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
392 |
msgid "Display the permalink"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/classes/class-settings.php:
|
396 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
397 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
398 |
msgid "Display the likes count number"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/classes/class-settings.php:
|
402 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
403 |
msgid "Display the post title"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/classes/class-settings.php:
|
407 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
408 |
msgid "Display the comment author name"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/classes/class-settings.php:
|
412 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
413 |
-
#: build/wp-ulike/admin/classes/tmp/
|
414 |
msgid "Posts"
|
415 |
msgstr "Innlegg"
|
416 |
|
417 |
-
#: admin/classes/class-settings.php:
|
418 |
-
#: admin/classes/class-settings.php:
|
419 |
-
#: admin/classes/tmp/
|
420 |
-
#: admin/classes/tmp/
|
421 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
422 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
423 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
424 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/tmp/
|
426 |
-
#: build/wp-ulike/admin/classes/tmp/
|
427 |
-
#: build/wp-ulike/admin/classes/tmp/
|
428 |
-
#: build/wp-ulike/admin/classes/tmp/
|
429 |
msgid "Automatic display"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/classes/class-settings.php:
|
433 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
434 |
msgid ""
|
435 |
"If you disable this option, you have to put manually this code on wordpress "
|
436 |
"while loop"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/classes/class-settings.php:
|
440 |
-
#: admin/classes/class-settings.php:
|
441 |
-
#: admin/classes/tmp/
|
442 |
-
#: admin/classes/tmp/
|
443 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
444 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
445 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
446 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
447 |
-
#: build/wp-ulike/admin/classes/tmp/
|
448 |
-
#: build/wp-ulike/admin/classes/tmp/
|
449 |
-
#: build/wp-ulike/admin/classes/tmp/
|
450 |
-
#: build/wp-ulike/admin/classes/tmp/
|
451 |
msgid "Users Like Box Template"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/classes/class-settings.php:
|
455 |
-
#: admin/classes/class-settings.php:
|
456 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
457 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
458 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
459 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
460 |
msgid "Default Template:"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/classes/class-settings.php:
|
464 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
465 |
-
#: build/wp-ulike/admin/classes/tmp/
|
466 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
467 |
-
#: inc/classes/class-ulike.php:
|
468 |
msgid "Users who have LIKED this post:"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/classes/class-settings.php:
|
472 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
473 |
-
#: build/wp-ulike/admin/classes/tmp/
|
474 |
msgid "Comments"
|
475 |
msgstr "Kommentarer"
|
476 |
|
477 |
-
#: admin/classes/class-settings.php:
|
478 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
479 |
msgid ""
|
480 |
"If you disable this option, you have to put manually this code on comments "
|
481 |
"text"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/classes/class-settings.php:
|
485 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
486 |
-
#: build/wp-ulike/admin/classes/tmp/
|
487 |
msgid "Users who have LIKED this comment:"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/classes/class-settings.php:
|
491 |
-
#: admin/classes/tmp/
|
492 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
493 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
494 |
-
#: build/wp-ulike/admin/classes/tmp/
|
495 |
msgid "BuddyPress"
|
496 |
msgstr "BuddyPress"
|
497 |
|
498 |
-
#: admin/classes/class-settings.php:
|
499 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
500 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
501 |
msgid ""
|
502 |
"If you disable this option, you have to put manually this code on buddypres "
|
503 |
"activities content"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/classes/class-settings.php:
|
507 |
-
#: admin/classes/tmp/
|
508 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
509 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
510 |
-
#: build/wp-ulike/admin/classes/tmp/
|
511 |
msgid "Users who have liked this activity:"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/classes/class-settings.php:
|
515 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
516 |
-
#: build/wp-ulike/admin/classes/tmp/
|
517 |
msgid "Post Activity Text"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/classes/class-settings.php:
|
521 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
522 |
-
#: build/wp-ulike/admin/classes/tmp/
|
523 |
msgid "Comment Activity Text"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/classes/class-settings.php:
|
527 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
528 |
-
#: build/wp-ulike/admin/classes/tmp/
|
529 |
msgid "bbPress"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/classes/class-settings.php:
|
533 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
534 |
msgid "For more information:"
|
535 |
msgstr "For mer informasjon:"
|
536 |
|
537 |
-
#: admin/classes/class-settings.php:
|
538 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
539 |
msgid "Default settings have been reset."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/classes/class-settings.php:
|
543 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
544 |
msgid ""
|
545 |
"Do you really want to reset all these settings to their default values ?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/classes/class-settings.php:
|
549 |
-
#: admin/classes/class-settings.php:
|
550 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
551 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
552 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/classes/class-settings.php:
|
557 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
558 |
msgid "Select %s"
|
559 |
msgstr "Velg %s"
|
560 |
|
561 |
-
#: admin/classes/class-settings.php:
|
562 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/classes/class-settings.php:
|
567 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
@@ -579,800 +579,824 @@ msgid ""
|
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/classes/class-widget.php:
|
583 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
584 |
msgid "on"
|
585 |
msgstr "on"
|
586 |
|
587 |
-
#: admin/classes/class-widget.php:
|
588 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/classes/class-widget.php:
|
593 |
-
#: admin/classes/tmp/
|
594 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
595 |
-
#: build/wp-ulike/admin/classes/tmp/
|
596 |
-
#: build/wp-ulike/admin/classes/tmp/
|
597 |
-
#: build/wp-ulike/admin/classes/tmp/
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/classes/class-widget.php:
|
603 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/classes/class-widget.php:
|
608 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
609 |
msgid "Title:"
|
610 |
msgstr "Tittel:"
|
611 |
|
612 |
-
#: admin/classes/class-widget.php:
|
613 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
614 |
msgid "Type:"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/classes/class-widget.php:
|
618 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/classes/class-widget.php:
|
625 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/classes/class-widget.php:
|
632 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/classes/class-widget.php:
|
638 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/classes/class-widget.php:
|
644 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/classes/class-widget.php:
|
650 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/classes/class-widget.php:
|
655 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
656 |
msgid "Period:"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/classes/class-widget.php:
|
660 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
661 |
msgid "All The Times"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/classes/class-widget.php:
|
665 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
666 |
msgid "Year"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: admin/classes/class-widget.php:
|
670 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
671 |
#: build/wp-ulike/admin/stats.php:154
|
672 |
msgid "Month"
|
673 |
msgstr "Måned"
|
674 |
|
675 |
-
#: admin/classes/class-widget.php:
|
676 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
677 |
#: build/wp-ulike/admin/stats.php:149
|
678 |
msgid "Week"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: admin/classes/class-widget.php:
|
682 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
683 |
#: build/wp-ulike/admin/stats.php:144
|
684 |
msgid "Yesterday"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: admin/classes/class-widget.php:
|
688 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
689 |
#: build/wp-ulike/admin/stats.php:139
|
690 |
msgid "Today"
|
691 |
msgstr "I dag"
|
692 |
|
693 |
-
#: admin/classes/class-widget.php:
|
694 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
695 |
msgid "Style:"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: admin/classes/class-widget.php:
|
699 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
700 |
msgid "Simple"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: admin/classes/class-widget.php:
|
704 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
705 |
msgid "Title Trim (Length):"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/classes/class-widget.php:
|
709 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
710 |
-
msgid "Number of items to show:"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: admin/classes/class-widget.php:447
|
714 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
715 |
-
msgid "Thumbnail/Avatar size:"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: admin/classes/class-widget.php:453
|
719 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
720 |
msgid "Profile URL:"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: admin/classes/class-widget.php:
|
724 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
725 |
msgid "UltimateMember"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: admin/classes/class-widget.php:
|
729 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
730 |
msgid "Activate Like Counter"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: admin/classes/class-widget.php:
|
734 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
735 |
msgid "Activate Thumbnail/Avatar"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: admin/classes/
|
739 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
740 |
msgid "General"
|
741 |
msgstr "Generelt"
|
742 |
|
743 |
-
#: admin/classes/tmp/
|
744 |
-
#: build/wp-ulike/admin/classes/tmp/
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: admin/classes/tmp/
|
749 |
-
#: build/wp-ulike/admin/classes/tmp/
|
750 |
msgid "Icon"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: admin/classes/tmp/
|
754 |
-
#: build/wp-ulike/admin/classes/tmp/
|
755 |
msgid "Text"
|
756 |
msgstr "Tekst"
|
757 |
|
758 |
-
#: admin/classes/tmp/
|
759 |
-
#: build/wp-ulike/admin/classes/tmp/
|
760 |
-
#: build/wp-ulike/admin/classes/tmp/
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: admin/classes/tmp/
|
765 |
-
#: admin/classes/tmp/
|
766 |
-
#: build/wp-ulike/admin/classes/tmp/
|
767 |
-
#: build/wp-ulike/admin/classes/tmp/
|
768 |
-
#: build/wp-ulike/admin/classes/tmp/
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: admin/classes/tmp/
|
773 |
-
#: build/wp-ulike/admin/classes/tmp/
|
774 |
-
#: build/wp-ulike/admin/classes/tmp/
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: admin/classes/tmp/
|
779 |
-
#: admin/classes/tmp/
|
780 |
-
#: build/wp-ulike/admin/classes/tmp/
|
781 |
-
#: build/wp-ulike/admin/classes/tmp/
|
782 |
-
#: build/wp-ulike/admin/classes/tmp/
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: admin/classes/tmp/
|
787 |
-
#: build/wp-ulike/admin/classes/tmp/
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: admin/classes/tmp/
|
792 |
-
#: build/wp-ulike/admin/classes/tmp/
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: admin/classes/tmp/
|
797 |
-
#: build/wp-ulike/admin/classes/tmp/
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: admin/classes/tmp/
|
802 |
-
#: build/wp-ulike/admin/classes/tmp/
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: admin/classes/tmp/
|
807 |
-
#: build/wp-ulike/admin/classes/tmp/
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: admin/classes/tmp/
|
812 |
-
#: build/wp-ulike/admin/classes/tmp/
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: admin/classes/tmp/
|
817 |
-
#: build/wp-ulike/admin/classes/tmp/
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: admin/classes/tmp/
|
822 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Format Number"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: admin/classes/tmp/
|
827 |
-
#: admin/classes/tmp/
|
828 |
-
#: admin/classes/tmp/
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: admin/classes/tmp/
|
835 |
-
#: admin/classes/tmp/
|
836 |
-
#: build/wp-ulike/admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
-
#: build/wp-ulike/admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
-
#: build/wp-ulike/admin/classes/tmp/
|
854 |
-
#: build/wp-ulike/admin/classes/tmp/
|
855 |
msgid "Activate"
|
856 |
msgstr "Aktiver"
|
857 |
|
858 |
-
#: admin/classes/tmp/
|
859 |
-
#: build/wp-ulike/admin/classes/tmp/
|
860 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: admin/classes/tmp/
|
864 |
-
#: build/wp-ulike/admin/classes/tmp/
|
865 |
#, fuzzy
|
866 |
msgid "Notifications"
|
867 |
msgstr "Handlinger"
|
868 |
|
869 |
-
#: admin/classes/tmp/
|
870 |
-
#: build/wp-ulike/admin/classes/tmp/
|
871 |
msgid "Custom toast messages after each activity"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: admin/classes/tmp/
|
875 |
-
#: build/wp-ulike/admin/classes/tmp/
|
876 |
msgid "Thanks! You Liked This."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: admin/classes/tmp/
|
880 |
-
#: build/wp-ulike/admin/classes/tmp/
|
881 |
msgid "Liked Notice Message"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: admin/classes/tmp/
|
885 |
-
#: build/wp-ulike/admin/classes/tmp/
|
886 |
msgid "Sorry! You unliked this."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: admin/classes/tmp/
|
890 |
-
#: build/wp-ulike/admin/classes/tmp/
|
891 |
msgid "Unliked Notice Message"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: admin/classes/tmp/
|
895 |
-
#: admin/classes/tmp/
|
896 |
-
#: build/wp-ulike/admin/classes/tmp/
|
897 |
-
#: build/wp-ulike/admin/classes/tmp/
|
898 |
-
#: build/wp-ulike/admin/classes/tmp/
|
899 |
-
#: build/wp-ulike/admin/classes/tmp/
|
900 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
901 |
msgid "Themes"
|
902 |
msgstr "Temaer"
|
903 |
|
904 |
-
#: admin/classes/tmp/
|
905 |
-
#: admin/classes/tmp/
|
906 |
-
#: build/wp-ulike/admin/classes/tmp/
|
907 |
-
#: build/wp-ulike/admin/classes/tmp/
|
908 |
-
#: build/wp-ulike/admin/classes/tmp/
|
909 |
-
#: build/wp-ulike/admin/classes/tmp/
|
910 |
msgid "Auto Display Position"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: admin/classes/tmp/
|
914 |
-
#: admin/classes/tmp/
|
915 |
-
#: build/wp-ulike/admin/classes/tmp/
|
916 |
-
#: build/wp-ulike/admin/classes/tmp/
|
917 |
-
#: build/wp-ulike/admin/classes/tmp/
|
918 |
msgid "Top of Content"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: admin/classes/tmp/
|
922 |
-
#: admin/classes/tmp/
|
923 |
-
#: build/wp-ulike/admin/classes/tmp/
|
924 |
-
#: build/wp-ulike/admin/classes/tmp/
|
925 |
-
#: build/wp-ulike/admin/classes/tmp/
|
926 |
msgid "Bottom of Content"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: admin/classes/tmp/
|
930 |
-
#: build/wp-ulike/admin/classes/tmp/
|
931 |
-
#: build/wp-ulike/admin/classes/tmp/
|
932 |
msgid "Top and Bottom"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: admin/classes/tmp/
|
936 |
-
#: build/wp-ulike/admin/classes/tmp/
|
937 |
msgid "Auto Display Filter"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: admin/classes/tmp/
|
941 |
-
#: build/wp-ulike/admin/classes/tmp/
|
942 |
-
msgid "Single Posts"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#: admin/classes/tmp/settings.php:117
|
946 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
947 |
-
msgid "Pages"
|
948 |
-
msgstr "Sider"
|
949 |
-
|
950 |
-
#: admin/classes/tmp/settings.php:118
|
951 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
952 |
-
msgid "Archives"
|
953 |
-
msgstr "Arkiv"
|
954 |
-
|
955 |
-
#: admin/classes/tmp/settings.php:119
|
956 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
957 |
-
msgid "Categories"
|
958 |
-
msgstr "Kategorier"
|
959 |
-
|
960 |
-
#: admin/classes/tmp/settings.php:120
|
961 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
962 |
-
msgid "Search Results"
|
963 |
-
msgstr "Søkeresultater"
|
964 |
-
|
965 |
-
#: admin/classes/tmp/settings.php:121
|
966 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
967 |
-
msgid "Tags"
|
968 |
-
msgstr "Stikkord"
|
969 |
-
|
970 |
-
#: admin/classes/tmp/settings.php:122
|
971 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
972 |
-
msgid "Author Page"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: admin/classes/tmp/settings.php:124
|
976 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
977 |
msgid "You can filter theses pages on auto display option."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: admin/classes/tmp/
|
981 |
-
#: build/wp-ulike/admin/classes/tmp/
|
982 |
msgid "Google Rich Snippets"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: admin/classes/tmp/
|
986 |
-
#: build/wp-ulike/admin/classes/tmp/
|
987 |
msgid "Add rich snippet for ratings in form of schema.org"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: admin/classes/tmp/
|
991 |
-
#: admin/classes/tmp/
|
992 |
-
#: build/wp-ulike/admin/classes/tmp/
|
993 |
-
#: build/wp-ulike/admin/classes/tmp/
|
994 |
-
#: build/wp-ulike/admin/classes/tmp/
|
995 |
-
#: build/wp-ulike/admin/classes/tmp/
|
996 |
msgid "Only registered Users"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: admin/classes/tmp/
|
1000 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1001 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: admin/classes/tmp/
|
1005 |
-
#: admin/classes/tmp/
|
1006 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1007 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1008 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1010 |
msgid "Do Not Log"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: admin/classes/tmp/
|
1014 |
-
#: admin/classes/tmp/
|
1015 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1016 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1017 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1018 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1019 |
msgid "Logged By Cookie"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: admin/classes/tmp/
|
1023 |
-
#: admin/classes/tmp/
|
1024 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1025 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1026 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1027 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1028 |
msgid "Logged By IP"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: admin/classes/tmp/
|
1032 |
-
#: admin/classes/tmp/
|
1033 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1034 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1035 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1036 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1037 |
-
msgid "Logged By Cookie & IP"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1041 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1042 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1043 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1044 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1045 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1046 |
msgid "Logged By Username"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: admin/classes/tmp/
|
1050 |
-
#: admin/classes/tmp/
|
1051 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1052 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1053 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1054 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1055 |
msgid "Show Liked Users Box"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: admin/classes/tmp/
|
1059 |
-
#: admin/classes/tmp/
|
1060 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1061 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1062 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1063 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1064 |
msgid ""
|
1065 |
"Active this option to show liked users avatars in the bottom of button like."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: admin/classes/tmp/
|
1069 |
-
#: admin/classes/tmp/
|
1070 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1071 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1072 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
msgid "Size of Gravatars"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: admin/classes/tmp/
|
1078 |
-
#: admin/classes/tmp/
|
1079 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1080 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1081 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1083 |
msgid "Size of Gravatars to return (max is 512)"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: admin/classes/tmp/
|
1087 |
-
#: admin/classes/tmp/
|
1088 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1089 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1090 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
msgid "Number Of The Users"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: admin/classes/tmp/
|
1096 |
-
#: admin/classes/tmp/
|
1097 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1098 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1099 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
msgid "The number of users to show in the users liked box"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: admin/classes/tmp/
|
1105 |
-
#: admin/classes/tmp/
|
1106 |
-
#: admin/classes/tmp/
|
1107 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1108 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1109 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1110 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1111 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
msgid "Allowed Variables:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: admin/classes/tmp/
|
1117 |
-
#: admin/classes/tmp/
|
1118 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1119 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1120 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
msgid "Delete All Logs"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: admin/classes/tmp/
|
1126 |
-
#: admin/classes/tmp/
|
1127 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1128 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1129 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: admin/classes/tmp/
|
1135 |
-
#: admin/classes/tmp/
|
1136 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1137 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1138 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
msgid "Delete All Data"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: admin/classes/tmp/
|
1144 |
-
#: admin/classes/tmp/
|
1145 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1146 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1147 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1148 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1149 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: admin/classes/tmp/
|
1153 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1154 |
msgid ""
|
1155 |
"<strong>Only</strong> registered users have permission to like comments."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: admin/classes/tmp/
|
1159 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1160 |
-
msgid "Customize"
|
1161 |
-
msgstr "Tilpass"
|
1162 |
-
|
1163 |
-
#: admin/classes/tmp/settings.php:290
|
1164 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1165 |
-
msgid "Custom Style"
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: admin/classes/tmp/settings.php:295
|
1169 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1170 |
-
msgid "Active this option to see the custom style settings."
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: admin/classes/tmp/settings.php:299
|
1174 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1175 |
-
msgid "Button style"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1179 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1180 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1181 |
-
msgid "Background"
|
1182 |
-
msgstr "Bakgrunn"
|
1183 |
-
|
1184 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1185 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1186 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1187 |
-
msgid "Border Color"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1191 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1192 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1193 |
-
msgid "Text Color"
|
1194 |
-
msgstr "Tekstfarge"
|
1195 |
-
|
1196 |
-
#: admin/classes/tmp/settings.php:312
|
1197 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1198 |
-
msgid "Counter Style"
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#: admin/classes/tmp/settings.php:325
|
1202 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1203 |
-
msgid "Loading Animation"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: admin/classes/tmp/settings.php:330
|
1207 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1208 |
-
#, fuzzy
|
1209 |
-
msgid "Custom CSS"
|
1210 |
-
msgstr "Tilpass"
|
1211 |
-
|
1212 |
-
#: admin/classes/tmp/settings.php:361
|
1213 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1214 |
msgid "Activity Content"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: admin/classes/tmp/
|
1218 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1219 |
msgid "Activity Meta"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: admin/classes/tmp/
|
1223 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1224 |
msgid "Activity Comment"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: admin/classes/tmp/
|
1228 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1229 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: admin/classes/tmp/
|
1233 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1234 |
msgid ""
|
1235 |
"<strong>Only</strong> registered users have permission to like activities."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: admin/classes/tmp/
|
1239 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1240 |
msgid "BuddyPress Activity"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: admin/classes/tmp/
|
1244 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1245 |
msgid "insert new likes in buddyPress activity page"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: admin/classes/tmp/
|
1249 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1250 |
msgid "BuddyPress Custom Notification"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: admin/classes/tmp/
|
1254 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1255 |
msgid "Sends out notifications when you get a like from someone"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: admin/classes/tmp/
|
1259 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1260 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: admin/classes/tmp/
|
1264 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1265 |
msgid "Users who have liked this topic:"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: admin/
|
1269 |
-
#:
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
#:
|
1274 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
msgid "Logs"
|
1276 |
msgstr "Logger"
|
1277 |
|
1278 |
-
#: admin/logs.php:
|
1279 |
msgid "Are you sure to remove this item?!"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: admin/logs.php:
|
1283 |
-
#: build/wp-ulike/admin/logs.php:
|
1284 |
-
#: build/wp-ulike/admin/logs.php:
|
1285 |
msgid "WP ULike Logs"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: admin/logs.php:
|
1289 |
-
#: build/wp-ulike/admin/logs.php:
|
1290 |
-
#: build/wp-ulike/admin/logs.php:
|
1291 |
msgid "ID"
|
1292 |
msgstr "ID"
|
1293 |
|
1294 |
-
#: admin/logs.php:
|
1295 |
-
#: build/wp-ulike/admin/logs.php:
|
1296 |
-
#: build/wp-ulike/admin/logs.php:
|
1297 |
msgid "Username"
|
1298 |
msgstr "Brukernavn"
|
1299 |
|
1300 |
-
#: admin/logs.php:
|
1301 |
-
#: build/wp-ulike/admin/logs.php:
|
1302 |
-
#: build/wp-ulike/admin/logs.php:
|
1303 |
msgid "Status"
|
1304 |
msgstr "Status"
|
1305 |
|
1306 |
-
#: admin/logs.php:
|
1307 |
msgid "Post ID"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: admin/logs.php:
|
1311 |
msgid "Post Title"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: admin/logs.php:
|
1315 |
-
#: build/wp-ulike/admin/logs.php:
|
1316 |
-
#: build/wp-ulike/admin/logs.php:
|
1317 |
msgid "Date / Time"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: admin/logs.php:
|
1321 |
-
#: build/wp-ulike/admin/logs.php:
|
1322 |
-
#: build/wp-ulike/admin/logs.php:
|
1323 |
msgid "IP"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: admin/logs.php:
|
1327 |
-
#: build/wp-ulike/admin/logs.php:
|
1328 |
-
#: build/wp-ulike/admin/logs.php:
|
1329 |
msgid "Actions"
|
1330 |
msgstr "Handlinger"
|
1331 |
|
1332 |
-
#: admin/logs.php:
|
1333 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1334 |
-
#: build/wp-ulike/admin/logs.php:
|
1335 |
-
#: build/wp-ulike/admin/logs.php:
|
1336 |
msgid "Guest User"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: admin/logs.php:
|
1340 |
-
#: build/wp-ulike/admin/logs.php:
|
1341 |
-
#: build/wp-ulike/admin/logs.php:
|
1342 |
msgid ""
|
1343 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1344 |
"you don't have any data on this table)"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: admin/logs.php:
|
1348 |
msgid "Comment ID"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: admin/logs.php:
|
1352 |
msgid "Comment Author"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
msgid "Comment Text"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: admin/logs.php:
|
1360 |
msgid "Activity ID"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: admin/logs.php:
|
1364 |
msgid "Permalink"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: admin/logs.php:
|
1368 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: admin/logs.php:
|
1372 |
msgid "Topic ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: admin/logs.php:
|
1376 |
msgid "Topic Title"
|
1377 |
msgstr ""
|
1378 |
|
@@ -1493,90 +1517,90 @@ msgstr "Velkommen"
|
|
1493 |
msgid "Days"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1497 |
-
#: inc/classes/class-mycred.php:
|
1498 |
msgid "Points for Liking content"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1502 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1503 |
-
#: inc/classes/class-mycred.php:
|
1504 |
msgid "Limit"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1508 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1509 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1510 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1511 |
-
#: inc/classes/class-mycred.php:
|
1512 |
-
#: inc/classes/class-mycred.php:
|
1513 |
msgid "Log template"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1517 |
-
#: inc/classes/class-mycred.php:
|
1518 |
msgid "Points for Author Who Get Liked"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1522 |
-
#: inc/classes/class-mycred.php:
|
1523 |
msgid "Points for unliking content"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1527 |
-
#: inc/classes/class-mycred.php:
|
1528 |
msgid "Points for Author Who Get Unliked"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1532 |
msgid "WP ULike Activity"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1536 |
msgid "Likes"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1540 |
msgid "You have a new like from"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1544 |
msgid ""
|
1545 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1546 |
"WordPress, bbPress, BuddyPress & ..."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1550 |
msgid "Liking Content"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1554 |
msgid "Liked Content"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1558 |
msgid "Unliking Content"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1562 |
msgid "Unliked Content"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1566 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1567 |
-
#: inc/wp-functions.php:
|
1568 |
msgid "Recent Posts Liked"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1572 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1573 |
-
#: inc/wp-functions.php:
|
1574 |
msgid "Recent Comments Liked"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1578 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1579 |
-
#: inc/wp-functions.php:
|
1580 |
msgid "This user has not made any likes."
|
1581 |
msgstr ""
|
1582 |
|
@@ -1684,41 +1708,45 @@ msgstr ""
|
|
1684 |
msgid "Downvote"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1688 |
-
#: inc/wp-ulike.php:
|
1689 |
msgid "You need to login in order to like this post: "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1693 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1694 |
-
#: inc/wp-ulike.php:
|
1695 |
-
#: inc/wp-ulike.php:
|
1696 |
msgid "click here"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1700 |
msgid "You need to login in order to like this comment: "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1704 |
msgid "You need to login in order to like this activity: "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1708 |
msgid "Error: This Method Is Not Exist!"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: build/wp-ulike/wp-ulike.php:
|
1712 |
#, fuzzy
|
1713 |
msgid "Settings"
|
1714 |
msgstr "Innstillinger lagret."
|
1715 |
|
1716 |
-
#: build/wp-ulike/wp-ulike.php:
|
1717 |
#, fuzzy
|
1718 |
msgid "Statistics"
|
1719 |
msgstr "Status"
|
1720 |
|
1721 |
-
#: build/wp-ulike/wp-ulike.php:
|
1722 |
msgid "About"
|
1723 |
msgstr ""
|
1724 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Welcome to WP ULike"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
29 |
msgid ""
|
30 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
31 |
"powerful version yet."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
35 |
#: build/wp-ulike/admin/stats.php:38
|
36 |
msgid "Visit our homepage"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
40 |
msgid "Version"
|
41 |
msgstr "Versjon"
|
42 |
|
43 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
44 |
msgid "Getting Started"
|
45 |
msgstr "La oss sette i gang"
|
46 |
|
47 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
48 |
msgid "Credits"
|
49 |
msgstr "Kreditter"
|
50 |
|
51 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
52 |
+
#: build/wp-ulike/admin/about.php:40
|
53 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
54 |
#: build/wp-ulike/admin/stats.php:52
|
55 |
msgid "Support"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
59 |
+
#: build/wp-ulike/admin/about.php:41
|
60 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
61 |
#: build/wp-ulike/admin/stats.php:53
|
62 |
msgid "FAQ"
|
63 |
msgstr "Vanlige spørsmål"
|
64 |
|
65 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
66 |
msgid "Reviews"
|
67 |
msgstr "Omtaler"
|
68 |
|
69 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
70 |
msgid "Introducing WP ULike"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
74 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
75 |
#: build/wp-ulike/admin/stats.php:37
|
76 |
msgid "About WP ULike"
|
77 |
msgstr ""
|
84 |
"options."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
88 |
msgid "WP Ulike Extension"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
92 |
msgid ""
|
93 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
94 |
"activities & bbPress Topics."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
98 |
msgid "Added More Than 20 Language Files"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
102 |
msgid ""
|
103 |
"WP ULike is already translated into +20 languages, with more always in "
|
104 |
"progress."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
108 |
msgid "User Profile Links"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
112 |
msgid ""
|
113 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
114 |
"UltimateMember plugins."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
118 |
msgid "New Themes And Styles"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
122 |
msgid ""
|
123 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
124 |
"customize them by your taste."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
128 |
msgid "myCRED Points Support"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
132 |
msgid ""
|
133 |
"myCRED is an adaptive points management system that lets you award / charge "
|
134 |
"your users for interacting with your WordPress."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
138 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
139 |
#: build/wp-ulike/admin/stats.php:395
|
140 |
msgid "Likers World Map"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
144 |
msgid ""
|
145 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
146 |
"likers by their country in the world map & Top Liker widget."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
150 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
151 |
#: build/wp-ulike/admin/stats.php:24
|
152 |
msgid "WP ULike Statistics"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
156 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
159 |
msgid "Home"
|
160 |
msgstr "Hjem"
|
161 |
|
162 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
163 |
msgid "OR"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
167 |
+
#: build/wp-ulike/admin/admin.php:73
|
168 |
msgid "WP ULike Settings"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
172 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
176 |
msgid "Project Leaders"
|
177 |
msgstr "Prosjektledere"
|
178 |
|
179 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
180 |
msgid "Project Lead & Developer"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
184 |
msgid "Translations"
|
185 |
msgstr "Oversettelser"
|
186 |
|
187 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
188 |
msgid "Would you like to help translate the plugin into more languages?"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
192 |
msgid "Join our WP-Translations Community"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
196 |
msgid "Other Plugins"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
200 |
+
msgid "Like this plugin?"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
204 |
+
#: build/wp-ulike/admin/admin.php:309
|
205 |
+
msgid ""
|
206 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
207 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
208 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
209 |
+
"discover it too!"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
213 |
+
#: build/wp-ulike/admin/admin.php:311
|
214 |
+
msgid "Sure, I'd love to!"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
218 |
msgid ""
|
219 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
220 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
225 |
msgid "WP ULike"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
229 |
msgid "Settings saved."
|
230 |
msgstr "Innstillinger lagret."
|
231 |
|
232 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
233 |
+
#: build/wp-ulike/admin/admin.php:157
|
234 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
238 |
+
#: build/wp-ulike/admin/admin.php:159
|
239 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
243 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
244 |
#: build/wp-ulike/admin/stats.php:43
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
249 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
250 |
#: build/wp-ulike/admin/stats.php:44
|
251 |
msgid "Comment Likes Logs"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
255 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
256 |
#: build/wp-ulike/admin/stats.php:45
|
257 |
msgid "Activity Likes Logs"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
261 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
262 |
#: build/wp-ulike/admin/stats.php:46
|
263 |
msgid "Topics Likes Logs"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
267 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
268 |
msgid "Default"
|
269 |
msgstr "Standard"
|
270 |
|
271 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
272 |
+
#: build/wp-ulike/admin/admin.php:232
|
273 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
274 |
msgid "Heart"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
278 |
msgid "Robeen"
|
279 |
msgstr ""
|
280 |
|
299 |
msgid "Similar Settings"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
303 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
304 |
+
#: admin/classes/tmp/options.php:451
|
305 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
306 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
307 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
308 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
309 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
310 |
msgid "Logging Method"
|
311 |
msgstr ""
|
312 |
|
336 |
#: admin/classes/class-settings.php:53
|
337 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
338 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
340 |
"is saved for registered users, the convey of like/dislike condition will "
|
341 |
"check by username, There is no permission for guest users to unlike/undislike"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin/classes/class-settings.php:56
|
345 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
346 |
msgid "Template Variables"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/classes/class-settings.php:58
|
350 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
351 |
msgid "Start the loop of logs"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
355 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
357 |
msgid "required"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/classes/class-settings.php:59
|
361 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
362 |
msgid "End of the while loop"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
366 |
+
#: admin/classes/class-settings.php:68
|
367 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
368 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
369 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
370 |
msgid "Display the liker name"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/classes/class-settings.php:61
|
374 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
375 |
msgid "Display the liker avatar (By Gravatar)"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/classes/class-settings.php:62
|
379 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
380 |
msgid "Display the BuddyPress user profile url"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/classes/class-settings.php:63
|
384 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
385 |
msgid "Display the UltimateMemebr user profile url"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
389 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
390 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
391 |
msgid "Display the permalink"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
395 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
396 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
397 |
msgid "Display the likes count number"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/classes/class-settings.php:67
|
401 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
402 |
msgid "Display the post title"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/classes/class-settings.php:70
|
406 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
407 |
msgid "Display the comment author name"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
411 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
412 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
413 |
msgid "Posts"
|
414 |
msgstr "Innlegg"
|
415 |
|
416 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
417 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
418 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
419 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
420 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
422 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
423 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
424 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
425 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
426 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
427 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
428 |
msgid "Automatic display"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/classes/class-settings.php:81
|
432 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
433 |
msgid ""
|
434 |
"If you disable this option, you have to put manually this code on wordpress "
|
435 |
"while loop"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
439 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
440 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
441 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
442 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
443 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
444 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
446 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
447 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
448 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
450 |
msgid "Users Like Box Template"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
454 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
455 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
456 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
457 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
458 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
459 |
msgid "Default Template:"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
463 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
464 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
465 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
466 |
+
#: inc/classes/class-ulike.php:607
|
467 |
msgid "Users who have LIKED this post:"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
471 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
472 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
473 |
msgid "Comments"
|
474 |
msgstr "Kommentarer"
|
475 |
|
476 |
+
#: admin/classes/class-settings.php:90
|
477 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
478 |
msgid ""
|
479 |
"If you disable this option, you have to put manually this code on comments "
|
480 |
"text"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
484 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
485 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
486 |
msgid "Users who have LIKED this comment:"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
490 |
+
#: admin/classes/tmp/options.php:301
|
491 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
492 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
493 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
494 |
msgid "BuddyPress"
|
495 |
msgstr "BuddyPress"
|
496 |
|
497 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
498 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
499 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
500 |
msgid ""
|
501 |
"If you disable this option, you have to put manually this code on buddypres "
|
502 |
"activities content"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
506 |
+
#: admin/classes/tmp/options.php:370
|
507 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
508 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
509 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
510 |
msgid "Users who have liked this activity:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
514 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
515 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
516 |
msgid "Post Activity Text"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
520 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
521 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
522 |
msgid "Comment Activity Text"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
526 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
527 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
528 |
msgid "bbPress"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/classes/class-settings.php:111
|
532 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
533 |
msgid "For more information:"
|
534 |
msgstr "For mer informasjon:"
|
535 |
|
536 |
+
#: admin/classes/class-settings.php:170
|
537 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
538 |
msgid "Default settings have been reset."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/classes/class-settings.php:244
|
542 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
543 |
msgid ""
|
544 |
"Do you really want to reset all these settings to their default values ?"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
548 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
549 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
550 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
551 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
552 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/classes/class-settings.php:347
|
557 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
558 |
msgid "Select %s"
|
559 |
msgstr "Velg %s"
|
560 |
|
561 |
+
#: admin/classes/class-settings.php:348
|
562 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/classes/class-settings.php:372
|
567 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/classes/class-widget.php:130
|
583 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
584 |
msgid "on"
|
585 |
msgstr "on"
|
586 |
|
587 |
+
#: admin/classes/class-widget.php:191
|
588 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
593 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
594 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
595 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
596 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
597 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/classes/class-widget.php:515
|
603 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/classes/class-widget.php:530
|
608 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
609 |
msgid "Title:"
|
610 |
msgstr "Tittel:"
|
611 |
|
612 |
+
#: admin/classes/class-widget.php:535
|
613 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
614 |
msgid "Type:"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
618 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
625 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
632 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
638 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/classes/class-widget.php:541
|
644 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/classes/class-widget.php:542
|
650 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/classes/class-widget.php:547
|
655 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
656 |
+
msgid "Number of items to show:"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: admin/classes/class-widget.php:552
|
660 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
661 |
msgid "Period:"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/classes/class-widget.php:554
|
665 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
666 |
msgid "All The Times"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: admin/classes/class-widget.php:555
|
670 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
671 |
msgid "Year"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
675 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
676 |
#: build/wp-ulike/admin/stats.php:154
|
677 |
msgid "Month"
|
678 |
msgstr "Måned"
|
679 |
|
680 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
681 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
682 |
#: build/wp-ulike/admin/stats.php:149
|
683 |
msgid "Week"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
687 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
688 |
#: build/wp-ulike/admin/stats.php:144
|
689 |
msgid "Yesterday"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
693 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
694 |
#: build/wp-ulike/admin/stats.php:139
|
695 |
msgid "Today"
|
696 |
msgstr "I dag"
|
697 |
|
698 |
+
#: admin/classes/class-widget.php:564
|
699 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
700 |
msgid "Style:"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: admin/classes/class-widget.php:566
|
704 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
705 |
msgid "Simple"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: admin/classes/class-widget.php:572
|
709 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
710 |
msgid "Title Trim (Length):"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: admin/classes/class-widget.php:578
|
714 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
msgid "Profile URL:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: admin/classes/class-widget.php:581
|
719 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
720 |
msgid "UltimateMember"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: admin/classes/class-widget.php:587
|
724 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
725 |
msgid "Activate Like Counter"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: admin/classes/class-widget.php:592
|
729 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
730 |
msgid "Activate Thumbnail/Avatar"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: admin/classes/class-widget.php:596
|
734 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
735 |
+
msgid "Thumbnail/Avatar size:"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: admin/classes/tmp/options.php:11
|
739 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
740 |
msgid "General"
|
741 |
msgstr "Generelt"
|
742 |
|
743 |
+
#: admin/classes/tmp/options.php:15
|
744 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/classes/tmp/options.php:19
|
749 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
750 |
msgid "Icon"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: admin/classes/tmp/options.php:23
|
754 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
755 |
msgid "Text"
|
756 |
msgstr "Tekst"
|
757 |
|
758 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
759 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
760 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
765 |
+
#: admin/classes/tmp/options.php:43
|
766 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
767 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
768 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
773 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
774 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
779 |
+
#: admin/classes/tmp/options.php:543
|
780 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
781 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
782 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: admin/classes/tmp/options.php:47
|
787 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: admin/classes/tmp/options.php:48
|
792 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: admin/classes/tmp/options.php:52
|
797 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: admin/classes/tmp/options.php:55
|
802 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: admin/classes/tmp/options.php:56
|
807 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: admin/classes/tmp/options.php:60
|
812 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: admin/classes/tmp/options.php:61
|
817 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: admin/classes/tmp/options.php:65
|
822 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
823 |
+
msgid "Disable Plugin Files"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
827 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
828 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
829 |
+
msgid "Single Posts"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
833 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
834 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
835 |
+
msgid "Pages"
|
836 |
+
msgstr "Sider"
|
837 |
+
|
838 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
839 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
840 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
841 |
+
msgid "Archives"
|
842 |
+
msgstr "Arkiv"
|
843 |
+
|
844 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
845 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
846 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
847 |
+
msgid "Categories"
|
848 |
+
msgstr "Kategorier"
|
849 |
+
|
850 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
851 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
852 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
853 |
+
msgid "Search Results"
|
854 |
+
msgstr "Søkeresultater"
|
855 |
+
|
856 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
857 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
858 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
859 |
+
msgid "Tags"
|
860 |
+
msgstr "Stikkord"
|
861 |
+
|
862 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
863 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
864 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
865 |
+
msgid "Author Page"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: admin/classes/tmp/options.php:75
|
869 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
870 |
+
#, fuzzy
|
871 |
+
msgid "BuddyPress Pages"
|
872 |
+
msgstr "BuddyPress"
|
873 |
+
|
874 |
+
#: admin/classes/tmp/options.php:76
|
875 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
876 |
+
msgid "bbPress Pages"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: admin/classes/tmp/options.php:77
|
880 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
881 |
+
msgid "WooCommerce Pages"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: admin/classes/tmp/options.php:79
|
885 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
886 |
+
msgid "Remove the plugin's css and js file on these pages."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: admin/classes/tmp/options.php:84
|
890 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
891 |
msgid "Format Number"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
895 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
896 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
897 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
898 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
899 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
900 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
901 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
902 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
903 |
+
#: admin/classes/tmp/options.php:508
|
904 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
905 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
907 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
920 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
922 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
923 |
msgid "Activate"
|
924 |
msgstr "Aktiver"
|
925 |
|
926 |
+
#: admin/classes/tmp/options.php:86
|
927 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
928 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: admin/classes/tmp/options.php:91
|
932 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
933 |
#, fuzzy
|
934 |
msgid "Notifications"
|
935 |
msgstr "Handlinger"
|
936 |
|
937 |
+
#: admin/classes/tmp/options.php:93
|
938 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
939 |
msgid "Custom toast messages after each activity"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: admin/classes/tmp/options.php:96
|
943 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
944 |
msgid "Thanks! You Liked This."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: admin/classes/tmp/options.php:97
|
948 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
949 |
msgid "Liked Notice Message"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: admin/classes/tmp/options.php:100
|
953 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
954 |
msgid "Sorry! You unliked this."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: admin/classes/tmp/options.php:101
|
958 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
959 |
msgid "Unliked Notice Message"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
963 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
964 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
965 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
966 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
967 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
968 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
969 |
msgid "Themes"
|
970 |
msgstr "Temaer"
|
971 |
|
972 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
973 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
974 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
975 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
976 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
977 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
978 |
msgid "Auto Display Position"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
982 |
+
#: admin/classes/tmp/options.php:437
|
983 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
984 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
985 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
986 |
msgid "Top of Content"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
990 |
+
#: admin/classes/tmp/options.php:438
|
991 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
992 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
993 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
994 |
msgid "Bottom of Content"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
998 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
999 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1000 |
msgid "Top and Bottom"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: admin/classes/tmp/options.php:135
|
1004 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1005 |
msgid "Auto Display Filter"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: admin/classes/tmp/options.php:146
|
1009 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid "You can filter theses pages on auto display option."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: admin/classes/tmp/options.php:151
|
1014 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1015 |
msgid "Google Rich Snippets"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: admin/classes/tmp/options.php:153
|
1019 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1020 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1024 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1025 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1026 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1027 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1028 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1029 |
msgid "Only registered Users"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: admin/classes/tmp/options.php:160
|
1033 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1034 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1038 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1039 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1040 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1041 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1042 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1043 |
msgid "Do Not Log"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1047 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1048 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1049 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1050 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1051 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1052 |
msgid "Logged By Cookie"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1056 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1057 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1058 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1059 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1060 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1061 |
msgid "Logged By IP"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1065 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1066 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1067 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1068 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1069 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
msgid "Logged By Username"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1074 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1075 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1076 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1077 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1078 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1079 |
msgid "Show Liked Users Box"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1083 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1084 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1085 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1086 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1087 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1088 |
msgid ""
|
1089 |
"Active this option to show liked users avatars in the bottom of button like."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1093 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1094 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1095 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1096 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1097 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1098 |
msgid "Size of Gravatars"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1102 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1103 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1104 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1105 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1106 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1107 |
msgid "Size of Gravatars to return (max is 512)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1111 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1112 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1113 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1114 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1115 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1116 |
msgid "Number Of The Users"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1120 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1121 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1122 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1123 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1124 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1125 |
msgid "The number of users to show in the users liked box"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1129 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1130 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1131 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1133 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1134 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1136 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1137 |
msgid "Allowed Variables:"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1141 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1142 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1143 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1144 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1145 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1146 |
msgid "Delete All Logs"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1150 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1151 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1152 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1153 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1154 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1155 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1159 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1160 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1162 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1163 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1164 |
msgid "Delete All Data"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1168 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1169 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1170 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1171 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1172 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1173 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: admin/classes/tmp/options.php:245
|
1177 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1178 |
msgid ""
|
1179 |
"<strong>Only</strong> registered users have permission to like comments."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: admin/classes/tmp/options.php:320
|
1183 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid "Activity Content"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: admin/classes/tmp/options.php:321
|
1188 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1189 |
msgid "Activity Meta"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: admin/classes/tmp/options.php:327
|
1193 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1194 |
msgid "Activity Comment"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: admin/classes/tmp/options.php:329
|
1198 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1199 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: admin/classes/tmp/options.php:336
|
1203 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1204 |
msgid ""
|
1205 |
"<strong>Only</strong> registered users have permission to like activities."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: admin/classes/tmp/options.php:377
|
1209 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1210 |
msgid "BuddyPress Activity"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: admin/classes/tmp/options.php:379
|
1214 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1215 |
msgid "insert new likes in buddyPress activity page"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: admin/classes/tmp/options.php:384
|
1219 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1220 |
msgid "BuddyPress Custom Notification"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: admin/classes/tmp/options.php:386
|
1224 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1225 |
msgid "Sends out notifications when you get a like from someone"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: admin/classes/tmp/options.php:446
|
1229 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1230 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: admin/classes/tmp/options.php:480
|
1234 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1235 |
msgid "Users who have liked this topic:"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: admin/classes/tmp/options.php:502
|
1239 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1240 |
+
msgid "Customize"
|
1241 |
+
msgstr "Tilpass"
|
1242 |
+
|
1243 |
+
#: admin/classes/tmp/options.php:507
|
1244 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1245 |
+
msgid "Custom Style"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: admin/classes/tmp/options.php:512
|
1249 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1250 |
+
msgid "Active this option to see the custom style settings."
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: admin/classes/tmp/options.php:516
|
1254 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1255 |
+
msgid "Button style"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1259 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1260 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1261 |
+
msgid "Background"
|
1262 |
+
msgstr "Bakgrunn"
|
1263 |
+
|
1264 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1265 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1266 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1267 |
+
msgid "Border Color"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1271 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1272 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1273 |
+
msgid "Text Color"
|
1274 |
+
msgstr "Tekstfarge"
|
1275 |
+
|
1276 |
+
#: admin/classes/tmp/options.php:529
|
1277 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1278 |
+
msgid "Counter Style"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: admin/classes/tmp/options.php:542
|
1282 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1283 |
+
msgid "Loading Animation"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: admin/classes/tmp/options.php:547
|
1287 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1288 |
+
#, fuzzy
|
1289 |
+
msgid "Custom CSS"
|
1290 |
+
msgstr "Tilpass"
|
1291 |
+
|
1292 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1293 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1294 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1295 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1296 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1297 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1298 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1299 |
msgid "Logs"
|
1300 |
msgstr "Logger"
|
1301 |
|
1302 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1303 |
msgid "Are you sure to remove this item?!"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1307 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1308 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1309 |
msgid "WP ULike Logs"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1313 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1314 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1315 |
msgid "ID"
|
1316 |
msgstr "ID"
|
1317 |
|
1318 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1319 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1320 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1321 |
msgid "Username"
|
1322 |
msgstr "Brukernavn"
|
1323 |
|
1324 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1325 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1326 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1327 |
msgid "Status"
|
1328 |
msgstr "Status"
|
1329 |
|
1330 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1331 |
msgid "Post ID"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1335 |
msgid "Post Title"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1339 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1340 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1341 |
msgid "Date / Time"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1345 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1346 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1347 |
msgid "IP"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1351 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1352 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1353 |
msgid "Actions"
|
1354 |
msgstr "Handlinger"
|
1355 |
|
1356 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1357 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1358 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1359 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1360 |
msgid "Guest User"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1364 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1365 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1366 |
msgid ""
|
1367 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1368 |
"you don't have any data on this table)"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1372 |
msgid "Comment ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1376 |
msgid "Comment Author"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1380 |
msgid "Comment Text"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1384 |
msgid "Activity ID"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1388 |
msgid "Permalink"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1392 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1396 |
msgid "Topic ID"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1400 |
msgid "Topic Title"
|
1401 |
msgstr ""
|
1402 |
|
1517 |
msgid "Days"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1521 |
+
#: inc/classes/class-mycred.php:211
|
1522 |
msgid "Points for Liking content"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1526 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1527 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1528 |
msgid "Limit"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1532 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1533 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1534 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1535 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1536 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1537 |
msgid "Log template"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1541 |
+
#: inc/classes/class-mycred.php:228
|
1542 |
msgid "Points for Author Who Get Liked"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1546 |
+
#: inc/classes/class-mycred.php:245
|
1547 |
msgid "Points for unliking content"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1551 |
+
#: inc/classes/class-mycred.php:257
|
1552 |
msgid "Points for Author Who Get Unliked"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1556 |
msgid "WP ULike Activity"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1560 |
msgid "Likes"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1564 |
msgid "You have a new like from"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1568 |
msgid ""
|
1569 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1570 |
"WordPress, bbPress, BuddyPress & ..."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1574 |
msgid "Liking Content"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1578 |
msgid "Liked Content"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1582 |
msgid "Unliking Content"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1586 |
msgid "Unliked Content"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1590 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1591 |
+
#: inc/wp-functions.php:690
|
1592 |
msgid "Recent Posts Liked"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1597 |
+
#: inc/wp-functions.php:730
|
1598 |
msgid "Recent Comments Liked"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1602 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1603 |
+
#: inc/wp-functions.php:747
|
1604 |
msgid "This user has not made any likes."
|
1605 |
msgstr ""
|
1606 |
|
1708 |
msgid "Downvote"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1712 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1713 |
msgid "You need to login in order to like this post: "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1717 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1718 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1719 |
+
#: inc/wp-ulike.php:281
|
1720 |
msgid "click here"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1724 |
msgid "You need to login in order to like this comment: "
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1728 |
msgid "You need to login in order to like this activity: "
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1732 |
+
msgid "Error: Something Wrong Happened!"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1736 |
msgid "Error: This Method Is Not Exist!"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1740 |
#, fuzzy
|
1741 |
msgid "Settings"
|
1742 |
msgstr "Innstillinger lagret."
|
1743 |
|
1744 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1745 |
#, fuzzy
|
1746 |
msgid "Statistics"
|
1747 |
msgstr "Status"
|
1748 |
|
1749 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1750 |
msgid "About"
|
1751 |
msgstr ""
|
1752 |
|
lang/wp-ulike-ar.mo
CHANGED
Binary file
|
lang/wp-ulike-ar.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
7 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
8 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
@@ -17,25 +17,11 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
-
#: admin/about.php:
|
21 |
-
#: build/wp-ulike/admin/about.php:290
|
22 |
-
msgid "Like this plugin?"
|
23 |
-
msgstr "کم اعجبتک الاضافة؟!؟ :)"
|
24 |
-
|
25 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
26 |
-
#: build/wp-ulike/admin/about.php:291
|
27 |
-
msgid ""
|
28 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
29 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
30 |
-
msgstr ""
|
31 |
-
"للحمایة من هذه الاضافة، قیمها بخمس 5 نحوم <a href=\"http://wordpress.org/"
|
32 |
-
"plugins/wp-ulike\"> فی وردبرس</a> "
|
33 |
-
|
34 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
35 |
msgid "Welcome to WP ULike"
|
36 |
msgstr "مرحبا بكم في وردبرس یولایک "
|
37 |
|
38 |
-
#: admin/about.php:
|
39 |
msgid ""
|
40 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
41 |
"powerful version yet."
|
@@ -43,48 +29,48 @@ msgstr ""
|
|
43 |
"شكرًا لك لاستخدامك وردبرس یولایک ! النسخة الجدیدة من هذه الاضافة،اقوى و "
|
44 |
"محترفة..."
|
45 |
|
46 |
-
#: admin/about.php:
|
47 |
#: build/wp-ulike/admin/stats.php:38
|
48 |
msgid "Visit our homepage"
|
49 |
msgstr "مشاهدة صفحة الاضافة"
|
50 |
|
51 |
-
#: admin/about.php:
|
52 |
msgid "Version"
|
53 |
msgstr "النسخة"
|
54 |
|
55 |
-
#: admin/about.php:
|
56 |
msgid "Getting Started"
|
57 |
msgstr "بدء"
|
58 |
|
59 |
-
#: admin/about.php:
|
60 |
msgid "Credits"
|
61 |
msgstr "قادة المشروع"
|
62 |
|
63 |
-
#: admin/about.php:
|
64 |
-
#: build/wp-ulike/admin/about.php:
|
65 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
66 |
#: build/wp-ulike/admin/stats.php:52
|
67 |
msgid "Support"
|
68 |
msgstr "دعم"
|
69 |
|
70 |
-
#: admin/about.php:
|
71 |
-
#: build/wp-ulike/admin/about.php:
|
72 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
73 |
#: build/wp-ulike/admin/stats.php:53
|
74 |
msgid "FAQ"
|
75 |
msgstr "أسئلة متداولة"
|
76 |
|
77 |
-
#: admin/about.php:
|
78 |
msgid "Reviews"
|
79 |
msgstr "التقييم"
|
80 |
|
81 |
-
#: admin/about.php:
|
82 |
#, fuzzy
|
83 |
msgid "Introducing WP ULike"
|
84 |
msgstr "حول وردبرس یولایک"
|
85 |
|
86 |
-
#: admin/about.php:
|
87 |
-
#: build/wp-ulike/admin/about.php:
|
88 |
#: build/wp-ulike/admin/stats.php:37
|
89 |
msgid "About WP ULike"
|
90 |
msgstr "حول وردبرس یولایک"
|
@@ -103,121 +89,140 @@ msgstr ""
|
|
103 |
"المنشورات و التعالیق ، و النشطاة الاکثر اعجابا\" علی بادی برس تخصیص النمط و "
|
104 |
"الاستایلات للاضافةو..."
|
105 |
|
106 |
-
#: admin/about.php:
|
107 |
#, fuzzy
|
108 |
msgid "WP Ulike Extension"
|
109 |
msgstr "اعدادات وردبرس یولایک"
|
110 |
|
111 |
-
#: admin/about.php:
|
112 |
msgid ""
|
113 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
114 |
"activities & bbPress Topics."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/about.php:
|
118 |
msgid "Added More Than 20 Language Files"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/about.php:
|
122 |
msgid ""
|
123 |
"WP ULike is already translated into +20 languages, with more always in "
|
124 |
"progress."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin/about.php:
|
128 |
msgid "User Profile Links"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin/about.php:
|
132 |
msgid ""
|
133 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
134 |
"UltimateMember plugins."
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/about.php:
|
138 |
msgid "New Themes And Styles"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/about.php:
|
142 |
msgid ""
|
143 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
144 |
"customize them by your taste."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin/about.php:
|
148 |
#, fuzzy
|
149 |
msgid "myCRED Points Support"
|
150 |
msgstr "الدعم من الغاء الاعجاب"
|
151 |
|
152 |
-
#: admin/about.php:
|
153 |
msgid ""
|
154 |
"myCRED is an adaptive points management system that lets you award / charge "
|
155 |
"your users for interacting with your WordPress."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin/about.php:
|
159 |
-
#: build/wp-ulike/admin/about.php:
|
160 |
#: build/wp-ulike/admin/stats.php:395
|
161 |
msgid "Likers World Map"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin/about.php:
|
165 |
msgid ""
|
166 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
167 |
"likers by their country in the world map & Top Liker widget."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin/about.php:
|
171 |
-
#: build/wp-ulike/admin/about.php:
|
172 |
#: build/wp-ulike/admin/stats.php:24
|
173 |
msgid "WP ULike Statistics"
|
174 |
msgstr "الاحصائیات وردپرس یولایک"
|
175 |
|
176 |
-
#: admin/about.php:
|
177 |
-
#: build/wp-ulike/admin/about.php:
|
178 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
179 |
msgid "Home"
|
180 |
msgstr "الرئیسیة"
|
181 |
|
182 |
-
#: admin/about.php:
|
183 |
msgid "OR"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin/about.php:
|
187 |
-
#: build/wp-ulike/admin/admin.php:
|
188 |
msgid "WP ULike Settings"
|
189 |
msgstr "اعدادات وردبرس یولایک"
|
190 |
|
191 |
-
#: admin/about.php:
|
192 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
193 |
msgstr ""
|
194 |
"قضینا وقت کثیر لانشاء وردبرس یولایک بحب و اهتمام . نآمل أن تستمتع به :)"
|
195 |
|
196 |
-
#: admin/about.php:
|
197 |
msgid "Project Leaders"
|
198 |
msgstr "قادة المشروع"
|
199 |
|
200 |
-
#: admin/about.php:
|
201 |
msgid "Project Lead & Developer"
|
202 |
msgstr "ساهموا في التطوير"
|
203 |
|
204 |
-
#: admin/about.php:
|
205 |
msgid "Translations"
|
206 |
msgstr "الترجمة"
|
207 |
|
208 |
-
#: admin/about.php:
|
209 |
msgid "Would you like to help translate the plugin into more languages?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin/about.php:
|
213 |
msgid "Join our WP-Translations Community"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/about.php:
|
217 |
msgid "Other Plugins"
|
218 |
msgstr "اضافات اخری"
|
219 |
|
220 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
msgid ""
|
222 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
223 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -231,57 +236,57 @@ msgstr ""
|
|
231 |
msgid "WP ULike"
|
232 |
msgstr "وردبرس یولایک"
|
233 |
|
234 |
-
#: admin/admin.php:
|
235 |
msgid "Settings saved."
|
236 |
msgstr "تم حفظ التغییرات"
|
237 |
|
238 |
-
#: admin/admin.php:
|
239 |
-
#: build/wp-ulike/admin/admin.php:
|
240 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: admin/admin.php:
|
244 |
-
#: build/wp-ulike/admin/admin.php:
|
245 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin/admin.php:
|
249 |
-
#: build/wp-ulike/admin/admin.php:
|
250 |
#: build/wp-ulike/admin/stats.php:43
|
251 |
msgid "Post Likes Logs"
|
252 |
msgstr "احداث الاعجابات في المنشورات"
|
253 |
|
254 |
-
#: admin/admin.php:
|
255 |
-
#: build/wp-ulike/admin/admin.php:
|
256 |
#: build/wp-ulike/admin/stats.php:44
|
257 |
msgid "Comment Likes Logs"
|
258 |
msgstr "احداث الاعجابات في التعالیق"
|
259 |
|
260 |
-
#: admin/admin.php:
|
261 |
-
#: build/wp-ulike/admin/admin.php:
|
262 |
#: build/wp-ulike/admin/stats.php:45
|
263 |
msgid "Activity Likes Logs"
|
264 |
msgstr "احداث الاعجابات في الانشطة"
|
265 |
|
266 |
-
#: admin/admin.php:
|
267 |
-
#: build/wp-ulike/admin/admin.php:
|
268 |
#: build/wp-ulike/admin/stats.php:46
|
269 |
#, fuzzy
|
270 |
msgid "Topics Likes Logs"
|
271 |
msgstr "احداث الاعجابات في المنشورات"
|
272 |
|
273 |
-
#: admin/admin.php:
|
274 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
275 |
msgid "Default"
|
276 |
msgstr "افتراضي"
|
277 |
|
278 |
-
#: admin/admin.php:
|
279 |
-
#: build/wp-ulike/admin/admin.php:
|
280 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
281 |
msgid "Heart"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin/admin.php:
|
285 |
msgid "Robeen"
|
286 |
msgstr ""
|
287 |
|
@@ -307,14 +312,14 @@ msgstr " إعادة الاعدادات"
|
|
307 |
msgid "Similar Settings"
|
308 |
msgstr "حفظ التغییرات"
|
309 |
|
310 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
311 |
-
#: admin/classes/tmp/
|
312 |
-
#: admin/classes/tmp/
|
313 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
314 |
-
#: build/wp-ulike/admin/classes/tmp/
|
315 |
-
#: build/wp-ulike/admin/classes/tmp/
|
316 |
-
#: build/wp-ulike/admin/classes/tmp/
|
317 |
-
#: build/wp-ulike/admin/classes/tmp/
|
318 |
msgid "Logging Method"
|
319 |
msgstr "طريقة تسجيل"
|
320 |
|
@@ -352,16 +357,6 @@ msgstr ""
|
|
352 |
#: admin/classes/class-settings.php:53
|
353 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
354 |
msgid ""
|
355 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
356 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
357 |
-
"user IP & SetCookie"
|
358 |
-
msgstr ""
|
359 |
-
"إذا قمت بتحديد <strong>\"کوکي و آي بي \"</strong> :یتم تسجیل احداث "
|
360 |
-
"المستخدمین،وشروط اعمال الاعجاب /الغاء الاعجاب یتم فحصهن بواسطة کوکي و آي بي"
|
361 |
-
|
362 |
-
#: admin/classes/class-settings.php:54
|
363 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
364 |
-
msgid ""
|
365 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
366 |
"is saved for registered users, the convey of like/dislike condition will "
|
367 |
"check by username, There is no permission for guest users to unlike/undislike"
|
@@ -370,96 +365,96 @@ msgstr ""
|
|
370 |
"المستخدمین للاعضاء فقط،وشروط اعمال الاعجاب /الغاء الاعجاب یتم فحصهن بواسطة "
|
371 |
"اسم المستخدم ، و المستخدمین الضیوف لم یسمح لهم بالغاء الاعجاب."
|
372 |
|
373 |
-
#: admin/classes/class-settings.php:
|
374 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
375 |
#, fuzzy
|
376 |
msgid "Template Variables"
|
377 |
msgstr "المتغیرات المسموحة :"
|
378 |
|
379 |
-
#: admin/classes/class-settings.php:
|
380 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
381 |
msgid "Start the loop of logs"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/classes/class-settings.php:
|
|
|
385 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
386 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
387 |
msgid "required"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/classes/class-settings.php:
|
391 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
392 |
msgid "End of the while loop"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/classes/class-settings.php:
|
396 |
-
#: admin/classes/class-settings.php:
|
397 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
398 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
399 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
400 |
msgid "Display the liker name"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/classes/class-settings.php:
|
404 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
405 |
msgid "Display the liker avatar (By Gravatar)"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin/classes/class-settings.php:
|
409 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
410 |
msgid "Display the BuddyPress user profile url"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin/classes/class-settings.php:
|
414 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
415 |
msgid "Display the UltimateMemebr user profile url"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin/classes/class-settings.php:
|
419 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
420 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
421 |
msgid "Display the permalink"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
426 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
427 |
msgid "Display the likes count number"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/classes/class-settings.php:
|
431 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
432 |
msgid "Display the post title"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/classes/class-settings.php:
|
436 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
437 |
msgid "Display the comment author name"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/classes/class-settings.php:
|
441 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
442 |
-
#: build/wp-ulike/admin/classes/tmp/
|
443 |
msgid "Posts"
|
444 |
msgstr "المقالات "
|
445 |
|
446 |
-
#: admin/classes/class-settings.php:
|
447 |
-
#: admin/classes/class-settings.php:
|
448 |
-
#: admin/classes/tmp/
|
449 |
-
#: admin/classes/tmp/
|
450 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
451 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
452 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
453 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
454 |
-
#: build/wp-ulike/admin/classes/tmp/
|
455 |
-
#: build/wp-ulike/admin/classes/tmp/
|
456 |
-
#: build/wp-ulike/admin/classes/tmp/
|
457 |
-
#: build/wp-ulike/admin/classes/tmp/
|
458 |
msgid "Automatic display"
|
459 |
msgstr "عرض تلقائي"
|
460 |
|
461 |
-
#: admin/classes/class-settings.php:
|
462 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
463 |
msgid ""
|
464 |
"If you disable this option, you have to put manually this code on wordpress "
|
465 |
"while loop"
|
@@ -467,137 +462,138 @@ msgstr ""
|
|
467 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة "
|
468 |
"المنشورات الوردبرس"
|
469 |
|
470 |
-
#: admin/classes/class-settings.php:
|
471 |
-
#: admin/classes/class-settings.php:
|
472 |
-
#: admin/classes/tmp/
|
473 |
-
#: admin/classes/tmp/
|
474 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
475 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
476 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
477 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
478 |
-
#: build/wp-ulike/admin/classes/tmp/
|
479 |
-
#: build/wp-ulike/admin/classes/tmp/
|
480 |
-
#: build/wp-ulike/admin/classes/tmp/
|
481 |
-
#: build/wp-ulike/admin/classes/tmp/
|
482 |
msgid "Users Like Box Template"
|
483 |
msgstr "قالب صندوق المستخدمین"
|
484 |
|
485 |
-
#: admin/classes/class-settings.php:
|
486 |
-
#: admin/classes/class-settings.php:
|
487 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
488 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
489 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
490 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
491 |
msgid "Default Template:"
|
492 |
msgstr "القالب الافتراضي:"
|
493 |
|
494 |
-
#: admin/classes/class-settings.php:
|
495 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
496 |
-
#: build/wp-ulike/admin/classes/tmp/
|
497 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
498 |
-
#: inc/classes/class-ulike.php:
|
499 |
msgid "Users who have LIKED this post:"
|
500 |
msgstr "المستخدمين المعجبین بهذا ::"
|
501 |
|
502 |
-
#: admin/classes/class-settings.php:
|
503 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
504 |
-
#: build/wp-ulike/admin/classes/tmp/
|
505 |
msgid "Comments"
|
506 |
msgstr "التعالیقات"
|
507 |
|
508 |
-
#: admin/classes/class-settings.php:
|
509 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
510 |
msgid ""
|
511 |
"If you disable this option, you have to put manually this code on comments "
|
512 |
"text"
|
513 |
msgstr ""
|
514 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة التعالیق"
|
515 |
|
516 |
-
#: admin/classes/class-settings.php:
|
517 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
518 |
-
#: build/wp-ulike/admin/classes/tmp/
|
519 |
msgid "Users who have LIKED this comment:"
|
520 |
msgstr "المعجبین بهذا التعلیق :"
|
521 |
|
522 |
-
#: admin/classes/class-settings.php:
|
523 |
-
#: admin/classes/tmp/
|
524 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
525 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
526 |
-
#: build/wp-ulike/admin/classes/tmp/
|
527 |
msgid "BuddyPress"
|
528 |
msgstr "بادي برس"
|
529 |
|
530 |
-
#: admin/classes/class-settings.php:
|
531 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
532 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
533 |
msgid ""
|
534 |
"If you disable this option, you have to put manually this code on buddypres "
|
535 |
"activities content"
|
536 |
msgstr ""
|
537 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة الانشطة"
|
538 |
|
539 |
-
#: admin/classes/class-settings.php:
|
540 |
-
#: admin/classes/tmp/
|
541 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
542 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
543 |
-
#: build/wp-ulike/admin/classes/tmp/
|
544 |
msgid "Users who have liked this activity:"
|
545 |
msgstr "المستخدمین المعجبین بهذا :"
|
546 |
|
547 |
-
#: admin/classes/class-settings.php:
|
548 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
549 |
-
#: build/wp-ulike/admin/classes/tmp/
|
550 |
msgid "Post Activity Text"
|
551 |
msgstr "النص لنشاطات المنشور :"
|
552 |
|
553 |
-
#: admin/classes/class-settings.php:
|
554 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
555 |
-
#: build/wp-ulike/admin/classes/tmp/
|
556 |
msgid "Comment Activity Text"
|
557 |
msgstr "النص لنشاطات التعالیق :"
|
558 |
|
559 |
-
#: admin/classes/class-settings.php:
|
560 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
561 |
-
#: build/wp-ulike/admin/classes/tmp/
|
562 |
msgid "bbPress"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: admin/classes/class-settings.php:
|
566 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
567 |
msgid "For more information:"
|
568 |
msgstr "لمزيد من المعلومات:"
|
569 |
|
570 |
-
#: admin/classes/class-settings.php:
|
571 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
572 |
msgid "Default settings have been reset."
|
573 |
msgstr "تم إعادة ضبط الإعدادات الافتراضية."
|
574 |
|
575 |
-
#: admin/classes/class-settings.php:
|
576 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
577 |
msgid ""
|
578 |
"Do you really want to reset all these settings to their default values ?"
|
579 |
msgstr "هل تريد حقا أن إعادة تعيين كافة هذه الإعدادات إلى قيمها الافتراضية؟"
|
580 |
|
581 |
-
#: admin/classes/class-settings.php:
|
582 |
-
#: admin/classes/class-settings.php:
|
583 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
584 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
585 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
586 |
msgid "No options defined."
|
587 |
msgstr "لیس هناک تعريف لأي خيارات."
|
588 |
|
589 |
-
#: admin/classes/class-settings.php:
|
590 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
591 |
msgid "Select %s"
|
592 |
msgstr "اختار %s"
|
593 |
|
594 |
-
#: admin/classes/class-settings.php:
|
595 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
596 |
msgid "Remove %s"
|
597 |
msgstr "إزالة %s"
|
598 |
|
599 |
-
#: admin/classes/class-settings.php:
|
600 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
601 |
msgid "No action defined."
|
602 |
msgstr "لیس هناک أي إجراء محدد."
|
603 |
|
@@ -612,788 +608,812 @@ msgid ""
|
|
612 |
"An advanced widget that gives you all most liked records with different types"
|
613 |
msgstr "الودجات المتقدمة التي تمنحك كل السجلات الأكثر شعبية مع أنواع مختلفة"
|
614 |
|
615 |
-
#: admin/classes/class-widget.php:
|
616 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
617 |
msgid "on"
|
618 |
msgstr "في"
|
619 |
|
620 |
-
#: admin/classes/class-widget.php:
|
621 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
622 |
msgid "you haven't liked any post yet!"
|
623 |
msgstr "انت لم تحب أي منشور حتى الآن! :("
|
624 |
|
625 |
-
#: admin/classes/class-widget.php:
|
626 |
-
#: admin/classes/tmp/
|
627 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
628 |
-
#: build/wp-ulike/admin/classes/tmp/
|
629 |
-
#: build/wp-ulike/admin/classes/tmp/
|
630 |
-
#: build/wp-ulike/admin/classes/tmp/
|
631 |
#: build/wp-ulike/admin/stats.php:206
|
632 |
msgid "Like"
|
633 |
msgstr "اعجاب"
|
634 |
|
635 |
-
#: admin/classes/class-widget.php:
|
636 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
637 |
msgid "Most Liked"
|
638 |
msgstr "الاکثر شعبیة"
|
639 |
|
640 |
-
#: admin/classes/class-widget.php:
|
641 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
642 |
msgid "Title:"
|
643 |
msgstr "العنوان:"
|
644 |
|
645 |
-
#: admin/classes/class-widget.php:
|
646 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
647 |
msgid "Type:"
|
648 |
msgstr "النوع:"
|
649 |
|
650 |
-
#: admin/classes/class-widget.php:
|
651 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
652 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
653 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
654 |
msgid "Most Liked Posts"
|
655 |
msgstr "المنشورات الاکثر شعبیة"
|
656 |
|
657 |
-
#: admin/classes/class-widget.php:
|
658 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
659 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
660 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
661 |
msgid "Most Liked Comments"
|
662 |
msgstr "تعليقات الشعبیة"
|
663 |
|
664 |
-
#: admin/classes/class-widget.php:
|
665 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
666 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
667 |
msgid "Most Liked Activities"
|
668 |
msgstr "الانشطة الاکثر شعبیة"
|
669 |
|
670 |
-
#: admin/classes/class-widget.php:
|
671 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
672 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
673 |
#, fuzzy
|
674 |
msgid "Most Liked Topics"
|
675 |
msgstr "المنشورات الاکثر شعبیة"
|
676 |
|
677 |
-
#: admin/classes/class-widget.php:
|
678 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
679 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
680 |
msgid "Most Liked Users"
|
681 |
msgstr "المستخدمین الاکثر شعبیة"
|
682 |
|
683 |
-
#: admin/classes/class-widget.php:
|
684 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
685 |
msgid "Last Posts Liked By User"
|
686 |
msgstr "منشورات الأخيرة التی تم اعجابهن من قبل المستخدمین"
|
687 |
|
688 |
-
#: admin/classes/class-widget.php:
|
689 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
690 |
msgid "Period:"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: admin/classes/class-widget.php:
|
694 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
695 |
msgid "All The Times"
|
696 |
msgstr "همه زمان ها"
|
697 |
|
698 |
-
#: admin/classes/class-widget.php:
|
699 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
700 |
msgid "Year"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: admin/classes/class-widget.php:
|
704 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
705 |
#: build/wp-ulike/admin/stats.php:154
|
706 |
msgid "Month"
|
707 |
msgstr "شهر"
|
708 |
|
709 |
-
#: admin/classes/class-widget.php:
|
710 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
711 |
#: build/wp-ulike/admin/stats.php:149
|
712 |
msgid "Week"
|
713 |
msgstr "أسبوع"
|
714 |
|
715 |
-
#: admin/classes/class-widget.php:
|
716 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
717 |
#: build/wp-ulike/admin/stats.php:144
|
718 |
msgid "Yesterday"
|
719 |
msgstr "أمس"
|
720 |
|
721 |
-
#: admin/classes/class-widget.php:
|
722 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
723 |
#: build/wp-ulike/admin/stats.php:139
|
724 |
msgid "Today"
|
725 |
msgstr "اليوم"
|
726 |
|
727 |
-
#: admin/classes/class-widget.php:
|
728 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
729 |
msgid "Style:"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: admin/classes/class-widget.php:
|
733 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
734 |
msgid "Simple"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: admin/classes/class-widget.php:
|
738 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
739 |
msgid "Title Trim (Length):"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: admin/classes/class-widget.php:
|
743 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
744 |
-
msgid "Number of items to show:"
|
745 |
-
msgstr "عدد عناصر الظاهرة :"
|
746 |
-
|
747 |
-
#: admin/classes/class-widget.php:447
|
748 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
749 |
-
#, fuzzy
|
750 |
-
msgid "Thumbnail/Avatar size:"
|
751 |
-
msgstr "مقیاس قراواتار المستخدمین :"
|
752 |
-
|
753 |
-
#: admin/classes/class-widget.php:453
|
754 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
755 |
msgid "Profile URL:"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: admin/classes/class-widget.php:
|
759 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
760 |
msgid "UltimateMember"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: admin/classes/class-widget.php:
|
764 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
765 |
msgid "Activate Like Counter"
|
766 |
msgstr "تفعیل عداد الاعجابات"
|
767 |
|
768 |
-
#: admin/classes/class-widget.php:
|
769 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
770 |
msgid "Activate Thumbnail/Avatar"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: admin/classes/
|
774 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
msgid "General"
|
776 |
msgstr "عام"
|
777 |
|
778 |
-
#: admin/classes/tmp/
|
779 |
-
#: build/wp-ulike/admin/classes/tmp/
|
780 |
msgid "Button Type"
|
781 |
msgstr "نوع الزر"
|
782 |
|
783 |
-
#: admin/classes/tmp/
|
784 |
-
#: build/wp-ulike/admin/classes/tmp/
|
785 |
msgid "Icon"
|
786 |
msgstr "آیقون"
|
787 |
|
788 |
-
#: admin/classes/tmp/
|
789 |
-
#: build/wp-ulike/admin/classes/tmp/
|
790 |
msgid "Text"
|
791 |
msgstr "نص"
|
792 |
|
793 |
-
#: admin/classes/tmp/
|
794 |
-
#: build/wp-ulike/admin/classes/tmp/
|
795 |
-
#: build/wp-ulike/admin/classes/tmp/
|
796 |
msgid "Button Text"
|
797 |
msgstr "نص الزر"
|
798 |
|
799 |
-
#: admin/classes/tmp/
|
800 |
-
#: admin/classes/tmp/
|
801 |
-
#: build/wp-ulike/admin/classes/tmp/
|
802 |
-
#: build/wp-ulike/admin/classes/tmp/
|
803 |
-
#: build/wp-ulike/admin/classes/tmp/
|
804 |
msgid "Unlike"
|
805 |
msgstr "الغاء اعجابي"
|
806 |
|
807 |
-
#: admin/classes/tmp/
|
808 |
-
#: build/wp-ulike/admin/classes/tmp/
|
809 |
-
#: build/wp-ulike/admin/classes/tmp/
|
810 |
msgid "Button Icon"
|
811 |
msgstr "آیقون الزر"
|
812 |
|
813 |
-
#: admin/classes/tmp/
|
814 |
-
#: admin/classes/tmp/
|
815 |
-
#: build/wp-ulike/admin/classes/tmp/
|
816 |
-
#: build/wp-ulike/admin/classes/tmp/
|
817 |
-
#: build/wp-ulike/admin/classes/tmp/
|
818 |
msgid "Best size: 16x16"
|
819 |
msgstr "مقیاس المناسب : 16x16"
|
820 |
|
821 |
-
#: admin/classes/tmp/
|
822 |
-
#: build/wp-ulike/admin/classes/tmp/
|
823 |
msgid "You have not permission to unlike"
|
824 |
msgstr "لا يسمح لك إلغاء الاعجاب"
|
825 |
|
826 |
-
#: admin/classes/tmp/
|
827 |
-
#: build/wp-ulike/admin/classes/tmp/
|
828 |
msgid "Permission Text"
|
829 |
msgstr "نص التولتیب (اجازة) :"
|
830 |
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: build/wp-ulike/admin/classes/tmp/
|
833 |
msgid "Users Login Type"
|
834 |
msgstr "النص تسجیل الدخول"
|
835 |
|
836 |
-
#: admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
msgid "Alert Box"
|
839 |
msgstr "صندوق التنبیة"
|
840 |
|
841 |
-
#: admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
msgid "Like Button"
|
844 |
msgstr "زر الاعجاب"
|
845 |
|
846 |
-
#: admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
msgid "You Should Login To Submit Your Like"
|
849 |
msgstr "عليك تسجيل الدخول لاعمال اعجاب"
|
850 |
|
851 |
-
#: admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
msgid "Users Login Text"
|
854 |
msgstr "النص لدخول الاعضاء"
|
855 |
|
856 |
-
#: admin/classes/tmp/
|
857 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
msgid "Format Number"
|
859 |
msgstr "شکل الارقام"
|
860 |
|
861 |
-
#: admin/classes/tmp/
|
862 |
-
#: admin/classes/tmp/
|
863 |
-
#: admin/classes/tmp/
|
864 |
-
#: admin/classes/tmp/
|
865 |
-
#: admin/classes/tmp/
|
866 |
-
#: admin/classes/tmp/
|
867 |
-
#: admin/classes/tmp/
|
868 |
-
#: admin/classes/tmp/
|
869 |
-
#: admin/classes/tmp/
|
870 |
-
#: admin/classes/tmp/
|
871 |
-
#: build/wp-ulike/admin/classes/tmp/
|
872 |
-
#: build/wp-ulike/admin/classes/tmp/
|
873 |
-
#: build/wp-ulike/admin/classes/tmp/
|
874 |
-
#: build/wp-ulike/admin/classes/tmp/
|
875 |
-
#: build/wp-ulike/admin/classes/tmp/
|
876 |
-
#: build/wp-ulike/admin/classes/tmp/
|
877 |
-
#: build/wp-ulike/admin/classes/tmp/
|
878 |
-
#: build/wp-ulike/admin/classes/tmp/
|
879 |
-
#: build/wp-ulike/admin/classes/tmp/
|
880 |
-
#: build/wp-ulike/admin/classes/tmp/
|
881 |
-
#: build/wp-ulike/admin/classes/tmp/
|
882 |
-
#: build/wp-ulike/admin/classes/tmp/
|
883 |
-
#: build/wp-ulike/admin/classes/tmp/
|
884 |
-
#: build/wp-ulike/admin/classes/tmp/
|
885 |
-
#: build/wp-ulike/admin/classes/tmp/
|
886 |
-
#: build/wp-ulike/admin/classes/tmp/
|
887 |
-
#: build/wp-ulike/admin/classes/tmp/
|
888 |
-
#: build/wp-ulike/admin/classes/tmp/
|
889 |
-
#: build/wp-ulike/admin/classes/tmp/
|
890 |
msgid "Activate"
|
891 |
msgstr "تفعيل"
|
892 |
|
893 |
-
#: admin/classes/tmp/
|
894 |
-
#: build/wp-ulike/admin/classes/tmp/
|
895 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
896 |
msgstr ""
|
897 |
"من خلال تفعیل هذا الخيار، يمكنك عرض تنسيق الأرقام فوق 1000 بصورة سلسلة (KB)."
|
898 |
|
899 |
-
#: admin/classes/tmp/
|
900 |
-
#: build/wp-ulike/admin/classes/tmp/
|
901 |
#, fuzzy
|
902 |
msgid "Notifications"
|
903 |
msgstr "الاشعارت علی بادي برس"
|
904 |
|
905 |
-
#: admin/classes/tmp/
|
906 |
-
#: build/wp-ulike/admin/classes/tmp/
|
907 |
msgid "Custom toast messages after each activity"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: admin/classes/tmp/
|
911 |
-
#: build/wp-ulike/admin/classes/tmp/
|
912 |
#, fuzzy
|
913 |
msgid "Thanks! You Liked This."
|
914 |
msgstr "این را پسندیده اید"
|
915 |
|
916 |
-
#: admin/classes/tmp/
|
917 |
-
#: build/wp-ulike/admin/classes/tmp/
|
918 |
msgid "Liked Notice Message"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: admin/classes/tmp/
|
922 |
-
#: build/wp-ulike/admin/classes/tmp/
|
923 |
#, fuzzy
|
924 |
msgid "Sorry! You unliked this."
|
925 |
msgstr "لغو پسندیدن"
|
926 |
|
927 |
-
#: admin/classes/tmp/
|
928 |
-
#: build/wp-ulike/admin/classes/tmp/
|
929 |
msgid "Unliked Notice Message"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: admin/classes/tmp/
|
933 |
-
#: admin/classes/tmp/
|
934 |
-
#: build/wp-ulike/admin/classes/tmp/
|
935 |
-
#: build/wp-ulike/admin/classes/tmp/
|
936 |
-
#: build/wp-ulike/admin/classes/tmp/
|
937 |
-
#: build/wp-ulike/admin/classes/tmp/
|
938 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
939 |
msgid "Themes"
|
940 |
msgstr "القوالب"
|
941 |
|
942 |
-
#: admin/classes/tmp/
|
943 |
-
#: admin/classes/tmp/
|
944 |
-
#: build/wp-ulike/admin/classes/tmp/
|
945 |
-
#: build/wp-ulike/admin/classes/tmp/
|
946 |
-
#: build/wp-ulike/admin/classes/tmp/
|
947 |
-
#: build/wp-ulike/admin/classes/tmp/
|
948 |
msgid "Auto Display Position"
|
949 |
msgstr "موقع عرض التلقائي"
|
950 |
|
951 |
-
#: admin/classes/tmp/
|
952 |
-
#: admin/classes/tmp/
|
953 |
-
#: build/wp-ulike/admin/classes/tmp/
|
954 |
-
#: build/wp-ulike/admin/classes/tmp/
|
955 |
-
#: build/wp-ulike/admin/classes/tmp/
|
956 |
msgid "Top of Content"
|
957 |
msgstr "اعلی المحتوا"
|
958 |
|
959 |
-
#: admin/classes/tmp/
|
960 |
-
#: admin/classes/tmp/
|
961 |
-
#: build/wp-ulike/admin/classes/tmp/
|
962 |
-
#: build/wp-ulike/admin/classes/tmp/
|
963 |
-
#: build/wp-ulike/admin/classes/tmp/
|
964 |
msgid "Bottom of Content"
|
965 |
msgstr "اسفل المحتوا"
|
966 |
|
967 |
-
#: admin/classes/tmp/
|
968 |
-
#: build/wp-ulike/admin/classes/tmp/
|
969 |
-
#: build/wp-ulike/admin/classes/tmp/
|
970 |
msgid "Top and Bottom"
|
971 |
msgstr "أعلى وأسفل"
|
972 |
|
973 |
-
#: admin/classes/tmp/
|
974 |
-
#: build/wp-ulike/admin/classes/tmp/
|
975 |
msgid "Auto Display Filter"
|
976 |
msgstr "التصفية في عرض التلقائي"
|
977 |
|
978 |
-
#: admin/classes/tmp/
|
979 |
-
#: build/wp-ulike/admin/classes/tmp/
|
980 |
-
msgid "Single Posts"
|
981 |
-
msgstr "واحدة المشاركات"
|
982 |
-
|
983 |
-
#: admin/classes/tmp/settings.php:117
|
984 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
985 |
-
msgid "Pages"
|
986 |
-
msgstr "صفحات"
|
987 |
-
|
988 |
-
#: admin/classes/tmp/settings.php:118
|
989 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
990 |
-
msgid "Archives"
|
991 |
-
msgstr "أرشيف"
|
992 |
-
|
993 |
-
#: admin/classes/tmp/settings.php:119
|
994 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
995 |
-
msgid "Categories"
|
996 |
-
msgstr "تصنیفات"
|
997 |
-
|
998 |
-
#: admin/classes/tmp/settings.php:120
|
999 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
1000 |
-
msgid "Search Results"
|
1001 |
-
msgstr "نتائج البحث"
|
1002 |
-
|
1003 |
-
#: admin/classes/tmp/settings.php:121
|
1004 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
1005 |
-
msgid "Tags"
|
1006 |
-
msgstr "الوسوم"
|
1007 |
-
|
1008 |
-
#: admin/classes/tmp/settings.php:122
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
1010 |
-
msgid "Author Page"
|
1011 |
-
msgstr "صفحة المبرمج"
|
1012 |
-
|
1013 |
-
#: admin/classes/tmp/settings.php:124
|
1014 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
1015 |
msgid "You can filter theses pages on auto display option."
|
1016 |
msgstr "كما يمكنك تحديد الأطروحات صفحات خيار لعدم عرض زر الاعجاب"
|
1017 |
|
1018 |
-
#: admin/classes/tmp/
|
1019 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1020 |
msgid "Google Rich Snippets"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: admin/classes/tmp/
|
1024 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1025 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: admin/classes/tmp/
|
1029 |
-
#: admin/classes/tmp/
|
1030 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1031 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1032 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1033 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1034 |
msgid "Only registered Users"
|
1035 |
msgstr "فقط الأعضاء المسجلين"
|
1036 |
|
1037 |
-
#: admin/classes/tmp/
|
1038 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1039 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1040 |
msgstr ""
|
1041 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1042 |
"اعمال اعجاب"
|
1043 |
|
1044 |
-
#: admin/classes/tmp/
|
1045 |
-
#: admin/classes/tmp/
|
1046 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1047 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1048 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1049 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1050 |
msgid "Do Not Log"
|
1051 |
msgstr "عدم تسجيل الاحداث"
|
1052 |
|
1053 |
-
#: admin/classes/tmp/
|
1054 |
-
#: admin/classes/tmp/
|
1055 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1056 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1057 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1058 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1059 |
msgid "Logged By Cookie"
|
1060 |
msgstr "تسجيل بواسطة كوكي"
|
1061 |
|
1062 |
-
#: admin/classes/tmp/
|
1063 |
-
#: admin/classes/tmp/
|
1064 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1065 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1066 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1067 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1068 |
msgid "Logged By IP"
|
1069 |
msgstr "تسجيل عن طريق IP"
|
1070 |
|
1071 |
-
#: admin/classes/tmp/
|
1072 |
-
#: admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1075 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1076 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1077 |
-
msgid "Logged By Cookie & IP"
|
1078 |
-
msgstr "تسجيل بواسطة كوكي & IP"
|
1079 |
-
|
1080 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1081 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1083 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1084 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1085 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1086 |
msgid "Logged By Username"
|
1087 |
msgstr "تسجيل بواسطة اسم المستخدم"
|
1088 |
|
1089 |
-
#: admin/classes/tmp/
|
1090 |
-
#: admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1093 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1094 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1095 |
msgid "Show Liked Users Box"
|
1096 |
msgstr "مشاهدة المستخدمين الذين عاملین اعجاب"
|
1097 |
|
1098 |
-
#: admin/classes/tmp/
|
1099 |
-
#: admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1102 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1103 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1104 |
msgid ""
|
1105 |
"Active this option to show liked users avatars in the bottom of button like."
|
1106 |
msgstr ""
|
1107 |
"من خلال تفعیل هذا الخیار، بامکانکم مشاهدة آوتار اعضاء العاملین اعجاب اسفل زر "
|
1108 |
"الاعجاب ."
|
1109 |
|
1110 |
-
#: admin/classes/tmp/
|
1111 |
-
#: admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1114 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1115 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1116 |
msgid "Size of Gravatars"
|
1117 |
msgstr "مقیاس قراواتار"
|
1118 |
|
1119 |
-
#: admin/classes/tmp/
|
1120 |
-
#: admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1123 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1124 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1125 |
msgid "Size of Gravatars to return (max is 512)"
|
1126 |
msgstr "مقیاس تصاویر قراواتار (الحد الأقصى 512)"
|
1127 |
|
1128 |
-
#: admin/classes/tmp/
|
1129 |
-
#: admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1132 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1133 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1134 |
msgid "Number Of The Users"
|
1135 |
msgstr "عرض عدد المستخدمین"
|
1136 |
|
1137 |
-
#: admin/classes/tmp/
|
1138 |
-
#: admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1141 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1142 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1143 |
msgid "The number of users to show in the users liked box"
|
1144 |
msgstr "حد الاقصی لإعرض عدد المستخدمين فی الباکس ؟!"
|
1145 |
|
1146 |
-
#: admin/classes/tmp/
|
1147 |
-
#: admin/classes/tmp/
|
1148 |
-
#: admin/classes/tmp/
|
1149 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1150 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1151 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1152 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1153 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1154 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1155 |
msgid "Allowed Variables:"
|
1156 |
msgstr "المتغیرات المسموحة :"
|
1157 |
|
1158 |
-
#: admin/classes/tmp/
|
1159 |
-
#: admin/classes/tmp/
|
1160 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1161 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1162 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1163 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1164 |
msgid "Delete All Logs"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: admin/classes/tmp/
|
1168 |
-
#: admin/classes/tmp/
|
1169 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1170 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1171 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1172 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1173 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: admin/classes/tmp/
|
1177 |
-
#: admin/classes/tmp/
|
1178 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1179 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1180 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1181 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1182 |
msgid "Delete All Data"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: admin/classes/tmp/
|
1186 |
-
#: admin/classes/tmp/
|
1187 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1188 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1189 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1190 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1191 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: admin/classes/tmp/
|
1195 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1196 |
msgid ""
|
1197 |
"<strong>Only</strong> registered users have permission to like comments."
|
1198 |
msgstr ""
|
1199 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1200 |
"اعمال اعجاب علی التعالیق"
|
1201 |
|
1202 |
-
#: admin/classes/tmp/
|
1203 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1204 |
-
msgid "Customize"
|
1205 |
-
msgstr "تخصيص"
|
1206 |
-
|
1207 |
-
#: admin/classes/tmp/settings.php:290
|
1208 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1209 |
-
msgid "Custom Style"
|
1210 |
-
msgstr "تخصیص الاسلوب ( Style) : "
|
1211 |
-
|
1212 |
-
#: admin/classes/tmp/settings.php:295
|
1213 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1214 |
-
msgid "Active this option to see the custom style settings."
|
1215 |
-
msgstr "من خلال تفعیل هذا الخیار ، بامکانک تستخدم الاعدادت المخصصه في الاضافة"
|
1216 |
-
|
1217 |
-
#: admin/classes/tmp/settings.php:299
|
1218 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1219 |
-
msgid "Button style"
|
1220 |
-
msgstr "زر الاعجاب"
|
1221 |
-
|
1222 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1223 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1224 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1225 |
-
msgid "Background"
|
1226 |
-
msgstr "لون الارضیة"
|
1227 |
-
|
1228 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1229 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1230 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1231 |
-
msgid "Border Color"
|
1232 |
-
msgstr "لون الحدود"
|
1233 |
-
|
1234 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1235 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1236 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1237 |
-
msgid "Text Color"
|
1238 |
-
msgstr "لون الخط"
|
1239 |
-
|
1240 |
-
#: admin/classes/tmp/settings.php:312
|
1241 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1242 |
-
msgid "Counter Style"
|
1243 |
-
msgstr "باکس العداد :"
|
1244 |
-
|
1245 |
-
#: admin/classes/tmp/settings.php:325
|
1246 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1247 |
-
msgid "Loading Animation"
|
1248 |
-
msgstr "الرسوم المتحركة تحميل"
|
1249 |
-
|
1250 |
-
#: admin/classes/tmp/settings.php:330
|
1251 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1252 |
-
#, fuzzy
|
1253 |
-
msgid "Custom CSS"
|
1254 |
-
msgstr "تخصیص الاسلوب ( Style) : "
|
1255 |
-
|
1256 |
-
#: admin/classes/tmp/settings.php:361
|
1257 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1258 |
#, fuzzy
|
1259 |
msgid "Activity Content"
|
1260 |
msgstr "ID النشاط"
|
1261 |
|
1262 |
-
#: admin/classes/tmp/
|
1263 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1264 |
#, fuzzy
|
1265 |
msgid "Activity Meta"
|
1266 |
msgstr "ID النشاط"
|
1267 |
|
1268 |
-
#: admin/classes/tmp/
|
1269 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1270 |
#, fuzzy
|
1271 |
msgid "Activity Comment"
|
1272 |
msgstr "ID النشاط"
|
1273 |
|
1274 |
-
#: admin/classes/tmp/
|
1275 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1276 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: admin/classes/tmp/
|
1280 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1281 |
msgid ""
|
1282 |
"<strong>Only</strong> registered users have permission to like activities."
|
1283 |
msgstr ""
|
1284 |
"من خلال تفعیل هذا الخیار، <strong>فقط</strong> الاعضاء المسجلین،بامکانهم "
|
1285 |
"اعمال اعجاب علی الانشطة فی بادي برس"
|
1286 |
|
1287 |
-
#: admin/classes/tmp/
|
1288 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1289 |
msgid "BuddyPress Activity"
|
1290 |
msgstr "الأنشطة علی بادی پرس"
|
1291 |
|
1292 |
-
#: admin/classes/tmp/
|
1293 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1294 |
msgid "insert new likes in buddyPress activity page"
|
1295 |
msgstr ""
|
1296 |
"من خلال تفعیل هذا الخیار، ستضاف احدث الاعجابات علی الانشطة فی بادي برس. "
|
1297 |
|
1298 |
-
#: admin/classes/tmp/
|
1299 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1300 |
#, fuzzy
|
1301 |
msgid "BuddyPress Custom Notification"
|
1302 |
msgstr "الاشعارت علی بادي برس"
|
1303 |
|
1304 |
-
#: admin/classes/tmp/
|
1305 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1306 |
msgid "Sends out notifications when you get a like from someone"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: admin/classes/tmp/
|
1310 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1311 |
#, fuzzy
|
1312 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1313 |
msgstr ""
|
1314 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1315 |
"اعمال اعجاب"
|
1316 |
|
1317 |
-
#: admin/classes/tmp/
|
1318 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1319 |
#, fuzzy
|
1320 |
msgid "Users who have liked this topic:"
|
1321 |
msgstr "المستخدمین المعجبین بهذا :"
|
1322 |
|
1323 |
-
#: admin/
|
1324 |
-
#:
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
#:
|
1329 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1330 |
msgid "Logs"
|
1331 |
msgstr "السجلات"
|
1332 |
|
1333 |
-
#: admin/logs.php:
|
1334 |
msgid "Are you sure to remove this item?!"
|
1335 |
msgstr "هل أنت متأكد لإزالة هذا البند ؟!"
|
1336 |
|
1337 |
-
#: admin/logs.php:
|
1338 |
-
#: build/wp-ulike/admin/logs.php:
|
1339 |
-
#: build/wp-ulike/admin/logs.php:
|
1340 |
msgid "WP ULike Logs"
|
1341 |
msgstr "الاحداث في وردبرس یولایک"
|
1342 |
|
1343 |
-
#: admin/logs.php:
|
1344 |
-
#: build/wp-ulike/admin/logs.php:
|
1345 |
-
#: build/wp-ulike/admin/logs.php:
|
1346 |
msgid "ID"
|
1347 |
msgstr "ID"
|
1348 |
|
1349 |
-
#: admin/logs.php:
|
1350 |
-
#: build/wp-ulike/admin/logs.php:
|
1351 |
-
#: build/wp-ulike/admin/logs.php:
|
1352 |
msgid "Username"
|
1353 |
msgstr "اسم المستخدم : "
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
-
#: build/wp-ulike/admin/logs.php:
|
1357 |
-
#: build/wp-ulike/admin/logs.php:
|
1358 |
msgid "Status"
|
1359 |
msgstr "وضعیة"
|
1360 |
|
1361 |
-
#: admin/logs.php:
|
1362 |
msgid "Post ID"
|
1363 |
msgstr "ID المنشور"
|
1364 |
|
1365 |
-
#: admin/logs.php:
|
1366 |
msgid "Post Title"
|
1367 |
msgstr "عنوان المنشور"
|
1368 |
|
1369 |
-
#: admin/logs.php:
|
1370 |
-
#: build/wp-ulike/admin/logs.php:
|
1371 |
-
#: build/wp-ulike/admin/logs.php:
|
1372 |
msgid "Date / Time"
|
1373 |
msgstr "تاريخ / وقت"
|
1374 |
|
1375 |
-
#: admin/logs.php:
|
1376 |
-
#: build/wp-ulike/admin/logs.php:
|
1377 |
-
#: build/wp-ulike/admin/logs.php:
|
1378 |
msgid "IP"
|
1379 |
msgstr "عنوان IP"
|
1380 |
|
1381 |
-
#: admin/logs.php:
|
1382 |
-
#: build/wp-ulike/admin/logs.php:
|
1383 |
-
#: build/wp-ulike/admin/logs.php:
|
1384 |
msgid "Actions"
|
1385 |
msgstr "تطبیقات"
|
1386 |
|
1387 |
-
#: admin/logs.php:
|
1388 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1389 |
-
#: build/wp-ulike/admin/logs.php:
|
1390 |
-
#: build/wp-ulike/admin/logs.php:
|
1391 |
msgid "Guest User"
|
1392 |
msgstr "مستخدم ضيف"
|
1393 |
|
1394 |
-
#: admin/logs.php:
|
1395 |
-
#: build/wp-ulike/admin/logs.php:
|
1396 |
-
#: build/wp-ulike/admin/logs.php:
|
1397 |
msgid ""
|
1398 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1399 |
"you don't have any data on this table)"
|
@@ -1401,35 +1421,35 @@ msgstr ""
|
|
1401 |
"<strong>خطاء:</strong> چیزی یافت نشد. (هذه المشكلة بسبب لم يكن لديك أي "
|
1402 |
"بيانات في هذا الجدول)"
|
1403 |
|
1404 |
-
#: admin/logs.php:
|
1405 |
msgid "Comment ID"
|
1406 |
msgstr "ID التعلیق"
|
1407 |
|
1408 |
-
#: admin/logs.php:
|
1409 |
msgid "Comment Author"
|
1410 |
msgstr "کاتب التعلیق"
|
1411 |
|
1412 |
-
#: admin/logs.php:
|
1413 |
msgid "Comment Text"
|
1414 |
msgstr "نص التعليق"
|
1415 |
|
1416 |
-
#: admin/logs.php:
|
1417 |
msgid "Activity ID"
|
1418 |
msgstr "ID النشاط"
|
1419 |
|
1420 |
-
#: admin/logs.php:
|
1421 |
msgid "Permalink"
|
1422 |
msgstr "روابط دائمة"
|
1423 |
|
1424 |
-
#: admin/logs.php:
|
1425 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1426 |
msgstr "<a href=\"%1$s\">عرض الانشطة</a>"
|
1427 |
|
1428 |
-
#: admin/logs.php:
|
1429 |
msgid "Topic ID"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: admin/logs.php:
|
1433 |
#, fuzzy
|
1434 |
msgid "Topic Title"
|
1435 |
msgstr "عنوان المنشور"
|
@@ -1554,94 +1574,94 @@ msgstr "نرحب بکم"
|
|
1554 |
msgid "Days"
|
1555 |
msgstr "أيام"
|
1556 |
|
1557 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1558 |
-
#: inc/classes/class-mycred.php:
|
1559 |
msgid "Points for Liking content"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1563 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1564 |
-
#: inc/classes/class-mycred.php:
|
1565 |
msgid "Limit"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1569 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1570 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1571 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1572 |
-
#: inc/classes/class-mycred.php:
|
1573 |
-
#: inc/classes/class-mycred.php:
|
1574 |
msgid "Log template"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1578 |
-
#: inc/classes/class-mycred.php:
|
1579 |
msgid "Points for Author Who Get Liked"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1583 |
-
#: inc/classes/class-mycred.php:
|
1584 |
msgid "Points for unliking content"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1588 |
-
#: inc/classes/class-mycred.php:
|
1589 |
msgid "Points for Author Who Get Unliked"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1593 |
msgid "WP ULike Activity"
|
1594 |
msgstr "نشاطات وردبرس یولایک"
|
1595 |
|
1596 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1597 |
#, fuzzy
|
1598 |
msgid "Likes"
|
1599 |
msgstr "اعجاب"
|
1600 |
|
1601 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1602 |
msgid "You have a new like from"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1606 |
msgid ""
|
1607 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1608 |
"WordPress, bbPress, BuddyPress & ..."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1612 |
msgid "Liking Content"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1616 |
#, fuzzy
|
1617 |
msgid "Liked Content"
|
1618 |
msgstr "تعليقات الشعبیة"
|
1619 |
|
1620 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1621 |
msgid "Unliking Content"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1625 |
msgid "Unliked Content"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1629 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1630 |
-
#: inc/wp-functions.php:
|
1631 |
#, fuzzy
|
1632 |
msgid "Recent Posts Liked"
|
1633 |
msgstr "مجموع کل المشاركات التی عاملین اعجاب بهن"
|
1634 |
|
1635 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1636 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1637 |
-
#: inc/wp-functions.php:
|
1638 |
#, fuzzy
|
1639 |
msgid "Recent Comments Liked"
|
1640 |
msgstr "مجموع کل التعلیقات التی عاملین اعجاب بهن"
|
1641 |
|
1642 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1643 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1644 |
-
#: inc/wp-functions.php:
|
1645 |
msgid "This user has not made any likes."
|
1646 |
msgstr ""
|
1647 |
|
@@ -1749,41 +1769,45 @@ msgstr "تصویت إيجابي"
|
|
1749 |
msgid "Downvote"
|
1750 |
msgstr " تصویت سلبی"
|
1751 |
|
1752 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1753 |
-
#: inc/wp-ulike.php:
|
1754 |
msgid "You need to login in order to like this post: "
|
1755 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا المنشور :"
|
1756 |
|
1757 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1758 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1759 |
-
#: inc/wp-ulike.php:
|
1760 |
-
#: inc/wp-ulike.php:
|
1761 |
msgid "click here"
|
1762 |
msgstr "اضغط هنا انقر للدخول"
|
1763 |
|
1764 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1765 |
msgid "You need to login in order to like this comment: "
|
1766 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا التعلیق :"
|
1767 |
|
1768 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1769 |
msgid "You need to login in order to like this activity: "
|
1770 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذة النشاطة :"
|
1771 |
|
1772 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1773 |
msgid "Error: This Method Is Not Exist!"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: build/wp-ulike/wp-ulike.php:
|
1777 |
#, fuzzy
|
1778 |
msgid "Settings"
|
1779 |
msgstr "حفظ التغییرات"
|
1780 |
|
1781 |
-
#: build/wp-ulike/wp-ulike.php:
|
1782 |
#, fuzzy
|
1783 |
msgid "Statistics"
|
1784 |
msgstr "الصفحة الجدیدة للاحصائيات"
|
1785 |
|
1786 |
-
#: build/wp-ulike/wp-ulike.php:
|
1787 |
msgid "About"
|
1788 |
msgstr ""
|
1789 |
|
@@ -1799,6 +1823,25 @@ msgstr ""
|
|
1799 |
msgid "http://about.alimir.ir"
|
1800 |
msgstr ""
|
1801 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1802 |
#~ msgid "Novelty Of WP ULike"
|
1803 |
#~ msgstr "الجدید علی وردبرس یولایک"
|
1804 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
5 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
6 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
7 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
8 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Welcome to WP ULike"
|
22 |
msgstr "مرحبا بكم في وردبرس یولایک "
|
23 |
|
24 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
25 |
msgid ""
|
26 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
27 |
"powerful version yet."
|
29 |
"شكرًا لك لاستخدامك وردبرس یولایک ! النسخة الجدیدة من هذه الاضافة،اقوى و "
|
30 |
"محترفة..."
|
31 |
|
32 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
33 |
#: build/wp-ulike/admin/stats.php:38
|
34 |
msgid "Visit our homepage"
|
35 |
msgstr "مشاهدة صفحة الاضافة"
|
36 |
|
37 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
38 |
msgid "Version"
|
39 |
msgstr "النسخة"
|
40 |
|
41 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
42 |
msgid "Getting Started"
|
43 |
msgstr "بدء"
|
44 |
|
45 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
46 |
msgid "Credits"
|
47 |
msgstr "قادة المشروع"
|
48 |
|
49 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
50 |
+
#: build/wp-ulike/admin/about.php:40
|
51 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
52 |
#: build/wp-ulike/admin/stats.php:52
|
53 |
msgid "Support"
|
54 |
msgstr "دعم"
|
55 |
|
56 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
57 |
+
#: build/wp-ulike/admin/about.php:41
|
58 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
59 |
#: build/wp-ulike/admin/stats.php:53
|
60 |
msgid "FAQ"
|
61 |
msgstr "أسئلة متداولة"
|
62 |
|
63 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
64 |
msgid "Reviews"
|
65 |
msgstr "التقييم"
|
66 |
|
67 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
68 |
#, fuzzy
|
69 |
msgid "Introducing WP ULike"
|
70 |
msgstr "حول وردبرس یولایک"
|
71 |
|
72 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
73 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
74 |
#: build/wp-ulike/admin/stats.php:37
|
75 |
msgid "About WP ULike"
|
76 |
msgstr "حول وردبرس یولایک"
|
89 |
"المنشورات و التعالیق ، و النشطاة الاکثر اعجابا\" علی بادی برس تخصیص النمط و "
|
90 |
"الاستایلات للاضافةو..."
|
91 |
|
92 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
93 |
#, fuzzy
|
94 |
msgid "WP Ulike Extension"
|
95 |
msgstr "اعدادات وردبرس یولایک"
|
96 |
|
97 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
98 |
msgid ""
|
99 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
100 |
"activities & bbPress Topics."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
104 |
msgid "Added More Than 20 Language Files"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
108 |
msgid ""
|
109 |
"WP ULike is already translated into +20 languages, with more always in "
|
110 |
"progress."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
114 |
msgid "User Profile Links"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
118 |
msgid ""
|
119 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
120 |
"UltimateMember plugins."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
124 |
msgid "New Themes And Styles"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
128 |
msgid ""
|
129 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
130 |
"customize them by your taste."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
134 |
#, fuzzy
|
135 |
msgid "myCRED Points Support"
|
136 |
msgstr "الدعم من الغاء الاعجاب"
|
137 |
|
138 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
139 |
msgid ""
|
140 |
"myCRED is an adaptive points management system that lets you award / charge "
|
141 |
"your users for interacting with your WordPress."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
145 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
146 |
#: build/wp-ulike/admin/stats.php:395
|
147 |
msgid "Likers World Map"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
151 |
msgid ""
|
152 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
153 |
"likers by their country in the world map & Top Liker widget."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
157 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
158 |
#: build/wp-ulike/admin/stats.php:24
|
159 |
msgid "WP ULike Statistics"
|
160 |
msgstr "الاحصائیات وردپرس یولایک"
|
161 |
|
162 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
163 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
164 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
165 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
166 |
msgid "Home"
|
167 |
msgstr "الرئیسیة"
|
168 |
|
169 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
170 |
msgid "OR"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
174 |
+
#: build/wp-ulike/admin/admin.php:73
|
175 |
msgid "WP ULike Settings"
|
176 |
msgstr "اعدادات وردبرس یولایک"
|
177 |
|
178 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
179 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
180 |
msgstr ""
|
181 |
"قضینا وقت کثیر لانشاء وردبرس یولایک بحب و اهتمام . نآمل أن تستمتع به :)"
|
182 |
|
183 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
184 |
msgid "Project Leaders"
|
185 |
msgstr "قادة المشروع"
|
186 |
|
187 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
188 |
msgid "Project Lead & Developer"
|
189 |
msgstr "ساهموا في التطوير"
|
190 |
|
191 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
192 |
msgid "Translations"
|
193 |
msgstr "الترجمة"
|
194 |
|
195 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
196 |
msgid "Would you like to help translate the plugin into more languages?"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
200 |
msgid "Join our WP-Translations Community"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
204 |
msgid "Other Plugins"
|
205 |
msgstr "اضافات اخری"
|
206 |
|
207 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
208 |
+
msgid "Like this plugin?"
|
209 |
+
msgstr "کم اعجبتک الاضافة؟!؟ :)"
|
210 |
+
|
211 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
212 |
+
#: build/wp-ulike/admin/admin.php:309
|
213 |
+
msgid ""
|
214 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
215 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
216 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
217 |
+
"discover it too!"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
221 |
+
#: build/wp-ulike/admin/admin.php:311
|
222 |
+
msgid "Sure, I'd love to!"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
226 |
msgid ""
|
227 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
228 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
236 |
msgid "WP ULike"
|
237 |
msgstr "وردبرس یولایک"
|
238 |
|
239 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
240 |
msgid "Settings saved."
|
241 |
msgstr "تم حفظ التغییرات"
|
242 |
|
243 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
244 |
+
#: build/wp-ulike/admin/admin.php:157
|
245 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
249 |
+
#: build/wp-ulike/admin/admin.php:159
|
250 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
254 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
255 |
#: build/wp-ulike/admin/stats.php:43
|
256 |
msgid "Post Likes Logs"
|
257 |
msgstr "احداث الاعجابات في المنشورات"
|
258 |
|
259 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
260 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
261 |
#: build/wp-ulike/admin/stats.php:44
|
262 |
msgid "Comment Likes Logs"
|
263 |
msgstr "احداث الاعجابات في التعالیق"
|
264 |
|
265 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
266 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
267 |
#: build/wp-ulike/admin/stats.php:45
|
268 |
msgid "Activity Likes Logs"
|
269 |
msgstr "احداث الاعجابات في الانشطة"
|
270 |
|
271 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
272 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
273 |
#: build/wp-ulike/admin/stats.php:46
|
274 |
#, fuzzy
|
275 |
msgid "Topics Likes Logs"
|
276 |
msgstr "احداث الاعجابات في المنشورات"
|
277 |
|
278 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
279 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
280 |
msgid "Default"
|
281 |
msgstr "افتراضي"
|
282 |
|
283 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
284 |
+
#: build/wp-ulike/admin/admin.php:232
|
285 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
286 |
msgid "Heart"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
290 |
msgid "Robeen"
|
291 |
msgstr ""
|
292 |
|
312 |
msgid "Similar Settings"
|
313 |
msgstr "حفظ التغییرات"
|
314 |
|
315 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
316 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
317 |
+
#: admin/classes/tmp/options.php:451
|
318 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
319 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
320 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
321 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
322 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
323 |
msgid "Logging Method"
|
324 |
msgstr "طريقة تسجيل"
|
325 |
|
357 |
#: admin/classes/class-settings.php:53
|
358 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
359 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
361 |
"is saved for registered users, the convey of like/dislike condition will "
|
362 |
"check by username, There is no permission for guest users to unlike/undislike"
|
365 |
"المستخدمین للاعضاء فقط،وشروط اعمال الاعجاب /الغاء الاعجاب یتم فحصهن بواسطة "
|
366 |
"اسم المستخدم ، و المستخدمین الضیوف لم یسمح لهم بالغاء الاعجاب."
|
367 |
|
368 |
+
#: admin/classes/class-settings.php:56
|
369 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
370 |
#, fuzzy
|
371 |
msgid "Template Variables"
|
372 |
msgstr "المتغیرات المسموحة :"
|
373 |
|
374 |
+
#: admin/classes/class-settings.php:58
|
375 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
376 |
msgid "Start the loop of logs"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
380 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
381 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
382 |
msgid "required"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin/classes/class-settings.php:59
|
386 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
387 |
msgid "End of the while loop"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
391 |
+
#: admin/classes/class-settings.php:68
|
392 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
393 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
394 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
395 |
msgid "Display the liker name"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/classes/class-settings.php:61
|
399 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
400 |
msgid "Display the liker avatar (By Gravatar)"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/classes/class-settings.php:62
|
404 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
405 |
msgid "Display the BuddyPress user profile url"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/classes/class-settings.php:63
|
409 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
410 |
msgid "Display the UltimateMemebr user profile url"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
414 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
415 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
416 |
msgid "Display the permalink"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
420 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
422 |
msgid "Display the likes count number"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin/classes/class-settings.php:67
|
426 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
427 |
msgid "Display the post title"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin/classes/class-settings.php:70
|
431 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
432 |
msgid "Display the comment author name"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
436 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
437 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
438 |
msgid "Posts"
|
439 |
msgstr "المقالات "
|
440 |
|
441 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
442 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
443 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
444 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
446 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
447 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
448 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
450 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
451 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
452 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
453 |
msgid "Automatic display"
|
454 |
msgstr "عرض تلقائي"
|
455 |
|
456 |
+
#: admin/classes/class-settings.php:81
|
457 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
458 |
msgid ""
|
459 |
"If you disable this option, you have to put manually this code on wordpress "
|
460 |
"while loop"
|
462 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة "
|
463 |
"المنشورات الوردبرس"
|
464 |
|
465 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
466 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
467 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
468 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
469 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
470 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
471 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
472 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
473 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
474 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
475 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
476 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
477 |
msgid "Users Like Box Template"
|
478 |
msgstr "قالب صندوق المستخدمین"
|
479 |
|
480 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
481 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
482 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
483 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
484 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
485 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
486 |
msgid "Default Template:"
|
487 |
msgstr "القالب الافتراضي:"
|
488 |
|
489 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
490 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
491 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
492 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
493 |
+
#: inc/classes/class-ulike.php:607
|
494 |
msgid "Users who have LIKED this post:"
|
495 |
msgstr "المستخدمين المعجبین بهذا ::"
|
496 |
|
497 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
498 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
499 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
500 |
msgid "Comments"
|
501 |
msgstr "التعالیقات"
|
502 |
|
503 |
+
#: admin/classes/class-settings.php:90
|
504 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
505 |
msgid ""
|
506 |
"If you disable this option, you have to put manually this code on comments "
|
507 |
"text"
|
508 |
msgstr ""
|
509 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة التعالیق"
|
510 |
|
511 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
512 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
513 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
514 |
msgid "Users who have LIKED this comment:"
|
515 |
msgstr "المعجبین بهذا التعلیق :"
|
516 |
|
517 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
518 |
+
#: admin/classes/tmp/options.php:301
|
519 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
520 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
521 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
522 |
msgid "BuddyPress"
|
523 |
msgstr "بادي برس"
|
524 |
|
525 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
526 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
527 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
528 |
msgid ""
|
529 |
"If you disable this option, you have to put manually this code on buddypres "
|
530 |
"activities content"
|
531 |
msgstr ""
|
532 |
"إذا تم تعطيل هذه الميزة، يجب عليك يدويا وضع الاکواد البرمجية في حلقة الانشطة"
|
533 |
|
534 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
535 |
+
#: admin/classes/tmp/options.php:370
|
536 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
537 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
538 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
539 |
msgid "Users who have liked this activity:"
|
540 |
msgstr "المستخدمین المعجبین بهذا :"
|
541 |
|
542 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
543 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
544 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
545 |
msgid "Post Activity Text"
|
546 |
msgstr "النص لنشاطات المنشور :"
|
547 |
|
548 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
549 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
550 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
551 |
msgid "Comment Activity Text"
|
552 |
msgstr "النص لنشاطات التعالیق :"
|
553 |
|
554 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
555 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
556 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
557 |
msgid "bbPress"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/classes/class-settings.php:111
|
561 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
562 |
msgid "For more information:"
|
563 |
msgstr "لمزيد من المعلومات:"
|
564 |
|
565 |
+
#: admin/classes/class-settings.php:170
|
566 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
567 |
msgid "Default settings have been reset."
|
568 |
msgstr "تم إعادة ضبط الإعدادات الافتراضية."
|
569 |
|
570 |
+
#: admin/classes/class-settings.php:244
|
571 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
572 |
msgid ""
|
573 |
"Do you really want to reset all these settings to their default values ?"
|
574 |
msgstr "هل تريد حقا أن إعادة تعيين كافة هذه الإعدادات إلى قيمها الافتراضية؟"
|
575 |
|
576 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
577 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
578 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
579 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
580 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
581 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
582 |
msgid "No options defined."
|
583 |
msgstr "لیس هناک تعريف لأي خيارات."
|
584 |
|
585 |
+
#: admin/classes/class-settings.php:347
|
586 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
587 |
msgid "Select %s"
|
588 |
msgstr "اختار %s"
|
589 |
|
590 |
+
#: admin/classes/class-settings.php:348
|
591 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
592 |
msgid "Remove %s"
|
593 |
msgstr "إزالة %s"
|
594 |
|
595 |
+
#: admin/classes/class-settings.php:372
|
596 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
597 |
msgid "No action defined."
|
598 |
msgstr "لیس هناک أي إجراء محدد."
|
599 |
|
608 |
"An advanced widget that gives you all most liked records with different types"
|
609 |
msgstr "الودجات المتقدمة التي تمنحك كل السجلات الأكثر شعبية مع أنواع مختلفة"
|
610 |
|
611 |
+
#: admin/classes/class-widget.php:130
|
612 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
613 |
msgid "on"
|
614 |
msgstr "في"
|
615 |
|
616 |
+
#: admin/classes/class-widget.php:191
|
617 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
618 |
msgid "you haven't liked any post yet!"
|
619 |
msgstr "انت لم تحب أي منشور حتى الآن! :("
|
620 |
|
621 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
622 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
623 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
624 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
625 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
626 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
627 |
#: build/wp-ulike/admin/stats.php:206
|
628 |
msgid "Like"
|
629 |
msgstr "اعجاب"
|
630 |
|
631 |
+
#: admin/classes/class-widget.php:515
|
632 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
633 |
msgid "Most Liked"
|
634 |
msgstr "الاکثر شعبیة"
|
635 |
|
636 |
+
#: admin/classes/class-widget.php:530
|
637 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
638 |
msgid "Title:"
|
639 |
msgstr "العنوان:"
|
640 |
|
641 |
+
#: admin/classes/class-widget.php:535
|
642 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
643 |
msgid "Type:"
|
644 |
msgstr "النوع:"
|
645 |
|
646 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
647 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
648 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
649 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
650 |
msgid "Most Liked Posts"
|
651 |
msgstr "المنشورات الاکثر شعبیة"
|
652 |
|
653 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
654 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
655 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
656 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
657 |
msgid "Most Liked Comments"
|
658 |
msgstr "تعليقات الشعبیة"
|
659 |
|
660 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
661 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
662 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
663 |
msgid "Most Liked Activities"
|
664 |
msgstr "الانشطة الاکثر شعبیة"
|
665 |
|
666 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
667 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
668 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
669 |
#, fuzzy
|
670 |
msgid "Most Liked Topics"
|
671 |
msgstr "المنشورات الاکثر شعبیة"
|
672 |
|
673 |
+
#: admin/classes/class-widget.php:541
|
674 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
675 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
676 |
msgid "Most Liked Users"
|
677 |
msgstr "المستخدمین الاکثر شعبیة"
|
678 |
|
679 |
+
#: admin/classes/class-widget.php:542
|
680 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
681 |
msgid "Last Posts Liked By User"
|
682 |
msgstr "منشورات الأخيرة التی تم اعجابهن من قبل المستخدمین"
|
683 |
|
684 |
+
#: admin/classes/class-widget.php:547
|
685 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
686 |
+
msgid "Number of items to show:"
|
687 |
+
msgstr "عدد عناصر الظاهرة :"
|
688 |
+
|
689 |
+
#: admin/classes/class-widget.php:552
|
690 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
691 |
msgid "Period:"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: admin/classes/class-widget.php:554
|
695 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
696 |
msgid "All The Times"
|
697 |
msgstr "همه زمان ها"
|
698 |
|
699 |
+
#: admin/classes/class-widget.php:555
|
700 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
701 |
msgid "Year"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
705 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
706 |
#: build/wp-ulike/admin/stats.php:154
|
707 |
msgid "Month"
|
708 |
msgstr "شهر"
|
709 |
|
710 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
711 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
712 |
#: build/wp-ulike/admin/stats.php:149
|
713 |
msgid "Week"
|
714 |
msgstr "أسبوع"
|
715 |
|
716 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
717 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
718 |
#: build/wp-ulike/admin/stats.php:144
|
719 |
msgid "Yesterday"
|
720 |
msgstr "أمس"
|
721 |
|
722 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
723 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
724 |
#: build/wp-ulike/admin/stats.php:139
|
725 |
msgid "Today"
|
726 |
msgstr "اليوم"
|
727 |
|
728 |
+
#: admin/classes/class-widget.php:564
|
729 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
730 |
msgid "Style:"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: admin/classes/class-widget.php:566
|
734 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
735 |
msgid "Simple"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: admin/classes/class-widget.php:572
|
739 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
740 |
msgid "Title Trim (Length):"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: admin/classes/class-widget.php:578
|
744 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
msgid "Profile URL:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/classes/class-widget.php:581
|
749 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
750 |
msgid "UltimateMember"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: admin/classes/class-widget.php:587
|
754 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
755 |
msgid "Activate Like Counter"
|
756 |
msgstr "تفعیل عداد الاعجابات"
|
757 |
|
758 |
+
#: admin/classes/class-widget.php:592
|
759 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
760 |
msgid "Activate Thumbnail/Avatar"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: admin/classes/class-widget.php:596
|
764 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
765 |
+
#, fuzzy
|
766 |
+
msgid "Thumbnail/Avatar size:"
|
767 |
+
msgstr "مقیاس قراواتار المستخدمین :"
|
768 |
+
|
769 |
+
#: admin/classes/tmp/options.php:11
|
770 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
771 |
msgid "General"
|
772 |
msgstr "عام"
|
773 |
|
774 |
+
#: admin/classes/tmp/options.php:15
|
775 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
776 |
msgid "Button Type"
|
777 |
msgstr "نوع الزر"
|
778 |
|
779 |
+
#: admin/classes/tmp/options.php:19
|
780 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
781 |
msgid "Icon"
|
782 |
msgstr "آیقون"
|
783 |
|
784 |
+
#: admin/classes/tmp/options.php:23
|
785 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
786 |
msgid "Text"
|
787 |
msgstr "نص"
|
788 |
|
789 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
790 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
791 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
792 |
msgid "Button Text"
|
793 |
msgstr "نص الزر"
|
794 |
|
795 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
796 |
+
#: admin/classes/tmp/options.php:43
|
797 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
798 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
799 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
800 |
msgid "Unlike"
|
801 |
msgstr "الغاء اعجابي"
|
802 |
|
803 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
804 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
805 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
806 |
msgid "Button Icon"
|
807 |
msgstr "آیقون الزر"
|
808 |
|
809 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
810 |
+
#: admin/classes/tmp/options.php:543
|
811 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
812 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
813 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
814 |
msgid "Best size: 16x16"
|
815 |
msgstr "مقیاس المناسب : 16x16"
|
816 |
|
817 |
+
#: admin/classes/tmp/options.php:47
|
818 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
819 |
msgid "You have not permission to unlike"
|
820 |
msgstr "لا يسمح لك إلغاء الاعجاب"
|
821 |
|
822 |
+
#: admin/classes/tmp/options.php:48
|
823 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
824 |
msgid "Permission Text"
|
825 |
msgstr "نص التولتیب (اجازة) :"
|
826 |
|
827 |
+
#: admin/classes/tmp/options.php:52
|
828 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
829 |
msgid "Users Login Type"
|
830 |
msgstr "النص تسجیل الدخول"
|
831 |
|
832 |
+
#: admin/classes/tmp/options.php:55
|
833 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
834 |
msgid "Alert Box"
|
835 |
msgstr "صندوق التنبیة"
|
836 |
|
837 |
+
#: admin/classes/tmp/options.php:56
|
838 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
839 |
msgid "Like Button"
|
840 |
msgstr "زر الاعجاب"
|
841 |
|
842 |
+
#: admin/classes/tmp/options.php:60
|
843 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
844 |
msgid "You Should Login To Submit Your Like"
|
845 |
msgstr "عليك تسجيل الدخول لاعمال اعجاب"
|
846 |
|
847 |
+
#: admin/classes/tmp/options.php:61
|
848 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
849 |
msgid "Users Login Text"
|
850 |
msgstr "النص لدخول الاعضاء"
|
851 |
|
852 |
+
#: admin/classes/tmp/options.php:65
|
853 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
854 |
+
msgid "Disable Plugin Files"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
858 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
859 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
860 |
+
msgid "Single Posts"
|
861 |
+
msgstr "واحدة المشاركات"
|
862 |
+
|
863 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
864 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
865 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
866 |
+
msgid "Pages"
|
867 |
+
msgstr "صفحات"
|
868 |
+
|
869 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
870 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
871 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
872 |
+
msgid "Archives"
|
873 |
+
msgstr "أرشيف"
|
874 |
+
|
875 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
876 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
877 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
878 |
+
msgid "Categories"
|
879 |
+
msgstr "تصنیفات"
|
880 |
+
|
881 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
882 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
883 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
884 |
+
msgid "Search Results"
|
885 |
+
msgstr "نتائج البحث"
|
886 |
+
|
887 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
888 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
889 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
890 |
+
msgid "Tags"
|
891 |
+
msgstr "الوسوم"
|
892 |
+
|
893 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
894 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
895 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
896 |
+
msgid "Author Page"
|
897 |
+
msgstr "صفحة المبرمج"
|
898 |
+
|
899 |
+
#: admin/classes/tmp/options.php:75
|
900 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
901 |
+
#, fuzzy
|
902 |
+
msgid "BuddyPress Pages"
|
903 |
+
msgstr "بادي برس"
|
904 |
+
|
905 |
+
#: admin/classes/tmp/options.php:76
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
907 |
+
msgid "bbPress Pages"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: admin/classes/tmp/options.php:77
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
912 |
+
msgid "WooCommerce Pages"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: admin/classes/tmp/options.php:79
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
917 |
+
msgid "Remove the plugin's css and js file on these pages."
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: admin/classes/tmp/options.php:84
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
922 |
msgid "Format Number"
|
923 |
msgstr "شکل الارقام"
|
924 |
|
925 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
926 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
927 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
928 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
929 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
930 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
931 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
932 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
933 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
934 |
+
#: admin/classes/tmp/options.php:508
|
935 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
936 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
937 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
938 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
939 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
940 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
941 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
942 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
943 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
944 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
945 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
946 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
947 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
948 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
949 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
950 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
951 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
952 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
953 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
954 |
msgid "Activate"
|
955 |
msgstr "تفعيل"
|
956 |
|
957 |
+
#: admin/classes/tmp/options.php:86
|
958 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
959 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
960 |
msgstr ""
|
961 |
"من خلال تفعیل هذا الخيار، يمكنك عرض تنسيق الأرقام فوق 1000 بصورة سلسلة (KB)."
|
962 |
|
963 |
+
#: admin/classes/tmp/options.php:91
|
964 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
965 |
#, fuzzy
|
966 |
msgid "Notifications"
|
967 |
msgstr "الاشعارت علی بادي برس"
|
968 |
|
969 |
+
#: admin/classes/tmp/options.php:93
|
970 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
971 |
msgid "Custom toast messages after each activity"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: admin/classes/tmp/options.php:96
|
975 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
976 |
#, fuzzy
|
977 |
msgid "Thanks! You Liked This."
|
978 |
msgstr "این را پسندیده اید"
|
979 |
|
980 |
+
#: admin/classes/tmp/options.php:97
|
981 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
982 |
msgid "Liked Notice Message"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: admin/classes/tmp/options.php:100
|
986 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
987 |
#, fuzzy
|
988 |
msgid "Sorry! You unliked this."
|
989 |
msgstr "لغو پسندیدن"
|
990 |
|
991 |
+
#: admin/classes/tmp/options.php:101
|
992 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
993 |
msgid "Unliked Notice Message"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
997 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
998 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
999 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
1000 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
1001 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
1002 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
1003 |
msgid "Themes"
|
1004 |
msgstr "القوالب"
|
1005 |
|
1006 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
1007 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
1008 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
1009 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
1010 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
1011 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
1012 |
msgid "Auto Display Position"
|
1013 |
msgstr "موقع عرض التلقائي"
|
1014 |
|
1015 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
1016 |
+
#: admin/classes/tmp/options.php:437
|
1017 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
1018 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
1019 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
1020 |
msgid "Top of Content"
|
1021 |
msgstr "اعلی المحتوا"
|
1022 |
|
1023 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
1024 |
+
#: admin/classes/tmp/options.php:438
|
1025 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
1026 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
1027 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
1028 |
msgid "Bottom of Content"
|
1029 |
msgstr "اسفل المحتوا"
|
1030 |
|
1031 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
1032 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
1033 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1034 |
msgid "Top and Bottom"
|
1035 |
msgstr "أعلى وأسفل"
|
1036 |
|
1037 |
+
#: admin/classes/tmp/options.php:135
|
1038 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1039 |
msgid "Auto Display Filter"
|
1040 |
msgstr "التصفية في عرض التلقائي"
|
1041 |
|
1042 |
+
#: admin/classes/tmp/options.php:146
|
1043 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1044 |
msgid "You can filter theses pages on auto display option."
|
1045 |
msgstr "كما يمكنك تحديد الأطروحات صفحات خيار لعدم عرض زر الاعجاب"
|
1046 |
|
1047 |
+
#: admin/classes/tmp/options.php:151
|
1048 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1049 |
msgid "Google Rich Snippets"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: admin/classes/tmp/options.php:153
|
1053 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1054 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1058 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1059 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1060 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1061 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1062 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1063 |
msgid "Only registered Users"
|
1064 |
msgstr "فقط الأعضاء المسجلين"
|
1065 |
|
1066 |
+
#: admin/classes/tmp/options.php:160
|
1067 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1068 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1069 |
msgstr ""
|
1070 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1071 |
"اعمال اعجاب"
|
1072 |
|
1073 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1074 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1075 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1076 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1077 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1078 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1079 |
msgid "Do Not Log"
|
1080 |
msgstr "عدم تسجيل الاحداث"
|
1081 |
|
1082 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1083 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1084 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1085 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1086 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1087 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1088 |
msgid "Logged By Cookie"
|
1089 |
msgstr "تسجيل بواسطة كوكي"
|
1090 |
|
1091 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1092 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1093 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1094 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1095 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1096 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1097 |
msgid "Logged By IP"
|
1098 |
msgstr "تسجيل عن طريق IP"
|
1099 |
|
1100 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1101 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1102 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1103 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1104 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1105 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1106 |
msgid "Logged By Username"
|
1107 |
msgstr "تسجيل بواسطة اسم المستخدم"
|
1108 |
|
1109 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1110 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1111 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1112 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1113 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1114 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1115 |
msgid "Show Liked Users Box"
|
1116 |
msgstr "مشاهدة المستخدمين الذين عاملین اعجاب"
|
1117 |
|
1118 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1119 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1120 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1121 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1122 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1123 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1124 |
msgid ""
|
1125 |
"Active this option to show liked users avatars in the bottom of button like."
|
1126 |
msgstr ""
|
1127 |
"من خلال تفعیل هذا الخیار، بامکانکم مشاهدة آوتار اعضاء العاملین اعجاب اسفل زر "
|
1128 |
"الاعجاب ."
|
1129 |
|
1130 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1131 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1133 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1134 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1136 |
msgid "Size of Gravatars"
|
1137 |
msgstr "مقیاس قراواتار"
|
1138 |
|
1139 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1140 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1141 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1142 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1143 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1144 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1145 |
msgid "Size of Gravatars to return (max is 512)"
|
1146 |
msgstr "مقیاس تصاویر قراواتار (الحد الأقصى 512)"
|
1147 |
|
1148 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1149 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1150 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1151 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1152 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1153 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1154 |
msgid "Number Of The Users"
|
1155 |
msgstr "عرض عدد المستخدمین"
|
1156 |
|
1157 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1158 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1159 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1160 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1162 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1163 |
msgid "The number of users to show in the users liked box"
|
1164 |
msgstr "حد الاقصی لإعرض عدد المستخدمين فی الباکس ؟!"
|
1165 |
|
1166 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1167 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1168 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1169 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1170 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1171 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1172 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1173 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1174 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1175 |
msgid "Allowed Variables:"
|
1176 |
msgstr "المتغیرات المسموحة :"
|
1177 |
|
1178 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1179 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1180 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1181 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1182 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1183 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1184 |
msgid "Delete All Logs"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1188 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1189 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1190 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1191 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1192 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1193 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1197 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1198 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1199 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1200 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1201 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1202 |
msgid "Delete All Data"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1206 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1207 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1208 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1209 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1210 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1211 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: admin/classes/tmp/options.php:245
|
1215 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1216 |
msgid ""
|
1217 |
"<strong>Only</strong> registered users have permission to like comments."
|
1218 |
msgstr ""
|
1219 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1220 |
"اعمال اعجاب علی التعالیق"
|
1221 |
|
1222 |
+
#: admin/classes/tmp/options.php:320
|
1223 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
#, fuzzy
|
1225 |
msgid "Activity Content"
|
1226 |
msgstr "ID النشاط"
|
1227 |
|
1228 |
+
#: admin/classes/tmp/options.php:321
|
1229 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1230 |
#, fuzzy
|
1231 |
msgid "Activity Meta"
|
1232 |
msgstr "ID النشاط"
|
1233 |
|
1234 |
+
#: admin/classes/tmp/options.php:327
|
1235 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1236 |
#, fuzzy
|
1237 |
msgid "Activity Comment"
|
1238 |
msgstr "ID النشاط"
|
1239 |
|
1240 |
+
#: admin/classes/tmp/options.php:329
|
1241 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1242 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: admin/classes/tmp/options.php:336
|
1246 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1247 |
msgid ""
|
1248 |
"<strong>Only</strong> registered users have permission to like activities."
|
1249 |
msgstr ""
|
1250 |
"من خلال تفعیل هذا الخیار، <strong>فقط</strong> الاعضاء المسجلین،بامکانهم "
|
1251 |
"اعمال اعجاب علی الانشطة فی بادي برس"
|
1252 |
|
1253 |
+
#: admin/classes/tmp/options.php:377
|
1254 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1255 |
msgid "BuddyPress Activity"
|
1256 |
msgstr "الأنشطة علی بادی پرس"
|
1257 |
|
1258 |
+
#: admin/classes/tmp/options.php:379
|
1259 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1260 |
msgid "insert new likes in buddyPress activity page"
|
1261 |
msgstr ""
|
1262 |
"من خلال تفعیل هذا الخیار، ستضاف احدث الاعجابات علی الانشطة فی بادي برس. "
|
1263 |
|
1264 |
+
#: admin/classes/tmp/options.php:384
|
1265 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1266 |
#, fuzzy
|
1267 |
msgid "BuddyPress Custom Notification"
|
1268 |
msgstr "الاشعارت علی بادي برس"
|
1269 |
|
1270 |
+
#: admin/classes/tmp/options.php:386
|
1271 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1272 |
msgid "Sends out notifications when you get a like from someone"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: admin/classes/tmp/options.php:446
|
1276 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1277 |
#, fuzzy
|
1278 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1279 |
msgstr ""
|
1280 |
"من خلال تفعیل هذا الخیار، <strong>فقط </strong>الاعضاء المسجلین،بامکانهم "
|
1281 |
"اعمال اعجاب"
|
1282 |
|
1283 |
+
#: admin/classes/tmp/options.php:480
|
1284 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1285 |
#, fuzzy
|
1286 |
msgid "Users who have liked this topic:"
|
1287 |
msgstr "المستخدمین المعجبین بهذا :"
|
1288 |
|
1289 |
+
#: admin/classes/tmp/options.php:502
|
1290 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1291 |
+
msgid "Customize"
|
1292 |
+
msgstr "تخصيص"
|
1293 |
+
|
1294 |
+
#: admin/classes/tmp/options.php:507
|
1295 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1296 |
+
msgid "Custom Style"
|
1297 |
+
msgstr "تخصیص الاسلوب ( Style) : "
|
1298 |
+
|
1299 |
+
#: admin/classes/tmp/options.php:512
|
1300 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1301 |
+
msgid "Active this option to see the custom style settings."
|
1302 |
+
msgstr "من خلال تفعیل هذا الخیار ، بامکانک تستخدم الاعدادت المخصصه في الاضافة"
|
1303 |
+
|
1304 |
+
#: admin/classes/tmp/options.php:516
|
1305 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1306 |
+
msgid "Button style"
|
1307 |
+
msgstr "زر الاعجاب"
|
1308 |
+
|
1309 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1310 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1311 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1312 |
+
msgid "Background"
|
1313 |
+
msgstr "لون الارضیة"
|
1314 |
+
|
1315 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1316 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1317 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1318 |
+
msgid "Border Color"
|
1319 |
+
msgstr "لون الحدود"
|
1320 |
+
|
1321 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1322 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1323 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1324 |
+
msgid "Text Color"
|
1325 |
+
msgstr "لون الخط"
|
1326 |
+
|
1327 |
+
#: admin/classes/tmp/options.php:529
|
1328 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1329 |
+
msgid "Counter Style"
|
1330 |
+
msgstr "باکس العداد :"
|
1331 |
+
|
1332 |
+
#: admin/classes/tmp/options.php:542
|
1333 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1334 |
+
msgid "Loading Animation"
|
1335 |
+
msgstr "الرسوم المتحركة تحميل"
|
1336 |
+
|
1337 |
+
#: admin/classes/tmp/options.php:547
|
1338 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1339 |
+
#, fuzzy
|
1340 |
+
msgid "Custom CSS"
|
1341 |
+
msgstr "تخصیص الاسلوب ( Style) : "
|
1342 |
+
|
1343 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1344 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1345 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1346 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1347 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1348 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1349 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1350 |
msgid "Logs"
|
1351 |
msgstr "السجلات"
|
1352 |
|
1353 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1354 |
msgid "Are you sure to remove this item?!"
|
1355 |
msgstr "هل أنت متأكد لإزالة هذا البند ؟!"
|
1356 |
|
1357 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1358 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1359 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1360 |
msgid "WP ULike Logs"
|
1361 |
msgstr "الاحداث في وردبرس یولایک"
|
1362 |
|
1363 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1364 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1365 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1366 |
msgid "ID"
|
1367 |
msgstr "ID"
|
1368 |
|
1369 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1370 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1371 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1372 |
msgid "Username"
|
1373 |
msgstr "اسم المستخدم : "
|
1374 |
|
1375 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1376 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1377 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1378 |
msgid "Status"
|
1379 |
msgstr "وضعیة"
|
1380 |
|
1381 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1382 |
msgid "Post ID"
|
1383 |
msgstr "ID المنشور"
|
1384 |
|
1385 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1386 |
msgid "Post Title"
|
1387 |
msgstr "عنوان المنشور"
|
1388 |
|
1389 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1390 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1391 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1392 |
msgid "Date / Time"
|
1393 |
msgstr "تاريخ / وقت"
|
1394 |
|
1395 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1396 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1397 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1398 |
msgid "IP"
|
1399 |
msgstr "عنوان IP"
|
1400 |
|
1401 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1402 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1403 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1404 |
msgid "Actions"
|
1405 |
msgstr "تطبیقات"
|
1406 |
|
1407 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1408 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1409 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1410 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1411 |
msgid "Guest User"
|
1412 |
msgstr "مستخدم ضيف"
|
1413 |
|
1414 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1415 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1416 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1417 |
msgid ""
|
1418 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1419 |
"you don't have any data on this table)"
|
1421 |
"<strong>خطاء:</strong> چیزی یافت نشد. (هذه المشكلة بسبب لم يكن لديك أي "
|
1422 |
"بيانات في هذا الجدول)"
|
1423 |
|
1424 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1425 |
msgid "Comment ID"
|
1426 |
msgstr "ID التعلیق"
|
1427 |
|
1428 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1429 |
msgid "Comment Author"
|
1430 |
msgstr "کاتب التعلیق"
|
1431 |
|
1432 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1433 |
msgid "Comment Text"
|
1434 |
msgstr "نص التعليق"
|
1435 |
|
1436 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1437 |
msgid "Activity ID"
|
1438 |
msgstr "ID النشاط"
|
1439 |
|
1440 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1441 |
msgid "Permalink"
|
1442 |
msgstr "روابط دائمة"
|
1443 |
|
1444 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1445 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1446 |
msgstr "<a href=\"%1$s\">عرض الانشطة</a>"
|
1447 |
|
1448 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1449 |
msgid "Topic ID"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1453 |
#, fuzzy
|
1454 |
msgid "Topic Title"
|
1455 |
msgstr "عنوان المنشور"
|
1574 |
msgid "Days"
|
1575 |
msgstr "أيام"
|
1576 |
|
1577 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1578 |
+
#: inc/classes/class-mycred.php:211
|
1579 |
msgid "Points for Liking content"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1583 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1584 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1585 |
msgid "Limit"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1589 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1590 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1591 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1592 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1593 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1594 |
msgid "Log template"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1598 |
+
#: inc/classes/class-mycred.php:228
|
1599 |
msgid "Points for Author Who Get Liked"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1603 |
+
#: inc/classes/class-mycred.php:245
|
1604 |
msgid "Points for unliking content"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1608 |
+
#: inc/classes/class-mycred.php:257
|
1609 |
msgid "Points for Author Who Get Unliked"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1613 |
msgid "WP ULike Activity"
|
1614 |
msgstr "نشاطات وردبرس یولایک"
|
1615 |
|
1616 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1617 |
#, fuzzy
|
1618 |
msgid "Likes"
|
1619 |
msgstr "اعجاب"
|
1620 |
|
1621 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1622 |
msgid "You have a new like from"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1626 |
msgid ""
|
1627 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1628 |
"WordPress, bbPress, BuddyPress & ..."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1632 |
msgid "Liking Content"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1636 |
#, fuzzy
|
1637 |
msgid "Liked Content"
|
1638 |
msgstr "تعليقات الشعبیة"
|
1639 |
|
1640 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1641 |
msgid "Unliking Content"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1645 |
msgid "Unliked Content"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1649 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1650 |
+
#: inc/wp-functions.php:690
|
1651 |
#, fuzzy
|
1652 |
msgid "Recent Posts Liked"
|
1653 |
msgstr "مجموع کل المشاركات التی عاملین اعجاب بهن"
|
1654 |
|
1655 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1656 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1657 |
+
#: inc/wp-functions.php:730
|
1658 |
#, fuzzy
|
1659 |
msgid "Recent Comments Liked"
|
1660 |
msgstr "مجموع کل التعلیقات التی عاملین اعجاب بهن"
|
1661 |
|
1662 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1663 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1664 |
+
#: inc/wp-functions.php:747
|
1665 |
msgid "This user has not made any likes."
|
1666 |
msgstr ""
|
1667 |
|
1769 |
msgid "Downvote"
|
1770 |
msgstr " تصویت سلبی"
|
1771 |
|
1772 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1773 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1774 |
msgid "You need to login in order to like this post: "
|
1775 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا المنشور :"
|
1776 |
|
1777 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1778 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1779 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1780 |
+
#: inc/wp-ulike.php:281
|
1781 |
msgid "click here"
|
1782 |
msgstr "اضغط هنا انقر للدخول"
|
1783 |
|
1784 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1785 |
msgid "You need to login in order to like this comment: "
|
1786 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا التعلیق :"
|
1787 |
|
1788 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1789 |
msgid "You need to login in order to like this activity: "
|
1790 |
msgstr "تحتاج إلى تسجيل الدخول لتقییم هذة النشاطة :"
|
1791 |
|
1792 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1793 |
+
msgid "Error: Something Wrong Happened!"
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1797 |
msgid "Error: This Method Is Not Exist!"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1801 |
#, fuzzy
|
1802 |
msgid "Settings"
|
1803 |
msgstr "حفظ التغییرات"
|
1804 |
|
1805 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1806 |
#, fuzzy
|
1807 |
msgid "Statistics"
|
1808 |
msgstr "الصفحة الجدیدة للاحصائيات"
|
1809 |
|
1810 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1811 |
msgid "About"
|
1812 |
msgstr ""
|
1813 |
|
1823 |
msgid "http://about.alimir.ir"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#~ msgid ""
|
1827 |
+
#~ "Show your support by Rating 5 Star in <a href=\"http://wordpress.org/"
|
1828 |
+
#~ "plugins/wp-ulike\"> Plugin Directory reviews</a>"
|
1829 |
+
#~ msgstr ""
|
1830 |
+
#~ "للحمایة من هذه الاضافة، قیمها بخمس 5 نحوم <a href=\"http://wordpress.org/"
|
1831 |
+
#~ "plugins/wp-ulike\"> فی وردبرس</a> "
|
1832 |
+
|
1833 |
+
#~ msgid ""
|
1834 |
+
#~ "If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data "
|
1835 |
+
#~ "logs will save for all users, the convey of like/dislike condition will "
|
1836 |
+
#~ "check by user IP & SetCookie"
|
1837 |
+
#~ msgstr ""
|
1838 |
+
#~ "إذا قمت بتحديد <strong>\"کوکي و آي بي \"</strong> :یتم تسجیل احداث "
|
1839 |
+
#~ "المستخدمین،وشروط اعمال الاعجاب /الغاء الاعجاب یتم فحصهن بواسطة کوکي و آي "
|
1840 |
+
#~ "بي"
|
1841 |
+
|
1842 |
+
#~ msgid "Logged By Cookie & IP"
|
1843 |
+
#~ msgstr "تسجيل بواسطة كوكي & IP"
|
1844 |
+
|
1845 |
#~ msgid "Novelty Of WP ULike"
|
1846 |
#~ msgstr "الجدید علی وردبرس یولایک"
|
1847 |
|
lang/wp-ulike-cs_CZ.mo
CHANGED
Binary file
|
lang/wp-ulike-cs_CZ.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
|
@@ -21,69 +21,57 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
-
#: admin/about.php:
|
25 |
-
#: build/wp-ulike/admin/about.php:290
|
26 |
-
msgid "Like this plugin?"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
30 |
-
#: build/wp-ulike/admin/about.php:291
|
31 |
-
msgid ""
|
32 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
33 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
37 |
msgid "Welcome to WP ULike"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/about.php:
|
41 |
msgid ""
|
42 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
43 |
"powerful version yet."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/about.php:
|
47 |
#: build/wp-ulike/admin/stats.php:38
|
48 |
msgid "Visit our homepage"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: admin/about.php:
|
52 |
msgid "Version"
|
53 |
msgstr "Verze"
|
54 |
|
55 |
-
#: admin/about.php:
|
56 |
msgid "Getting Started"
|
57 |
msgstr "Začínáme"
|
58 |
|
59 |
-
#: admin/about.php:
|
60 |
msgid "Credits"
|
61 |
msgstr "Autoři"
|
62 |
|
63 |
-
#: admin/about.php:
|
64 |
-
#: build/wp-ulike/admin/about.php:
|
65 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
66 |
#: build/wp-ulike/admin/stats.php:52
|
67 |
msgid "Support"
|
68 |
msgstr "Podpora"
|
69 |
|
70 |
-
#: admin/about.php:
|
71 |
-
#: build/wp-ulike/admin/about.php:
|
72 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
73 |
#: build/wp-ulike/admin/stats.php:53
|
74 |
msgid "FAQ"
|
75 |
msgstr "Časté dotazy"
|
76 |
|
77 |
-
#: admin/about.php:
|
78 |
msgid "Reviews"
|
79 |
msgstr "Recenze"
|
80 |
|
81 |
-
#: admin/about.php:
|
82 |
msgid "Introducing WP ULike"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/about.php:
|
86 |
-
#: build/wp-ulike/admin/about.php:
|
87 |
#: build/wp-ulike/admin/stats.php:37
|
88 |
msgid "About WP ULike"
|
89 |
msgstr ""
|
@@ -96,118 +84,137 @@ msgid ""
|
|
96 |
"options."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/about.php:
|
100 |
msgid "WP Ulike Extension"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/about.php:
|
104 |
msgid ""
|
105 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
106 |
"activities & bbPress Topics."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/about.php:
|
110 |
msgid "Added More Than 20 Language Files"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/about.php:
|
114 |
msgid ""
|
115 |
"WP ULike is already translated into +20 languages, with more always in "
|
116 |
"progress."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/about.php:
|
120 |
msgid "User Profile Links"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/about.php:
|
124 |
msgid ""
|
125 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
126 |
"UltimateMember plugins."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/about.php:
|
130 |
msgid "New Themes And Styles"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/about.php:
|
134 |
msgid ""
|
135 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
136 |
"customize them by your taste."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/about.php:
|
140 |
msgid "myCRED Points Support"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/about.php:
|
144 |
msgid ""
|
145 |
"myCRED is an adaptive points management system that lets you award / charge "
|
146 |
"your users for interacting with your WordPress."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/about.php:
|
150 |
-
#: build/wp-ulike/admin/about.php:
|
151 |
#: build/wp-ulike/admin/stats.php:395
|
152 |
msgid "Likers World Map"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/about.php:
|
156 |
msgid ""
|
157 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
158 |
"likers by their country in the world map & Top Liker widget."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/about.php:
|
162 |
-
#: build/wp-ulike/admin/about.php:
|
163 |
#: build/wp-ulike/admin/stats.php:24
|
164 |
msgid "WP ULike Statistics"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/about.php:
|
168 |
-
#: build/wp-ulike/admin/about.php:
|
169 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
170 |
msgid "Home"
|
171 |
msgstr "Úvodní stránka"
|
172 |
|
173 |
-
#: admin/about.php:
|
174 |
msgid "OR"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin/about.php:
|
178 |
-
#: build/wp-ulike/admin/admin.php:
|
179 |
msgid "WP ULike Settings"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: admin/about.php:
|
183 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin/about.php:
|
187 |
msgid "Project Leaders"
|
188 |
msgstr "Vedení projektu"
|
189 |
|
190 |
-
#: admin/about.php:
|
191 |
msgid "Project Lead & Developer"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: admin/about.php:
|
195 |
msgid "Translations"
|
196 |
msgstr "Čeština"
|
197 |
|
198 |
-
#: admin/about.php:
|
199 |
msgid "Would you like to help translate the plugin into more languages?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/about.php:
|
203 |
msgid "Join our WP-Translations Community"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: admin/about.php:
|
207 |
msgid "Other Plugins"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid ""
|
212 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
213 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -218,56 +225,56 @@ msgstr ""
|
|
218 |
msgid "WP ULike"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin/admin.php:
|
222 |
msgid "Settings saved."
|
223 |
msgstr "Nastavení bylo uloženo."
|
224 |
|
225 |
-
#: admin/admin.php:
|
226 |
-
#: build/wp-ulike/admin/admin.php:
|
227 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin/admin.php:
|
231 |
-
#: build/wp-ulike/admin/admin.php:
|
232 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin/admin.php:
|
236 |
-
#: build/wp-ulike/admin/admin.php:
|
237 |
#: build/wp-ulike/admin/stats.php:43
|
238 |
msgid "Post Likes Logs"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/admin.php:
|
242 |
-
#: build/wp-ulike/admin/admin.php:
|
243 |
#: build/wp-ulike/admin/stats.php:44
|
244 |
msgid "Comment Likes Logs"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/admin.php:
|
248 |
-
#: build/wp-ulike/admin/admin.php:
|
249 |
#: build/wp-ulike/admin/stats.php:45
|
250 |
msgid "Activity Likes Logs"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin/admin.php:
|
254 |
-
#: build/wp-ulike/admin/admin.php:
|
255 |
#: build/wp-ulike/admin/stats.php:46
|
256 |
msgid "Topics Likes Logs"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/admin.php:
|
260 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
261 |
msgid "Default"
|
262 |
msgstr "Základní"
|
263 |
|
264 |
-
#: admin/admin.php:
|
265 |
-
#: build/wp-ulike/admin/admin.php:
|
266 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
267 |
msgid "Heart"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin/admin.php:
|
271 |
msgid "Robeen"
|
272 |
msgstr ""
|
273 |
|
@@ -292,14 +299,14 @@ msgstr ""
|
|
292 |
msgid "Similar Settings"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
296 |
-
#: admin/classes/tmp/
|
297 |
-
#: admin/classes/tmp/
|
298 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
299 |
-
#: build/wp-ulike/admin/classes/tmp/
|
300 |
-
#: build/wp-ulike/admin/classes/tmp/
|
301 |
-
#: build/wp-ulike/admin/classes/tmp/
|
302 |
-
#: build/wp-ulike/admin/classes/tmp/
|
303 |
msgid "Logging Method"
|
304 |
msgstr ""
|
305 |
|
@@ -329,242 +336,235 @@ msgstr ""
|
|
329 |
#: admin/classes/class-settings.php:53
|
330 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
331 |
msgid ""
|
332 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
333 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
334 |
-
"user IP & SetCookie"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: admin/classes/class-settings.php:54
|
338 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
339 |
-
msgid ""
|
340 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
341 |
"is saved for registered users, the convey of like/dislike condition will "
|
342 |
"check by username, There is no permission for guest users to unlike/undislike"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/classes/class-settings.php:
|
346 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
347 |
msgid "Template Variables"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/classes/class-settings.php:
|
351 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
352 |
msgid "Start the loop of logs"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/classes/class-settings.php:
|
|
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
357 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
358 |
msgid "required"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/classes/class-settings.php:
|
362 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
363 |
msgid "End of the while loop"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/classes/class-settings.php:
|
367 |
-
#: admin/classes/class-settings.php:
|
368 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
369 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
370 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
371 |
msgid "Display the liker name"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/classes/class-settings.php:
|
375 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
376 |
msgid "Display the liker avatar (By Gravatar)"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/classes/class-settings.php:
|
380 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
381 |
msgid "Display the BuddyPress user profile url"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/classes/class-settings.php:
|
385 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
386 |
msgid "Display the UltimateMemebr user profile url"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/classes/class-settings.php:
|
390 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
391 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
392 |
msgid "Display the permalink"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/classes/class-settings.php:
|
396 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
397 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
398 |
msgid "Display the likes count number"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/classes/class-settings.php:
|
402 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
403 |
msgid "Display the post title"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/classes/class-settings.php:
|
407 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
408 |
msgid "Display the comment author name"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/classes/class-settings.php:
|
412 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
413 |
-
#: build/wp-ulike/admin/classes/tmp/
|
414 |
msgid "Posts"
|
415 |
msgstr "Příspěvky"
|
416 |
|
417 |
-
#: admin/classes/class-settings.php:
|
418 |
-
#: admin/classes/class-settings.php:
|
419 |
-
#: admin/classes/tmp/
|
420 |
-
#: admin/classes/tmp/
|
421 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
422 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
423 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
424 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/tmp/
|
426 |
-
#: build/wp-ulike/admin/classes/tmp/
|
427 |
-
#: build/wp-ulike/admin/classes/tmp/
|
428 |
-
#: build/wp-ulike/admin/classes/tmp/
|
429 |
msgid "Automatic display"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/classes/class-settings.php:
|
433 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
434 |
msgid ""
|
435 |
"If you disable this option, you have to put manually this code on wordpress "
|
436 |
"while loop"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/classes/class-settings.php:
|
440 |
-
#: admin/classes/class-settings.php:
|
441 |
-
#: admin/classes/tmp/
|
442 |
-
#: admin/classes/tmp/
|
443 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
444 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
445 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
446 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
447 |
-
#: build/wp-ulike/admin/classes/tmp/
|
448 |
-
#: build/wp-ulike/admin/classes/tmp/
|
449 |
-
#: build/wp-ulike/admin/classes/tmp/
|
450 |
-
#: build/wp-ulike/admin/classes/tmp/
|
451 |
msgid "Users Like Box Template"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/classes/class-settings.php:
|
455 |
-
#: admin/classes/class-settings.php:
|
456 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
457 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
458 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
459 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
460 |
msgid "Default Template:"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/classes/class-settings.php:
|
464 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
465 |
-
#: build/wp-ulike/admin/classes/tmp/
|
466 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
467 |
-
#: inc/classes/class-ulike.php:
|
468 |
msgid "Users who have LIKED this post:"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/classes/class-settings.php:
|
472 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
473 |
-
#: build/wp-ulike/admin/classes/tmp/
|
474 |
msgid "Comments"
|
475 |
msgstr "komentářů na stránku"
|
476 |
|
477 |
-
#: admin/classes/class-settings.php:
|
478 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
479 |
msgid ""
|
480 |
"If you disable this option, you have to put manually this code on comments "
|
481 |
"text"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/classes/class-settings.php:
|
485 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
486 |
-
#: build/wp-ulike/admin/classes/tmp/
|
487 |
msgid "Users who have LIKED this comment:"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/classes/class-settings.php:
|
491 |
-
#: admin/classes/tmp/
|
492 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
493 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
494 |
-
#: build/wp-ulike/admin/classes/tmp/
|
495 |
msgid "BuddyPress"
|
496 |
msgstr "BuddyPress"
|
497 |
|
498 |
-
#: admin/classes/class-settings.php:
|
499 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
500 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
501 |
msgid ""
|
502 |
"If you disable this option, you have to put manually this code on buddypres "
|
503 |
"activities content"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/classes/class-settings.php:
|
507 |
-
#: admin/classes/tmp/
|
508 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
509 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
510 |
-
#: build/wp-ulike/admin/classes/tmp/
|
511 |
msgid "Users who have liked this activity:"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/classes/class-settings.php:
|
515 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
516 |
-
#: build/wp-ulike/admin/classes/tmp/
|
517 |
msgid "Post Activity Text"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/classes/class-settings.php:
|
521 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
522 |
-
#: build/wp-ulike/admin/classes/tmp/
|
523 |
msgid "Comment Activity Text"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/classes/class-settings.php:
|
527 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
528 |
-
#: build/wp-ulike/admin/classes/tmp/
|
529 |
msgid "bbPress"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/classes/class-settings.php:
|
533 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
534 |
msgid "For more information:"
|
535 |
msgstr "Další informace:"
|
536 |
|
537 |
-
#: admin/classes/class-settings.php:
|
538 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
539 |
msgid "Default settings have been reset."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/classes/class-settings.php:
|
543 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
544 |
msgid ""
|
545 |
"Do you really want to reset all these settings to their default values ?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/classes/class-settings.php:
|
549 |
-
#: admin/classes/class-settings.php:
|
550 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
551 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
552 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/classes/class-settings.php:
|
557 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
558 |
msgid "Select %s"
|
559 |
msgstr "Zvolit: %s"
|
560 |
|
561 |
-
#: admin/classes/class-settings.php:
|
562 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/classes/class-settings.php:
|
567 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
@@ -579,800 +579,824 @@ msgid ""
|
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/classes/class-widget.php:
|
583 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
584 |
msgid "on"
|
585 |
msgstr "off"
|
586 |
|
587 |
-
#: admin/classes/class-widget.php:
|
588 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/classes/class-widget.php:
|
593 |
-
#: admin/classes/tmp/
|
594 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
595 |
-
#: build/wp-ulike/admin/classes/tmp/
|
596 |
-
#: build/wp-ulike/admin/classes/tmp/
|
597 |
-
#: build/wp-ulike/admin/classes/tmp/
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/classes/class-widget.php:
|
603 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/classes/class-widget.php:
|
608 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
609 |
msgid "Title:"
|
610 |
msgstr "Název:"
|
611 |
|
612 |
-
#: admin/classes/class-widget.php:
|
613 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
614 |
msgid "Type:"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/classes/class-widget.php:
|
618 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/classes/class-widget.php:
|
625 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/classes/class-widget.php:
|
632 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/classes/class-widget.php:
|
638 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/classes/class-widget.php:
|
644 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/classes/class-widget.php:
|
650 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/classes/class-widget.php:
|
655 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
656 |
msgid "Period:"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/classes/class-widget.php:
|
660 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
661 |
msgid "All The Times"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/classes/class-widget.php:
|
665 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
666 |
msgid "Year"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: admin/classes/class-widget.php:
|
670 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
671 |
#: build/wp-ulike/admin/stats.php:154
|
672 |
msgid "Month"
|
673 |
msgstr "Měsíc"
|
674 |
|
675 |
-
#: admin/classes/class-widget.php:
|
676 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
677 |
#: build/wp-ulike/admin/stats.php:149
|
678 |
msgid "Week"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: admin/classes/class-widget.php:
|
682 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
683 |
#: build/wp-ulike/admin/stats.php:144
|
684 |
msgid "Yesterday"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: admin/classes/class-widget.php:
|
688 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
689 |
#: build/wp-ulike/admin/stats.php:139
|
690 |
msgid "Today"
|
691 |
msgstr "Dnes"
|
692 |
|
693 |
-
#: admin/classes/class-widget.php:
|
694 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
695 |
msgid "Style:"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: admin/classes/class-widget.php:
|
699 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
700 |
msgid "Simple"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: admin/classes/class-widget.php:
|
704 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
705 |
msgid "Title Trim (Length):"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/classes/class-widget.php:
|
709 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
710 |
-
msgid "Number of items to show:"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: admin/classes/class-widget.php:447
|
714 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
715 |
-
msgid "Thumbnail/Avatar size:"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: admin/classes/class-widget.php:453
|
719 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
720 |
msgid "Profile URL:"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: admin/classes/class-widget.php:
|
724 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
725 |
msgid "UltimateMember"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: admin/classes/class-widget.php:
|
729 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
730 |
msgid "Activate Like Counter"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: admin/classes/class-widget.php:
|
734 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
735 |
msgid "Activate Thumbnail/Avatar"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: admin/classes/
|
739 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
740 |
msgid "General"
|
741 |
msgstr "Obecné"
|
742 |
|
743 |
-
#: admin/classes/tmp/
|
744 |
-
#: build/wp-ulike/admin/classes/tmp/
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: admin/classes/tmp/
|
749 |
-
#: build/wp-ulike/admin/classes/tmp/
|
750 |
msgid "Icon"
|
751 |
msgstr "Ikonka"
|
752 |
|
753 |
-
#: admin/classes/tmp/
|
754 |
-
#: build/wp-ulike/admin/classes/tmp/
|
755 |
msgid "Text"
|
756 |
msgstr "Text"
|
757 |
|
758 |
-
#: admin/classes/tmp/
|
759 |
-
#: build/wp-ulike/admin/classes/tmp/
|
760 |
-
#: build/wp-ulike/admin/classes/tmp/
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: admin/classes/tmp/
|
765 |
-
#: admin/classes/tmp/
|
766 |
-
#: build/wp-ulike/admin/classes/tmp/
|
767 |
-
#: build/wp-ulike/admin/classes/tmp/
|
768 |
-
#: build/wp-ulike/admin/classes/tmp/
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: admin/classes/tmp/
|
773 |
-
#: build/wp-ulike/admin/classes/tmp/
|
774 |
-
#: build/wp-ulike/admin/classes/tmp/
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: admin/classes/tmp/
|
779 |
-
#: admin/classes/tmp/
|
780 |
-
#: build/wp-ulike/admin/classes/tmp/
|
781 |
-
#: build/wp-ulike/admin/classes/tmp/
|
782 |
-
#: build/wp-ulike/admin/classes/tmp/
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: admin/classes/tmp/
|
787 |
-
#: build/wp-ulike/admin/classes/tmp/
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: admin/classes/tmp/
|
792 |
-
#: build/wp-ulike/admin/classes/tmp/
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: admin/classes/tmp/
|
797 |
-
#: build/wp-ulike/admin/classes/tmp/
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: admin/classes/tmp/
|
802 |
-
#: build/wp-ulike/admin/classes/tmp/
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: admin/classes/tmp/
|
807 |
-
#: build/wp-ulike/admin/classes/tmp/
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: admin/classes/tmp/
|
812 |
-
#: build/wp-ulike/admin/classes/tmp/
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: admin/classes/tmp/
|
817 |
-
#: build/wp-ulike/admin/classes/tmp/
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: admin/classes/tmp/
|
822 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Format Number"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: admin/classes/tmp/
|
827 |
-
#: admin/classes/tmp/
|
828 |
-
#: admin/classes/tmp/
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: admin/classes/tmp/
|
835 |
-
#: admin/classes/tmp/
|
836 |
-
#: build/wp-ulike/admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
-
#: build/wp-ulike/admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
-
#: build/wp-ulike/admin/classes/tmp/
|
854 |
-
#: build/wp-ulike/admin/classes/tmp/
|
855 |
msgid "Activate"
|
856 |
msgstr "Aktivovat"
|
857 |
|
858 |
-
#: admin/classes/tmp/
|
859 |
-
#: build/wp-ulike/admin/classes/tmp/
|
860 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: admin/classes/tmp/
|
864 |
-
#: build/wp-ulike/admin/classes/tmp/
|
865 |
#, fuzzy
|
866 |
msgid "Notifications"
|
867 |
msgstr "Akce"
|
868 |
|
869 |
-
#: admin/classes/tmp/
|
870 |
-
#: build/wp-ulike/admin/classes/tmp/
|
871 |
msgid "Custom toast messages after each activity"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: admin/classes/tmp/
|
875 |
-
#: build/wp-ulike/admin/classes/tmp/
|
876 |
msgid "Thanks! You Liked This."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: admin/classes/tmp/
|
880 |
-
#: build/wp-ulike/admin/classes/tmp/
|
881 |
msgid "Liked Notice Message"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: admin/classes/tmp/
|
885 |
-
#: build/wp-ulike/admin/classes/tmp/
|
886 |
msgid "Sorry! You unliked this."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: admin/classes/tmp/
|
890 |
-
#: build/wp-ulike/admin/classes/tmp/
|
891 |
msgid "Unliked Notice Message"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: admin/classes/tmp/
|
895 |
-
#: admin/classes/tmp/
|
896 |
-
#: build/wp-ulike/admin/classes/tmp/
|
897 |
-
#: build/wp-ulike/admin/classes/tmp/
|
898 |
-
#: build/wp-ulike/admin/classes/tmp/
|
899 |
-
#: build/wp-ulike/admin/classes/tmp/
|
900 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
901 |
msgid "Themes"
|
902 |
msgstr "Šablony"
|
903 |
|
904 |
-
#: admin/classes/tmp/
|
905 |
-
#: admin/classes/tmp/
|
906 |
-
#: build/wp-ulike/admin/classes/tmp/
|
907 |
-
#: build/wp-ulike/admin/classes/tmp/
|
908 |
-
#: build/wp-ulike/admin/classes/tmp/
|
909 |
-
#: build/wp-ulike/admin/classes/tmp/
|
910 |
msgid "Auto Display Position"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: admin/classes/tmp/
|
914 |
-
#: admin/classes/tmp/
|
915 |
-
#: build/wp-ulike/admin/classes/tmp/
|
916 |
-
#: build/wp-ulike/admin/classes/tmp/
|
917 |
-
#: build/wp-ulike/admin/classes/tmp/
|
918 |
msgid "Top of Content"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: admin/classes/tmp/
|
922 |
-
#: admin/classes/tmp/
|
923 |
-
#: build/wp-ulike/admin/classes/tmp/
|
924 |
-
#: build/wp-ulike/admin/classes/tmp/
|
925 |
-
#: build/wp-ulike/admin/classes/tmp/
|
926 |
msgid "Bottom of Content"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: admin/classes/tmp/
|
930 |
-
#: build/wp-ulike/admin/classes/tmp/
|
931 |
-
#: build/wp-ulike/admin/classes/tmp/
|
932 |
msgid "Top and Bottom"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: admin/classes/tmp/
|
936 |
-
#: build/wp-ulike/admin/classes/tmp/
|
937 |
msgid "Auto Display Filter"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: admin/classes/tmp/
|
941 |
-
#: build/wp-ulike/admin/classes/tmp/
|
942 |
-
msgid "Single Posts"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#: admin/classes/tmp/settings.php:117
|
946 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
947 |
-
msgid "Pages"
|
948 |
-
msgstr "Stránky"
|
949 |
-
|
950 |
-
#: admin/classes/tmp/settings.php:118
|
951 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
952 |
-
msgid "Archives"
|
953 |
-
msgstr "Archiv"
|
954 |
-
|
955 |
-
#: admin/classes/tmp/settings.php:119
|
956 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
957 |
-
msgid "Categories"
|
958 |
-
msgstr "Rubriky:"
|
959 |
-
|
960 |
-
#: admin/classes/tmp/settings.php:120
|
961 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
962 |
-
msgid "Search Results"
|
963 |
-
msgstr "Výsledky vyhledávání"
|
964 |
-
|
965 |
-
#: admin/classes/tmp/settings.php:121
|
966 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
967 |
-
msgid "Tags"
|
968 |
-
msgstr "Štítky:"
|
969 |
-
|
970 |
-
#: admin/classes/tmp/settings.php:122
|
971 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
972 |
-
msgid "Author Page"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: admin/classes/tmp/settings.php:124
|
976 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
977 |
msgid "You can filter theses pages on auto display option."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: admin/classes/tmp/
|
981 |
-
#: build/wp-ulike/admin/classes/tmp/
|
982 |
msgid "Google Rich Snippets"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: admin/classes/tmp/
|
986 |
-
#: build/wp-ulike/admin/classes/tmp/
|
987 |
msgid "Add rich snippet for ratings in form of schema.org"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: admin/classes/tmp/
|
991 |
-
#: admin/classes/tmp/
|
992 |
-
#: build/wp-ulike/admin/classes/tmp/
|
993 |
-
#: build/wp-ulike/admin/classes/tmp/
|
994 |
-
#: build/wp-ulike/admin/classes/tmp/
|
995 |
-
#: build/wp-ulike/admin/classes/tmp/
|
996 |
msgid "Only registered Users"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: admin/classes/tmp/
|
1000 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1001 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: admin/classes/tmp/
|
1005 |
-
#: admin/classes/tmp/
|
1006 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1007 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1008 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1010 |
msgid "Do Not Log"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: admin/classes/tmp/
|
1014 |
-
#: admin/classes/tmp/
|
1015 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1016 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1017 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1018 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1019 |
msgid "Logged By Cookie"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: admin/classes/tmp/
|
1023 |
-
#: admin/classes/tmp/
|
1024 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1025 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1026 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1027 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1028 |
msgid "Logged By IP"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: admin/classes/tmp/
|
1032 |
-
#: admin/classes/tmp/
|
1033 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1034 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1035 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1036 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1037 |
-
msgid "Logged By Cookie & IP"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1041 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1042 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1043 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1044 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1045 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1046 |
msgid "Logged By Username"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: admin/classes/tmp/
|
1050 |
-
#: admin/classes/tmp/
|
1051 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1052 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1053 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1054 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1055 |
msgid "Show Liked Users Box"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: admin/classes/tmp/
|
1059 |
-
#: admin/classes/tmp/
|
1060 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1061 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1062 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1063 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1064 |
msgid ""
|
1065 |
"Active this option to show liked users avatars in the bottom of button like."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: admin/classes/tmp/
|
1069 |
-
#: admin/classes/tmp/
|
1070 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1071 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1072 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
msgid "Size of Gravatars"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: admin/classes/tmp/
|
1078 |
-
#: admin/classes/tmp/
|
1079 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1080 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1081 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1083 |
msgid "Size of Gravatars to return (max is 512)"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: admin/classes/tmp/
|
1087 |
-
#: admin/classes/tmp/
|
1088 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1089 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1090 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
msgid "Number Of The Users"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: admin/classes/tmp/
|
1096 |
-
#: admin/classes/tmp/
|
1097 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1098 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1099 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
msgid "The number of users to show in the users liked box"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: admin/classes/tmp/
|
1105 |
-
#: admin/classes/tmp/
|
1106 |
-
#: admin/classes/tmp/
|
1107 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1108 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1109 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1110 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1111 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
msgid "Allowed Variables:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: admin/classes/tmp/
|
1117 |
-
#: admin/classes/tmp/
|
1118 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1119 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1120 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
msgid "Delete All Logs"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: admin/classes/tmp/
|
1126 |
-
#: admin/classes/tmp/
|
1127 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1128 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1129 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: admin/classes/tmp/
|
1135 |
-
#: admin/classes/tmp/
|
1136 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1137 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1138 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
msgid "Delete All Data"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: admin/classes/tmp/
|
1144 |
-
#: admin/classes/tmp/
|
1145 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1146 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1147 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1148 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1149 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: admin/classes/tmp/
|
1153 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1154 |
msgid ""
|
1155 |
"<strong>Only</strong> registered users have permission to like comments."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: admin/classes/tmp/
|
1159 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1160 |
-
msgid "Customize"
|
1161 |
-
msgstr "Přizpůsobit"
|
1162 |
-
|
1163 |
-
#: admin/classes/tmp/settings.php:290
|
1164 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1165 |
-
msgid "Custom Style"
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: admin/classes/tmp/settings.php:295
|
1169 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1170 |
-
msgid "Active this option to see the custom style settings."
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: admin/classes/tmp/settings.php:299
|
1174 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1175 |
-
msgid "Button style"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1179 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1180 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1181 |
-
msgid "Background"
|
1182 |
-
msgstr "Pozadí"
|
1183 |
-
|
1184 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1185 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1186 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1187 |
-
msgid "Border Color"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1191 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1192 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1193 |
-
msgid "Text Color"
|
1194 |
-
msgstr "Barva textu"
|
1195 |
-
|
1196 |
-
#: admin/classes/tmp/settings.php:312
|
1197 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1198 |
-
msgid "Counter Style"
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#: admin/classes/tmp/settings.php:325
|
1202 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1203 |
-
msgid "Loading Animation"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: admin/classes/tmp/settings.php:330
|
1207 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1208 |
-
#, fuzzy
|
1209 |
-
msgid "Custom CSS"
|
1210 |
-
msgstr "Přizpůsobit"
|
1211 |
-
|
1212 |
-
#: admin/classes/tmp/settings.php:361
|
1213 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1214 |
msgid "Activity Content"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: admin/classes/tmp/
|
1218 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1219 |
msgid "Activity Meta"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: admin/classes/tmp/
|
1223 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1224 |
msgid "Activity Comment"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: admin/classes/tmp/
|
1228 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1229 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: admin/classes/tmp/
|
1233 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1234 |
msgid ""
|
1235 |
"<strong>Only</strong> registered users have permission to like activities."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: admin/classes/tmp/
|
1239 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1240 |
msgid "BuddyPress Activity"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: admin/classes/tmp/
|
1244 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1245 |
msgid "insert new likes in buddyPress activity page"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: admin/classes/tmp/
|
1249 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1250 |
msgid "BuddyPress Custom Notification"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: admin/classes/tmp/
|
1254 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1255 |
msgid "Sends out notifications when you get a like from someone"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: admin/classes/tmp/
|
1259 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1260 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: admin/classes/tmp/
|
1264 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1265 |
msgid "Users who have liked this topic:"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: admin/
|
1269 |
-
#:
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
#:
|
1274 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
msgid "Logs"
|
1276 |
msgstr "Log"
|
1277 |
|
1278 |
-
#: admin/logs.php:
|
1279 |
msgid "Are you sure to remove this item?!"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: admin/logs.php:
|
1283 |
-
#: build/wp-ulike/admin/logs.php:
|
1284 |
-
#: build/wp-ulike/admin/logs.php:
|
1285 |
msgid "WP ULike Logs"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: admin/logs.php:
|
1289 |
-
#: build/wp-ulike/admin/logs.php:
|
1290 |
-
#: build/wp-ulike/admin/logs.php:
|
1291 |
msgid "ID"
|
1292 |
msgstr "ID"
|
1293 |
|
1294 |
-
#: admin/logs.php:
|
1295 |
-
#: build/wp-ulike/admin/logs.php:
|
1296 |
-
#: build/wp-ulike/admin/logs.php:
|
1297 |
msgid "Username"
|
1298 |
msgstr "Uživatelské jméno"
|
1299 |
|
1300 |
-
#: admin/logs.php:
|
1301 |
-
#: build/wp-ulike/admin/logs.php:
|
1302 |
-
#: build/wp-ulike/admin/logs.php:
|
1303 |
msgid "Status"
|
1304 |
msgstr "Aktualita"
|
1305 |
|
1306 |
-
#: admin/logs.php:
|
1307 |
msgid "Post ID"
|
1308 |
msgstr "ID článku"
|
1309 |
|
1310 |
-
#: admin/logs.php:
|
1311 |
msgid "Post Title"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: admin/logs.php:
|
1315 |
-
#: build/wp-ulike/admin/logs.php:
|
1316 |
-
#: build/wp-ulike/admin/logs.php:
|
1317 |
msgid "Date / Time"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: admin/logs.php:
|
1321 |
-
#: build/wp-ulike/admin/logs.php:
|
1322 |
-
#: build/wp-ulike/admin/logs.php:
|
1323 |
msgid "IP"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: admin/logs.php:
|
1327 |
-
#: build/wp-ulike/admin/logs.php:
|
1328 |
-
#: build/wp-ulike/admin/logs.php:
|
1329 |
msgid "Actions"
|
1330 |
msgstr "Akce"
|
1331 |
|
1332 |
-
#: admin/logs.php:
|
1333 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1334 |
-
#: build/wp-ulike/admin/logs.php:
|
1335 |
-
#: build/wp-ulike/admin/logs.php:
|
1336 |
msgid "Guest User"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: admin/logs.php:
|
1340 |
-
#: build/wp-ulike/admin/logs.php:
|
1341 |
-
#: build/wp-ulike/admin/logs.php:
|
1342 |
msgid ""
|
1343 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1344 |
"you don't have any data on this table)"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: admin/logs.php:
|
1348 |
msgid "Comment ID"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: admin/logs.php:
|
1352 |
msgid "Comment Author"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
msgid "Comment Text"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: admin/logs.php:
|
1360 |
msgid "Activity ID"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: admin/logs.php:
|
1364 |
msgid "Permalink"
|
1365 |
msgstr "Odkaz"
|
1366 |
|
1367 |
-
#: admin/logs.php:
|
1368 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: admin/logs.php:
|
1372 |
msgid "Topic ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: admin/logs.php:
|
1376 |
msgid "Topic Title"
|
1377 |
msgstr ""
|
1378 |
|
@@ -1493,90 +1517,90 @@ msgstr "Základní informace"
|
|
1493 |
msgid "Days"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1497 |
-
#: inc/classes/class-mycred.php:
|
1498 |
msgid "Points for Liking content"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1502 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1503 |
-
#: inc/classes/class-mycred.php:
|
1504 |
msgid "Limit"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1508 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1509 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1510 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1511 |
-
#: inc/classes/class-mycred.php:
|
1512 |
-
#: inc/classes/class-mycred.php:
|
1513 |
msgid "Log template"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1517 |
-
#: inc/classes/class-mycred.php:
|
1518 |
msgid "Points for Author Who Get Liked"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1522 |
-
#: inc/classes/class-mycred.php:
|
1523 |
msgid "Points for unliking content"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1527 |
-
#: inc/classes/class-mycred.php:
|
1528 |
msgid "Points for Author Who Get Unliked"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1532 |
msgid "WP ULike Activity"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1536 |
msgid "Likes"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1540 |
msgid "You have a new like from"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1544 |
msgid ""
|
1545 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1546 |
"WordPress, bbPress, BuddyPress & ..."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1550 |
msgid "Liking Content"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1554 |
msgid "Liked Content"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1558 |
msgid "Unliking Content"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1562 |
msgid "Unliked Content"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1566 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1567 |
-
#: inc/wp-functions.php:
|
1568 |
msgid "Recent Posts Liked"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1572 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1573 |
-
#: inc/wp-functions.php:
|
1574 |
msgid "Recent Comments Liked"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1578 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1579 |
-
#: inc/wp-functions.php:
|
1580 |
msgid "This user has not made any likes."
|
1581 |
msgstr ""
|
1582 |
|
@@ -1684,41 +1708,45 @@ msgstr ""
|
|
1684 |
msgid "Downvote"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1688 |
-
#: inc/wp-ulike.php:
|
1689 |
msgid "You need to login in order to like this post: "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1693 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1694 |
-
#: inc/wp-ulike.php:
|
1695 |
-
#: inc/wp-ulike.php:
|
1696 |
msgid "click here"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1700 |
msgid "You need to login in order to like this comment: "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1704 |
msgid "You need to login in order to like this activity: "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1708 |
msgid "Error: This Method Is Not Exist!"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: build/wp-ulike/wp-ulike.php:
|
1712 |
#, fuzzy
|
1713 |
msgid "Settings"
|
1714 |
msgstr "Nastavení bylo uloženo."
|
1715 |
|
1716 |
-
#: build/wp-ulike/wp-ulike.php:
|
1717 |
#, fuzzy
|
1718 |
msgid "Statistics"
|
1719 |
msgstr "Aktualita"
|
1720 |
|
1721 |
-
#: build/wp-ulike/wp-ulike.php:
|
1722 |
msgid "About"
|
1723 |
msgstr ""
|
1724 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Welcome to WP ULike"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
29 |
msgid ""
|
30 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
31 |
"powerful version yet."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
35 |
#: build/wp-ulike/admin/stats.php:38
|
36 |
msgid "Visit our homepage"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
40 |
msgid "Version"
|
41 |
msgstr "Verze"
|
42 |
|
43 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
44 |
msgid "Getting Started"
|
45 |
msgstr "Začínáme"
|
46 |
|
47 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
48 |
msgid "Credits"
|
49 |
msgstr "Autoři"
|
50 |
|
51 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
52 |
+
#: build/wp-ulike/admin/about.php:40
|
53 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
54 |
#: build/wp-ulike/admin/stats.php:52
|
55 |
msgid "Support"
|
56 |
msgstr "Podpora"
|
57 |
|
58 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
59 |
+
#: build/wp-ulike/admin/about.php:41
|
60 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
61 |
#: build/wp-ulike/admin/stats.php:53
|
62 |
msgid "FAQ"
|
63 |
msgstr "Časté dotazy"
|
64 |
|
65 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
66 |
msgid "Reviews"
|
67 |
msgstr "Recenze"
|
68 |
|
69 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
70 |
msgid "Introducing WP ULike"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
74 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
75 |
#: build/wp-ulike/admin/stats.php:37
|
76 |
msgid "About WP ULike"
|
77 |
msgstr ""
|
84 |
"options."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
88 |
msgid "WP Ulike Extension"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
92 |
msgid ""
|
93 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
94 |
"activities & bbPress Topics."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
98 |
msgid "Added More Than 20 Language Files"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
102 |
msgid ""
|
103 |
"WP ULike is already translated into +20 languages, with more always in "
|
104 |
"progress."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
108 |
msgid "User Profile Links"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
112 |
msgid ""
|
113 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
114 |
"UltimateMember plugins."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
118 |
msgid "New Themes And Styles"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
122 |
msgid ""
|
123 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
124 |
"customize them by your taste."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
128 |
msgid "myCRED Points Support"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
132 |
msgid ""
|
133 |
"myCRED is an adaptive points management system that lets you award / charge "
|
134 |
"your users for interacting with your WordPress."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
138 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
139 |
#: build/wp-ulike/admin/stats.php:395
|
140 |
msgid "Likers World Map"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
144 |
msgid ""
|
145 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
146 |
"likers by their country in the world map & Top Liker widget."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
150 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
151 |
#: build/wp-ulike/admin/stats.php:24
|
152 |
msgid "WP ULike Statistics"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
156 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
159 |
msgid "Home"
|
160 |
msgstr "Úvodní stránka"
|
161 |
|
162 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
163 |
msgid "OR"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
167 |
+
#: build/wp-ulike/admin/admin.php:73
|
168 |
msgid "WP ULike Settings"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
172 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
176 |
msgid "Project Leaders"
|
177 |
msgstr "Vedení projektu"
|
178 |
|
179 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
180 |
msgid "Project Lead & Developer"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
184 |
msgid "Translations"
|
185 |
msgstr "Čeština"
|
186 |
|
187 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
188 |
msgid "Would you like to help translate the plugin into more languages?"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
192 |
msgid "Join our WP-Translations Community"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
196 |
msgid "Other Plugins"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
200 |
+
msgid "Like this plugin?"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
204 |
+
#: build/wp-ulike/admin/admin.php:309
|
205 |
+
msgid ""
|
206 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
207 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
208 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
209 |
+
"discover it too!"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
213 |
+
#: build/wp-ulike/admin/admin.php:311
|
214 |
+
msgid "Sure, I'd love to!"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
218 |
msgid ""
|
219 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
220 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
225 |
msgid "WP ULike"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
229 |
msgid "Settings saved."
|
230 |
msgstr "Nastavení bylo uloženo."
|
231 |
|
232 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
233 |
+
#: build/wp-ulike/admin/admin.php:157
|
234 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
238 |
+
#: build/wp-ulike/admin/admin.php:159
|
239 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
243 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
244 |
#: build/wp-ulike/admin/stats.php:43
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
249 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
250 |
#: build/wp-ulike/admin/stats.php:44
|
251 |
msgid "Comment Likes Logs"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
255 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
256 |
#: build/wp-ulike/admin/stats.php:45
|
257 |
msgid "Activity Likes Logs"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
261 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
262 |
#: build/wp-ulike/admin/stats.php:46
|
263 |
msgid "Topics Likes Logs"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
267 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
268 |
msgid "Default"
|
269 |
msgstr "Základní"
|
270 |
|
271 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
272 |
+
#: build/wp-ulike/admin/admin.php:232
|
273 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
274 |
msgid "Heart"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
278 |
msgid "Robeen"
|
279 |
msgstr ""
|
280 |
|
299 |
msgid "Similar Settings"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
303 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
304 |
+
#: admin/classes/tmp/options.php:451
|
305 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
306 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
307 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
308 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
309 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
310 |
msgid "Logging Method"
|
311 |
msgstr ""
|
312 |
|
336 |
#: admin/classes/class-settings.php:53
|
337 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
338 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
340 |
"is saved for registered users, the convey of like/dislike condition will "
|
341 |
"check by username, There is no permission for guest users to unlike/undislike"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin/classes/class-settings.php:56
|
345 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
346 |
msgid "Template Variables"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/classes/class-settings.php:58
|
350 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
351 |
msgid "Start the loop of logs"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
355 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
357 |
msgid "required"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/classes/class-settings.php:59
|
361 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
362 |
msgid "End of the while loop"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
366 |
+
#: admin/classes/class-settings.php:68
|
367 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
368 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
369 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
370 |
msgid "Display the liker name"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/classes/class-settings.php:61
|
374 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
375 |
msgid "Display the liker avatar (By Gravatar)"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/classes/class-settings.php:62
|
379 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
380 |
msgid "Display the BuddyPress user profile url"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/classes/class-settings.php:63
|
384 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
385 |
msgid "Display the UltimateMemebr user profile url"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
389 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
390 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
391 |
msgid "Display the permalink"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
395 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
396 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
397 |
msgid "Display the likes count number"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/classes/class-settings.php:67
|
401 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
402 |
msgid "Display the post title"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/classes/class-settings.php:70
|
406 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
407 |
msgid "Display the comment author name"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
411 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
412 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
413 |
msgid "Posts"
|
414 |
msgstr "Příspěvky"
|
415 |
|
416 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
417 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
418 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
419 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
420 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
422 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
423 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
424 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
425 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
426 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
427 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
428 |
msgid "Automatic display"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/classes/class-settings.php:81
|
432 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
433 |
msgid ""
|
434 |
"If you disable this option, you have to put manually this code on wordpress "
|
435 |
"while loop"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
439 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
440 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
441 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
442 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
443 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
444 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
446 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
447 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
448 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
450 |
msgid "Users Like Box Template"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
454 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
455 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
456 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
457 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
458 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
459 |
msgid "Default Template:"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
463 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
464 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
465 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
466 |
+
#: inc/classes/class-ulike.php:607
|
467 |
msgid "Users who have LIKED this post:"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
471 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
472 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
473 |
msgid "Comments"
|
474 |
msgstr "komentářů na stránku"
|
475 |
|
476 |
+
#: admin/classes/class-settings.php:90
|
477 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
478 |
msgid ""
|
479 |
"If you disable this option, you have to put manually this code on comments "
|
480 |
"text"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
484 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
485 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
486 |
msgid "Users who have LIKED this comment:"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
490 |
+
#: admin/classes/tmp/options.php:301
|
491 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
492 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
493 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
494 |
msgid "BuddyPress"
|
495 |
msgstr "BuddyPress"
|
496 |
|
497 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
498 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
499 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
500 |
msgid ""
|
501 |
"If you disable this option, you have to put manually this code on buddypres "
|
502 |
"activities content"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
506 |
+
#: admin/classes/tmp/options.php:370
|
507 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
508 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
509 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
510 |
msgid "Users who have liked this activity:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
514 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
515 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
516 |
msgid "Post Activity Text"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
520 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
521 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
522 |
msgid "Comment Activity Text"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
526 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
527 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
528 |
msgid "bbPress"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/classes/class-settings.php:111
|
532 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
533 |
msgid "For more information:"
|
534 |
msgstr "Další informace:"
|
535 |
|
536 |
+
#: admin/classes/class-settings.php:170
|
537 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
538 |
msgid "Default settings have been reset."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/classes/class-settings.php:244
|
542 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
543 |
msgid ""
|
544 |
"Do you really want to reset all these settings to their default values ?"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
548 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
549 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
550 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
551 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
552 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/classes/class-settings.php:347
|
557 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
558 |
msgid "Select %s"
|
559 |
msgstr "Zvolit: %s"
|
560 |
|
561 |
+
#: admin/classes/class-settings.php:348
|
562 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/classes/class-settings.php:372
|
567 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/classes/class-widget.php:130
|
583 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
584 |
msgid "on"
|
585 |
msgstr "off"
|
586 |
|
587 |
+
#: admin/classes/class-widget.php:191
|
588 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
593 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
594 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
595 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
596 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
597 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/classes/class-widget.php:515
|
603 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/classes/class-widget.php:530
|
608 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
609 |
msgid "Title:"
|
610 |
msgstr "Název:"
|
611 |
|
612 |
+
#: admin/classes/class-widget.php:535
|
613 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
614 |
msgid "Type:"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
618 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
625 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
632 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
638 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/classes/class-widget.php:541
|
644 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/classes/class-widget.php:542
|
650 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/classes/class-widget.php:547
|
655 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
656 |
+
msgid "Number of items to show:"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: admin/classes/class-widget.php:552
|
660 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
661 |
msgid "Period:"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/classes/class-widget.php:554
|
665 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
666 |
msgid "All The Times"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: admin/classes/class-widget.php:555
|
670 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
671 |
msgid "Year"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
675 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
676 |
#: build/wp-ulike/admin/stats.php:154
|
677 |
msgid "Month"
|
678 |
msgstr "Měsíc"
|
679 |
|
680 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
681 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
682 |
#: build/wp-ulike/admin/stats.php:149
|
683 |
msgid "Week"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
687 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
688 |
#: build/wp-ulike/admin/stats.php:144
|
689 |
msgid "Yesterday"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
693 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
694 |
#: build/wp-ulike/admin/stats.php:139
|
695 |
msgid "Today"
|
696 |
msgstr "Dnes"
|
697 |
|
698 |
+
#: admin/classes/class-widget.php:564
|
699 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
700 |
msgid "Style:"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: admin/classes/class-widget.php:566
|
704 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
705 |
msgid "Simple"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: admin/classes/class-widget.php:572
|
709 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
710 |
msgid "Title Trim (Length):"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: admin/classes/class-widget.php:578
|
714 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
msgid "Profile URL:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: admin/classes/class-widget.php:581
|
719 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
720 |
msgid "UltimateMember"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: admin/classes/class-widget.php:587
|
724 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
725 |
msgid "Activate Like Counter"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: admin/classes/class-widget.php:592
|
729 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
730 |
msgid "Activate Thumbnail/Avatar"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: admin/classes/class-widget.php:596
|
734 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
735 |
+
msgid "Thumbnail/Avatar size:"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: admin/classes/tmp/options.php:11
|
739 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
740 |
msgid "General"
|
741 |
msgstr "Obecné"
|
742 |
|
743 |
+
#: admin/classes/tmp/options.php:15
|
744 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/classes/tmp/options.php:19
|
749 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
750 |
msgid "Icon"
|
751 |
msgstr "Ikonka"
|
752 |
|
753 |
+
#: admin/classes/tmp/options.php:23
|
754 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
755 |
msgid "Text"
|
756 |
msgstr "Text"
|
757 |
|
758 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
759 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
760 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
765 |
+
#: admin/classes/tmp/options.php:43
|
766 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
767 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
768 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
773 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
774 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
779 |
+
#: admin/classes/tmp/options.php:543
|
780 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
781 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
782 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: admin/classes/tmp/options.php:47
|
787 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: admin/classes/tmp/options.php:48
|
792 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: admin/classes/tmp/options.php:52
|
797 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: admin/classes/tmp/options.php:55
|
802 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: admin/classes/tmp/options.php:56
|
807 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: admin/classes/tmp/options.php:60
|
812 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: admin/classes/tmp/options.php:61
|
817 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: admin/classes/tmp/options.php:65
|
822 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
823 |
+
msgid "Disable Plugin Files"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
827 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
828 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
829 |
+
msgid "Single Posts"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
833 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
834 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
835 |
+
msgid "Pages"
|
836 |
+
msgstr "Stránky"
|
837 |
+
|
838 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
839 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
840 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
841 |
+
msgid "Archives"
|
842 |
+
msgstr "Archiv"
|
843 |
+
|
844 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
845 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
846 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
847 |
+
msgid "Categories"
|
848 |
+
msgstr "Rubriky:"
|
849 |
+
|
850 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
851 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
852 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
853 |
+
msgid "Search Results"
|
854 |
+
msgstr "Výsledky vyhledávání"
|
855 |
+
|
856 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
857 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
858 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
859 |
+
msgid "Tags"
|
860 |
+
msgstr "Štítky:"
|
861 |
+
|
862 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
863 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
864 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
865 |
+
msgid "Author Page"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: admin/classes/tmp/options.php:75
|
869 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
870 |
+
#, fuzzy
|
871 |
+
msgid "BuddyPress Pages"
|
872 |
+
msgstr "BuddyPress"
|
873 |
+
|
874 |
+
#: admin/classes/tmp/options.php:76
|
875 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
876 |
+
msgid "bbPress Pages"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: admin/classes/tmp/options.php:77
|
880 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
881 |
+
msgid "WooCommerce Pages"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: admin/classes/tmp/options.php:79
|
885 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
886 |
+
msgid "Remove the plugin's css and js file on these pages."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: admin/classes/tmp/options.php:84
|
890 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
891 |
msgid "Format Number"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
895 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
896 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
897 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
898 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
899 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
900 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
901 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
902 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
903 |
+
#: admin/classes/tmp/options.php:508
|
904 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
905 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
907 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
920 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
922 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
923 |
msgid "Activate"
|
924 |
msgstr "Aktivovat"
|
925 |
|
926 |
+
#: admin/classes/tmp/options.php:86
|
927 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
928 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: admin/classes/tmp/options.php:91
|
932 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
933 |
#, fuzzy
|
934 |
msgid "Notifications"
|
935 |
msgstr "Akce"
|
936 |
|
937 |
+
#: admin/classes/tmp/options.php:93
|
938 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
939 |
msgid "Custom toast messages after each activity"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: admin/classes/tmp/options.php:96
|
943 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
944 |
msgid "Thanks! You Liked This."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: admin/classes/tmp/options.php:97
|
948 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
949 |
msgid "Liked Notice Message"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: admin/classes/tmp/options.php:100
|
953 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
954 |
msgid "Sorry! You unliked this."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: admin/classes/tmp/options.php:101
|
958 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
959 |
msgid "Unliked Notice Message"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
963 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
964 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
965 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
966 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
967 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
968 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
969 |
msgid "Themes"
|
970 |
msgstr "Šablony"
|
971 |
|
972 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
973 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
974 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
975 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
976 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
977 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
978 |
msgid "Auto Display Position"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
982 |
+
#: admin/classes/tmp/options.php:437
|
983 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
984 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
985 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
986 |
msgid "Top of Content"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
990 |
+
#: admin/classes/tmp/options.php:438
|
991 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
992 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
993 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
994 |
msgid "Bottom of Content"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
998 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
999 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1000 |
msgid "Top and Bottom"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: admin/classes/tmp/options.php:135
|
1004 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1005 |
msgid "Auto Display Filter"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: admin/classes/tmp/options.php:146
|
1009 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid "You can filter theses pages on auto display option."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: admin/classes/tmp/options.php:151
|
1014 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1015 |
msgid "Google Rich Snippets"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: admin/classes/tmp/options.php:153
|
1019 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1020 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1024 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1025 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1026 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1027 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1028 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1029 |
msgid "Only registered Users"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: admin/classes/tmp/options.php:160
|
1033 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1034 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1038 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1039 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1040 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1041 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1042 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1043 |
msgid "Do Not Log"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1047 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1048 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1049 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1050 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1051 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1052 |
msgid "Logged By Cookie"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1056 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1057 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1058 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1059 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1060 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1061 |
msgid "Logged By IP"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1065 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1066 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1067 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1068 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1069 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
msgid "Logged By Username"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1074 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1075 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1076 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1077 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1078 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1079 |
msgid "Show Liked Users Box"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1083 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1084 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1085 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1086 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1087 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1088 |
msgid ""
|
1089 |
"Active this option to show liked users avatars in the bottom of button like."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1093 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1094 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1095 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1096 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1097 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1098 |
msgid "Size of Gravatars"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1102 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1103 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1104 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1105 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1106 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1107 |
msgid "Size of Gravatars to return (max is 512)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1111 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1112 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1113 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1114 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1115 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1116 |
msgid "Number Of The Users"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1120 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1121 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1122 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1123 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1124 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1125 |
msgid "The number of users to show in the users liked box"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1129 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1130 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1131 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1133 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1134 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1136 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1137 |
msgid "Allowed Variables:"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1141 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1142 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1143 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1144 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1145 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1146 |
msgid "Delete All Logs"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1150 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1151 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1152 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1153 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1154 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1155 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1159 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1160 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1162 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1163 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1164 |
msgid "Delete All Data"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1168 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1169 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1170 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1171 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1172 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1173 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: admin/classes/tmp/options.php:245
|
1177 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1178 |
msgid ""
|
1179 |
"<strong>Only</strong> registered users have permission to like comments."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: admin/classes/tmp/options.php:320
|
1183 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid "Activity Content"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: admin/classes/tmp/options.php:321
|
1188 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1189 |
msgid "Activity Meta"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: admin/classes/tmp/options.php:327
|
1193 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1194 |
msgid "Activity Comment"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: admin/classes/tmp/options.php:329
|
1198 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1199 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: admin/classes/tmp/options.php:336
|
1203 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1204 |
msgid ""
|
1205 |
"<strong>Only</strong> registered users have permission to like activities."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: admin/classes/tmp/options.php:377
|
1209 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1210 |
msgid "BuddyPress Activity"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: admin/classes/tmp/options.php:379
|
1214 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1215 |
msgid "insert new likes in buddyPress activity page"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: admin/classes/tmp/options.php:384
|
1219 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1220 |
msgid "BuddyPress Custom Notification"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: admin/classes/tmp/options.php:386
|
1224 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1225 |
msgid "Sends out notifications when you get a like from someone"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: admin/classes/tmp/options.php:446
|
1229 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1230 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: admin/classes/tmp/options.php:480
|
1234 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1235 |
msgid "Users who have liked this topic:"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: admin/classes/tmp/options.php:502
|
1239 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1240 |
+
msgid "Customize"
|
1241 |
+
msgstr "Přizpůsobit"
|
1242 |
+
|
1243 |
+
#: admin/classes/tmp/options.php:507
|
1244 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1245 |
+
msgid "Custom Style"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: admin/classes/tmp/options.php:512
|
1249 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1250 |
+
msgid "Active this option to see the custom style settings."
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: admin/classes/tmp/options.php:516
|
1254 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1255 |
+
msgid "Button style"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1259 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1260 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1261 |
+
msgid "Background"
|
1262 |
+
msgstr "Pozadí"
|
1263 |
+
|
1264 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1265 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1266 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1267 |
+
msgid "Border Color"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1271 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1272 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1273 |
+
msgid "Text Color"
|
1274 |
+
msgstr "Barva textu"
|
1275 |
+
|
1276 |
+
#: admin/classes/tmp/options.php:529
|
1277 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1278 |
+
msgid "Counter Style"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: admin/classes/tmp/options.php:542
|
1282 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1283 |
+
msgid "Loading Animation"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: admin/classes/tmp/options.php:547
|
1287 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1288 |
+
#, fuzzy
|
1289 |
+
msgid "Custom CSS"
|
1290 |
+
msgstr "Přizpůsobit"
|
1291 |
+
|
1292 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1293 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1294 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1295 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1296 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1297 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1298 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1299 |
msgid "Logs"
|
1300 |
msgstr "Log"
|
1301 |
|
1302 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1303 |
msgid "Are you sure to remove this item?!"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1307 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1308 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1309 |
msgid "WP ULike Logs"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1313 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1314 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1315 |
msgid "ID"
|
1316 |
msgstr "ID"
|
1317 |
|
1318 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1319 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1320 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1321 |
msgid "Username"
|
1322 |
msgstr "Uživatelské jméno"
|
1323 |
|
1324 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1325 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1326 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1327 |
msgid "Status"
|
1328 |
msgstr "Aktualita"
|
1329 |
|
1330 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1331 |
msgid "Post ID"
|
1332 |
msgstr "ID článku"
|
1333 |
|
1334 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1335 |
msgid "Post Title"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1339 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1340 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1341 |
msgid "Date / Time"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1345 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1346 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1347 |
msgid "IP"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1351 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1352 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1353 |
msgid "Actions"
|
1354 |
msgstr "Akce"
|
1355 |
|
1356 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1357 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1358 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1359 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1360 |
msgid "Guest User"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1364 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1365 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1366 |
msgid ""
|
1367 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1368 |
"you don't have any data on this table)"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1372 |
msgid "Comment ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1376 |
msgid "Comment Author"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1380 |
msgid "Comment Text"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1384 |
msgid "Activity ID"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1388 |
msgid "Permalink"
|
1389 |
msgstr "Odkaz"
|
1390 |
|
1391 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1392 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1396 |
msgid "Topic ID"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1400 |
msgid "Topic Title"
|
1401 |
msgstr ""
|
1402 |
|
1517 |
msgid "Days"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1521 |
+
#: inc/classes/class-mycred.php:211
|
1522 |
msgid "Points for Liking content"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1526 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1527 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1528 |
msgid "Limit"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1532 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1533 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1534 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1535 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1536 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1537 |
msgid "Log template"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1541 |
+
#: inc/classes/class-mycred.php:228
|
1542 |
msgid "Points for Author Who Get Liked"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1546 |
+
#: inc/classes/class-mycred.php:245
|
1547 |
msgid "Points for unliking content"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1551 |
+
#: inc/classes/class-mycred.php:257
|
1552 |
msgid "Points for Author Who Get Unliked"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1556 |
msgid "WP ULike Activity"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1560 |
msgid "Likes"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1564 |
msgid "You have a new like from"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1568 |
msgid ""
|
1569 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1570 |
"WordPress, bbPress, BuddyPress & ..."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1574 |
msgid "Liking Content"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1578 |
msgid "Liked Content"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1582 |
msgid "Unliking Content"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1586 |
msgid "Unliked Content"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1590 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1591 |
+
#: inc/wp-functions.php:690
|
1592 |
msgid "Recent Posts Liked"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1597 |
+
#: inc/wp-functions.php:730
|
1598 |
msgid "Recent Comments Liked"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1602 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1603 |
+
#: inc/wp-functions.php:747
|
1604 |
msgid "This user has not made any likes."
|
1605 |
msgstr ""
|
1606 |
|
1708 |
msgid "Downvote"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1712 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1713 |
msgid "You need to login in order to like this post: "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1717 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1718 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1719 |
+
#: inc/wp-ulike.php:281
|
1720 |
msgid "click here"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1724 |
msgid "You need to login in order to like this comment: "
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1728 |
msgid "You need to login in order to like this activity: "
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1732 |
+
msgid "Error: Something Wrong Happened!"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1736 |
msgid "Error: This Method Is Not Exist!"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1740 |
#, fuzzy
|
1741 |
msgid "Settings"
|
1742 |
msgstr "Nastavení bylo uloženo."
|
1743 |
|
1744 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1745 |
#, fuzzy
|
1746 |
msgid "Statistics"
|
1747 |
msgstr "Aktualita"
|
1748 |
|
1749 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1750 |
msgid "About"
|
1751 |
msgstr ""
|
1752 |
|
lang/wp-ulike-de_DE.mo
CHANGED
Binary file
|
lang/wp-ulike-de_DE.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-"
|
@@ -21,69 +21,57 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
-
#: admin/about.php:
|
25 |
-
#: build/wp-ulike/admin/about.php:290
|
26 |
-
msgid "Like this plugin?"
|
27 |
-
msgstr "Gefällt dir dieses Plugin?"
|
28 |
-
|
29 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
30 |
-
#: build/wp-ulike/admin/about.php:291
|
31 |
-
msgid ""
|
32 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
33 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
37 |
msgid "Welcome to WP ULike"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/about.php:
|
41 |
msgid ""
|
42 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
43 |
"powerful version yet."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/about.php:
|
47 |
#: build/wp-ulike/admin/stats.php:38
|
48 |
msgid "Visit our homepage"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: admin/about.php:
|
52 |
msgid "Version"
|
53 |
msgstr "Version"
|
54 |
|
55 |
-
#: admin/about.php:
|
56 |
msgid "Getting Started"
|
57 |
msgstr "Jetzt loslegen"
|
58 |
|
59 |
-
#: admin/about.php:
|
60 |
msgid "Credits"
|
61 |
msgstr "Mitwirkende"
|
62 |
|
63 |
-
#: admin/about.php:
|
64 |
-
#: build/wp-ulike/admin/about.php:
|
65 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
66 |
#: build/wp-ulike/admin/stats.php:52
|
67 |
msgid "Support"
|
68 |
msgstr "Support"
|
69 |
|
70 |
-
#: admin/about.php:
|
71 |
-
#: build/wp-ulike/admin/about.php:
|
72 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
73 |
#: build/wp-ulike/admin/stats.php:53
|
74 |
msgid "FAQ"
|
75 |
msgstr "FAQ"
|
76 |
|
77 |
-
#: admin/about.php:
|
78 |
msgid "Reviews"
|
79 |
msgstr "Bewertungen"
|
80 |
|
81 |
-
#: admin/about.php:
|
82 |
msgid "Introducing WP ULike"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/about.php:
|
86 |
-
#: build/wp-ulike/admin/about.php:
|
87 |
#: build/wp-ulike/admin/stats.php:37
|
88 |
msgid "About WP ULike"
|
89 |
msgstr ""
|
@@ -96,118 +84,137 @@ msgid ""
|
|
96 |
"options."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/about.php:
|
100 |
msgid "WP Ulike Extension"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/about.php:
|
104 |
msgid ""
|
105 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
106 |
"activities & bbPress Topics."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/about.php:
|
110 |
msgid "Added More Than 20 Language Files"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/about.php:
|
114 |
msgid ""
|
115 |
"WP ULike is already translated into +20 languages, with more always in "
|
116 |
"progress."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/about.php:
|
120 |
msgid "User Profile Links"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/about.php:
|
124 |
msgid ""
|
125 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
126 |
"UltimateMember plugins."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/about.php:
|
130 |
msgid "New Themes And Styles"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/about.php:
|
134 |
msgid ""
|
135 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
136 |
"customize them by your taste."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/about.php:
|
140 |
msgid "myCRED Points Support"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/about.php:
|
144 |
msgid ""
|
145 |
"myCRED is an adaptive points management system that lets you award / charge "
|
146 |
"your users for interacting with your WordPress."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/about.php:
|
150 |
-
#: build/wp-ulike/admin/about.php:
|
151 |
#: build/wp-ulike/admin/stats.php:395
|
152 |
msgid "Likers World Map"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/about.php:
|
156 |
msgid ""
|
157 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
158 |
"likers by their country in the world map & Top Liker widget."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/about.php:
|
162 |
-
#: build/wp-ulike/admin/about.php:
|
163 |
#: build/wp-ulike/admin/stats.php:24
|
164 |
msgid "WP ULike Statistics"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/about.php:
|
168 |
-
#: build/wp-ulike/admin/about.php:
|
169 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
170 |
msgid "Home"
|
171 |
msgstr "Home"
|
172 |
|
173 |
-
#: admin/about.php:
|
174 |
msgid "OR"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin/about.php:
|
178 |
-
#: build/wp-ulike/admin/admin.php:
|
179 |
msgid "WP ULike Settings"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: admin/about.php:
|
183 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin/about.php:
|
187 |
msgid "Project Leaders"
|
188 |
msgstr "Projektleiter"
|
189 |
|
190 |
-
#: admin/about.php:
|
191 |
msgid "Project Lead & Developer"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: admin/about.php:
|
195 |
msgid "Translations"
|
196 |
msgstr "Übersetzungen"
|
197 |
|
198 |
-
#: admin/about.php:
|
199 |
msgid "Would you like to help translate the plugin into more languages?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/about.php:
|
203 |
msgid "Join our WP-Translations Community"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: admin/about.php:
|
207 |
msgid "Other Plugins"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid ""
|
212 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
213 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -218,56 +225,56 @@ msgstr ""
|
|
218 |
msgid "WP ULike"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin/admin.php:
|
222 |
msgid "Settings saved."
|
223 |
msgstr "Einstellungen gespeichert."
|
224 |
|
225 |
-
#: admin/admin.php:
|
226 |
-
#: build/wp-ulike/admin/admin.php:
|
227 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin/admin.php:
|
231 |
-
#: build/wp-ulike/admin/admin.php:
|
232 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin/admin.php:
|
236 |
-
#: build/wp-ulike/admin/admin.php:
|
237 |
#: build/wp-ulike/admin/stats.php:43
|
238 |
msgid "Post Likes Logs"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/admin.php:
|
242 |
-
#: build/wp-ulike/admin/admin.php:
|
243 |
#: build/wp-ulike/admin/stats.php:44
|
244 |
msgid "Comment Likes Logs"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/admin.php:
|
248 |
-
#: build/wp-ulike/admin/admin.php:
|
249 |
#: build/wp-ulike/admin/stats.php:45
|
250 |
msgid "Activity Likes Logs"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin/admin.php:
|
254 |
-
#: build/wp-ulike/admin/admin.php:
|
255 |
#: build/wp-ulike/admin/stats.php:46
|
256 |
msgid "Topics Likes Logs"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/admin.php:
|
260 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
261 |
msgid "Default"
|
262 |
msgstr "Standard"
|
263 |
|
264 |
-
#: admin/admin.php:
|
265 |
-
#: build/wp-ulike/admin/admin.php:
|
266 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
267 |
msgid "Heart"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin/admin.php:
|
271 |
msgid "Robeen"
|
272 |
msgstr ""
|
273 |
|
@@ -292,14 +299,14 @@ msgstr ""
|
|
292 |
msgid "Similar Settings"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
296 |
-
#: admin/classes/tmp/
|
297 |
-
#: admin/classes/tmp/
|
298 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
299 |
-
#: build/wp-ulike/admin/classes/tmp/
|
300 |
-
#: build/wp-ulike/admin/classes/tmp/
|
301 |
-
#: build/wp-ulike/admin/classes/tmp/
|
302 |
-
#: build/wp-ulike/admin/classes/tmp/
|
303 |
msgid "Logging Method"
|
304 |
msgstr ""
|
305 |
|
@@ -329,242 +336,235 @@ msgstr ""
|
|
329 |
#: admin/classes/class-settings.php:53
|
330 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
331 |
msgid ""
|
332 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
333 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
334 |
-
"user IP & SetCookie"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: admin/classes/class-settings.php:54
|
338 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
339 |
-
msgid ""
|
340 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
341 |
"is saved for registered users, the convey of like/dislike condition will "
|
342 |
"check by username, There is no permission for guest users to unlike/undislike"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/classes/class-settings.php:
|
346 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
347 |
msgid "Template Variables"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/classes/class-settings.php:
|
351 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
352 |
msgid "Start the loop of logs"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/classes/class-settings.php:
|
|
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
357 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
358 |
msgid "required"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/classes/class-settings.php:
|
362 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
363 |
msgid "End of the while loop"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/classes/class-settings.php:
|
367 |
-
#: admin/classes/class-settings.php:
|
368 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
369 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
370 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
371 |
msgid "Display the liker name"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/classes/class-settings.php:
|
375 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
376 |
msgid "Display the liker avatar (By Gravatar)"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/classes/class-settings.php:
|
380 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
381 |
msgid "Display the BuddyPress user profile url"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/classes/class-settings.php:
|
385 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
386 |
msgid "Display the UltimateMemebr user profile url"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/classes/class-settings.php:
|
390 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
391 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
392 |
msgid "Display the permalink"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/classes/class-settings.php:
|
396 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
397 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
398 |
msgid "Display the likes count number"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/classes/class-settings.php:
|
402 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
403 |
msgid "Display the post title"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/classes/class-settings.php:
|
407 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
408 |
msgid "Display the comment author name"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/classes/class-settings.php:
|
412 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
413 |
-
#: build/wp-ulike/admin/classes/tmp/
|
414 |
msgid "Posts"
|
415 |
msgstr "Beiträge"
|
416 |
|
417 |
-
#: admin/classes/class-settings.php:
|
418 |
-
#: admin/classes/class-settings.php:
|
419 |
-
#: admin/classes/tmp/
|
420 |
-
#: admin/classes/tmp/
|
421 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
422 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
423 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
424 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/tmp/
|
426 |
-
#: build/wp-ulike/admin/classes/tmp/
|
427 |
-
#: build/wp-ulike/admin/classes/tmp/
|
428 |
-
#: build/wp-ulike/admin/classes/tmp/
|
429 |
msgid "Automatic display"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/classes/class-settings.php:
|
433 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
434 |
msgid ""
|
435 |
"If you disable this option, you have to put manually this code on wordpress "
|
436 |
"while loop"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/classes/class-settings.php:
|
440 |
-
#: admin/classes/class-settings.php:
|
441 |
-
#: admin/classes/tmp/
|
442 |
-
#: admin/classes/tmp/
|
443 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
444 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
445 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
446 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
447 |
-
#: build/wp-ulike/admin/classes/tmp/
|
448 |
-
#: build/wp-ulike/admin/classes/tmp/
|
449 |
-
#: build/wp-ulike/admin/classes/tmp/
|
450 |
-
#: build/wp-ulike/admin/classes/tmp/
|
451 |
msgid "Users Like Box Template"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/classes/class-settings.php:
|
455 |
-
#: admin/classes/class-settings.php:
|
456 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
457 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
458 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
459 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
460 |
msgid "Default Template:"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/classes/class-settings.php:
|
464 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
465 |
-
#: build/wp-ulike/admin/classes/tmp/
|
466 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
467 |
-
#: inc/classes/class-ulike.php:
|
468 |
msgid "Users who have LIKED this post:"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/classes/class-settings.php:
|
472 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
473 |
-
#: build/wp-ulike/admin/classes/tmp/
|
474 |
msgid "Comments"
|
475 |
msgstr "Kommentare"
|
476 |
|
477 |
-
#: admin/classes/class-settings.php:
|
478 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
479 |
msgid ""
|
480 |
"If you disable this option, you have to put manually this code on comments "
|
481 |
"text"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/classes/class-settings.php:
|
485 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
486 |
-
#: build/wp-ulike/admin/classes/tmp/
|
487 |
msgid "Users who have LIKED this comment:"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/classes/class-settings.php:
|
491 |
-
#: admin/classes/tmp/
|
492 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
493 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
494 |
-
#: build/wp-ulike/admin/classes/tmp/
|
495 |
msgid "BuddyPress"
|
496 |
msgstr "BuddyPress"
|
497 |
|
498 |
-
#: admin/classes/class-settings.php:
|
499 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
500 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
501 |
msgid ""
|
502 |
"If you disable this option, you have to put manually this code on buddypres "
|
503 |
"activities content"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/classes/class-settings.php:
|
507 |
-
#: admin/classes/tmp/
|
508 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
509 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
510 |
-
#: build/wp-ulike/admin/classes/tmp/
|
511 |
msgid "Users who have liked this activity:"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/classes/class-settings.php:
|
515 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
516 |
-
#: build/wp-ulike/admin/classes/tmp/
|
517 |
msgid "Post Activity Text"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/classes/class-settings.php:
|
521 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
522 |
-
#: build/wp-ulike/admin/classes/tmp/
|
523 |
msgid "Comment Activity Text"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/classes/class-settings.php:
|
527 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
528 |
-
#: build/wp-ulike/admin/classes/tmp/
|
529 |
msgid "bbPress"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/classes/class-settings.php:
|
533 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
534 |
msgid "For more information:"
|
535 |
msgstr "Weitere Informationen:"
|
536 |
|
537 |
-
#: admin/classes/class-settings.php:
|
538 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
539 |
msgid "Default settings have been reset."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/classes/class-settings.php:
|
543 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
544 |
msgid ""
|
545 |
"Do you really want to reset all these settings to their default values ?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/classes/class-settings.php:
|
549 |
-
#: admin/classes/class-settings.php:
|
550 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
551 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
552 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/classes/class-settings.php:
|
557 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
558 |
msgid "Select %s"
|
559 |
msgstr "%s auswählen"
|
560 |
|
561 |
-
#: admin/classes/class-settings.php:
|
562 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/classes/class-settings.php:
|
567 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
@@ -579,800 +579,824 @@ msgid ""
|
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/classes/class-widget.php:
|
583 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
584 |
msgid "on"
|
585 |
msgstr "on"
|
586 |
|
587 |
-
#: admin/classes/class-widget.php:
|
588 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/classes/class-widget.php:
|
593 |
-
#: admin/classes/tmp/
|
594 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
595 |
-
#: build/wp-ulike/admin/classes/tmp/
|
596 |
-
#: build/wp-ulike/admin/classes/tmp/
|
597 |
-
#: build/wp-ulike/admin/classes/tmp/
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/classes/class-widget.php:
|
603 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/classes/class-widget.php:
|
608 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
609 |
msgid "Title:"
|
610 |
msgstr "Titel:"
|
611 |
|
612 |
-
#: admin/classes/class-widget.php:
|
613 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
614 |
msgid "Type:"
|
615 |
msgstr "Art:"
|
616 |
|
617 |
-
#: admin/classes/class-widget.php:
|
618 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/classes/class-widget.php:
|
625 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/classes/class-widget.php:
|
632 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/classes/class-widget.php:
|
638 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/classes/class-widget.php:
|
644 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/classes/class-widget.php:
|
650 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/classes/class-widget.php:
|
655 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
656 |
msgid "Period:"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/classes/class-widget.php:
|
660 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
661 |
msgid "All The Times"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/classes/class-widget.php:
|
665 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
666 |
msgid "Year"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: admin/classes/class-widget.php:
|
670 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
671 |
#: build/wp-ulike/admin/stats.php:154
|
672 |
msgid "Month"
|
673 |
msgstr "Monat"
|
674 |
|
675 |
-
#: admin/classes/class-widget.php:
|
676 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
677 |
#: build/wp-ulike/admin/stats.php:149
|
678 |
msgid "Week"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: admin/classes/class-widget.php:
|
682 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
683 |
#: build/wp-ulike/admin/stats.php:144
|
684 |
msgid "Yesterday"
|
685 |
msgstr "Gestern"
|
686 |
|
687 |
-
#: admin/classes/class-widget.php:
|
688 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
689 |
#: build/wp-ulike/admin/stats.php:139
|
690 |
msgid "Today"
|
691 |
msgstr "Heute"
|
692 |
|
693 |
-
#: admin/classes/class-widget.php:
|
694 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
695 |
msgid "Style:"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: admin/classes/class-widget.php:
|
699 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
700 |
msgid "Simple"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: admin/classes/class-widget.php:
|
704 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
705 |
msgid "Title Trim (Length):"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: admin/classes/class-widget.php:
|
709 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
710 |
-
msgid "Number of items to show:"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: admin/classes/class-widget.php:447
|
714 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
715 |
-
msgid "Thumbnail/Avatar size:"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: admin/classes/class-widget.php:453
|
719 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
720 |
msgid "Profile URL:"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: admin/classes/class-widget.php:
|
724 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
725 |
msgid "UltimateMember"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: admin/classes/class-widget.php:
|
729 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
730 |
msgid "Activate Like Counter"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: admin/classes/class-widget.php:
|
734 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
735 |
msgid "Activate Thumbnail/Avatar"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: admin/classes/
|
739 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
740 |
msgid "General"
|
741 |
msgstr "Allgemein"
|
742 |
|
743 |
-
#: admin/classes/tmp/
|
744 |
-
#: build/wp-ulike/admin/classes/tmp/
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: admin/classes/tmp/
|
749 |
-
#: build/wp-ulike/admin/classes/tmp/
|
750 |
msgid "Icon"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: admin/classes/tmp/
|
754 |
-
#: build/wp-ulike/admin/classes/tmp/
|
755 |
msgid "Text"
|
756 |
msgstr "Text"
|
757 |
|
758 |
-
#: admin/classes/tmp/
|
759 |
-
#: build/wp-ulike/admin/classes/tmp/
|
760 |
-
#: build/wp-ulike/admin/classes/tmp/
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: admin/classes/tmp/
|
765 |
-
#: admin/classes/tmp/
|
766 |
-
#: build/wp-ulike/admin/classes/tmp/
|
767 |
-
#: build/wp-ulike/admin/classes/tmp/
|
768 |
-
#: build/wp-ulike/admin/classes/tmp/
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: admin/classes/tmp/
|
773 |
-
#: build/wp-ulike/admin/classes/tmp/
|
774 |
-
#: build/wp-ulike/admin/classes/tmp/
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: admin/classes/tmp/
|
779 |
-
#: admin/classes/tmp/
|
780 |
-
#: build/wp-ulike/admin/classes/tmp/
|
781 |
-
#: build/wp-ulike/admin/classes/tmp/
|
782 |
-
#: build/wp-ulike/admin/classes/tmp/
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: admin/classes/tmp/
|
787 |
-
#: build/wp-ulike/admin/classes/tmp/
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: admin/classes/tmp/
|
792 |
-
#: build/wp-ulike/admin/classes/tmp/
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: admin/classes/tmp/
|
797 |
-
#: build/wp-ulike/admin/classes/tmp/
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: admin/classes/tmp/
|
802 |
-
#: build/wp-ulike/admin/classes/tmp/
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: admin/classes/tmp/
|
807 |
-
#: build/wp-ulike/admin/classes/tmp/
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: admin/classes/tmp/
|
812 |
-
#: build/wp-ulike/admin/classes/tmp/
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: admin/classes/tmp/
|
817 |
-
#: build/wp-ulike/admin/classes/tmp/
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: admin/classes/tmp/
|
822 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Format Number"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: admin/classes/tmp/
|
827 |
-
#: admin/classes/tmp/
|
828 |
-
#: admin/classes/tmp/
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: admin/classes/tmp/
|
835 |
-
#: admin/classes/tmp/
|
836 |
-
#: build/wp-ulike/admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
-
#: build/wp-ulike/admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
-
#: build/wp-ulike/admin/classes/tmp/
|
854 |
-
#: build/wp-ulike/admin/classes/tmp/
|
855 |
msgid "Activate"
|
856 |
msgstr "Aktivieren"
|
857 |
|
858 |
-
#: admin/classes/tmp/
|
859 |
-
#: build/wp-ulike/admin/classes/tmp/
|
860 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: admin/classes/tmp/
|
864 |
-
#: build/wp-ulike/admin/classes/tmp/
|
865 |
#, fuzzy
|
866 |
msgid "Notifications"
|
867 |
msgstr "Anzahl"
|
868 |
|
869 |
-
#: admin/classes/tmp/
|
870 |
-
#: build/wp-ulike/admin/classes/tmp/
|
871 |
msgid "Custom toast messages after each activity"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: admin/classes/tmp/
|
875 |
-
#: build/wp-ulike/admin/classes/tmp/
|
876 |
msgid "Thanks! You Liked This."
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: admin/classes/tmp/
|
880 |
-
#: build/wp-ulike/admin/classes/tmp/
|
881 |
msgid "Liked Notice Message"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: admin/classes/tmp/
|
885 |
-
#: build/wp-ulike/admin/classes/tmp/
|
886 |
msgid "Sorry! You unliked this."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: admin/classes/tmp/
|
890 |
-
#: build/wp-ulike/admin/classes/tmp/
|
891 |
msgid "Unliked Notice Message"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: admin/classes/tmp/
|
895 |
-
#: admin/classes/tmp/
|
896 |
-
#: build/wp-ulike/admin/classes/tmp/
|
897 |
-
#: build/wp-ulike/admin/classes/tmp/
|
898 |
-
#: build/wp-ulike/admin/classes/tmp/
|
899 |
-
#: build/wp-ulike/admin/classes/tmp/
|
900 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
901 |
msgid "Themes"
|
902 |
msgstr "Themes"
|
903 |
|
904 |
-
#: admin/classes/tmp/
|
905 |
-
#: admin/classes/tmp/
|
906 |
-
#: build/wp-ulike/admin/classes/tmp/
|
907 |
-
#: build/wp-ulike/admin/classes/tmp/
|
908 |
-
#: build/wp-ulike/admin/classes/tmp/
|
909 |
-
#: build/wp-ulike/admin/classes/tmp/
|
910 |
msgid "Auto Display Position"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: admin/classes/tmp/
|
914 |
-
#: admin/classes/tmp/
|
915 |
-
#: build/wp-ulike/admin/classes/tmp/
|
916 |
-
#: build/wp-ulike/admin/classes/tmp/
|
917 |
-
#: build/wp-ulike/admin/classes/tmp/
|
918 |
msgid "Top of Content"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: admin/classes/tmp/
|
922 |
-
#: admin/classes/tmp/
|
923 |
-
#: build/wp-ulike/admin/classes/tmp/
|
924 |
-
#: build/wp-ulike/admin/classes/tmp/
|
925 |
-
#: build/wp-ulike/admin/classes/tmp/
|
926 |
msgid "Bottom of Content"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: admin/classes/tmp/
|
930 |
-
#: build/wp-ulike/admin/classes/tmp/
|
931 |
-
#: build/wp-ulike/admin/classes/tmp/
|
932 |
msgid "Top and Bottom"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: admin/classes/tmp/
|
936 |
-
#: build/wp-ulike/admin/classes/tmp/
|
937 |
msgid "Auto Display Filter"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: admin/classes/tmp/
|
941 |
-
#: build/wp-ulike/admin/classes/tmp/
|
942 |
-
msgid "Single Posts"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#: admin/classes/tmp/settings.php:117
|
946 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
947 |
-
msgid "Pages"
|
948 |
-
msgstr "Seiten"
|
949 |
-
|
950 |
-
#: admin/classes/tmp/settings.php:118
|
951 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
952 |
-
msgid "Archives"
|
953 |
-
msgstr "Archives"
|
954 |
-
|
955 |
-
#: admin/classes/tmp/settings.php:119
|
956 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
957 |
-
msgid "Categories"
|
958 |
-
msgstr "Katgeorien"
|
959 |
-
|
960 |
-
#: admin/classes/tmp/settings.php:120
|
961 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
962 |
-
msgid "Search Results"
|
963 |
-
msgstr "Suchergebnisse"
|
964 |
-
|
965 |
-
#: admin/classes/tmp/settings.php:121
|
966 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
967 |
-
msgid "Tags"
|
968 |
-
msgstr "Tags"
|
969 |
-
|
970 |
-
#: admin/classes/tmp/settings.php:122
|
971 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
972 |
-
msgid "Author Page"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: admin/classes/tmp/settings.php:124
|
976 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
977 |
msgid "You can filter theses pages on auto display option."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: admin/classes/tmp/
|
981 |
-
#: build/wp-ulike/admin/classes/tmp/
|
982 |
msgid "Google Rich Snippets"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: admin/classes/tmp/
|
986 |
-
#: build/wp-ulike/admin/classes/tmp/
|
987 |
msgid "Add rich snippet for ratings in form of schema.org"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: admin/classes/tmp/
|
991 |
-
#: admin/classes/tmp/
|
992 |
-
#: build/wp-ulike/admin/classes/tmp/
|
993 |
-
#: build/wp-ulike/admin/classes/tmp/
|
994 |
-
#: build/wp-ulike/admin/classes/tmp/
|
995 |
-
#: build/wp-ulike/admin/classes/tmp/
|
996 |
msgid "Only registered Users"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: admin/classes/tmp/
|
1000 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1001 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: admin/classes/tmp/
|
1005 |
-
#: admin/classes/tmp/
|
1006 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1007 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1008 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1010 |
msgid "Do Not Log"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: admin/classes/tmp/
|
1014 |
-
#: admin/classes/tmp/
|
1015 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1016 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1017 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1018 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1019 |
msgid "Logged By Cookie"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: admin/classes/tmp/
|
1023 |
-
#: admin/classes/tmp/
|
1024 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1025 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1026 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1027 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1028 |
msgid "Logged By IP"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: admin/classes/tmp/
|
1032 |
-
#: admin/classes/tmp/
|
1033 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1034 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1035 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1036 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1037 |
-
msgid "Logged By Cookie & IP"
|
1038 |
-
msgstr ""
|
1039 |
-
|
1040 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1041 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1042 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1043 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1044 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1045 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1046 |
msgid "Logged By Username"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: admin/classes/tmp/
|
1050 |
-
#: admin/classes/tmp/
|
1051 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1052 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1053 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1054 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1055 |
msgid "Show Liked Users Box"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: admin/classes/tmp/
|
1059 |
-
#: admin/classes/tmp/
|
1060 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1061 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1062 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1063 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1064 |
msgid ""
|
1065 |
"Active this option to show liked users avatars in the bottom of button like."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: admin/classes/tmp/
|
1069 |
-
#: admin/classes/tmp/
|
1070 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1071 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1072 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
msgid "Size of Gravatars"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: admin/classes/tmp/
|
1078 |
-
#: admin/classes/tmp/
|
1079 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1080 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1081 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1083 |
msgid "Size of Gravatars to return (max is 512)"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: admin/classes/tmp/
|
1087 |
-
#: admin/classes/tmp/
|
1088 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1089 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1090 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
msgid "Number Of The Users"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: admin/classes/tmp/
|
1096 |
-
#: admin/classes/tmp/
|
1097 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1098 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1099 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
msgid "The number of users to show in the users liked box"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: admin/classes/tmp/
|
1105 |
-
#: admin/classes/tmp/
|
1106 |
-
#: admin/classes/tmp/
|
1107 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1108 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1109 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1110 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1111 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
msgid "Allowed Variables:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: admin/classes/tmp/
|
1117 |
-
#: admin/classes/tmp/
|
1118 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1119 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1120 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
msgid "Delete All Logs"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: admin/classes/tmp/
|
1126 |
-
#: admin/classes/tmp/
|
1127 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1128 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1129 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: admin/classes/tmp/
|
1135 |
-
#: admin/classes/tmp/
|
1136 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1137 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1138 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
msgid "Delete All Data"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: admin/classes/tmp/
|
1144 |
-
#: admin/classes/tmp/
|
1145 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1146 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1147 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1148 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1149 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: admin/classes/tmp/
|
1153 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1154 |
msgid ""
|
1155 |
"<strong>Only</strong> registered users have permission to like comments."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: admin/classes/tmp/
|
1159 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1160 |
-
msgid "Customize"
|
1161 |
-
msgstr "Anpassen"
|
1162 |
-
|
1163 |
-
#: admin/classes/tmp/settings.php:290
|
1164 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1165 |
-
msgid "Custom Style"
|
1166 |
-
msgstr ""
|
1167 |
-
|
1168 |
-
#: admin/classes/tmp/settings.php:295
|
1169 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1170 |
-
msgid "Active this option to see the custom style settings."
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: admin/classes/tmp/settings.php:299
|
1174 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1175 |
-
msgid "Button style"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1179 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1180 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1181 |
-
msgid "Background"
|
1182 |
-
msgstr "Hintergrund"
|
1183 |
-
|
1184 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1185 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1186 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1187 |
-
msgid "Border Color"
|
1188 |
-
msgstr "Randfarbe"
|
1189 |
-
|
1190 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1191 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1192 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1193 |
-
msgid "Text Color"
|
1194 |
-
msgstr "Textfarbe"
|
1195 |
-
|
1196 |
-
#: admin/classes/tmp/settings.php:312
|
1197 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1198 |
-
msgid "Counter Style"
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#: admin/classes/tmp/settings.php:325
|
1202 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1203 |
-
msgid "Loading Animation"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: admin/classes/tmp/settings.php:330
|
1207 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1208 |
-
#, fuzzy
|
1209 |
-
msgid "Custom CSS"
|
1210 |
-
msgstr "Anpassen"
|
1211 |
-
|
1212 |
-
#: admin/classes/tmp/settings.php:361
|
1213 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1214 |
msgid "Activity Content"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: admin/classes/tmp/
|
1218 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1219 |
msgid "Activity Meta"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: admin/classes/tmp/
|
1223 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1224 |
msgid "Activity Comment"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: admin/classes/tmp/
|
1228 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1229 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: admin/classes/tmp/
|
1233 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1234 |
msgid ""
|
1235 |
"<strong>Only</strong> registered users have permission to like activities."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: admin/classes/tmp/
|
1239 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1240 |
msgid "BuddyPress Activity"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: admin/classes/tmp/
|
1244 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1245 |
msgid "insert new likes in buddyPress activity page"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: admin/classes/tmp/
|
1249 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1250 |
msgid "BuddyPress Custom Notification"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: admin/classes/tmp/
|
1254 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1255 |
msgid "Sends out notifications when you get a like from someone"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: admin/classes/tmp/
|
1259 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1260 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: admin/classes/tmp/
|
1264 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1265 |
msgid "Users who have liked this topic:"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: admin/
|
1269 |
-
#:
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
#:
|
1274 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
msgid "Logs"
|
1276 |
msgstr "Logdateien"
|
1277 |
|
1278 |
-
#: admin/logs.php:
|
1279 |
msgid "Are you sure to remove this item?!"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: admin/logs.php:
|
1283 |
-
#: build/wp-ulike/admin/logs.php:
|
1284 |
-
#: build/wp-ulike/admin/logs.php:
|
1285 |
msgid "WP ULike Logs"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: admin/logs.php:
|
1289 |
-
#: build/wp-ulike/admin/logs.php:
|
1290 |
-
#: build/wp-ulike/admin/logs.php:
|
1291 |
msgid "ID"
|
1292 |
msgstr "ID"
|
1293 |
|
1294 |
-
#: admin/logs.php:
|
1295 |
-
#: build/wp-ulike/admin/logs.php:
|
1296 |
-
#: build/wp-ulike/admin/logs.php:
|
1297 |
msgid "Username"
|
1298 |
msgstr "Benutzername"
|
1299 |
|
1300 |
-
#: admin/logs.php:
|
1301 |
-
#: build/wp-ulike/admin/logs.php:
|
1302 |
-
#: build/wp-ulike/admin/logs.php:
|
1303 |
msgid "Status"
|
1304 |
msgstr "Status"
|
1305 |
|
1306 |
-
#: admin/logs.php:
|
1307 |
msgid "Post ID"
|
1308 |
msgstr "Beitrags-ID"
|
1309 |
|
1310 |
-
#: admin/logs.php:
|
1311 |
msgid "Post Title"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: admin/logs.php:
|
1315 |
-
#: build/wp-ulike/admin/logs.php:
|
1316 |
-
#: build/wp-ulike/admin/logs.php:
|
1317 |
msgid "Date / Time"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: admin/logs.php:
|
1321 |
-
#: build/wp-ulike/admin/logs.php:
|
1322 |
-
#: build/wp-ulike/admin/logs.php:
|
1323 |
msgid "IP"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: admin/logs.php:
|
1327 |
-
#: build/wp-ulike/admin/logs.php:
|
1328 |
-
#: build/wp-ulike/admin/logs.php:
|
1329 |
msgid "Actions"
|
1330 |
msgstr "Anzahl"
|
1331 |
|
1332 |
-
#: admin/logs.php:
|
1333 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1334 |
-
#: build/wp-ulike/admin/logs.php:
|
1335 |
-
#: build/wp-ulike/admin/logs.php:
|
1336 |
msgid "Guest User"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: admin/logs.php:
|
1340 |
-
#: build/wp-ulike/admin/logs.php:
|
1341 |
-
#: build/wp-ulike/admin/logs.php:
|
1342 |
msgid ""
|
1343 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1344 |
"you don't have any data on this table)"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: admin/logs.php:
|
1348 |
msgid "Comment ID"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: admin/logs.php:
|
1352 |
msgid "Comment Author"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
msgid "Comment Text"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: admin/logs.php:
|
1360 |
msgid "Activity ID"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: admin/logs.php:
|
1364 |
msgid "Permalink"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: admin/logs.php:
|
1368 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: admin/logs.php:
|
1372 |
msgid "Topic ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: admin/logs.php:
|
1376 |
msgid "Topic Title"
|
1377 |
msgstr ""
|
1378 |
|
@@ -1493,90 +1517,90 @@ msgstr "Willkommen"
|
|
1493 |
msgid "Days"
|
1494 |
msgstr "Tage"
|
1495 |
|
1496 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1497 |
-
#: inc/classes/class-mycred.php:
|
1498 |
msgid "Points for Liking content"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1502 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1503 |
-
#: inc/classes/class-mycred.php:
|
1504 |
msgid "Limit"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1508 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1509 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1510 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1511 |
-
#: inc/classes/class-mycred.php:
|
1512 |
-
#: inc/classes/class-mycred.php:
|
1513 |
msgid "Log template"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1517 |
-
#: inc/classes/class-mycred.php:
|
1518 |
msgid "Points for Author Who Get Liked"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1522 |
-
#: inc/classes/class-mycred.php:
|
1523 |
msgid "Points for unliking content"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1527 |
-
#: inc/classes/class-mycred.php:
|
1528 |
msgid "Points for Author Who Get Unliked"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1532 |
msgid "WP ULike Activity"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1536 |
msgid "Likes"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1540 |
msgid "You have a new like from"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1544 |
msgid ""
|
1545 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1546 |
"WordPress, bbPress, BuddyPress & ..."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1550 |
msgid "Liking Content"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1554 |
msgid "Liked Content"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1558 |
msgid "Unliking Content"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1562 |
msgid "Unliked Content"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1566 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1567 |
-
#: inc/wp-functions.php:
|
1568 |
msgid "Recent Posts Liked"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1572 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1573 |
-
#: inc/wp-functions.php:
|
1574 |
msgid "Recent Comments Liked"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1578 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1579 |
-
#: inc/wp-functions.php:
|
1580 |
msgid "This user has not made any likes."
|
1581 |
msgstr ""
|
1582 |
|
@@ -1684,41 +1708,45 @@ msgstr ""
|
|
1684 |
msgid "Downvote"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1688 |
-
#: inc/wp-ulike.php:
|
1689 |
msgid "You need to login in order to like this post: "
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1693 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1694 |
-
#: inc/wp-ulike.php:
|
1695 |
-
#: inc/wp-ulike.php:
|
1696 |
msgid "click here"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1700 |
msgid "You need to login in order to like this comment: "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1704 |
msgid "You need to login in order to like this activity: "
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1708 |
msgid "Error: This Method Is Not Exist!"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: build/wp-ulike/wp-ulike.php:
|
1712 |
#, fuzzy
|
1713 |
msgid "Settings"
|
1714 |
msgstr "Einstellungen gespeichert."
|
1715 |
|
1716 |
-
#: build/wp-ulike/wp-ulike.php:
|
1717 |
#, fuzzy
|
1718 |
msgid "Statistics"
|
1719 |
msgstr "Status"
|
1720 |
|
1721 |
-
#: build/wp-ulike/wp-ulike.php:
|
1722 |
msgid "About"
|
1723 |
msgstr ""
|
1724 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Welcome to WP ULike"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
29 |
msgid ""
|
30 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
31 |
"powerful version yet."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
35 |
#: build/wp-ulike/admin/stats.php:38
|
36 |
msgid "Visit our homepage"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
40 |
msgid "Version"
|
41 |
msgstr "Version"
|
42 |
|
43 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
44 |
msgid "Getting Started"
|
45 |
msgstr "Jetzt loslegen"
|
46 |
|
47 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
48 |
msgid "Credits"
|
49 |
msgstr "Mitwirkende"
|
50 |
|
51 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
52 |
+
#: build/wp-ulike/admin/about.php:40
|
53 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
54 |
#: build/wp-ulike/admin/stats.php:52
|
55 |
msgid "Support"
|
56 |
msgstr "Support"
|
57 |
|
58 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
59 |
+
#: build/wp-ulike/admin/about.php:41
|
60 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
61 |
#: build/wp-ulike/admin/stats.php:53
|
62 |
msgid "FAQ"
|
63 |
msgstr "FAQ"
|
64 |
|
65 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
66 |
msgid "Reviews"
|
67 |
msgstr "Bewertungen"
|
68 |
|
69 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
70 |
msgid "Introducing WP ULike"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
74 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
75 |
#: build/wp-ulike/admin/stats.php:37
|
76 |
msgid "About WP ULike"
|
77 |
msgstr ""
|
84 |
"options."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
88 |
msgid "WP Ulike Extension"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
92 |
msgid ""
|
93 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
94 |
"activities & bbPress Topics."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
98 |
msgid "Added More Than 20 Language Files"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
102 |
msgid ""
|
103 |
"WP ULike is already translated into +20 languages, with more always in "
|
104 |
"progress."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
108 |
msgid "User Profile Links"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
112 |
msgid ""
|
113 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
114 |
"UltimateMember plugins."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
118 |
msgid "New Themes And Styles"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
122 |
msgid ""
|
123 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
124 |
"customize them by your taste."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
128 |
msgid "myCRED Points Support"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
132 |
msgid ""
|
133 |
"myCRED is an adaptive points management system that lets you award / charge "
|
134 |
"your users for interacting with your WordPress."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
138 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
139 |
#: build/wp-ulike/admin/stats.php:395
|
140 |
msgid "Likers World Map"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
144 |
msgid ""
|
145 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
146 |
"likers by their country in the world map & Top Liker widget."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
150 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
151 |
#: build/wp-ulike/admin/stats.php:24
|
152 |
msgid "WP ULike Statistics"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
156 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
159 |
msgid "Home"
|
160 |
msgstr "Home"
|
161 |
|
162 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
163 |
msgid "OR"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
167 |
+
#: build/wp-ulike/admin/admin.php:73
|
168 |
msgid "WP ULike Settings"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
172 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
176 |
msgid "Project Leaders"
|
177 |
msgstr "Projektleiter"
|
178 |
|
179 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
180 |
msgid "Project Lead & Developer"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
184 |
msgid "Translations"
|
185 |
msgstr "Übersetzungen"
|
186 |
|
187 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
188 |
msgid "Would you like to help translate the plugin into more languages?"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
192 |
msgid "Join our WP-Translations Community"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
196 |
msgid "Other Plugins"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
200 |
+
msgid "Like this plugin?"
|
201 |
+
msgstr "Gefällt dir dieses Plugin?"
|
202 |
+
|
203 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
204 |
+
#: build/wp-ulike/admin/admin.php:309
|
205 |
+
msgid ""
|
206 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
207 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
208 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
209 |
+
"discover it too!"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
213 |
+
#: build/wp-ulike/admin/admin.php:311
|
214 |
+
msgid "Sure, I'd love to!"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
218 |
msgid ""
|
219 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
220 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
225 |
msgid "WP ULike"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
229 |
msgid "Settings saved."
|
230 |
msgstr "Einstellungen gespeichert."
|
231 |
|
232 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
233 |
+
#: build/wp-ulike/admin/admin.php:157
|
234 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
238 |
+
#: build/wp-ulike/admin/admin.php:159
|
239 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
243 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
244 |
#: build/wp-ulike/admin/stats.php:43
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
249 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
250 |
#: build/wp-ulike/admin/stats.php:44
|
251 |
msgid "Comment Likes Logs"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
255 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
256 |
#: build/wp-ulike/admin/stats.php:45
|
257 |
msgid "Activity Likes Logs"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
261 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
262 |
#: build/wp-ulike/admin/stats.php:46
|
263 |
msgid "Topics Likes Logs"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
267 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
268 |
msgid "Default"
|
269 |
msgstr "Standard"
|
270 |
|
271 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
272 |
+
#: build/wp-ulike/admin/admin.php:232
|
273 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
274 |
msgid "Heart"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
278 |
msgid "Robeen"
|
279 |
msgstr ""
|
280 |
|
299 |
msgid "Similar Settings"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
303 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
304 |
+
#: admin/classes/tmp/options.php:451
|
305 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
306 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
307 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
308 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
309 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
310 |
msgid "Logging Method"
|
311 |
msgstr ""
|
312 |
|
336 |
#: admin/classes/class-settings.php:53
|
337 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
338 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
340 |
"is saved for registered users, the convey of like/dislike condition will "
|
341 |
"check by username, There is no permission for guest users to unlike/undislike"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin/classes/class-settings.php:56
|
345 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
346 |
msgid "Template Variables"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/classes/class-settings.php:58
|
350 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
351 |
msgid "Start the loop of logs"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
355 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
356 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
357 |
msgid "required"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/classes/class-settings.php:59
|
361 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
362 |
msgid "End of the while loop"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
366 |
+
#: admin/classes/class-settings.php:68
|
367 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
368 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
369 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
370 |
msgid "Display the liker name"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/classes/class-settings.php:61
|
374 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
375 |
msgid "Display the liker avatar (By Gravatar)"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/classes/class-settings.php:62
|
379 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
380 |
msgid "Display the BuddyPress user profile url"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/classes/class-settings.php:63
|
384 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
385 |
msgid "Display the UltimateMemebr user profile url"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
389 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
390 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
391 |
msgid "Display the permalink"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
395 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
396 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
397 |
msgid "Display the likes count number"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/classes/class-settings.php:67
|
401 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
402 |
msgid "Display the post title"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/classes/class-settings.php:70
|
406 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
407 |
msgid "Display the comment author name"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
411 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
412 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
413 |
msgid "Posts"
|
414 |
msgstr "Beiträge"
|
415 |
|
416 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
417 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
418 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
419 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
420 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
422 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
423 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
424 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
425 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
426 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
427 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
428 |
msgid "Automatic display"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/classes/class-settings.php:81
|
432 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
433 |
msgid ""
|
434 |
"If you disable this option, you have to put manually this code on wordpress "
|
435 |
"while loop"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
439 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
440 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
441 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
442 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
443 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
444 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
446 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
447 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
448 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
450 |
msgid "Users Like Box Template"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
454 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
455 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
456 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
457 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
458 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
459 |
msgid "Default Template:"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
463 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
464 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
465 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
466 |
+
#: inc/classes/class-ulike.php:607
|
467 |
msgid "Users who have LIKED this post:"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
471 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
472 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
473 |
msgid "Comments"
|
474 |
msgstr "Kommentare"
|
475 |
|
476 |
+
#: admin/classes/class-settings.php:90
|
477 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
478 |
msgid ""
|
479 |
"If you disable this option, you have to put manually this code on comments "
|
480 |
"text"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
484 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
485 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
486 |
msgid "Users who have LIKED this comment:"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
490 |
+
#: admin/classes/tmp/options.php:301
|
491 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
492 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
493 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
494 |
msgid "BuddyPress"
|
495 |
msgstr "BuddyPress"
|
496 |
|
497 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
498 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
499 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
500 |
msgid ""
|
501 |
"If you disable this option, you have to put manually this code on buddypres "
|
502 |
"activities content"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
506 |
+
#: admin/classes/tmp/options.php:370
|
507 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
508 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
509 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
510 |
msgid "Users who have liked this activity:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
514 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
515 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
516 |
msgid "Post Activity Text"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
520 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
521 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
522 |
msgid "Comment Activity Text"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
526 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
527 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
528 |
msgid "bbPress"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/classes/class-settings.php:111
|
532 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
533 |
msgid "For more information:"
|
534 |
msgstr "Weitere Informationen:"
|
535 |
|
536 |
+
#: admin/classes/class-settings.php:170
|
537 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
538 |
msgid "Default settings have been reset."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/classes/class-settings.php:244
|
542 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
543 |
msgid ""
|
544 |
"Do you really want to reset all these settings to their default values ?"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
548 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
549 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
550 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
551 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
552 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
553 |
msgid "No options defined."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/classes/class-settings.php:347
|
557 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
558 |
msgid "Select %s"
|
559 |
msgstr "%s auswählen"
|
560 |
|
561 |
+
#: admin/classes/class-settings.php:348
|
562 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
563 |
msgid "Remove %s"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/classes/class-settings.php:372
|
567 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
568 |
msgid "No action defined."
|
569 |
msgstr ""
|
570 |
|
579 |
"An advanced widget that gives you all most liked records with different types"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/classes/class-widget.php:130
|
583 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
584 |
msgid "on"
|
585 |
msgstr "on"
|
586 |
|
587 |
+
#: admin/classes/class-widget.php:191
|
588 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
589 |
msgid "you haven't liked any post yet!"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
593 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
594 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
595 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
596 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
597 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
598 |
#: build/wp-ulike/admin/stats.php:206
|
599 |
msgid "Like"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/classes/class-widget.php:515
|
603 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
604 |
msgid "Most Liked"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/classes/class-widget.php:530
|
608 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
609 |
msgid "Title:"
|
610 |
msgstr "Titel:"
|
611 |
|
612 |
+
#: admin/classes/class-widget.php:535
|
613 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
614 |
msgid "Type:"
|
615 |
msgstr "Art:"
|
616 |
|
617 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
618 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
619 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
620 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
621 |
msgid "Most Liked Posts"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
625 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
626 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
627 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
628 |
msgid "Most Liked Comments"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
632 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
633 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
634 |
msgid "Most Liked Activities"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
638 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
639 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
640 |
msgid "Most Liked Topics"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/classes/class-widget.php:541
|
644 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
645 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
646 |
msgid "Most Liked Users"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/classes/class-widget.php:542
|
650 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
651 |
msgid "Last Posts Liked By User"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/classes/class-widget.php:547
|
655 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
656 |
+
msgid "Number of items to show:"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: admin/classes/class-widget.php:552
|
660 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
661 |
msgid "Period:"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/classes/class-widget.php:554
|
665 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
666 |
msgid "All The Times"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: admin/classes/class-widget.php:555
|
670 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
671 |
msgid "Year"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
675 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
676 |
#: build/wp-ulike/admin/stats.php:154
|
677 |
msgid "Month"
|
678 |
msgstr "Monat"
|
679 |
|
680 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
681 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
682 |
#: build/wp-ulike/admin/stats.php:149
|
683 |
msgid "Week"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
687 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
688 |
#: build/wp-ulike/admin/stats.php:144
|
689 |
msgid "Yesterday"
|
690 |
msgstr "Gestern"
|
691 |
|
692 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
693 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
694 |
#: build/wp-ulike/admin/stats.php:139
|
695 |
msgid "Today"
|
696 |
msgstr "Heute"
|
697 |
|
698 |
+
#: admin/classes/class-widget.php:564
|
699 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
700 |
msgid "Style:"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: admin/classes/class-widget.php:566
|
704 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
705 |
msgid "Simple"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: admin/classes/class-widget.php:572
|
709 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
710 |
msgid "Title Trim (Length):"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: admin/classes/class-widget.php:578
|
714 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
msgid "Profile URL:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: admin/classes/class-widget.php:581
|
719 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
720 |
msgid "UltimateMember"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: admin/classes/class-widget.php:587
|
724 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
725 |
msgid "Activate Like Counter"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: admin/classes/class-widget.php:592
|
729 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
730 |
msgid "Activate Thumbnail/Avatar"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: admin/classes/class-widget.php:596
|
734 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
735 |
+
msgid "Thumbnail/Avatar size:"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: admin/classes/tmp/options.php:11
|
739 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
740 |
msgid "General"
|
741 |
msgstr "Allgemein"
|
742 |
|
743 |
+
#: admin/classes/tmp/options.php:15
|
744 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
745 |
msgid "Button Type"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: admin/classes/tmp/options.php:19
|
749 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
750 |
msgid "Icon"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: admin/classes/tmp/options.php:23
|
754 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
755 |
msgid "Text"
|
756 |
msgstr "Text"
|
757 |
|
758 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
759 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
760 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
761 |
msgid "Button Text"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
765 |
+
#: admin/classes/tmp/options.php:43
|
766 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
767 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
768 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
769 |
msgid "Unlike"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
773 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
774 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
775 |
msgid "Button Icon"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
779 |
+
#: admin/classes/tmp/options.php:543
|
780 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
781 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
782 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
783 |
msgid "Best size: 16x16"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: admin/classes/tmp/options.php:47
|
787 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
788 |
msgid "You have not permission to unlike"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: admin/classes/tmp/options.php:48
|
792 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
793 |
msgid "Permission Text"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: admin/classes/tmp/options.php:52
|
797 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
798 |
msgid "Users Login Type"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: admin/classes/tmp/options.php:55
|
802 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
803 |
msgid "Alert Box"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: admin/classes/tmp/options.php:56
|
807 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
808 |
msgid "Like Button"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: admin/classes/tmp/options.php:60
|
812 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
813 |
msgid "You Should Login To Submit Your Like"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: admin/classes/tmp/options.php:61
|
817 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
818 |
msgid "Users Login Text"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: admin/classes/tmp/options.php:65
|
822 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
823 |
+
msgid "Disable Plugin Files"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
827 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
828 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
829 |
+
msgid "Single Posts"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
833 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
834 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
835 |
+
msgid "Pages"
|
836 |
+
msgstr "Seiten"
|
837 |
+
|
838 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
839 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
840 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
841 |
+
msgid "Archives"
|
842 |
+
msgstr "Archives"
|
843 |
+
|
844 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
845 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
846 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
847 |
+
msgid "Categories"
|
848 |
+
msgstr "Katgeorien"
|
849 |
+
|
850 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
851 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
852 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
853 |
+
msgid "Search Results"
|
854 |
+
msgstr "Suchergebnisse"
|
855 |
+
|
856 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
857 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
858 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
859 |
+
msgid "Tags"
|
860 |
+
msgstr "Tags"
|
861 |
+
|
862 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
863 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
864 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
865 |
+
msgid "Author Page"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: admin/classes/tmp/options.php:75
|
869 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
870 |
+
#, fuzzy
|
871 |
+
msgid "BuddyPress Pages"
|
872 |
+
msgstr "BuddyPress"
|
873 |
+
|
874 |
+
#: admin/classes/tmp/options.php:76
|
875 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
876 |
+
msgid "bbPress Pages"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: admin/classes/tmp/options.php:77
|
880 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
881 |
+
msgid "WooCommerce Pages"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: admin/classes/tmp/options.php:79
|
885 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
886 |
+
msgid "Remove the plugin's css and js file on these pages."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: admin/classes/tmp/options.php:84
|
890 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
891 |
msgid "Format Number"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
895 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
896 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
897 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
898 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
899 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
900 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
901 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
902 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
903 |
+
#: admin/classes/tmp/options.php:508
|
904 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
905 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
907 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
920 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
922 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
923 |
msgid "Activate"
|
924 |
msgstr "Aktivieren"
|
925 |
|
926 |
+
#: admin/classes/tmp/options.php:86
|
927 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
928 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: admin/classes/tmp/options.php:91
|
932 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
933 |
#, fuzzy
|
934 |
msgid "Notifications"
|
935 |
msgstr "Anzahl"
|
936 |
|
937 |
+
#: admin/classes/tmp/options.php:93
|
938 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
939 |
msgid "Custom toast messages after each activity"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: admin/classes/tmp/options.php:96
|
943 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
944 |
msgid "Thanks! You Liked This."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: admin/classes/tmp/options.php:97
|
948 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
949 |
msgid "Liked Notice Message"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: admin/classes/tmp/options.php:100
|
953 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
954 |
msgid "Sorry! You unliked this."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: admin/classes/tmp/options.php:101
|
958 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
959 |
msgid "Unliked Notice Message"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
963 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
964 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
965 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
966 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
967 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
968 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
969 |
msgid "Themes"
|
970 |
msgstr "Themes"
|
971 |
|
972 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
973 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
974 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
975 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
976 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
977 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
978 |
msgid "Auto Display Position"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
982 |
+
#: admin/classes/tmp/options.php:437
|
983 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
984 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
985 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
986 |
msgid "Top of Content"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
990 |
+
#: admin/classes/tmp/options.php:438
|
991 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
992 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
993 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
994 |
msgid "Bottom of Content"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
998 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
999 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1000 |
msgid "Top and Bottom"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: admin/classes/tmp/options.php:135
|
1004 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1005 |
msgid "Auto Display Filter"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: admin/classes/tmp/options.php:146
|
1009 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid "You can filter theses pages on auto display option."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: admin/classes/tmp/options.php:151
|
1014 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1015 |
msgid "Google Rich Snippets"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: admin/classes/tmp/options.php:153
|
1019 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1020 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1024 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1025 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1026 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1027 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1028 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1029 |
msgid "Only registered Users"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: admin/classes/tmp/options.php:160
|
1033 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1034 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1038 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1039 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1040 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1041 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1042 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1043 |
msgid "Do Not Log"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1047 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1048 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1049 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1050 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1051 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1052 |
msgid "Logged By Cookie"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1056 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1057 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1058 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1059 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1060 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1061 |
msgid "Logged By IP"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1065 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1066 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1067 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1068 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1069 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
msgid "Logged By Username"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1074 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1075 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1076 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1077 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1078 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1079 |
msgid "Show Liked Users Box"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1083 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1084 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1085 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1086 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1087 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1088 |
msgid ""
|
1089 |
"Active this option to show liked users avatars in the bottom of button like."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1093 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1094 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1095 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1096 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1097 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1098 |
msgid "Size of Gravatars"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1102 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1103 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1104 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1105 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1106 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1107 |
msgid "Size of Gravatars to return (max is 512)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1111 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1112 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1113 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1114 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1115 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1116 |
msgid "Number Of The Users"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1120 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1121 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1122 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1123 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1124 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1125 |
msgid "The number of users to show in the users liked box"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1129 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1130 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1131 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1133 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1134 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1136 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1137 |
msgid "Allowed Variables:"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1141 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1142 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1143 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1144 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1145 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1146 |
msgid "Delete All Logs"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1150 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1151 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1152 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1153 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1154 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1155 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1159 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1160 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1162 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1163 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1164 |
msgid "Delete All Data"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1168 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1169 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1170 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1171 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1172 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1173 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: admin/classes/tmp/options.php:245
|
1177 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1178 |
msgid ""
|
1179 |
"<strong>Only</strong> registered users have permission to like comments."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: admin/classes/tmp/options.php:320
|
1183 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
msgid "Activity Content"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: admin/classes/tmp/options.php:321
|
1188 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1189 |
msgid "Activity Meta"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: admin/classes/tmp/options.php:327
|
1193 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1194 |
msgid "Activity Comment"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: admin/classes/tmp/options.php:329
|
1198 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1199 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: admin/classes/tmp/options.php:336
|
1203 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1204 |
msgid ""
|
1205 |
"<strong>Only</strong> registered users have permission to like activities."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: admin/classes/tmp/options.php:377
|
1209 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1210 |
msgid "BuddyPress Activity"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: admin/classes/tmp/options.php:379
|
1214 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1215 |
msgid "insert new likes in buddyPress activity page"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: admin/classes/tmp/options.php:384
|
1219 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1220 |
msgid "BuddyPress Custom Notification"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: admin/classes/tmp/options.php:386
|
1224 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1225 |
msgid "Sends out notifications when you get a like from someone"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: admin/classes/tmp/options.php:446
|
1229 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1230 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: admin/classes/tmp/options.php:480
|
1234 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1235 |
msgid "Users who have liked this topic:"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: admin/classes/tmp/options.php:502
|
1239 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1240 |
+
msgid "Customize"
|
1241 |
+
msgstr "Anpassen"
|
1242 |
+
|
1243 |
+
#: admin/classes/tmp/options.php:507
|
1244 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1245 |
+
msgid "Custom Style"
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: admin/classes/tmp/options.php:512
|
1249 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1250 |
+
msgid "Active this option to see the custom style settings."
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: admin/classes/tmp/options.php:516
|
1254 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1255 |
+
msgid "Button style"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1259 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1260 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1261 |
+
msgid "Background"
|
1262 |
+
msgstr "Hintergrund"
|
1263 |
+
|
1264 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1265 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1266 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1267 |
+
msgid "Border Color"
|
1268 |
+
msgstr "Randfarbe"
|
1269 |
+
|
1270 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1271 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1272 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1273 |
+
msgid "Text Color"
|
1274 |
+
msgstr "Textfarbe"
|
1275 |
+
|
1276 |
+
#: admin/classes/tmp/options.php:529
|
1277 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1278 |
+
msgid "Counter Style"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: admin/classes/tmp/options.php:542
|
1282 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1283 |
+
msgid "Loading Animation"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: admin/classes/tmp/options.php:547
|
1287 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1288 |
+
#, fuzzy
|
1289 |
+
msgid "Custom CSS"
|
1290 |
+
msgstr "Anpassen"
|
1291 |
+
|
1292 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1293 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1294 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1295 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1296 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1297 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1298 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1299 |
msgid "Logs"
|
1300 |
msgstr "Logdateien"
|
1301 |
|
1302 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1303 |
msgid "Are you sure to remove this item?!"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1307 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1308 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1309 |
msgid "WP ULike Logs"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1313 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1314 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1315 |
msgid "ID"
|
1316 |
msgstr "ID"
|
1317 |
|
1318 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1319 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1320 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1321 |
msgid "Username"
|
1322 |
msgstr "Benutzername"
|
1323 |
|
1324 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1325 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1326 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1327 |
msgid "Status"
|
1328 |
msgstr "Status"
|
1329 |
|
1330 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1331 |
msgid "Post ID"
|
1332 |
msgstr "Beitrags-ID"
|
1333 |
|
1334 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1335 |
msgid "Post Title"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1339 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1340 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1341 |
msgid "Date / Time"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1345 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1346 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1347 |
msgid "IP"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1351 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1352 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1353 |
msgid "Actions"
|
1354 |
msgstr "Anzahl"
|
1355 |
|
1356 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1357 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1358 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1359 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1360 |
msgid "Guest User"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1364 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1365 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1366 |
msgid ""
|
1367 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1368 |
"you don't have any data on this table)"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1372 |
msgid "Comment ID"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1376 |
msgid "Comment Author"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1380 |
msgid "Comment Text"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1384 |
msgid "Activity ID"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1388 |
msgid "Permalink"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1392 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1396 |
msgid "Topic ID"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1400 |
msgid "Topic Title"
|
1401 |
msgstr ""
|
1402 |
|
1517 |
msgid "Days"
|
1518 |
msgstr "Tage"
|
1519 |
|
1520 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1521 |
+
#: inc/classes/class-mycred.php:211
|
1522 |
msgid "Points for Liking content"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1526 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1527 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1528 |
msgid "Limit"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1532 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1533 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1534 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1535 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1536 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1537 |
msgid "Log template"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1541 |
+
#: inc/classes/class-mycred.php:228
|
1542 |
msgid "Points for Author Who Get Liked"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1546 |
+
#: inc/classes/class-mycred.php:245
|
1547 |
msgid "Points for unliking content"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1551 |
+
#: inc/classes/class-mycred.php:257
|
1552 |
msgid "Points for Author Who Get Unliked"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1556 |
msgid "WP ULike Activity"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1560 |
msgid "Likes"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1564 |
msgid "You have a new like from"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1568 |
msgid ""
|
1569 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1570 |
"WordPress, bbPress, BuddyPress & ..."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1574 |
msgid "Liking Content"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1578 |
msgid "Liked Content"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1582 |
msgid "Unliking Content"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1586 |
msgid "Unliked Content"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1590 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1591 |
+
#: inc/wp-functions.php:690
|
1592 |
msgid "Recent Posts Liked"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1597 |
+
#: inc/wp-functions.php:730
|
1598 |
msgid "Recent Comments Liked"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1602 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1603 |
+
#: inc/wp-functions.php:747
|
1604 |
msgid "This user has not made any likes."
|
1605 |
msgstr ""
|
1606 |
|
1708 |
msgid "Downvote"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1712 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1713 |
msgid "You need to login in order to like this post: "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1717 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1718 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1719 |
+
#: inc/wp-ulike.php:281
|
1720 |
msgid "click here"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1724 |
msgid "You need to login in order to like this comment: "
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1728 |
msgid "You need to login in order to like this activity: "
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1732 |
+
msgid "Error: Something Wrong Happened!"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1736 |
msgid "Error: This Method Is Not Exist!"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1740 |
#, fuzzy
|
1741 |
msgid "Settings"
|
1742 |
msgstr "Einstellungen gespeichert."
|
1743 |
|
1744 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1745 |
#, fuzzy
|
1746 |
msgid "Statistics"
|
1747 |
msgstr "Status"
|
1748 |
|
1749 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1750 |
msgid "About"
|
1751 |
msgstr ""
|
1752 |
|
lang/wp-ulike-el.mo
CHANGED
Binary file
|
lang/wp-ulike-el.po
CHANGED
@@ -6,7 +6,7 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: WP ULike\n"
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
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/"
|
@@ -22,23 +22,11 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPath-1: ..\n"
|
24 |
|
25 |
-
#: admin/about.php:
|
26 |
-
#: build/wp-ulike/admin/about.php:290
|
27 |
-
msgid "Like this plugin?"
|
28 |
-
msgstr "Σας αρέσει αυτό το πρόσθετο;"
|
29 |
-
|
30 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
31 |
-
#: build/wp-ulike/admin/about.php:291
|
32 |
-
msgid ""
|
33 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
34 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
38 |
msgid "Welcome to WP ULike"
|
39 |
msgstr "Καλώς ήρθατε στο WP ULike"
|
40 |
|
41 |
-
#: admin/about.php:
|
42 |
msgid ""
|
43 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
44 |
"powerful version yet."
|
@@ -46,47 +34,47 @@ msgstr ""
|
|
46 |
"Σας ευχαριστούμε που επιλέξατε το WP ULike! Αυτή η έκδοση είναι η πιο λιτή "
|
47 |
"και η πιο ισχυρή έκδοση ωστόσο."
|
48 |
|
49 |
-
#: admin/about.php:
|
50 |
#: build/wp-ulike/admin/stats.php:38
|
51 |
msgid "Visit our homepage"
|
52 |
msgstr "Δείτε την αρχική μας σελίδα "
|
53 |
|
54 |
-
#: admin/about.php:
|
55 |
msgid "Version"
|
56 |
msgstr "Έκδοση"
|
57 |
|
58 |
-
#: admin/about.php:
|
59 |
msgid "Getting Started"
|
60 |
msgstr "Ξεκινώντας"
|
61 |
|
62 |
-
#: admin/about.php:
|
63 |
msgid "Credits"
|
64 |
msgstr "Ευχαριστίες"
|
65 |
|
66 |
-
#: admin/about.php:
|
67 |
-
#: build/wp-ulike/admin/about.php:
|
68 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
69 |
#: build/wp-ulike/admin/stats.php:52
|
70 |
msgid "Support"
|
71 |
msgstr "Υποστήριξη"
|
72 |
|
73 |
-
#: admin/about.php:
|
74 |
-
#: build/wp-ulike/admin/about.php:
|
75 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
76 |
#: build/wp-ulike/admin/stats.php:53
|
77 |
msgid "FAQ"
|
78 |
msgstr "Κοινές απορίες"
|
79 |
|
80 |
-
#: admin/about.php:
|
81 |
msgid "Reviews"
|
82 |
msgstr "Κριτικές"
|
83 |
|
84 |
-
#: admin/about.php:
|
85 |
msgid "Introducing WP ULike"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin/about.php:
|
89 |
-
#: build/wp-ulike/admin/about.php:
|
90 |
#: build/wp-ulike/admin/stats.php:37
|
91 |
msgid "About WP ULike"
|
92 |
msgstr "Σχετικά με το WP ULike"
|
@@ -99,118 +87,137 @@ msgid ""
|
|
99 |
"options."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/about.php:
|
103 |
msgid "WP Ulike Extension"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/about.php:
|
107 |
msgid ""
|
108 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
109 |
"activities & bbPress Topics."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin/about.php:
|
113 |
msgid "Added More Than 20 Language Files"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin/about.php:
|
117 |
msgid ""
|
118 |
"WP ULike is already translated into +20 languages, with more always in "
|
119 |
"progress."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin/about.php:
|
123 |
msgid "User Profile Links"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: admin/about.php:
|
127 |
msgid ""
|
128 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
129 |
"UltimateMember plugins."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin/about.php:
|
133 |
msgid "New Themes And Styles"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin/about.php:
|
137 |
msgid ""
|
138 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
139 |
"customize them by your taste."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin/about.php:
|
143 |
msgid "myCRED Points Support"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin/about.php:
|
147 |
msgid ""
|
148 |
"myCRED is an adaptive points management system that lets you award / charge "
|
149 |
"your users for interacting with your WordPress."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin/about.php:
|
153 |
-
#: build/wp-ulike/admin/about.php:
|
154 |
#: build/wp-ulike/admin/stats.php:395
|
155 |
msgid "Likers World Map"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin/about.php:
|
159 |
msgid ""
|
160 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
161 |
"likers by their country in the world map & Top Liker widget."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin/about.php:
|
165 |
-
#: build/wp-ulike/admin/about.php:
|
166 |
#: build/wp-ulike/admin/stats.php:24
|
167 |
msgid "WP ULike Statistics"
|
168 |
msgstr "Στατιστικά WP ULike"
|
169 |
|
170 |
-
#: admin/about.php:
|
171 |
-
#: build/wp-ulike/admin/about.php:
|
172 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
173 |
msgid "Home"
|
174 |
msgstr "Αρχική"
|
175 |
|
176 |
-
#: admin/about.php:
|
177 |
msgid "OR"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin/about.php:
|
181 |
-
#: build/wp-ulike/admin/admin.php:
|
182 |
msgid "WP ULike Settings"
|
183 |
msgstr "Ρυθμίσεις WP ULike"
|
184 |
|
185 |
-
#: admin/about.php:
|
186 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin/about.php:
|
190 |
msgid "Project Leaders"
|
191 |
msgstr "Κεντρική ομάδα"
|
192 |
|
193 |
-
#: admin/about.php:
|
194 |
msgid "Project Lead & Developer"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/about.php:
|
198 |
msgid "Translations"
|
199 |
msgstr "Μεταφράσεις"
|
200 |
|
201 |
-
#: admin/about.php:
|
202 |
msgid "Would you like to help translate the plugin into more languages?"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin/about.php:
|
206 |
msgid "Join our WP-Translations Community"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin/about.php:
|
210 |
msgid "Other Plugins"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid ""
|
215 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
216 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -221,56 +228,56 @@ msgstr ""
|
|
221 |
msgid "WP ULike"
|
222 |
msgstr "WP ULike"
|
223 |
|
224 |
-
#: admin/admin.php:
|
225 |
msgid "Settings saved."
|
226 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
|
227 |
|
228 |
-
#: admin/admin.php:
|
229 |
-
#: build/wp-ulike/admin/admin.php:
|
230 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin/admin.php:
|
234 |
-
#: build/wp-ulike/admin/admin.php:
|
235 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: admin/admin.php:
|
239 |
-
#: build/wp-ulike/admin/admin.php:
|
240 |
#: build/wp-ulike/admin/stats.php:43
|
241 |
msgid "Post Likes Logs"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin/admin.php:
|
245 |
-
#: build/wp-ulike/admin/admin.php:
|
246 |
#: build/wp-ulike/admin/stats.php:44
|
247 |
msgid "Comment Likes Logs"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: admin/admin.php:
|
251 |
-
#: build/wp-ulike/admin/admin.php:
|
252 |
#: build/wp-ulike/admin/stats.php:45
|
253 |
msgid "Activity Likes Logs"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin/admin.php:
|
257 |
-
#: build/wp-ulike/admin/admin.php:
|
258 |
#: build/wp-ulike/admin/stats.php:46
|
259 |
msgid "Topics Likes Logs"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin/admin.php:
|
263 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
264 |
msgid "Default"
|
265 |
msgstr "Προεπιλεγμένο"
|
266 |
|
267 |
-
#: admin/admin.php:
|
268 |
-
#: build/wp-ulike/admin/admin.php:
|
269 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
270 |
msgid "Heart"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin/admin.php:
|
274 |
msgid "Robeen"
|
275 |
msgstr ""
|
276 |
|
@@ -295,14 +302,14 @@ msgstr "Επαναφορά Ρυθμίσεων"
|
|
295 |
msgid "Similar Settings"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
299 |
-
#: admin/classes/tmp/
|
300 |
-
#: admin/classes/tmp/
|
301 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
302 |
-
#: build/wp-ulike/admin/classes/tmp/
|
303 |
-
#: build/wp-ulike/admin/classes/tmp/
|
304 |
-
#: build/wp-ulike/admin/classes/tmp/
|
305 |
-
#: build/wp-ulike/admin/classes/tmp/
|
306 |
msgid "Logging Method"
|
307 |
msgstr ""
|
308 |
|
@@ -332,242 +339,235 @@ msgstr ""
|
|
332 |
#: admin/classes/class-settings.php:53
|
333 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
334 |
msgid ""
|
335 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
336 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
337 |
-
"user IP & SetCookie"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: admin/classes/class-settings.php:54
|
341 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
342 |
-
msgid ""
|
343 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
344 |
"is saved for registered users, the convey of like/dislike condition will "
|
345 |
"check by username, There is no permission for guest users to unlike/undislike"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin/classes/class-settings.php:
|
349 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
350 |
msgid "Template Variables"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin/classes/class-settings.php:
|
354 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
355 |
msgid "Start the loop of logs"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin/classes/class-settings.php:
|
|
|
359 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
360 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
361 |
msgid "required"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/classes/class-settings.php:
|
365 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
366 |
msgid "End of the while loop"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin/classes/class-settings.php:
|
370 |
-
#: admin/classes/class-settings.php:
|
371 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
372 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
373 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
374 |
msgid "Display the liker name"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/classes/class-settings.php:
|
378 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
379 |
msgid "Display the liker avatar (By Gravatar)"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/classes/class-settings.php:
|
383 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
384 |
msgid "Display the BuddyPress user profile url"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/classes/class-settings.php:
|
388 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
389 |
msgid "Display the UltimateMemebr user profile url"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/classes/class-settings.php:
|
393 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
394 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
395 |
msgid "Display the permalink"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/classes/class-settings.php:
|
399 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
400 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
401 |
msgid "Display the likes count number"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin/classes/class-settings.php:
|
405 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
406 |
msgid "Display the post title"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/classes/class-settings.php:
|
410 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
411 |
msgid "Display the comment author name"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/classes/class-settings.php:
|
415 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
416 |
-
#: build/wp-ulike/admin/classes/tmp/
|
417 |
msgid "Posts"
|
418 |
msgstr "Posts"
|
419 |
|
420 |
-
#: admin/classes/class-settings.php:
|
421 |
-
#: admin/classes/class-settings.php:
|
422 |
-
#: admin/classes/tmp/
|
423 |
-
#: admin/classes/tmp/
|
424 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
426 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
427 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
428 |
-
#: build/wp-ulike/admin/classes/tmp/
|
429 |
-
#: build/wp-ulike/admin/classes/tmp/
|
430 |
-
#: build/wp-ulike/admin/classes/tmp/
|
431 |
-
#: build/wp-ulike/admin/classes/tmp/
|
432 |
msgid "Automatic display"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/classes/class-settings.php:
|
436 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
437 |
msgid ""
|
438 |
"If you disable this option, you have to put manually this code on wordpress "
|
439 |
"while loop"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/classes/class-settings.php:
|
443 |
-
#: admin/classes/class-settings.php:
|
444 |
-
#: admin/classes/tmp/
|
445 |
-
#: admin/classes/tmp/
|
446 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
447 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
448 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
449 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
450 |
-
#: build/wp-ulike/admin/classes/tmp/
|
451 |
-
#: build/wp-ulike/admin/classes/tmp/
|
452 |
-
#: build/wp-ulike/admin/classes/tmp/
|
453 |
-
#: build/wp-ulike/admin/classes/tmp/
|
454 |
msgid "Users Like Box Template"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin/classes/class-settings.php:
|
458 |
-
#: admin/classes/class-settings.php:
|
459 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
460 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
461 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
462 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
463 |
msgid "Default Template:"
|
464 |
msgstr "Προεπιλεγμένο Πρότυπο:"
|
465 |
|
466 |
-
#: admin/classes/class-settings.php:
|
467 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
468 |
-
#: build/wp-ulike/admin/classes/tmp/
|
469 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
470 |
-
#: inc/classes/class-ulike.php:
|
471 |
msgid "Users who have LIKED this post:"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/classes/class-settings.php:
|
475 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
476 |
-
#: build/wp-ulike/admin/classes/tmp/
|
477 |
msgid "Comments"
|
478 |
msgstr "Σχόλια"
|
479 |
|
480 |
-
#: admin/classes/class-settings.php:
|
481 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
482 |
msgid ""
|
483 |
"If you disable this option, you have to put manually this code on comments "
|
484 |
"text"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/classes/class-settings.php:
|
488 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
489 |
-
#: build/wp-ulike/admin/classes/tmp/
|
490 |
msgid "Users who have LIKED this comment:"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/classes/class-settings.php:
|
494 |
-
#: admin/classes/tmp/
|
495 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
496 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
497 |
-
#: build/wp-ulike/admin/classes/tmp/
|
498 |
msgid "BuddyPress"
|
499 |
msgstr "BuddyPress"
|
500 |
|
501 |
-
#: admin/classes/class-settings.php:
|
502 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
503 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
504 |
msgid ""
|
505 |
"If you disable this option, you have to put manually this code on buddypres "
|
506 |
"activities content"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/classes/class-settings.php:
|
510 |
-
#: admin/classes/tmp/
|
511 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
512 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
513 |
-
#: build/wp-ulike/admin/classes/tmp/
|
514 |
msgid "Users who have liked this activity:"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/classes/class-settings.php:
|
518 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
519 |
-
#: build/wp-ulike/admin/classes/tmp/
|
520 |
msgid "Post Activity Text"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/classes/class-settings.php:
|
524 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
525 |
-
#: build/wp-ulike/admin/classes/tmp/
|
526 |
msgid "Comment Activity Text"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/classes/class-settings.php:
|
530 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
531 |
-
#: build/wp-ulike/admin/classes/tmp/
|
532 |
msgid "bbPress"
|
533 |
msgstr "bbPress"
|
534 |
|
535 |
-
#: admin/classes/class-settings.php:
|
536 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
537 |
msgid "For more information:"
|
538 |
msgstr "Για περισσότερα:"
|
539 |
|
540 |
-
#: admin/classes/class-settings.php:
|
541 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
542 |
msgid "Default settings have been reset."
|
543 |
msgstr "Οι προεπιλεγμένες ρυθμίσεις επαναφέρθηκαν."
|
544 |
|
545 |
-
#: admin/classes/class-settings.php:
|
546 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
547 |
msgid ""
|
548 |
"Do you really want to reset all these settings to their default values ?"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/classes/class-settings.php:
|
552 |
-
#: admin/classes/class-settings.php:
|
553 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
554 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
555 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
556 |
msgid "No options defined."
|
557 |
msgstr "Δεν έχουν καθοριστεί επιλογές."
|
558 |
|
559 |
-
#: admin/classes/class-settings.php:
|
560 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
561 |
msgid "Select %s"
|
562 |
msgstr "Επιλογή %s"
|
563 |
|
564 |
-
#: admin/classes/class-settings.php:
|
565 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
566 |
msgid "Remove %s"
|
567 |
msgstr "Αφαίρεση %s"
|
568 |
|
569 |
-
#: admin/classes/class-settings.php:
|
570 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
571 |
msgid "No action defined."
|
572 |
msgstr ""
|
573 |
|
@@ -582,801 +582,826 @@ msgid ""
|
|
582 |
"An advanced widget that gives you all most liked records with different types"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/classes/class-widget.php:
|
586 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
587 |
msgid "on"
|
588 |
msgstr "ενεργό"
|
589 |
|
590 |
-
#: admin/classes/class-widget.php:
|
591 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
592 |
msgid "you haven't liked any post yet!"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: admin/classes/class-widget.php:
|
596 |
-
#: admin/classes/tmp/
|
597 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
598 |
-
#: build/wp-ulike/admin/classes/tmp/
|
599 |
-
#: build/wp-ulike/admin/classes/tmp/
|
600 |
-
#: build/wp-ulike/admin/classes/tmp/
|
601 |
#: build/wp-ulike/admin/stats.php:206
|
602 |
msgid "Like"
|
603 |
msgstr "Μου αρέσει"
|
604 |
|
605 |
-
#: admin/classes/class-widget.php:
|
606 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
607 |
msgid "Most Liked"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/classes/class-widget.php:
|
611 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
612 |
msgid "Title:"
|
613 |
msgstr "Τίτλος:"
|
614 |
|
615 |
-
#: admin/classes/class-widget.php:
|
616 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
617 |
msgid "Type:"
|
618 |
msgstr "Τύπος:"
|
619 |
|
620 |
-
#: admin/classes/class-widget.php:
|
621 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
622 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
623 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
624 |
msgid "Most Liked Posts"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/classes/class-widget.php:
|
628 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
629 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
630 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
631 |
msgid "Most Liked Comments"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/classes/class-widget.php:
|
635 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
636 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
637 |
msgid "Most Liked Activities"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/classes/class-widget.php:
|
641 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
642 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
643 |
msgid "Most Liked Topics"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: admin/classes/class-widget.php:
|
647 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
648 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
649 |
msgid "Most Liked Users"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/classes/class-widget.php:
|
653 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
654 |
msgid "Last Posts Liked By User"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: admin/classes/class-widget.php:
|
658 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
659 |
msgid "Period:"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/classes/class-widget.php:
|
663 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
664 |
msgid "All The Times"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: admin/classes/class-widget.php:
|
668 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
669 |
msgid "Year"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: admin/classes/class-widget.php:
|
673 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
674 |
#: build/wp-ulike/admin/stats.php:154
|
675 |
msgid "Month"
|
676 |
msgstr "Μήνας"
|
677 |
|
678 |
-
#: admin/classes/class-widget.php:
|
679 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
680 |
#: build/wp-ulike/admin/stats.php:149
|
681 |
msgid "Week"
|
682 |
msgstr "Εβδομάδα"
|
683 |
|
684 |
-
#: admin/classes/class-widget.php:
|
685 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
686 |
#: build/wp-ulike/admin/stats.php:144
|
687 |
msgid "Yesterday"
|
688 |
msgstr "Χθες"
|
689 |
|
690 |
-
#: admin/classes/class-widget.php:
|
691 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
692 |
#: build/wp-ulike/admin/stats.php:139
|
693 |
msgid "Today"
|
694 |
msgstr "Σήμερα"
|
695 |
|
696 |
-
#: admin/classes/class-widget.php:
|
697 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
698 |
msgid "Style:"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: admin/classes/class-widget.php:
|
702 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
703 |
msgid "Simple"
|
704 |
msgstr "Απλό"
|
705 |
|
706 |
-
#: admin/classes/class-widget.php:
|
707 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
708 |
msgid "Title Trim (Length):"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: admin/classes/class-widget.php:
|
712 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
713 |
-
msgid "Number of items to show:"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: admin/classes/class-widget.php:447
|
717 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
718 |
-
msgid "Thumbnail/Avatar size:"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: admin/classes/class-widget.php:453
|
722 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
723 |
msgid "Profile URL:"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: admin/classes/class-widget.php:
|
727 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
728 |
msgid "UltimateMember"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: admin/classes/class-widget.php:
|
732 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
733 |
msgid "Activate Like Counter"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: admin/classes/class-widget.php:
|
737 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
738 |
msgid "Activate Thumbnail/Avatar"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: admin/classes/
|
742 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
743 |
msgid "General"
|
744 |
msgstr "Γενικά"
|
745 |
|
746 |
-
#: admin/classes/tmp/
|
747 |
-
#: build/wp-ulike/admin/classes/tmp/
|
748 |
msgid "Button Type"
|
749 |
msgstr "Τύπος Κουμπιού"
|
750 |
|
751 |
-
#: admin/classes/tmp/
|
752 |
-
#: build/wp-ulike/admin/classes/tmp/
|
753 |
msgid "Icon"
|
754 |
msgstr "Εικονίδιο"
|
755 |
|
756 |
-
#: admin/classes/tmp/
|
757 |
-
#: build/wp-ulike/admin/classes/tmp/
|
758 |
msgid "Text"
|
759 |
msgstr "Κείμενο"
|
760 |
|
761 |
-
#: admin/classes/tmp/
|
762 |
-
#: build/wp-ulike/admin/classes/tmp/
|
763 |
-
#: build/wp-ulike/admin/classes/tmp/
|
764 |
msgid "Button Text"
|
765 |
msgstr "Κείμενο κουμπού"
|
766 |
|
767 |
-
#: admin/classes/tmp/
|
768 |
-
#: admin/classes/tmp/
|
769 |
-
#: build/wp-ulike/admin/classes/tmp/
|
770 |
-
#: build/wp-ulike/admin/classes/tmp/
|
771 |
-
#: build/wp-ulike/admin/classes/tmp/
|
772 |
msgid "Unlike"
|
773 |
msgstr "Δεν μου αρέσει"
|
774 |
|
775 |
-
#: admin/classes/tmp/
|
776 |
-
#: build/wp-ulike/admin/classes/tmp/
|
777 |
-
#: build/wp-ulike/admin/classes/tmp/
|
778 |
msgid "Button Icon"
|
779 |
msgstr "Εικονίδιο Κουμπιού"
|
780 |
|
781 |
-
#: admin/classes/tmp/
|
782 |
-
#: admin/classes/tmp/
|
783 |
-
#: build/wp-ulike/admin/classes/tmp/
|
784 |
-
#: build/wp-ulike/admin/classes/tmp/
|
785 |
-
#: build/wp-ulike/admin/classes/tmp/
|
786 |
msgid "Best size: 16x16"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: admin/classes/tmp/
|
790 |
-
#: build/wp-ulike/admin/classes/tmp/
|
791 |
msgid "You have not permission to unlike"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: admin/classes/tmp/
|
795 |
-
#: build/wp-ulike/admin/classes/tmp/
|
796 |
msgid "Permission Text"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: admin/classes/tmp/
|
800 |
-
#: build/wp-ulike/admin/classes/tmp/
|
801 |
msgid "Users Login Type"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: admin/classes/tmp/
|
805 |
-
#: build/wp-ulike/admin/classes/tmp/
|
806 |
msgid "Alert Box"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: admin/classes/tmp/
|
810 |
-
#: build/wp-ulike/admin/classes/tmp/
|
811 |
msgid "Like Button"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: admin/classes/tmp/
|
815 |
-
#: build/wp-ulike/admin/classes/tmp/
|
816 |
msgid "You Should Login To Submit Your Like"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: admin/classes/tmp/
|
820 |
-
#: build/wp-ulike/admin/classes/tmp/
|
821 |
msgid "Users Login Text"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: admin/classes/tmp/
|
825 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
msgid "Format Number"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: admin/classes/tmp/
|
835 |
-
#: admin/classes/tmp/
|
836 |
-
#: admin/classes/tmp/
|
837 |
-
#: admin/classes/tmp/
|
838 |
-
#: admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
-
#: build/wp-ulike/admin/classes/tmp/
|
854 |
-
#: build/wp-ulike/admin/classes/tmp/
|
855 |
-
#: build/wp-ulike/admin/classes/tmp/
|
856 |
-
#: build/wp-ulike/admin/classes/tmp/
|
857 |
-
#: build/wp-ulike/admin/classes/tmp/
|
858 |
msgid "Activate"
|
859 |
msgstr "Ενεργοποίηση"
|
860 |
|
861 |
-
#: admin/classes/tmp/
|
862 |
-
#: build/wp-ulike/admin/classes/tmp/
|
863 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: admin/classes/tmp/
|
867 |
-
#: build/wp-ulike/admin/classes/tmp/
|
868 |
#, fuzzy
|
869 |
msgid "Notifications"
|
870 |
msgstr "Ειδοποιήσεις BuddyPress"
|
871 |
|
872 |
-
#: admin/classes/tmp/
|
873 |
-
#: build/wp-ulike/admin/classes/tmp/
|
874 |
msgid "Custom toast messages after each activity"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: admin/classes/tmp/
|
878 |
-
#: build/wp-ulike/admin/classes/tmp/
|
879 |
msgid "Thanks! You Liked This."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: admin/classes/tmp/
|
883 |
-
#: build/wp-ulike/admin/classes/tmp/
|
884 |
msgid "Liked Notice Message"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: admin/classes/tmp/
|
888 |
-
#: build/wp-ulike/admin/classes/tmp/
|
889 |
msgid "Sorry! You unliked this."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: admin/classes/tmp/
|
893 |
-
#: build/wp-ulike/admin/classes/tmp/
|
894 |
msgid "Unliked Notice Message"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: admin/classes/tmp/
|
898 |
-
#: admin/classes/tmp/
|
899 |
-
#: build/wp-ulike/admin/classes/tmp/
|
900 |
-
#: build/wp-ulike/admin/classes/tmp/
|
901 |
-
#: build/wp-ulike/admin/classes/tmp/
|
902 |
-
#: build/wp-ulike/admin/classes/tmp/
|
903 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
904 |
msgid "Themes"
|
905 |
msgstr "Θέματα"
|
906 |
|
907 |
-
#: admin/classes/tmp/
|
908 |
-
#: admin/classes/tmp/
|
909 |
-
#: build/wp-ulike/admin/classes/tmp/
|
910 |
-
#: build/wp-ulike/admin/classes/tmp/
|
911 |
-
#: build/wp-ulike/admin/classes/tmp/
|
912 |
-
#: build/wp-ulike/admin/classes/tmp/
|
913 |
msgid "Auto Display Position"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: admin/classes/tmp/
|
917 |
-
#: admin/classes/tmp/
|
918 |
-
#: build/wp-ulike/admin/classes/tmp/
|
919 |
-
#: build/wp-ulike/admin/classes/tmp/
|
920 |
-
#: build/wp-ulike/admin/classes/tmp/
|
921 |
msgid "Top of Content"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: admin/classes/tmp/
|
925 |
-
#: admin/classes/tmp/
|
926 |
-
#: build/wp-ulike/admin/classes/tmp/
|
927 |
-
#: build/wp-ulike/admin/classes/tmp/
|
928 |
-
#: build/wp-ulike/admin/classes/tmp/
|
929 |
msgid "Bottom of Content"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: admin/classes/tmp/
|
933 |
-
#: build/wp-ulike/admin/classes/tmp/
|
934 |
-
#: build/wp-ulike/admin/classes/tmp/
|
935 |
msgid "Top and Bottom"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: admin/classes/tmp/
|
939 |
-
#: build/wp-ulike/admin/classes/tmp/
|
940 |
msgid "Auto Display Filter"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: admin/classes/tmp/
|
944 |
-
#: build/wp-ulike/admin/classes/tmp/
|
945 |
-
msgid "Single Posts"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: admin/classes/tmp/settings.php:117
|
949 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
950 |
-
msgid "Pages"
|
951 |
-
msgstr "Σελίδες"
|
952 |
-
|
953 |
-
#: admin/classes/tmp/settings.php:118
|
954 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
955 |
-
msgid "Archives"
|
956 |
-
msgstr "Αρχείο"
|
957 |
-
|
958 |
-
#: admin/classes/tmp/settings.php:119
|
959 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
960 |
-
msgid "Categories"
|
961 |
-
msgstr "Κατηγορίες"
|
962 |
-
|
963 |
-
#: admin/classes/tmp/settings.php:120
|
964 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
965 |
-
msgid "Search Results"
|
966 |
-
msgstr "Αποτελέσματα αναζήτησης"
|
967 |
-
|
968 |
-
#: admin/classes/tmp/settings.php:121
|
969 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
970 |
-
msgid "Tags"
|
971 |
-
msgstr "Ετικέτες"
|
972 |
-
|
973 |
-
#: admin/classes/tmp/settings.php:122
|
974 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
975 |
-
msgid "Author Page"
|
976 |
-
msgstr "Σελίδα Συντάκτη"
|
977 |
-
|
978 |
-
#: admin/classes/tmp/settings.php:124
|
979 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
980 |
msgid "You can filter theses pages on auto display option."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: admin/classes/tmp/
|
984 |
-
#: build/wp-ulike/admin/classes/tmp/
|
985 |
msgid "Google Rich Snippets"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: admin/classes/tmp/
|
989 |
-
#: build/wp-ulike/admin/classes/tmp/
|
990 |
msgid "Add rich snippet for ratings in form of schema.org"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: admin/classes/tmp/
|
994 |
-
#: admin/classes/tmp/
|
995 |
-
#: build/wp-ulike/admin/classes/tmp/
|
996 |
-
#: build/wp-ulike/admin/classes/tmp/
|
997 |
-
#: build/wp-ulike/admin/classes/tmp/
|
998 |
-
#: build/wp-ulike/admin/classes/tmp/
|
999 |
msgid "Only registered Users"
|
1000 |
msgstr "Μόνο εγγεγραμμένοι Χρήστες"
|
1001 |
|
1002 |
-
#: admin/classes/tmp/
|
1003 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1004 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: admin/classes/tmp/
|
1008 |
-
#: admin/classes/tmp/
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1010 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1011 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1012 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1013 |
msgid "Do Not Log"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: admin/classes/tmp/
|
1017 |
-
#: admin/classes/tmp/
|
1018 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1019 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1020 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1021 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1022 |
msgid "Logged By Cookie"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: admin/classes/tmp/
|
1026 |
-
#: admin/classes/tmp/
|
1027 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1028 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1029 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1030 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1031 |
msgid "Logged By IP"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: admin/classes/tmp/
|
1035 |
-
#: admin/classes/tmp/
|
1036 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1037 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1038 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1039 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1040 |
-
msgid "Logged By Cookie & IP"
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1044 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1045 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1046 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1047 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1048 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1049 |
msgid "Logged By Username"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: admin/classes/tmp/
|
1053 |
-
#: admin/classes/tmp/
|
1054 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1055 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1056 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1057 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1058 |
msgid "Show Liked Users Box"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: admin/classes/tmp/
|
1062 |
-
#: admin/classes/tmp/
|
1063 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1064 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1065 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1066 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1067 |
msgid ""
|
1068 |
"Active this option to show liked users avatars in the bottom of button like."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: admin/classes/tmp/
|
1072 |
-
#: admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1075 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1076 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1077 |
msgid "Size of Gravatars"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: admin/classes/tmp/
|
1081 |
-
#: admin/classes/tmp/
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1083 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1084 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1085 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1086 |
msgid "Size of Gravatars to return (max is 512)"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: admin/classes/tmp/
|
1090 |
-
#: admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1093 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1094 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1095 |
msgid "Number Of The Users"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: admin/classes/tmp/
|
1099 |
-
#: admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1102 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1103 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1104 |
msgid "The number of users to show in the users liked box"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: admin/classes/tmp/
|
1108 |
-
#: admin/classes/tmp/
|
1109 |
-
#: admin/classes/tmp/
|
1110 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1111 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1114 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1115 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1116 |
msgid "Allowed Variables:"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: admin/classes/tmp/
|
1120 |
-
#: admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1123 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1124 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1125 |
msgid "Delete All Logs"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: admin/classes/tmp/
|
1129 |
-
#: admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1132 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1133 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1134 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: admin/classes/tmp/
|
1138 |
-
#: admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1141 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1142 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1143 |
msgid "Delete All Data"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: admin/classes/tmp/
|
1147 |
-
#: admin/classes/tmp/
|
1148 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1149 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1150 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1151 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1152 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: admin/classes/tmp/
|
1156 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1157 |
msgid ""
|
1158 |
"<strong>Only</strong> registered users have permission to like comments."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: admin/classes/tmp/
|
1162 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1163 |
-
msgid "Customize"
|
1164 |
-
msgstr "Προσαρμογή"
|
1165 |
-
|
1166 |
-
#: admin/classes/tmp/settings.php:290
|
1167 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1168 |
-
msgid "Custom Style"
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: admin/classes/tmp/settings.php:295
|
1172 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1173 |
-
msgid "Active this option to see the custom style settings."
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
#: admin/classes/tmp/settings.php:299
|
1177 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1178 |
-
msgid "Button style"
|
1179 |
-
msgstr "Στυλ κουμπιού"
|
1180 |
-
|
1181 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1182 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1183 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1184 |
-
msgid "Background"
|
1185 |
-
msgstr "Φόντο"
|
1186 |
-
|
1187 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1188 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1189 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1190 |
-
msgid "Border Color"
|
1191 |
-
msgstr "Χρώμα Περιθωρίου"
|
1192 |
-
|
1193 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1194 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1195 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1196 |
-
msgid "Text Color"
|
1197 |
-
msgstr "Χρώμα κειμένου"
|
1198 |
-
|
1199 |
-
#: admin/classes/tmp/settings.php:312
|
1200 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1201 |
-
msgid "Counter Style"
|
1202 |
-
msgstr "Στυλ Μετρητή"
|
1203 |
-
|
1204 |
-
#: admin/classes/tmp/settings.php:325
|
1205 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1206 |
-
msgid "Loading Animation"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: admin/classes/tmp/settings.php:330
|
1210 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1211 |
-
msgid "Custom CSS"
|
1212 |
-
msgstr "Προσαρμοσμένο CSS"
|
1213 |
-
|
1214 |
-
#: admin/classes/tmp/settings.php:361
|
1215 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1216 |
msgid "Activity Content"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: admin/classes/tmp/
|
1220 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1221 |
msgid "Activity Meta"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: admin/classes/tmp/
|
1225 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1226 |
#, fuzzy
|
1227 |
msgid "Activity Comment"
|
1228 |
msgstr "ID Δραστηριότητας"
|
1229 |
|
1230 |
-
#: admin/classes/tmp/
|
1231 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1232 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: admin/classes/tmp/
|
1236 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1237 |
msgid ""
|
1238 |
"<strong>Only</strong> registered users have permission to like activities."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: admin/classes/tmp/
|
1242 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1243 |
msgid "BuddyPress Activity"
|
1244 |
msgstr "Δραστηριότητα BuddyPress"
|
1245 |
|
1246 |
-
#: admin/classes/tmp/
|
1247 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1248 |
msgid "insert new likes in buddyPress activity page"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: admin/classes/tmp/
|
1252 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1253 |
#, fuzzy
|
1254 |
msgid "BuddyPress Custom Notification"
|
1255 |
msgstr "Ειδοποιήσεις BuddyPress"
|
1256 |
|
1257 |
-
#: admin/classes/tmp/
|
1258 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1259 |
msgid "Sends out notifications when you get a like from someone"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: admin/classes/tmp/
|
1263 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1264 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: admin/classes/tmp/
|
1268 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1269 |
msgid "Users who have liked this topic:"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: admin/
|
1273 |
-
#:
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
#:
|
1278 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1279 |
msgid "Logs"
|
1280 |
msgstr "Αρχείο καταγραφής"
|
1281 |
|
1282 |
-
#: admin/logs.php:
|
1283 |
msgid "Are you sure to remove this item?!"
|
1284 |
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το στοιχείο;!"
|
1285 |
|
1286 |
-
#: admin/logs.php:
|
1287 |
-
#: build/wp-ulike/admin/logs.php:
|
1288 |
-
#: build/wp-ulike/admin/logs.php:
|
1289 |
msgid "WP ULike Logs"
|
1290 |
msgstr "Αρχείο καταγραφής WP ULike"
|
1291 |
|
1292 |
-
#: admin/logs.php:
|
1293 |
-
#: build/wp-ulike/admin/logs.php:
|
1294 |
-
#: build/wp-ulike/admin/logs.php:
|
1295 |
msgid "ID"
|
1296 |
msgstr "ID"
|
1297 |
|
1298 |
-
#: admin/logs.php:
|
1299 |
-
#: build/wp-ulike/admin/logs.php:
|
1300 |
-
#: build/wp-ulike/admin/logs.php:
|
1301 |
msgid "Username"
|
1302 |
msgstr "Όνομα χρήστη"
|
1303 |
|
1304 |
-
#: admin/logs.php:
|
1305 |
-
#: build/wp-ulike/admin/logs.php:
|
1306 |
-
#: build/wp-ulike/admin/logs.php:
|
1307 |
msgid "Status"
|
1308 |
msgstr "Κατάσταση"
|
1309 |
|
1310 |
-
#: admin/logs.php:
|
1311 |
msgid "Post ID"
|
1312 |
msgstr "ID δημοσιεύματος"
|
1313 |
|
1314 |
-
#: admin/logs.php:
|
1315 |
msgid "Post Title"
|
1316 |
msgstr "Τίτλος Άρθρου"
|
1317 |
|
1318 |
-
#: admin/logs.php:
|
1319 |
-
#: build/wp-ulike/admin/logs.php:
|
1320 |
-
#: build/wp-ulike/admin/logs.php:
|
1321 |
msgid "Date / Time"
|
1322 |
msgstr "Ημερομηνία / Ώρα"
|
1323 |
|
1324 |
-
#: admin/logs.php:
|
1325 |
-
#: build/wp-ulike/admin/logs.php:
|
1326 |
-
#: build/wp-ulike/admin/logs.php:
|
1327 |
msgid "IP"
|
1328 |
msgstr "IP"
|
1329 |
|
1330 |
-
#: admin/logs.php:
|
1331 |
-
#: build/wp-ulike/admin/logs.php:
|
1332 |
-
#: build/wp-ulike/admin/logs.php:
|
1333 |
msgid "Actions"
|
1334 |
msgstr "Ενέργειες"
|
1335 |
|
1336 |
-
#: admin/logs.php:
|
1337 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1338 |
-
#: build/wp-ulike/admin/logs.php:
|
1339 |
-
#: build/wp-ulike/admin/logs.php:
|
1340 |
msgid "Guest User"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: admin/logs.php:
|
1344 |
-
#: build/wp-ulike/admin/logs.php:
|
1345 |
-
#: build/wp-ulike/admin/logs.php:
|
1346 |
msgid ""
|
1347 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1348 |
"you don't have any data on this table)"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: admin/logs.php:
|
1352 |
msgid "Comment ID"
|
1353 |
msgstr "ID Σχολίου"
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
msgid "Comment Author"
|
1357 |
msgstr "Συντάκτης Σχολίου"
|
1358 |
|
1359 |
-
#: admin/logs.php:
|
1360 |
msgid "Comment Text"
|
1361 |
msgstr "Κείμενο Σχολίου"
|
1362 |
|
1363 |
-
#: admin/logs.php:
|
1364 |
msgid "Activity ID"
|
1365 |
msgstr "ID Δραστηριότητας"
|
1366 |
|
1367 |
-
#: admin/logs.php:
|
1368 |
msgid "Permalink"
|
1369 |
msgstr "Permalink"
|
1370 |
|
1371 |
-
#: admin/logs.php:
|
1372 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1373 |
msgstr "<a href=\"%1$s\">Permalink Δραστηριότητας</a>"
|
1374 |
|
1375 |
-
#: admin/logs.php:
|
1376 |
msgid "Topic ID"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: admin/logs.php:
|
1380 |
msgid "Topic Title"
|
1381 |
msgstr ""
|
1382 |
|
@@ -1497,91 +1522,91 @@ msgstr "Καλώς ήρθατε"
|
|
1497 |
msgid "Days"
|
1498 |
msgstr "Ημέρες"
|
1499 |
|
1500 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1501 |
-
#: inc/classes/class-mycred.php:
|
1502 |
msgid "Points for Liking content"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1506 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1507 |
-
#: inc/classes/class-mycred.php:
|
1508 |
msgid "Limit"
|
1509 |
msgstr "Όριο"
|
1510 |
|
1511 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1512 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1513 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1514 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1515 |
-
#: inc/classes/class-mycred.php:
|
1516 |
-
#: inc/classes/class-mycred.php:
|
1517 |
msgid "Log template"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1521 |
-
#: inc/classes/class-mycred.php:
|
1522 |
msgid "Points for Author Who Get Liked"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1526 |
-
#: inc/classes/class-mycred.php:
|
1527 |
msgid "Points for unliking content"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1531 |
-
#: inc/classes/class-mycred.php:
|
1532 |
msgid "Points for Author Who Get Unliked"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1536 |
msgid "WP ULike Activity"
|
1537 |
msgstr "Δραστηριότητα WP ULike"
|
1538 |
|
1539 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1540 |
#, fuzzy
|
1541 |
msgid "Likes"
|
1542 |
msgstr "Μου αρέσει"
|
1543 |
|
1544 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1545 |
msgid "You have a new like from"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1549 |
msgid ""
|
1550 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1551 |
"WordPress, bbPress, BuddyPress & ..."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1555 |
msgid "Liking Content"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1559 |
msgid "Liked Content"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1563 |
msgid "Unliking Content"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1567 |
msgid "Unliked Content"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1571 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1572 |
-
#: inc/wp-functions.php:
|
1573 |
msgid "Recent Posts Liked"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1577 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1578 |
-
#: inc/wp-functions.php:
|
1579 |
msgid "Recent Comments Liked"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1583 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1584 |
-
#: inc/wp-functions.php:
|
1585 |
msgid "This user has not made any likes."
|
1586 |
msgstr ""
|
1587 |
|
@@ -1689,39 +1714,43 @@ msgstr ""
|
|
1689 |
msgid "Downvote"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1693 |
-
#: inc/wp-ulike.php:
|
1694 |
msgid "You need to login in order to like this post: "
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1698 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1699 |
-
#: inc/wp-ulike.php:
|
1700 |
-
#: inc/wp-ulike.php:
|
1701 |
msgid "click here"
|
1702 |
msgstr "κάντε κλικ εδώ"
|
1703 |
|
1704 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1705 |
msgid "You need to login in order to like this comment: "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1709 |
msgid "You need to login in order to like this activity: "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1713 |
msgid "Error: This Method Is Not Exist!"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: build/wp-ulike/wp-ulike.php:
|
1717 |
msgid "Settings"
|
1718 |
msgstr "Ρυθμίσεις"
|
1719 |
|
1720 |
-
#: build/wp-ulike/wp-ulike.php:
|
1721 |
msgid "Statistics"
|
1722 |
msgstr "Στατιστικά"
|
1723 |
|
1724 |
-
#: build/wp-ulike/wp-ulike.php:
|
1725 |
msgid "About"
|
1726 |
msgstr "Περί"
|
1727 |
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: WP ULike\n"
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
9 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\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/"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPath-1: ..\n"
|
24 |
|
25 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid "Welcome to WP ULike"
|
27 |
msgstr "Καλώς ήρθατε στο WP ULike"
|
28 |
|
29 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
30 |
msgid ""
|
31 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
32 |
"powerful version yet."
|
34 |
"Σας ευχαριστούμε που επιλέξατε το WP ULike! Αυτή η έκδοση είναι η πιο λιτή "
|
35 |
"και η πιο ισχυρή έκδοση ωστόσο."
|
36 |
|
37 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
38 |
#: build/wp-ulike/admin/stats.php:38
|
39 |
msgid "Visit our homepage"
|
40 |
msgstr "Δείτε την αρχική μας σελίδα "
|
41 |
|
42 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
43 |
msgid "Version"
|
44 |
msgstr "Έκδοση"
|
45 |
|
46 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
47 |
msgid "Getting Started"
|
48 |
msgstr "Ξεκινώντας"
|
49 |
|
50 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
51 |
msgid "Credits"
|
52 |
msgstr "Ευχαριστίες"
|
53 |
|
54 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
55 |
+
#: build/wp-ulike/admin/about.php:40
|
56 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
57 |
#: build/wp-ulike/admin/stats.php:52
|
58 |
msgid "Support"
|
59 |
msgstr "Υποστήριξη"
|
60 |
|
61 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
62 |
+
#: build/wp-ulike/admin/about.php:41
|
63 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
64 |
#: build/wp-ulike/admin/stats.php:53
|
65 |
msgid "FAQ"
|
66 |
msgstr "Κοινές απορίες"
|
67 |
|
68 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
69 |
msgid "Reviews"
|
70 |
msgstr "Κριτικές"
|
71 |
|
72 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
73 |
msgid "Introducing WP ULike"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
77 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
78 |
#: build/wp-ulike/admin/stats.php:37
|
79 |
msgid "About WP ULike"
|
80 |
msgstr "Σχετικά με το WP ULike"
|
87 |
"options."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
91 |
msgid "WP Ulike Extension"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
95 |
msgid ""
|
96 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
97 |
"activities & bbPress Topics."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
101 |
msgid "Added More Than 20 Language Files"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
105 |
msgid ""
|
106 |
"WP ULike is already translated into +20 languages, with more always in "
|
107 |
"progress."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
111 |
msgid "User Profile Links"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
115 |
msgid ""
|
116 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
117 |
"UltimateMember plugins."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
121 |
msgid "New Themes And Styles"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
125 |
msgid ""
|
126 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
127 |
"customize them by your taste."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
131 |
msgid "myCRED Points Support"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
135 |
msgid ""
|
136 |
"myCRED is an adaptive points management system that lets you award / charge "
|
137 |
"your users for interacting with your WordPress."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
141 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
142 |
#: build/wp-ulike/admin/stats.php:395
|
143 |
msgid "Likers World Map"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
147 |
msgid ""
|
148 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
149 |
"likers by their country in the world map & Top Liker widget."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
153 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
154 |
#: build/wp-ulike/admin/stats.php:24
|
155 |
msgid "WP ULike Statistics"
|
156 |
msgstr "Στατιστικά WP ULike"
|
157 |
|
158 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
159 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
160 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
162 |
msgid "Home"
|
163 |
msgstr "Αρχική"
|
164 |
|
165 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
166 |
msgid "OR"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
170 |
+
#: build/wp-ulike/admin/admin.php:73
|
171 |
msgid "WP ULike Settings"
|
172 |
msgstr "Ρυθμίσεις WP ULike"
|
173 |
|
174 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
175 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
179 |
msgid "Project Leaders"
|
180 |
msgstr "Κεντρική ομάδα"
|
181 |
|
182 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
183 |
msgid "Project Lead & Developer"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
187 |
msgid "Translations"
|
188 |
msgstr "Μεταφράσεις"
|
189 |
|
190 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
191 |
msgid "Would you like to help translate the plugin into more languages?"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
195 |
msgid "Join our WP-Translations Community"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
199 |
msgid "Other Plugins"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
203 |
+
msgid "Like this plugin?"
|
204 |
+
msgstr "Σας αρέσει αυτό το πρόσθετο;"
|
205 |
+
|
206 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
207 |
+
#: build/wp-ulike/admin/admin.php:309
|
208 |
+
msgid ""
|
209 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
210 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
211 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
212 |
+
"discover it too!"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
216 |
+
#: build/wp-ulike/admin/admin.php:311
|
217 |
+
msgid "Sure, I'd love to!"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
221 |
msgid ""
|
222 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
223 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
228 |
msgid "WP ULike"
|
229 |
msgstr "WP ULike"
|
230 |
|
231 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
232 |
msgid "Settings saved."
|
233 |
msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
|
234 |
|
235 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
236 |
+
#: build/wp-ulike/admin/admin.php:157
|
237 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
241 |
+
#: build/wp-ulike/admin/admin.php:159
|
242 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
246 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
247 |
#: build/wp-ulike/admin/stats.php:43
|
248 |
msgid "Post Likes Logs"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
252 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
253 |
#: build/wp-ulike/admin/stats.php:44
|
254 |
msgid "Comment Likes Logs"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
258 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
259 |
#: build/wp-ulike/admin/stats.php:45
|
260 |
msgid "Activity Likes Logs"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
264 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
265 |
#: build/wp-ulike/admin/stats.php:46
|
266 |
msgid "Topics Likes Logs"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
270 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
271 |
msgid "Default"
|
272 |
msgstr "Προεπιλεγμένο"
|
273 |
|
274 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
275 |
+
#: build/wp-ulike/admin/admin.php:232
|
276 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
277 |
msgid "Heart"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
281 |
msgid "Robeen"
|
282 |
msgstr ""
|
283 |
|
302 |
msgid "Similar Settings"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
306 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
307 |
+
#: admin/classes/tmp/options.php:451
|
308 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
309 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
310 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
311 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
312 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
313 |
msgid "Logging Method"
|
314 |
msgstr ""
|
315 |
|
339 |
#: admin/classes/class-settings.php:53
|
340 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
341 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
343 |
"is saved for registered users, the convey of like/dislike condition will "
|
344 |
"check by username, There is no permission for guest users to unlike/undislike"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/classes/class-settings.php:56
|
348 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
349 |
msgid "Template Variables"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/classes/class-settings.php:58
|
353 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
354 |
msgid "Start the loop of logs"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
358 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
359 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
360 |
msgid "required"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/classes/class-settings.php:59
|
364 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
365 |
msgid "End of the while loop"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
369 |
+
#: admin/classes/class-settings.php:68
|
370 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
371 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
372 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
373 |
msgid "Display the liker name"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/classes/class-settings.php:61
|
377 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
378 |
msgid "Display the liker avatar (By Gravatar)"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/classes/class-settings.php:62
|
382 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
383 |
msgid "Display the BuddyPress user profile url"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/classes/class-settings.php:63
|
387 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
388 |
msgid "Display the UltimateMemebr user profile url"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
392 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
393 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
394 |
msgid "Display the permalink"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
398 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
399 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
400 |
msgid "Display the likes count number"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/classes/class-settings.php:67
|
404 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
405 |
msgid "Display the post title"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/classes/class-settings.php:70
|
409 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
410 |
msgid "Display the comment author name"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
414 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
415 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
416 |
msgid "Posts"
|
417 |
msgstr "Posts"
|
418 |
|
419 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
420 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
421 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
422 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
423 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
424 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
425 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
426 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
427 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
428 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
429 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
430 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
431 |
msgid "Automatic display"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin/classes/class-settings.php:81
|
435 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
436 |
msgid ""
|
437 |
"If you disable this option, you have to put manually this code on wordpress "
|
438 |
"while loop"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
442 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
443 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
444 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
446 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
447 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
448 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
450 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
451 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
452 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
453 |
msgid "Users Like Box Template"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
457 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
458 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
459 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
460 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
461 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
462 |
msgid "Default Template:"
|
463 |
msgstr "Προεπιλεγμένο Πρότυπο:"
|
464 |
|
465 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
466 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
467 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
468 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
469 |
+
#: inc/classes/class-ulike.php:607
|
470 |
msgid "Users who have LIKED this post:"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
474 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
475 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
476 |
msgid "Comments"
|
477 |
msgstr "Σχόλια"
|
478 |
|
479 |
+
#: admin/classes/class-settings.php:90
|
480 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
481 |
msgid ""
|
482 |
"If you disable this option, you have to put manually this code on comments "
|
483 |
"text"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
487 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
488 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
489 |
msgid "Users who have LIKED this comment:"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
493 |
+
#: admin/classes/tmp/options.php:301
|
494 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
495 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
496 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
497 |
msgid "BuddyPress"
|
498 |
msgstr "BuddyPress"
|
499 |
|
500 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
501 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
502 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
503 |
msgid ""
|
504 |
"If you disable this option, you have to put manually this code on buddypres "
|
505 |
"activities content"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
509 |
+
#: admin/classes/tmp/options.php:370
|
510 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
511 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
512 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
513 |
msgid "Users who have liked this activity:"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
517 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
518 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
519 |
msgid "Post Activity Text"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
523 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
524 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
525 |
msgid "Comment Activity Text"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
529 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
530 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
531 |
msgid "bbPress"
|
532 |
msgstr "bbPress"
|
533 |
|
534 |
+
#: admin/classes/class-settings.php:111
|
535 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
536 |
msgid "For more information:"
|
537 |
msgstr "Για περισσότερα:"
|
538 |
|
539 |
+
#: admin/classes/class-settings.php:170
|
540 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
541 |
msgid "Default settings have been reset."
|
542 |
msgstr "Οι προεπιλεγμένες ρυθμίσεις επαναφέρθηκαν."
|
543 |
|
544 |
+
#: admin/classes/class-settings.php:244
|
545 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
546 |
msgid ""
|
547 |
"Do you really want to reset all these settings to their default values ?"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
551 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
552 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
553 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
554 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
555 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
556 |
msgid "No options defined."
|
557 |
msgstr "Δεν έχουν καθοριστεί επιλογές."
|
558 |
|
559 |
+
#: admin/classes/class-settings.php:347
|
560 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
561 |
msgid "Select %s"
|
562 |
msgstr "Επιλογή %s"
|
563 |
|
564 |
+
#: admin/classes/class-settings.php:348
|
565 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
566 |
msgid "Remove %s"
|
567 |
msgstr "Αφαίρεση %s"
|
568 |
|
569 |
+
#: admin/classes/class-settings.php:372
|
570 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
571 |
msgid "No action defined."
|
572 |
msgstr ""
|
573 |
|
582 |
"An advanced widget that gives you all most liked records with different types"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/classes/class-widget.php:130
|
586 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
587 |
msgid "on"
|
588 |
msgstr "ενεργό"
|
589 |
|
590 |
+
#: admin/classes/class-widget.php:191
|
591 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
592 |
msgid "you haven't liked any post yet!"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
596 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
597 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
598 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
599 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
600 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
601 |
#: build/wp-ulike/admin/stats.php:206
|
602 |
msgid "Like"
|
603 |
msgstr "Μου αρέσει"
|
604 |
|
605 |
+
#: admin/classes/class-widget.php:515
|
606 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
607 |
msgid "Most Liked"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/classes/class-widget.php:530
|
611 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
612 |
msgid "Title:"
|
613 |
msgstr "Τίτλος:"
|
614 |
|
615 |
+
#: admin/classes/class-widget.php:535
|
616 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
617 |
msgid "Type:"
|
618 |
msgstr "Τύπος:"
|
619 |
|
620 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
621 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
622 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
623 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
624 |
msgid "Most Liked Posts"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
628 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
629 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
630 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
631 |
msgid "Most Liked Comments"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
635 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
636 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
637 |
msgid "Most Liked Activities"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
641 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
642 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
643 |
msgid "Most Liked Topics"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/classes/class-widget.php:541
|
647 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
648 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
649 |
msgid "Most Liked Users"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/classes/class-widget.php:542
|
653 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
654 |
msgid "Last Posts Liked By User"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: admin/classes/class-widget.php:547
|
658 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
659 |
+
msgid "Number of items to show:"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: admin/classes/class-widget.php:552
|
663 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
664 |
msgid "Period:"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: admin/classes/class-widget.php:554
|
668 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
669 |
msgid "All The Times"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: admin/classes/class-widget.php:555
|
673 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
674 |
msgid "Year"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
678 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
679 |
#: build/wp-ulike/admin/stats.php:154
|
680 |
msgid "Month"
|
681 |
msgstr "Μήνας"
|
682 |
|
683 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
684 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
685 |
#: build/wp-ulike/admin/stats.php:149
|
686 |
msgid "Week"
|
687 |
msgstr "Εβδομάδα"
|
688 |
|
689 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
690 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
691 |
#: build/wp-ulike/admin/stats.php:144
|
692 |
msgid "Yesterday"
|
693 |
msgstr "Χθες"
|
694 |
|
695 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
696 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
697 |
#: build/wp-ulike/admin/stats.php:139
|
698 |
msgid "Today"
|
699 |
msgstr "Σήμερα"
|
700 |
|
701 |
+
#: admin/classes/class-widget.php:564
|
702 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
703 |
msgid "Style:"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: admin/classes/class-widget.php:566
|
707 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
708 |
msgid "Simple"
|
709 |
msgstr "Απλό"
|
710 |
|
711 |
+
#: admin/classes/class-widget.php:572
|
712 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
713 |
msgid "Title Trim (Length):"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: admin/classes/class-widget.php:578
|
717 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
msgid "Profile URL:"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: admin/classes/class-widget.php:581
|
722 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
723 |
msgid "UltimateMember"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: admin/classes/class-widget.php:587
|
727 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
728 |
msgid "Activate Like Counter"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: admin/classes/class-widget.php:592
|
732 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
733 |
msgid "Activate Thumbnail/Avatar"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: admin/classes/class-widget.php:596
|
737 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
738 |
+
msgid "Thumbnail/Avatar size:"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: admin/classes/tmp/options.php:11
|
742 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
743 |
msgid "General"
|
744 |
msgstr "Γενικά"
|
745 |
|
746 |
+
#: admin/classes/tmp/options.php:15
|
747 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
748 |
msgid "Button Type"
|
749 |
msgstr "Τύπος Κουμπιού"
|
750 |
|
751 |
+
#: admin/classes/tmp/options.php:19
|
752 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
753 |
msgid "Icon"
|
754 |
msgstr "Εικονίδιο"
|
755 |
|
756 |
+
#: admin/classes/tmp/options.php:23
|
757 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
758 |
msgid "Text"
|
759 |
msgstr "Κείμενο"
|
760 |
|
761 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
762 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
763 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
764 |
msgid "Button Text"
|
765 |
msgstr "Κείμενο κουμπού"
|
766 |
|
767 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
768 |
+
#: admin/classes/tmp/options.php:43
|
769 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
770 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
771 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
772 |
msgid "Unlike"
|
773 |
msgstr "Δεν μου αρέσει"
|
774 |
|
775 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
776 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
777 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
778 |
msgid "Button Icon"
|
779 |
msgstr "Εικονίδιο Κουμπιού"
|
780 |
|
781 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
782 |
+
#: admin/classes/tmp/options.php:543
|
783 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
784 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
785 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
786 |
msgid "Best size: 16x16"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: admin/classes/tmp/options.php:47
|
790 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
791 |
msgid "You have not permission to unlike"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: admin/classes/tmp/options.php:48
|
795 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
796 |
msgid "Permission Text"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: admin/classes/tmp/options.php:52
|
800 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
801 |
msgid "Users Login Type"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: admin/classes/tmp/options.php:55
|
805 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
806 |
msgid "Alert Box"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: admin/classes/tmp/options.php:56
|
810 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
811 |
msgid "Like Button"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: admin/classes/tmp/options.php:60
|
815 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
816 |
msgid "You Should Login To Submit Your Like"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: admin/classes/tmp/options.php:61
|
820 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
821 |
msgid "Users Login Text"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: admin/classes/tmp/options.php:65
|
825 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
826 |
+
msgid "Disable Plugin Files"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
830 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
831 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
832 |
+
msgid "Single Posts"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
836 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
837 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
838 |
+
msgid "Pages"
|
839 |
+
msgstr "Σελίδες"
|
840 |
+
|
841 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
842 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
843 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
844 |
+
msgid "Archives"
|
845 |
+
msgstr "Αρχείο"
|
846 |
+
|
847 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
848 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
849 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
850 |
+
msgid "Categories"
|
851 |
+
msgstr "Κατηγορίες"
|
852 |
+
|
853 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
854 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
855 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
856 |
+
msgid "Search Results"
|
857 |
+
msgstr "Αποτελέσματα αναζήτησης"
|
858 |
+
|
859 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
860 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
861 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
862 |
+
msgid "Tags"
|
863 |
+
msgstr "Ετικέτες"
|
864 |
+
|
865 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
866 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
867 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
868 |
+
msgid "Author Page"
|
869 |
+
msgstr "Σελίδα Συντάκτη"
|
870 |
+
|
871 |
+
#: admin/classes/tmp/options.php:75
|
872 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
873 |
+
#, fuzzy
|
874 |
+
msgid "BuddyPress Pages"
|
875 |
+
msgstr "BuddyPress"
|
876 |
+
|
877 |
+
#: admin/classes/tmp/options.php:76
|
878 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
879 |
+
#, fuzzy
|
880 |
+
msgid "bbPress Pages"
|
881 |
+
msgstr "bbPress"
|
882 |
+
|
883 |
+
#: admin/classes/tmp/options.php:77
|
884 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
885 |
+
msgid "WooCommerce Pages"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: admin/classes/tmp/options.php:79
|
889 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
890 |
+
msgid "Remove the plugin's css and js file on these pages."
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: admin/classes/tmp/options.php:84
|
894 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
895 |
msgid "Format Number"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
899 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
900 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
901 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
902 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
903 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
904 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
905 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
906 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
907 |
+
#: admin/classes/tmp/options.php:508
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
920 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
922 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
923 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
924 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
925 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
926 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
927 |
msgid "Activate"
|
928 |
msgstr "Ενεργοποίηση"
|
929 |
|
930 |
+
#: admin/classes/tmp/options.php:86
|
931 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
932 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: admin/classes/tmp/options.php:91
|
936 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
937 |
#, fuzzy
|
938 |
msgid "Notifications"
|
939 |
msgstr "Ειδοποιήσεις BuddyPress"
|
940 |
|
941 |
+
#: admin/classes/tmp/options.php:93
|
942 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
943 |
msgid "Custom toast messages after each activity"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: admin/classes/tmp/options.php:96
|
947 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
948 |
msgid "Thanks! You Liked This."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: admin/classes/tmp/options.php:97
|
952 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
953 |
msgid "Liked Notice Message"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: admin/classes/tmp/options.php:100
|
957 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
958 |
msgid "Sorry! You unliked this."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: admin/classes/tmp/options.php:101
|
962 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
963 |
msgid "Unliked Notice Message"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
967 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
968 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
969 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
970 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
971 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
972 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
973 |
msgid "Themes"
|
974 |
msgstr "Θέματα"
|
975 |
|
976 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
977 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
978 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
979 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
980 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
981 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
982 |
msgid "Auto Display Position"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
986 |
+
#: admin/classes/tmp/options.php:437
|
987 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
988 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
989 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
990 |
msgid "Top of Content"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
994 |
+
#: admin/classes/tmp/options.php:438
|
995 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
996 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
997 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
998 |
msgid "Bottom of Content"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
1002 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
1003 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1004 |
msgid "Top and Bottom"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: admin/classes/tmp/options.php:135
|
1008 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1009 |
msgid "Auto Display Filter"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: admin/classes/tmp/options.php:146
|
1013 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "You can filter theses pages on auto display option."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: admin/classes/tmp/options.php:151
|
1018 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1019 |
msgid "Google Rich Snippets"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: admin/classes/tmp/options.php:153
|
1023 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1024 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1028 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1029 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1030 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1031 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1032 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1033 |
msgid "Only registered Users"
|
1034 |
msgstr "Μόνο εγγεγραμμένοι Χρήστες"
|
1035 |
|
1036 |
+
#: admin/classes/tmp/options.php:160
|
1037 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1038 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1042 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1043 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1044 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1045 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1046 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1047 |
msgid "Do Not Log"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1051 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1052 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1053 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1054 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1055 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1056 |
msgid "Logged By Cookie"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1060 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1061 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1062 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1063 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1064 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1065 |
msgid "Logged By IP"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1069 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1070 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1071 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1072 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1073 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
msgid "Logged By Username"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1078 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1079 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1080 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1081 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1082 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1083 |
msgid "Show Liked Users Box"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1087 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1088 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1089 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1090 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1091 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1092 |
msgid ""
|
1093 |
"Active this option to show liked users avatars in the bottom of button like."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1097 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1098 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1099 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1100 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1101 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1102 |
msgid "Size of Gravatars"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1106 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1107 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1108 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1109 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1110 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1111 |
msgid "Size of Gravatars to return (max is 512)"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1115 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1116 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1117 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1118 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1119 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1120 |
msgid "Number Of The Users"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1124 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1125 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1126 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1127 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1128 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1129 |
msgid "The number of users to show in the users liked box"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1133 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1134 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1136 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1137 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1138 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1139 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1140 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1141 |
msgid "Allowed Variables:"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1145 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1146 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1147 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1148 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1149 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1150 |
msgid "Delete All Logs"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1154 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1155 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1156 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1159 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1163 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1164 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1165 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1166 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1167 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1168 |
msgid "Delete All Data"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1172 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1173 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1174 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1175 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1176 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1177 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: admin/classes/tmp/options.php:245
|
1181 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1182 |
msgid ""
|
1183 |
"<strong>Only</strong> registered users have permission to like comments."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: admin/classes/tmp/options.php:320
|
1187 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1188 |
msgid "Activity Content"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: admin/classes/tmp/options.php:321
|
1192 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1193 |
msgid "Activity Meta"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: admin/classes/tmp/options.php:327
|
1197 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1198 |
#, fuzzy
|
1199 |
msgid "Activity Comment"
|
1200 |
msgstr "ID Δραστηριότητας"
|
1201 |
|
1202 |
+
#: admin/classes/tmp/options.php:329
|
1203 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1204 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: admin/classes/tmp/options.php:336
|
1208 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1209 |
msgid ""
|
1210 |
"<strong>Only</strong> registered users have permission to like activities."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: admin/classes/tmp/options.php:377
|
1214 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1215 |
msgid "BuddyPress Activity"
|
1216 |
msgstr "Δραστηριότητα BuddyPress"
|
1217 |
|
1218 |
+
#: admin/classes/tmp/options.php:379
|
1219 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1220 |
msgid "insert new likes in buddyPress activity page"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: admin/classes/tmp/options.php:384
|
1224 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1225 |
#, fuzzy
|
1226 |
msgid "BuddyPress Custom Notification"
|
1227 |
msgstr "Ειδοποιήσεις BuddyPress"
|
1228 |
|
1229 |
+
#: admin/classes/tmp/options.php:386
|
1230 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1231 |
msgid "Sends out notifications when you get a like from someone"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: admin/classes/tmp/options.php:446
|
1235 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1236 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: admin/classes/tmp/options.php:480
|
1240 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1241 |
msgid "Users who have liked this topic:"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: admin/classes/tmp/options.php:502
|
1245 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1246 |
+
msgid "Customize"
|
1247 |
+
msgstr "Προσαρμογή"
|
1248 |
+
|
1249 |
+
#: admin/classes/tmp/options.php:507
|
1250 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1251 |
+
msgid "Custom Style"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: admin/classes/tmp/options.php:512
|
1255 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1256 |
+
msgid "Active this option to see the custom style settings."
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: admin/classes/tmp/options.php:516
|
1260 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1261 |
+
msgid "Button style"
|
1262 |
+
msgstr "Στυλ κουμπιού"
|
1263 |
+
|
1264 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1265 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1266 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1267 |
+
msgid "Background"
|
1268 |
+
msgstr "Φόντο"
|
1269 |
+
|
1270 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1271 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1272 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1273 |
+
msgid "Border Color"
|
1274 |
+
msgstr "Χρώμα Περιθωρίου"
|
1275 |
+
|
1276 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1277 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1278 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1279 |
+
msgid "Text Color"
|
1280 |
+
msgstr "Χρώμα κειμένου"
|
1281 |
+
|
1282 |
+
#: admin/classes/tmp/options.php:529
|
1283 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1284 |
+
msgid "Counter Style"
|
1285 |
+
msgstr "Στυλ Μετρητή"
|
1286 |
+
|
1287 |
+
#: admin/classes/tmp/options.php:542
|
1288 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1289 |
+
msgid "Loading Animation"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: admin/classes/tmp/options.php:547
|
1293 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1294 |
+
msgid "Custom CSS"
|
1295 |
+
msgstr "Προσαρμοσμένο CSS"
|
1296 |
+
|
1297 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1298 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1299 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1300 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1301 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1302 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1303 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1304 |
msgid "Logs"
|
1305 |
msgstr "Αρχείο καταγραφής"
|
1306 |
|
1307 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1308 |
msgid "Are you sure to remove this item?!"
|
1309 |
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το στοιχείο;!"
|
1310 |
|
1311 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1312 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1313 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1314 |
msgid "WP ULike Logs"
|
1315 |
msgstr "Αρχείο καταγραφής WP ULike"
|
1316 |
|
1317 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1318 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1319 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1320 |
msgid "ID"
|
1321 |
msgstr "ID"
|
1322 |
|
1323 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1324 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1325 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1326 |
msgid "Username"
|
1327 |
msgstr "Όνομα χρήστη"
|
1328 |
|
1329 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1330 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1331 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1332 |
msgid "Status"
|
1333 |
msgstr "Κατάσταση"
|
1334 |
|
1335 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1336 |
msgid "Post ID"
|
1337 |
msgstr "ID δημοσιεύματος"
|
1338 |
|
1339 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1340 |
msgid "Post Title"
|
1341 |
msgstr "Τίτλος Άρθρου"
|
1342 |
|
1343 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1344 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1345 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1346 |
msgid "Date / Time"
|
1347 |
msgstr "Ημερομηνία / Ώρα"
|
1348 |
|
1349 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1350 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1351 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1352 |
msgid "IP"
|
1353 |
msgstr "IP"
|
1354 |
|
1355 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1356 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1357 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1358 |
msgid "Actions"
|
1359 |
msgstr "Ενέργειες"
|
1360 |
|
1361 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1362 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1363 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1364 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1365 |
msgid "Guest User"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1369 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1370 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1371 |
msgid ""
|
1372 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1373 |
"you don't have any data on this table)"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1377 |
msgid "Comment ID"
|
1378 |
msgstr "ID Σχολίου"
|
1379 |
|
1380 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1381 |
msgid "Comment Author"
|
1382 |
msgstr "Συντάκτης Σχολίου"
|
1383 |
|
1384 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1385 |
msgid "Comment Text"
|
1386 |
msgstr "Κείμενο Σχολίου"
|
1387 |
|
1388 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1389 |
msgid "Activity ID"
|
1390 |
msgstr "ID Δραστηριότητας"
|
1391 |
|
1392 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1393 |
msgid "Permalink"
|
1394 |
msgstr "Permalink"
|
1395 |
|
1396 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1397 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1398 |
msgstr "<a href=\"%1$s\">Permalink Δραστηριότητας</a>"
|
1399 |
|
1400 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1401 |
msgid "Topic ID"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1405 |
msgid "Topic Title"
|
1406 |
msgstr ""
|
1407 |
|
1522 |
msgid "Days"
|
1523 |
msgstr "Ημέρες"
|
1524 |
|
1525 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1526 |
+
#: inc/classes/class-mycred.php:211
|
1527 |
msgid "Points for Liking content"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1531 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1532 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1533 |
msgid "Limit"
|
1534 |
msgstr "Όριο"
|
1535 |
|
1536 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1537 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1538 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1539 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1540 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1541 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1542 |
msgid "Log template"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1546 |
+
#: inc/classes/class-mycred.php:228
|
1547 |
msgid "Points for Author Who Get Liked"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1551 |
+
#: inc/classes/class-mycred.php:245
|
1552 |
msgid "Points for unliking content"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1556 |
+
#: inc/classes/class-mycred.php:257
|
1557 |
msgid "Points for Author Who Get Unliked"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1561 |
msgid "WP ULike Activity"
|
1562 |
msgstr "Δραστηριότητα WP ULike"
|
1563 |
|
1564 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1565 |
#, fuzzy
|
1566 |
msgid "Likes"
|
1567 |
msgstr "Μου αρέσει"
|
1568 |
|
1569 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1570 |
msgid "You have a new like from"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1574 |
msgid ""
|
1575 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1576 |
"WordPress, bbPress, BuddyPress & ..."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1580 |
msgid "Liking Content"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1584 |
msgid "Liked Content"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1588 |
msgid "Unliking Content"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1592 |
msgid "Unliked Content"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1597 |
+
#: inc/wp-functions.php:690
|
1598 |
msgid "Recent Posts Liked"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1602 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1603 |
+
#: inc/wp-functions.php:730
|
1604 |
msgid "Recent Comments Liked"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1608 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1609 |
+
#: inc/wp-functions.php:747
|
1610 |
msgid "This user has not made any likes."
|
1611 |
msgstr ""
|
1612 |
|
1714 |
msgid "Downvote"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1718 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1719 |
msgid "You need to login in order to like this post: "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1723 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1724 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1725 |
+
#: inc/wp-ulike.php:281
|
1726 |
msgid "click here"
|
1727 |
msgstr "κάντε κλικ εδώ"
|
1728 |
|
1729 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1730 |
msgid "You need to login in order to like this comment: "
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1734 |
msgid "You need to login in order to like this activity: "
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1738 |
+
msgid "Error: Something Wrong Happened!"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1742 |
msgid "Error: This Method Is Not Exist!"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1746 |
msgid "Settings"
|
1747 |
msgstr "Ρυθμίσεις"
|
1748 |
|
1749 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1750 |
msgid "Statistics"
|
1751 |
msgstr "Στατιστικά"
|
1752 |
|
1753 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1754 |
msgid "About"
|
1755 |
msgstr "Περί"
|
1756 |
|
lang/wp-ulike-en_US.mo
CHANGED
Binary file
|
lang/wp-ulike-en_US.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike 2.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"PO-Revision-Date: 2015-05-21 11:40+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: \n"
|
@@ -19,69 +19,57 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
-
#: admin/about.php:
|
23 |
-
#: build/wp-ulike/admin/about.php:290
|
24 |
-
msgid "Like this plugin?"
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
28 |
-
#: build/wp-ulike/admin/about.php:291
|
29 |
-
msgid ""
|
30 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
31 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
35 |
msgid "Welcome to WP ULike"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/about.php:
|
39 |
msgid ""
|
40 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
41 |
"powerful version yet."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: admin/about.php:
|
45 |
#: build/wp-ulike/admin/stats.php:38
|
46 |
msgid "Visit our homepage"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: admin/about.php:
|
50 |
msgid "Version"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin/about.php:
|
54 |
msgid "Getting Started"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: admin/about.php:
|
58 |
msgid "Credits"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: admin/about.php:
|
62 |
-
#: build/wp-ulike/admin/about.php:
|
63 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
64 |
#: build/wp-ulike/admin/stats.php:52
|
65 |
msgid "Support"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin/about.php:
|
69 |
-
#: build/wp-ulike/admin/about.php:
|
70 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
71 |
#: build/wp-ulike/admin/stats.php:53
|
72 |
msgid "FAQ"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin/about.php:
|
76 |
msgid "Reviews"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin/about.php:
|
80 |
msgid "Introducing WP ULike"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin/about.php:
|
84 |
-
#: build/wp-ulike/admin/about.php:
|
85 |
#: build/wp-ulike/admin/stats.php:37
|
86 |
msgid "About WP ULike"
|
87 |
msgstr ""
|
@@ -94,118 +82,137 @@ msgid ""
|
|
94 |
"options."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/about.php:
|
98 |
msgid "WP Ulike Extension"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin/about.php:
|
102 |
msgid ""
|
103 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
104 |
"activities & bbPress Topics."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin/about.php:
|
108 |
msgid "Added More Than 20 Language Files"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: admin/about.php:
|
112 |
msgid ""
|
113 |
"WP ULike is already translated into +20 languages, with more always in "
|
114 |
"progress."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/about.php:
|
118 |
msgid "User Profile Links"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/about.php:
|
122 |
msgid ""
|
123 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
124 |
"UltimateMember plugins."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin/about.php:
|
128 |
msgid "New Themes And Styles"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin/about.php:
|
132 |
msgid ""
|
133 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
134 |
"customize them by your taste."
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin/about.php:
|
138 |
msgid "myCRED Points Support"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin/about.php:
|
142 |
msgid ""
|
143 |
"myCRED is an adaptive points management system that lets you award / charge "
|
144 |
"your users for interacting with your WordPress."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin/about.php:
|
148 |
-
#: build/wp-ulike/admin/about.php:
|
149 |
#: build/wp-ulike/admin/stats.php:395
|
150 |
msgid "Likers World Map"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/about.php:
|
154 |
msgid ""
|
155 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
156 |
"likers by their country in the world map & Top Liker widget."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin/about.php:
|
160 |
-
#: build/wp-ulike/admin/about.php:
|
161 |
#: build/wp-ulike/admin/stats.php:24
|
162 |
msgid "WP ULike Statistics"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin/about.php:
|
166 |
-
#: build/wp-ulike/admin/about.php:
|
167 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
168 |
msgid "Home"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin/about.php:
|
172 |
msgid "OR"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin/about.php:
|
176 |
-
#: build/wp-ulike/admin/admin.php:
|
177 |
msgid "WP ULike Settings"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin/about.php:
|
181 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin/about.php:
|
185 |
msgid "Project Leaders"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin/about.php:
|
189 |
msgid "Project Lead & Developer"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin/about.php:
|
193 |
msgid "Translations"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin/about.php:
|
197 |
msgid "Would you like to help translate the plugin into more languages?"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin/about.php:
|
201 |
msgid "Join our WP-Translations Community"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin/about.php:
|
205 |
msgid "Other Plugins"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid ""
|
210 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
211 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -216,56 +223,56 @@ msgstr ""
|
|
216 |
msgid "WP ULike"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin/admin.php:
|
220 |
msgid "Settings saved."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin/admin.php:
|
224 |
-
#: build/wp-ulike/admin/admin.php:
|
225 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/admin.php:
|
229 |
-
#: build/wp-ulike/admin/admin.php:
|
230 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin/admin.php:
|
234 |
-
#: build/wp-ulike/admin/admin.php:
|
235 |
#: build/wp-ulike/admin/stats.php:43
|
236 |
msgid "Post Likes Logs"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: admin/admin.php:
|
240 |
-
#: build/wp-ulike/admin/admin.php:
|
241 |
#: build/wp-ulike/admin/stats.php:44
|
242 |
msgid "Comment Likes Logs"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin/admin.php:
|
246 |
-
#: build/wp-ulike/admin/admin.php:
|
247 |
#: build/wp-ulike/admin/stats.php:45
|
248 |
msgid "Activity Likes Logs"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/admin.php:
|
252 |
-
#: build/wp-ulike/admin/admin.php:
|
253 |
#: build/wp-ulike/admin/stats.php:46
|
254 |
msgid "Topics Likes Logs"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin/admin.php:
|
258 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
259 |
msgid "Default"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin/admin.php:
|
263 |
-
#: build/wp-ulike/admin/admin.php:
|
264 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
265 |
msgid "Heart"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin/admin.php:
|
269 |
msgid "Robeen"
|
270 |
msgstr ""
|
271 |
|
@@ -290,14 +297,14 @@ msgstr ""
|
|
290 |
msgid "Similar Settings"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
294 |
-
#: admin/classes/tmp/
|
295 |
-
#: admin/classes/tmp/
|
296 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
297 |
-
#: build/wp-ulike/admin/classes/tmp/
|
298 |
-
#: build/wp-ulike/admin/classes/tmp/
|
299 |
-
#: build/wp-ulike/admin/classes/tmp/
|
300 |
-
#: build/wp-ulike/admin/classes/tmp/
|
301 |
msgid "Logging Method"
|
302 |
msgstr ""
|
303 |
|
@@ -327,242 +334,235 @@ msgstr ""
|
|
327 |
#: admin/classes/class-settings.php:53
|
328 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
329 |
msgid ""
|
330 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
331 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
332 |
-
"user IP & SetCookie"
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: admin/classes/class-settings.php:54
|
336 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
337 |
-
msgid ""
|
338 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
339 |
"is saved for registered users, the convey of like/dislike condition will "
|
340 |
"check by username, There is no permission for guest users to unlike/undislike"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin/classes/class-settings.php:
|
344 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
345 |
msgid "Template Variables"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin/classes/class-settings.php:
|
349 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
350 |
msgid "Start the loop of logs"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin/classes/class-settings.php:
|
|
|
354 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
355 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
356 |
msgid "required"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin/classes/class-settings.php:
|
360 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
361 |
msgid "End of the while loop"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/classes/class-settings.php:
|
365 |
-
#: admin/classes/class-settings.php:
|
366 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
367 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
368 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
369 |
msgid "Display the liker name"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/classes/class-settings.php:
|
373 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
374 |
msgid "Display the liker avatar (By Gravatar)"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/classes/class-settings.php:
|
378 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
379 |
msgid "Display the BuddyPress user profile url"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/classes/class-settings.php:
|
383 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
384 |
msgid "Display the UltimateMemebr user profile url"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/classes/class-settings.php:
|
388 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
389 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
390 |
msgid "Display the permalink"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/classes/class-settings.php:
|
394 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
395 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
396 |
msgid "Display the likes count number"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin/classes/class-settings.php:
|
400 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
401 |
msgid "Display the post title"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin/classes/class-settings.php:
|
405 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
406 |
msgid "Display the comment author name"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/classes/class-settings.php:
|
410 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
411 |
-
#: build/wp-ulike/admin/classes/tmp/
|
412 |
msgid "Posts"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: admin/classes/class-settings.php:
|
416 |
-
#: admin/classes/class-settings.php:
|
417 |
-
#: admin/classes/tmp/
|
418 |
-
#: admin/classes/tmp/
|
419 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
420 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
421 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
422 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
423 |
-
#: build/wp-ulike/admin/classes/tmp/
|
424 |
-
#: build/wp-ulike/admin/classes/tmp/
|
425 |
-
#: build/wp-ulike/admin/classes/tmp/
|
426 |
-
#: build/wp-ulike/admin/classes/tmp/
|
427 |
msgid "Automatic display"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/classes/class-settings.php:
|
431 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
432 |
msgid ""
|
433 |
"If you disable this option, you have to put manually this code on wordpress "
|
434 |
"while loop"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/classes/class-settings.php:
|
438 |
-
#: admin/classes/class-settings.php:
|
439 |
-
#: admin/classes/tmp/
|
440 |
-
#: admin/classes/tmp/
|
441 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
442 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
443 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
444 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
445 |
-
#: build/wp-ulike/admin/classes/tmp/
|
446 |
-
#: build/wp-ulike/admin/classes/tmp/
|
447 |
-
#: build/wp-ulike/admin/classes/tmp/
|
448 |
-
#: build/wp-ulike/admin/classes/tmp/
|
449 |
msgid "Users Like Box Template"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/classes/class-settings.php:
|
453 |
-
#: admin/classes/class-settings.php:
|
454 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
455 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
456 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
457 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
458 |
msgid "Default Template:"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin/classes/class-settings.php:
|
462 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
463 |
-
#: build/wp-ulike/admin/classes/tmp/
|
464 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
465 |
-
#: inc/classes/class-ulike.php:
|
466 |
msgid "Users who have LIKED this post:"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/classes/class-settings.php:
|
470 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
471 |
-
#: build/wp-ulike/admin/classes/tmp/
|
472 |
msgid "Comments"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/classes/class-settings.php:
|
476 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
477 |
msgid ""
|
478 |
"If you disable this option, you have to put manually this code on comments "
|
479 |
"text"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/classes/class-settings.php:
|
483 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
484 |
-
#: build/wp-ulike/admin/classes/tmp/
|
485 |
msgid "Users who have LIKED this comment:"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/classes/class-settings.php:
|
489 |
-
#: admin/classes/tmp/
|
490 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
491 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
492 |
-
#: build/wp-ulike/admin/classes/tmp/
|
493 |
msgid "BuddyPress"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/classes/class-settings.php:
|
497 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
498 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
499 |
msgid ""
|
500 |
"If you disable this option, you have to put manually this code on buddypres "
|
501 |
"activities content"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/classes/class-settings.php:
|
505 |
-
#: admin/classes/tmp/
|
506 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
507 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
508 |
-
#: build/wp-ulike/admin/classes/tmp/
|
509 |
msgid "Users who have liked this activity:"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/classes/class-settings.php:
|
513 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
514 |
-
#: build/wp-ulike/admin/classes/tmp/
|
515 |
msgid "Post Activity Text"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/classes/class-settings.php:
|
519 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
520 |
-
#: build/wp-ulike/admin/classes/tmp/
|
521 |
msgid "Comment Activity Text"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/classes/class-settings.php:
|
525 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
526 |
-
#: build/wp-ulike/admin/classes/tmp/
|
527 |
msgid "bbPress"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/classes/class-settings.php:
|
531 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
532 |
msgid "For more information:"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/classes/class-settings.php:
|
536 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
537 |
msgid "Default settings have been reset."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/classes/class-settings.php:
|
541 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
542 |
msgid ""
|
543 |
"Do you really want to reset all these settings to their default values ?"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/classes/class-settings.php:
|
547 |
-
#: admin/classes/class-settings.php:
|
548 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
549 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
550 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
551 |
msgid "No options defined."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/classes/class-settings.php:
|
555 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
556 |
msgid "Select %s"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/classes/class-settings.php:
|
560 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
561 |
msgid "Remove %s"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/classes/class-settings.php:
|
565 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
566 |
msgid "No action defined."
|
567 |
msgstr ""
|
568 |
|
@@ -577,798 +577,821 @@ msgid ""
|
|
577 |
"An advanced widget that gives you all most liked records with different types"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/classes/class-widget.php:
|
581 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
582 |
msgid "on"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/classes/class-widget.php:
|
586 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
587 |
msgid "you haven't liked any post yet!"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/classes/class-widget.php:
|
591 |
-
#: admin/classes/tmp/
|
592 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
593 |
-
#: build/wp-ulike/admin/classes/tmp/
|
594 |
-
#: build/wp-ulike/admin/classes/tmp/
|
595 |
-
#: build/wp-ulike/admin/classes/tmp/
|
596 |
#: build/wp-ulike/admin/stats.php:206
|
597 |
msgid "Like"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/classes/class-widget.php:
|
601 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
602 |
msgid "Most Liked"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/classes/class-widget.php:
|
606 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
607 |
msgid "Title:"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/classes/class-widget.php:
|
611 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
612 |
msgid "Type:"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/classes/class-widget.php:
|
616 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
617 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
618 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
619 |
msgid "Most Liked Posts"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: admin/classes/class-widget.php:
|
623 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
624 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
625 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
626 |
msgid "Most Liked Comments"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: admin/classes/class-widget.php:
|
630 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
631 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
632 |
msgid "Most Liked Activities"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: admin/classes/class-widget.php:
|
636 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
637 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
638 |
msgid "Most Liked Topics"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/classes/class-widget.php:
|
642 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
643 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
644 |
msgid "Most Liked Users"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/classes/class-widget.php:
|
648 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
649 |
msgid "Last Posts Liked By User"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/classes/class-widget.php:
|
653 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
654 |
msgid "Period:"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: admin/classes/class-widget.php:
|
658 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
659 |
msgid "All The Times"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/classes/class-widget.php:
|
663 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
664 |
msgid "Year"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: admin/classes/class-widget.php:
|
668 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
669 |
#: build/wp-ulike/admin/stats.php:154
|
670 |
msgid "Month"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: admin/classes/class-widget.php:
|
674 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
675 |
#: build/wp-ulike/admin/stats.php:149
|
676 |
msgid "Week"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: admin/classes/class-widget.php:
|
680 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
681 |
#: build/wp-ulike/admin/stats.php:144
|
682 |
msgid "Yesterday"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: admin/classes/class-widget.php:
|
686 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
687 |
#: build/wp-ulike/admin/stats.php:139
|
688 |
msgid "Today"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: admin/classes/class-widget.php:
|
692 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
693 |
msgid "Style:"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: admin/classes/class-widget.php:
|
697 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
698 |
msgid "Simple"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: admin/classes/class-widget.php:
|
702 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
703 |
msgid "Title Trim (Length):"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: admin/classes/class-widget.php:
|
707 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
708 |
-
msgid "Number of items to show:"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: admin/classes/class-widget.php:447
|
712 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
713 |
-
msgid "Thumbnail/Avatar size:"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: admin/classes/class-widget.php:453
|
717 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
718 |
msgid "Profile URL:"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: admin/classes/class-widget.php:
|
722 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
723 |
msgid "UltimateMember"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: admin/classes/class-widget.php:
|
727 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
728 |
msgid "Activate Like Counter"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: admin/classes/class-widget.php:
|
732 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
733 |
msgid "Activate Thumbnail/Avatar"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: admin/classes/
|
737 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
738 |
msgid "General"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: admin/classes/tmp/
|
742 |
-
#: build/wp-ulike/admin/classes/tmp/
|
743 |
msgid "Button Type"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: admin/classes/tmp/
|
747 |
-
#: build/wp-ulike/admin/classes/tmp/
|
748 |
msgid "Icon"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: admin/classes/tmp/
|
752 |
-
#: build/wp-ulike/admin/classes/tmp/
|
753 |
msgid "Text"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: admin/classes/tmp/
|
757 |
-
#: build/wp-ulike/admin/classes/tmp/
|
758 |
-
#: build/wp-ulike/admin/classes/tmp/
|
759 |
msgid "Button Text"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: admin/classes/tmp/
|
763 |
-
#: admin/classes/tmp/
|
764 |
-
#: build/wp-ulike/admin/classes/tmp/
|
765 |
-
#: build/wp-ulike/admin/classes/tmp/
|
766 |
-
#: build/wp-ulike/admin/classes/tmp/
|
767 |
msgid "Unlike"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: admin/classes/tmp/
|
771 |
-
#: build/wp-ulike/admin/classes/tmp/
|
772 |
-
#: build/wp-ulike/admin/classes/tmp/
|
773 |
msgid "Button Icon"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: admin/classes/tmp/
|
777 |
-
#: admin/classes/tmp/
|
778 |
-
#: build/wp-ulike/admin/classes/tmp/
|
779 |
-
#: build/wp-ulike/admin/classes/tmp/
|
780 |
-
#: build/wp-ulike/admin/classes/tmp/
|
781 |
msgid "Best size: 16x16"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: admin/classes/tmp/
|
785 |
-
#: build/wp-ulike/admin/classes/tmp/
|
786 |
msgid "You have not permission to unlike"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: admin/classes/tmp/
|
790 |
-
#: build/wp-ulike/admin/classes/tmp/
|
791 |
msgid "Permission Text"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: admin/classes/tmp/
|
795 |
-
#: build/wp-ulike/admin/classes/tmp/
|
796 |
msgid "Users Login Type"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: admin/classes/tmp/
|
800 |
-
#: build/wp-ulike/admin/classes/tmp/
|
801 |
msgid "Alert Box"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: admin/classes/tmp/
|
805 |
-
#: build/wp-ulike/admin/classes/tmp/
|
806 |
msgid "Like Button"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: admin/classes/tmp/
|
810 |
-
#: build/wp-ulike/admin/classes/tmp/
|
811 |
msgid "You Should Login To Submit Your Like"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: admin/classes/tmp/
|
815 |
-
#: build/wp-ulike/admin/classes/tmp/
|
816 |
msgid "Users Login Text"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: admin/classes/tmp/
|
820 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
msgid "Format Number"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: admin/classes/tmp/
|
825 |
-
#: admin/classes/tmp/
|
826 |
-
#: admin/classes/tmp/
|
827 |
-
#: admin/classes/tmp/
|
828 |
-
#: admin/classes/tmp/
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: build/wp-ulike/admin/classes/tmp/
|
835 |
-
#: build/wp-ulike/admin/classes/tmp/
|
836 |
-
#: build/wp-ulike/admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
-
#: build/wp-ulike/admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
msgid "Activate"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: admin/classes/tmp/
|
857 |
-
#: build/wp-ulike/admin/classes/tmp/
|
858 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: admin/classes/tmp/
|
862 |
-
#: build/wp-ulike/admin/classes/tmp/
|
863 |
msgid "Notifications"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: admin/classes/tmp/
|
867 |
-
#: build/wp-ulike/admin/classes/tmp/
|
868 |
msgid "Custom toast messages after each activity"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: admin/classes/tmp/
|
872 |
-
#: build/wp-ulike/admin/classes/tmp/
|
873 |
msgid "Thanks! You Liked This."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: admin/classes/tmp/
|
877 |
-
#: build/wp-ulike/admin/classes/tmp/
|
878 |
msgid "Liked Notice Message"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: admin/classes/tmp/
|
882 |
-
#: build/wp-ulike/admin/classes/tmp/
|
883 |
msgid "Sorry! You unliked this."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: admin/classes/tmp/
|
887 |
-
#: build/wp-ulike/admin/classes/tmp/
|
888 |
msgid "Unliked Notice Message"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: admin/classes/tmp/
|
892 |
-
#: admin/classes/tmp/
|
893 |
-
#: build/wp-ulike/admin/classes/tmp/
|
894 |
-
#: build/wp-ulike/admin/classes/tmp/
|
895 |
-
#: build/wp-ulike/admin/classes/tmp/
|
896 |
-
#: build/wp-ulike/admin/classes/tmp/
|
897 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
898 |
msgid "Themes"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: admin/classes/tmp/
|
902 |
-
#: admin/classes/tmp/
|
903 |
-
#: build/wp-ulike/admin/classes/tmp/
|
904 |
-
#: build/wp-ulike/admin/classes/tmp/
|
905 |
-
#: build/wp-ulike/admin/classes/tmp/
|
906 |
-
#: build/wp-ulike/admin/classes/tmp/
|
907 |
msgid "Auto Display Position"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: admin/classes/tmp/
|
911 |
-
#: admin/classes/tmp/
|
912 |
-
#: build/wp-ulike/admin/classes/tmp/
|
913 |
-
#: build/wp-ulike/admin/classes/tmp/
|
914 |
-
#: build/wp-ulike/admin/classes/tmp/
|
915 |
msgid "Top of Content"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: admin/classes/tmp/
|
919 |
-
#: admin/classes/tmp/
|
920 |
-
#: build/wp-ulike/admin/classes/tmp/
|
921 |
-
#: build/wp-ulike/admin/classes/tmp/
|
922 |
-
#: build/wp-ulike/admin/classes/tmp/
|
923 |
msgid "Bottom of Content"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: admin/classes/tmp/
|
927 |
-
#: build/wp-ulike/admin/classes/tmp/
|
928 |
-
#: build/wp-ulike/admin/classes/tmp/
|
929 |
msgid "Top and Bottom"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: admin/classes/tmp/
|
933 |
-
#: build/wp-ulike/admin/classes/tmp/
|
934 |
msgid "Auto Display Filter"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: admin/classes/tmp/
|
938 |
-
#: build/wp-ulike/admin/classes/tmp/
|
939 |
-
msgid "Single Posts"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: admin/classes/tmp/settings.php:117
|
943 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
944 |
-
msgid "Pages"
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: admin/classes/tmp/settings.php:118
|
948 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
949 |
-
msgid "Archives"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: admin/classes/tmp/settings.php:119
|
953 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
954 |
-
msgid "Categories"
|
955 |
-
msgstr ""
|
956 |
-
|
957 |
-
#: admin/classes/tmp/settings.php:120
|
958 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
959 |
-
msgid "Search Results"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: admin/classes/tmp/settings.php:121
|
963 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
964 |
-
msgid "Tags"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: admin/classes/tmp/settings.php:122
|
968 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
969 |
-
msgid "Author Page"
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: admin/classes/tmp/settings.php:124
|
973 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
974 |
msgid "You can filter theses pages on auto display option."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: admin/classes/tmp/
|
978 |
-
#: build/wp-ulike/admin/classes/tmp/
|
979 |
msgid "Google Rich Snippets"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: admin/classes/tmp/
|
983 |
-
#: build/wp-ulike/admin/classes/tmp/
|
984 |
msgid "Add rich snippet for ratings in form of schema.org"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: admin/classes/tmp/
|
988 |
-
#: admin/classes/tmp/
|
989 |
-
#: build/wp-ulike/admin/classes/tmp/
|
990 |
-
#: build/wp-ulike/admin/classes/tmp/
|
991 |
-
#: build/wp-ulike/admin/classes/tmp/
|
992 |
-
#: build/wp-ulike/admin/classes/tmp/
|
993 |
msgid "Only registered Users"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: admin/classes/tmp/
|
997 |
-
#: build/wp-ulike/admin/classes/tmp/
|
998 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: admin/classes/tmp/
|
1002 |
-
#: admin/classes/tmp/
|
1003 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1004 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1005 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1006 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1007 |
msgid "Do Not Log"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: admin/classes/tmp/
|
1011 |
-
#: admin/classes/tmp/
|
1012 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1013 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1014 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1015 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1016 |
msgid "Logged By Cookie"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: admin/classes/tmp/
|
1020 |
-
#: admin/classes/tmp/
|
1021 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1022 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1023 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1024 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1025 |
msgid "Logged By IP"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: admin/classes/tmp/
|
1029 |
-
#: admin/classes/tmp/
|
1030 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1031 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1032 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1033 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1034 |
-
msgid "Logged By Cookie & IP"
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1038 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1039 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1040 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1041 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1042 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1043 |
msgid "Logged By Username"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: admin/classes/tmp/
|
1047 |
-
#: admin/classes/tmp/
|
1048 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1049 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1050 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1051 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1052 |
msgid "Show Liked Users Box"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: admin/classes/tmp/
|
1056 |
-
#: admin/classes/tmp/
|
1057 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1058 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1059 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1060 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1061 |
msgid ""
|
1062 |
"Active this option to show liked users avatars in the bottom of button like."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: admin/classes/tmp/
|
1066 |
-
#: admin/classes/tmp/
|
1067 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1068 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1069 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1070 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1071 |
msgid "Size of Gravatars"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: admin/classes/tmp/
|
1075 |
-
#: admin/classes/tmp/
|
1076 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1077 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1078 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1079 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1080 |
msgid "Size of Gravatars to return (max is 512)"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: admin/classes/tmp/
|
1084 |
-
#: admin/classes/tmp/
|
1085 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1086 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1087 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1088 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1089 |
msgid "Number Of The Users"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: admin/classes/tmp/
|
1093 |
-
#: admin/classes/tmp/
|
1094 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1095 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1096 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1097 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1098 |
msgid "The number of users to show in the users liked box"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: admin/classes/tmp/
|
1102 |
-
#: admin/classes/tmp/
|
1103 |
-
#: admin/classes/tmp/
|
1104 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1105 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1106 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1107 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1108 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1109 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1110 |
msgid "Allowed Variables:"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: admin/classes/tmp/
|
1114 |
-
#: admin/classes/tmp/
|
1115 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1116 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1117 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1118 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1119 |
msgid "Delete All Logs"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: admin/classes/tmp/
|
1123 |
-
#: admin/classes/tmp/
|
1124 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1125 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1126 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1127 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1128 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: admin/classes/tmp/
|
1132 |
-
#: admin/classes/tmp/
|
1133 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1134 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1135 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1136 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1137 |
msgid "Delete All Data"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: admin/classes/tmp/
|
1141 |
-
#: admin/classes/tmp/
|
1142 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1143 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1144 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1145 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1146 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: admin/classes/tmp/
|
1150 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1151 |
msgid ""
|
1152 |
"<strong>Only</strong> registered users have permission to like comments."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: admin/classes/tmp/
|
1156 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1157 |
-
msgid "
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: admin/classes/tmp/
|
1161 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1162 |
-
msgid "
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: admin/classes/tmp/
|
1166 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: admin/classes/tmp/
|
1171 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1172 |
-
msgid "
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: admin/classes/tmp/
|
1176 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1177 |
-
|
1178 |
-
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: admin/classes/tmp/
|
1182 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1183 |
-
|
1184 |
-
msgid "Border Color"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: admin/classes/tmp/
|
1188 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1189 |
-
|
1190 |
-
msgid "Text Color"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: admin/classes/tmp/
|
1194 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1195 |
-
msgid "
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: admin/classes/tmp/
|
1199 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: admin/classes/tmp/
|
1204 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: admin/classes/tmp/
|
1209 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1210 |
-
msgid "
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: admin/classes/tmp/
|
1214 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1215 |
-
msgid "
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: admin/classes/tmp/
|
1219 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1220 |
-
msgid "
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: admin/classes/tmp/
|
1224 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1225 |
-
msgid "
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: admin/classes/tmp/
|
1229 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1230 |
-
msgid ""
|
1231 |
-
"<strong>Only</strong> registered users have permission to like activities."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: admin/classes/tmp/
|
1235 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1236 |
-
|
|
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: admin/classes/tmp/
|
1240 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1241 |
-
|
|
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: admin/classes/tmp/
|
1245 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1246 |
-
|
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: admin/classes/tmp/
|
1250 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: admin/classes/tmp/
|
1255 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1256 |
-
msgid "
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: admin/classes/tmp/
|
1260 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1261 |
-
msgid "
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: admin/logs.php:17 admin/logs.php:
|
1265 |
-
#: admin/logs.php:
|
1266 |
-
#: admin/logs.php:
|
1267 |
-
#: build/wp-ulike/admin/logs.php:
|
1268 |
-
#: build/wp-ulike/admin/logs.php:
|
1269 |
-
#: build/wp-ulike/admin/logs.php:
|
1270 |
-
#: build/wp-ulike/admin/logs.php:
|
1271 |
msgid "Logs"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: admin/logs.php:
|
1275 |
msgid "Are you sure to remove this item?!"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: admin/logs.php:
|
1279 |
-
#: build/wp-ulike/admin/logs.php:
|
1280 |
-
#: build/wp-ulike/admin/logs.php:
|
1281 |
msgid "WP ULike Logs"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: admin/logs.php:
|
1285 |
-
#: build/wp-ulike/admin/logs.php:
|
1286 |
-
#: build/wp-ulike/admin/logs.php:
|
1287 |
msgid "ID"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: admin/logs.php:
|
1291 |
-
#: build/wp-ulike/admin/logs.php:
|
1292 |
-
#: build/wp-ulike/admin/logs.php:
|
1293 |
msgid "Username"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: admin/logs.php:
|
1297 |
-
#: build/wp-ulike/admin/logs.php:
|
1298 |
-
#: build/wp-ulike/admin/logs.php:
|
1299 |
msgid "Status"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: admin/logs.php:
|
1303 |
msgid "Post ID"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: admin/logs.php:
|
1307 |
msgid "Post Title"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: admin/logs.php:
|
1311 |
-
#: build/wp-ulike/admin/logs.php:
|
1312 |
-
#: build/wp-ulike/admin/logs.php:
|
1313 |
msgid "Date / Time"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: admin/logs.php:
|
1317 |
-
#: build/wp-ulike/admin/logs.php:
|
1318 |
-
#: build/wp-ulike/admin/logs.php:
|
1319 |
msgid "IP"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: admin/logs.php:
|
1323 |
-
#: build/wp-ulike/admin/logs.php:
|
1324 |
-
#: build/wp-ulike/admin/logs.php:
|
1325 |
msgid "Actions"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: admin/logs.php:
|
1329 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1330 |
-
#: build/wp-ulike/admin/logs.php:
|
1331 |
-
#: build/wp-ulike/admin/logs.php:
|
1332 |
msgid "Guest User"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: admin/logs.php:
|
1336 |
-
#: build/wp-ulike/admin/logs.php:
|
1337 |
-
#: build/wp-ulike/admin/logs.php:
|
1338 |
msgid ""
|
1339 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1340 |
"you don't have any data on this table)"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: admin/logs.php:
|
1344 |
msgid "Comment ID"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: admin/logs.php:
|
1348 |
msgid "Comment Author"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: admin/logs.php:
|
1352 |
msgid "Comment Text"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: admin/logs.php:
|
1356 |
msgid "Activity ID"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: admin/logs.php:
|
1360 |
msgid "Permalink"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: admin/logs.php:
|
1364 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: admin/logs.php:
|
1368 |
msgid "Topic ID"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: admin/logs.php:
|
1372 |
msgid "Topic Title"
|
1373 |
msgstr ""
|
1374 |
|
@@ -1489,90 +1512,90 @@ msgstr ""
|
|
1489 |
msgid "Days"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1493 |
-
#: inc/classes/class-mycred.php:
|
1494 |
msgid "Points for Liking content"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1498 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1499 |
-
#: inc/classes/class-mycred.php:
|
1500 |
msgid "Limit"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1504 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1505 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1506 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1507 |
-
#: inc/classes/class-mycred.php:
|
1508 |
-
#: inc/classes/class-mycred.php:
|
1509 |
msgid "Log template"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1513 |
-
#: inc/classes/class-mycred.php:
|
1514 |
msgid "Points for Author Who Get Liked"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1518 |
-
#: inc/classes/class-mycred.php:
|
1519 |
msgid "Points for unliking content"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1523 |
-
#: inc/classes/class-mycred.php:
|
1524 |
msgid "Points for Author Who Get Unliked"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1528 |
msgid "WP ULike Activity"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1532 |
msgid "Likes"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1536 |
msgid "You have a new like from"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1540 |
msgid ""
|
1541 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1542 |
"WordPress, bbPress, BuddyPress & ..."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1546 |
msgid "Liking Content"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1550 |
msgid "Liked Content"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1554 |
msgid "Unliking Content"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1558 |
msgid "Unliked Content"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1562 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1563 |
-
#: inc/wp-functions.php:
|
1564 |
msgid "Recent Posts Liked"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1568 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1569 |
-
#: inc/wp-functions.php:
|
1570 |
msgid "Recent Comments Liked"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1574 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1575 |
-
#: inc/wp-functions.php:
|
1576 |
msgid "This user has not made any likes."
|
1577 |
msgstr ""
|
1578 |
|
@@ -1680,39 +1703,43 @@ msgstr ""
|
|
1680 |
msgid "Downvote"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1684 |
-
#: inc/wp-ulike.php:
|
1685 |
msgid "You need to login in order to like this post: "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1689 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1690 |
-
#: inc/wp-ulike.php:
|
1691 |
-
#: inc/wp-ulike.php:
|
1692 |
msgid "click here"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1696 |
msgid "You need to login in order to like this comment: "
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1700 |
msgid "You need to login in order to like this activity: "
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1704 |
msgid "Error: This Method Is Not Exist!"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: build/wp-ulike/wp-ulike.php:
|
1708 |
msgid "Settings"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: build/wp-ulike/wp-ulike.php:
|
1712 |
msgid "Statistics"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: build/wp-ulike/wp-ulike.php:
|
1716 |
msgid "About"
|
1717 |
msgstr ""
|
1718 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike 2.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
8 |
"PO-Revision-Date: 2015-05-21 11:40+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPath-1: ..\n"
|
21 |
|
22 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Welcome to WP ULike"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
27 |
msgid ""
|
28 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
29 |
"powerful version yet."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
33 |
#: build/wp-ulike/admin/stats.php:38
|
34 |
msgid "Visit our homepage"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
38 |
msgid "Version"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
42 |
msgid "Getting Started"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
46 |
msgid "Credits"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
50 |
+
#: build/wp-ulike/admin/about.php:40
|
51 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
52 |
#: build/wp-ulike/admin/stats.php:52
|
53 |
msgid "Support"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
57 |
+
#: build/wp-ulike/admin/about.php:41
|
58 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
59 |
#: build/wp-ulike/admin/stats.php:53
|
60 |
msgid "FAQ"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
64 |
msgid "Reviews"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
68 |
msgid "Introducing WP ULike"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
72 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
73 |
#: build/wp-ulike/admin/stats.php:37
|
74 |
msgid "About WP ULike"
|
75 |
msgstr ""
|
82 |
"options."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
86 |
msgid "WP Ulike Extension"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
90 |
msgid ""
|
91 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
92 |
"activities & bbPress Topics."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
96 |
msgid "Added More Than 20 Language Files"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
100 |
msgid ""
|
101 |
"WP ULike is already translated into +20 languages, with more always in "
|
102 |
"progress."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
106 |
msgid "User Profile Links"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
110 |
msgid ""
|
111 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
112 |
"UltimateMember plugins."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
116 |
msgid "New Themes And Styles"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
120 |
msgid ""
|
121 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
122 |
"customize them by your taste."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
126 |
msgid "myCRED Points Support"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
130 |
msgid ""
|
131 |
"myCRED is an adaptive points management system that lets you award / charge "
|
132 |
"your users for interacting with your WordPress."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
136 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
137 |
#: build/wp-ulike/admin/stats.php:395
|
138 |
msgid "Likers World Map"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
142 |
msgid ""
|
143 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
144 |
"likers by their country in the world map & Top Liker widget."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
148 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
149 |
#: build/wp-ulike/admin/stats.php:24
|
150 |
msgid "WP ULike Statistics"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
154 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
155 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
156 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
157 |
msgid "Home"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
161 |
msgid "OR"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
165 |
+
#: build/wp-ulike/admin/admin.php:73
|
166 |
msgid "WP ULike Settings"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
170 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
174 |
msgid "Project Leaders"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
178 |
msgid "Project Lead & Developer"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
182 |
msgid "Translations"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
186 |
msgid "Would you like to help translate the plugin into more languages?"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
190 |
msgid "Join our WP-Translations Community"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
194 |
msgid "Other Plugins"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
198 |
+
msgid "Like this plugin?"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
202 |
+
#: build/wp-ulike/admin/admin.php:309
|
203 |
+
msgid ""
|
204 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
205 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
206 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
207 |
+
"discover it too!"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
211 |
+
#: build/wp-ulike/admin/admin.php:311
|
212 |
+
msgid "Sure, I'd love to!"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
216 |
msgid ""
|
217 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
218 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
223 |
msgid "WP ULike"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
227 |
msgid "Settings saved."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
231 |
+
#: build/wp-ulike/admin/admin.php:157
|
232 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
236 |
+
#: build/wp-ulike/admin/admin.php:159
|
237 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
241 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
242 |
#: build/wp-ulike/admin/stats.php:43
|
243 |
msgid "Post Likes Logs"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
247 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
248 |
#: build/wp-ulike/admin/stats.php:44
|
249 |
msgid "Comment Likes Logs"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
253 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
254 |
#: build/wp-ulike/admin/stats.php:45
|
255 |
msgid "Activity Likes Logs"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
259 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
260 |
#: build/wp-ulike/admin/stats.php:46
|
261 |
msgid "Topics Likes Logs"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
265 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
266 |
msgid "Default"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
270 |
+
#: build/wp-ulike/admin/admin.php:232
|
271 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
272 |
msgid "Heart"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
276 |
msgid "Robeen"
|
277 |
msgstr ""
|
278 |
|
297 |
msgid "Similar Settings"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
301 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
302 |
+
#: admin/classes/tmp/options.php:451
|
303 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
304 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
305 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
306 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
307 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
308 |
msgid "Logging Method"
|
309 |
msgstr ""
|
310 |
|
334 |
#: admin/classes/class-settings.php:53
|
335 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
336 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
338 |
"is saved for registered users, the convey of like/dislike condition will "
|
339 |
"check by username, There is no permission for guest users to unlike/undislike"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/classes/class-settings.php:56
|
343 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
344 |
msgid "Template Variables"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/classes/class-settings.php:58
|
348 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
349 |
msgid "Start the loop of logs"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
353 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
354 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
355 |
msgid "required"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin/classes/class-settings.php:59
|
359 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
360 |
msgid "End of the while loop"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
364 |
+
#: admin/classes/class-settings.php:68
|
365 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
366 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
367 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
368 |
msgid "Display the liker name"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/classes/class-settings.php:61
|
372 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
373 |
msgid "Display the liker avatar (By Gravatar)"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/classes/class-settings.php:62
|
377 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
378 |
msgid "Display the BuddyPress user profile url"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/classes/class-settings.php:63
|
382 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
383 |
msgid "Display the UltimateMemebr user profile url"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
387 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
388 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
389 |
msgid "Display the permalink"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
393 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
394 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
395 |
msgid "Display the likes count number"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/classes/class-settings.php:67
|
399 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
400 |
msgid "Display the post title"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/classes/class-settings.php:70
|
404 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
405 |
msgid "Display the comment author name"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
409 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
410 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
411 |
msgid "Posts"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
415 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
416 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
417 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
418 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
419 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
420 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
422 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
423 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
424 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
425 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
426 |
msgid "Automatic display"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/classes/class-settings.php:81
|
430 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
431 |
msgid ""
|
432 |
"If you disable this option, you have to put manually this code on wordpress "
|
433 |
"while loop"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
437 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
438 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
439 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
440 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
441 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
442 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
443 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
444 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
445 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
446 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
447 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
448 |
msgid "Users Like Box Template"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
452 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
453 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
454 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
455 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
456 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
457 |
msgid "Default Template:"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
461 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
462 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
463 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
464 |
+
#: inc/classes/class-ulike.php:607
|
465 |
msgid "Users who have LIKED this post:"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
469 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
470 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
471 |
msgid "Comments"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/classes/class-settings.php:90
|
475 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
476 |
msgid ""
|
477 |
"If you disable this option, you have to put manually this code on comments "
|
478 |
"text"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
482 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
483 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
484 |
msgid "Users who have LIKED this comment:"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
488 |
+
#: admin/classes/tmp/options.php:301
|
489 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
490 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
491 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
492 |
msgid "BuddyPress"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
496 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
497 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
498 |
msgid ""
|
499 |
"If you disable this option, you have to put manually this code on buddypres "
|
500 |
"activities content"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
504 |
+
#: admin/classes/tmp/options.php:370
|
505 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
506 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
507 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
508 |
msgid "Users who have liked this activity:"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
512 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
513 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
514 |
msgid "Post Activity Text"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
518 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
519 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
520 |
msgid "Comment Activity Text"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
524 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
525 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
526 |
msgid "bbPress"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/classes/class-settings.php:111
|
530 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
531 |
msgid "For more information:"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: admin/classes/class-settings.php:170
|
535 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
536 |
msgid "Default settings have been reset."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/classes/class-settings.php:244
|
540 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
541 |
msgid ""
|
542 |
"Do you really want to reset all these settings to their default values ?"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
546 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
547 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
548 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
549 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
550 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
551 |
msgid "No options defined."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/classes/class-settings.php:347
|
555 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
556 |
msgid "Select %s"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/classes/class-settings.php:348
|
560 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
561 |
msgid "Remove %s"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/classes/class-settings.php:372
|
565 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
566 |
msgid "No action defined."
|
567 |
msgstr ""
|
568 |
|
577 |
"An advanced widget that gives you all most liked records with different types"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/classes/class-widget.php:130
|
581 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
582 |
msgid "on"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/classes/class-widget.php:191
|
586 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
587 |
msgid "you haven't liked any post yet!"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
591 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
592 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
593 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
594 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
595 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
596 |
#: build/wp-ulike/admin/stats.php:206
|
597 |
msgid "Like"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/classes/class-widget.php:515
|
601 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
602 |
msgid "Most Liked"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/classes/class-widget.php:530
|
606 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
607 |
msgid "Title:"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/classes/class-widget.php:535
|
611 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
612 |
msgid "Type:"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
616 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
617 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
618 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
619 |
msgid "Most Liked Posts"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
623 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
624 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
625 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
626 |
msgid "Most Liked Comments"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
630 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
631 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
632 |
msgid "Most Liked Activities"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
636 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
637 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
638 |
msgid "Most Liked Topics"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/classes/class-widget.php:541
|
642 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
643 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
644 |
msgid "Most Liked Users"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/classes/class-widget.php:542
|
648 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
649 |
msgid "Last Posts Liked By User"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/classes/class-widget.php:547
|
653 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
654 |
+
msgid "Number of items to show:"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: admin/classes/class-widget.php:552
|
658 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
659 |
msgid "Period:"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: admin/classes/class-widget.php:554
|
663 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
664 |
msgid "All The Times"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: admin/classes/class-widget.php:555
|
668 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
669 |
msgid "Year"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
673 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
674 |
#: build/wp-ulike/admin/stats.php:154
|
675 |
msgid "Month"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
679 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
680 |
#: build/wp-ulike/admin/stats.php:149
|
681 |
msgid "Week"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
685 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
686 |
#: build/wp-ulike/admin/stats.php:144
|
687 |
msgid "Yesterday"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
691 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
692 |
#: build/wp-ulike/admin/stats.php:139
|
693 |
msgid "Today"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: admin/classes/class-widget.php:564
|
697 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
698 |
msgid "Style:"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: admin/classes/class-widget.php:566
|
702 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
703 |
msgid "Simple"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: admin/classes/class-widget.php:572
|
707 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
708 |
msgid "Title Trim (Length):"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: admin/classes/class-widget.php:578
|
712 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
msgid "Profile URL:"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: admin/classes/class-widget.php:581
|
717 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
718 |
msgid "UltimateMember"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: admin/classes/class-widget.php:587
|
722 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
723 |
msgid "Activate Like Counter"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: admin/classes/class-widget.php:592
|
727 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
728 |
msgid "Activate Thumbnail/Avatar"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: admin/classes/class-widget.php:596
|
732 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
733 |
+
msgid "Thumbnail/Avatar size:"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: admin/classes/tmp/options.php:11
|
737 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
738 |
msgid "General"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: admin/classes/tmp/options.php:15
|
742 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
743 |
msgid "Button Type"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: admin/classes/tmp/options.php:19
|
747 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
748 |
msgid "Icon"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: admin/classes/tmp/options.php:23
|
752 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
753 |
msgid "Text"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
757 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
758 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
759 |
msgid "Button Text"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
763 |
+
#: admin/classes/tmp/options.php:43
|
764 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
765 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
766 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
767 |
msgid "Unlike"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
771 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
772 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
773 |
msgid "Button Icon"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
777 |
+
#: admin/classes/tmp/options.php:543
|
778 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
779 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
780 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
781 |
msgid "Best size: 16x16"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: admin/classes/tmp/options.php:47
|
785 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
786 |
msgid "You have not permission to unlike"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: admin/classes/tmp/options.php:48
|
790 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
791 |
msgid "Permission Text"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: admin/classes/tmp/options.php:52
|
795 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
796 |
msgid "Users Login Type"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: admin/classes/tmp/options.php:55
|
800 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
801 |
msgid "Alert Box"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: admin/classes/tmp/options.php:56
|
805 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
806 |
msgid "Like Button"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: admin/classes/tmp/options.php:60
|
810 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
811 |
msgid "You Should Login To Submit Your Like"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: admin/classes/tmp/options.php:61
|
815 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
816 |
msgid "Users Login Text"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: admin/classes/tmp/options.php:65
|
820 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
821 |
+
msgid "Disable Plugin Files"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
825 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
826 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
827 |
+
msgid "Single Posts"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
831 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
832 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
833 |
+
msgid "Pages"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
837 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
838 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
839 |
+
msgid "Archives"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
843 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
844 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
845 |
+
msgid "Categories"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
849 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
850 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
851 |
+
msgid "Search Results"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
855 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
856 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
857 |
+
msgid "Tags"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
861 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
862 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
863 |
+
msgid "Author Page"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: admin/classes/tmp/options.php:75
|
867 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
868 |
+
msgid "BuddyPress Pages"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: admin/classes/tmp/options.php:76
|
872 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
873 |
+
msgid "bbPress Pages"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: admin/classes/tmp/options.php:77
|
877 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
878 |
+
msgid "WooCommerce Pages"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: admin/classes/tmp/options.php:79
|
882 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
883 |
+
msgid "Remove the plugin's css and js file on these pages."
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: admin/classes/tmp/options.php:84
|
887 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
888 |
msgid "Format Number"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
892 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
893 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
894 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
895 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
896 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
897 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
898 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
899 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
900 |
+
#: admin/classes/tmp/options.php:508
|
901 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
902 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
903 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
904 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
905 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
907 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
920 |
msgid "Activate"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: admin/classes/tmp/options.php:86
|
924 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
925 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: admin/classes/tmp/options.php:91
|
929 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
930 |
msgid "Notifications"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: admin/classes/tmp/options.php:93
|
934 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
935 |
msgid "Custom toast messages after each activity"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: admin/classes/tmp/options.php:96
|
939 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
940 |
msgid "Thanks! You Liked This."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: admin/classes/tmp/options.php:97
|
944 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
945 |
msgid "Liked Notice Message"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: admin/classes/tmp/options.php:100
|
949 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
950 |
msgid "Sorry! You unliked this."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: admin/classes/tmp/options.php:101
|
954 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
955 |
msgid "Unliked Notice Message"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
959 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
960 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
961 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
962 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
963 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
964 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
965 |
msgid "Themes"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
969 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
970 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
971 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
972 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
973 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
974 |
msgid "Auto Display Position"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
978 |
+
#: admin/classes/tmp/options.php:437
|
979 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
980 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
981 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
982 |
msgid "Top of Content"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
986 |
+
#: admin/classes/tmp/options.php:438
|
987 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
988 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
989 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
990 |
msgid "Bottom of Content"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
994 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
995 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
996 |
msgid "Top and Bottom"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: admin/classes/tmp/options.php:135
|
1000 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1001 |
msgid "Auto Display Filter"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: admin/classes/tmp/options.php:146
|
1005 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1006 |
msgid "You can filter theses pages on auto display option."
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: admin/classes/tmp/options.php:151
|
1010 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1011 |
msgid "Google Rich Snippets"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: admin/classes/tmp/options.php:153
|
1015 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1016 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1020 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1021 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1022 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1023 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1024 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1025 |
msgid "Only registered Users"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: admin/classes/tmp/options.php:160
|
1029 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1030 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1034 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1035 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1036 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1037 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1038 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1039 |
msgid "Do Not Log"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1043 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1044 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1045 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1046 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1047 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1048 |
msgid "Logged By Cookie"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1052 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1053 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1054 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1055 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1056 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1057 |
msgid "Logged By IP"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1061 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1062 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1063 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1064 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1065 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
msgid "Logged By Username"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1070 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1071 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1072 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1073 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1074 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1075 |
msgid "Show Liked Users Box"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1079 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1080 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1081 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1082 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1083 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1084 |
msgid ""
|
1085 |
"Active this option to show liked users avatars in the bottom of button like."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1089 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1090 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1091 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1092 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1093 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1094 |
msgid "Size of Gravatars"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1098 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1099 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1100 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1101 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1102 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1103 |
msgid "Size of Gravatars to return (max is 512)"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1107 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1108 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1109 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1110 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1111 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1112 |
msgid "Number Of The Users"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1116 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1117 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1118 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1119 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1120 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1121 |
msgid "The number of users to show in the users liked box"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1125 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1126 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1127 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1128 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1129 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1130 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1131 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1133 |
msgid "Allowed Variables:"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1137 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1138 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1139 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1140 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1141 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1142 |
msgid "Delete All Logs"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1146 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1147 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1148 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1149 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1150 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1151 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1155 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1156 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1159 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1160 |
msgid "Delete All Data"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1164 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1165 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1166 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1167 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1168 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1169 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: admin/classes/tmp/options.php:245
|
1173 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1174 |
msgid ""
|
1175 |
"<strong>Only</strong> registered users have permission to like comments."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: admin/classes/tmp/options.php:320
|
1179 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
1180 |
+
msgid "Activity Content"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: admin/classes/tmp/options.php:321
|
1184 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1185 |
+
msgid "Activity Meta"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: admin/classes/tmp/options.php:327
|
1189 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1190 |
+
msgid "Activity Comment"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: admin/classes/tmp/options.php:329
|
1194 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1195 |
+
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: admin/classes/tmp/options.php:336
|
1199 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1200 |
+
msgid ""
|
1201 |
+
"<strong>Only</strong> registered users have permission to like activities."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: admin/classes/tmp/options.php:377
|
1205 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1206 |
+
msgid "BuddyPress Activity"
|
|
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: admin/classes/tmp/options.php:379
|
1210 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1211 |
+
msgid "insert new likes in buddyPress activity page"
|
|
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: admin/classes/tmp/options.php:384
|
1215 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1216 |
+
msgid "BuddyPress Custom Notification"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: admin/classes/tmp/options.php:386
|
1220 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1221 |
+
msgid "Sends out notifications when you get a like from someone"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: admin/classes/tmp/options.php:446
|
1225 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1226 |
+
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: admin/classes/tmp/options.php:480
|
1230 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1231 |
+
msgid "Users who have liked this topic:"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: admin/classes/tmp/options.php:502
|
1235 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1236 |
+
msgid "Customize"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: admin/classes/tmp/options.php:507
|
1240 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1241 |
+
msgid "Custom Style"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: admin/classes/tmp/options.php:512
|
1245 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1246 |
+
msgid "Active this option to see the custom style settings."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: admin/classes/tmp/options.php:516
|
1250 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1251 |
+
msgid "Button style"
|
|
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1255 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1256 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1257 |
+
msgid "Background"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1261 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1262 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1263 |
+
msgid "Border Color"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1267 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1268 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1269 |
+
msgid "Text Color"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: admin/classes/tmp/options.php:529
|
1273 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1274 |
+
msgid "Counter Style"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: admin/classes/tmp/options.php:542
|
1278 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1279 |
+
msgid "Loading Animation"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: admin/classes/tmp/options.php:547
|
1283 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1284 |
+
msgid "Custom CSS"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1288 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1289 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1290 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1291 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1292 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1293 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1294 |
msgid "Logs"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1298 |
msgid "Are you sure to remove this item?!"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1302 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1303 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1304 |
msgid "WP ULike Logs"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1308 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1309 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1310 |
msgid "ID"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1314 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1315 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1316 |
msgid "Username"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1320 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1321 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1322 |
msgid "Status"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1326 |
msgid "Post ID"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1330 |
msgid "Post Title"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1334 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1335 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1336 |
msgid "Date / Time"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1340 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1341 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1342 |
msgid "IP"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1346 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1347 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1348 |
msgid "Actions"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1352 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1353 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1354 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1355 |
msgid "Guest User"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1359 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1360 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1361 |
msgid ""
|
1362 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1363 |
"you don't have any data on this table)"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1367 |
msgid "Comment ID"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1371 |
msgid "Comment Author"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1375 |
msgid "Comment Text"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1379 |
msgid "Activity ID"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1383 |
msgid "Permalink"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1387 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1391 |
msgid "Topic ID"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1395 |
msgid "Topic Title"
|
1396 |
msgstr ""
|
1397 |
|
1512 |
msgid "Days"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1516 |
+
#: inc/classes/class-mycred.php:211
|
1517 |
msgid "Points for Liking content"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1521 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1522 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1523 |
msgid "Limit"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1527 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1528 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1529 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1530 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1531 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1532 |
msgid "Log template"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1536 |
+
#: inc/classes/class-mycred.php:228
|
1537 |
msgid "Points for Author Who Get Liked"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1541 |
+
#: inc/classes/class-mycred.php:245
|
1542 |
msgid "Points for unliking content"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1546 |
+
#: inc/classes/class-mycred.php:257
|
1547 |
msgid "Points for Author Who Get Unliked"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1551 |
msgid "WP ULike Activity"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1555 |
msgid "Likes"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1559 |
msgid "You have a new like from"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1563 |
msgid ""
|
1564 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1565 |
"WordPress, bbPress, BuddyPress & ..."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1569 |
msgid "Liking Content"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1573 |
msgid "Liked Content"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1577 |
msgid "Unliking Content"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1581 |
msgid "Unliked Content"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1585 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1586 |
+
#: inc/wp-functions.php:690
|
1587 |
msgid "Recent Posts Liked"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1591 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1592 |
+
#: inc/wp-functions.php:730
|
1593 |
msgid "Recent Comments Liked"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1597 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1598 |
+
#: inc/wp-functions.php:747
|
1599 |
msgid "This user has not made any likes."
|
1600 |
msgstr ""
|
1601 |
|
1703 |
msgid "Downvote"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1707 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1708 |
msgid "You need to login in order to like this post: "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1712 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1713 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1714 |
+
#: inc/wp-ulike.php:281
|
1715 |
msgid "click here"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1719 |
msgid "You need to login in order to like this comment: "
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1723 |
msgid "You need to login in order to like this activity: "
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1727 |
+
msgid "Error: Something Wrong Happened!"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1731 |
msgid "Error: This Method Is Not Exist!"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1735 |
msgid "Settings"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1739 |
msgid "Statistics"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1743 |
msgid "About"
|
1744 |
msgstr ""
|
1745 |
|
lang/wp-ulike-es_ES.mo
CHANGED
Binary file
|
lang/wp-ulike-es_ES.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-ulike/"
|
@@ -21,69 +21,57 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
-
#: admin/about.php:
|
25 |
-
#: build/wp-ulike/admin/about.php:290
|
26 |
-
msgid "Like this plugin?"
|
27 |
-
msgstr "¿Te gusta este plugin?"
|
28 |
-
|
29 |
-
#: admin/about.php:40 admin/about.php:291 build/wp-ulike/admin/about.php:40
|
30 |
-
#: build/wp-ulike/admin/about.php:291
|
31 |
-
msgid ""
|
32 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
33 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: admin/about.php:126 build/wp-ulike/admin/about.php:126
|
37 |
msgid "Welcome to WP ULike"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/about.php:
|
41 |
msgid ""
|
42 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
43 |
"powerful version yet."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin/about.php:
|
47 |
#: build/wp-ulike/admin/stats.php:38
|
48 |
msgid "Visit our homepage"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: admin/about.php:
|
52 |
msgid "Version"
|
53 |
msgstr "Versión"
|
54 |
|
55 |
-
#: admin/about.php:
|
56 |
msgid "Getting Started"
|
57 |
msgstr "Cómo empezar"
|
58 |
|
59 |
-
#: admin/about.php:
|
60 |
msgid "Credits"
|
61 |
msgstr "Créditos"
|
62 |
|
63 |
-
#: admin/about.php:
|
64 |
-
#: build/wp-ulike/admin/about.php:
|
65 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
66 |
#: build/wp-ulike/admin/stats.php:52
|
67 |
msgid "Support"
|
68 |
msgstr "Soporte"
|
69 |
|
70 |
-
#: admin/about.php:
|
71 |
-
#: build/wp-ulike/admin/about.php:
|
72 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
73 |
#: build/wp-ulike/admin/stats.php:53
|
74 |
msgid "FAQ"
|
75 |
msgstr "FAQ"
|
76 |
|
77 |
-
#: admin/about.php:
|
78 |
msgid "Reviews"
|
79 |
msgstr "Revisiones"
|
80 |
|
81 |
-
#: admin/about.php:
|
82 |
msgid "Introducing WP ULike"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: admin/about.php:
|
86 |
-
#: build/wp-ulike/admin/about.php:
|
87 |
#: build/wp-ulike/admin/stats.php:37
|
88 |
msgid "About WP ULike"
|
89 |
msgstr ""
|
@@ -96,118 +84,137 @@ msgid ""
|
|
96 |
"options."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/about.php:
|
100 |
msgid "WP Ulike Extension"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/about.php:
|
104 |
msgid ""
|
105 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
106 |
"activities & bbPress Topics."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/about.php:
|
110 |
msgid "Added More Than 20 Language Files"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/about.php:
|
114 |
msgid ""
|
115 |
"WP ULike is already translated into +20 languages, with more always in "
|
116 |
"progress."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin/about.php:
|
120 |
msgid "User Profile Links"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin/about.php:
|
124 |
msgid ""
|
125 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
126 |
"UltimateMember plugins."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin/about.php:
|
130 |
msgid "New Themes And Styles"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin/about.php:
|
134 |
msgid ""
|
135 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
136 |
"customize them by your taste."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin/about.php:
|
140 |
msgid "myCRED Points Support"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin/about.php:
|
144 |
msgid ""
|
145 |
"myCRED is an adaptive points management system that lets you award / charge "
|
146 |
"your users for interacting with your WordPress."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin/about.php:
|
150 |
-
#: build/wp-ulike/admin/about.php:
|
151 |
#: build/wp-ulike/admin/stats.php:395
|
152 |
msgid "Likers World Map"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin/about.php:
|
156 |
msgid ""
|
157 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
158 |
"likers by their country in the world map & Top Liker widget."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin/about.php:
|
162 |
-
#: build/wp-ulike/admin/about.php:
|
163 |
#: build/wp-ulike/admin/stats.php:24
|
164 |
msgid "WP ULike Statistics"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin/about.php:
|
168 |
-
#: build/wp-ulike/admin/about.php:
|
169 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
170 |
msgid "Home"
|
171 |
msgstr "Inicio"
|
172 |
|
173 |
-
#: admin/about.php:
|
174 |
msgid "OR"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin/about.php:
|
178 |
-
#: build/wp-ulike/admin/admin.php:
|
179 |
msgid "WP ULike Settings"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: admin/about.php:
|
183 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin/about.php:
|
187 |
msgid "Project Leaders"
|
188 |
msgstr "Líderes de proyecto"
|
189 |
|
190 |
-
#: admin/about.php:
|
191 |
msgid "Project Lead & Developer"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: admin/about.php:
|
195 |
msgid "Translations"
|
196 |
msgstr "Traducciones"
|
197 |
|
198 |
-
#: admin/about.php:
|
199 |
msgid "Would you like to help translate the plugin into more languages?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/about.php:
|
203 |
msgid "Join our WP-Translations Community"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: admin/about.php:
|
207 |
msgid "Other Plugins"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
msgid ""
|
212 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
213 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
@@ -218,56 +225,56 @@ msgstr ""
|
|
218 |
msgid "WP ULike"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin/admin.php:
|
222 |
msgid "Settings saved."
|
223 |
msgstr "Ajustes guardados."
|
224 |
|
225 |
-
#: admin/admin.php:
|
226 |
-
#: build/wp-ulike/admin/admin.php:
|
227 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin/admin.php:
|
231 |
-
#: build/wp-ulike/admin/admin.php:
|
232 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin/admin.php:
|
236 |
-
#: build/wp-ulike/admin/admin.php:
|
237 |
#: build/wp-ulike/admin/stats.php:43
|
238 |
msgid "Post Likes Logs"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/admin.php:
|
242 |
-
#: build/wp-ulike/admin/admin.php:
|
243 |
#: build/wp-ulike/admin/stats.php:44
|
244 |
msgid "Comment Likes Logs"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: admin/admin.php:
|
248 |
-
#: build/wp-ulike/admin/admin.php:
|
249 |
#: build/wp-ulike/admin/stats.php:45
|
250 |
msgid "Activity Likes Logs"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin/admin.php:
|
254 |
-
#: build/wp-ulike/admin/admin.php:
|
255 |
#: build/wp-ulike/admin/stats.php:46
|
256 |
msgid "Topics Likes Logs"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/admin.php:
|
260 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
261 |
msgid "Default"
|
262 |
msgstr "Por defecto"
|
263 |
|
264 |
-
#: admin/admin.php:
|
265 |
-
#: build/wp-ulike/admin/admin.php:
|
266 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
267 |
msgid "Heart"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin/admin.php:
|
271 |
msgid "Robeen"
|
272 |
msgstr ""
|
273 |
|
@@ -293,14 +300,14 @@ msgstr ""
|
|
293 |
msgid "Similar Settings"
|
294 |
msgstr "Salvar Ajustes"
|
295 |
|
296 |
-
#: admin/classes/class-settings.php:48 admin/classes/tmp/
|
297 |
-
#: admin/classes/tmp/
|
298 |
-
#: admin/classes/tmp/
|
299 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
300 |
-
#: build/wp-ulike/admin/classes/tmp/
|
301 |
-
#: build/wp-ulike/admin/classes/tmp/
|
302 |
-
#: build/wp-ulike/admin/classes/tmp/
|
303 |
-
#: build/wp-ulike/admin/classes/tmp/
|
304 |
msgid "Logging Method"
|
305 |
msgstr ""
|
306 |
|
@@ -330,242 +337,235 @@ msgstr ""
|
|
330 |
#: admin/classes/class-settings.php:53
|
331 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
332 |
msgid ""
|
333 |
-
"If you select <strong>\"Logged By Cookie & IP\"</strong> method: Data logs "
|
334 |
-
"will save for all users, the convey of like/dislike condition will check by "
|
335 |
-
"user IP & SetCookie"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: admin/classes/class-settings.php:54
|
339 |
-
#: build/wp-ulike/admin/classes/class-settings.php:54
|
340 |
-
msgid ""
|
341 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
342 |
"is saved for registered users, the convey of like/dislike condition will "
|
343 |
"check by username, There is no permission for guest users to unlike/undislike"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/classes/class-settings.php:
|
347 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
348 |
msgid "Template Variables"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin/classes/class-settings.php:
|
352 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
353 |
msgid "Start the loop of logs"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/classes/class-settings.php:
|
|
|
357 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
358 |
-
#: build/wp-ulike/admin/classes/class-settings.php:60
|
359 |
msgid "required"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/classes/class-settings.php:
|
363 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
364 |
msgid "End of the while loop"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/classes/class-settings.php:
|
368 |
-
#: admin/classes/class-settings.php:
|
369 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
370 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
371 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
372 |
msgid "Display the liker name"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/classes/class-settings.php:
|
376 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
377 |
msgid "Display the liker avatar (By Gravatar)"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/classes/class-settings.php:
|
381 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
382 |
msgid "Display the BuddyPress user profile url"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin/classes/class-settings.php:
|
386 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
387 |
msgid "Display the UltimateMemebr user profile url"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/classes/class-settings.php:
|
391 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
392 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
393 |
msgid "Display the permalink"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/classes/class-settings.php:
|
397 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
398 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
399 |
msgid "Display the likes count number"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/classes/class-settings.php:
|
403 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
404 |
msgid "Display the post title"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/classes/class-settings.php:
|
408 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
409 |
msgid "Display the comment author name"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/classes/class-settings.php:
|
413 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
414 |
-
#: build/wp-ulike/admin/classes/tmp/
|
415 |
msgid "Posts"
|
416 |
msgstr "Publicaciones"
|
417 |
|
418 |
-
#: admin/classes/class-settings.php:
|
419 |
-
#: admin/classes/class-settings.php:
|
420 |
-
#: admin/classes/tmp/
|
421 |
-
#: admin/classes/tmp/
|
422 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
423 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
424 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
425 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
426 |
-
#: build/wp-ulike/admin/classes/tmp/
|
427 |
-
#: build/wp-ulike/admin/classes/tmp/
|
428 |
-
#: build/wp-ulike/admin/classes/tmp/
|
429 |
-
#: build/wp-ulike/admin/classes/tmp/
|
430 |
msgid "Automatic display"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/classes/class-settings.php:
|
434 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
435 |
msgid ""
|
436 |
"If you disable this option, you have to put manually this code on wordpress "
|
437 |
"while loop"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/classes/class-settings.php:
|
441 |
-
#: admin/classes/class-settings.php:
|
442 |
-
#: admin/classes/tmp/
|
443 |
-
#: admin/classes/tmp/
|
444 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
445 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
446 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
447 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
448 |
-
#: build/wp-ulike/admin/classes/tmp/
|
449 |
-
#: build/wp-ulike/admin/classes/tmp/
|
450 |
-
#: build/wp-ulike/admin/classes/tmp/
|
451 |
-
#: build/wp-ulike/admin/classes/tmp/
|
452 |
msgid "Users Like Box Template"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/classes/class-settings.php:
|
456 |
-
#: admin/classes/class-settings.php:
|
457 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
458 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
459 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
460 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
461 |
msgid "Default Template:"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin/classes/class-settings.php:
|
465 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
466 |
-
#: build/wp-ulike/admin/classes/tmp/
|
467 |
-
#: build/wp-ulike/inc/classes/class-ulike.php:
|
468 |
-
#: inc/classes/class-ulike.php:
|
469 |
msgid "Users who have LIKED this post:"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/classes/class-settings.php:
|
473 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
474 |
-
#: build/wp-ulike/admin/classes/tmp/
|
475 |
msgid "Comments"
|
476 |
msgstr "Comentarios"
|
477 |
|
478 |
-
#: admin/classes/class-settings.php:
|
479 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
480 |
msgid ""
|
481 |
"If you disable this option, you have to put manually this code on comments "
|
482 |
"text"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/classes/class-settings.php:
|
486 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
487 |
-
#: build/wp-ulike/admin/classes/tmp/
|
488 |
msgid "Users who have LIKED this comment:"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/classes/class-settings.php:
|
492 |
-
#: admin/classes/tmp/
|
493 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
494 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
495 |
-
#: build/wp-ulike/admin/classes/tmp/
|
496 |
msgid "BuddyPress"
|
497 |
msgstr "BuddyPress"
|
498 |
|
499 |
-
#: admin/classes/class-settings.php:
|
500 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
501 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
502 |
msgid ""
|
503 |
"If you disable this option, you have to put manually this code on buddypres "
|
504 |
"activities content"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/classes/class-settings.php:
|
508 |
-
#: admin/classes/tmp/
|
509 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
510 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
511 |
-
#: build/wp-ulike/admin/classes/tmp/
|
512 |
msgid "Users who have liked this activity:"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/classes/class-settings.php:
|
516 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
517 |
-
#: build/wp-ulike/admin/classes/tmp/
|
518 |
msgid "Post Activity Text"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/classes/class-settings.php:
|
522 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
523 |
-
#: build/wp-ulike/admin/classes/tmp/
|
524 |
msgid "Comment Activity Text"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/classes/class-settings.php:
|
528 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
529 |
-
#: build/wp-ulike/admin/classes/tmp/
|
530 |
msgid "bbPress"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/classes/class-settings.php:
|
534 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
535 |
msgid "For more information:"
|
536 |
msgstr "Para más información:"
|
537 |
|
538 |
-
#: admin/classes/class-settings.php:
|
539 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
540 |
msgid "Default settings have been reset."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/classes/class-settings.php:
|
544 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
545 |
msgid ""
|
546 |
"Do you really want to reset all these settings to their default values ?"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/classes/class-settings.php:
|
550 |
-
#: admin/classes/class-settings.php:
|
551 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
552 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
553 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
|
|
554 |
msgid "No options defined."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/classes/class-settings.php:
|
558 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
559 |
msgid "Select %s"
|
560 |
msgstr "Seleccionar %s"
|
561 |
|
562 |
-
#: admin/classes/class-settings.php:
|
563 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
564 |
msgid "Remove %s"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/classes/class-settings.php:
|
568 |
-
#: build/wp-ulike/admin/classes/class-settings.php:
|
569 |
msgid "No action defined."
|
570 |
msgstr ""
|
571 |
|
@@ -580,800 +580,824 @@ msgid ""
|
|
580 |
"An advanced widget that gives you all most liked records with different types"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: admin/classes/class-widget.php:
|
584 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
585 |
msgid "on"
|
586 |
msgstr "activa"
|
587 |
|
588 |
-
#: admin/classes/class-widget.php:
|
589 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
590 |
msgid "you haven't liked any post yet!"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/classes/class-widget.php:
|
594 |
-
#: admin/classes/tmp/
|
595 |
-
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:
|
596 |
-
#: build/wp-ulike/admin/classes/tmp/
|
597 |
-
#: build/wp-ulike/admin/classes/tmp/
|
598 |
-
#: build/wp-ulike/admin/classes/tmp/
|
599 |
#: build/wp-ulike/admin/stats.php:206
|
600 |
msgid "Like"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: admin/classes/class-widget.php:
|
604 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
605 |
msgid "Most Liked"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/classes/class-widget.php:
|
609 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
610 |
msgid "Title:"
|
611 |
msgstr "Título:"
|
612 |
|
613 |
-
#: admin/classes/class-widget.php:
|
614 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
615 |
msgid "Type:"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/classes/class-widget.php:
|
619 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
620 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
621 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
622 |
msgid "Most Liked Posts"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/classes/class-widget.php:
|
626 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
627 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
628 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
629 |
msgid "Most Liked Comments"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/classes/class-widget.php:
|
633 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
634 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
635 |
msgid "Most Liked Activities"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: admin/classes/class-widget.php:
|
639 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
640 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
641 |
msgid "Most Liked Topics"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/classes/class-widget.php:
|
645 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
646 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
647 |
msgid "Most Liked Users"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/classes/class-widget.php:
|
651 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
652 |
msgid "Last Posts Liked By User"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: admin/classes/class-widget.php:
|
656 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
|
|
|
|
|
|
|
|
|
|
657 |
msgid "Period:"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/classes/class-widget.php:
|
661 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
662 |
msgid "All The Times"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: admin/classes/class-widget.php:
|
666 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
667 |
msgid "Year"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: admin/classes/class-widget.php:
|
671 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
672 |
#: build/wp-ulike/admin/stats.php:154
|
673 |
msgid "Month"
|
674 |
msgstr "Mes"
|
675 |
|
676 |
-
#: admin/classes/class-widget.php:
|
677 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
678 |
#: build/wp-ulike/admin/stats.php:149
|
679 |
msgid "Week"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: admin/classes/class-widget.php:
|
683 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
684 |
#: build/wp-ulike/admin/stats.php:144
|
685 |
msgid "Yesterday"
|
686 |
msgstr "Ayer"
|
687 |
|
688 |
-
#: admin/classes/class-widget.php:
|
689 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
690 |
#: build/wp-ulike/admin/stats.php:139
|
691 |
msgid "Today"
|
692 |
msgstr "Hoy"
|
693 |
|
694 |
-
#: admin/classes/class-widget.php:
|
695 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
696 |
msgid "Style:"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: admin/classes/class-widget.php:
|
700 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
701 |
msgid "Simple"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: admin/classes/class-widget.php:
|
705 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
706 |
msgid "Title Trim (Length):"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: admin/classes/class-widget.php:
|
710 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
711 |
-
msgid "Number of items to show:"
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
#: admin/classes/class-widget.php:447
|
715 |
-
#: build/wp-ulike/admin/classes/class-widget.php:447
|
716 |
-
msgid "Thumbnail/Avatar size:"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: admin/classes/class-widget.php:453
|
720 |
-
#: build/wp-ulike/admin/classes/class-widget.php:453
|
721 |
msgid "Profile URL:"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: admin/classes/class-widget.php:
|
725 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
726 |
msgid "UltimateMember"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: admin/classes/class-widget.php:
|
730 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
731 |
msgid "Activate Like Counter"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: admin/classes/class-widget.php:
|
735 |
-
#: build/wp-ulike/admin/classes/class-widget.php:
|
736 |
msgid "Activate Thumbnail/Avatar"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: admin/classes/
|
740 |
-
#: build/wp-ulike/admin/classes/
|
|
|
|
|
|
|
|
|
|
|
741 |
msgid "General"
|
742 |
msgstr "General"
|
743 |
|
744 |
-
#: admin/classes/tmp/
|
745 |
-
#: build/wp-ulike/admin/classes/tmp/
|
746 |
msgid "Button Type"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: admin/classes/tmp/
|
750 |
-
#: build/wp-ulike/admin/classes/tmp/
|
751 |
msgid "Icon"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: admin/classes/tmp/
|
755 |
-
#: build/wp-ulike/admin/classes/tmp/
|
756 |
msgid "Text"
|
757 |
msgstr "Texto"
|
758 |
|
759 |
-
#: admin/classes/tmp/
|
760 |
-
#: build/wp-ulike/admin/classes/tmp/
|
761 |
-
#: build/wp-ulike/admin/classes/tmp/
|
762 |
msgid "Button Text"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: admin/classes/tmp/
|
766 |
-
#: admin/classes/tmp/
|
767 |
-
#: build/wp-ulike/admin/classes/tmp/
|
768 |
-
#: build/wp-ulike/admin/classes/tmp/
|
769 |
-
#: build/wp-ulike/admin/classes/tmp/
|
770 |
msgid "Unlike"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: admin/classes/tmp/
|
774 |
-
#: build/wp-ulike/admin/classes/tmp/
|
775 |
-
#: build/wp-ulike/admin/classes/tmp/
|
776 |
msgid "Button Icon"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: admin/classes/tmp/
|
780 |
-
#: admin/classes/tmp/
|
781 |
-
#: build/wp-ulike/admin/classes/tmp/
|
782 |
-
#: build/wp-ulike/admin/classes/tmp/
|
783 |
-
#: build/wp-ulike/admin/classes/tmp/
|
784 |
msgid "Best size: 16x16"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: admin/classes/tmp/
|
788 |
-
#: build/wp-ulike/admin/classes/tmp/
|
789 |
msgid "You have not permission to unlike"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: admin/classes/tmp/
|
793 |
-
#: build/wp-ulike/admin/classes/tmp/
|
794 |
msgid "Permission Text"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: admin/classes/tmp/
|
798 |
-
#: build/wp-ulike/admin/classes/tmp/
|
799 |
msgid "Users Login Type"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: admin/classes/tmp/
|
803 |
-
#: build/wp-ulike/admin/classes/tmp/
|
804 |
msgid "Alert Box"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: admin/classes/tmp/
|
808 |
-
#: build/wp-ulike/admin/classes/tmp/
|
809 |
msgid "Like Button"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: admin/classes/tmp/
|
813 |
-
#: build/wp-ulike/admin/classes/tmp/
|
814 |
msgid "You Should Login To Submit Your Like"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: admin/classes/tmp/
|
818 |
-
#: build/wp-ulike/admin/classes/tmp/
|
819 |
msgid "Users Login Text"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: admin/classes/tmp/
|
823 |
-
#: build/wp-ulike/admin/classes/tmp/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
824 |
msgid "Format Number"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: admin/classes/tmp/
|
828 |
-
#: admin/classes/tmp/
|
829 |
-
#: admin/classes/tmp/
|
830 |
-
#: admin/classes/tmp/
|
831 |
-
#: admin/classes/tmp/
|
832 |
-
#: admin/classes/tmp/
|
833 |
-
#: admin/classes/tmp/
|
834 |
-
#: admin/classes/tmp/
|
835 |
-
#: admin/classes/tmp/
|
836 |
-
#: admin/classes/tmp/
|
837 |
-
#: build/wp-ulike/admin/classes/tmp/
|
838 |
-
#: build/wp-ulike/admin/classes/tmp/
|
839 |
-
#: build/wp-ulike/admin/classes/tmp/
|
840 |
-
#: build/wp-ulike/admin/classes/tmp/
|
841 |
-
#: build/wp-ulike/admin/classes/tmp/
|
842 |
-
#: build/wp-ulike/admin/classes/tmp/
|
843 |
-
#: build/wp-ulike/admin/classes/tmp/
|
844 |
-
#: build/wp-ulike/admin/classes/tmp/
|
845 |
-
#: build/wp-ulike/admin/classes/tmp/
|
846 |
-
#: build/wp-ulike/admin/classes/tmp/
|
847 |
-
#: build/wp-ulike/admin/classes/tmp/
|
848 |
-
#: build/wp-ulike/admin/classes/tmp/
|
849 |
-
#: build/wp-ulike/admin/classes/tmp/
|
850 |
-
#: build/wp-ulike/admin/classes/tmp/
|
851 |
-
#: build/wp-ulike/admin/classes/tmp/
|
852 |
-
#: build/wp-ulike/admin/classes/tmp/
|
853 |
-
#: build/wp-ulike/admin/classes/tmp/
|
854 |
-
#: build/wp-ulike/admin/classes/tmp/
|
855 |
-
#: build/wp-ulike/admin/classes/tmp/
|
856 |
msgid "Activate"
|
857 |
msgstr "Activar"
|
858 |
|
859 |
-
#: admin/classes/tmp/
|
860 |
-
#: build/wp-ulike/admin/classes/tmp/
|
861 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: admin/classes/tmp/
|
865 |
-
#: build/wp-ulike/admin/classes/tmp/
|
866 |
#, fuzzy
|
867 |
msgid "Notifications"
|
868 |
msgstr "Acciones"
|
869 |
|
870 |
-
#: admin/classes/tmp/
|
871 |
-
#: build/wp-ulike/admin/classes/tmp/
|
872 |
msgid "Custom toast messages after each activity"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: admin/classes/tmp/
|
876 |
-
#: build/wp-ulike/admin/classes/tmp/
|
877 |
msgid "Thanks! You Liked This."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: admin/classes/tmp/
|
881 |
-
#: build/wp-ulike/admin/classes/tmp/
|
882 |
msgid "Liked Notice Message"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: admin/classes/tmp/
|
886 |
-
#: build/wp-ulike/admin/classes/tmp/
|
887 |
msgid "Sorry! You unliked this."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: admin/classes/tmp/
|
891 |
-
#: build/wp-ulike/admin/classes/tmp/
|
892 |
msgid "Unliked Notice Message"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: admin/classes/tmp/
|
896 |
-
#: admin/classes/tmp/
|
897 |
-
#: build/wp-ulike/admin/classes/tmp/
|
898 |
-
#: build/wp-ulike/admin/classes/tmp/
|
899 |
-
#: build/wp-ulike/admin/classes/tmp/
|
900 |
-
#: build/wp-ulike/admin/classes/tmp/
|
901 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
902 |
msgid "Themes"
|
903 |
msgstr "Temas"
|
904 |
|
905 |
-
#: admin/classes/tmp/
|
906 |
-
#: admin/classes/tmp/
|
907 |
-
#: build/wp-ulike/admin/classes/tmp/
|
908 |
-
#: build/wp-ulike/admin/classes/tmp/
|
909 |
-
#: build/wp-ulike/admin/classes/tmp/
|
910 |
-
#: build/wp-ulike/admin/classes/tmp/
|
911 |
msgid "Auto Display Position"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: admin/classes/tmp/
|
915 |
-
#: admin/classes/tmp/
|
916 |
-
#: build/wp-ulike/admin/classes/tmp/
|
917 |
-
#: build/wp-ulike/admin/classes/tmp/
|
918 |
-
#: build/wp-ulike/admin/classes/tmp/
|
919 |
msgid "Top of Content"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: admin/classes/tmp/
|
923 |
-
#: admin/classes/tmp/
|
924 |
-
#: build/wp-ulike/admin/classes/tmp/
|
925 |
-
#: build/wp-ulike/admin/classes/tmp/
|
926 |
-
#: build/wp-ulike/admin/classes/tmp/
|
927 |
msgid "Bottom of Content"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: admin/classes/tmp/
|
931 |
-
#: build/wp-ulike/admin/classes/tmp/
|
932 |
-
#: build/wp-ulike/admin/classes/tmp/
|
933 |
msgid "Top and Bottom"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: admin/classes/tmp/
|
937 |
-
#: build/wp-ulike/admin/classes/tmp/
|
938 |
msgid "Auto Display Filter"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: admin/classes/tmp/
|
942 |
-
#: build/wp-ulike/admin/classes/tmp/
|
943 |
-
msgid "Single Posts"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: admin/classes/tmp/settings.php:117
|
947 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:117
|
948 |
-
msgid "Pages"
|
949 |
-
msgstr "Páginas"
|
950 |
-
|
951 |
-
#: admin/classes/tmp/settings.php:118
|
952 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:118
|
953 |
-
msgid "Archives"
|
954 |
-
msgstr "Archives"
|
955 |
-
|
956 |
-
#: admin/classes/tmp/settings.php:119
|
957 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:119
|
958 |
-
msgid "Categories"
|
959 |
-
msgstr "Categorías"
|
960 |
-
|
961 |
-
#: admin/classes/tmp/settings.php:120
|
962 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:120
|
963 |
-
msgid "Search Results"
|
964 |
-
msgstr "Resultados de la búsqueda"
|
965 |
-
|
966 |
-
#: admin/classes/tmp/settings.php:121
|
967 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:121
|
968 |
-
msgid "Tags"
|
969 |
-
msgstr "Etiquetas"
|
970 |
-
|
971 |
-
#: admin/classes/tmp/settings.php:122
|
972 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:122
|
973 |
-
msgid "Author Page"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: admin/classes/tmp/settings.php:124
|
977 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:124
|
978 |
msgid "You can filter theses pages on auto display option."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: admin/classes/tmp/
|
982 |
-
#: build/wp-ulike/admin/classes/tmp/
|
983 |
msgid "Google Rich Snippets"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: admin/classes/tmp/
|
987 |
-
#: build/wp-ulike/admin/classes/tmp/
|
988 |
msgid "Add rich snippet for ratings in form of schema.org"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: admin/classes/tmp/
|
992 |
-
#: admin/classes/tmp/
|
993 |
-
#: build/wp-ulike/admin/classes/tmp/
|
994 |
-
#: build/wp-ulike/admin/classes/tmp/
|
995 |
-
#: build/wp-ulike/admin/classes/tmp/
|
996 |
-
#: build/wp-ulike/admin/classes/tmp/
|
997 |
msgid "Only registered Users"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: admin/classes/tmp/
|
1001 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1002 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: admin/classes/tmp/
|
1006 |
-
#: admin/classes/tmp/
|
1007 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1008 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1009 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1010 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1011 |
msgid "Do Not Log"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: admin/classes/tmp/
|
1015 |
-
#: admin/classes/tmp/
|
1016 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1017 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1018 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1019 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1020 |
msgid "Logged By Cookie"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: admin/classes/tmp/
|
1024 |
-
#: admin/classes/tmp/
|
1025 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1026 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1027 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1028 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1029 |
msgid "Logged By IP"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: admin/classes/tmp/
|
1033 |
-
#: admin/classes/tmp/
|
1034 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1035 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1036 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1037 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1038 |
-
msgid "Logged By Cookie & IP"
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#: admin/classes/tmp/settings.php:149 admin/classes/tmp/settings.php:237
|
1042 |
-
#: admin/classes/tmp/settings.php:388 admin/classes/tmp/settings.php:504
|
1043 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:149
|
1044 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:237
|
1045 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:388
|
1046 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:504
|
1047 |
msgid "Logged By Username"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: admin/classes/tmp/
|
1051 |
-
#: admin/classes/tmp/
|
1052 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1053 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1054 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1055 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1056 |
msgid "Show Liked Users Box"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: admin/classes/tmp/
|
1060 |
-
#: admin/classes/tmp/
|
1061 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1062 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1063 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1064 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1065 |
msgid ""
|
1066 |
"Active this option to show liked users avatars in the bottom of button like."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: admin/classes/tmp/
|
1070 |
-
#: admin/classes/tmp/
|
1071 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1072 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1073 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1074 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1075 |
msgid "Size of Gravatars"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: admin/classes/tmp/
|
1079 |
-
#: admin/classes/tmp/
|
1080 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1081 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1082 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1083 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1084 |
msgid "Size of Gravatars to return (max is 512)"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: admin/classes/tmp/
|
1088 |
-
#: admin/classes/tmp/
|
1089 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1090 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1091 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1092 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1093 |
msgid "Number Of The Users"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: admin/classes/tmp/
|
1097 |
-
#: admin/classes/tmp/
|
1098 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1099 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1100 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1101 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1102 |
msgid "The number of users to show in the users liked box"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: admin/classes/tmp/
|
1106 |
-
#: admin/classes/tmp/
|
1107 |
-
#: admin/classes/tmp/
|
1108 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1109 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1110 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1111 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1112 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1113 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1114 |
msgid "Allowed Variables:"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: admin/classes/tmp/
|
1118 |
-
#: admin/classes/tmp/
|
1119 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1120 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1121 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1122 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1123 |
msgid "Delete All Logs"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: admin/classes/tmp/
|
1127 |
-
#: admin/classes/tmp/
|
1128 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1129 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1130 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1131 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1132 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: admin/classes/tmp/
|
1136 |
-
#: admin/classes/tmp/
|
1137 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1138 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1139 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1140 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1141 |
msgid "Delete All Data"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: admin/classes/tmp/
|
1145 |
-
#: admin/classes/tmp/
|
1146 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1147 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1148 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1149 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1150 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: admin/classes/tmp/
|
1154 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1155 |
msgid ""
|
1156 |
"<strong>Only</strong> registered users have permission to like comments."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: admin/classes/tmp/
|
1160 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1161 |
-
msgid "Customize"
|
1162 |
-
msgstr "Personalizar"
|
1163 |
-
|
1164 |
-
#: admin/classes/tmp/settings.php:290
|
1165 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:290
|
1166 |
-
msgid "Custom Style"
|
1167 |
-
msgstr ""
|
1168 |
-
|
1169 |
-
#: admin/classes/tmp/settings.php:295
|
1170 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:295
|
1171 |
-
msgid "Active this option to see the custom style settings."
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: admin/classes/tmp/settings.php:299
|
1175 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:299
|
1176 |
-
msgid "Button style"
|
1177 |
-
msgstr ""
|
1178 |
-
|
1179 |
-
#: admin/classes/tmp/settings.php:300 admin/classes/tmp/settings.php:313
|
1180 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:300
|
1181 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:313
|
1182 |
-
msgid "Background"
|
1183 |
-
msgstr "Fondo"
|
1184 |
-
|
1185 |
-
#: admin/classes/tmp/settings.php:304 admin/classes/tmp/settings.php:317
|
1186 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:304
|
1187 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:317
|
1188 |
-
msgid "Border Color"
|
1189 |
-
msgstr "Color del borde"
|
1190 |
-
|
1191 |
-
#: admin/classes/tmp/settings.php:308 admin/classes/tmp/settings.php:321
|
1192 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:308
|
1193 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:321
|
1194 |
-
msgid "Text Color"
|
1195 |
-
msgstr "Color del texto"
|
1196 |
-
|
1197 |
-
#: admin/classes/tmp/settings.php:312
|
1198 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:312
|
1199 |
-
msgid "Counter Style"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: admin/classes/tmp/settings.php:325
|
1203 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:325
|
1204 |
-
msgid "Loading Animation"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: admin/classes/tmp/settings.php:330
|
1208 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:330
|
1209 |
-
#, fuzzy
|
1210 |
-
msgid "Custom CSS"
|
1211 |
-
msgstr "Personalizar"
|
1212 |
-
|
1213 |
-
#: admin/classes/tmp/settings.php:361
|
1214 |
-
#: build/wp-ulike/admin/classes/tmp/settings.php:361
|
1215 |
msgid "Activity Content"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: admin/classes/tmp/
|
1219 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1220 |
msgid "Activity Meta"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: admin/classes/tmp/
|
1224 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1225 |
msgid "Activity Comment"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: admin/classes/tmp/
|
1229 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1230 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: admin/classes/tmp/
|
1234 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1235 |
msgid ""
|
1236 |
"<strong>Only</strong> registered users have permission to like activities."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: admin/classes/tmp/
|
1240 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1241 |
msgid "BuddyPress Activity"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: admin/classes/tmp/
|
1245 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1246 |
msgid "insert new likes in buddyPress activity page"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: admin/classes/tmp/
|
1250 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1251 |
msgid "BuddyPress Custom Notification"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: admin/classes/tmp/
|
1255 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1256 |
msgid "Sends out notifications when you get a like from someone"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: admin/classes/tmp/
|
1260 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1261 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: admin/classes/tmp/
|
1265 |
-
#: build/wp-ulike/admin/classes/tmp/
|
1266 |
msgid "Users who have liked this topic:"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: admin/
|
1270 |
-
#:
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
#:
|
1275 |
-
#: build/wp-ulike/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1276 |
msgid "Logs"
|
1277 |
msgstr "Registros"
|
1278 |
|
1279 |
-
#: admin/logs.php:
|
1280 |
msgid "Are you sure to remove this item?!"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: admin/logs.php:
|
1284 |
-
#: build/wp-ulike/admin/logs.php:
|
1285 |
-
#: build/wp-ulike/admin/logs.php:
|
1286 |
msgid "WP ULike Logs"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: admin/logs.php:
|
1290 |
-
#: build/wp-ulike/admin/logs.php:
|
1291 |
-
#: build/wp-ulike/admin/logs.php:
|
1292 |
msgid "ID"
|
1293 |
msgstr "ID"
|
1294 |
|
1295 |
-
#: admin/logs.php:
|
1296 |
-
#: build/wp-ulike/admin/logs.php:
|
1297 |
-
#: build/wp-ulike/admin/logs.php:
|
1298 |
msgid "Username"
|
1299 |
msgstr "Usuario"
|
1300 |
|
1301 |
-
#: admin/logs.php:
|
1302 |
-
#: build/wp-ulike/admin/logs.php:
|
1303 |
-
#: build/wp-ulike/admin/logs.php:
|
1304 |
msgid "Status"
|
1305 |
msgstr "Estado"
|
1306 |
|
1307 |
-
#: admin/logs.php:
|
1308 |
msgid "Post ID"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: admin/logs.php:
|
1312 |
msgid "Post Title"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: admin/logs.php:
|
1316 |
-
#: build/wp-ulike/admin/logs.php:
|
1317 |
-
#: build/wp-ulike/admin/logs.php:
|
1318 |
msgid "Date / Time"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: admin/logs.php:
|
1322 |
-
#: build/wp-ulike/admin/logs.php:
|
1323 |
-
#: build/wp-ulike/admin/logs.php:
|
1324 |
msgid "IP"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: admin/logs.php:
|
1328 |
-
#: build/wp-ulike/admin/logs.php:
|
1329 |
-
#: build/wp-ulike/admin/logs.php:
|
1330 |
msgid "Actions"
|
1331 |
msgstr "Acciones"
|
1332 |
|
1333 |
-
#: admin/logs.php:
|
1334 |
-
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:
|
1335 |
-
#: build/wp-ulike/admin/logs.php:
|
1336 |
-
#: build/wp-ulike/admin/logs.php:
|
1337 |
msgid "Guest User"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: admin/logs.php:
|
1341 |
-
#: build/wp-ulike/admin/logs.php:
|
1342 |
-
#: build/wp-ulike/admin/logs.php:
|
1343 |
msgid ""
|
1344 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1345 |
"you don't have any data on this table)"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: admin/logs.php:
|
1349 |
msgid "Comment ID"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: admin/logs.php:
|
1353 |
msgid "Comment Author"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: admin/logs.php:
|
1357 |
msgid "Comment Text"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: admin/logs.php:
|
1361 |
msgid "Activity ID"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: admin/logs.php:
|
1365 |
msgid "Permalink"
|
1366 |
msgstr "Enlace permanente"
|
1367 |
|
1368 |
-
#: admin/logs.php:
|
1369 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: admin/logs.php:
|
1373 |
msgid "Topic ID"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: admin/logs.php:
|
1377 |
msgid "Topic Title"
|
1378 |
msgstr ""
|
1379 |
|
@@ -1494,90 +1518,90 @@ msgstr "Bienvenido"
|
|
1494 |
msgid "Days"
|
1495 |
msgstr "Días"
|
1496 |
|
1497 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1498 |
-
#: inc/classes/class-mycred.php:
|
1499 |
msgid "Points for Liking content"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1503 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1504 |
-
#: inc/classes/class-mycred.php:
|
1505 |
msgid "Limit"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1509 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1510 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1511 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1512 |
-
#: inc/classes/class-mycred.php:
|
1513 |
-
#: inc/classes/class-mycred.php:
|
1514 |
msgid "Log template"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1518 |
-
#: inc/classes/class-mycred.php:
|
1519 |
msgid "Points for Author Who Get Liked"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1523 |
-
#: inc/classes/class-mycred.php:
|
1524 |
msgid "Points for unliking content"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: build/wp-ulike/inc/classes/class-mycred.php:
|
1528 |
-
#: inc/classes/class-mycred.php:
|
1529 |
msgid "Points for Author Who Get Unliked"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1533 |
msgid "WP ULike Activity"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1537 |
msgid "Likes"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1541 |
msgid "You have a new like from"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1545 |
msgid ""
|
1546 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1547 |
"WordPress, bbPress, BuddyPress & ..."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1551 |
msgid "Liking Content"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1555 |
msgid "Liked Content"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1559 |
msgid "Unliking Content"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1563 |
msgid "Unliked Content"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1567 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1568 |
-
#: inc/wp-functions.php:
|
1569 |
msgid "Recent Posts Liked"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1573 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1574 |
-
#: inc/wp-functions.php:
|
1575 |
msgid "Recent Comments Liked"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1579 |
-
#: build/wp-ulike/inc/wp-functions.php:
|
1580 |
-
#: inc/wp-functions.php:
|
1581 |
msgid "This user has not made any likes."
|
1582 |
msgstr ""
|
1583 |
|
@@ -1685,41 +1709,45 @@ msgstr ""
|
|
1685 |
msgid "Downvote"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1689 |
-
#: inc/wp-ulike.php:
|
1690 |
msgid "You need to login in order to like this post: "
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1694 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1695 |
-
#: inc/wp-ulike.php:
|
1696 |
-
#: inc/wp-ulike.php:
|
1697 |
msgid "click here"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1701 |
msgid "You need to login in order to like this comment: "
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
1705 |
msgid "You need to login in order to like this activity: "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: build/wp-ulike/inc/wp-ulike.php:
|
|
|
|
|
|
|
|
|
1709 |
msgid "Error: This Method Is Not Exist!"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: build/wp-ulike/wp-ulike.php:
|
1713 |
#, fuzzy
|
1714 |
msgid "Settings"
|
1715 |
msgstr "Salvar Ajustes"
|
1716 |
|
1717 |
-
#: build/wp-ulike/wp-ulike.php:
|
1718 |
#, fuzzy
|
1719 |
msgid "Statistics"
|
1720 |
msgstr "Estado"
|
1721 |
|
1722 |
-
#: build/wp-ulike/wp-ulike.php:
|
1723 |
msgid "About"
|
1724 |
msgstr ""
|
1725 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP ULike\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
7 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
8 |
"PO-Revision-Date: 2015-05-21 11:28+0330\n"
|
9 |
"Last-Translator: Alimir <info@alimir.ir>\n"
|
10 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-ulike/"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPath-1: ..\n"
|
23 |
|
24 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Welcome to WP ULike"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
29 |
msgid ""
|
30 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
31 |
"powerful version yet."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
35 |
#: build/wp-ulike/admin/stats.php:38
|
36 |
msgid "Visit our homepage"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
40 |
msgid "Version"
|
41 |
msgstr "Versión"
|
42 |
|
43 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
44 |
msgid "Getting Started"
|
45 |
msgstr "Cómo empezar"
|
46 |
|
47 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
48 |
msgid "Credits"
|
49 |
msgstr "Créditos"
|
50 |
|
51 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
52 |
+
#: build/wp-ulike/admin/about.php:40
|
53 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
54 |
#: build/wp-ulike/admin/stats.php:52
|
55 |
msgid "Support"
|
56 |
msgstr "Soporte"
|
57 |
|
58 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
59 |
+
#: build/wp-ulike/admin/about.php:41
|
60 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
61 |
#: build/wp-ulike/admin/stats.php:53
|
62 |
msgid "FAQ"
|
63 |
msgstr "FAQ"
|
64 |
|
65 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
66 |
msgid "Reviews"
|
67 |
msgstr "Revisiones"
|
68 |
|
69 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
70 |
msgid "Introducing WP ULike"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
74 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
75 |
#: build/wp-ulike/admin/stats.php:37
|
76 |
msgid "About WP ULike"
|
77 |
msgstr ""
|
84 |
"options."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin/about.php:76 build/wp-ulike/admin/about.php:76
|
88 |
msgid "WP Ulike Extension"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/about.php:77 build/wp-ulike/admin/about.php:77
|
92 |
msgid ""
|
93 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
94 |
"activities & bbPress Topics."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/about.php:83 build/wp-ulike/admin/about.php:83
|
98 |
msgid "Added More Than 20 Language Files"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin/about.php:84 build/wp-ulike/admin/about.php:84
|
102 |
msgid ""
|
103 |
"WP ULike is already translated into +20 languages, with more always in "
|
104 |
"progress."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/about.php:90 build/wp-ulike/admin/about.php:90
|
108 |
msgid "User Profile Links"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/about.php:91 build/wp-ulike/admin/about.php:91
|
112 |
msgid ""
|
113 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
114 |
"UltimateMember plugins."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/about.php:97 build/wp-ulike/admin/about.php:97
|
118 |
msgid "New Themes And Styles"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin/about.php:98 build/wp-ulike/admin/about.php:98
|
122 |
msgid ""
|
123 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
124 |
"customize them by your taste."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/about.php:104 build/wp-ulike/admin/about.php:104
|
128 |
msgid "myCRED Points Support"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/about.php:105 build/wp-ulike/admin/about.php:105
|
132 |
msgid ""
|
133 |
"myCRED is an adaptive points management system that lets you award / charge "
|
134 |
"your users for interacting with your WordPress."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin/about.php:111 admin/stats.php:176 admin/stats.php:395
|
138 |
+
#: build/wp-ulike/admin/about.php:111 build/wp-ulike/admin/stats.php:176
|
139 |
#: build/wp-ulike/admin/stats.php:395
|
140 |
msgid "Likers World Map"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin/about.php:112 build/wp-ulike/admin/about.php:112
|
144 |
msgid ""
|
145 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
146 |
"likers by their country in the world map & Top Liker widget."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin/about.php:118 admin/admin.php:194 admin/stats.php:24
|
150 |
+
#: build/wp-ulike/admin/about.php:118 build/wp-ulike/admin/admin.php:194
|
151 |
#: build/wp-ulike/admin/stats.php:24
|
152 |
msgid "WP ULike Statistics"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin/about.php:118 admin/classes/tmp/options.php:67
|
156 |
+
#: admin/classes/tmp/options.php:137 build/wp-ulike/admin/about.php:118
|
157 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:67
|
158 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:137
|
159 |
msgid "Home"
|
160 |
msgstr "Inicio"
|
161 |
|
162 |
+
#: admin/about.php:118 build/wp-ulike/admin/about.php:118
|
163 |
msgid "OR"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin/about.php:118 admin/admin.php:73 build/wp-ulike/admin/about.php:118
|
167 |
+
#: build/wp-ulike/admin/admin.php:73
|
168 |
msgid "WP ULike Settings"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin/about.php:124 build/wp-ulike/admin/about.php:124
|
172 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/about.php:125 build/wp-ulike/admin/about.php:125
|
176 |
msgid "Project Leaders"
|
177 |
msgstr "Líderes de proyecto"
|
178 |
|
179 |
+
#: admin/about.php:130 build/wp-ulike/admin/about.php:130
|
180 |
msgid "Project Lead & Developer"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin/about.php:134 build/wp-ulike/admin/about.php:134
|
184 |
msgid "Translations"
|
185 |
msgstr "Traducciones"
|
186 |
|
187 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
188 |
msgid "Would you like to help translate the plugin into more languages?"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin/about.php:173 build/wp-ulike/admin/about.php:173
|
192 |
msgid "Join our WP-Translations Community"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/about.php:175 build/wp-ulike/admin/about.php:175
|
196 |
msgid "Other Plugins"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/about.php:194 build/wp-ulike/admin/about.php:194
|
200 |
+
msgid "Like this plugin?"
|
201 |
+
msgstr "¿Te gusta este plugin?"
|
202 |
+
|
203 |
+
#: admin/about.php:198 admin/admin.php:309 build/wp-ulike/admin/about.php:198
|
204 |
+
#: build/wp-ulike/admin/admin.php:309
|
205 |
+
msgid ""
|
206 |
+
"It's great to see that you've been using the WP ULike plugin for a while "
|
207 |
+
"now. Hopefully you're happy with it! If so, would you consider leaving "
|
208 |
+
"a positive review? It really helps to support the plugin and helps others to "
|
209 |
+
"discover it too!"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/about.php:200 admin/admin.php:311 build/wp-ulike/admin/about.php:200
|
213 |
+
#: build/wp-ulike/admin/admin.php:311
|
214 |
+
msgid "Sure, I'd love to!"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: admin/admin.php:40 build/wp-ulike/admin/admin.php:40
|
218 |
msgid ""
|
219 |
" Thank you for choosing <a href=\"%s\" title=\"Wordpress ULike\" target="
|
220 |
"\"_blank\">WP ULike</a>. Created by <a href=\"%s\" title=\"Wordpress ULike\" "
|
225 |
msgid "WP ULike"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/admin.php:85 build/wp-ulike/admin/admin.php:85
|
229 |
msgid "Settings saved."
|
230 |
msgstr "Ajustes guardados."
|
231 |
|
232 |
+
#: admin/admin.php:122 admin/admin.php:157 build/wp-ulike/admin/admin.php:122
|
233 |
+
#: build/wp-ulike/admin/admin.php:157
|
234 |
msgid "Failed! An Error Has Occurred While Deleting All ULike Logs/Data"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/admin.php:124 admin/admin.php:159 build/wp-ulike/admin/admin.php:124
|
238 |
+
#: build/wp-ulike/admin/admin.php:159
|
239 |
msgid "Success! All ULike Logs/Data Have Been Deleted"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/admin.php:178 admin/logs.php:144 admin/stats.php:43
|
243 |
+
#: build/wp-ulike/admin/admin.php:178 build/wp-ulike/admin/logs.php:144
|
244 |
#: build/wp-ulike/admin/stats.php:43
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin/admin.php:182 admin/logs.php:266 admin/stats.php:44
|
249 |
+
#: build/wp-ulike/admin/admin.php:182 build/wp-ulike/admin/logs.php:266
|
250 |
#: build/wp-ulike/admin/stats.php:44
|
251 |
msgid "Comment Likes Logs"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: admin/admin.php:186 admin/logs.php:394 admin/stats.php:45
|
255 |
+
#: build/wp-ulike/admin/admin.php:186 build/wp-ulike/admin/logs.php:394
|
256 |
#: build/wp-ulike/admin/stats.php:45
|
257 |
msgid "Activity Likes Logs"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/admin.php:190 admin/logs.php:517 admin/stats.php:46
|
261 |
+
#: build/wp-ulike/admin/admin.php:190 build/wp-ulike/admin/logs.php:517
|
262 |
#: build/wp-ulike/admin/stats.php:46
|
263 |
msgid "Topics Likes Logs"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/admin.php:227 build/wp-ulike/admin/admin.php:227
|
267 |
#: build/wp-ulike/inc/wp-strings.php:25 inc/wp-strings.php:25
|
268 |
msgid "Default"
|
269 |
msgstr "Por defecto"
|
270 |
|
271 |
+
#: admin/admin.php:232 admin/classes/class-widget.php:567
|
272 |
+
#: build/wp-ulike/admin/admin.php:232
|
273 |
+
#: build/wp-ulike/admin/classes/class-widget.php:567
|
274 |
msgid "Heart"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/admin.php:237 build/wp-ulike/admin/admin.php:237
|
278 |
msgid "Robeen"
|
279 |
msgstr ""
|
280 |
|
300 |
msgid "Similar Settings"
|
301 |
msgstr "Salvar Ajustes"
|
302 |
|
303 |
+
#: admin/classes/class-settings.php:48 admin/classes/tmp/options.php:165
|
304 |
+
#: admin/classes/tmp/options.php:250 admin/classes/tmp/options.php:341
|
305 |
+
#: admin/classes/tmp/options.php:451
|
306 |
#: build/wp-ulike/admin/classes/class-settings.php:48
|
307 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:165
|
308 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:250
|
309 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:341
|
310 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:451
|
311 |
msgid "Logging Method"
|
312 |
msgstr ""
|
313 |
|
337 |
#: admin/classes/class-settings.php:53
|
338 |
#: build/wp-ulike/admin/classes/class-settings.php:53
|
339 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
"If you select <strong>\"Logged By Username\"</strong> method: data logs only "
|
341 |
"is saved for registered users, the convey of like/dislike condition will "
|
342 |
"check by username, There is no permission for guest users to unlike/undislike"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin/classes/class-settings.php:56
|
346 |
+
#: build/wp-ulike/admin/classes/class-settings.php:56
|
347 |
msgid "Template Variables"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/classes/class-settings.php:58
|
351 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
352 |
msgid "Start the loop of logs"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin/classes/class-settings.php:58 admin/classes/class-settings.php:59
|
356 |
+
#: build/wp-ulike/admin/classes/class-settings.php:58
|
357 |
#: build/wp-ulike/admin/classes/class-settings.php:59
|
|
|
358 |
msgid "required"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/classes/class-settings.php:59
|
362 |
+
#: build/wp-ulike/admin/classes/class-settings.php:59
|
363 |
msgid "End of the while loop"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin/classes/class-settings.php:60 admin/classes/class-settings.php:64
|
367 |
+
#: admin/classes/class-settings.php:68
|
368 |
+
#: build/wp-ulike/admin/classes/class-settings.php:60
|
369 |
+
#: build/wp-ulike/admin/classes/class-settings.php:64
|
370 |
+
#: build/wp-ulike/admin/classes/class-settings.php:68
|
371 |
msgid "Display the liker name"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin/classes/class-settings.php:61
|
375 |
+
#: build/wp-ulike/admin/classes/class-settings.php:61
|
376 |
msgid "Display the liker avatar (By Gravatar)"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/classes/class-settings.php:62
|
380 |
+
#: build/wp-ulike/admin/classes/class-settings.php:62
|
381 |
msgid "Display the BuddyPress user profile url"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin/classes/class-settings.php:63
|
385 |
+
#: build/wp-ulike/admin/classes/class-settings.php:63
|
386 |
msgid "Display the UltimateMemebr user profile url"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/classes/class-settings.php:65 admin/classes/class-settings.php:69
|
390 |
+
#: build/wp-ulike/admin/classes/class-settings.php:65
|
391 |
+
#: build/wp-ulike/admin/classes/class-settings.php:69
|
392 |
msgid "Display the permalink"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/classes/class-settings.php:66 admin/classes/class-settings.php:71
|
396 |
+
#: build/wp-ulike/admin/classes/class-settings.php:66
|
397 |
+
#: build/wp-ulike/admin/classes/class-settings.php:71
|
398 |
msgid "Display the likes count number"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/classes/class-settings.php:67
|
402 |
+
#: build/wp-ulike/admin/classes/class-settings.php:67
|
403 |
msgid "Display the post title"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin/classes/class-settings.php:70
|
407 |
+
#: build/wp-ulike/admin/classes/class-settings.php:70
|
408 |
msgid "Display the comment author name"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/classes/class-settings.php:79 admin/classes/tmp/options.php:109
|
412 |
+
#: build/wp-ulike/admin/classes/class-settings.php:79
|
413 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:109
|
414 |
msgid "Posts"
|
415 |
msgstr "Publicaciones"
|
416 |
|
417 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
418 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
419 |
+
#: admin/classes/tmp/options.php:120 admin/classes/tmp/options.php:227
|
420 |
+
#: admin/classes/tmp/options.php:312 admin/classes/tmp/options.php:429
|
421 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
422 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
423 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
424 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
425 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:120
|
426 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:227
|
427 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:312
|
428 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:429
|
429 |
msgid "Automatic display"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/classes/class-settings.php:81
|
433 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
434 |
msgid ""
|
435 |
"If you disable this option, you have to put manually this code on wordpress "
|
436 |
"while loop"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
440 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
441 |
+
#: admin/classes/tmp/options.php:195 admin/classes/tmp/options.php:280
|
442 |
+
#: admin/classes/tmp/options.php:371 admin/classes/tmp/options.php:481
|
443 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
444 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
445 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
446 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
447 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:195
|
448 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:280
|
449 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:371
|
450 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:481
|
451 |
msgid "Users Like Box Template"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/classes/class-settings.php:81 admin/classes/class-settings.php:90
|
455 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
456 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
457 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
458 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
459 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
460 |
msgid "Default Template:"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/classes/class-settings.php:81 admin/classes/tmp/options.php:194
|
464 |
+
#: build/wp-ulike/admin/classes/class-settings.php:81
|
465 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:194
|
466 |
+
#: build/wp-ulike/inc/classes/class-ulike.php:588
|
467 |
+
#: inc/classes/class-ulike.php:607
|
468 |
msgid "Users who have LIKED this post:"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/classes/class-settings.php:88 admin/classes/tmp/options.php:216
|
472 |
+
#: build/wp-ulike/admin/classes/class-settings.php:88
|
473 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:216
|
474 |
msgid "Comments"
|
475 |
msgstr "Comentarios"
|
476 |
|
477 |
+
#: admin/classes/class-settings.php:90
|
478 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
479 |
msgid ""
|
480 |
"If you disable this option, you have to put manually this code on comments "
|
481 |
"text"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin/classes/class-settings.php:90 admin/classes/tmp/options.php:279
|
485 |
+
#: build/wp-ulike/admin/classes/class-settings.php:90
|
486 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:279
|
487 |
msgid "Users who have LIKED this comment:"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/classes/class-settings.php:96 admin/classes/class-widget.php:580
|
491 |
+
#: admin/classes/tmp/options.php:301
|
492 |
+
#: build/wp-ulike/admin/classes/class-settings.php:96
|
493 |
+
#: build/wp-ulike/admin/classes/class-widget.php:580
|
494 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:301
|
495 |
msgid "BuddyPress"
|
496 |
msgstr "BuddyPress"
|
497 |
|
498 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
499 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
500 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
501 |
msgid ""
|
502 |
"If you disable this option, you have to put manually this code on buddypres "
|
503 |
"activities content"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/classes/class-settings.php:98 admin/classes/class-settings.php:106
|
507 |
+
#: admin/classes/tmp/options.php:370
|
508 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
509 |
+
#: build/wp-ulike/admin/classes/class-settings.php:106
|
510 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:370
|
511 |
msgid "Users who have liked this activity:"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:391
|
515 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
516 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:391
|
517 |
msgid "Post Activity Text"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin/classes/class-settings.php:98 admin/classes/tmp/options.php:397
|
521 |
+
#: build/wp-ulike/admin/classes/class-settings.php:98
|
522 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:397
|
523 |
msgid "Comment Activity Text"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/classes/class-settings.php:104 admin/classes/tmp/options.php:418
|
527 |
+
#: build/wp-ulike/admin/classes/class-settings.php:104
|
528 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:418
|
529 |
msgid "bbPress"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/classes/class-settings.php:111
|
533 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
534 |
msgid "For more information:"
|
535 |
msgstr "Para más información:"
|
536 |
|
537 |
+
#: admin/classes/class-settings.php:170
|
538 |
+
#: build/wp-ulike/admin/classes/class-settings.php:170
|
539 |
msgid "Default settings have been reset."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/classes/class-settings.php:244
|
543 |
+
#: build/wp-ulike/admin/classes/class-settings.php:244
|
544 |
msgid ""
|
545 |
"Do you really want to reset all these settings to their default values ?"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/classes/class-settings.php:309 admin/classes/class-settings.php:320
|
549 |
+
#: admin/classes/class-settings.php:333 admin/classes/class-settings.php:360
|
550 |
+
#: build/wp-ulike/admin/classes/class-settings.php:309
|
551 |
+
#: build/wp-ulike/admin/classes/class-settings.php:320
|
552 |
+
#: build/wp-ulike/admin/classes/class-settings.php:333
|
553 |
+
#: build/wp-ulike/admin/classes/class-settings.php:360
|
554 |
msgid "No options defined."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/classes/class-settings.php:347
|
558 |
+
#: build/wp-ulike/admin/classes/class-settings.php:347
|
559 |
msgid "Select %s"
|
560 |
msgstr "Seleccionar %s"
|
561 |
|
562 |
+
#: admin/classes/class-settings.php:348
|
563 |
+
#: build/wp-ulike/admin/classes/class-settings.php:348
|
564 |
msgid "Remove %s"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin/classes/class-settings.php:372
|
568 |
+
#: build/wp-ulike/admin/classes/class-settings.php:372
|
569 |
msgid "No action defined."
|
570 |
msgstr ""
|
571 |
|
580 |
"An advanced widget that gives you all most liked records with different types"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/classes/class-widget.php:130
|
584 |
+
#: build/wp-ulike/admin/classes/class-widget.php:130
|
585 |
msgid "on"
|
586 |
msgstr "activa"
|
587 |
|
588 |
+
#: admin/classes/class-widget.php:191
|
589 |
+
#: build/wp-ulike/admin/classes/class-widget.php:191
|
590 |
msgid "you haven't liked any post yet!"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/classes/class-widget.php:393 admin/classes/tmp/options.php:29
|
594 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:38
|
595 |
+
#: admin/stats.php:206 build/wp-ulike/admin/classes/class-widget.php:393
|
596 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:29
|
597 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
598 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
599 |
#: build/wp-ulike/admin/stats.php:206
|
600 |
msgid "Like"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/classes/class-widget.php:515
|
604 |
+
#: build/wp-ulike/admin/classes/class-widget.php:515
|
605 |
msgid "Most Liked"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/classes/class-widget.php:530
|
609 |
+
#: build/wp-ulike/admin/classes/class-widget.php:530
|
610 |
msgid "Title:"
|
611 |
msgstr "Título:"
|
612 |
|
613 |
+
#: admin/classes/class-widget.php:535
|
614 |
+
#: build/wp-ulike/admin/classes/class-widget.php:535
|
615 |
msgid "Type:"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/classes/class-widget.php:537 admin/stats.php:219 admin/stats.php:397
|
619 |
+
#: build/wp-ulike/admin/classes/class-widget.php:537
|
620 |
#: build/wp-ulike/admin/stats.php:219 build/wp-ulike/admin/stats.php:397
|
621 |
#: build/wp-ulike/inc/wp-strings.php:26 inc/wp-strings.php:26
|
622 |
msgid "Most Liked Posts"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/classes/class-widget.php:538 admin/stats.php:229 admin/stats.php:398
|
626 |
+
#: build/wp-ulike/admin/classes/class-widget.php:538
|
627 |
#: build/wp-ulike/admin/stats.php:229 build/wp-ulike/admin/stats.php:398
|
628 |
#: build/wp-ulike/inc/wp-strings.php:27 inc/wp-strings.php:27
|
629 |
msgid "Most Liked Comments"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/classes/class-widget.php:539 admin/stats.php:239 admin/stats.php:399
|
633 |
+
#: build/wp-ulike/admin/classes/class-widget.php:539
|
634 |
#: build/wp-ulike/admin/stats.php:239 build/wp-ulike/admin/stats.php:399
|
635 |
msgid "Most Liked Activities"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/classes/class-widget.php:540 admin/stats.php:249 admin/stats.php:400
|
639 |
+
#: build/wp-ulike/admin/classes/class-widget.php:540
|
640 |
#: build/wp-ulike/admin/stats.php:249 build/wp-ulike/admin/stats.php:400
|
641 |
msgid "Most Liked Topics"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/classes/class-widget.php:541
|
645 |
+
#: build/wp-ulike/admin/classes/class-widget.php:541
|
646 |
#: build/wp-ulike/inc/wp-strings.php:28 inc/wp-strings.php:28
|
647 |
msgid "Most Liked Users"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/classes/class-widget.php:542
|
651 |
+
#: build/wp-ulike/admin/classes/class-widget.php:542
|
652 |
msgid "Last Posts Liked By User"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/classes/class-widget.php:547
|
656 |
+
#: build/wp-ulike/admin/classes/class-widget.php:547
|
657 |
+
msgid "Number of items to show:"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: admin/classes/class-widget.php:552
|
661 |
+
#: build/wp-ulike/admin/classes/class-widget.php:552
|
662 |
msgid "Period:"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: admin/classes/class-widget.php:554
|
666 |
+
#: build/wp-ulike/admin/classes/class-widget.php:554
|
667 |
msgid "All The Times"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: admin/classes/class-widget.php:555
|
671 |
+
#: build/wp-ulike/admin/classes/class-widget.php:555
|
672 |
msgid "Year"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: admin/classes/class-widget.php:556 admin/stats.php:154
|
676 |
+
#: build/wp-ulike/admin/classes/class-widget.php:556
|
677 |
#: build/wp-ulike/admin/stats.php:154
|
678 |
msgid "Month"
|
679 |
msgstr "Mes"
|
680 |
|
681 |
+
#: admin/classes/class-widget.php:557 admin/stats.php:149
|
682 |
+
#: build/wp-ulike/admin/classes/class-widget.php:557
|
683 |
#: build/wp-ulike/admin/stats.php:149
|
684 |
msgid "Week"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: admin/classes/class-widget.php:558 admin/stats.php:144
|
688 |
+
#: build/wp-ulike/admin/classes/class-widget.php:558
|
689 |
#: build/wp-ulike/admin/stats.php:144
|
690 |
msgid "Yesterday"
|
691 |
msgstr "Ayer"
|
692 |
|
693 |
+
#: admin/classes/class-widget.php:559 admin/stats.php:139
|
694 |
+
#: build/wp-ulike/admin/classes/class-widget.php:559
|
695 |
#: build/wp-ulike/admin/stats.php:139
|
696 |
msgid "Today"
|
697 |
msgstr "Hoy"
|
698 |
|
699 |
+
#: admin/classes/class-widget.php:564
|
700 |
+
#: build/wp-ulike/admin/classes/class-widget.php:564
|
701 |
msgid "Style:"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: admin/classes/class-widget.php:566
|
705 |
+
#: build/wp-ulike/admin/classes/class-widget.php:566
|
706 |
msgid "Simple"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: admin/classes/class-widget.php:572
|
710 |
+
#: build/wp-ulike/admin/classes/class-widget.php:572
|
711 |
msgid "Title Trim (Length):"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: admin/classes/class-widget.php:578
|
715 |
+
#: build/wp-ulike/admin/classes/class-widget.php:578
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
msgid "Profile URL:"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: admin/classes/class-widget.php:581
|
720 |
+
#: build/wp-ulike/admin/classes/class-widget.php:581
|
721 |
msgid "UltimateMember"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: admin/classes/class-widget.php:587
|
725 |
+
#: build/wp-ulike/admin/classes/class-widget.php:587
|
726 |
msgid "Activate Like Counter"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: admin/classes/class-widget.php:592
|
730 |
+
#: build/wp-ulike/admin/classes/class-widget.php:592
|
731 |
msgid "Activate Thumbnail/Avatar"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: admin/classes/class-widget.php:596
|
735 |
+
#: build/wp-ulike/admin/classes/class-widget.php:596
|
736 |
+
msgid "Thumbnail/Avatar size:"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: admin/classes/tmp/options.php:11
|
740 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:11
|
741 |
msgid "General"
|
742 |
msgstr "General"
|
743 |
|
744 |
+
#: admin/classes/tmp/options.php:15
|
745 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:15
|
746 |
msgid "Button Type"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: admin/classes/tmp/options.php:19
|
750 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:19
|
751 |
msgid "Icon"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: admin/classes/tmp/options.php:23
|
755 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:23
|
756 |
msgid "Text"
|
757 |
msgstr "Texto"
|
758 |
|
759 |
+
#: admin/classes/tmp/options.php:30 admin/classes/tmp/options.php:34
|
760 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:30
|
761 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
762 |
msgid "Button Text"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: admin/classes/tmp/options.php:33 admin/classes/tmp/options.php:34
|
766 |
+
#: admin/classes/tmp/options.php:43
|
767 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:33
|
768 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:34
|
769 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
770 |
msgid "Unlike"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: admin/classes/tmp/options.php:38 admin/classes/tmp/options.php:43
|
774 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:38
|
775 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:43
|
776 |
msgid "Button Icon"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: admin/classes/tmp/options.php:39 admin/classes/tmp/options.php:44
|
780 |
+
#: admin/classes/tmp/options.php:543
|
781 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:39
|
782 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:44
|
783 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:543
|
784 |
msgid "Best size: 16x16"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: admin/classes/tmp/options.php:47
|
788 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:47
|
789 |
msgid "You have not permission to unlike"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: admin/classes/tmp/options.php:48
|
793 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:48
|
794 |
msgid "Permission Text"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: admin/classes/tmp/options.php:52
|
798 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:52
|
799 |
msgid "Users Login Type"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: admin/classes/tmp/options.php:55
|
803 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:55
|
804 |
msgid "Alert Box"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: admin/classes/tmp/options.php:56
|
808 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:56
|
809 |
msgid "Like Button"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: admin/classes/tmp/options.php:60
|
813 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:60
|
814 |
msgid "You Should Login To Submit Your Like"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: admin/classes/tmp/options.php:61
|
818 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:61
|
819 |
msgid "Users Login Text"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: admin/classes/tmp/options.php:65
|
823 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:65
|
824 |
+
msgid "Disable Plugin Files"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: admin/classes/tmp/options.php:68 admin/classes/tmp/options.php:138
|
828 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:68
|
829 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:138
|
830 |
+
msgid "Single Posts"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: admin/classes/tmp/options.php:69 admin/classes/tmp/options.php:139
|
834 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:69
|
835 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:139
|
836 |
+
msgid "Pages"
|
837 |
+
msgstr "Páginas"
|
838 |
+
|
839 |
+
#: admin/classes/tmp/options.php:70 admin/classes/tmp/options.php:140
|
840 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:70
|
841 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:140
|
842 |
+
msgid "Archives"
|
843 |
+
msgstr "Archives"
|
844 |
+
|
845 |
+
#: admin/classes/tmp/options.php:71 admin/classes/tmp/options.php:141
|
846 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:71
|
847 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:141
|
848 |
+
msgid "Categories"
|
849 |
+
msgstr "Categorías"
|
850 |
+
|
851 |
+
#: admin/classes/tmp/options.php:72 admin/classes/tmp/options.php:142
|
852 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:72
|
853 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:142
|
854 |
+
msgid "Search Results"
|
855 |
+
msgstr "Resultados de la búsqueda"
|
856 |
+
|
857 |
+
#: admin/classes/tmp/options.php:73 admin/classes/tmp/options.php:143
|
858 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:73
|
859 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:143
|
860 |
+
msgid "Tags"
|
861 |
+
msgstr "Etiquetas"
|
862 |
+
|
863 |
+
#: admin/classes/tmp/options.php:74 admin/classes/tmp/options.php:144
|
864 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:74
|
865 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:144
|
866 |
+
msgid "Author Page"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: admin/classes/tmp/options.php:75
|
870 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:75
|
871 |
+
#, fuzzy
|
872 |
+
msgid "BuddyPress Pages"
|
873 |
+
msgstr "BuddyPress"
|
874 |
+
|
875 |
+
#: admin/classes/tmp/options.php:76
|
876 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:76
|
877 |
+
msgid "bbPress Pages"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: admin/classes/tmp/options.php:77
|
881 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:77
|
882 |
+
msgid "WooCommerce Pages"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: admin/classes/tmp/options.php:79
|
886 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:79
|
887 |
+
msgid "Remove the plugin's css and js file on these pages."
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: admin/classes/tmp/options.php:84
|
891 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:84
|
892 |
msgid "Format Number"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: admin/classes/tmp/options.php:85 admin/classes/tmp/options.php:92
|
896 |
+
#: admin/classes/tmp/options.php:121 admin/classes/tmp/options.php:152
|
897 |
+
#: admin/classes/tmp/options.php:159 admin/classes/tmp/options.php:177
|
898 |
+
#: admin/classes/tmp/options.php:228 admin/classes/tmp/options.php:244
|
899 |
+
#: admin/classes/tmp/options.php:262 admin/classes/tmp/options.php:313
|
900 |
+
#: admin/classes/tmp/options.php:328 admin/classes/tmp/options.php:335
|
901 |
+
#: admin/classes/tmp/options.php:353 admin/classes/tmp/options.php:378
|
902 |
+
#: admin/classes/tmp/options.php:385 admin/classes/tmp/options.php:430
|
903 |
+
#: admin/classes/tmp/options.php:445 admin/classes/tmp/options.php:463
|
904 |
+
#: admin/classes/tmp/options.php:508
|
905 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:85
|
906 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:92
|
907 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:121
|
908 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:152
|
909 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:159
|
910 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:177
|
911 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:228
|
912 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:244
|
913 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:262
|
914 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:313
|
915 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:328
|
916 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:335
|
917 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:353
|
918 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:378
|
919 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:385
|
920 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:430
|
921 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:445
|
922 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:463
|
923 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:508
|
924 |
msgid "Activate"
|
925 |
msgstr "Activar"
|
926 |
|
927 |
+
#: admin/classes/tmp/options.php:86
|
928 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:86
|
929 |
msgid "Convert numbers of Likes with string (kilobyte) format."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: admin/classes/tmp/options.php:91
|
933 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:91
|
934 |
#, fuzzy
|
935 |
msgid "Notifications"
|
936 |
msgstr "Acciones"
|
937 |
|
938 |
+
#: admin/classes/tmp/options.php:93
|
939 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:93
|
940 |
msgid "Custom toast messages after each activity"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: admin/classes/tmp/options.php:96
|
944 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:96
|
945 |
msgid "Thanks! You Liked This."
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: admin/classes/tmp/options.php:97
|
949 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:97
|
950 |
msgid "Liked Notice Message"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: admin/classes/tmp/options.php:100
|
954 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:100
|
955 |
msgid "Sorry! You unliked this."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: admin/classes/tmp/options.php:101
|
959 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:101
|
960 |
msgid "Unliked Notice Message"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: admin/classes/tmp/options.php:114 admin/classes/tmp/options.php:221
|
964 |
+
#: admin/classes/tmp/options.php:306 admin/classes/tmp/options.php:423
|
965 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:114
|
966 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:221
|
967 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:306
|
968 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:423
|
969 |
#: build/wp-ulike/inc/wp-strings.php:10 inc/wp-strings.php:10
|
970 |
msgid "Themes"
|
971 |
msgstr "Temas"
|
972 |
|
973 |
+
#: admin/classes/tmp/options.php:125 admin/classes/tmp/options.php:232
|
974 |
+
#: admin/classes/tmp/options.php:317 admin/classes/tmp/options.php:434
|
975 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:125
|
976 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:232
|
977 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:317
|
978 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:434
|
979 |
msgid "Auto Display Position"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: admin/classes/tmp/options.php:128 admin/classes/tmp/options.php:235
|
983 |
+
#: admin/classes/tmp/options.php:437
|
984 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:128
|
985 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:235
|
986 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:437
|
987 |
msgid "Top of Content"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: admin/classes/tmp/options.php:129 admin/classes/tmp/options.php:236
|
991 |
+
#: admin/classes/tmp/options.php:438
|
992 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:129
|
993 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:236
|
994 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:438
|
995 |
msgid "Bottom of Content"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: admin/classes/tmp/options.php:130 admin/classes/tmp/options.php:237
|
999 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:130
|
1000 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:237
|
1001 |
msgid "Top and Bottom"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: admin/classes/tmp/options.php:135
|
1005 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:135
|
1006 |
msgid "Auto Display Filter"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: admin/classes/tmp/options.php:146
|
1010 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
msgid "You can filter theses pages on auto display option."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: admin/classes/tmp/options.php:151
|
1015 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:151
|
1016 |
msgid "Google Rich Snippets"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: admin/classes/tmp/options.php:153
|
1020 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:153
|
1021 |
msgid "Add rich snippet for ratings in form of schema.org"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: admin/classes/tmp/options.php:158 admin/classes/tmp/options.php:243
|
1025 |
+
#: admin/classes/tmp/options.php:334 admin/classes/tmp/options.php:444
|
1026 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:158
|
1027 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:243
|
1028 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:334
|
1029 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:444
|
1030 |
msgid "Only registered Users"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: admin/classes/tmp/options.php:160
|
1034 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:160
|
1035 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: admin/classes/tmp/options.php:167 admin/classes/tmp/options.php:252
|
1039 |
+
#: admin/classes/tmp/options.php:343 admin/classes/tmp/options.php:453
|
1040 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:167
|
1041 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:252
|
1042 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:343
|
1043 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:453
|
1044 |
msgid "Do Not Log"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: admin/classes/tmp/options.php:168 admin/classes/tmp/options.php:253
|
1048 |
+
#: admin/classes/tmp/options.php:344 admin/classes/tmp/options.php:454
|
1049 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:168
|
1050 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:253
|
1051 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:344
|
1052 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:454
|
1053 |
msgid "Logged By Cookie"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: admin/classes/tmp/options.php:169 admin/classes/tmp/options.php:254
|
1057 |
+
#: admin/classes/tmp/options.php:345 admin/classes/tmp/options.php:455
|
1058 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:169
|
1059 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:254
|
1060 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:345
|
1061 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:455
|
1062 |
msgid "Logged By IP"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: admin/classes/tmp/options.php:170 admin/classes/tmp/options.php:255
|
1066 |
+
#: admin/classes/tmp/options.php:346 admin/classes/tmp/options.php:456
|
1067 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:170
|
1068 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:255
|
1069 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:346
|
1070 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
msgid "Logged By Username"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: admin/classes/tmp/options.php:176 admin/classes/tmp/options.php:261
|
1075 |
+
#: admin/classes/tmp/options.php:352 admin/classes/tmp/options.php:462
|
1076 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:176
|
1077 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:261
|
1078 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:352
|
1079 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:462
|
1080 |
msgid "Show Liked Users Box"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: admin/classes/tmp/options.php:178 admin/classes/tmp/options.php:263
|
1084 |
+
#: admin/classes/tmp/options.php:354 admin/classes/tmp/options.php:464
|
1085 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:178
|
1086 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:263
|
1087 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:354
|
1088 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:464
|
1089 |
msgid ""
|
1090 |
"Active this option to show liked users avatars in the bottom of button like."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: admin/classes/tmp/options.php:183 admin/classes/tmp/options.php:268
|
1094 |
+
#: admin/classes/tmp/options.php:359 admin/classes/tmp/options.php:469
|
1095 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:183
|
1096 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:268
|
1097 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:359
|
1098 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:469
|
1099 |
msgid "Size of Gravatars"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: admin/classes/tmp/options.php:184 admin/classes/tmp/options.php:269
|
1103 |
+
#: admin/classes/tmp/options.php:360 admin/classes/tmp/options.php:470
|
1104 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:184
|
1105 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:269
|
1106 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:360
|
1107 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:470
|
1108 |
msgid "Size of Gravatars to return (max is 512)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: admin/classes/tmp/options.php:189 admin/classes/tmp/options.php:274
|
1112 |
+
#: admin/classes/tmp/options.php:365 admin/classes/tmp/options.php:475
|
1113 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:189
|
1114 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:274
|
1115 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:365
|
1116 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:475
|
1117 |
msgid "Number Of The Users"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: admin/classes/tmp/options.php:190 admin/classes/tmp/options.php:275
|
1121 |
+
#: admin/classes/tmp/options.php:366 admin/classes/tmp/options.php:476
|
1122 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:190
|
1123 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:275
|
1124 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:366
|
1125 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:476
|
1126 |
msgid "The number of users to show in the users liked box"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: admin/classes/tmp/options.php:196 admin/classes/tmp/options.php:281
|
1130 |
+
#: admin/classes/tmp/options.php:372 admin/classes/tmp/options.php:392
|
1131 |
+
#: admin/classes/tmp/options.php:398 admin/classes/tmp/options.php:482
|
1132 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:196
|
1133 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:281
|
1134 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:372
|
1135 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:392
|
1136 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:398
|
1137 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:482
|
1138 |
msgid "Allowed Variables:"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: admin/classes/tmp/options.php:200 admin/classes/tmp/options.php:285
|
1142 |
+
#: admin/classes/tmp/options.php:402 admin/classes/tmp/options.php:486
|
1143 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:200
|
1144 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:285
|
1145 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:402
|
1146 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:486
|
1147 |
msgid "Delete All Logs"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: admin/classes/tmp/options.php:201 admin/classes/tmp/options.php:286
|
1151 |
+
#: admin/classes/tmp/options.php:403 admin/classes/tmp/options.php:487
|
1152 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:201
|
1153 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:286
|
1154 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:403
|
1155 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:487
|
1156 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: admin/classes/tmp/options.php:206 admin/classes/tmp/options.php:291
|
1160 |
+
#: admin/classes/tmp/options.php:408 admin/classes/tmp/options.php:492
|
1161 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:206
|
1162 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:291
|
1163 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:408
|
1164 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:492
|
1165 |
msgid "Delete All Data"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: admin/classes/tmp/options.php:207 admin/classes/tmp/options.php:292
|
1169 |
+
#: admin/classes/tmp/options.php:409 admin/classes/tmp/options.php:493
|
1170 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:207
|
1171 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:292
|
1172 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:409
|
1173 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:493
|
1174 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: admin/classes/tmp/options.php:245
|
1178 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:245
|
1179 |
msgid ""
|
1180 |
"<strong>Only</strong> registered users have permission to like comments."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: admin/classes/tmp/options.php:320
|
1184 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:320
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgid "Activity Content"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: admin/classes/tmp/options.php:321
|
1189 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:321
|
1190 |
msgid "Activity Meta"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: admin/classes/tmp/options.php:327
|
1194 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:327
|
1195 |
msgid "Activity Comment"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: admin/classes/tmp/options.php:329
|
1199 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:329
|
1200 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: admin/classes/tmp/options.php:336
|
1204 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:336
|
1205 |
msgid ""
|
1206 |
"<strong>Only</strong> registered users have permission to like activities."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: admin/classes/tmp/options.php:377
|
1210 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:377
|
1211 |
msgid "BuddyPress Activity"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: admin/classes/tmp/options.php:379
|
1215 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:379
|
1216 |
msgid "insert new likes in buddyPress activity page"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: admin/classes/tmp/options.php:384
|
1220 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:384
|
1221 |
msgid "BuddyPress Custom Notification"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: admin/classes/tmp/options.php:386
|
1225 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:386
|
1226 |
msgid "Sends out notifications when you get a like from someone"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: admin/classes/tmp/options.php:446
|
1230 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:446
|
1231 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: admin/classes/tmp/options.php:480
|
1235 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:480
|
1236 |
msgid "Users who have liked this topic:"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: admin/classes/tmp/options.php:502
|
1240 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:502
|
1241 |
+
msgid "Customize"
|
1242 |
+
msgstr "Personalizar"
|
1243 |
+
|
1244 |
+
#: admin/classes/tmp/options.php:507
|
1245 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:507
|
1246 |
+
msgid "Custom Style"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: admin/classes/tmp/options.php:512
|
1250 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:512
|
1251 |
+
msgid "Active this option to see the custom style settings."
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: admin/classes/tmp/options.php:516
|
1255 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:516
|
1256 |
+
msgid "Button style"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: admin/classes/tmp/options.php:517 admin/classes/tmp/options.php:530
|
1260 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:517
|
1261 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:530
|
1262 |
+
msgid "Background"
|
1263 |
+
msgstr "Fondo"
|
1264 |
+
|
1265 |
+
#: admin/classes/tmp/options.php:521 admin/classes/tmp/options.php:534
|
1266 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:521
|
1267 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:534
|
1268 |
+
msgid "Border Color"
|
1269 |
+
msgstr "Color del borde"
|
1270 |
+
|
1271 |
+
#: admin/classes/tmp/options.php:525 admin/classes/tmp/options.php:538
|
1272 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:525
|
1273 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:538
|
1274 |
+
msgid "Text Color"
|
1275 |
+
msgstr "Color del texto"
|
1276 |
+
|
1277 |
+
#: admin/classes/tmp/options.php:529
|
1278 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:529
|
1279 |
+
msgid "Counter Style"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: admin/classes/tmp/options.php:542
|
1283 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:542
|
1284 |
+
msgid "Loading Animation"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: admin/classes/tmp/options.php:547
|
1288 |
+
#: build/wp-ulike/admin/classes/tmp/options.php:547
|
1289 |
+
#, fuzzy
|
1290 |
+
msgid "Custom CSS"
|
1291 |
+
msgstr "Personalizar"
|
1292 |
+
|
1293 |
+
#: admin/logs.php:17 admin/logs.php:147 admin/logs.php:217 admin/logs.php:269
|
1294 |
+
#: admin/logs.php:343 admin/logs.php:397 admin/logs.php:467 admin/logs.php:520
|
1295 |
+
#: admin/logs.php:590 build/wp-ulike/admin/logs.php:17
|
1296 |
+
#: build/wp-ulike/admin/logs.php:147 build/wp-ulike/admin/logs.php:217
|
1297 |
+
#: build/wp-ulike/admin/logs.php:269 build/wp-ulike/admin/logs.php:343
|
1298 |
+
#: build/wp-ulike/admin/logs.php:397 build/wp-ulike/admin/logs.php:467
|
1299 |
+
#: build/wp-ulike/admin/logs.php:520 build/wp-ulike/admin/logs.php:590
|
1300 |
msgid "Logs"
|
1301 |
msgstr "Registros"
|
1302 |
|
1303 |
+
#: admin/logs.php:84 build/wp-ulike/admin/logs.php:84
|
1304 |
msgid "Are you sure to remove this item?!"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: admin/logs.php:143 admin/logs.php:265 admin/logs.php:393 admin/logs.php:516
|
1308 |
+
#: build/wp-ulike/admin/logs.php:143 build/wp-ulike/admin/logs.php:265
|
1309 |
+
#: build/wp-ulike/admin/logs.php:393 build/wp-ulike/admin/logs.php:516
|
1310 |
msgid "WP ULike Logs"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: admin/logs.php:154 admin/logs.php:276 admin/logs.php:404 admin/logs.php:527
|
1314 |
+
#: build/wp-ulike/admin/logs.php:154 build/wp-ulike/admin/logs.php:276
|
1315 |
+
#: build/wp-ulike/admin/logs.php:404 build/wp-ulike/admin/logs.php:527
|
1316 |
msgid "ID"
|
1317 |
msgstr "ID"
|
1318 |
|
1319 |
+
#: admin/logs.php:155 admin/logs.php:277 admin/logs.php:405 admin/logs.php:528
|
1320 |
+
#: build/wp-ulike/admin/logs.php:155 build/wp-ulike/admin/logs.php:277
|
1321 |
+
#: build/wp-ulike/admin/logs.php:405 build/wp-ulike/admin/logs.php:528
|
1322 |
msgid "Username"
|
1323 |
msgstr "Usuario"
|
1324 |
|
1325 |
+
#: admin/logs.php:156 admin/logs.php:278 admin/logs.php:406 admin/logs.php:529
|
1326 |
+
#: build/wp-ulike/admin/logs.php:156 build/wp-ulike/admin/logs.php:278
|
1327 |
+
#: build/wp-ulike/admin/logs.php:406 build/wp-ulike/admin/logs.php:529
|
1328 |
msgid "Status"
|
1329 |
msgstr "Estado"
|
1330 |
|
1331 |
+
#: admin/logs.php:157 build/wp-ulike/admin/logs.php:157
|
1332 |
msgid "Post ID"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: admin/logs.php:158 build/wp-ulike/admin/logs.php:158
|
1336 |
msgid "Post Title"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: admin/logs.php:159 admin/logs.php:282 admin/logs.php:409 admin/logs.php:532
|
1340 |
+
#: build/wp-ulike/admin/logs.php:159 build/wp-ulike/admin/logs.php:282
|
1341 |
+
#: build/wp-ulike/admin/logs.php:409 build/wp-ulike/admin/logs.php:532
|
1342 |
msgid "Date / Time"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: admin/logs.php:160 admin/logs.php:283 admin/logs.php:410 admin/logs.php:533
|
1346 |
+
#: build/wp-ulike/admin/logs.php:160 build/wp-ulike/admin/logs.php:283
|
1347 |
+
#: build/wp-ulike/admin/logs.php:410 build/wp-ulike/admin/logs.php:533
|
1348 |
msgid "IP"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: admin/logs.php:161 admin/logs.php:284 admin/logs.php:411 admin/logs.php:534
|
1352 |
+
#: build/wp-ulike/admin/logs.php:161 build/wp-ulike/admin/logs.php:284
|
1353 |
+
#: build/wp-ulike/admin/logs.php:411 build/wp-ulike/admin/logs.php:534
|
1354 |
msgid "Actions"
|
1355 |
msgstr "Acciones"
|
1356 |
|
1357 |
+
#: admin/logs.php:179 admin/logs.php:302 admin/logs.php:429 admin/logs.php:552
|
1358 |
+
#: admin/stats.php:199 build/wp-ulike/admin/logs.php:179
|
1359 |
+
#: build/wp-ulike/admin/logs.php:302 build/wp-ulike/admin/logs.php:429
|
1360 |
+
#: build/wp-ulike/admin/logs.php:552 build/wp-ulike/admin/stats.php:199
|
1361 |
msgid "Guest User"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: admin/logs.php:224 admin/logs.php:351 admin/logs.php:475 admin/logs.php:598
|
1365 |
+
#: build/wp-ulike/admin/logs.php:224 build/wp-ulike/admin/logs.php:351
|
1366 |
+
#: build/wp-ulike/admin/logs.php:475 build/wp-ulike/admin/logs.php:598
|
1367 |
msgid ""
|
1368 |
"<strong>ERROR:</strong> No Record Found. (This problem is created because "
|
1369 |
"you don't have any data on this table)"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: admin/logs.php:279 build/wp-ulike/admin/logs.php:279
|
1373 |
msgid "Comment ID"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: admin/logs.php:280 build/wp-ulike/admin/logs.php:280
|
1377 |
msgid "Comment Author"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: admin/logs.php:281 build/wp-ulike/admin/logs.php:281
|
1381 |
msgid "Comment Text"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: admin/logs.php:407 build/wp-ulike/admin/logs.php:407
|
1385 |
msgid "Activity ID"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: admin/logs.php:408 build/wp-ulike/admin/logs.php:408
|
1389 |
msgid "Permalink"
|
1390 |
msgstr "Enlace permanente"
|
1391 |
|
1392 |
+
#: admin/logs.php:445 build/wp-ulike/admin/logs.php:445
|
1393 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: admin/logs.php:530 build/wp-ulike/admin/logs.php:530
|
1397 |
msgid "Topic ID"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: admin/logs.php:531 build/wp-ulike/admin/logs.php:531
|
1401 |
msgid "Topic Title"
|
1402 |
msgstr ""
|
1403 |
|
1518 |
msgid "Days"
|
1519 |
msgstr "Días"
|
1520 |
|
1521 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:211
|
1522 |
+
#: inc/classes/class-mycred.php:211
|
1523 |
msgid "Points for Liking content"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:218
|
1527 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:235
|
1528 |
+
#: inc/classes/class-mycred.php:218 inc/classes/class-mycred.php:235
|
1529 |
msgid "Limit"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:223
|
1533 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:240
|
1534 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:252
|
1535 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:264
|
1536 |
+
#: inc/classes/class-mycred.php:223 inc/classes/class-mycred.php:240
|
1537 |
+
#: inc/classes/class-mycred.php:252 inc/classes/class-mycred.php:264
|
1538 |
msgid "Log template"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:228
|
1542 |
+
#: inc/classes/class-mycred.php:228
|
1543 |
msgid "Points for Author Who Get Liked"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:245
|
1547 |
+
#: inc/classes/class-mycred.php:245
|
1548 |
msgid "Points for unliking content"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: build/wp-ulike/inc/classes/class-mycred.php:257
|
1552 |
+
#: inc/classes/class-mycred.php:257
|
1553 |
msgid "Points for Author Who Get Unliked"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: build/wp-ulike/inc/wp-functions.php:336 inc/wp-functions.php:336
|
1557 |
msgid "WP ULike Activity"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: build/wp-ulike/inc/wp-functions.php:456 inc/wp-functions.php:456
|
1561 |
msgid "Likes"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: build/wp-ulike/inc/wp-functions.php:523 inc/wp-functions.php:523
|
1565 |
msgid "You have a new like from"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: build/wp-ulike/inc/wp-functions.php:623 inc/wp-functions.php:623
|
1569 |
msgid ""
|
1570 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1571 |
"WordPress, bbPress, BuddyPress & ..."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: build/wp-ulike/inc/wp-functions.php:631 inc/wp-functions.php:631
|
1575 |
msgid "Liking Content"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: build/wp-ulike/inc/wp-functions.php:632 inc/wp-functions.php:632
|
1579 |
msgid "Liked Content"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: build/wp-ulike/inc/wp-functions.php:633 inc/wp-functions.php:633
|
1583 |
msgid "Unliking Content"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: build/wp-ulike/inc/wp-functions.php:634 inc/wp-functions.php:634
|
1587 |
msgid "Unliked Content"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: build/wp-ulike/inc/wp-functions.php:656
|
1591 |
+
#: build/wp-ulike/inc/wp-functions.php:690 inc/wp-functions.php:656
|
1592 |
+
#: inc/wp-functions.php:690
|
1593 |
msgid "Recent Posts Liked"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: build/wp-ulike/inc/wp-functions.php:661
|
1597 |
+
#: build/wp-ulike/inc/wp-functions.php:730 inc/wp-functions.php:661
|
1598 |
+
#: inc/wp-functions.php:730
|
1599 |
msgid "Recent Comments Liked"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: build/wp-ulike/inc/wp-functions.php:706
|
1603 |
+
#: build/wp-ulike/inc/wp-functions.php:747 inc/wp-functions.php:706
|
1604 |
+
#: inc/wp-functions.php:747
|
1605 |
msgid "This user has not made any likes."
|
1606 |
msgstr ""
|
1607 |
|
1709 |
msgid "Downvote"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:281
|
1713 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:281
|
1714 |
msgid "You need to login in order to like this post: "
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: build/wp-ulike/inc/wp-ulike.php:66 build/wp-ulike/inc/wp-ulike.php:133
|
1718 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 build/wp-ulike/inc/wp-ulike.php:281
|
1719 |
+
#: inc/wp-ulike.php:66 inc/wp-ulike.php:133 inc/wp-ulike.php:207
|
1720 |
+
#: inc/wp-ulike.php:281
|
1721 |
msgid "click here"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: build/wp-ulike/inc/wp-ulike.php:133 inc/wp-ulike.php:133
|
1725 |
msgid "You need to login in order to like this comment: "
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: build/wp-ulike/inc/wp-ulike.php:207 inc/wp-ulike.php:207
|
1729 |
msgid "You need to login in order to like this activity: "
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: build/wp-ulike/inc/wp-ulike.php:310 inc/wp-ulike.php:310
|
1733 |
+
msgid "Error: Something Wrong Happened!"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: build/wp-ulike/inc/wp-ulike.php:351 inc/wp-ulike.php:351
|
1737 |
msgid "Error: This Method Is Not Exist!"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: build/wp-ulike/wp-ulike.php:150 wp-ulike.php:150
|
1741 |
#, fuzzy
|
1742 |
msgid "Settings"
|
1743 |
msgstr "Salvar Ajustes"
|
1744 |
|
1745 |
+
#: build/wp-ulike/wp-ulike.php:151 wp-ulike.php:151
|
1746 |
#, fuzzy
|
1747 |
msgid "Statistics"
|
1748 |
msgstr "Estado"
|
1749 |
|
1750 |
+
#: build/wp-ulike/wp-ulike.php:152 wp-ulike.php:152
|
1751 |
msgid "About"
|
1752 |
msgstr ""
|
1753 |
|
lang/wp-ulike-fa_IR.mo
CHANGED
Binary file
|
lang/wp-ulike-fa_IR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
8 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
9 |
"Language: fa_IR\n"
|
@@ -17,23 +17,11 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
-
#:
|
21 |
-
msgid "Settings"
|
22 |
-
msgstr "تنظیمات"
|
23 |
-
|
24 |
-
#: ../wp-ulike.php:151 ../build/wp-ulike/wp-ulike.php:151
|
25 |
-
msgid "Statistics"
|
26 |
-
msgstr "آماره"
|
27 |
-
|
28 |
-
#: ../wp-ulike.php:152 ../build/wp-ulike/wp-ulike.php:152
|
29 |
-
msgid "About"
|
30 |
-
msgstr "درباره"
|
31 |
-
|
32 |
-
#: ../build/wp-ulike/admin/about.php:30 ../admin/about.php:30
|
33 |
msgid "Welcome to WP ULike"
|
34 |
msgstr "به وردپرس یولایک خوش آمدید"
|
35 |
|
36 |
-
#:
|
37 |
msgid ""
|
38 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
39 |
"powerful version yet."
|
@@ -41,48 +29,48 @@ msgstr ""
|
|
41 |
"از اینکه از افزونه وردپرس یولایک استفاده می کنید، خیلی ممنونیم! نسخه ی جدید، "
|
42 |
"قویترین و کامل ترین نسخه منتشر شده از این افزونه است."
|
43 |
|
44 |
-
#:
|
45 |
-
#:
|
46 |
msgid "Visit our homepage"
|
47 |
msgstr "مشاهده صفحه افزونه"
|
48 |
|
49 |
-
#:
|
50 |
msgid "Version"
|
51 |
msgstr "نسخه"
|
52 |
|
53 |
-
#:
|
54 |
msgid "Getting Started"
|
55 |
msgstr "شروع "
|
56 |
|
57 |
-
#:
|
58 |
msgid "Credits"
|
59 |
msgstr "دستاندرکاران"
|
60 |
|
61 |
-
#:
|
62 |
-
#:
|
63 |
-
#:
|
64 |
-
#:
|
65 |
msgid "Support"
|
66 |
msgstr "پشتیبانی"
|
67 |
|
68 |
-
#:
|
69 |
-
#:
|
70 |
-
#:
|
71 |
-
#:
|
72 |
msgid "FAQ"
|
73 |
msgstr "سؤالات متداول"
|
74 |
|
75 |
-
#:
|
76 |
msgid "Reviews"
|
77 |
msgstr "امتیازدهی"
|
78 |
|
79 |
-
#:
|
80 |
msgid "Introducing WP ULike"
|
81 |
msgstr "معرفی وردپرس یولاک"
|
82 |
|
83 |
-
#:
|
84 |
-
#:
|
85 |
-
#:
|
86 |
msgid "About WP ULike"
|
87 |
msgstr "درباره وردپرس یولایک"
|
88 |
|
@@ -102,11 +90,11 @@ msgstr ""
|
|
102 |
"سفارشی سازی استایل ها و… تمامی قابلیت های یک سیستم خوب و حرف
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
|
5 |
+
"POT-Creation-Date: 2017-11-20 12:11:13+00:00\n"
|
6 |
+
"PO-Revision-Date: 2017-08-23 15:09+0330\n"
|
7 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
8 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
9 |
"Language: fa_IR\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
+
#: admin/about.php:30 build/wp-ulike/admin/about.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Welcome to WP ULike"
|
22 |
msgstr "به وردپرس یولایک خوش آمدید"
|
23 |
|
24 |
+
#: admin/about.php:31 build/wp-ulike/admin/about.php:31
|
25 |
msgid ""
|
26 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
27 |
"powerful version yet."
|
29 |
"از اینکه از افزونه وردپرس یولایک استفاده می کنید، خیلی ممنونیم! نسخه ی جدید، "
|
30 |
"قویترین و کامل ترین نسخه منتشر شده از این افزونه است."
|
31 |
|
32 |
+
#: admin/about.php:34 admin/stats.php:38 build/wp-ulike/admin/about.php:34
|
33 |
+
#: build/wp-ulike/admin/stats.php:38
|
34 |
msgid "Visit our homepage"
|
35 |
msgstr "مشاهده صفحه افزونه"
|
36 |
|
37 |
+
#: admin/about.php:36 build/wp-ulike/admin/about.php:36
|
38 |
msgid "Version"
|
39 |
msgstr "نسخه"
|
40 |
|
41 |
+
#: admin/about.php:38 build/wp-ulike/admin/about.php:38
|
42 |
msgid "Getting Started"
|
43 |
msgstr "شروع "
|
44 |
|
45 |
+
#: admin/about.php:39 build/wp-ulike/admin/about.php:39
|
46 |
msgid "Credits"
|
47 |
msgstr "دستاندرکاران"
|
48 |
|
49 |
+
#: admin/about.php:40 admin/classes/class-settings.php:111 admin/stats.php:52
|
50 |
+
#: build/wp-ulike/admin/about.php:40
|
51 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
52 |
+
#: build/wp-ulike/admin/stats.php:52
|
53 |
msgid "Support"
|
54 |
msgstr "پشتیبانی"
|
55 |
|
56 |
+
#: admin/about.php:41 admin/classes/class-settings.php:111 admin/stats.php:53
|
57 |
+
#: build/wp-ulike/admin/about.php:41
|
58 |
+
#: build/wp-ulike/admin/classes/class-settings.php:111
|
59 |
+
#: build/wp-ulike/admin/stats.php:53
|
60 |
msgid "FAQ"
|
61 |
msgstr "سؤالات متداول"
|
62 |
|
63 |
+
#: admin/about.php:42 build/wp-ulike/admin/about.php:42
|
64 |
msgid "Reviews"
|
65 |
msgstr "امتیازدهی"
|
66 |
|
67 |
+
#: admin/about.php:48 build/wp-ulike/admin/about.php:48
|
68 |
msgid "Introducing WP ULike"
|
69 |
msgstr "معرفی وردپرس یولاک"
|
70 |
|
71 |
+
#: admin/about.php:55 admin/admin.php:198 admin/stats.php:37
|
72 |
+
#: build/wp-ulike/admin/about.php:55 build/wp-ulike/admin/admin.php:198
|
73 |
+
#: build/wp-ulike/admin/stats.php:37
|
74 |
msgid "About WP ULike"
|
75 |
msgstr "درباره وردپرس یولایک"
|
76 |
|
90 |
"سفارشی سازی استایل ها و… تمامی قابلیت های یک سیستم خوب و حرف
|