Version Description
- Added: Flexible google rich snippets for posts. (Add rich snippet for likes in form of schema.org)
- Added: 'wp_ulike_count_box_template' filter to customize count box template.
- Added: 'wp_ulike_login_alert_template' filter to customize login alert message.
- Added: 'wp_ulike_bp_notifications_template' filter to customize buddypress notification message.
- Added: New admin font icons for dashboard area.
- Removed: svg-source.php file.
- Updated: WP ULike URI.
- Updated: Some elements of "About WP ULike" area.
- Updated: Persian language file.
Download this release
Release Info
Developer | alimir |
Plugin | WP ULike |
Version | 2.7 |
Comparing to | |
See all releases |
Code changes from version 2.6 to 2.7
- admin/about.php +78 -83
- admin/admin.php +1 -1
- admin/classes/css/font-icons.css +154 -0
- admin/classes/css/settings.css +17 -0
- admin/classes/css/statistics.css +17 -0
- admin/classes/fonts/wp-ulike.eot +0 -0
- admin/classes/fonts/wp-ulike.svg +44 -0
- admin/classes/fonts/wp-ulike.ttf +0 -0
- admin/classes/fonts/wp-ulike.woff +0 -0
- admin/classes/tmp/settings.php +7 -0
- admin/classes/tmp/svg-source.php +0 -503
- admin/stats.php +1 -1
- inc/classes/class-ulike.php +2 -1
- inc/wp-functions.php +115 -7
- inc/wp-ulike.php +17 -12
- lang/readme.txt +4 -0
- lang/wp-ulike-fa_IR.mo +0 -0
- lang/wp-ulike-fa_IR.po +215 -206
- readme.md +119 -2
- readme.txt +90 -27
- wp-ulike.php +20 -4
admin/about.php
CHANGED
@@ -5,23 +5,54 @@
|
|
5 |
*
|
6 |
* @author Alimir
|
7 |
* @since 1.7
|
|
|
8 |
* @return String
|
9 |
*/
|
10 |
-
add_filter('get_avatar', '
|
11 |
-
function
|
12 |
return str_replace(' photo', ' gravatar', $avatar);
|
13 |
}
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
/**
|
16 |
* Create WP ULike About page
|
17 |
*
|
18 |
* @author Alimir
|
19 |
* @since 1.7
|
20 |
* @updated 2.1
|
|
|
21 |
* @return String
|
22 |
*/
|
23 |
function wp_ulike_about_page() {
|
24 |
-
include( plugin_dir_path(__FILE__) . 'classes/tmp/svg-source.php');
|
25 |
?>
|
26 |
<style>
|
27 |
.ulike-badge{
|
@@ -38,11 +69,6 @@
|
|
38 |
text-rendering: optimizelegibility;
|
39 |
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
|
40 |
}
|
41 |
-
.boxstyle {
|
42 |
-
padding: 1px 12px;
|
43 |
-
background-color: #FFF;
|
44 |
-
box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
|
45 |
-
}
|
46 |
.wp_ulike_version {
|
47 |
display: inline-block;
|
48 |
position: absolute;
|
@@ -61,9 +87,14 @@
|
|
61 |
line-height: 1.3;
|
62 |
text-align: center;
|
63 |
}
|
64 |
-
.about-wrap .
|
65 |
-
margin: 30px 0px 15px;
|
66 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
}
|
68 |
<?php if(is_rtl()): ?>
|
69 |
.about-wrap .ulike-badge {
|
@@ -71,34 +102,22 @@
|
|
71 |
top: 0px;
|
72 |
left: 0px;
|
73 |
}
|
74 |
-
.
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
width: 90px;
|
80 |
-
background-color: #CCC;
|
81 |
-
border-radius: 50%;
|
82 |
-
fill: #999;
|
83 |
-
border: 1px solid #C1C1C1;
|
84 |
-
}
|
85 |
<?php else: ?>
|
86 |
.about-wrap .ulike-badge {
|
87 |
position: absolute;
|
88 |
top: 0px;
|
89 |
right: 0px;
|
90 |
}
|
91 |
-
.
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
width: 90px;
|
97 |
-
background-color: #CCC;
|
98 |
-
border-radius: 50%;
|
99 |
-
fill: #999;
|
100 |
-
border: 1px solid #C1C1C1;
|
101 |
-
}
|
102 |
<?php endif; ?>
|
103 |
</style>
|
104 |
|
@@ -107,7 +126,7 @@
|
|
107 |
<h1><?php echo _e('Welcome to WP ULike',WP_ULIKE_SLUG) . ' ' . WP_ULIKE_VERSION; ?></h1>
|
108 |
|
109 |
<div class="about-text"><?php echo _e('Thank you for choosing WP ULike! This version is our leanest and most powerful version yet.', WP_ULIKE_SLUG) ; ?><br />
|
110 |
-
<a target="_blank" href="
|
111 |
</div>
|
112 |
<div class="ulike-badge"><?php echo _e('Version',WP_ULIKE_SLUG) . ' ' . WP_ULIKE_VERSION; ?></div>
|
113 |
<h2 class="nav-tab-wrapper">
|
@@ -121,92 +140,68 @@
|
|
121 |
<?php if(!isset($_GET["credit"])): ?>
|
122 |
|
123 |
<div class="changelog headline-feature">
|
124 |
-
<h2><?php echo _e('Introducing WP ULike',WP_ULIKE_SLUG);
|
125 |
<div class="featured-image">
|
126 |
-
<img src="<?php echo plugins_url('/assets', dirname(__FILE__)); ?>/img/wp-ulike-intro.png">
|
127 |
</div>
|
128 |
|
129 |
<div class="feature-section">
|
130 |
<div class="col">
|
131 |
-
<
|
132 |
-
<
|
133 |
<?php $args = array(
|
134 |
'rating' => 5,
|
135 |
'type' => 'rating',
|
136 |
'number' => 43,
|
137 |
);
|
138 |
wp_star_rating( $args ); ?>
|
139 |
-
</
|
140 |
-
<p><?php echo _e('WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.',WP_ULIKE_SLUG); ?></p>
|
141 |
</div>
|
142 |
</div>
|
143 |
|
144 |
<div class="clear"></div>
|
145 |
</div>
|
146 |
-
|
147 |
-
<div class="feature-section three-col">
|
148 |
<div class="col">
|
149 |
-
<div class="
|
150 |
-
<
|
151 |
-
<g filter="">
|
152 |
-
<use xlink:href="#like"></use>
|
153 |
-
</g>
|
154 |
-
</svg>
|
155 |
</div>
|
156 |
<h3><?php echo _e('WP Ulike Extension',WP_ULIKE_SLUG); ?></h3>
|
157 |
<p><?php echo _e('Right now, WP ULike support wordpress posts / comments, BuddyPress activities & bbPress Topics.',WP_ULIKE_SLUG); ?></p>
|
158 |
</div>
|
159 |
<div class="col">
|
160 |
-
<div class="
|
161 |
-
<
|
162 |
-
<g filter="">
|
163 |
-
<use xlink:href="#globe"></use>
|
164 |
-
</g>
|
165 |
-
</svg>
|
166 |
</div>
|
167 |
<h3><?php echo _e('Added More Than 20 Language Files',WP_ULIKE_SLUG); ?></h3>
|
168 |
<p><?php echo _e('WP ULike is already translated into +20 languages, with more always in progress.',WP_ULIKE_SLUG); ?></p>
|
169 |
</div>
|
170 |
<div class="col">
|
171 |
-
<div class="
|
172 |
-
<
|
173 |
-
<g filter="">
|
174 |
-
<use xlink:href="#happy-smiley"></use>
|
175 |
-
</g>
|
176 |
-
</svg>
|
177 |
</div>
|
178 |
<h3><?php echo _e('User Profile Links',WP_ULIKE_SLUG); ?></h3>
|
179 |
<p><?php echo _e('Since WP ULike 2.3, We have synced the likers profile with BuddyPress & UltimateMember plugins.',WP_ULIKE_SLUG); ?></p>
|
180 |
</div>
|
181 |
<div class="col">
|
182 |
-
<div class="
|
183 |
-
<
|
184 |
-
<g filter="">
|
185 |
-
<use xlink:href="#heart"></use>
|
186 |
-
</g>
|
187 |
-
</svg>
|
188 |
</div>
|
189 |
<h3><?php echo _e('New Themes And Styles',WP_ULIKE_SLUG); ?></h3>
|
190 |
<p><?php echo _e('Since WP ULike 2.3, We have made some new styles and themes and you can customize them by your taste.',WP_ULIKE_SLUG); ?></p>
|
191 |
</div>
|
192 |
<div class="col">
|
193 |
-
<div class="
|
194 |
-
<
|
195 |
-
<g filter="">
|
196 |
-
<use xlink:href="#prize"></use>
|
197 |
-
</g>
|
198 |
-
</svg>
|
199 |
</div>
|
200 |
<h3><?php echo _e('myCRED Points Support',WP_ULIKE_SLUG); ?></h3>
|
201 |
<p><?php echo _e('myCRED is an adaptive points management system that lets you award / charge your users for interacting with your WordPress.',WP_ULIKE_SLUG); ?></p>
|
202 |
</div>
|
203 |
<div class="col">
|
204 |
-
<div class="
|
205 |
-
<
|
206 |
-
<g filter="">
|
207 |
-
<use xlink:href="#tag"></use>
|
208 |
-
</g>
|
209 |
-
</svg>
|
210 |
</div>
|
211 |
<h3><?php echo _e('Likers World Map',WP_ULIKE_SLUG); ?></h3>
|
212 |
<p><?php echo _e('Since WP ULike 2.3, We have made a new ability that you can track your likers by their country in the world map & Top Liker widget.',WP_ULIKE_SLUG); ?></p>
|
@@ -222,16 +217,16 @@
|
|
222 |
<?php else: ?>
|
223 |
|
224 |
<p class="about-description"><?php echo _e('WP ULike is created by many love and time. Enjoy it :)',WP_ULIKE_SLUG); ?></p>
|
225 |
-
<
|
226 |
-
<ul class="wp-people-group">
|
227 |
-
<li class="wp-person" id="wp-person-
|
228 |
<a href="https://profiles.wordpress.org/alimir/"><?php echo get_avatar( 'info@alimir.ir', 64 ); ?></a>
|
229 |
<a class="web" target="_blank" href="https://ir.linkedin.com/in/alimirir/">Ali Mirzaei</a>
|
230 |
<span class="title"><?php echo _e('Project Lead & Developer',WP_ULIKE_SLUG); ?></span>
|
231 |
</li>
|
232 |
</ul>
|
233 |
|
234 |
-
<
|
235 |
<ul>
|
236 |
<li>English (United States)</li>
|
237 |
<li>Persian (Iran)</li>
|
@@ -272,7 +267,7 @@
|
|
272 |
|
273 |
<p class="about-description"><?php _e('Would you like to help translate the plugin into more languages?',WP_ULIKE_SLUG); ?> <a target="_blank" href="https://www.transifex.com/projects/p/wp-ulike/" title"WP-Translations">[<?php _e('Join our WP-Translations Community',WP_ULIKE_SLUG); ?>]</a></p>
|
274 |
|
275 |
-
<
|
276 |
<ul class="wp-people-group">
|
277 |
<li class="wp-person" id="wp-person-alimirzaei">
|
278 |
<a target="_blank" href="https://wordpress.org/plugins/blue-login-style"><img class="gravatar" src="<?php echo plugins_url('/assets', dirname(__FILE__)); ?>/img/blue-login-themes.jpg" alt="Blue Login Themes" /></a>
|
@@ -291,7 +286,7 @@
|
|
291 |
</li>
|
292 |
</ul>
|
293 |
|
294 |
-
<
|
295 |
<div class="boxstyle"><p><strong><?php _e('Show your support by Rating 5 Star in <a href="http://wordpress.org/plugins/wp-ulike"> Plugin Directory reviews</a>',WP_ULIKE_SLUG); ?></strong></p></div>
|
296 |
|
297 |
<?php endif; ?>
|
5 |
*
|
6 |
* @author Alimir
|
7 |
* @since 1.7
|
8 |
+
* @since 2.7 //added wp_ulike prefix to function name
|
9 |
* @return String
|
10 |
*/
|
11 |
+
add_filter('get_avatar', 'wp_ulike_remove_photo_class');
|
12 |
+
function wp_ulike_remove_photo_class($avatar) {
|
13 |
return str_replace(' photo', ' gravatar', $avatar);
|
14 |
}
|
15 |
|
16 |
+
/**
|
17 |
+
* Admin enqueue scripts for font-icons stylesheet
|
18 |
+
*
|
19 |
+
* @author Alimir
|
20 |
+
* @since 2.7
|
21 |
+
* @return Action
|
22 |
+
*/
|
23 |
+
add_action('admin_enqueue_scripts', 'wp_ulike_enqueue_font_icons');
|
24 |
+
function wp_ulike_enqueue_font_icons($avatar) {
|
25 |
+
wp_enqueue_style( 'wp_ulike_font_icons', plugins_url( 'classes/css/font-icons.css' , __FILE__ ) );
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Add rating us notification on wp-ulike admin pages
|
30 |
+
*
|
31 |
+
* @author Alimir
|
32 |
+
* @since 2.7
|
33 |
+
* @return String
|
34 |
+
*/
|
35 |
+
add_action( 'admin_notices', 'wp_ulike_add_rating_star_notice', 999);
|
36 |
+
function wp_ulike_add_rating_star_notice() {
|
37 |
+
if(isset($_GET["page"]) && stripos($_GET["page"], "wp-ulike") !== false){
|
38 |
+
?>
|
39 |
+
<div class="notice notice-success" style="margin:15px 0">
|
40 |
+
<p style="font-size:16px"><strong><?php _e('Like this plugin?',WP_ULIKE_SLUG); ?></strong> <?php _e('Show your support by Rating 5 Star in <a href="http://wordpress.org/plugins/wp-ulike"> Plugin Directory reviews</a>',WP_ULIKE_SLUG); ?></p>
|
41 |
+
</div>
|
42 |
+
<?php
|
43 |
+
} else return;
|
44 |
+
}
|
45 |
+
|
46 |
/**
|
47 |
* Create WP ULike About page
|
48 |
*
|
49 |
* @author Alimir
|
50 |
* @since 1.7
|
51 |
* @updated 2.1
|
52 |
+
* @updated 2.7 //Removed svg-source & updated some elements
|
53 |
* @return String
|
54 |
*/
|
55 |
function wp_ulike_about_page() {
|
|
|
56 |
?>
|
57 |
<style>
|
58 |
.ulike-badge{
|
69 |
text-rendering: optimizelegibility;
|
70 |
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
|
71 |
}
|
|
|
|
|
|
|
|
|
|
|
72 |
.wp_ulike_version {
|
73 |
display: inline-block;
|
74 |
position: absolute;
|
87 |
line-height: 1.3;
|
88 |
text-align: center;
|
89 |
}
|
90 |
+
.about-wrap .icon-container {
|
|
|
91 |
text-align: center;
|
92 |
+
font-size: 6vw;
|
93 |
+
border: 1px solid #757575;
|
94 |
+
padding: 35px 5px;
|
95 |
+
}
|
96 |
+
.about-wrap .featured-image img {
|
97 |
+
border: none;
|
98 |
}
|
99 |
<?php if(is_rtl()): ?>
|
100 |
.about-wrap .ulike-badge {
|
102 |
top: 0px;
|
103 |
left: 0px;
|
104 |
}
|
105 |
+
.boxstyle {
|
106 |
+
padding: 1px 12px;
|
107 |
+
background-color: #FFF;
|
108 |
+
border-right: 3px solid #757575;
|
109 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
<?php else: ?>
|
111 |
.about-wrap .ulike-badge {
|
112 |
position: absolute;
|
113 |
top: 0px;
|
114 |
right: 0px;
|
115 |
}
|
116 |
+
.boxstyle {
|
117 |
+
padding: 1px 12px;
|
118 |
+
background-color: #FFF;
|
119 |
+
border-left: 3px solid #757575;
|
120 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
<?php endif; ?>
|
122 |
</style>
|
123 |
|
126 |
<h1><?php echo _e('Welcome to WP ULike',WP_ULIKE_SLUG) . ' ' . WP_ULIKE_VERSION; ?></h1>
|
127 |
|
128 |
<div class="about-text"><?php echo _e('Thank you for choosing WP ULike! This version is our leanest and most powerful version yet.', WP_ULIKE_SLUG) ; ?><br />
|
129 |
+
<a target="_blank" href="<?php echo WP_ULIKE_PLUGIN_URI; ?>"> <?php _e('Visit our homepage',WP_ULIKE_SLUG); ?></a>
|
130 |
</div>
|
131 |
<div class="ulike-badge"><?php echo _e('Version',WP_ULIKE_SLUG) . ' ' . WP_ULIKE_VERSION; ?></div>
|
132 |
<h2 class="nav-tab-wrapper">
|
140 |
<?php if(!isset($_GET["credit"])): ?>
|
141 |
|
142 |
<div class="changelog headline-feature">
|
143 |
+
<h2><?php echo _e('Introducing WP ULike',WP_ULIKE_SLUG); ?> <img draggable="false" class="emoji" alt="emoji" src="https://s.w.org/images/core/emoji/2.2.1/svg/1f60a.svg"></h2>
|
144 |
<div class="featured-image">
|
145 |
+
<img alt="wp ulike intro" src="<?php echo plugins_url('/assets', dirname(__FILE__)); ?>/img/wp-ulike-intro.png">
|
146 |
</div>
|
147 |
|
148 |
<div class="feature-section">
|
149 |
<div class="col">
|
150 |
+
<h2><?php echo _e('About WP ULike',WP_ULIKE_SLUG); ?></h2>
|
151 |
+
<div style="text-align:center">
|
152 |
<?php $args = array(
|
153 |
'rating' => 5,
|
154 |
'type' => 'rating',
|
155 |
'number' => 43,
|
156 |
);
|
157 |
wp_star_rating( $args ); ?>
|
158 |
+
</div>
|
159 |
+
<p class="lead-description"><?php echo _e('WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.',WP_ULIKE_SLUG); ?></p>
|
160 |
</div>
|
161 |
</div>
|
162 |
|
163 |
<div class="clear"></div>
|
164 |
</div>
|
165 |
+
<hr>
|
166 |
+
<div class="changelog feature-section three-col">
|
167 |
<div class="col">
|
168 |
+
<div class="icon-container">
|
169 |
+
<i class="wp-ulike-icons-hotairballoon"></i>
|
|
|
|
|
|
|
|
|
170 |
</div>
|
171 |
<h3><?php echo _e('WP Ulike Extension',WP_ULIKE_SLUG); ?></h3>
|
172 |
<p><?php echo _e('Right now, WP ULike support wordpress posts / comments, BuddyPress activities & bbPress Topics.',WP_ULIKE_SLUG); ?></p>
|
173 |
</div>
|
174 |
<div class="col">
|
175 |
+
<div class="icon-container">
|
176 |
+
<i class="wp-ulike-icons-globe"></i>
|
|
|
|
|
|
|
|
|
177 |
</div>
|
178 |
<h3><?php echo _e('Added More Than 20 Language Files',WP_ULIKE_SLUG); ?></h3>
|
179 |
<p><?php echo _e('WP ULike is already translated into +20 languages, with more always in progress.',WP_ULIKE_SLUG); ?></p>
|
180 |
</div>
|
181 |
<div class="col">
|
182 |
+
<div class="icon-container">
|
183 |
+
<i class="wp-ulike-icons-profile-male"></i>
|
|
|
|
|
|
|
|
|
184 |
</div>
|
185 |
<h3><?php echo _e('User Profile Links',WP_ULIKE_SLUG); ?></h3>
|
186 |
<p><?php echo _e('Since WP ULike 2.3, We have synced the likers profile with BuddyPress & UltimateMember plugins.',WP_ULIKE_SLUG); ?></p>
|
187 |
</div>
|
188 |
<div class="col">
|
189 |
+
<div class="icon-container">
|
190 |
+
<i class="wp-ulike-icons-paintbrush"></i>
|
|
|
|
|
|
|
|
|
191 |
</div>
|
192 |
<h3><?php echo _e('New Themes And Styles',WP_ULIKE_SLUG); ?></h3>
|
193 |
<p><?php echo _e('Since WP ULike 2.3, We have made some new styles and themes and you can customize them by your taste.',WP_ULIKE_SLUG); ?></p>
|
194 |
</div>
|
195 |
<div class="col">
|
196 |
+
<div class="icon-container">
|
197 |
+
<i class="wp-ulike-icons-trophy"></i>
|
|
|
|
|
|
|
|
|
198 |
</div>
|
199 |
<h3><?php echo _e('myCRED Points Support',WP_ULIKE_SLUG); ?></h3>
|
200 |
<p><?php echo _e('myCRED is an adaptive points management system that lets you award / charge your users for interacting with your WordPress.',WP_ULIKE_SLUG); ?></p>
|
201 |
</div>
|
202 |
<div class="col">
|
203 |
+
<div class="icon-container">
|
204 |
+
<i class="wp-ulike-icons-map"></i>
|
|
|
|
|
|
|
|
|
205 |
</div>
|
206 |
<h3><?php echo _e('Likers World Map',WP_ULIKE_SLUG); ?></h3>
|
207 |
<p><?php echo _e('Since WP ULike 2.3, We have made a new ability that you can track your likers by their country in the world map & Top Liker widget.',WP_ULIKE_SLUG); ?></p>
|
217 |
<?php else: ?>
|
218 |
|
219 |
<p class="about-description"><?php echo _e('WP ULike is created by many love and time. Enjoy it :)',WP_ULIKE_SLUG); ?></p>
|
220 |
+
<h3 class="wp-people-group"><?php echo _e('Project Leaders',WP_ULIKE_SLUG); ?></h3>
|
221 |
+
<ul id="wp-people-group-project-leaders" class="wp-people-group">
|
222 |
+
<li class="wp-person" id="wp-person-alimir">
|
223 |
<a href="https://profiles.wordpress.org/alimir/"><?php echo get_avatar( 'info@alimir.ir', 64 ); ?></a>
|
224 |
<a class="web" target="_blank" href="https://ir.linkedin.com/in/alimirir/">Ali Mirzaei</a>
|
225 |
<span class="title"><?php echo _e('Project Lead & Developer',WP_ULIKE_SLUG); ?></span>
|
226 |
</li>
|
227 |
</ul>
|
228 |
|
229 |
+
<h3 class="wp-people-group"><?php _e('Translations',WP_ULIKE_SLUG); ?></h3>
|
230 |
<ul>
|
231 |
<li>English (United States)</li>
|
232 |
<li>Persian (Iran)</li>
|
267 |
|
268 |
<p class="about-description"><?php _e('Would you like to help translate the plugin into more languages?',WP_ULIKE_SLUG); ?> <a target="_blank" href="https://www.transifex.com/projects/p/wp-ulike/" title"WP-Translations">[<?php _e('Join our WP-Translations Community',WP_ULIKE_SLUG); ?>]</a></p>
|
269 |
|
270 |
+
<h3 class="wp-people-group"><?php echo _e('Other Plugins',WP_ULIKE_SLUG); ?></h3>
|
271 |
<ul class="wp-people-group">
|
272 |
<li class="wp-person" id="wp-person-alimirzaei">
|
273 |
<a target="_blank" href="https://wordpress.org/plugins/blue-login-style"><img class="gravatar" src="<?php echo plugins_url('/assets', dirname(__FILE__)); ?>/img/blue-login-themes.jpg" alt="Blue Login Themes" /></a>
|
286 |
</li>
|
287 |
</ul>
|
288 |
|
289 |
+
<h3 class="wp-people-group"><?php _e('Like this plugin?',WP_ULIKE_SLUG); ?></h3>
|
290 |
<div class="boxstyle"><p><strong><?php _e('Show your support by Rating 5 Star in <a href="http://wordpress.org/plugins/wp-ulike"> Plugin Directory reviews</a>',WP_ULIKE_SLUG); ?></strong></p></div>
|
291 |
|
292 |
<?php endif; ?>
|
admin/admin.php
CHANGED
@@ -75,7 +75,7 @@
|
|
75 |
'parent' => false,
|
76 |
'title' => __( 'WP ULike', WP_ULIKE_SLUG ),
|
77 |
'position' => 313,
|
78 |
-
'icon_url' => 'dashicons-
|
79 |
),
|
80 |
array(
|
81 |
'wp_ulike_general' => $wp_ulike_general
|
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_general
|
admin/classes/css/font-icons.css
ADDED
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
/------------------------------------------\
|
3 |
+
_ __ _ _____ _ _ _ _
|
4 |
+
| | / \ | | ___ \ | |(_)| | / /
|
5 |
+
| | / /\ \ | | |_/ / _| || || |/ / ___
|
6 |
+
| | / / \ \ | | __/ | | | || || | / _ \
|
7 |
+
| |/ / \ \| | | | |_| | || || |\ \ __/
|
8 |
+
\___/ \__/\_| \__,_|_||_||_| \_\___|
|
9 |
+
|
10 |
+
\--> Alimir, 2017 <--/
|
11 |
+
|
12 |
+
Thanks for using WP ULike plugin...
|
13 |
+
https://wordpress.org/plugins/wp-ulike/
|
14 |
+
|
15 |
+
\------------------------------------------/
|
16 |
+
*/
|
17 |
+
|
18 |
+
@font-face {
|
19 |
+
font-family: 'wp-ulike';
|
20 |
+
src: url('../fonts/wp-ulike.eot?113a2q');
|
21 |
+
src: url('../fonts/wp-ulike.eot?113a2q#iefix') format('embedded-opentype'),
|
22 |
+
url('../fonts/wp-ulike.ttf?113a2q') format('truetype'),
|
23 |
+
url('../fonts/wp-ulike.woff?113a2q') format('woff'),
|
24 |
+
url('../fonts/wp-ulike.svg?113a2q#wp-ulike') format('svg');
|
25 |
+
font-weight: normal;
|
26 |
+
font-style: normal;
|
27 |
+
}
|
28 |
+
|
29 |
+
[class^="wp-ulike-icons-"], [class*=" wp-ulike-icons-"] {
|
30 |
+
/* use !important to prevent issues with browser extensions that change fonts */
|
31 |
+
font-family: 'wp-ulike' !important;
|
32 |
+
speak: none;
|
33 |
+
font-style: normal;
|
34 |
+
font-weight: normal;
|
35 |
+
font-variant: normal;
|
36 |
+
text-transform: none;
|
37 |
+
line-height: 1;
|
38 |
+
|
39 |
+
/* Better Font Rendering =========== */
|
40 |
+
-webkit-font-smoothing: antialiased;
|
41 |
+
-moz-osx-font-smoothing: grayscale;
|
42 |
+
}
|
43 |
+
|
44 |
+
/* wp-ulike dashicons */
|
45 |
+
.dashicons.dashicons-wp-ulike, .dashicons-before.dashicons-wp-ulike::before {
|
46 |
+
font-family: 'wp-ulike' !important;
|
47 |
+
}
|
48 |
+
.dashicons-wp-ulike::before{
|
49 |
+
content: "\e905";
|
50 |
+
}
|
51 |
+
/* wp-ulike dashicons */
|
52 |
+
|
53 |
+
.wp-ulike-icons-thumb_up:before {
|
54 |
+
content: "\e905";
|
55 |
+
}
|
56 |
+
.wp-ulike-icons-thumb_down:before {
|
57 |
+
content: "\e906";
|
58 |
+
}
|
59 |
+
.wp-ulike-icons-thumbs-up:before {
|
60 |
+
content: "\e900";
|
61 |
+
}
|
62 |
+
.wp-ulike-icons-thumbs-down:before {
|
63 |
+
content: "\e901";
|
64 |
+
}
|
65 |
+
.wp-ulike-icons-thumbs-down2:before {
|
66 |
+
content: "\e902";
|
67 |
+
}
|
68 |
+
.wp-ulike-icons-thumbs-up2:before {
|
69 |
+
content: "\e903";
|
70 |
+
}
|
71 |
+
.wp-ulike-icons-like:before {
|
72 |
+
content: "\e904";
|
73 |
+
}
|
74 |
+
.wp-ulike-icons-mobile:before {
|
75 |
+
content: "\e000";
|
76 |
+
}
|
77 |
+
.wp-ulike-icons-bargraph:before {
|
78 |
+
content: "\e018";
|
79 |
+
}
|
80 |
+
.wp-ulike-icons-adjustments:before {
|
81 |
+
content: "\e01d";
|
82 |
+
}
|
83 |
+
.wp-ulike-icons-hourglass:before {
|
84 |
+
content: "\e01f";
|
85 |
+
}
|
86 |
+
.wp-ulike-icons-trophy:before {
|
87 |
+
content: "\e023";
|
88 |
+
}
|
89 |
+
.wp-ulike-icons-map:before {
|
90 |
+
content: "\e025";
|
91 |
+
}
|
92 |
+
.wp-ulike-icons-puzzle:before {
|
93 |
+
content: "\e026";
|
94 |
+
}
|
95 |
+
.wp-ulike-icons-gears:before {
|
96 |
+
content: "\e02b";
|
97 |
+
}
|
98 |
+
.wp-ulike-icons-key:before {
|
99 |
+
content: "\e02c";
|
100 |
+
}
|
101 |
+
.wp-ulike-icons-paperclip:before {
|
102 |
+
content: "\e02d";
|
103 |
+
}
|
104 |
+
.wp-ulike-icons-attachment:before {
|
105 |
+
content: "\e02e";
|
106 |
+
}
|
107 |
+
.wp-ulike-icons-pricetags:before {
|
108 |
+
content: "\e02f";
|
109 |
+
}
|
110 |
+
.wp-ulike-icons-paintbrush:before {
|
111 |
+
content: "\e036";
|
112 |
+
}
|
113 |
+
.wp-ulike-icons-magnifying-glass:before {
|
114 |
+
content: "\e037";
|
115 |
+
}
|
116 |
+
.wp-ulike-icons-circle-compass:before {
|
117 |
+
content: "\e038";
|
118 |
+
}
|
119 |
+
.wp-ulike-icons-linegraph:before {
|
120 |
+
content: "\e039";
|
121 |
+
}
|
122 |
+
.wp-ulike-icons-mic:before {
|
123 |
+
content: "\e03a";
|
124 |
+
}
|
125 |
+
.wp-ulike-icons-strategy:before {
|
126 |
+
content: "\e03b";
|
127 |
+
}
|
128 |
+
.wp-ulike-icons-profile-male:before {
|
129 |
+
content: "\e040";
|
130 |
+
}
|
131 |
+
.wp-ulike-icons-bike:before {
|
132 |
+
content: "\e042";
|
133 |
+
}
|
134 |
+
.wp-ulike-icons-wine:before {
|
135 |
+
content: "\e043";
|
136 |
+
}
|
137 |
+
.wp-ulike-icons-hotairballoon:before {
|
138 |
+
content: "\e044";
|
139 |
+
}
|
140 |
+
.wp-ulike-icons-globe:before {
|
141 |
+
content: "\e045";
|
142 |
+
}
|
143 |
+
.wp-ulike-icons-genius:before {
|
144 |
+
content: "\e046";
|
145 |
+
}
|
146 |
+
.wp-ulike-icons-heart:before {
|
147 |
+
content: "\e04a";
|
148 |
+
}
|
149 |
+
.wp-ulike-icons-global:before {
|
150 |
+
content: "\e052";
|
151 |
+
}
|
152 |
+
.wp-ulike-icons-refresh:before {
|
153 |
+
content: "\e05a";
|
154 |
+
}
|
admin/classes/css/settings.css
CHANGED
@@ -1,3 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
form.wp-ulike h2,
|
2 |
form.wp-ulike p.submit {
|
3 |
display: inline-block;
|
1 |
+
/*
|
2 |
+
/------------------------------------------\
|
3 |
+
_ __ _ _____ _ _ _ _
|
4 |
+
| | / \ | | ___ \ | |(_)| | / /
|
5 |
+
| | / /\ \ | | |_/ / _| || || |/ / ___
|
6 |
+
| | / / \ \ | | __/ | | | || || | / _ \
|
7 |
+
| |/ / \ \| | | | |_| | || || |\ \ __/
|
8 |
+
\___/ \__/\_| \__,_|_||_||_| \_\___|
|
9 |
+
|
10 |
+
\--> Alimir, 2017 <--/
|
11 |
+
|
12 |
+
Thanks for using WP ULike plugin...
|
13 |
+
https://wordpress.org/plugins/wp-ulike/
|
14 |
+
|
15 |
+
\------------------------------------------/
|
16 |
+
*/
|
17 |
+
|
18 |
form.wp-ulike h2,
|
19 |
form.wp-ulike p.submit {
|
20 |
display: inline-block;
|
admin/classes/css/statistics.css
CHANGED
@@ -1,3 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#right-log {
|
2 |
width: 31%;
|
3 |
}
|
1 |
+
/*
|
2 |
+
/------------------------------------------\
|
3 |
+
_ __ _ _____ _ _ _ _
|
4 |
+
| | / \ | | ___ \ | |(_)| | / /
|
5 |
+
| | / /\ \ | | |_/ / _| || || |/ / ___
|
6 |
+
| | / / \ \ | | __/ | | | || || | / _ \
|
7 |
+
| |/ / \ \| | | | |_| | || || |\ \ __/
|
8 |
+
\___/ \__/\_| \__,_|_||_||_| \_\___|
|
9 |
+
|
10 |
+
\--> Alimir, 2017 <--/
|
11 |
+
|
12 |
+
Thanks for using WP ULike plugin...
|
13 |
+
https://wordpress.org/plugins/wp-ulike/
|
14 |
+
|
15 |
+
\------------------------------------------/
|
16 |
+
*/
|
17 |
+
|
18 |
#right-log {
|
19 |
width: 31%;
|
20 |
}
|
admin/classes/fonts/wp-ulike.eot
ADDED
Binary file
|
admin/classes/fonts/wp-ulike.svg
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Generated by IcoMoon</metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="wp-ulike" horiz-adv-x="1024">
|
7 |
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
+
<missing-glyph horiz-adv-x="1024" />
|
9 |
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10 |
+
<glyph unicode="" glyph-name="mobile" d="M48-64h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-448c-8.832 0-16 7.168-16 16v928c0 8.832 7.168 16 16 16h672c8.832 0 16-7.168 16-16v-160c0-8.832 7.168-16 16-16s16 7.168 16 16v160c0 26.464-21.536 48-48 48h-672c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM576 624v-640c0-26.464 21.536-48 48-48h352c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-352c-26.464 0-48-21.536-48-48zM992 624v-640c0-8.832-7.168-16-16-16h-352c-8.832 0-16 7.168-16 16v640c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16zM352 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
|
11 |
+
<glyph unicode="" glyph-name="bargraph" horiz-adv-x="1152" d="M832 624v-640c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v928c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-928c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v352c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-352c0-26.464 21.536-48 48-48h1056c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48zM160-32h-112c-8.8 0-16 7.168-16 16v352c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-352c0-8.832-7.2-16-16-16h-112zM464-32c-8.8 0-16 7.168-16 16v928c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-224zM1120 624v-640c0-8.832-7.2-16-16-16h-224c-8.8 0-16 7.168-16 16v640c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16z" />
|
12 |
+
<glyph unicode="" glyph-name="adjustments" horiz-adv-x="1056" d="M992 960h-928c-26.304 0-64-37.696-64-64v-896c0-26.304 37.696-64 64-64h928c26.304 0 64 37.696 64 64v896c0 26.304-37.696 64-64 64zM1024 0c-0.192-9.088-22.912-31.808-32-32h-928c-9.088 0.192-31.808 22.912-32 32v896c0.192 9.088 22.912 31.808 32 32h928c9.088-0.192 31.808-22.912 32-32v-896zM528 784c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM528 688c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM784 272c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM784 176c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 432c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM272 336c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 480c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM272 256c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16s16 7.168 16 16v96c0 8.832-7.168 16-16 16zM528 608c-8.832 0-16-7.168-16-16v-448c0-8.832 7.168-16 16-16s16 7.168 16 16v448c0 8.832-7.168 16-16 16zM784 320c8.832 0 16 7.168 16 16v448c0 8.832-7.168 16-16 16s-16-7.168-16-16v-448c0-8.832 7.168-16 16-16z" />
|
13 |
+
<glyph unicode="" glyph-name="hourglass" horiz-adv-x="672" d="M672.672 944c0 8.832-7.168 16-16 16h-641.344c-8.832 0-16-7.168-16-16s7.136-16 16-16h641.376c8.832 0 15.968 7.168 15.968 16zM640 764.416v115.584c0 8.832-7.168 16-16 16h-573.376c-8.832 0-16-7.168-16-16v-115.584c0-159.232 121.856-267.2 192.448-316.352-80.928-55.744-195.072-161.824-195.072-316.48v-115.584c0-8.832 7.168-16 16-16h576c8.832 0 16 7.168 16 16v114.656c0 158.784-123.616 267.68-195.040 317.312 80.928 55.744 195.040 161.792 195.040 316.448zM336 185.92l153.92-153.92h-307.84l153.92 153.92zM407.424 461.504c-4.64-2.912-7.424-8.032-7.424-13.504s2.784-10.592 7.424-13.504c60.32-38.24 200.576-144.416 200.576-303.84v-98.656h-73.216c-0.288 0.352-0.416 0.8-0.736 1.12l-182.048 182.048v24.832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-24.832l-182.048-182.048c-0.32-0.32-0.448-0.768-0.736-1.12h-73.216v99.584c0 152.864 125.664 255.392 200.576 302.88 4.64 2.944 7.424 8.064 7.424 13.536s-2.784 10.592-7.424 13.504c-59.52 37.76-200.576 142.816-200.576 302.912v99.584h544v-99.584c0-152.896-125.664-255.392-200.576-302.912zM497.312 672.896h-314.048c-5.728 0-11.040-3.072-13.888-8.032-2.848-4.992-2.816-11.104 0.064-16.064 37.984-64.672 93.44-104.256 152.16-146.208l5.088-3.616c2.784-1.984 6.016-2.976 9.312-2.976s6.528 0.992 9.312 2.976c8.384 5.984 16.832 11.872 25.28 17.76 52.448 36.608 106.688 74.432 140.512 132.064 2.912 4.928 2.944 11.072 0.096 16.032-2.88 4.992-8.16 8.064-13.888 8.064zM352.256 543.008c-5.408-3.776-10.816-7.552-16.224-11.36-48.16 34.4-90.72 65.344-123.072 109.28h254.176c-30.112-38.784-71.488-67.648-114.88-97.92zM15.328-64h641.376c8.832 0 16 7.168 16 16s-7.168 16-16 16h-641.376c-8.832 0-16-7.168-16-16s7.136-16 16-16zM336 352c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16zM336 448c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16z" />
|
14 |
+
<glyph unicode="" glyph-name="trophy" horiz-adv-x="1088" d="M816 928c8.832 0 16 7.168 16 16s-7.168 16-16 16h-544c-8.832 0-16-7.168-16-16s7.168-16 16-16h544zM816 896h-608c-105.056 0-154.016-37.312-176.608-68.608-27.648-38.4-32.832-89.696-14.592-144.448 28.224-84.672 123.072-186.4 181.376-231.584 2.944-2.272 6.4-3.36 9.824-3.36 4.768 0 9.504 2.112 12.672 6.208 5.408 6.976 4.128 17.024-2.848 22.464-53.568 41.472-144.8 138.944-170.624 216.416-14.944 44.704-11.328 85.76 10.176 115.584 26.080 36.192 78.144 55.328 150.624 55.328h48v-304c0-215.232 213.536-339.232 257.152-362.304-0.672-1.792-1.152-3.68-1.152-5.696v-80c0-8.832 7.168-16 16-16s16 7.168 16 16v80c0 1.856-0.48 3.584-1.056 5.248 48.448 22.784 289.056 146.752 289.056 362.752v304h48c72.48 0 124.544-19.136 150.624-55.328 21.504-29.824 25.12-70.88 10.176-115.616-20.16-60.512-120.608-177.696-170.624-216.416-6.976-5.408-8.256-15.456-2.848-22.464 3.168-4.064 7.904-6.176 12.672-6.176 3.424 0 6.88 1.088 9.824 3.328 55.424 42.944 158.752 163.808 181.376 231.584 18.24 54.752 13.056 106.048-14.592 144.448-22.592 31.328-71.552 68.64-176.608 68.64h-64zM800 560c0-194.976-228.864-313.728-271.552-334.176-39.296 21.28-240.448 139.744-240.448 334.176v304h512v-304zM352 64c-36.512 0-64-27.52-64-64v-48c0-8.832 7.168-16 16-16h448c8.832 0 16 7.168 16 16v45.6c0 37.216-28.128 66.4-64 66.4h-352zM736-2.4v-29.6h-416v32c0 18.848 13.152 32 32 32h352c18.24 0 32-14.784 32-34.4z" />
|
15 |
+
<glyph unicode="" glyph-name="map" horiz-adv-x="1312" d="M295.648-61.664c0.288-0.192 0.672-0.096 0.96-0.288 2.336-1.184 4.768-2.048 7.392-2.048 1.408 0 2.816 0.192 4.224 0.576l347.776 94.912 347.776-94.912c1.408-0.384 2.816-0.576 4.224-0.576 2.624 0 5.056 0.864 7.36 2.080 0.32 0.16 0.672 0.096 0.96 0.288l288 176c6.112 3.744 8.992 11.136 7.040 18.016l-159.488 560c-1.312 4.704-4.736 8.544-9.28 10.432-4.544 1.824-9.632 1.536-13.952-0.832l-158.784-89.088c-7.68-4.32-10.432-14.080-6.112-21.792 4.32-7.744 14.048-10.464 21.824-6.112l141.088 79.2 150.624-528.832-256.48-156.768-60.928 487.392c-1.088 8.8-9.376 14.912-17.888 13.888-8.736-1.088-14.976-9.088-13.888-17.856l61.024-488.288-317.12 86.56v87.36c0 8.832-7.168 16-16 16s-16-7.168-16-16v-87.36l-317.152-86.56 61.024 488.288c1.088 8.768-5.12 16.768-13.888 17.856-8.704 1.024-16.768-5.088-17.888-13.888l-60.896-487.392-256.48 156.736 150.624 528.8 141.088-79.2c7.744-4.288 17.472-1.568 21.824 6.112 4.32 7.712 1.568 17.44-6.112 21.792l-158.816 89.12c-4.256 2.4-9.344 2.72-13.92 0.832-4.544-1.888-7.968-5.696-9.28-10.432l-159.488-560c-1.984-6.912 0.896-14.272 7.040-18.016l287.968-176zM645.152 212.224c3.072-2.816 6.944-4.224 10.848-4.224 3.84 0 7.68 1.376 10.752 4.128 10.656 9.696 261.248 239.648 261.248 475.872 0 152.544-119.456 272-272 272s-272-119.456-272-272c0-232.128 250.496-465.92 261.152-475.776zM656 928c136.8 0 240-103.168 240-240 0-195.104-191.776-394.784-239.904-441.824-48.032 47.584-240.096 249.888-240.096 441.824 0 136.832 103.2 240 240 240zM800 688c0 79.392-64.608 144-144 144s-144-64.608-144-144 64.608-144 144-144 144 64.608 144 144zM656 576c-61.76 0-112 50.24-112 112s50.24 112 112 112 112-50.24 112-112-50.24-112-112-112z" />
|
16 |
+
<glyph unicode="" glyph-name="puzzle" horiz-adv-x="1120" d="M641.344 834.976c0 62.24-49.888 125.024-161.344 125.024-98.144 0-164.128-50.24-164.128-125.024 0-43.648 17.664-63.552 29.344-76.736 6.176-6.944 8.672-10.080 8.672-13.216 0-5.184 0-8.32-17.856-9.024h-195.136c-75.040 0-140.896-59.808-140.896-128v-119.424c1.216-30.208 18.272-48.992 44.544-48.992 14.944 0 26.016 8.544 36.768 16.832 14.4 11.040 30.688 23.584 62.688 23.584 54.272 0 112-44.864 112-128 0-84.128-58.496-142.784-111.008-142.784-31.68 0-48.256 13.728-62.912 25.824-10.976 9.088-22.304 18.496-37.568 18.496-26.24 0-43.328-18.784-44.544-49.632v-131.264c0.032-71.52 67.2-136.64 140.928-136.64h196.128c29.696 1.216 48.864 18.72 48.864 44.672 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.488 0 56.512 51.328 93.024 130.72 93.024 79.424 0 130.752-36.512 130.752-93.024 0-31.488-10.848-43.68-21.312-55.488-7.84-8.832-16.736-18.848-16.736-34.432 0-26.304 18.72-43.392 49.536-44.64l126.112-0.032c68.864 0 116.992 53.664 116.992 130.496v148.8c0.832 3.904 10.688 18.816 25.728 18.816 3.072 0 6.176-2.528 13.088-8.672 13.12-11.744 32.992-29.504 76.576-29.504 69.888 0.032 140.672 53.6 140.672 156.064 0 110.528-64.288 160-128 160-43.008 0-67.84-19.648-84.288-32.64-7.296-5.76-14.144-11.2-18.048-11.2-15.072 0-24.928 14.976-25.664 18.272-0.032 0.256-0.032 0.512-0.064 0.768v114.656c0 77.728-49.216 134.144-116.992 134.144h-125.472c-0.416 0.032-0.832 0.064-1.28 0.096-16.896 0.64-16.896 3.744-16.896 8.928 0 3.136 2.496 6.24 8.672 13.216 11.68 13.152 29.376 33.088 29.376 76.736zM588.032 779.456c-7.84-8.832-16.736-18.88-16.736-34.464 0-17.6 8.032-38.784 47.072-40.864 0.736-0.096 1.472-0.128 2.24-0.128h126.336c55.808 0 85.056-51.392 85.056-102.144v-116.256c0-1.152-0.224-2.272 0-3.36 2.944-19.552 26.944-46.048 57.664-46.048 15.040 0 26.112 8.768 37.92 18.080 15.232 12.064 32.544 25.728 64.416 25.728 58.304 0 96-50.24 96-128 0-85.248-56.352-124.032-108.672-124.032-31.328 0-43.488 10.848-55.264 21.344-8.832 7.872-18.848 16.8-34.4 16.8-30.72 0-54.752-26.528-57.664-46.080-0.224-1.088 0-2.208 0-3.36v-150.208c0-48.992-26.336-98.464-85.056-98.464h-125.472c-18.176 0.736-18.176 9.12-18.176 12.672 0 3.104 2.496 6.24 8.672 13.216 11.68 13.184 29.376 33.088 29.376 76.736 0 62.24-50.304 125.024-162.752 125.024-97.312 0-162.72-50.24-162.72-125.024 0-43.648 17.664-63.552 29.376-76.736 6.144-6.944 8.672-10.080 8.672-13.216 0-3.584 0-11.968-17.536-12.672h-195.488c-54.944 0-108.896 51.84-108.896 104.64v130.624c0.704 18.272 8.992 18.272 12.544 18.272 3.712 0 10.24-5.408 17.184-11.136 15.936-13.216 40.096-33.184 83.296-33.184 69.024 0 142.976 70.24 142.976 174.784 0 103.936-74.176 160-144 160-42.88 0-66.528-18.176-82.176-30.24-7.104-5.472-13.248-10.176-17.28-10.176-3.52 0-11.808 0-12.544 17.632v118.784c0 56.576 57.408 96 108.896 96h195.68c0.512 0 0.992 0.032 1.504 0.064v0c39.52 1.472 47.808 23.104 47.808 40.96 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.52 0 55.648 53.088 93.024 132.128 93.024 78.56 0 129.344-36.512 129.344-93.024 0-31.488-10.848-43.712-21.312-55.52z" />
|
17 |
+
<glyph unicode="" glyph-name="gears" horiz-adv-x="1344" d="M118.144 264.96c5.632-1.344 13.28-8.288 15.488-14.624l11.2-27.008c2.528-5.184 2.048-15.456-0.96-20.384l-44.704-73.088c-9.568-15.68-7.584-37.888 5.28-52.288l37.856-37.824c13.184-11.712 36.448-13.824 51.616-4.64l73.088 44.704c4.576 2.816 14.4 3.808 21.28 0.576l26.976-11.136c5.44-1.888 12.384-9.504 13.728-15.136l20.064-83.328c4.256-17.664 21.12-32.192 39.232-33.856 0 0 11.104-1.024 27.744-1.024s27.744 1.024 27.776 1.024c18.080 1.632 34.944 16.192 39.2 33.856l20.096 83.328c1.344 5.6 8.256 13.248 14.592 15.456l27.008 11.2c4.768 2.336 15.808 1.856 20.384-0.96l73.088-44.704c6.432-3.936 14.112-6.016 22.272-6.016 11.040 0 21.728 3.872 30.016 11.264l37.824 37.856c12.224 13.728 14.208 35.936 4.64 51.616l-44.704 73.088c-3.008 4.928-3.488 15.2-0.576 21.28l11.136 26.976c1.888 5.44 9.504 12.384 15.136 13.728l83.328 20.064c17.664 4.256 32.192 21.12 33.856 39.232 0 0 1.024 11.104 1.024 27.744s-1.024 27.744-1.024 27.776c-1.632 18.080-16.192 34.944-33.856 39.232l-83.296 20.032c-5.632 1.344-13.28 8.288-15.488 14.624l-11.2 27.008c-2.528 5.184-2.048 15.456 0.96 20.384l44.704 73.088c9.568 15.68 7.584 37.888-5.28 52.288l-37.856 37.824c-13.216 11.744-36.512 13.856-51.616 4.64l-73.088-44.704c-4.576-2.784-14.432-3.84-21.28-0.576l-26.976 11.136c-5.44 1.888-12.352 9.504-13.696 15.136l-20.096 83.328c-4.256 17.664-21.12 32.192-39.232 33.856-0.064-0.032-11.168 0.992-27.808 0.992s-27.744-1.024-27.776-1.024c-18.080-1.632-34.944-16.192-39.232-33.856l-20.032-83.264c-1.344-5.632-8.288-13.28-14.624-15.488l-27.008-11.2c-4.8-2.336-15.808-1.824-20.384 0.96l-73.056 44.704c-15.136 9.216-37.92 7.616-52.288-5.248l-37.824-37.856c-12.224-13.728-14.208-35.936-4.64-51.616l44.704-73.088c3.008-4.928 3.488-15.2 0.576-21.28l-11.136-26.976c-1.888-5.44-9.504-12.384-15.136-13.728l-83.328-20.064c-17.664-4.256-32.192-21.12-33.856-39.232 0.064 0-0.96-11.104-0.96-27.744s1.024-27.744 1.024-27.776c1.632-18.080 16.192-34.944 33.856-39.232l83.264-20.032zM32 352c0 14.656 0.864 24.544 0.896 24.864 0.384 4.32 5.28 9.984 9.472 11.008l83.328 20.064c16.16 3.904 32.448 18.688 37.504 33.504l10.368 25.184c7.296 14.944 6.272 36.896-2.4 51.104l-44.704 73.056c-2.144 3.552-1.536 10.592 0.576 12.992l36.512 36.544c2.912 2.592 10.336 3.232 13.664 1.216l73.088-44.704c13.856-8.48 37.6-9.056 50.176-2.816l25.216 10.432c15.712 5.408 30.496 21.696 34.4 37.888l20.032 83.296c1.024 4.224 6.688 9.12 11.008 9.504 0.32 0 10.208 0.864 24.864 0.864s24.544-0.864 24.864-0.896c4.32-0.384 9.984-5.28 11.008-9.472l20.064-83.296c3.904-16.16 18.656-32.48 33.504-37.536l25.184-10.368c14.624-7.168 37.28-6.048 51.104 2.4l73.056 44.704c3.328 2.016 11.2 0.96 12.992-0.576l36.544-36.512c2.752-3.104 3.36-10.112 1.216-13.664l-44.704-73.088c-8.672-14.176-9.696-36.16-2.816-50.176l10.432-25.216c5.408-15.712 21.696-30.496 37.888-34.4l83.296-20.032c4.224-1.024 9.12-6.688 9.504-11.008 0-0.32 0.864-10.208 0.864-24.864s-0.864-24.544-0.896-24.864c-0.384-4.32-5.28-9.984-9.472-11.008l-83.328-20.064c-16.16-3.904-32.448-18.688-37.504-33.504l-10.368-25.184c-7.296-14.944-6.272-36.896 2.4-51.104l44.704-73.056c2.144-3.552 1.536-10.592-0.576-12.992l-36.512-36.544c-1.728-1.536-4.864-2.528-8.032-2.528-2.208 0-4.256 0.48-5.6 1.312l-73.088 44.704c-13.824 8.448-37.568 9.056-50.176 2.816l-25.216-10.432c-15.712-5.408-30.496-21.728-34.368-37.888l-20.064-83.296c-1.024-4.224-6.688-9.12-11.008-9.504-0.352 0-10.24-0.864-24.896-0.864s-24.544 0.864-24.864 0.896c-4.32 0.384-9.984 5.28-11.008 9.472l-20.064 83.328c-3.904 16.16-18.688 32.448-33.504 37.504l-25.184 10.368c-6.528 3.2-14.432 4.864-22.88 4.864-10.528 0-20.544-2.592-28.224-7.296l-73.056-44.704c-3.328-2.016-11.232-0.928-12.992 0.576l-36.544 36.544c-2.752 3.104-3.36 10.112-1.216 13.664l44.704 73.088c8.672 14.176 9.696 36.16 2.816 50.176l-10.432 25.216c-5.408 15.712-21.696 30.496-37.888 34.4l-83.296 20.032c-4.224 1.024-9.12 6.688-9.504 11.008 0 0.32-0.864 10.208-0.864 24.864zM416 176c97.056 0 176 78.944 176 176s-78.944 176-176 176-176-78.944-176-176 78.944-176 176-176zM416 496c79.392 0 144-64.608 144-144s-64.608-144-144-144-144 64.608-144 144 64.608 144 144 144zM879.264 789.952c-1.28-1.952-5.92-4.416-8.288-4.416l-59.552 0.576c-14.464 0-28.96-10.272-33.696-23.872 0 0-2.624-7.456-5.504-18.88s-4.096-19.232-4.096-19.232c-2.24-14.432 5.792-30.4 18.688-37.152l52.512-27.52c2.016-1.056 4.992-5.504 5.312-8.736l2.976-20.32c0.48-2.24-1.056-7.36-2.688-8.96l-42.304-41.472c-10.592-10.368-13.376-28.096-6.080-42.016l19.168-32c8.096-11.904 25.632-17.984 39.392-13.696l58.368 17.856c3.168 0 6.336-1.216 8.128-2.656l16.48-12.16c1.92-1.28 4.448-5.984 4.416-8.288l-0.576-59.264c-0.128-14.592 10.112-29.216 23.872-34.016 0 0 7.456-2.624 18.88-5.504s19.232-4.096 19.232-4.096c0.832-0.128 4.16-0.384 4.992-0.384 13.056 0 26.304 7.84 32.16 19.072l27.52 52.512c1.056 2.016 5.504 4.992 8.736 5.312l21.216 3.072c3.2 0 6.976-1.664 8.032-2.752l41.472-42.304c10.080-10.304 27.072-13.984 42.016-6.080l31.968 19.168c12.224 8.32 18.144 25.28 13.728 39.392l-17.664 56.544c-0.672 2.176 0.384 7.424 2.496 9.952l12.16 16.48c1.28 1.952 5.92 4.416 8.288 4.416l59.552-0.576c14.464 0 28.96 10.272 33.696 23.872 0 0 2.624 7.456 5.504 18.88s4.096 19.232 4.096 19.232c2.24 14.432-5.792 30.4-18.688 37.152l-52.512 27.52c-2.016 1.056-4.992 5.504-5.312 8.736l-2.944 20.256c-0.48 2.24 1.056 7.36 2.688 8.96l42.304 41.472c10.592 10.368 13.376 28.096 6.080 42.016l-19.168 32c-8.096 11.872-25.6 18.016-39.392 13.728l-58.4-17.856c-3.168 0-6.336 1.216-8.128 2.656l-16.48 12.16c-1.92 1.28-4.448 5.984-4.416 8.288l0.576 59.264c0.128 14.592-10.112 29.216-23.872 34.016 0 0-7.456 2.624-18.88 5.504s-19.232 4.096-19.232 4.096c-0.832 0.096-4.16 0.352-4.992 0.352-13.056 0-26.304-7.84-32.16-19.072l-27.52-52.512c-1.056-2.016-5.504-4.992-8.736-5.312l-21.216-3.040c-3.2 0-6.976 1.664-8.032 2.752l-41.472 42.304c-10.048 10.272-27.008 13.984-42.016 6.080l-32-19.136c-12.224-8.32-18.144-25.28-13.728-39.392l17.664-56.544c0.672-2.176-0.384-7.424-2.496-9.952l-12.128-16.48zM905.504 771.648l10.976 14.912c8.576 10.144 11.904 26.688 7.936 39.328l-17.632 56.512c-0.16 0.896 0.544 2.912 0.384 2.944l30.336 18.176 3.616-0.544 41.504-42.304c7.36-7.488 19.488-12.352 30.88-12.352 2.624 0 5.152 0.256 6.528 0.608l18.4 2.72c13.184 1.152 27.232 10.496 33.376 22.208l27.488 52.48c0.512 0.8 2.528 1.952 3.84 1.952 0.352-0.032 6.88-1.12 16.416-3.488 9.504-2.4 15.776-4.544 16.064-4.672 0.992-0.416 2.432-2.496 2.496-3.52l-0.576-59.264c-0.128-13.248 7.84-28.128 18.144-34.848l14.88-10.976c9.888-8.352 26.848-11.872 39.328-7.936l56.768 17.664c1.344 0 2.848-0.832 2.656-0.416l18.176-30.336c0.352-0.832 0-2.944-0.544-3.616l-42.304-41.504c-9.44-9.312-14.336-25.44-11.744-37.408l2.688-18.4c1.152-13.184 10.496-27.232 22.24-33.376l52.48-27.488c0.896-0.576 2.016-2.816 1.952-3.84-0.032-0.352-1.12-6.88-3.488-16.416-2.4-9.504-4.544-15.776-4.672-16.064-0.416-0.992-2.496-2.432-3.52-2.496l-59.584 0.576c-13.152 0-27.872-7.968-34.528-18.144l-10.944-14.88c-8.576-10.144-11.904-26.688-7.936-39.328l17.632-56.512c0.16-0.864-0.544-2.912-0.384-2.944l-30.336-18.176-3.616 0.544-41.504 42.304c-7.36 7.488-19.488 12.352-30.88 12.352-2.624 0-5.152-0.256-6.528-0.608l-18.4-2.72c-13.184-1.152-27.232-10.496-33.376-22.208l-27.488-52.48c-0.512-0.8-2.528-1.952-3.84-1.952v0c-0.352 0.032-6.88 1.12-16.416 3.488-9.504 2.4-15.776 4.544-16.064 4.672-0.992 0.416-2.432 2.496-2.496 3.52l0.576 59.264c0.128 13.248-7.84 28.128-18.144 34.848l-14.88 10.976c-7.104 6.016-17.568 9.6-28 9.6-4.032 0-7.872-0.576-11.36-1.664l-56.768-17.664c-1.376 0-2.88 0.736-2.656 0.416l-18.176 30.336c-0.352 0.832 0 2.944 0.544 3.616l42.304 41.504c9.44 9.312 14.336 25.44 11.744 37.408l-2.688 18.368c-1.152 13.184-10.496 27.232-22.24 33.376l-52.48 27.488c-0.896 0.576-2.016 2.816-1.952 3.84 0.032 0.352 1.12 6.88 3.488 16.416 2.4 9.504 4.544 15.776 4.672 16.064 0.416 0.992 2.496 2.432 3.52 2.496l59.584-0.576c13.152 0 27.872 7.968 34.528 18.144zM1056 576c52.928 0 96 43.072 96 96s-43.072 96-96 96-96-43.072-96-96 43.072-96 96-96zM1056 736c35.296 0 64-28.704 64-64s-28.704-64-64-64-64 28.704-64 64 28.704 64 64 64z" />
|
18 |
+
<glyph unicode="" glyph-name="key" d="M469.856 489.664c3.744 0 7.52 1.312 10.56 3.968l362.144 317.504-21.12 24.064-362.144-317.472c-6.656-5.824-7.328-15.936-1.472-22.592 3.168-3.616 7.584-5.472 12.032-5.472zM326.016-64c196.544 0 313.984 154.56 313.984 304 0 43.072-10.304 90.528-25.536 121.344l144.704 72.352c5.408 2.72 8.832 8.256 8.832 14.304v128h96c0.352 0 3.264 0.192 3.616 0.192 21.312 1.44 27.68 8.224 28.384 31.808v128h96c4.128 0 6.976-0.448 8.896-0.736 3.872-0.608 11.104-1.728 17.376 3.904 6.464 5.76 6.176 13.056 5.92 19.488-0.064 2.304-0.192 5.344-0.192 9.344v144.992c0 25.92-21.088 47.008-47.008 47.008h-124c-11.328 0-22.336-4.128-31.008-11.648l-421.984-369.92c-20.768 4.16-52.16 9.568-74.016 9.568-179.744 0-325.984-146.24-325.984-325.984s146.24-326.016 326.016-326.016zM326.016 556c16.032 0 43.488-3.84 75.328-10.496 4.96-1.088 10.048 0.32 13.824 3.616l427.872 375.104c2.784 2.432 6.336 3.776 9.952 3.776h124c8.288 0 15.008-6.72 15.008-15.008v-144.992h-112c-8.832 0-16-7.168-16-16v-144h-112c-8.832 0-16-7.168-16-16v-134.112l-151.168-75.584c-4.192-2.080-7.264-5.952-8.384-10.496s-0.192-9.376 2.56-13.184c14.080-19.424 28.992-67.648 28.992-118.624 0-133.696-105.472-272-281.984-272-162.112 0-294.016 131.904-294.016 294.016s131.904 293.984 294.016 293.984zM272 96c61.76 0 112 50.24 112 112s-50.24 112-112 112-112-50.24-112-112 50.24-112 112-112zM272 288c44.096 0 80-35.904 80-80s-35.904-80-80-80-80 35.904-80 80 35.904 80 80 80z" />
|
19 |
+
<glyph unicode="" glyph-name="paperclip" horiz-adv-x="1088" d="M178.784-59.744c64.48 0 133.856 32.832 182.624 81.632l540.256 549.408c27.712 27.712 43.136 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-56.576 56.544-149.152 56.032-206.784-1.536l-414.112-432.96c-6.496-6.816-6.272-17.664 0.576-24.192 6.816-6.528 17.6-6.272 24.192 0.544l413.824 432.704c43.936 43.968 114.912 44.512 158.112 1.28 20.896-20.896 32.32-48.832 32.096-78.656-0.192-29.92-12.064-58.112-33.472-79.552l-540.256-549.44c-56.832-56.8-173.632-108.32-243.68-38.208-33.184 33.184-49.824 73.888-48.096 117.728 1.696 43.52 22.176 87.040 57.824 122.656l617.472 626.688c32.832 32.832 84.128 51.84 140.672 52.032 0.352 0 0.672 0 1.024 0 56.064 0 106.656-18.464 138.944-50.752 32.512-32.48 51.008-83.488 50.784-139.968-0.224-56.544-19.232-107.808-52.288-140.864l-476.64-495.52c-6.56-6.816-6.336-17.632 0.48-24.192 6.784-6.528 17.632-6.336 24.16 0.48l476.416 495.296c39.2 39.168 61.824 99.2 62.048 164.672 0.288 65.504-21.888 125.408-60.768 164.288-38.656 38.656-98.048 60.8-163.136 60.8-0.384 0-0.768 0-1.152 0-65.504-0.256-125.536-22.88-164.8-62.144l-617.504-626.72c-86.432-86.432-90.464-207.84-9.632-288.672 30.304-30.272 68.928-43.328 109.536-43.328z" />
|
20 |
+
<glyph unicode="" glyph-name="attachment" d="M607.552 432.928c5.248-0.576 10.464-0.832 15.68-0.832 38.912 0 76.224 15.392 104.256 43.424l236.96 236.96c27.712 27.712 43.168 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-27.2 27.2-63.36 42.144-102.016 42.144-0.352 0-0.672 0-1.056 0-38.944-0.256-75.648-15.68-103.36-43.392l-236.96-236.96c-35.040-35.040-50.208-84.768-40.608-133.024 1.856-9.28 11.072-15.328 20.128-13.408 9.28 1.856 15.296 10.848 13.44 20.096-7.392 37.024 4.288 75.232 31.232 102.144l236.96 236.96c21.312 21.344 49.536 33.184 79.424 33.376 31.2 0 57.76-11.2 78.656-32.096s32.32-48.864 32.128-78.656c-0.224-29.92-12.064-58.112-33.408-79.424l-236.96-236.96c-24.448-24.416-58.016-36.256-92.128-32.768-9.12 1.056-17.824-5.792-18.816-15.2-1.024-9.472 5.792-17.888 15.168-18.88zM484.48 215.264c36.736 36.736 51.456 88.608 39.328 138.688-2.208 9.184-11.232 14.912-20.672 12.608-9.184-2.208-14.816-11.456-12.608-20.64 9.312-38.432-2.016-78.208-30.272-106.496l-236.96-236.96c-21.312-21.344-49.536-33.184-79.424-33.376-30.688-0.16-57.76 11.168-78.656 32.096-20.896 20.896-32.32 48.832-32.096 78.656 0.192 29.92 12.064 58.112 33.376 79.456l236.96 236.96c24.672 24.672 58.304 36.608 92.992 32.672 9.216-0.704 17.888 5.664 18.944 15.072 1.056 9.376-5.664 17.856-15.072 18.944-44.928 5.056-88.96-10.368-121.056-42.464l-236.96-236.96c-27.712-27.712-43.136-64.448-43.392-103.392-0.288-39.040 14.688-75.648 42.112-103.104 27.2-27.2 63.36-42.144 102.016-42.144 0.352 0 0.672 0 1.056 0 38.944 0.256 75.648 15.68 103.36 43.392l237.024 236.992zM727.488 676.096c-6.688 6.688-17.504 6.688-24.192 0l-432-432c-6.688-6.656-6.688-17.504 0-24.192 3.328-3.328 7.712-5.024 12.096-5.024s8.736 1.664 12.096 5.024l432 432c6.688 6.688 6.688 17.504 0 24.192z" />
|
21 |
+
<glyph unicode="" glyph-name="pricetags" horiz-adv-x="1344" d="M1296 960h-320c-22.112 0-50.368-12.032-65.504-27.84l-42.56-42.88c-6.208-6.272-6.144-16.416 0.128-22.624 6.208-6.208 16.416-6.176 22.624 0.096l42.688 43.072c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 16-7.168 16-16v-321.568c0-13.152-8.672-33.472-18.368-42.784l-450.592-447.104c-6.432-6.112-17.12-5.952-23.36 0.256l-84.736 84.768c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l84.736-84.768c9.408-9.376 21.888-14.112 34.368-14.112 12.224 0 24.48 4.512 33.984 13.568l450.624 447.136c15.936 15.296 27.968 43.552 27.968 65.664v321.568c0 26.464-21.536 48-48 48zM1249.216 800c0 35.296-28.704 64-64 64s-64-28.704-64-64 28.704-64 64-64 64 28.704 64 64zM1153.216 800c0 17.632 14.336 32 32 32s32-14.368 32-32-14.336-32-32-32-32 14.368-32 32zM526.784 832c-22.112 0-50.368-12.032-65.536-27.84l-447.776-452.192c-18.176-18.944-17.92-49.504 0.672-68.096l333.696-333.696c9.12-9.152 21.344-14.176 34.432-14.176 12.672 0 24.64 4.768 33.888 13.632l450.592 447.104c15.968 15.296 28.032 43.552 28.032 65.696v321.568c0 26.464-21.536 48-48 48h-320zM864 784v-321.568c0-13.184-9.888-33.472-19.584-42.784l-450.592-447.104c-6.24-5.92-17.28-5.792-23.328 0.256l-333.728 333.664c-6.24 6.272-6.368 16.96-0.416 23.136l447.808 452.224c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 17.216-7.168 17.216-16zM736 736c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM736 640c-17.664 0-32 14.368-32 32s14.336 32 32 32 32-14.368 32-32-14.336-32-32-32z" />
|
22 |
+
<glyph unicode="" glyph-name="paintbrush" horiz-adv-x="704" d="M492.896 288h146.56c33.696 0 61.088 27.392 64.544 61.088v549.824c-3.456 33.696-30.848 61.088-64.544 61.088h-574.912c-33.696 0-61.088-27.392-64.544-61.088v-549.824c3.456-33.696 30.848-61.088 64.544-61.088h158.784c11.136 0 66.656-2.368 66.656-49.344 0-83.904-17.696-122.944-24.384-137.664l-1.568-3.488 12.896-5.568v-0.416l-14.304 2.88c-0.544-1.056-0.96-2.176-1.216-3.328-4.928-13.152-7.424-26.656-7.424-40.224 0.032-68.704 39.392-114.848 98.016-114.848 59.232 0 99.008 46.144 99.008 114.848 0 12.512-2.112 24.96-6.336 37.152-0.16 3.648-1.568 7.040-3.808 9.664-0.832 1.92-1.92 4-3.232 6.464-7.008 13.28-21.632 40.864-21.632 134.528 0 19.84 20.48 49.344 76.896 49.344zM32 574.112h640v-126.112h-640v126.112zM64.544 928h574.912c16.032 0 29.088-13.056 32.544-29.088v-292.768h-640v292.768c3.456 16.032 16.512 29.088 32.544 29.088zM409.344 89.152c0.896-1.696 1.664-3.104 2.976-6.048 0-0.032 0.096-0.224 0.224-0.512 0.128-0.416 0.256-0.8 0.416-1.216 4-10.016 6.016-20.32 6.016-30.528 0.032-40.064-17.568-82.848-66.976-82.848-48.672 0-65.984 42.784-65.984 82.848 0 10.208 2.016 20.512 6.016 30.528 0.128 0.384 0.288 0.736 0.384 1.12 0.448 0.96 0.992 2.176 1.056 2.304l1.344 2.976c7.424 16.448 27.232 60.032 27.232 150.88-0.064 64.224-62.048 81.344-99.648 81.344 0 0 0 0-0.032 0h-157.824c-16.032 0-29.088 13.056-32.544 29.088v66.912h640v-66.912c-3.456-16.032-16.512-29.088-32.544-29.088h-146.56c-79.904 0-108.896-48.672-108.896-81.344 0-101.6 17.12-133.984 25.344-149.504z" />
|
23 |
+
<glyph unicode="" glyph-name="magnifying-glass" d="M336 960c-185.28 0-336-150.72-336-336s150.72-336 336-336c87.2 0 166.496 33.664 226.272 88.32 0.704-1.248 1.344-2.56 2.432-3.648l68.832-68.832c-5.76-9.728-9.024-20.736-9.024-32.352 0-17.088 6.656-33.152 18.752-45.248l271.52-271.52c12.064-12.064 28.128-18.72 45.216-18.72s33.152 6.656 45.248 18.752 18.752 28.16 18.752 45.248-6.656 33.152-18.752 45.248l-271.52 271.52c-20.288 20.288-53.088 23.328-77.44 9.568l-68.96 68.96c-1.088 1.088-2.368 1.728-3.648 2.432 54.656 59.776 88.32 139.072 88.32 226.272 0 185.28-150.72 336-336 336zM711.104 294.144l271.52-271.52c6.048-6.048 9.376-14.080 9.376-22.624s-3.328-16.576-9.376-22.624c-12.128-12.064-33.12-12.064-45.248 0l-271.52 271.52c-6.016 6.048-9.376 14.080-9.376 22.624s3.328 16.576 9.376 22.624c6.048 6.016 14.080 9.376 22.624 9.376s16.544-3.328 22.624-9.376zM336 320c-167.616 0-304 136.384-304 304s136.384 304 304 304 304-136.384 304-304-136.384-304-304-304zM336 864c-132.352 0-240-107.648-240-240s107.648-240 240-240 240 107.648 240 240-107.648 240-240 240zM336 416c-114.688 0-208 93.312-208 208s93.312 208 208 208 208-93.312 208-208-93.312-208-208-208z" />
|
24 |
+
<glyph unicode="" glyph-name="circle-compass" horiz-adv-x="736" d="M368.448 768c8.832 0 16 7.168 16 16v48h15.552c8.832 0 16 7.168 16 16v96c0 8.832-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16h16.448v-48c0-8.832 7.136-16 16-16zM352 928h32v-64h-32v64zM8.576-58.144c2.368-1.248 4.896-1.856 7.424-1.856 5.76 0 11.328 3.136 14.144 8.576l137.344 261.536c61.6-30.944 129.888-47.68 200.928-47.68 70.848 0 139.008 16.672 200.48 47.456l136.896-261.312c2.88-5.44 8.448-8.576 14.176-8.576 2.496 0 5.056 0.608 7.424 1.824 7.808 4.128 10.848 13.792 6.752 21.632l-137.216 261.92c31.712 18.88 61.504 41.344 88.256 68.096 31.2 31.2 31.2 81.952 0 113.12-30.24 30.24-83.008 30.176-113.12 0-15.136-15.136-31.808-28.16-49.44-39.36l-75.456 144.032c29.216 23.328 48.352 58.784 48.352 98.976 0 70.080-57.024 127.136-127.136 127.136s-127.040-57.056-127.040-127.168c0-40.16 19.072-75.584 48.224-98.912l-75.616-143.936c-17.536 11.2-34.112 24.16-49.152 39.2-30.24 30.24-83.008 30.176-113.12 0-31.2-31.2-31.2-81.952 0-113.12 26.624-26.624 56.288-49.024 87.84-67.84l-137.664-262.144c-4.128-7.84-1.12-17.504 6.72-21.6zM108.224 398.016c12.832 0 24.896-4.992 33.984-14.048 60.352-60.352 140.672-93.568 226.24-93.568s165.952 33.216 226.304 93.568c18.112 18.144 49.76 18.080 67.872 0 18.72-18.72 18.72-49.152 0-67.872-78.464-78.432-182.976-121.664-294.176-121.664-111.264 0-215.68 43.232-294.112 121.664-18.72 18.72-18.72 49.152 0 67.872 9.024 9.024 21.056 14.048 33.888 14.048zM273.344 610.208c0 52.448 42.656 95.136 95.104 95.136s95.136-42.688 95.136-95.136-42.688-95.136-95.136-95.136-95.104 42.72-95.104 95.136zM316.768 494.304c15.808-7.072 33.248-11.232 51.68-11.232 18.368 0 35.744 4.096 51.52 11.136l74.72-142.624c-38.848-18.944-81.696-29.248-126.24-29.248-44.672 0-87.616 10.336-126.528 29.376l74.848 142.592z" />
|
25 |
+
<glyph unicode="" glyph-name="linegraph" horiz-adv-x="1344" d="M1248 960c-52.928 0-96-43.072-96-96 0-28.416 12.672-53.728 32.352-71.328l-281.6-448.992c-11.872 5.28-24.96 8.32-38.752 8.32-27.776 0-52.608-12.032-70.176-30.944l-290.336 183.84c5.376 11.968 8.512 25.152 8.512 39.104 0 52.928-43.072 96-96 96s-96-43.072-96-96c0-28.928 13.12-54.592 33.408-72.192l-220.64-351.2c-11.328 4.736-23.744 7.392-36.768 7.392-52.928 0-96-43.072-96-96s43.072-96 96-96 96 43.072 96 96c0 28.416-12.64 53.696-32.32 71.296l220.928 351.68c10.976-4.416 22.88-6.976 35.392-6.976 27.488 0 52.128 11.744 69.632 30.304l290.496-183.936c-5.152-11.776-8.128-24.704-8.128-38.368 0-52.928 43.072-96 96-96s96 43.072 96 96c0 27.616-11.872 52.352-30.624 69.888l281.92 449.472c11.328-4.704 23.712-7.36 36.704-7.36 52.928 0 96 43.072 96 96s-43.072 96-96 96zM160 32c0-35.296-28.704-64-64-64s-64 28.704-64 64 28.704 64 64 64 64-28.704 64-64zM416 480c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM864 192c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM1248 800c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z" />
|
26 |
+
<glyph unicode="" glyph-name="mic" horiz-adv-x="480" d="M224 191.776v-127.776h-94.912c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h320c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-97.088v127.776c127.136 8.896 226.176 113.92 226.176 242.048v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.68-17.088-17.12v-60.384c0-115.104-92.8-208.704-206.912-208.704s-206.912 93.632-206.912 208.704v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.648-17.088-17.088v-60.384c0-128.096 99.040-233.12 224-242.016zM385.088-2.4v-29.6h-288v32c0 18.848 13.152 32 32 32h224c18.24 0 32-14.784 32-34.4zM241.088 961.088c-80 0-145.088-65.888-145.088-146.912v-380.384c0-80.992 65.088-146.912 145.088-146.912s145.088 65.92 142.912 146.912v380.384c2.176 81.024-62.912 146.912-142.912 146.912zM352 433.824c0-62.144-49.76-112.704-110.912-112.704s-113.088 50.528-113.088 112.704v380.352c0 62.144 51.936 112.704 113.088 112.704s110.912-50.528 110.912-112.704v-380.352z" />
|
27 |
+
<glyph unicode="" glyph-name="strategy" horiz-adv-x="736" d="M704-48c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16s7.168-16 16-16h576c8.832 0 16 7.168 16 16zM40.768 660.672c-13.376-8.896-33.664-35.968-14.432-74.432 15.968-31.904 49.28-70.944 84.704-81.248 18.048-5.312 35.84-3.104 51.36 6.272 35.168 21.056 76.704 49.536 94.304 61.76 22.208-11.232 50.24-13.568 78.72-6.24 0.128 0.032 0.256 0.096 0.384 0.128-1.664-52.832-19.552-85.824-107.008-167.040-77.952-72.352-124.192-167.392-123.744-254.272 0.32-56.992 21.088-105.92 60.16-141.408 2.976-2.72 6.816-4.192 10.784-4.192h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-441.632c-29.408 28.96-45.024 68.16-45.28 113.76-0.416 76.864 43.104 165.28 113.504 230.656 93.28 86.592 117.408 127.616 117.408 199.584 0 1.312-0.448 2.464-0.736 3.68 17.504 9.44 32.64 21.92 42.976 37.024 12.96 18.88 40.864 67.36 20.16 110.272-3.84 7.904-13.408 11.264-21.376 7.424-7.936-3.84-11.296-13.408-7.424-21.376 9.312-19.296 2.688-48.544-17.728-78.24-11.776-17.152-32.832-31.008-56.352-37.024-23.904-6.112-46.624-3.424-62.464 7.424-5.536 3.776-12.8 3.744-18.272-0.128-0.576-0.384-56.864-40.032-100.768-66.368-8.032-4.8-16.512-5.824-25.984-3.008-24.768 7.232-52 38.784-65.024 64.832-10.528 21.056 0.256 31.104 5.152 34.688 110.304 95.264 165.664 194.24 167.936 198.432 2.112 3.904 2.56 8.512 1.152 12.768-0.16 0.48-11.2 34.016-17.28 65.056 33.472-20.16 91.040-48.32 150.976-48.32 83.328 0 277.056-31.104 277.056-319.232 0-1.568-0.288-158.208-63.040-330.464-3.040-8.288 1.248-17.472 9.568-20.512 1.824-0.608 3.648-0.928 5.472-0.928 6.528 0 12.672 4.032 15.040 10.528 64.672 177.536 64.992 334.912 64.96 341.472 0 325.856-236.576 351.168-309.056 351.168-80.288 0-160.384 60.896-161.152 61.536-4.896 3.68-11.36 4.288-16.864 1.632-5.472-2.688-8.928-8.256-8.928-14.336 0-31.392 14.88-82.176 20.672-100.704-13.376-22.336-66.112-104.992-155.904-182.624zM559.52 910.72c-51.232 34.528-108.512 49.28-191.52 49.28-8.832 0-16-7.168-16-16s7.168-16 16-16c76.16 0 128.096-13.088 173.664-43.808 74.048-49.984 162.336-149.568 162.336-340.192 0-46.432 0-110.016-31.52-236.128-2.112-8.576 3.072-17.248 11.648-19.392 1.312-0.32 2.592-0.48 3.872-0.48 7.2 0 13.728 4.832 15.52 12.128 32.48 129.888 32.48 195.776 32.48 243.872 0 204.672-95.968 312.416-176.48 366.72z" />
|
28 |
+
<glyph unicode="" glyph-name="profile-male" horiz-adv-x="1152" d="M16-63.456c8.576-2.144 17.344 2.816 19.584 11.328 32.96 122.976 166.912 154.848 246.976 173.92 20.064 4.768 35.904 8.544 46.208 12.992 91.2 39.584 120.928 103.264 129.824 149.728 1.088 5.6-0.928 11.36-5.28 15.136-47.488 40.992-87.552 102.528-112.832 173.312-0.704 2.016-1.824 3.872-3.296 5.472-33.44 36.352-52.64 74.784-52.64 105.408 0 17.888 6.752 29.888 21.952 38.944 4.64 2.784 7.552 7.68 7.776 13.056 7.072 163.008 123.168 291.328 265.568 292.16 0.16 0 3.264-0.224 3.424-0.224 143.104-1.984 258.464-133.056 262.592-298.368 0.128-4.576 2.176-8.864 5.696-11.808 10.016-8.48 14.688-19.232 14.688-33.824 0-25.632-13.664-57.152-38.432-88.704-1.184-1.504-2.080-3.232-2.688-5.056-25.6-81.152-71.552-152.8-126.016-196.64-4.608-3.712-6.784-9.664-5.696-15.456 8.896-46.432 38.624-110.080 129.824-149.728 10.784-4.672 27.52-8.32 48.736-12.896 79.264-17.152 211.904-45.92 244.448-167.424 1.92-7.136 8.384-11.84 15.424-11.84 1.376 0 2.752 0.192 4.16 0.544 8.544 2.304 13.6 11.072 11.328 19.616-37.6 140.384-187.872 172.928-268.576 190.4-18.72 4.064-34.88 7.552-42.752 11.008-59.52 25.856-96.192 65.248-109.152 117.28 55.264 47.456 101.504 120.672 127.936 202.784 28.064 36.48 43.488 74.048 43.488 106.144 0 21.408-6.912 39.264-20.608 53.216-7.616 179.328-135.584 320.544-294.4 322.816l-4.768 0.064c-155.936-0.832-284.448-138.336-295.68-314.56-20.032-14.72-30.208-35.36-30.208-61.568 0-37.856 21.408-83.136 58.88-124.672 25.888-71.136 66.016-133.632 113.792-177.376-12.896-52.224-49.6-91.744-109.248-117.632-7.712-3.36-23.072-7.040-40.864-11.264-81.312-19.328-232.608-55.328-270.496-196.704-2.272-8.544 2.784-17.28 11.328-19.584z" />
|
29 |
+
<glyph unicode="" glyph-name="bike" horiz-adv-x="1792" d="M1456 608c-61.568 0-119.136-16.928-168.832-45.952l-217.632 333.952h307.168c-0.416-15.936-4.128-42.592-22.368-63.552-18.784-21.536-49.152-32.448-90.336-32.448-8.832 0-16-7.168-16-16s7.168-16 16-16c50.848 0 89.344 14.592 114.432 43.392 37.216 42.752 29.76 100.352 29.408 102.784-1.088 7.904-7.84 13.824-15.84 13.824h-352c-5.888 0-11.296-3.232-14.048-8.384-2.816-5.152-2.56-11.424 0.672-16.384l90.592-139.008h-507.68l-98.656 163.776h177.12c8.832 0 16 7.168 16 16s-7.168 16-16 16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h74.048c0.32-0.736 0.384-1.536 0.8-2.24l109.184-181.184-97.728-172.48c-45.28 22.752-96.224 35.904-150.304 35.904-185.28 0-336-150.72-336-336s150.72-336 336-336c178.816 0 325.024 140.512 333.44 320h354.56c0.928-18.528-3.072-43.776-20.608-63.648-18.944-21.472-49.696-32.352-91.392-32.352-8.832 0-16-7.168-16-16s7.168-16 16-16c51.456 0 90.368 14.624 115.648 43.456 36.544 41.728 29.664 97.152 29.376 99.488-1.056 7.968-7.84 13.92-15.872 13.92h-125.696l225.504 442.88 119.36-183.168c-84.8-61.024-140.32-160.32-140.32-272.576 0-185.28 150.72-336 336-336s336 150.72 336 336-150.72 336-336 336zM1107.36 736l-219.136-434.176-259.392 434.176h478.528zM602.976 713.12l258.080-428.256h-189.696c-4.352 114.4-65.984 214.144-157.184 271.488l88.8 156.768zM639.36 284.864h-279.008l138.048 243.68c81.536-51.808 136.608-141.184 140.96-243.68zM336-32c-167.616 0-304 136.384-304 304s136.384 304 304 304c48.32 0 93.888-11.648 134.528-31.776l-151.552-267.456c-2.816-4.928-2.784-11.008 0.096-15.936 2.848-4.896 8.128-7.936 13.824-4.8h306.144c-9.952-161.856-141.856-288.032-303.040-288.032zM1456-32c-167.616 0-304 136.384-304 304 0 101.024 49.728 190.464 125.824 245.76l167.904-257.632c3.072-4.672 8.192-7.264 13.408-7.264 3.008 0 6.016 0.832 8.736 2.592 7.36 4.8 9.472 14.752 4.672 22.144l-167.904 257.632c44.64 25.792 96.224 40.768 151.36 40.768 167.616 0 304-136.384 304-304s-136.384-304-304-304z" />
|
30 |
+
<glyph unicode="" glyph-name="wine" horiz-adv-x="736" d="M729.664 714.848c0 72.096-21.984 177.088-63.968 238.208-2.976 4.352-7.904 6.944-13.184 6.944h-575.36c-5.28 0-10.208-2.592-13.184-6.944-41.984-61.184-63.968-166.144-63.968-238.208 0-189.824 151.36-400.928 352-411.808v-271.040h-131.168c-36.512 2.4-64-25.088-64-61.6v-18.4c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v16c0 37.248-28.128 66.4-64 64h-124.832v271.040c200.64 10.88 345.664 221.984 345.664 411.808zM540.832-32h-352v2.4c0 18.848 13.152 32 32 32h288c18.272 0 32-14.784 32-34.4zM85.824 928h558.016c33.696-54.144 52.192-143.040 53.536-205.696-27.040 6.272-55.872 9.92-88.64 9.92-101.152 0-152.288-29.472-201.76-57.984-47.904-27.616-93.152-53.696-185.728-53.696s-137.76 26.144-185.632 53.76l-0.96 0.576c-1.6 13.408-2.656 26.784-2.656 39.968 0 62.816 18.816 156.864 53.824 213.152zM41.952 633.984c43.424-23.968 93.216-45.376 179.328-45.376 101.12 0 152.256 29.472 201.728 57.984 47.904 27.584 93.152 53.696 185.76 53.696 32.8 0 61.408-3.52 87.648-10.24-12.704-169.984-152.864-356-331.552-356-159.168-0.032-287.648 147.584-322.912 299.936z" />
|
31 |
+
<glyph unicode="" glyph-name="hotairballoon" horiz-adv-x="896" d="M896 659.168c0 202.432-146.528 300.832-448 300.832s-448-98.4-448-300.832c0-232.8 421.536-501.376 439.456-512.672 0.032-0.032 0.096 0 0.16-0.032 0.352-0.224 0.736-0.224 1.12-0.416 2.304-1.216 4.736-2.048 7.264-2.048s4.96 0.832 7.264 2.016c0.352 0.192 0.768 0.192 1.12 0.416 0.032 0.032 0.096 0 0.16 0.032 17.92 11.328 439.456 279.872 439.456 512.704zM576 659.168c0-177.92-92.032-387.872-128-463.136-35.968 75.232-128 285.088-128 463.136 0 240.96 73.056 268.832 128 268.832s128-27.872 128-268.832zM288 659.168c0-153.504 63.328-324.512 106.592-423.552-87.744 92.704-234.592 270.592-234.592 423.552 0 150.080 61.376 234.464 191.264 260.224-42.368-46.336-63.264-132.544-63.264-260.224zM608 659.168c0 127.68-20.864 213.888-63.264 260.224 129.888-25.76 191.264-110.176 191.264-260.224 0-152.96-146.848-330.816-234.592-423.552 43.264 99.008 106.592 270.048 106.592 423.552zM32 659.168c0 127.072 63.584 207.040 196.992 244.224-67.648-49.024-100.992-130.048-100.992-244.224 0-134.496 100.32-281.344 186.816-383.136-123.456 98.176-282.816 250.56-282.816 383.136zM581.184 276.032c86.496 101.792 186.816 248.608 186.816 383.136 0 114.176-33.344 195.232-100.992 244.224 133.408-37.184 196.992-117.152 196.992-244.224 0-132.576-159.36-284.96-282.816-383.136zM368 96c-8.832 0-16-7.168-16-16v-96c0-26.912 21.088-48 48-48h96c26.912 0 48 21.088 48 48v96c0 8.832-7.168 16-16 16h-160zM512-16c0-9.408-6.592-16-16-16h-96c-9.408 0-16 6.592-16 16v80h128v-80z" />
|
32 |
+
<glyph unicode="" glyph-name="globe" horiz-adv-x="800" d="M433.664 256c185.28 0 336 150.72 336 336s-150.72 336-336 336-336-150.72-336-336 150.72-336 336-336zM433.664 896c167.616 0 304-136.384 304-304s-136.384-304-304-304-304 136.384-304 304 136.352 304 304 304zM289.664 64c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-288zM609.664-2.4v-29.6h-352v32c0 18.848 13.152 32 32 32h288c18.24 0 32-14.784 32-34.4zM417.76 160.704c0-0.192-0.096-0.32-0.096-0.512v-51.328c0-8.832 7.168-16 16-16s16 7.168 16 16v51.328c0 0.224-0.128 0.416-0.128 0.64 103.456 4.128 200.576 44.032 276.416 114.592l37.76-37.728c6.24-6.24 16.384-6.24 22.624 0s6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0-75.584-75.552-176.032-117.152-282.88-117.152s-207.296 41.6-282.848 117.152-117.152 176-117.152 282.848 41.6 207.296 117.152 282.848c6.24 6.24 6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l37.728-37.76c-74.592-80.096-115.424-183.904-115.424-293.92 0-115.36 44.928-223.872 126.528-305.472 78.208-78.208 181.216-122.272 291.232-125.824z" />
|
33 |
+
<glyph unicode="" glyph-name="genius" horiz-adv-x="960" d="M18.144 192c25.12-43.52 81.536-66.528 163.104-66.528 0 0 0 0 0.032 0 36.672 0 77.024 5.152 119.104 14.016 40.512-124.128 105.184-203.488 179.616-203.488s139.104 79.36 179.616 203.488c42.112-8.832 82.464-14.016 119.136-14.016 0 0 0 0 0 0 81.536 0 137.952 23.008 163.072 66.528 32.512 56.352 3.744 151.040-94.912 256 98.656 104.96 127.424 199.648 94.912 256-25.12 43.52-81.536 66.528-163.104 66.528-36.672 0-77.056-5.152-119.136-14.016-40.48 124.128-105.152 203.488-179.584 203.488s-139.104-79.36-179.616-203.488c-42.112 8.864-82.496 14.016-119.136 14.016-81.568 0-137.984-23.008-163.104-66.528-32.512-56.352-3.744-151.040 94.912-256-98.656-104.96-127.456-199.648-94.912-256zM480-32c-58.848 0-112.512 70.368-148.064 178.528 48.096 12.192 98.112 29.44 148.064 51.168 49.952-21.728 99.968-38.976 148.064-51.168-35.552-108.16-89.216-178.528-148.064-178.528zM288 448c0 37.248 1.984 73.504 5.376 108.576 28.576 19.904 58.784 39.296 90.624 57.696 31.488 18.176 63.712 34.464 96 49.056 32.288-14.56 64.512-30.848 96-49.056 31.84-18.368 62.016-37.76 90.624-57.696 3.392-35.072 5.376-71.328 5.376-108.576s-1.984-73.504-5.376-108.576c-28.576-19.904-58.784-39.296-90.624-57.696-31.488-18.176-63.712-34.464-96-49.056-32.288 14.56-64.512 30.848-96 49.056-31.84 18.368-62.016 37.76-90.624 57.696-3.392 35.072-5.376 71.328-5.376 108.576zM259.136 364.064c-36.672 27.552-69.888 55.84-98.752 83.936 28.864 28.096 62.080 56.384 98.752 83.936-1.888-27.328-3.136-55.2-3.136-83.936s1.248-56.608 3.136-83.936zM298.272 598.848c5.888 42.912 14.144 83.328 24.448 120.128 38.24-9.632 77.92-22.944 117.824-39.008-24.384-11.808-48.704-24.224-72.544-37.984-24.736-14.304-47.616-28.704-69.728-43.136zM519.424 679.968c39.904 16.064 79.584 29.376 117.824 39.008 10.304-36.8 18.56-77.216 24.448-120.128-22.080 14.432-44.992 28.832-69.728 43.136-23.808 13.76-48.128 26.176-72.544 37.984zM700.864 531.936c36.704-27.552 69.888-55.808 98.752-83.936-28.864-28.096-62.080-56.384-98.752-83.936 1.888 27.328 3.136 55.2 3.136 83.936s-1.248 56.608-3.136 83.936zM661.728 297.152c-5.888-42.912-14.144-83.328-24.448-120.128-38.24 9.632-77.92 22.944-117.824 39.008 24.416 11.776 48.736 24.224 72.576 37.984 24.704 14.304 47.584 28.704 69.696 43.136zM368 254.016c23.84-13.76 48.16-26.208 72.576-37.984-39.904-16.064-79.584-29.376-117.824-39.008-10.304 36.8-18.56 77.216-24.448 120.128 22.080-14.432 44.96-28.832 69.696-43.136zM914.144 208c-18.816-32.608-66.88-50.528-135.36-50.528-33.792 0-70.976 4.672-109.824 12.64 12.672 45.568 22.176 96.256 28.064 150.656 49.472 34.688 91.232 69.376 126.080 103.328 81.024-85.824 119.232-167.232 91.040-216.096zM778.752 738.528c68.48 0 116.576-17.952 135.36-50.528 28.224-48.864-10.016-130.272-91.040-216.096-34.848 33.92-76.608 68.64-126.080 103.328-5.888 54.4-15.392 105.088-28.064 150.656 38.848 7.968 76.064 12.64 109.824 12.64zM480 928c58.848 0 112.512-70.368 148.064-178.528-48.096-12.192-98.112-29.44-148.064-51.168-49.952 21.728-99.968 38.976-148.064 51.168 35.552 108.16 89.216 178.528 148.064 178.528zM45.856 688c18.816 32.608 66.88 50.528 135.36 50.528 33.792 0 70.976-4.672 109.824-12.64-12.672-45.568-22.176-96.256-28.064-150.656-49.472-34.688-91.232-69.376-126.080-103.328-81.024 85.824-119.232 167.232-91.040 216.096zM136.896 424.096c34.848-33.92 76.608-68.64 126.080-103.328 5.888-54.4 15.392-105.088 28.064-150.656-38.816-7.968-76-12.64-109.792-12.64 0 0-0.032 0-0.032 0-68.48 0-116.576 17.952-135.36 50.528-28.192 48.864 10.016 130.272 91.040 216.096zM480 368c44.096 0 80 35.872 80 80s-35.904 80-80 80-80-35.872-80-80 35.904-80 80-80zM480 496c26.464 0 48-21.536 48-48s-21.536-48-48-48-48 21.536-48 48 21.536 48 48 48z" />
|
34 |
+
<glyph unicode="" glyph-name="heart" horiz-adv-x="1184" d="M864 960c-79.232 0-155.392-29.472-214.528-83.040-22.464-20.32-41.696-43.424-57.472-68.928-15.776 25.504-35.008 48.608-57.472 68.96-59.136 53.536-135.296 83.008-214.528 83.008-176.448 0-320-143.552-320-320 0-119.104 37.056-213.12 123.872-314.4 126.144-147.2 445.408-371.84 458.944-381.344 2.752-1.952 5.984-2.912 9.184-2.912s6.432 0.96 9.184 2.912c13.536 9.504 332.8 234.144 458.976 381.344 86.784 101.28 123.84 195.296 123.84 314.4 0 176.448-143.552 320-320 320zM1035.872 346.4c-111.84-130.432-389.76-330.912-443.872-369.44-54.112 38.528-332.032 239.008-443.84 369.44-81.44 95.008-116.16 182.816-116.16 293.6 0 158.816 129.216 288 288 288 71.264 0 139.84-26.528 193.024-74.72 26.816-24.32 48.576-52.992 64.64-85.248 5.44-10.88 23.232-10.88 28.672 0 16.064 32.256 37.824 60.928 64.64 85.216 53.184 48.224 121.76 74.752 193.024 74.752 158.784 0 288-129.184 288-288 0-110.784-34.72-198.592-116.128-293.6z" />
|
35 |
+
<glyph unicode="" glyph-name="global" d="M1.088 426.624c11.328-272.352 235.808-490.624 510.912-490.624s499.584 218.272 510.912 490.624c0.608 1.696 1.088 3.456 1.088 5.376 0 1.152-0.416 2.144-0.64 3.2 0.096 4.288 0.64 8.48 0.64 12.8 0 282.304-229.696 512-512 512s-512-229.696-512-512c0-4.32 0.544-8.512 0.64-12.8-0.224-1.056-0.64-2.048-0.64-3.2 0-1.92 0.48-3.68 1.088-5.376zM797.472 232.256c-42.208 17.664-87.52 31.328-134.88 40.672 5.056 46.496 8.032 94.784 8.96 143.040h159.36c-2.912-65.728-14.592-127.776-33.44-183.712zM862.88 416h127.488c-5.952-89.792-36.416-172.896-85.216-242.528-24.288 17.056-50.464 32.608-78.624 46.080 20.64 59.808 33.344 126.176 36.352 196.448zM396.448 246.848c37.696 5.888 76.384 9.152 115.552 9.152s77.856-3.264 115.52-9.152c-22.208-170.72-70.72-278.848-115.52-278.848s-93.312 108.128-115.552 278.848zM445.056-21.248c-88.032 28.224-162.496 111.072-207.424 223.488 39.872 16.8 82.752 29.92 127.68 38.944 14.688-111.872 41.536-209.344 79.744-262.432zM392.768 617.312c38.944-6.016 78.88-9.312 119.232-9.312s80.288 3.296 119.232 9.312c5.504-51.84 8.768-108.416 8.768-169.312h-256c0 60.896 3.264 117.472 8.768 169.312zM639.52 416c-0.896-48.8-3.776-94.752-8.32-137.312-38.912 6.016-78.816 9.312-119.2 9.312s-80.288-3.296-119.232-9.312c-5.536 52.032-7.584 97.824-8.32 137.312h255.072zM658.72 241.184c44.928-9.024 87.776-22.144 127.68-38.944-44.928-112.416-119.392-195.264-207.424-223.488 38.176 53.088 65.024 150.56 79.744 262.432zM672 448c0 58.752-3.264 118.272-9.408 175.040 47.36 9.344 92.672 23.040 134.88 40.672 21.888-64.928 34.528-138.080 34.528-215.712h-160zM658.72 654.816c-14.72 111.872-41.536 209.376-79.776 262.432 88.032-28.224 162.496-111.072 207.424-223.488-39.872-16.8-82.72-29.952-127.648-38.944zM627.552 649.152c-37.696-5.888-76.384-9.152-115.552-9.152s-77.856 3.264-115.552 9.152c22.24 170.72 70.752 278.848 115.552 278.848s93.312-108.128 115.552-278.848zM365.28 654.816c-44.928 9.024-87.776 22.144-127.68 38.944 44.928 112.416 119.392 195.264 207.424 223.488-38.176-53.088-65.024-150.56-79.744-262.432zM361.408 623.040c-6.144-56.768-9.408-116.288-9.408-175.040h-160c0 77.632 12.64 150.784 34.528 215.744 42.208-17.664 87.52-31.328 134.88-40.704zM352.448 416c0.928-48.256 3.904-96.544 8.96-143.072-47.36-9.344-92.672-23.040-134.88-40.672-18.848 55.936-30.528 117.984-33.44 183.744h159.36zM197.44 219.552c-28.16-13.504-54.304-29.024-78.592-46.080-48.8 69.632-79.264 152.704-85.216 242.528h127.488c3.008-70.272 15.712-136.64 36.32-196.448zM138.016 147.84c21.92 15.328 45.344 29.504 70.624 41.76 32.128-79.52 78.368-145.536 133.952-190.176-80.832 30.656-151.328 82.176-204.576 148.416zM681.408-0.544c55.616 44.608 101.824 110.656 133.952 190.176 25.28-12.288 48.704-26.432 70.624-41.76-53.248-66.272-123.744-117.792-204.576-148.416zM864 448c0 82.144-13.696 159.584-37.44 228.448 28.16 13.504 54.336 29.024 78.624 46.080 54.528-77.888 86.816-172.448 86.816-274.528h-128zM886.016 748.16c-21.92-15.328-45.344-29.472-70.624-41.76-32.128 79.52-78.368 145.568-133.952 190.176 80.8-30.656 151.296-82.176 204.576-148.416zM342.592 896.544c-55.616-44.608-101.824-110.656-133.952-190.176-25.312 12.288-48.704 26.464-70.624 41.792 53.248 66.24 123.744 117.76 204.576 148.384zM118.848 722.528c24.256-17.056 50.432-32.576 78.592-46.080-23.744-68.864-37.44-146.304-37.44-228.448h-128c0 102.080 32.288 196.64 86.848 274.528z" />
|
36 |
+
<glyph unicode="" glyph-name="refresh" d="M852.192 832h155.808c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v150.944l19.552-19.552c90.656-90.656 140.608-211.2 140.608-339.392s-49.952-248.736-140.608-339.392c-134.56-134.592-336.128-177.024-513.632-108-8.224 3.264-17.504-0.864-20.704-9.088-3.2-8.256 0.864-17.536 9.12-20.704 60.288-23.424 123.136-34.816 185.504-34.816 133.44 0 264.512 52.16 362.336 150.016 96.704 96.672 149.984 225.28 149.984 362.016s-53.28 265.312-149.984 361.984l-21.984 21.984zM208 256c-8.832 0-16-7.168-16-16v-154.88l-22.816 22.816c-90.656 90.656-140.608 211.2-140.608 339.392s49.952 248.768 140.608 339.424c132.32 132.352 331.232 175.84 506.752 110.592 8.192-3.072 17.472 1.12 20.576 9.44 3.072 8.288-1.152 17.504-9.44 20.576-187.168 69.504-399.36 23.2-540.512-117.984-96.704-96.672-149.984-225.28-149.984-362.016s53.28-265.344 149.984-362.016l21.312-21.344h-151.872c-8.832 0-16-7.168-16-16s7.168-16 16-16h187.392c1.28-0.32 12.032 0.8 15.168 3.936 0.128 0.128 0.16 0.288 0.288 0.416 3.136 2.944 5.152 7.008 5.152 11.648v192c0 8.832-7.168 16-16 16z" />
|
37 |
+
<glyph unicode="" glyph-name="thumbs-up" d="M834.987 568.491c-16.683 6.144-107.179 17.323-165.675 23.893 9.173 53.547 13.355 102.613 13.355 154.283 0 58.837-47.872 106.667-106.667 106.667s-106.667-47.829-106.667-106.667c0-80-28.416-116.821-68.949-157.824-23.381 30.805-60.032 51.157-101.717 51.157-70.571 0-128-57.429-128-128v-256c0-70.571 57.429-128 128-128 32.213 0 61.355 12.373 83.84 32.085 2.731-2.645 4.992-6.016 8.021-8.235 40.96-31.403 156.459-66.517 249.515-66.517 80.171 0 111.275 12.501 138.795 23.595 4.437 1.749 8.832 3.584 13.483 5.248 35.584 13.013 67.243 52.352 74.069 93.867l28.416 254.891c7.381 44.245-18.901 90.667-59.819 105.557zM298.667 213.334c-23.509 0-42.667 19.115-42.667 42.667v256c0 23.552 19.157 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256c0-23.552-19.157-42.667-42.667-42.667zM781.952 219.734c-1.579-9.557-12.459-23.083-18.901-25.429-5.589-2.091-10.837-4.224-16.043-6.229-23.253-9.344-43.349-17.408-107.008-17.408-81.664 0-175.701 32.128-197.632 48.896-6.741 5.12-15.701 24.064-15.701 36.437v212.48c0.128 2.005 2.176 27.989 30.165 55.979 38.955 38.997 97.835 97.877 97.835 222.208 0 11.733 9.6 21.333 21.333 21.333s21.333-9.6 21.333-21.333c0-60.032-6.229-116.48-20.437-183.168l-12.672-59.563 56.363 8.021c25.728-2.133 167.808-19.072 184.917-23.467 2.475-1.28 5.632-7.808 4.736-13.781l-28.288-254.976z" />
|
38 |
+
<glyph unicode="" glyph-name="thumbs-down" d="M725.333 725.334c-32.213 0-61.355-12.331-83.84-32.043-2.731 2.645-4.949 5.973-8.021 8.192-40.96 31.445-156.373 66.517-249.472 66.517-80.171 0-111.232-12.501-138.752-23.552-4.395-1.792-8.832-3.627-13.483-5.291-35.584-13.013-67.328-52.437-74.155-93.867l-28.331-254.805c-7.424-44.331 18.816-90.752 59.733-105.728 16.811-6.144 107.179-17.28 165.675-23.893-9.173-53.589-13.312-102.613-13.312-154.283 0-58.837 47.829-106.667 106.667-106.667s106.667 47.829 106.667 106.667c0 80 28.459 116.779 68.949 157.824 23.381-30.891 60.075-51.157 101.717-51.157 70.528 0 127.957 57.472 127.957 128v256c-0.043 70.656-57.429 128.085-128 128.085zM469.333 106.667c0-11.733-9.6-21.333-21.333-21.333s-21.333 9.6-21.333 21.333c0 77.013 10.923 138.283 20.437 183.168l12.672 59.648-56.363-8.021c-25.813 2.133-167.851 19.072-184.96 23.552-2.475 1.195-5.632 7.68-4.608 13.696l28.288 254.976c1.579 9.515 12.416 22.997 18.901 25.344 5.589 2.091 10.837 4.224 16.085 6.229 23.211 9.344 43.307 17.408 106.923 17.408 81.664 0 175.701-32.128 197.675-48.896 6.656-5.12 15.616-24.064 15.616-36.437v-212.352c-0.043-1.109-1.707-27.691-30.165-56.149-38.955-38.955-97.835-97.835-97.835-222.165zM768 341.334c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256z" />
|
39 |
+
<glyph unicode="" glyph-name="thumbs-down2" d="M981.333 768.534c0 1.867-0.267 4-0.533 5.867-9.6 69.333-69.867 121.6-140 121.6-0.8 0-1.333 0-2.133 0h-595.733c-63.467 0-116.8-45.6-126.4-108.267l-58.933-384.267c-1.067-6.133-1.6-12.8-1.6-19.467 0-70.667 57.333-128 128-128h199.733v-128c0-94.133 76.533-170.667 170.667-170.667 16.8 0 32.267 9.867 38.933 25.333l159.733 358.667h85.867c0.8 0 1.333 0 2.133 0 70.133 0 130.133 52.533 140 122.133 0.267 1.867 0.533 4 0.533 5.867l-0.267 299.2zM528.8 46.667c-34.4 10.933-59.467 43.2-59.467 81.333v170.667c0 23.467-19.2 42.667-42.667 42.667h-242.667c-23.467 0-42.667 19.2-42.667 42.667 0 2.133 0.267 4.267 0.533 6.133 0 0 0 0.267 0 0.267l59.2 384.267c3.2 20.533 21.333 36 42.133 36h0.533c0 0 0.267 0 0.267 0h438.667v-417.6l-153.867-346.4zM841.067 426.667h-1.067c-0.267 0-0.533 0-0.8 0h-71.2v384h71.2c0.267 0 0.533 0 0.8 0h0.8c26.933 0 50.133-19.467 54.933-45.6v-292.533c-4.533-26.133-27.733-45.867-54.667-45.867z" />
|
40 |
+
<glyph unicode="" glyph-name="thumbs-up2" d="M839.733 597.334h-199.733v128c0 94.133-76.533 170.667-170.667 170.667-16.8 0-32.267-9.867-38.933-25.333l-159.467-358.667h-100.267c-70.667 0-128-57.333-128-128v-298.667c0-70.667 57.333-128 128-128h610.4c63.467 0 116.8 45.6 126.4 108.267l58.933 384.267c1.067 6.133 1.6 12.8 1.6 19.467-0.267 70.667-57.6 128-128.267 128zM128 85.334v298.667c0 23.467 19.2 42.667 42.667 42.667h85.333v-384h-85.333c-23.467 0-42.667 19.2-42.667 42.667zM882.133 463.2v-0.267l-58.933-384.267c-3.2-20.533-21.333-36-42.133-36h-0.533c0 0-0.267 0-0.267 0h-438.933v417.6l153.867 346.4c34.4-10.933 59.467-43.2 59.467-81.333v-170.667c0-23.467 19.2-42.667 42.667-42.667h241.333c0 0 0.267 0 0.267 0h0.8c23.467 0 42.667-19.2 42.667-42.667 0-2.133 0-4.267-0.267-6.133z" />
|
41 |
+
<glyph unicode="" glyph-name="like" d="M933.248 624.896c-40 10.496-134.048 10.368-271.616 14.016 6.496 30.016 8 57.088 8 105.152 0 114.816-83.648 215.936-157.632 215.936-52.256 0-95.328-42.72-96-95.264-0.704-64.448-20.64-175.744-128-232.192-7.872-4.16-30.4-15.264-33.696-16.704l1.696-1.44c-16.8 14.496-40.096 25.6-64 25.6h-96c-52.928 0-96-43.072-96-96v-512c0-52.928 43.072-96 96-96h96c38.080 0 69.952 23.008 85.376 55.264 0.384-0.128 1.056-0.32 1.504-0.384 2.112-0.576 4.608-1.184 7.648-1.984 0.576-0.16 0.864-0.224 1.472-0.384 18.432-4.576 53.92-13.056 129.76-30.496 16.256-3.712 102.144-22.016 191.104-22.016h174.944c53.312 0 91.744 20.512 114.624 61.696 0.32 0.64 7.68 15.008 13.696 34.432 4.512 14.624 6.176 35.328 0.736 56.32 34.368 23.616 45.44 59.328 52.64 82.56 12.064 38.112 8.448 66.752 0.064 87.264 19.328 18.24 35.808 46.048 42.752 88.512 4.32 26.304-0.32 53.376-12.448 75.904 18.112 20.352 26.368 45.952 27.328 69.632l0.384 6.688c0.224 4.192 0.416 6.784 0.416 16 0 40.416-28 91.968-90.752 109.888zM224 32c0-17.696-14.304-32-32-32h-96c-17.696 0-32 14.304-32 32v512c0 17.696 14.304 32 32 32h96c17.696 0 32-14.304 32-32v-512zM959.264 494.88c-0.64-15.808-7.264-46.88-63.264-46.88-48 0-64 0-64 0-8.864 0-16-7.168-16-16s7.136-16 16-16c0 0 14.016 0 62.016 0s54.304-39.808 51.2-59.008c-3.968-23.872-15.168-68.992-69.216-68.992-53.984 0-76 0-76 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 38.016 0 63.008 0 54.016 0 49.248-41.184 41.504-65.76-10.208-32.288-16.448-62.24-84.512-62.24-23.008 0-52.192 0-52.192 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 22.176 0 50.176 0 35.008 0 36.64-33.12 32.992-44.992-4-12.992-8.736-22.624-8.928-23.072-9.664-17.44-25.248-27.936-58.24-27.936h-174.944c-87.872 0-175.040 19.936-177.28 20.448-132.928 30.624-139.936 32.992-148.288 35.36 0 0-27.072 4.576-27.072 28.192l-0.224 441.984c0 15.008 9.568 28.576 25.408 33.344 1.984 0.768 4.672 1.6 6.592 2.4 146.176 60.544 190.688 193.28 192 302.272 0.192 15.328 12 32 32 32 33.824 0 93.632-67.904 93.632-151.936 0-75.872-3.072-88.992-29.632-168.064 320 0 317.76-4.608 345.984-12 35.008-10.016 38.016-39.008 38.016-48.992 0-10.976-0.32-9.376-0.736-20.128zM144 128c-26.496 0-48-21.504-48-48s21.504-48 48-48 48 21.504 48 48-21.504 48-48 48zM144 64c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16z" />
|
42 |
+
<glyph unicode="" glyph-name="thumb_up" d="M982 512.667l-2-4h2v-82c0-12-2-22-6-32l-130-300c-12-30-42-52-78-52h-384c-46 0-86 40-86 86v426c0 24 10 44 26 60l280 282 46-46c12-12 18-26 18-44v-14l-42-196h270c46 0 86-38 86-84zM42 42.667v512h172v-512h-172z" />
|
43 |
+
<glyph unicode="" glyph-name="thumb_down" d="M810 810.667h172v-512h-172v512zM640 810.667c46 0 86-40 86-86v-426c0-24-10-44-26-60l-280-282-46 46c-12 12-18 26-18 44v14l42 196h-270c-46 0-86 38-86 84l2 4h-2v82c0 12 2 22 6 32l130 300c12 30 42 52 78 52h384z" />
|
44 |
+
</font></defs></svg>
|
admin/classes/fonts/wp-ulike.ttf
ADDED
Binary file
|
admin/classes/fonts/wp-ulike.woff
ADDED
Binary file
|
admin/classes/tmp/settings.php
CHANGED
@@ -126,6 +126,13 @@
|
|
126 |
),
|
127 |
'description' => __('You can filter theses pages on auto display option.', WP_ULIKE_SLUG)
|
128 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
'only_registered_users' => array(
|
130 |
'type' => 'checkbox',
|
131 |
'default' => 0,
|
126 |
),
|
127 |
'description' => __('You can filter theses pages on auto display option.', WP_ULIKE_SLUG)
|
128 |
),
|
129 |
+
'google_rich_snippets' => array(
|
130 |
+
'type' => 'checkbox',
|
131 |
+
'default' => 0,
|
132 |
+
'label' => '*' . __('Google Rich Snippets', WP_ULIKE_SLUG),
|
133 |
+
'checkboxlabel' => __('Activate', WP_ULIKE_SLUG),
|
134 |
+
'description' => __('Add rich snippet for ratings in form of schema.org', WP_ULIKE_SLUG)
|
135 |
+
),
|
136 |
'only_registered_users' => array(
|
137 |
'type' => 'checkbox',
|
138 |
'default' => 0,
|
admin/classes/tmp/svg-source.php
DELETED
@@ -1,503 +0,0 @@
|
|
1 |
-
<!-- ICONS -->
|
2 |
-
<svg id="svg-source" height="0" version="1.1"
|
3 |
-
xmlns="http://www.w3.org/2000/svg"
|
4 |
-
xmlns:xlink="http://www.w3.org/1999/xlink" style="position: absolute">
|
5 |
-
<g id="arrow-target" data-iconmelon="Streamline Icon Set:b90a6e2a47161b69a5ddbea533086f5f">
|
6 |
-
<g id="Expanded">
|
7 |
-
<g>
|
8 |
-
<g>
|
9 |
-
<path d="M12.521,18.087c-0.768,0-1.391,0.624-1.391,1.392s0.624,1.391,1.391,1.391
|
10 |
-
c0.768,0,1.392-0.623,1.392-1.391S13.29,18.087,12.521,18.087L12.521,18.087z"></path>
|
11 |
-
</g>
|
12 |
-
<g>
|
13 |
-
<g>
|
14 |
-
<path d="M12.521,16.695c1.535,0,2.783,1.248,2.783,2.783c0,1.534-1.248,2.782-2.783,2.782
|
15 |
-
c-1.534,0-2.782-1.248-2.782-2.782C9.739,17.943,10.987,16.695,12.521,16.695 M12.521,15.304c-2.305,0-4.174,1.87-4.174,4.174
|
16 |
-
c0,2.306,1.869,4.174,4.174,4.174c2.305,0,4.174-1.868,4.174-4.174S14.826,15.304,12.521,15.304L12.521,15.304z"></path>
|
17 |
-
</g>
|
18 |
-
</g>
|
19 |
-
<g>
|
20 |
-
<g>
|
21 |
-
<path d="M12.521,12.522c3.836,0,6.957,3.121,6.957,6.957c0,3.835-3.121,6.956-6.957,6.956
|
22 |
-
c-3.835,0-6.956-3.121-6.956-6.956C5.565,15.643,8.686,12.522,12.521,12.522 M12.521,11.13c-4.61,0-8.348,3.738-8.348,8.348
|
23 |
-
c0,4.609,3.738,8.348,8.348,8.348c4.61,0,8.348-3.738,8.348-8.348C20.869,14.868,17.132,11.13,12.521,11.13L12.521,11.13z"></path>
|
24 |
-
</g>
|
25 |
-
</g>
|
26 |
-
<g>
|
27 |
-
<g>
|
28 |
-
<path d="M12.521,8.348c6.138,0,11.131,4.993,11.131,11.13c0,6.137-4.993,11.13-11.131,11.13
|
29 |
-
c-6.137,0-11.13-4.993-11.13-11.13C1.392,13.341,6.385,8.348,12.521,8.348 M12.521,6.957C5.607,6.957,0,12.563,0,19.479
|
30 |
-
C0,26.393,5.607,32,12.521,32c6.914,0,12.521-5.607,12.521-12.521C25.043,12.563,19.436,6.957,12.521,6.957L12.521,6.957z"></path>
|
31 |
-
</g>
|
32 |
-
</g>
|
33 |
-
<g>
|
34 |
-
<rect x="19.478" y="1.004" transform="matrix(-0.7069 -0.7073 0.7073 -0.7069 26.0707 34.4545)" width="1.391" height="21.643"></rect>
|
35 |
-
</g>
|
36 |
-
<g>
|
37 |
-
<g>
|
38 |
-
<path d="M27.13,2.025v1.453V4.87h1.392h1.45C29.06,6.881,27.573,9.21,26.034,9.21
|
39 |
-
c-0.625,0-1.33-0.387-2.094-1.15c-1.374-1.374-1.172-2.202-1.104-2.474C23.174,4.207,25.229,2.884,27.13,2.025 M28.521,0
|
40 |
-
c0,0-11.13,3.479-5.565,9.043c1.113,1.113,2.143,1.559,3.078,1.559c3.739,0,5.966-7.124,5.966-7.124h-3.479V0L28.521,0z"></path>
|
41 |
-
</g>
|
42 |
-
</g>
|
43 |
-
<g>
|
44 |
-
<rect x="24.348" y="2.087" width="1.392" height="4.87"></rect>
|
45 |
-
</g>
|
46 |
-
<g>
|
47 |
-
<path d="M0.696,32c-0.178,0-0.356-0.068-0.492-0.204c-0.272-0.271-0.272-0.712,0-0.983l2.972-2.972
|
48 |
-
c0.272-0.272,0.711-0.272,0.983,0c0.272,0.271,0.272,0.711,0,0.983l-2.972,2.972C1.052,31.932,0.874,32,0.696,32z"></path>
|
49 |
-
</g>
|
50 |
-
<g>
|
51 |
-
<path d="M24.348,32c-0.178,0-0.356-0.068-0.492-0.204l-2.973-2.973c-0.271-0.271-0.271-0.711,0-0.983
|
52 |
-
c0.272-0.272,0.712-0.272,0.984,0l2.973,2.973c0.271,0.271,0.271,0.712,0,0.983C24.704,31.932,24.525,32,24.348,32z"></path>
|
53 |
-
</g>
|
54 |
-
</g>
|
55 |
-
</g>
|
56 |
-
</g>
|
57 |
-
<g id="happy-smiley" data-iconmelon="Streamline Icon Set:4899c398e684096163eae46cf618ad3a">
|
58 |
-
<g id="Expanded">
|
59 |
-
<g>
|
60 |
-
<g>
|
61 |
-
<path d="M16,32C7.178,32,0,24.821,0,16C0,7.178,7.178,0,16,0c8.821,0,16,7.178,16,16C32,24.821,24.821,32,16,32z
|
62 |
-
M16,1.333C7.913,1.333,1.333,7.913,1.333,16c0,8.087,6.579,14.667,14.667,14.667c8.087,0,14.667-6.58,14.667-14.667
|
63 |
-
C30.667,7.913,24.087,1.333,16,1.333z"></path>
|
64 |
-
</g>
|
65 |
-
<g>
|
66 |
-
<path d="M16,28c-5.881,0-10.667-4.785-10.667-10.667c0-0.368,0.299-0.666,0.667-0.666s0.667,0.298,0.667,0.666
|
67 |
-
c0,5.147,4.187,9.334,9.333,9.334c5.147,0,9.333-4.187,9.333-9.334c0-0.368,0.299-0.666,0.667-0.666s0.667,0.298,0.667,0.666
|
68 |
-
C26.667,23.215,21.882,28,16,28z"></path>
|
69 |
-
</g>
|
70 |
-
<g>
|
71 |
-
<path d="M12.667,14C12.299,14,12,13.702,12,13.333c0-1.103-0.897-2-2-2s-2,0.897-2,2C8,13.702,7.701,14,7.333,14
|
72 |
-
c-0.368,0-0.667-0.298-0.667-0.667C6.667,11.496,8.162,10,10,10s3.333,1.496,3.333,3.333C13.333,13.702,13.035,14,12.667,14z"></path>
|
73 |
-
</g>
|
74 |
-
<g>
|
75 |
-
<path d="M24.667,14C24.299,14,24,13.702,24,13.333c0-1.103-0.897-2-2-2s-2,0.897-2,2
|
76 |
-
C20,13.702,19.701,14,19.333,14c-0.367,0-0.666-0.298-0.666-0.667C18.667,11.496,20.162,10,22,10s3.333,1.496,3.333,3.333
|
77 |
-
C25.333,13.702,25.034,14,24.667,14z"></path>
|
78 |
-
</g>
|
79 |
-
</g>
|
80 |
-
</g>
|
81 |
-
</g>
|
82 |
-
<g id="magic-magic-wand" data-iconmelon="Streamline Icon Set:c39a352649068bbf552963e6a1435b8a">
|
83 |
-
<g id="Expanded">
|
84 |
-
<g>
|
85 |
-
<g>
|
86 |
-
<path d="M0.761,32c-0.195,0-0.39-0.075-0.538-0.224c-0.298-0.297-0.298-0.778,0-1.076l20.453-20.452
|
87 |
-
c0.298-0.297,0.779-0.297,1.076,0c0.298,0.298,0.298,0.779,0,1.077L1.299,31.776C1.151,31.925,0.956,32,0.761,32z"></path>
|
88 |
-
</g>
|
89 |
-
<g>
|
90 |
-
<path d="M21.018,1.294l3.694,3.693l5.167-2.731l-2.732,5.168l3.558,3.558L26,9.878l-2.583,5.537l-0.743-5.953
|
91 |
-
l-5.953-0.744l5.536-2.585L21.018,1.294 M21.018,0c-0.219,0-0.439,0.056-0.641,0.17c-0.505,0.288-0.756,0.88-0.612,1.445
|
92 |
-
l0.974,3.798l-4.563,2.131c-0.521,0.244-0.821,0.805-0.731,1.374c0.09,0.569,0.545,1.011,1.118,1.083l4.954,0.619l0.619,4.954
|
93 |
-
c0.072,0.572,0.514,1.028,1.083,1.118c0.068,0.011,0.136,0.017,0.203,0.017c0.495,0,0.957-0.287,1.171-0.748l2.139-4.583
|
94 |
-
l3.68,0.863c0.1,0.022,0.198,0.034,0.296,0.034c0.463,0,0.898-0.248,1.131-0.664c0.28-0.506,0.193-1.136-0.216-1.545
|
95 |
-
l-2.882-2.882l2.287-4.323c0.265-0.501,0.172-1.118-0.23-1.52c-0.249-0.249-0.579-0.379-0.915-0.379
|
96 |
-
c-0.206,0-0.414,0.049-0.604,0.149l-4.323,2.285l-3.02-3.019C21.684,0.13,21.353,0,21.018,0L21.018,0z"></path>
|
97 |
-
</g>
|
98 |
-
</g>
|
99 |
-
</g>
|
100 |
-
</g>
|
101 |
-
<g id="settings-toolkit" data-iconmelon="Streamline Icon Set:d9ee473459f67edeed450e1389c157a9">
|
102 |
-
<g id="Expanded">
|
103 |
-
<g>
|
104 |
-
<g>
|
105 |
-
<path d="M6.551,31.998L6.551,31.998c-0.885,0-1.745-0.175-2.557-0.519c-0.223-0.094-0.384-0.293-0.431-0.53
|
106 |
-
c-0.046-0.237,0.029-0.481,0.199-0.652l2.571-2.57V25.67H4.276l-2.57,2.569c-0.171,0.171-0.415,0.247-0.653,0.199
|
107 |
-
c-0.237-0.046-0.436-0.207-0.53-0.431c-1.045-2.469-0.497-5.286,1.396-7.179c1.234-1.236,2.876-1.916,4.623-1.916
|
108 |
-
c0.717,0,1.419,0.115,2.091,0.342L19.252,8.636c-0.794-2.351-0.202-4.939,1.572-6.714c1.235-1.234,2.877-1.914,4.624-1.914
|
109 |
-
c0.885,0,1.745,0.174,2.557,0.518c0.224,0.095,0.385,0.293,0.432,0.53c0.046,0.237-0.028,0.482-0.2,0.653l-2.57,2.571v2.057
|
110 |
-
h2.058l2.569-2.57c0.172-0.171,0.413-0.247,0.653-0.199c0.236,0.045,0.436,0.207,0.529,0.431c1.045,2.469,0.497,5.287-1.396,7.18
|
111 |
-
c-1.233,1.234-2.876,1.914-4.622,1.914c-0.718,0-1.419-0.114-2.091-0.341L12.747,23.369c0.794,2.351,0.202,4.939-1.574,6.715
|
112 |
-
C9.94,31.317,8.297,31.998,6.551,31.998z M5.652,30.465c0.294,0.052,0.595,0.078,0.899,0.078c1.359,0,2.635-0.528,3.595-1.487
|
113 |
-
c1.473-1.473,1.898-3.665,1.085-5.585c-0.116-0.273-0.054-0.589,0.156-0.799L22.669,11.39c0.211-0.209,0.526-0.272,0.798-0.156
|
114 |
-
c0.632,0.267,1.303,0.403,1.99,0.403c1.358,0,2.635-0.528,3.595-1.488c1.199-1.199,1.704-2.876,1.411-4.496l-1.926,1.925
|
115 |
-
C28.4,7.714,28.216,7.79,28.023,7.79h-3.085c-0.4,0-0.727-0.325-0.727-0.727V3.978c0-0.193,0.076-0.377,0.213-0.514l1.924-1.923
|
116 |
-
c-0.295-0.052-0.595-0.079-0.899-0.079c-1.358,0-2.636,0.529-3.596,1.488c-1.472,1.473-1.897,3.665-1.085,5.585
|
117 |
-
c0.115,0.272,0.054,0.588-0.155,0.798L9.33,20.616c-0.209,0.209-0.526,0.271-0.798,0.155c-0.632-0.267-1.301-0.403-1.99-0.403
|
118 |
-
c-1.359,0-2.635,0.528-3.595,1.489c-1.199,1.199-1.705,2.876-1.411,4.496l1.925-1.925c0.137-0.138,0.321-0.213,0.514-0.213h3.085
|
119 |
-
c0.401,0,0.727,0.325,0.727,0.727v3.086c0,0.192-0.076,0.378-0.213,0.514L5.652,30.465z"></path>
|
120 |
-
</g>
|
121 |
-
<g>
|
122 |
-
<path d="M29.091,31.998c-0.776,0-1.508-0.303-2.057-0.853L20.35,24.46c-0.284-0.283-0.284-0.744,0-1.028
|
123 |
-
l3.085-3.084c0.283-0.284,0.744-0.284,1.028,0l6.685,6.685c0.55,0.549,0.853,1.28,0.853,2.057c0,0.777-0.304,1.509-0.853,2.058
|
124 |
-
S29.868,31.998,29.091,31.998z M21.894,23.946l6.169,6.171c0.549,0.549,1.507,0.55,2.057,0c0.275-0.274,0.426-0.64,0.426-1.028
|
125 |
-
s-0.15-0.754-0.425-1.028l-6.17-6.171L21.894,23.946z"></path>
|
126 |
-
</g>
|
127 |
-
<g>
|
128 |
-
<rect x="4.155" y="9.292" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 10.024 24.1904)" width="11.734" height="1.454"></rect>
|
129 |
-
</g>
|
130 |
-
<g>
|
131 |
-
<path d="M19.321,26.217c-0.187,0-0.373-0.071-0.515-0.213c-0.284-0.284-0.284-0.744,0-1.028l6.17-6.171
|
132 |
-
c0.284-0.284,0.744-0.284,1.028,0c0.284,0.285,0.284,0.744,0,1.028l-6.17,6.171C19.693,26.146,19.507,26.217,19.321,26.217z"></path>
|
133 |
-
</g>
|
134 |
-
<g>
|
135 |
-
<path d="M4.845,7.626c-0.187,0-0.373-0.071-0.514-0.213L0.217,3.3C0.081,3.164,0.004,2.979,0.004,2.786
|
136 |
-
c0-0.194,0.076-0.378,0.213-0.514l2.057-2.057c0.285-0.285,0.744-0.285,1.028,0l4.113,4.114C7.552,4.466,7.628,4.65,7.628,4.843
|
137 |
-
c0,0.193-0.076,0.378-0.213,0.514L5.359,7.414C5.217,7.556,5.031,7.626,4.845,7.626z M1.76,2.786l3.085,3.085l1.028-1.028
|
138 |
-
L2.788,1.758L1.76,2.786z"></path>
|
139 |
-
</g>
|
140 |
-
<g>
|
141 |
-
<rect x="16.151" y="19.195" transform="matrix(-0.7072 -0.707 0.707 -0.7072 19.9308 48.0993)" width="7.55" height="1.454"></rect>
|
142 |
-
</g>
|
143 |
-
</g>
|
144 |
-
</g>
|
145 |
-
</g>
|
146 |
-
<g id="prize" data-iconmelon="Line icon set:7c07222be394ea6e037c35149dba5e43">
|
147 |
-
<g id="Prize">
|
148 |
-
<g>
|
149 |
-
<path d="M27.904,4.655c-0.03-0.013-0.062-0.009-0.095-0.02C27.946,3.472,28.026,2.263,28.026,1
|
150 |
-
c0-0.552-0.447-1-1-1h-22c-0.552,0-1,0.448-1,1c0,1.261,0.08,2.468,0.217,3.631C4.202,4.643,4.162,4.639,4.121,4.655
|
151 |
-
c-3.394,1.398-5.018,5.299-3.62,8.694c0.678,1.645,1.956,2.928,3.598,3.611c0.826,0.344,1.692,0.516,2.561,0.516
|
152 |
-
c0.674,0,1.346-0.107,1.999-0.313c1.089,1.739,2.229,3.188,3.261,4.338c0.048,0.138,0.118,0.269,0.229,0.378
|
153 |
-
c0.566,0.566,0.879,1.319,0.879,2.121s-0.312,1.555-0.879,2.121S10.827,27,10.026,27c-2.206,0-4,1.794-4,4c0,0.553,0.448,1,1,1h18
|
154 |
-
c0.553,0,1-0.447,1-1c0-2.206-1.793-4-4-4c-0.801,0-1.555-0.312-2.121-0.879S19.026,24.802,19.026,24s0.312-1.555,0.879-2.121
|
155 |
-
c0.111-0.109,0.182-0.24,0.229-0.378c1.031-1.149,2.17-2.594,3.256-4.33c0.646,0.202,1.311,0.306,1.977,0.306
|
156 |
-
c0.867,0,1.734-0.172,2.561-0.516c1.643-0.684,2.919-1.967,3.598-3.611C32.923,9.954,31.298,6.054,27.904,4.655z M4.868,15.114
|
157 |
-
c-1.148-0.479-2.043-1.375-2.518-2.526c-0.93-2.257,0.064-4.815,2.201-5.906c0.627,3.353,1.76,6.252,3.065,8.688
|
158 |
-
C6.702,15.564,5.751,15.482,4.868,15.114z M22.026,29c0.74,0,1.386,0.402,1.731,1H8.296c0.346-0.598,0.991-1,1.73-1
|
159 |
-
c1.336,0,2.59-0.521,3.536-1.465c0.834-0.835,1.315-1.919,1.421-3.082c0.245,0.199,0.408,0.32,0.455,0.355
|
160 |
-
C15.614,24.936,15.82,25,16.026,25c0.207,0,0.414-0.064,0.588-0.191c0.048-0.035,0.211-0.156,0.456-0.355
|
161 |
-
c0.105,1.163,0.587,2.247,1.421,3.083C19.438,28.479,20.691,29,22.026,29z M16.026,22.715C13.86,20.866,6.448,13.709,6.044,2
|
162 |
-
h19.965C25.606,13.709,18.192,20.866,16.026,22.715z M29.675,12.588c-0.475,1.151-1.369,2.048-2.518,2.526
|
163 |
-
c-0.875,0.365-1.818,0.45-2.725,0.262c1.307-2.434,2.438-5.331,3.067-8.681C29.618,7.793,30.6,10.34,29.675,12.588z"></path>
|
164 |
-
</g>
|
165 |
-
</g>
|
166 |
-
</g>
|
167 |
-
<g id="statics" data-iconmelon="Line icon set:7700dd1f85023f6efb1e2f3841453769">
|
168 |
-
<g id="Statics">
|
169 |
-
<g>
|
170 |
-
<path d="M31.834,1.552c0.305-0.461,0.178-1.081-0.282-1.386c-0.462-0.305-1.081-0.179-1.386,0.283l-3.699,5.599
|
171 |
-
C26.313,6.023,26.159,6,25.999,6c-1.654,0-3,1.346-3,3c0,0.318,0.063,0.619,0.155,0.907l-3.572,4.555
|
172 |
-
C19.121,14.174,18.582,14,18,14c-1.613,0-2.924,1.283-2.988,2.881l-5.651,3.29C8.812,19.464,7.963,19,7,19c-1.654,0-3,1.346-3,3
|
173 |
-
c0,0.651,0.214,1.25,0.566,1.741l-4.402,6.71c-0.303,0.462-0.175,1.082,0.287,1.385C0.62,31.947,0.811,32,0.999,32
|
174 |
-
c0.326,0,0.646-0.158,0.837-0.451l4.375-6.667C6.464,24.951,6.726,25,7,25c1.613,0,2.924-1.282,2.988-2.881l5.651-3.289
|
175 |
-
C16.188,19.536,17.037,20,18,20c1.654,0,3-1.346,3-3c0-0.318-0.063-0.619-0.155-0.906l3.572-4.555
|
176 |
-
c0.461,0.287,1,0.461,1.582,0.461c1.654,0,3-1.346,3-3c0-0.767-0.298-1.459-0.772-1.99L31.834,1.552z M7,23c-0.552,0-1-0.448-1-1
|
177 |
-
c0-0.551,0.448-1,1-1s1,0.449,1,1C8,22.552,7.552,23,7,23z M18,18c-0.552,0-1-0.448-1-1c0-0.551,0.448-1,1-1s1,0.449,1,1
|
178 |
-
C19,17.552,18.552,18,18,18z M25.999,10c-0.552,0-1-0.448-1-1c0-0.551,0.448-1,1-1s1,0.449,1,1C26.999,9.552,26.551,10,25.999,10z
|
179 |
-
M6,30c-0.553,0-1,0.448-1,1c0,0.553,0.447,1,1,1s1-0.447,1-1C7,30.448,6.553,30,6,30z M11,30c-0.553,0-1,0.448-1,1
|
180 |
-
c0,0.553,0.447,1,1,1s1-0.447,1-1C12,30.448,11.553,30,11,30z M16,30c-0.553,0-1,0.448-1,1c0,0.553,0.447,1,1,1s1-0.447,1-1
|
181 |
-
C17,30.448,16.553,30,16,30z M21,30c-0.553,0-1,0.448-1,1c0,0.553,0.447,1,1,1s1-0.447,1-1C22,30.448,21.553,30,21,30z M26,30
|
182 |
-
c-0.553,0-1,0.448-1,1c0,0.553,0.447,1,1,1s1-0.447,1-1C27,30.448,26.553,30,26,30z M31,30c-0.553,0-1,0.448-1,1
|
183 |
-
c0,0.553,0.447,1,1,1s1-0.447,1-1C32,30.448,31.553,30,31,30z M1,27c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1s-1,0.448-1,1
|
184 |
-
C0,26.553,0.447,27,1,27z M1,22c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1s-1,0.448-1,1C0,21.553,0.447,22,1,22z M1,17
|
185 |
-
c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1s-1,0.448-1,1C0,16.553,0.447,17,1,17z M1,12c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1
|
186 |
-
s-1,0.448-1,1C0,11.553,0.447,12,1,12z M1,7c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1S0,5.448,0,6C0,6.553,0.447,7,1,7z M1,2
|
187 |
-
c0.553,0,1-0.447,1-1c0-0.552-0.447-1-1-1S0,0.448,0,1C0,1.553,0.447,2,1,2z"></path>
|
188 |
-
</g>
|
189 |
-
</g>
|
190 |
-
</g>
|
191 |
-
<g id="trash-can" data-iconmelon="Line icon set:b07401d18d0c21c63b30e885840d6b81">
|
192 |
-
<g id="Trash_x5F_Can">
|
193 |
-
<g>
|
194 |
-
<path d="M29,1h-9c0-0.553-0.447-1-1-1h-6c-0.553,0-1,0.447-1,1H3C1.346,1,0,2.346,0,4v2c0,0.552,0.447,1,1,1h3v22
|
195 |
-
c0,1.654,1.346,3,3,3h18c1.654,0,3-1.346,3-3V7h3c0.553,0,1-0.448,1-1V4C32,2.346,30.654,1,29,1z M26,29c0,0.551-0.448,1-1,1H7
|
196 |
-
c-0.552,0-1-0.449-1-1V7h20V29z M30,5H2V4c0-0.552,0.448-1,1-1h26c0.552,0,1,0.448,1,1V5z M10,28c0.553,0,1-0.448,1-1V12
|
197 |
-
c0-0.553-0.447-1-1-1s-1,0.447-1,1v15C9,27.552,9.447,28,10,28z M14,28c0.553,0,1-0.448,1-1V12c0-0.553-0.447-1-1-1s-1,0.447-1,1
|
198 |
-
v15C13,27.552,13.447,28,14,28z M18,28c0.553,0,1-0.448,1-1V12c0-0.553-0.447-1-1-1s-1,0.447-1,1v15C17,27.552,17.447,28,18,28z
|
199 |
-
M22,28c0.553,0,1-0.448,1-1V12c0-0.553-0.447-1-1-1s-1,0.447-1,1v15C21,27.552,21.447,28,22,28z"></path>
|
200 |
-
</g>
|
201 |
-
</g>
|
202 |
-
</g>
|
203 |
-
<g id="alert" data-iconmelon="Dripicons:9202434254c4147a17694cca39d24192">
|
204 |
-
<g>
|
205 |
-
<path d="M31.734,27.775L17.242,2.673c-0.257-0.445-0.731-0.719-1.245-0.719s-0.989,0.273-1.245,0.719L0.193,27.889
|
206 |
-
c-0.257,0.445-0.257,0.994,0,1.438c0.256,0.445,0.731,0.719,1.245,0.719h29.117c0.003,0,0.005,0,0.007,0
|
207 |
-
c0.794,0,1.438-0.644,1.438-1.438C32,28.298,31.902,28.011,31.734,27.775z M3.928,27.17L15.997,6.268L28.065,27.17H3.928z"></path>
|
208 |
-
<path d="M14.559,12.694v6.415c0,0.794,0.644,1.438,1.438,1.438s1.438-0.644,1.438-1.438v-6.415c0-0.794-0.644-1.438-1.438-1.438
|
209 |
-
S14.559,11.9,14.559,12.694z"></path>
|
210 |
-
<path d="M15.995,21.817c-0.471,0-0.935,0.19-1.269,0.525c-0.334,0.334-0.528,0.798-0.528,1.272c0,0.471,0.194,0.934,0.528,1.269
|
211 |
-
c0.334,0.335,0.798,0.528,1.269,0.528c0.475,0,0.938-0.193,1.272-0.528c0.334-0.335,0.528-0.798,0.528-1.269
|
212 |
-
c0-0.475-0.194-0.938-0.528-1.272C16.933,22.008,16.469,21.817,15.995,21.817z"></path>
|
213 |
-
</g>
|
214 |
-
</g>
|
215 |
-
<g id="dashboard" data-iconmelon="Icon Set:48a3ec16dc033fc3ff97928dd4a403f9">
|
216 |
-
<path d="M16,31C7.716,31,1,24.284,1,16.001C1,7.716,7.716,1,16,1s15,6.716,15,15.001
|
217 |
-
C31,24.284,24.284,31,16,31z M16,4.453c-6.377,0-11.546,5.17-11.546,11.548c0,2.261,0.659,4.363,1.783,6.146
|
218 |
-
c0.916-0.901,1.959-1.673,3.095-2.295l4.548,6.28c0.871,1.202,2.551,1.471,3.753,0.601c1.202-0.871,1.471-2.552,0.601-3.754
|
219 |
-
l-3.456-4.772c0.404-0.035,0.811-0.062,1.223-0.062c3.805,0,7.249,1.529,9.763,4.002c1.124-1.781,1.784-3.885,1.784-6.146
|
220 |
-
C27.547,9.623,22.377,4.453,16,4.453z M22.995,14.587c-0.887,0-1.606-0.719-1.606-1.607c0-0.887,0.72-1.606,1.606-1.606
|
221 |
-
c0.888,0,1.607,0.719,1.607,1.606C24.603,13.868,23.883,14.587,22.995,14.587z M19,10.567c-0.889,0-1.608-0.719-1.608-1.607
|
222 |
-
c0-0.887,0.72-1.606,1.608-1.606c0.887,0,1.606,0.719,1.606,1.606C20.606,9.848,19.887,10.567,19,10.567z M12.991,10.567
|
223 |
-
c-0.887,0-1.606-0.719-1.606-1.607c0-0.887,0.72-1.606,1.606-1.606c0.888,0,1.607,0.719,1.607,1.606
|
224 |
-
C14.599,9.848,13.879,10.567,12.991,10.567z M16.991,24.104c0.351,0.499,0.229,1.187-0.269,1.536
|
225 |
-
c-0.499,0.351-1.186,0.229-1.536-0.269l-5.068-7.221c-0.349-0.499-0.229-1.187,0.271-1.536c0.497-0.351,1.186-0.229,1.535,0.269
|
226 |
-
L16.991,24.104z M8.973,14.587c-0.887,0-1.606-0.719-1.606-1.607c0-0.887,0.72-1.606,1.606-1.606c0.888,0,1.607,0.719,1.607,1.606
|
227 |
-
C10.58,13.868,9.86,14.587,8.973,14.587z"></path>
|
228 |
-
</g>
|
229 |
-
<g id="notification-successfully" data-iconmelon="Icon Set:3ebec38b007581025c28ac472e7f2ddc">
|
230 |
-
<path d="M16,30C8.268,30,2,23.732,2,16C2,8.269,8.268,2,16,2s14,6.269,14,14
|
231 |
-
C30,23.732,23.732,30,16,30z M24.121,10.968L22.73,9.481c-0.384-0.41-1.007-0.41-1.391,0l-7.65,8.175l-3.211-3.424
|
232 |
-
c-0.384-0.41-1.006-0.41-1.391,0l-1.391,1.486c-0.385,0.411-0.385,1.076,0,1.487l5.296,5.674c0.384,0.41,1.007,0.41,1.392,0
|
233 |
-
l9.736-10.426C24.506,12.044,24.506,11.379,24.121,10.968z"></path>
|
234 |
-
</g>
|
235 |
-
<g id="curlybrace" data-iconmelon="Batch:c3ad04bef3b1618e487d3af8e52ecc99">
|
236 |
-
<path id="curlybrace" d="M28,12c2.208,0,4,1.792,4,4s-1.792,4-4,4c-1.106,0-2,0.894-2,2v4c0,3.312-2.688,6-6,6v-4
|
237 |
-
c1.106,0,2-0.894,2-2v-4c0-3.312,2.688-6,6-6c-3.312,0-6-2.686-6-6V6c0-1.104-0.894-2-2-2V0c3.312,0,6,2.686,6,6v4
|
238 |
-
C26,11.104,26.894,12,28,12z M6,6c0-3.314,2.686-6,6-6v4c-1.104,0-2,0.896-2,2v4c0,3.314-2.686,6-6,6c3.314,0,6,2.688,6,6v4
|
239 |
-
c0,1.106,0.896,2,2,2v4c-3.314,0-6-2.688-6-6v-4c0-1.106-0.896-2-2-2c-2.208,0-4-1.792-4-4s1.792-4,4-4c1.104,0,2-0.896,2-2V6z
|
240 |
-
M16,14c1.104,0,2,0.896,2,2c0,1.104-0.896,2-2,2c-1.104,0-2-0.896-2-2C14,14.896,14.896,14,16,14z"></path>
|
241 |
-
</g>
|
242 |
-
<g id="mail" data-iconmelon="Batch:550691a05230140806f48388cdb906ba">
|
243 |
-
<path id="mail" d="M24,32l-10.588-7.942L28,4L9.212,20.91L0,14L32,0L24,32z M8,32v-8l6,4L8,32z"></path>
|
244 |
-
</g>
|
245 |
-
<g id="like" data-iconmelon="e-commerce icons:c1a2f75012da3876c0d62896144f5294">
|
246 |
-
<path d="M31.238,18.526c0.344-0.438,0.739-1.165,0.761-2.209c0.061-2.938-2.753-3.924-4.299-4.037h-4.721l-0.066-0.004
|
247 |
-
c-0.191-0.414,0.106-0.872,0.103-0.872c0,0,0,0,0,0.001c0.062-0.077,1.562-1.91,2.572-4.906c1.12-3.325-1.752-5.679-1.875-5.777
|
248 |
-
l-0.167-0.099c-0.111-0.045-1.111-0.431-2.058,0.126c-0.723,0.426-1.16,1.249-1.301,2.449c-0.326,2.789-2.667,5.125-3.759,5.981
|
249 |
-
c-0.154,0.12-0.277,0.217-0.36,0.29c-0.796,0.688-1.586,2.489-2.184,3.715c-0.4,0.82-1.498,2.139-2.062,2.625
|
250 |
-
c-0.385,0.009-1.146,0.022-1.653,0.025C9.976,15.223,9.409,14.5,8.735,14.5H1.511C0.678,14.5,0,15.177,0,16.01v14.006
|
251 |
-
c0,0.833,0.678,1.511,1.511,1.511h7.225c0.734,0,1.347-0.528,1.48-1.225c0.26-0.011,0.496-0.254,0.633-0.235
|
252 |
-
c0.188,0.204,0.61,1,1.646,1.419l0.122,0.05h0.132c0.082,0,4.855,0.014,9.185,0.014c2.184,0,4.082-0.003,4.855-0.014
|
253 |
-
c1.4-0.019,2.127-0.633,2.491-1.145c0.705-0.99,0.72-2.118,0.592-2.791c0.915-0.843,1.022-2.361,1.046-2.992
|
254 |
-
c0.021-0.563-0.117-0.966-0.303-1.371c0.515-0.466,1.035-1.379,1.107-2.539C31.784,19.686,31.509,18.973,31.238,18.526z
|
255 |
-
M8.881,30.016c0,0.081-0.065,0.146-0.146,0.146H1.511c-0.081,0-0.146-0.065-0.146-0.146V16.01c0-0.08,0.065-0.146,0.146-0.146
|
256 |
-
h7.225c0.08,0,0.146,0.065,0.146,0.146V30.016z M29.941,17.924l-0.676,0.497l0.619,0.57c0.022,0.021,0.544,0.514,0.476,1.623
|
257 |
-
c-0.077,1.267-0.937,1.807-0.945,1.811l-0.987,0.412l0.793,0.702c0.065,0.075,0.39,0.468,0.327,1.121
|
258 |
-
c-0.054,0.557-0.258,1.692-0.852,2.146l-0.773,0.296l0.541,0.462c0.138,0.413,0.162,1.394-0.296,2.037
|
259 |
-
c-0.266,0.375-0.723,0.562-1.396,0.57c-2.168,0.029-12.532,0.004-13.885,0.001c-0.429-0.183-0.86-0.405-1.002-0.519
|
260 |
-
c-0.119-0.214-0.444-1.004-1.671-0.965v-11.49c0.721-0.005,1.877-0.03,1.877-0.03l0.235-0.005l0.181-0.147
|
261 |
-
c0.079-0.063,1.933-1.857,2.604-3.232c0.642-1.317,1.303-2.81,1.848-3.281c0.072-0.062,0.179-0.145,0.311-0.249
|
262 |
-
c1.121-0.878,3.881-3.543,4.272-6.896c0.087-0.737,0.305-1.23,0.631-1.428c0.278-0.167,0.618-0.109,0.771-0.069
|
263 |
-
c0.403,0.365,2.077,2.046,1.351,4.203c-0.924,2.745-2.317,4.457-2.36,4.511c-0.347,0.486-0.759,1.571-0.104,2.552
|
264 |
-
c0.297,0.447,0.812,0.56,1.192,0.519l4.625-0.002c0.124,0.01,3.035,0.271,2.987,2.647C30.611,17.402,29.961,17.908,29.941,17.924z"></path>
|
265 |
-
</g>
|
266 |
-
<g id="graph-pie" data-iconmelon="Simple Line Icons:71c74430bea16c2cc5114c5abdd1f0b6">
|
267 |
-
<g>
|
268 |
-
<path d="M17.703,0.025h-0.579v15.794H31.92l0.041-0.534C31.983,14.961,32,14.639,32,14.315
|
269 |
-
C32,6.436,25.586,0.025,17.703,0.025z M30.837,14.661H18.281V1.194c6.979,0.302,12.562,6.071,12.562,13.121
|
270 |
-
C30.843,14.431,30.84,14.548,30.837,14.661z"></path>
|
271 |
-
<path d="M14.873,3.389h-0.578C6.412,3.389,0,9.802,0,17.685c0,7.88,6.412,14.291,14.295,14.291
|
272 |
-
c7.496,0,13.76-5.855,14.253-13.333l0.047-0.616H14.873V3.389z M27.344,19.183c-0.75,6.572-6.365,11.637-13.049,11.637
|
273 |
-
c-7.244,0-13.138-5.891-13.138-13.135c0-7.051,5.579-12.823,12.559-13.127v14.625H27.344z"></path>
|
274 |
-
</g>
|
275 |
-
</g>
|
276 |
-
<g id="gear" data-iconmelon="Simple Line Icons:d462fc19c129305f79c25b55d71b243a">
|
277 |
-
<g>
|
278 |
-
<path d="M16.001,9.637c-3.507,0-6.36,2.855-6.36,6.363c0,3.507,2.854,6.364,6.36,6.364
|
279 |
-
c3.51,0,6.363-2.857,6.363-6.364C22.364,12.492,19.511,9.637,16.001,9.637z M16.001,21.202c-2.867,0-5.197-2.335-5.197-5.202
|
280 |
-
s2.33-5.201,5.197-5.201s5.201,2.334,5.201,5.201S18.868,21.202,16.001,21.202z"></path>
|
281 |
-
<path d="M31.489,11.571l-3.681-0.464l2.278-2.928c0.18-0.231,0.158-0.562-0.049-0.768L24.59,1.959
|
282 |
-
c-0.206-0.208-0.537-0.223-0.767-0.047l-2.932,2.279l-0.459-3.68C20.396,0.218,20.147,0,19.854,0h-7.707
|
283 |
-
c-0.293,0-0.54,0.218-0.578,0.512L11.11,4.193L8.183,1.916c-0.23-0.178-0.559-0.158-0.768,0.047L1.963,7.412
|
284 |
-
C1.757,7.617,1.735,7.948,1.916,8.18l2.277,2.928l-3.681,0.464c-0.291,0.036-0.51,0.282-0.51,0.574v7.71
|
285 |
-
c0,0.293,0.219,0.538,0.51,0.576l3.681,0.459l-2.277,2.933c-0.181,0.231-0.159,0.561,0.047,0.767l5.452,5.448
|
286 |
-
c0.209,0.21,0.537,0.228,0.768,0.046l2.928-2.276l0.459,3.685C11.607,31.781,11.854,32,12.147,32h7.707
|
287 |
-
c0.293,0,0.541-0.219,0.578-0.508l0.459-3.685l2.932,2.276c0.232,0.182,0.561,0.164,0.767-0.046l5.448-5.452
|
288 |
-
c0.207-0.208,0.229-0.537,0.049-0.77l-2.277-2.926l3.679-0.459c0.292-0.038,0.509-0.283,0.509-0.576v-7.71
|
289 |
-
C31.997,11.854,31.78,11.607,31.489,11.571z M30.837,19.342l-4.184,0.521c-0.208,0.025-0.385,0.161-0.465,0.354
|
290 |
-
c-0.079,0.192-0.052,0.413,0.077,0.579l2.589,3.33l-4.725,4.727l-3.332-2.59c-0.162-0.125-0.382-0.156-0.577-0.077
|
291 |
-
c-0.192,0.081-0.328,0.259-0.354,0.465l-0.524,4.187h-6.683l-0.523-4.187c-0.026-0.206-0.162-0.384-0.354-0.465
|
292 |
-
c-0.193-0.083-0.413-0.05-0.578,0.077l-3.329,2.59l-4.727-4.722l2.591-3.335c0.128-0.166,0.157-0.387,0.079-0.579
|
293 |
-
c-0.082-0.193-0.258-0.329-0.465-0.354l-4.187-0.521v-6.683l4.188-0.527c0.206-0.024,0.385-0.161,0.464-0.353
|
294 |
-
c0.078-0.193,0.049-0.414-0.079-0.58L3.147,7.871l4.727-4.724l3.329,2.589c0.166,0.128,0.388,0.161,0.578,0.079
|
295 |
-
c0.192-0.081,0.328-0.26,0.354-0.466l0.523-4.187h6.683l0.524,4.187c0.026,0.206,0.162,0.385,0.354,0.466
|
296 |
-
c0.192,0.079,0.414,0.048,0.577-0.079l3.332-2.595l4.725,4.729l-2.589,3.328c-0.129,0.166-0.156,0.387-0.077,0.58
|
297 |
-
c0.078,0.191,0.257,0.328,0.463,0.353l4.186,0.527V19.342z"></path>
|
298 |
-
</g>
|
299 |
-
</g>
|
300 |
-
<g id="tag" data-iconmelon="Simple Line Icons:7dab9c952ae053da36490e7f16f8d43e">
|
301 |
-
<g>
|
302 |
-
<path d="M16,0c-5.06,0-9.176,4.117-9.176,9.176c0,3.539,3.322,10.081,6.292,15.227
|
303 |
-
c-3.371,0.541-5.589,1.961-5.589,3.675C7.525,30.313,11.169,32,16,32c4.831,0,8.473-1.687,8.473-3.923
|
304 |
-
c0-1.714-2.218-3.134-5.587-3.675c2.967-5.148,6.291-11.693,6.291-15.227C25.176,4.117,21.059,0,16,0z M16,1.173
|
305 |
-
c4.415,0,8.003,3.588,8.003,8.003c0,3.623-4.106,11.192-6.557,15.387c-0.591,1.01-1.099,1.842-1.446,2.408
|
306 |
-
c-0.346-0.566-0.853-1.398-1.444-2.408c-2.451-4.191-6.562-11.76-6.562-15.387C7.994,4.761,11.585,1.173,16,1.173z M23.301,28.077
|
307 |
-
c0,1.304-2.999,2.752-7.302,2.752c-4.304,0-7.304-1.448-7.304-2.752c0-0.972,1.879-2.181,5.042-2.594
|
308 |
-
c0.152,0.26,0.28,0.471,0.418,0.702c0.075,0.127,0.155,0.258,0.226,0.379c0.175,0.287,0.322,0.527,0.46,0.756
|
309 |
-
c0.044,0.071,0.092,0.15,0.132,0.215c0.151,0.248,0.268,0.436,0.357,0.581c0.009,0.011,0.022,0.035,0.032,0.049
|
310 |
-
c0.089,0.144,0.142,0.225,0.142,0.225l0.493,0.779l0.497-0.779c0,0,0.047-0.073,0.134-0.212c0.02-0.032,0.049-0.081,0.075-0.123
|
311 |
-
c0.088-0.137,0.19-0.302,0.327-0.527c0.032-0.049,0.068-0.11,0.102-0.162c0.145-0.241,0.306-0.503,0.492-0.812
|
312 |
-
c0.063-0.106,0.136-0.229,0.204-0.344c0.142-0.237,0.276-0.459,0.433-0.726C21.425,25.896,23.301,27.105,23.301,28.077z"></path>
|
313 |
-
<path d="M21.741,9.176c0-3.164-2.577-5.738-5.742-5.738s-5.74,2.574-5.74,5.738c0,3.168,2.575,5.745,5.74,5.745
|
314 |
-
S21.741,12.344,21.741,9.176z M11.431,9.176c0-2.52,2.05-4.567,4.568-4.567c2.52,0,4.569,2.048,4.569,4.567
|
315 |
-
c0,2.521-2.05,4.572-4.569,4.572C13.481,13.748,11.431,11.697,11.431,9.176z"></path>
|
316 |
-
</g>
|
317 |
-
</g>
|
318 |
-
<g id="heart" data-iconmelon="Simple Line Icons:4d8790feb0398dfc768a4d4d14c15dfc">
|
319 |
-
<g>
|
320 |
-
<path d="M21.753,0c-2.078,0-4.056,0.617-5.752,1.787C14.324,0.631,12.297,0,10.253,0
|
321 |
-
C7.554,0,5.019,1.051,3.112,2.959C1.2,4.87,0.146,7.413,0.146,10.115c0,2.705,1.054,5.247,2.94,7.131L16.001,32l12.893-14.727
|
322 |
-
c3.945-3.946,3.945-10.367,0.002-14.314C26.985,1.051,24.45,0,21.753,0z M28.068,16.499L16.001,30.278L3.913,16.473
|
323 |
-
c-1.7-1.697-2.636-3.955-2.636-6.357c0-2.4,0.936-4.658,2.636-6.355c1.691-1.696,3.943-2.629,6.34-2.629
|
324 |
-
c1.969,0,3.84,0.627,5.408,1.807l0.34,0.256l0.342-0.255c1.567-1.181,3.438-1.808,5.41-1.808c2.395,0,4.647,0.933,6.342,2.629
|
325 |
-
C31.599,7.266,31.599,12.97,28.068,16.499z"></path>
|
326 |
-
</g>
|
327 |
-
</g>
|
328 |
-
<g id="globe" data-iconmelon="Simple Line Icons:ac44ad7e025985c356d6e2008b8a6bbb">
|
329 |
-
<g>
|
330 |
-
<path d="M28.74,19.854l-2.132,2.133l-1.754-1.754c2.733-3.042,3.458-7.231,2.175-10.899l0,0V9.332
|
331 |
-
c-0.525-1.497-1.349-2.906-2.542-4.101c-2.06-2.062-4.808-3.199-7.727-3.199c-0.205,0-0.402,0.046-0.607,0.059
|
332 |
-
C16.09,2.098,16.03,2.084,15.97,2.108c-2.421,0.175-4.676,1.127-6.481,2.755L7.734,3.108l2.129-2.129
|
333 |
-
c0.224-0.225,0.224-0.587,0-0.812c-0.225-0.224-0.589-0.224-0.813,0L6.517,2.702c-5.65,5.655-5.65,14.852,0,20.502
|
334 |
-
c2.714,2.713,6.247,4.11,9.81,4.22c-0.211,1.082-0.953,3.431-3.462,3.431h-0.717c-0.317,0-0.575,0.258-0.575,0.572
|
335 |
-
c0,0.315,0.258,0.573,0.575,0.573h9.237c0.317,0,0.577-0.258,0.577-0.573c0-0.314-0.26-0.572-0.577-0.572h-5.562
|
336 |
-
c1.025-0.983,1.499-2.382,1.664-3.446c3.466-0.172,6.884-1.561,9.527-4.204l2.539-2.539c0.224-0.225,0.224-0.585,0-0.812
|
337 |
-
C29.328,19.63,28.964,19.63,28.74,19.854z M23.675,19.866c-1.847,1.847-4.298,2.865-6.911,2.865c-2.607,0-5.064-1.019-6.909-2.865
|
338 |
-
C8.7,18.712,7.937,17.323,7.482,15.86l1.015-0.311l1.33,0.968c0.102,0.073,0.222,0.109,0.339,0.109
|
339 |
-
c0.162,0,0.326-0.073,0.438-0.206l1.973-2.317c0.15-0.171,0.187-0.41,0.093-0.617c-0.093-0.203-0.298-0.336-0.522-0.336h-1.403
|
340 |
-
l-0.736-0.509L9.964,11.69l0.931-0.648c0.15-0.106,0.243-0.282,0.243-0.471V7.172c0-0.316-0.257-0.573-0.571-0.573H9.4
|
341 |
-
C9.559,6.415,9.68,6.217,9.854,6.044c1.48-1.482,3.357-2.399,5.388-2.715l-0.654,1.423c-0.096,0.216-0.055,0.468,0.109,0.637
|
342 |
-
l1.087,1.135c0.049,0.053,0.106,0.092,0.169,0.124l2.223,1.046c0.169,0.076,0.355,0.068,0.512-0.012c0,0,0.547-0.288,0.892-0.503
|
343 |
-
c0.339,0,1.417,0.242,2.345,0.498l1.721,2.03c0.109,0.126,0.269,0.201,0.438,0.201h1.923
|
344 |
-
C27.117,13.301,26.367,17.177,23.675,19.866z M8.514,7.745h1.478v2.528L9.045,10.93c-0.162,0.112-0.255,0.301-0.241,0.498
|
345 |
-
l0.068,1.552c0.009,0.181,0.102,0.343,0.249,0.447l1.116,0.771c0.097,0.065,0.211,0.101,0.329,0.101h0.314l-0.812,0.975
|
346 |
-
l-1.133-0.818c-0.146-0.106-0.334-0.134-0.504-0.085L7.17,14.757C6.727,12.372,7.182,9.86,8.514,7.745z M23.675,6.044
|
347 |
-
c0.808,0.808,1.406,1.738,1.874,2.716h-1.201l-1.663-1.959c-0.074-0.087-0.17-0.149-0.279-0.181
|
348 |
-
c-2.843-0.807-3.185-0.58-3.374-0.454c-0.166,0.111-0.432,0.26-0.623,0.364l-1.869-0.876l-0.744-0.777L16.566,3.2
|
349 |
-
c0.065-0.003,0.129-0.02,0.194-0.02C19.374,3.181,21.828,4.196,23.675,6.044z M6.963,3.964l1.713,1.715
|
350 |
-
C8.36,6.029,8.057,6.381,7.794,6.76c-0.011,0.011-0.017,0.024-0.03,0.038c-2.908,4.25-2.495,10.109,1.278,13.881
|
351 |
-
c2.063,2.063,4.805,3.2,7.722,3.2c2.725,0,5.272-1.024,7.278-2.835l1.712,1.713c-5.229,4.793-13.36,4.699-18.425-0.365
|
352 |
-
C2.265,17.33,2.169,9.195,6.963,3.964z"></path>
|
353 |
-
<path d="M19.341,14.359c-0.132-0.174-0.358-0.251-0.574-0.215c-0.214,0.044-0.389,0.211-0.438,0.425
|
354 |
-
c-0.096,0.374-0.207,0.796-0.309,1.135c-0.358-0.274-0.903-0.652-1.727-1.175l-2.126-1.296c-0.147-0.092-0.343-0.106-0.504-0.041
|
355 |
-
c-0.169,0.063-0.295,0.203-0.347,0.375l-0.484,1.699l-1.582,1.979c-0.079,0.103-0.123,0.229-0.123,0.359v1.964
|
356 |
-
c0,0.263,0.178,0.493,0.432,0.557l2.934,0.724h4.392c0.112,0,0.222-0.036,0.314-0.096l1.814-1.188
|
357 |
-
c0.159-0.106,0.255-0.287,0.255-0.48v-1.996c0-0.126-0.039-0.246-0.112-0.348L19.341,14.359z M20.121,18.774l-1.409,0.924
|
358 |
-
l-4.077,0.018l-2.361-0.594v-1.316l1.529-1.909c0.047-0.061,0.082-0.129,0.104-0.203l0.31-1.083l1.472,0.895
|
359 |
-
c0.857,0.544,1.875,1.255,1.981,1.346c0.079,0.235,0.325,0.425,0.572,0.425c0.383,0,0.569-0.14,0.897-1.283l0.982,1.288V18.774z"></path>
|
360 |
-
<path d="M24.89,10.203h-2.126c-0.317,0-0.574,0.259-0.574,0.575v2.175c0,0.182,0.088,0.349,0.229,0.46
|
361 |
-
c0.099,0.073,0.222,0.113,0.345,0.113c0.053,0,0.107-0.005,0.162-0.021l2.125-0.619c0.244-0.07,0.414-0.295,0.414-0.552v-1.556
|
362 |
-
C25.465,10.462,25.207,10.203,24.89,10.203z M24.315,11.904l-0.978,0.284v-0.837h0.978V11.904z"></path>
|
363 |
-
</g>
|
364 |
-
</g>
|
365 |
-
<g id="light-bulb" data-iconmelon="Simple Line Icons:9ff25771e9af233ed426a383424af038">
|
366 |
-
<g>
|
367 |
-
<path d="M15.809,6.918c-4.82,0-8.745,3.924-8.745,8.747c0,2.683,1.223,5.169,3.36,6.852
|
368 |
-
c0.039,0.058,0.089,0.108,0.148,0.149c0.014,0.008,1.147,0.771,1.147,2.232c0,0.021,0.023,0.036,0.023,0.061
|
369 |
-
c0.003,0.02-0.016,0.036-0.011,0.056l1.436,6.556c0.055,0.251,0.276,0.43,0.535,0.43h4.215c0.256,0,0.479-0.179,0.535-0.43
|
370 |
-
l1.438-6.556c0.006-0.02-0.016-0.036-0.013-0.056c0.002-0.024,0.026-0.039,0.026-0.061c0-1.442,1.097-2.204,1.142-2.232
|
371 |
-
c0.05-0.034,0.086-0.076,0.12-0.123c2.155-1.684,3.389-4.183,3.389-6.878C24.555,10.842,20.633,6.918,15.809,6.918z M17.477,30.904
|
372 |
-
h-3.332l-0.117-0.539h3.566L17.477,30.904z M17.834,29.268h-4.047l-0.121-0.544h4.288L17.834,29.268z M18.195,27.626h-4.77
|
373 |
-
l-0.475-2.181h5.725L18.195,27.626z M20.397,21.752c-0.047,0.034-0.086,0.072-0.117,0.119c-0.366,0.295-1.239,1.123-1.435,2.479
|
374 |
-
h-2.488v-7.648c0-0.601,0.492-1.092,1.093-1.092c0.301,0,0.549-0.246,0.549-0.549s-0.248-0.549-0.549-0.549
|
375 |
-
c-0.664,0-1.238,0.313-1.642,0.78c-0.039-0.046-0.052-0.101-0.096-0.143c-0.41-0.411-0.957-0.638-1.534-0.638
|
376 |
-
c-0.003,0-0.005,0-0.008,0c-0.301,0-0.546,0.246-0.546,0.551c0,0.303,0.245,0.547,0.549,0.547c0,0,0,0,0.002,0c0,0,0,0,0.003,0
|
377 |
-
c0.284,0,0.557,0.111,0.763,0.317c0.207,0.204,0.322,0.48,0.322,0.774v7.648h-2.485c-0.193-1.349-1.062-2.176-1.433-2.476
|
378 |
-
c-0.033-0.046-0.072-0.087-0.119-0.12c-1.95-1.475-3.065-3.692-3.065-6.089c0-4.219,3.431-7.649,7.647-7.649
|
379 |
-
c4.221,0,7.651,3.431,7.651,7.649C23.46,18.061,22.342,20.277,20.397,21.752z"></path>
|
380 |
-
<path d="M16.002,4.781c0.301,0,0.549-0.246,0.549-0.548V0.549C16.551,0.246,16.303,0,16.002,0
|
381 |
-
c-0.303,0-0.545,0.246-0.545,0.549v3.685C15.457,4.535,15.699,4.781,16.002,4.781z"></path>
|
382 |
-
<path d="M7.801,7.856C7.91,7.965,8.049,8.018,8.189,8.018c0.145,0,0.282-0.053,0.387-0.161
|
383 |
-
c0.215-0.214,0.215-0.561,0-0.776L5.974,4.477c-0.214-0.216-0.562-0.216-0.776,0c-0.211,0.213-0.211,0.561,0,0.775L7.801,7.856z"></path>
|
384 |
-
<path d="M5.504,15.281c0-0.302-0.246-0.549-0.547-0.549H1.268c-0.303,0-0.549,0.247-0.549,0.549
|
385 |
-
c0,0.303,0.246,0.549,0.549,0.549h3.689C5.258,15.83,5.504,15.584,5.504,15.281z"></path>
|
386 |
-
<path d="M7.809,22.703L5.197,25.31c-0.211,0.215-0.211,0.561,0,0.775c0.11,0.108,0.249,0.161,0.39,0.161
|
387 |
-
c0.136,0,0.28-0.053,0.387-0.161l2.608-2.605c0.214-0.216,0.214-0.562,0-0.776C8.37,22.492,8.022,22.488,7.809,22.703z"></path>
|
388 |
-
<path d="M24.199,23.174c-0.214-0.209-0.559-0.215-0.775,0c-0.217,0.216-0.217,0.562,0,0.775l2.602,2.611
|
389 |
-
c0.107,0.106,0.249,0.16,0.39,0.16c0.139,0,0.28-0.054,0.387-0.16c0.215-0.213,0.215-0.561,0-0.775L24.199,23.174z"></path>
|
390 |
-
<path d="M30.732,14.732l-3.685-0.004c-0.301,0-0.549,0.244-0.549,0.549c0,0.302,0.245,0.546,0.549,0.546
|
391 |
-
l3.685,0.007c0.303,0,0.549-0.244,0.549-0.549C31.281,14.979,31.037,14.732,30.732,14.732z"></path>
|
392 |
-
<path d="M23.811,8.016c0.139,0,0.279-0.054,0.389-0.162l2.608-2.603c0.214-0.216,0.214-0.562,0-0.776
|
393 |
-
c-0.212-0.214-0.56-0.217-0.776,0l-2.607,2.604c-0.217,0.216-0.217,0.561,0,0.774C23.528,7.962,23.669,8.016,23.811,8.016z"></path>
|
394 |
-
</g>
|
395 |
-
</g>
|
396 |
-
<g id="success" data-iconmelon="80 icons pack:42aff8ecc254a0254be7fd43df10ab07">
|
397 |
-
<g>
|
398 |
-
<g>
|
399 |
-
<path d="M22.917,9.959c-0.572-0.42-1.377-0.298-1.797,0.274l-7.005,9.526l-3.27-4.055c-0.445-0.553-1.254-0.64-1.808-0.194
|
400 |
-
c-0.552,0.446-0.639,1.255-0.193,1.807l4.316,5.354c0.245,0.303,0.612,0.479,1.001,0.479c0.009,0,0.019,0,0.028,0
|
401 |
-
c0.398-0.009,0.771-0.203,1.007-0.524l7.992-10.871C23.61,11.184,23.487,10.379,22.917,9.959z"></path>
|
402 |
-
</g>
|
403 |
-
<g>
|
404 |
-
<path d="M16,0C7.178,0,0,7.178,0,16c0,8.823,7.178,16,16,16s16-7.178,16-16C32,7.178,24.822,0,16,0z M16,28.888
|
405 |
-
C8.894,28.888,3.112,23.106,3.112,16C3.112,8.894,8.894,3.112,16,3.112S28.888,8.894,28.888,16
|
406 |
-
C28.888,23.106,23.106,28.888,16,28.888z"></path>
|
407 |
-
</g>
|
408 |
-
</g>
|
409 |
-
</g>
|
410 |
-
<g id="error" data-iconmelon="80 icons pack:a727f97a9188078bf1c40cc3c4a82836">
|
411 |
-
<g>
|
412 |
-
<g>
|
413 |
-
<path d="M16,0C7.178,0,0,7.178,0,16c0,8.822,7.178,16,16,16s16-7.178,16-16C32,7.178,24.822,0,16,0z M16,28.888
|
414 |
-
C8.895,28.888,3.111,23.106,3.111,16C3.111,8.894,8.895,3.112,16,3.112S28.889,8.894,28.889,16
|
415 |
-
C28.889,23.106,23.105,28.888,16,28.888z"></path>
|
416 |
-
</g>
|
417 |
-
<g>
|
418 |
-
<path d="M22.203,9.393c-0.626-0.587-1.611-0.558-2.199,0.07L16,13.727l-4.004-4.265c-0.588-0.627-1.573-0.657-2.199-0.07
|
419 |
-
c-0.627,0.589-0.658,1.573-0.069,2.199L13.867,16l-4.14,4.408c-0.589,0.626-0.558,1.61,0.069,2.199
|
420 |
-
c0.301,0.281,0.683,0.421,1.065,0.421c0.414,0,0.827-0.165,1.134-0.491L16,18.273l4.004,4.265c0.307,0.326,0.72,0.491,1.134,0.491
|
421 |
-
c0.383,0,0.765-0.14,1.065-0.421c0.627-0.589,0.657-1.573,0.069-2.199L18.133,16l4.14-4.408
|
422 |
-
C22.86,10.966,22.83,9.981,22.203,9.393z"></path>
|
423 |
-
</g>
|
424 |
-
</g>
|
425 |
-
</g>
|
426 |
-
<g id="map" data-iconmelon="80 icons pack:a8e1bb63d94e793c6286368efcf68a4d">
|
427 |
-
<g>
|
428 |
-
<g>
|
429 |
-
<path d="M30.431,3.775l-7.826-2.128c-0.185-0.051-0.372-0.075-0.559-0.075c-0.374,0-0.74,0.104-1.066,0.292
|
430 |
-
c-0.325-0.189-0.692-0.292-1.066-0.292c-0.187,0-0.374,0.024-0.558,0.075l-7.826,2.128c-0.184,0.049-0.351,0.127-0.509,0.22
|
431 |
-
c-0.158-0.093-0.325-0.171-0.509-0.22L2.686,1.647C2.501,1.597,2.313,1.572,2.127,1.572c-0.462,0-0.917,0.151-1.292,0.438
|
432 |
-
C0.309,2.412,0,3.037,0,3.7v22.473c0,0.96,0.643,1.801,1.569,2.053l7.826,2.127c0.185,0.05,0.372,0.075,0.559,0.075
|
433 |
-
c0.373,0,0.74-0.103,1.066-0.292c0.325,0.189,0.692,0.292,1.066,0.292c0.187,0,0.374-0.024,0.558-0.075l7.827-2.127
|
434 |
-
c0.183-0.049,0.35-0.128,0.508-0.22c0.158,0.092,0.326,0.171,0.509,0.22l7.826,2.127c0.185,0.05,0.372,0.075,0.559,0.075
|
435 |
-
c0.461,0,0.917-0.151,1.292-0.437C31.691,29.588,32,28.963,32,28.3V5.828C32,4.868,31.357,4.027,30.431,3.775z M9.954,28.3
|
436 |
-
l-7.827-2.127V3.7l7.827,2.128V28.3z M19.913,10.94c-0.009,0.007-0.019,0.012-0.027,0.02c-0.229,0.185-0.263,0.52-0.077,0.749
|
437 |
-
c0.028,0.036,0.068,0.055,0.104,0.082v14.383L12.087,28.3v-4.857c0.016,0,0.032,0.002,0.048,0.002h0.002
|
438 |
-
c0.499,0,0.983-0.092,1.441-0.274c0.273-0.108,0.406-0.417,0.298-0.69c-0.107-0.273-0.416-0.407-0.69-0.298
|
439 |
-
c-0.332,0.132-0.685,0.199-1.049,0.199h-0.001c-0.017,0-0.033-0.004-0.049-0.004V5.828L19.913,3.7V10.94z M29.873,28.3
|
440 |
-
l-7.827-2.127V11.244c0.179,0.007,0.361,0.038,0.551,0.091c0.281,0.08,0.576-0.084,0.656-0.367s-0.084-0.577-0.367-0.656
|
441 |
-
c-0.284-0.081-0.563-0.122-0.84-0.13V3.7l7.827,2.128V28.3z"></path>
|
442 |
-
</g>
|
443 |
-
<g>
|
444 |
-
<path d="M4.519,17.446c0.099,0.168,0.276,0.26,0.457,0.26c0.093,0,0.187-0.024,0.271-0.074c0.253-0.15,0.335-0.477,0.186-0.729
|
445 |
-
c-0.237-0.4-0.437-0.777-0.59-1.12c-0.12-0.269-0.436-0.389-0.702-0.268c-0.269,0.12-0.389,0.435-0.269,0.703
|
446 |
-
C4.042,16.598,4.26,17.012,4.519,17.446z"></path>
|
447 |
-
</g>
|
448 |
-
<g>
|
449 |
-
<path d="M8.097,21.7c0.099,0.081,0.219,0.121,0.337,0.121c0.154,0,0.307-0.067,0.412-0.194c0.186-0.227,0.153-0.562-0.073-0.749
|
450 |
-
c-0.618-0.508-1.233-1.128-1.828-1.844c-0.188-0.226-0.523-0.257-0.749-0.069s-0.257,0.524-0.068,0.75
|
451 |
-
C6.765,20.48,7.427,21.148,8.097,21.7z"></path>
|
452 |
-
</g>
|
453 |
-
<g>
|
454 |
-
<path d="M17.283,16.461c0.064,0.025,0.131,0.037,0.195,0.037c0.212,0,0.412-0.127,0.494-0.337
|
455 |
-
c0.395-0.998,0.739-1.761,1.087-2.403c0.14-0.258,0.044-0.581-0.214-0.721c-0.259-0.14-0.581-0.044-0.722,0.214
|
456 |
-
c-0.368,0.68-0.731,1.481-1.141,2.521C16.876,16.045,17.01,16.354,17.283,16.461z"></path>
|
457 |
-
</g>
|
458 |
-
<g>
|
459 |
-
<path d="M15.118,21.399c0.09,0.058,0.191,0.086,0.29,0.086c0.174,0,0.345-0.085,0.446-0.241c0.42-0.643,0.811-1.61,1.169-2.56
|
460 |
-
c0.104-0.275-0.034-0.582-0.31-0.686c-0.273-0.104-0.581,0.035-0.686,0.31c-0.337,0.893-0.7,1.796-1.064,2.354
|
461 |
-
C14.804,20.909,14.872,21.238,15.118,21.399z"></path>
|
462 |
-
</g>
|
463 |
-
<g>
|
464 |
-
<path d="M23.925,15.653c0.103,0.096,0.233,0.144,0.364,0.144c0.142,0,0.283-0.056,0.388-0.167l1.397-1.49l1.398,1.49
|
465 |
-
c0.105,0.111,0.246,0.167,0.389,0.167c0.13,0,0.261-0.048,0.363-0.144c0.215-0.201,0.226-0.538,0.023-0.752l-1.443-1.539
|
466 |
-
l1.443-1.538c0.202-0.214,0.191-0.551-0.023-0.752s-0.551-0.19-0.752,0.024l-1.372,1.462c-0.243-0.256-0.483-0.5-0.717-0.713
|
467 |
-
c-0.003-0.002-0.006-0.002-0.008-0.005l-0.699-0.744c-0.201-0.214-0.538-0.225-0.752-0.024c-0.214,0.201-0.225,0.538-0.023,0.752
|
468 |
-
l1.443,1.538l-1.443,1.539C23.7,15.116,23.711,15.452,23.925,15.653z"></path>
|
469 |
-
</g>
|
470 |
-
</g>
|
471 |
-
</g>
|
472 |
-
<g id="flag" data-iconmelon="80 icons pack:58f619779b2896b43f8621fd1549b7c3">
|
473 |
-
<g>
|
474 |
-
<path d="M28.875,0.98C27.254,0.321,25.554,0,23.676,0c-2.743,0-5.435,0.693-8.039,1.365c-2.54,0.654-4.938,1.272-7.312,1.272
|
475 |
-
c-1.495,0-2.837-0.25-4.104-0.767C3.905,1.745,3.587,1.68,3.275,1.68C2.12,1.68,1.25,2.566,1.25,3.743V6.3v11.825v12.42
|
476 |
-
C1.25,31.35,1.901,32,2.705,32s1.456-0.65,1.456-1.455V21.25c1.31,0.41,2.681,0.617,4.164,0.617c2.743,0,5.435-0.693,8.039-1.364
|
477 |
-
c2.54-0.655,4.939-1.273,7.313-1.273c1.495,0,2.837,0.25,4.104,0.767c0.315,0.127,0.632,0.191,0.945,0.191
|
478 |
-
c1.155,0,2.025-0.887,2.025-2.062V3.74C30.749,2.6,29.942,1.412,28.875,0.98z M27.84,16.928c-1.31-0.408-2.682-0.608-4.164-0.608
|
479 |
-
c-2.743,0-5.436,0.693-8.039,1.365c-2.54,0.654-4.938,1.272-7.312,1.272c-1.495,0-2.836-0.25-4.065-0.746
|
480 |
-
c-0.032-0.023-0.08-0.09-0.094-0.09c-0.002,0-0.004,0.002-0.004,0.004V6.3v-1.36c1.31,0.41,2.682,0.608,4.164,0.608
|
481 |
-
c2.743,0,5.435-0.693,8.039-1.364c2.54-0.654,4.938-1.273,7.312-1.273c1.495,0,2.837,0.25,4.065,0.746
|
482 |
-
c0.036,0.025,0.094,0.109,0.099,0.087V16.928z"></path>
|
483 |
-
</g>
|
484 |
-
</g>
|
485 |
-
<g id="lifebuoy" data-iconmelon="80 icons pack:34d6e251f967da1d28b6a7bd4a654dd0">
|
486 |
-
<g>
|
487 |
-
<g>
|
488 |
-
<path d="M27.313,4.687C24.291,1.665,20.273,0,16,0S7.709,1.665,4.687,4.687c-3.021,3.022-4.686,7.04-4.686,11.314
|
489 |
-
c0,4.273,1.664,8.291,4.686,11.313C7.709,30.336,11.727,32,16,32s8.291-1.664,11.313-4.686c3.021-3.022,4.686-7.04,4.686-11.313
|
490 |
-
C31.999,11.727,30.335,7.709,27.313,4.687z M10.257,21.744c-3.167-3.167-3.167-8.321,0-11.488C11.791,8.722,13.831,7.877,16,7.877
|
491 |
-
c2.17,0,4.21,0.845,5.743,2.379c1.535,1.534,2.38,3.574,2.38,5.744s-0.845,4.209-2.38,5.744C20.21,23.278,18.17,24.124,16,24.124
|
492 |
-
C13.831,24.124,11.791,23.278,10.257,21.744z M25.412,19.631c0.441-1.144,0.68-2.368,0.68-3.63c0-1.071-0.172-2.114-0.491-3.104
|
493 |
-
l3.025-3.024c0.917,1.886,1.404,3.969,1.404,6.129c0,2.341-0.57,4.596-1.645,6.604L25.412,19.631z M22.128,3.374l-3.025,3.025
|
494 |
-
C18.112,6.08,17.07,5.908,16,5.908c-1.262,0-2.486,0.239-3.631,0.68L9.396,3.614C11.403,2.54,13.658,1.969,16,1.969
|
495 |
-
C18.158,1.969,20.241,2.457,22.128,3.374z M3.148,10.363l3.098,3.098c-0.478,1.852-0.427,3.809,0.159,5.635l-3.031,3.031
|
496 |
-
C2.457,20.242,1.97,18.16,1.97,16.001C1.97,14.026,2.379,12.118,3.148,10.363z M9.872,28.627l3.024-3.026
|
497 |
-
c0.99,0.319,2.033,0.492,3.104,0.492c0.871,0,1.722-0.121,2.544-0.334l3.093,3.095c-1.754,0.77-3.663,1.178-5.637,1.178
|
498 |
-
C13.841,30.031,11.758,29.544,9.872,28.627z"></path>
|
499 |
-
</g>
|
500 |
-
</g>
|
501 |
-
</g>
|
502 |
-
</svg>
|
503 |
-
<!-- ICONS -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/stats.php
CHANGED
@@ -35,7 +35,7 @@
|
|
35 |
<div class="welcome-panel-column">
|
36 |
<h4>'.__('Get Started').'</h4>
|
37 |
<a class="button button-primary button-hero" href="admin.php?page=wp-ulike-about">'.__( 'About WP ULike', WP_ULIKE_SLUG ).'</a>
|
38 |
-
<p class="hide-if-no-customize">'.__('or',WP_ULIKE_SLUG).', <a href="
|
39 |
</div>
|
40 |
<div class="welcome-panel-column">
|
41 |
<h4>'.__('Other Tools',WP_ULIKE_SLUG).'</h4>
|
35 |
<div class="welcome-panel-column">
|
36 |
<h4>'.__('Get Started').'</h4>
|
37 |
<a class="button button-primary button-hero" href="admin.php?page=wp-ulike-about">'.__( 'About WP ULike', WP_ULIKE_SLUG ).'</a>
|
38 |
+
<p class="hide-if-no-customize">'.__('or',WP_ULIKE_SLUG).', <a target="_blank" href="'.WP_ULIKE_PLUGIN_URI.'">'.__( 'Visit our homepage', WP_ULIKE_SLUG ).'</a></p>
|
39 |
</div>
|
40 |
<div class="welcome-panel-column">
|
41 |
<h4>'.__('Other Tools',WP_ULIKE_SLUG).'</h4>
|
inc/classes/class-ulike.php
CHANGED
@@ -360,11 +360,12 @@ if ( ! class_exists( 'wp_ulike' ) ) {
|
|
360 |
* @param Integer $num2
|
361 |
* @since 2.0
|
362 |
* @updated 2.3
|
|
|
363 |
* @return String
|
364 |
*/
|
365 |
public function get_template($id,$method,$liked,$num1,$num2){
|
366 |
|
367 |
-
$counter = '<span class="count-box">'.$liked.'</span>';
|
368 |
$button_text = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text'));
|
369 |
$button_text_u = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text_u'));
|
370 |
$permission_text = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'permission_text'));
|
360 |
* @param Integer $num2
|
361 |
* @since 2.0
|
362 |
* @updated 2.3
|
363 |
+
* @updated 2.7 //Added 'wp_ulike_count_box_template' filter
|
364 |
* @return String
|
365 |
*/
|
366 |
public function get_template($id,$method,$liked,$num1,$num2){
|
367 |
|
368 |
+
$counter = apply_filters('wp_ulike_count_box_template', '<span class="count-box">'.$liked.'</span>', $liked);
|
369 |
$button_text = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text'));
|
370 |
$button_text_u = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'button_text_u'));
|
371 |
$permission_text = html_entity_decode(wp_ulike_get_setting( 'wp_ulike_general', 'permission_text'));
|
inc/wp-functions.php
CHANGED
@@ -83,15 +83,123 @@
|
|
83 |
* Get The Post like number
|
84 |
*
|
85 |
* @author Alimir
|
86 |
-
* @param Integer $
|
87 |
* @since 1.7
|
88 |
* @return String
|
89 |
*/
|
90 |
-
function wp_ulike_get_post_likes($
|
91 |
-
$val = get_post_meta($
|
92 |
return wp_ulike_format_number($val);
|
93 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
|
97 |
/*******************************************************
|
@@ -138,8 +246,8 @@
|
|
138 |
* @since 2.5
|
139 |
* @return String
|
140 |
*/
|
141 |
-
function wp_ulike_get_comment_likes($
|
142 |
-
$val = get_comment_meta($
|
143 |
return wp_ulike_format_number($val);
|
144 |
}
|
145 |
|
@@ -388,10 +496,10 @@
|
|
388 |
}
|
389 |
// WordPress Toolbar
|
390 |
if ( 'string' === $format ) {
|
391 |
-
$return = apply_filters( '
|
392 |
// Deprecated BuddyBar
|
393 |
} else {
|
394 |
-
$return = apply_filters( '
|
395 |
'text' => $custom_text,
|
396 |
'link' => $custom_link
|
397 |
), $custom_link, (int) $total_items, $custom_text, $custom_text );
|
83 |
* Get The Post like number
|
84 |
*
|
85 |
* @author Alimir
|
86 |
+
* @param Integer $post_ID
|
87 |
* @since 1.7
|
88 |
* @return String
|
89 |
*/
|
90 |
+
function wp_ulike_get_post_likes($post_ID){
|
91 |
+
$val = get_post_meta($post_ID, '_liked', true);
|
92 |
return wp_ulike_format_number($val);
|
93 |
}
|
94 |
+
|
95 |
+
/**
|
96 |
+
* Add itemtype to wp_ulike_posts_add_attr filter
|
97 |
+
*
|
98 |
+
* @author Alimir
|
99 |
+
* @since 2.7
|
100 |
+
* @return String
|
101 |
+
*/
|
102 |
+
add_filter('wp_ulike_posts_add_attr', 'wp_ulike_get_posts_microdata_itemtype');
|
103 |
+
function wp_ulike_get_posts_microdata_itemtype(){
|
104 |
+
$get_ulike_count = get_post_meta(get_the_ID(), '_liked', true);
|
105 |
+
if(!is_singular() || !wp_ulike_get_setting( 'wp_ulike_posts', 'google_rich_snippets') || $get_ulike_count == 0) return;
|
106 |
+
return 'itemscope itemtype="http://schema.org/CreativeWork"';
|
107 |
+
}
|
108 |
|
109 |
+
/**
|
110 |
+
* Add rich snippet for ratings in form of schema.org
|
111 |
+
*
|
112 |
+
* @author Alimir
|
113 |
+
* @since 2.7
|
114 |
+
* @return String
|
115 |
+
*/
|
116 |
+
add_filter( 'wp_ulike_posts_microdata', 'wp_ulike_get_posts_microdata');
|
117 |
+
function wp_ulike_get_posts_microdata(){
|
118 |
+
$get_ulike_count = get_post_meta(get_the_ID(), '_liked', true);
|
119 |
+
if(!is_singular() || !wp_ulike_get_setting( 'wp_ulike_posts', 'google_rich_snippets') || $get_ulike_count == 0) return;
|
120 |
+
$post_meta = '<meta itemprop="name" content="' . get_the_title() . '" />';
|
121 |
+
$post_meta .= apply_filters( 'wp_ulike_extra_structured_data', NULL );
|
122 |
+
$post_meta .= '<span itemprop="author" itemscope itemtype="http://schema.org/Person"><meta itemprop="name" content="' . get_the_author() . '" /></span>';
|
123 |
+
$post_meta .= '<meta itemprop="datePublished" content="' . mysql2date( 'c', get_the_date(), false ) . '" />';
|
124 |
+
$ratings_meta = '<span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">';
|
125 |
+
$ratings_meta .= '<meta itemprop="bestRating" content="5" />';
|
126 |
+
$ratings_meta .= '<meta itemprop="worstRating" content="1" />';
|
127 |
+
$ratings_meta .= '<meta itemprop="ratingValue" content="'. wp_ulike_get_rating_value(get_the_ID()) .'" />';
|
128 |
+
$ratings_meta .= '<meta itemprop="ratingCount" content="' . $get_ulike_count . '" />';
|
129 |
+
$ratings_meta .= '</span>';
|
130 |
+
$itemtype = apply_filters( 'wp_ulike_remove_microdata_post_meta', false );
|
131 |
+
return apply_filters( 'wp_ulike_generate_google_structured_data', ( $itemtype ? $ratings_meta : ( $post_meta . $ratings_meta )));
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Calculate rating value by user logs & date_time
|
136 |
+
*
|
137 |
+
* @author Alimir
|
138 |
+
* @since 2.7
|
139 |
+
* @return String
|
140 |
+
*/
|
141 |
+
function wp_ulike_get_rating_value($post_ID, $is_decimal = true){
|
142 |
+
global $wpdb;
|
143 |
+
if (false === ($rating_value = wp_cache_get($cache_key = 'get_rich_rating_value_' . $post_ID, $cache_group = 'wp_ulike'))) {
|
144 |
+
//get the average, likes count & date_time columns by $post_ID
|
145 |
+
$request = "SELECT
|
146 |
+
FORMAT(
|
147 |
+
(
|
148 |
+
SELECT
|
149 |
+
AVG(counted.total)
|
150 |
+
FROM
|
151 |
+
(
|
152 |
+
SELECT
|
153 |
+
COUNT(*) AS total
|
154 |
+
FROM
|
155 |
+
".$wpdb->prefix."ulike AS ulike
|
156 |
+
GROUP BY
|
157 |
+
ulike.post_id
|
158 |
+
) AS counted
|
159 |
+
),
|
160 |
+
0
|
161 |
+
) AS average,
|
162 |
+
COUNT(ulike.post_id) AS counter,
|
163 |
+
posts.post_date AS post_date
|
164 |
+
FROM
|
165 |
+
".$wpdb->prefix."ulike AS ulike
|
166 |
+
JOIN
|
167 |
+
".$wpdb->prefix."posts AS posts
|
168 |
+
ON
|
169 |
+
ulike.post_id = ".$post_ID." AND posts.ID = ulike.post_id;";
|
170 |
+
//get columns in a row
|
171 |
+
$likes = $wpdb->get_row($request);
|
172 |
+
$avg = $likes->average;
|
173 |
+
$count = $likes->counter;
|
174 |
+
$date = strtotime($likes->post_date);
|
175 |
+
//if there is no log data, set $rating_value = 4
|
176 |
+
if($count == 0 || $avg == 0){
|
177 |
+
$rating_value = 4;
|
178 |
+
return $rating_value;
|
179 |
+
}
|
180 |
+
$decimal = 0;
|
181 |
+
if($is_decimal){
|
182 |
+
list($whole, $decimal) = explode('.', number_format(($count*100/($avg*2)), 1));
|
183 |
+
$decimal = (int)$decimal;
|
184 |
+
}
|
185 |
+
if( $date > strtotime('-1 month')) {
|
186 |
+
if($count < $avg) $rating_value = 4 + ".$decimal";
|
187 |
+
else $rating_value = 5;
|
188 |
+
} else if(($date <= strtotime('-1 month')) && ($date > strtotime('-6 month'))) {
|
189 |
+
if($count < $avg) $rating_value = 3 + ".$decimal";
|
190 |
+
else if(($count >= $avg) && ($count < ($avg*3/2))) $rating_value = 4 + ".$decimal";
|
191 |
+
else $rating_value = 5;
|
192 |
+
} else {
|
193 |
+
if($count < ($avg/2)) $rating_value = 1 + ".$decimal";
|
194 |
+
else if(($count >= ($avg/2)) && ($count < $avg)) $rating_value = 2 + ".$decimal";
|
195 |
+
else if(($count >= $avg) && ($count < ($avg*3/2))) $rating_value = 3 + ".$decimal";
|
196 |
+
else if(($count >= ($avg*3/2)) && ($count < ($avg*2))) $rating_value = 4 + ".$decimal";
|
197 |
+
else $rating_value = 5;
|
198 |
+
}
|
199 |
+
wp_cache_add($cache_key, $rating_value, $cache_group, HOUR_IN_SECONDS);
|
200 |
+
}
|
201 |
+
return $rating_value;
|
202 |
+
}
|
203 |
|
204 |
|
205 |
/*******************************************************
|
246 |
* @since 2.5
|
247 |
* @return String
|
248 |
*/
|
249 |
+
function wp_ulike_get_comment_likes($comment_ID){
|
250 |
+
$val = get_comment_meta($comment_ID, '_commentliked', true);
|
251 |
return wp_ulike_format_number($val);
|
252 |
}
|
253 |
|
496 |
}
|
497 |
// WordPress Toolbar
|
498 |
if ( 'string' === $format ) {
|
499 |
+
$return = apply_filters( 'wp_ulike_bp_notifications_template', '<a href="' . esc_url( $custom_link ) . '" title="' . esc_attr( $custom_text ) . '">' . esc_html( $custom_text ) . '</a>', $custom_text, $custom_link );
|
500 |
// Deprecated BuddyBar
|
501 |
} else {
|
502 |
+
$return = apply_filters( 'wp_ulike_bp_notifications_template', array(
|
503 |
'text' => $custom_text,
|
504 |
'link' => $custom_link
|
505 |
), $custom_link, (int) $total_items, $custom_text, $custom_text );
|
inc/wp-ulike.php
CHANGED
@@ -6,6 +6,7 @@
|
|
6 |
* @author Alimir
|
7 |
* @since 1.0
|
8 |
* @updated 2.3
|
|
|
9 |
* @return String
|
10 |
*/
|
11 |
function wp_ulike($arg) {
|
@@ -41,8 +42,9 @@
|
|
41 |
//call wp_get_ulike function from class-ulike calss
|
42 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
43 |
|
44 |
-
$wp_ulike = '<div id="wp-ulike-'.$post_ID.'" class="wpulike '.$theme_class.'">';
|
45 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
|
|
46 |
$wp_ulike .= '</div>';
|
47 |
$wp_ulike .= $wp_ulike_class->get_liked_users($post_ID,'ulike','post_id','wp_ulike_posts');
|
48 |
|
@@ -67,7 +69,7 @@
|
|
67 |
}
|
68 |
}
|
69 |
else
|
70 |
-
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this post: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>';
|
71 |
}//end only_registered_users condition
|
72 |
|
73 |
}
|
@@ -78,6 +80,7 @@
|
|
78 |
* @author Alimir
|
79 |
* @since 1.6
|
80 |
* @updated 2.3
|
|
|
81 |
* @return String
|
82 |
*/
|
83 |
function wp_ulike_comments($arg) {
|
@@ -113,7 +116,7 @@
|
|
113 |
//call wp_get_ulike function from class-ulike calss
|
114 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
115 |
|
116 |
-
$wp_ulike = '<div id="wp-ulike-comment-'.$CommentID.'" class="wpulike '.$theme_class.'">';
|
117 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
118 |
$wp_ulike .= '</div>';
|
119 |
$wp_ulike .= $wp_ulike_class->get_liked_users($CommentID,'ulike_comments','comment_id','wp_ulike_comments');
|
@@ -139,7 +142,7 @@
|
|
139 |
}
|
140 |
}
|
141 |
else
|
142 |
-
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this comment: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>';
|
143 |
}//end only_registered_users condition
|
144 |
|
145 |
}
|
@@ -151,6 +154,7 @@
|
|
151 |
* @since 1.7
|
152 |
* @updated 2.3
|
153 |
* @updated 2.4
|
|
|
154 |
* @return String
|
155 |
*/
|
156 |
function wp_ulike_buddypress($arg) {
|
@@ -195,7 +199,7 @@
|
|
195 |
//call wp_get_ulike function from class-ulike calss
|
196 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
197 |
|
198 |
-
$wp_ulike = '<'.$html_tag.' id="wp-ulike-activity-'.$activityID.'" class="wpulike '.$theme_class.'">';
|
199 |
$wp_ulike .= '<'.$html_tag.' class="counter">'.$counter.'</'.$html_tag.'>';
|
200 |
$wp_ulike .= '</'.$html_tag.'>';
|
201 |
$wp_ulike .= $wp_ulike_class->get_liked_users($activityID,'ulike_activities','activity_id','wp_ulike_buddypress');
|
@@ -221,7 +225,7 @@
|
|
221 |
}
|
222 |
}
|
223 |
else
|
224 |
-
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this activity: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>';
|
225 |
}//end only_registered_users condition
|
226 |
|
227 |
}
|
@@ -233,6 +237,7 @@
|
|
233 |
* @since 2.2
|
234 |
* @updated 2.3
|
235 |
* @updated 2.4.1
|
|
|
236 |
* @return String
|
237 |
*/
|
238 |
function wp_ulike_bbpress($arg) {
|
@@ -271,7 +276,7 @@
|
|
271 |
//call wp_get_ulike function from class-ulike calss
|
272 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
273 |
|
274 |
-
$wp_ulike = '<div id="wp-ulike-'.$post_ID.'" class="wpulike '.$theme_class.'">';
|
275 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
276 |
$wp_ulike .= '</div>';
|
277 |
$wp_ulike .= $wp_ulike_class->get_liked_users($post_ID,'ulike_forums','topic_id','wp_ulike_bbpress');
|
@@ -297,7 +302,7 @@
|
|
297 |
}
|
298 |
}
|
299 |
else
|
300 |
-
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this post: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>';
|
301 |
}//end only_registered_users condition
|
302 |
|
303 |
}
|
@@ -358,14 +363,14 @@
|
|
358 |
$return_userID = $wp_ulike_class->get_reutrn_id();
|
359 |
|
360 |
$data = array(
|
361 |
-
"id"
|
362 |
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
363 |
"user_ip" => $wp_user_IP, //User IP
|
364 |
"get_like" => $get_like, //Number Of Likes
|
365 |
"method" => $post_type, //JavaScript method
|
366 |
"setting" => $setting_key, //Setting Key
|
367 |
"type" => 'process', //Function type (post/process)
|
368 |
-
"table"
|
369 |
"column" => $column_name, //ulike table column name
|
370 |
"key" => $meta_key, //meta key
|
371 |
"cookie" => $cookie_name //Cookie Name
|
@@ -376,7 +381,7 @@
|
|
376 |
if($post_ID != null) {
|
377 |
$response->add(
|
378 |
array(
|
379 |
-
'what'
|
380 |
'action' =>'wp_ulike_process',
|
381 |
'id' => $post_ID,
|
382 |
'data' => $wp_ulike_class->wp_get_ulike($data)
|
@@ -387,6 +392,6 @@
|
|
387 |
// Whatever the outcome, send the Response back
|
388 |
$response->send();
|
389 |
|
390 |
-
//
|
391 |
exit();
|
392 |
}
|
6 |
* @author Alimir
|
7 |
* @since 1.0
|
8 |
* @updated 2.3
|
9 |
+
* @updated 2.7 //added 'wp_ulike_posts_add_attr', 'wp_ulike_posts_microdata' & 'wp_ulike_login_alert_template' filters
|
10 |
* @return String
|
11 |
*/
|
12 |
function wp_ulike($arg) {
|
42 |
//call wp_get_ulike function from class-ulike calss
|
43 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
44 |
|
45 |
+
$wp_ulike = '<div id="wp-ulike-'.$post_ID.'" class="wpulike '.$theme_class.'" '.apply_filters('wp_ulike_posts_add_attr', null).'>';
|
46 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
47 |
+
$wp_ulike .= apply_filters('wp_ulike_posts_microdata', null);
|
48 |
$wp_ulike .= '</div>';
|
49 |
$wp_ulike .= $wp_ulike_class->get_liked_users($post_ID,'ulike','post_id','wp_ulike_posts');
|
50 |
|
69 |
}
|
70 |
}
|
71 |
else
|
72 |
+
return apply_filters('wp_ulike_login_alert_template', '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this post: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>');
|
73 |
}//end only_registered_users condition
|
74 |
|
75 |
}
|
80 |
* @author Alimir
|
81 |
* @since 1.6
|
82 |
* @updated 2.3
|
83 |
+
* @updated 2.7 //added 'wp_ulike_login_alert_template' & 'wp_ulike_comments_add_attr' filters
|
84 |
* @return String
|
85 |
*/
|
86 |
function wp_ulike_comments($arg) {
|
116 |
//call wp_get_ulike function from class-ulike calss
|
117 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
118 |
|
119 |
+
$wp_ulike = '<div id="wp-ulike-comment-'.$CommentID.'" class="wpulike '.$theme_class.'" '.apply_filters('wp_ulike_comments_add_attr', null).'>';
|
120 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
121 |
$wp_ulike .= '</div>';
|
122 |
$wp_ulike .= $wp_ulike_class->get_liked_users($CommentID,'ulike_comments','comment_id','wp_ulike_comments');
|
142 |
}
|
143 |
}
|
144 |
else
|
145 |
+
return apply_filters('wp_ulike_login_alert_template', '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this comment: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>');
|
146 |
}//end only_registered_users condition
|
147 |
|
148 |
}
|
154 |
* @since 1.7
|
155 |
* @updated 2.3
|
156 |
* @updated 2.4
|
157 |
+
* @updated 2.7 //added 'wp_ulike_login_alert_template' & 'wp_ulike_activities_add_attr' filters
|
158 |
* @return String
|
159 |
*/
|
160 |
function wp_ulike_buddypress($arg) {
|
199 |
//call wp_get_ulike function from class-ulike calss
|
200 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
201 |
|
202 |
+
$wp_ulike = '<'.$html_tag.' id="wp-ulike-activity-'.$activityID.'" class="wpulike '.$theme_class.'" '.apply_filters('wp_ulike_activities_add_attr', null).'>';
|
203 |
$wp_ulike .= '<'.$html_tag.' class="counter">'.$counter.'</'.$html_tag.'>';
|
204 |
$wp_ulike .= '</'.$html_tag.'>';
|
205 |
$wp_ulike .= $wp_ulike_class->get_liked_users($activityID,'ulike_activities','activity_id','wp_ulike_buddypress');
|
225 |
}
|
226 |
}
|
227 |
else
|
228 |
+
return apply_filters('wp_ulike_login_alert_template', '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this activity: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>');
|
229 |
}//end only_registered_users condition
|
230 |
|
231 |
}
|
237 |
* @since 2.2
|
238 |
* @updated 2.3
|
239 |
* @updated 2.4.1
|
240 |
+
* @updated 2.7 //added 'wp_ulike_login_alert_template' & 'wp_ulike_topics_add_attr' filters
|
241 |
* @return String
|
242 |
*/
|
243 |
function wp_ulike_bbpress($arg) {
|
276 |
//call wp_get_ulike function from class-ulike calss
|
277 |
$counter = $wp_ulike_class->wp_get_ulike($data);
|
278 |
|
279 |
+
$wp_ulike = '<div id="wp-ulike-'.$post_ID.'" class="wpulike '.$theme_class.'" '.apply_filters('wp_ulike_topics_add_attr', null).'>';
|
280 |
$wp_ulike .= '<div class="counter">'.$counter.'</div>';
|
281 |
$wp_ulike .= '</div>';
|
282 |
$wp_ulike .= $wp_ulike_class->get_liked_users($post_ID,'ulike_forums','topic_id','wp_ulike_bbpress');
|
302 |
}
|
303 |
}
|
304 |
else
|
305 |
+
return apply_filters('wp_ulike_login_alert_template', '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>'.__('You need to login in order to like this post: ',WP_ULIKE_SLUG).'<a href="'.wp_login_url( get_permalink() ).'"> '.__('click here',WP_ULIKE_SLUG).' </a></p>');
|
306 |
}//end only_registered_users condition
|
307 |
|
308 |
}
|
363 |
$return_userID = $wp_ulike_class->get_reutrn_id();
|
364 |
|
365 |
$data = array(
|
366 |
+
"id" => $post_ID, //Post ID
|
367 |
"user_id" => $return_userID, //User ID (if the user is guest, we save ip as user_id with "ip2long" function)
|
368 |
"user_ip" => $wp_user_IP, //User IP
|
369 |
"get_like" => $get_like, //Number Of Likes
|
370 |
"method" => $post_type, //JavaScript method
|
371 |
"setting" => $setting_key, //Setting Key
|
372 |
"type" => 'process', //Function type (post/process)
|
373 |
+
"table" => $table_name, //posts table
|
374 |
"column" => $column_name, //ulike table column name
|
375 |
"key" => $meta_key, //meta key
|
376 |
"cookie" => $cookie_name //Cookie Name
|
381 |
if($post_ID != null) {
|
382 |
$response->add(
|
383 |
array(
|
384 |
+
'what' =>'wpulike',
|
385 |
'action' =>'wp_ulike_process',
|
386 |
'id' => $post_ID,
|
387 |
'data' => $wp_ulike_class->wp_get_ulike($data)
|
392 |
// Whatever the outcome, send the Response back
|
393 |
$response->send();
|
394 |
|
395 |
+
// Exit when doing Ajax
|
396 |
exit();
|
397 |
}
|
lang/readme.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
Translations have moved to
|
2 |
+
https://translate.wordpress.org/projects/wp-plugins/wp-ulike
|
3 |
+
|
4 |
+
Thank you for your contribution.
|
lang/wp-ulike-fa_IR.mo
CHANGED
Binary file
|
lang/wp-ulike-fa_IR.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
7 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
8 |
"Language: fa_IR\n"
|
@@ -16,23 +16,35 @@ msgstr ""
|
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
-
#: ../wp-ulike.php:
|
20 |
msgid "Settings"
|
21 |
msgstr "تنظیمات"
|
22 |
|
23 |
-
#: ../wp-ulike.php:
|
24 |
msgid "Statistics"
|
25 |
msgstr "آماره"
|
26 |
|
27 |
-
#: ../wp-ulike.php:
|
28 |
msgid "About"
|
29 |
msgstr "درباره"
|
30 |
|
31 |
-
#: ../admin/about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
msgid "Welcome to WP ULike"
|
33 |
msgstr "به وردپرس یولایک خوش آمدید"
|
34 |
|
35 |
-
#: ../admin/about.php:
|
36 |
msgid ""
|
37 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
38 |
"powerful version yet."
|
@@ -40,45 +52,45 @@ msgstr ""
|
|
40 |
"از اینکه از افزونه وردپرس یولایک استفاده می کنید، خیلی ممنونیم! نسخه ی جدید، "
|
41 |
"قویترین و کامل ترین نسخه منتشر شده از این افزونه است."
|
42 |
|
43 |
-
#: ../admin/about.php:
|
44 |
msgid "Visit our homepage"
|
45 |
msgstr "مشاهده صفحه افزونه"
|
46 |
|
47 |
-
#: ../admin/about.php:
|
48 |
msgid "Version"
|
49 |
msgstr "نسخه"
|
50 |
|
51 |
-
#: ../admin/about.php:
|
52 |
msgid "Getting Started"
|
53 |
msgstr "شروع "
|
54 |
|
55 |
-
#: ../admin/about.php:
|
56 |
msgid "Credits"
|
57 |
msgstr "دستاندرکاران"
|
58 |
|
59 |
-
#: ../admin/about.php:
|
60 |
#: ../admin/classes/class-settings.php:112
|
61 |
msgid "Support"
|
62 |
msgstr "پشتیبانی"
|
63 |
|
64 |
-
#: ../admin/about.php:
|
65 |
#: ../admin/classes/class-settings.php:112
|
66 |
msgid "FAQ"
|
67 |
msgstr "سؤالات متداول"
|
68 |
|
69 |
-
#: ../admin/about.php:
|
70 |
msgid "Reviews"
|
71 |
msgstr "امتیازدهی"
|
72 |
|
73 |
-
#: ../admin/about.php:
|
74 |
msgid "Introducing WP ULike"
|
75 |
msgstr "معرفی وردپرس یولاک"
|
76 |
|
77 |
-
#: ../admin/about.php:
|
78 |
msgid "About WP ULike"
|
79 |
msgstr "درباره وردپرس یولایک"
|
80 |
|
81 |
-
#: ../admin/about.php:
|
82 |
msgid ""
|
83 |
"WP ULike plugin allows to integrate a beautiful Ajax Like Button into your "
|
84 |
"wordPress website to allow your visitors to like and unlike pages, posts, "
|
@@ -92,11 +104,11 @@ msgstr ""
|
|
92 |
"سفارشی سازی استایل ها و… تمامی قابلیت های یک سیستم خوب و حرفه ای رو در "
|
93 |
"اختیار شما قرار میده."
|
94 |
|
95 |
-
#: ../admin/about.php:
|
96 |
msgid "WP Ulike Extension"
|
97 |
msgstr "گسترش وردپرس یولایک"
|
98 |
|
99 |
-
#: ../admin/about.php:
|
100 |
msgid ""
|
101 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
102 |
"activities & bbPress Topics."
|
@@ -104,11 +116,11 @@ msgstr ""
|
|
104 |
"وردپرس یولایک سیستمی برای همه است و از نوشته های وردپرس، دیدگاه ها، فعالیت "
|
105 |
"های بادی پرس و تاپیک های بی بی پرس و... پشتیبانی کامل دارد."
|
106 |
|
107 |
-
#: ../admin/about.php:
|
108 |
msgid "Added More Than 20 Language Files"
|
109 |
msgstr "افزودن بیش از 20 فایل زبان جدید"
|
110 |
|
111 |
-
#: ../admin/about.php:
|
112 |
msgid ""
|
113 |
"WP ULike is already translated into +20 languages, with more always in "
|
114 |
"progress."
|
@@ -116,11 +128,11 @@ msgstr ""
|
|
116 |
"افزونه وردپرس یولایک به بیش از ۲۰ زبان زنده دنیا ترجمه شده و همچنان در حال "
|
117 |
"توسعه است... :)"
|
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."
|
@@ -129,11 +141,11 @@ msgstr ""
|
|
129 |
"از دو افزونه محبوب buddypress و Ultimate Member است که در پنل تنظیمات افزونه "
|
130 |
"و ابزارک ها تنظیم می شود."
|
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."
|
@@ -141,11 +153,11 @@ msgstr ""
|
|
141 |
"از نسخه ۲.۳ افزونه یولایک، ما به مرور قالب های جدید و جذاب رو با امکان "
|
142 |
"سفارشی سازی توسط شما به افزونه اضافه میکنیم."
|
143 |
|
144 |
-
#: ../admin/about.php:
|
145 |
msgid "myCRED Points Support"
|
146 |
msgstr "پشتیبانی کامل از امتیازات myCRED"
|
147 |
|
148 |
-
#: ../admin/about.php:
|
149 |
msgid ""
|
150 |
"myCRED is an adaptive points management system that lets you award / charge "
|
151 |
"your users for interacting with your WordPress."
|
@@ -154,11 +166,11 @@ msgstr ""
|
|
154 |
"در آن بر اساس انواع فعالیت هایی که می کند ، امتیاز جایزه می گیرد ، بلکه می "
|
155 |
"تواند این امتیازات را در سایت خود شما خرج کند."
|
156 |
|
157 |
-
#: ../admin/about.php:
|
158 |
msgid "Likers World Map"
|
159 |
msgstr "نقشه جهانی لایک کنندگان"
|
160 |
|
161 |
-
#: ../admin/about.php:
|
162 |
msgid ""
|
163 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
164 |
"likers by their country in the world map & Top Liker widget."
|
@@ -166,66 +178,54 @@ msgstr ""
|
|
166 |
"از نسخه ۲.۳ افزونه یولایک، امکان بررسی جغرافیایی لایک کنندگان به همراه "
|
167 |
"ابزراک ویژه برترین لایک کنندگان اضافه شده است."
|
168 |
|
169 |
-
#: ../admin/about.php:
|
170 |
msgid "WP ULike Statistics"
|
171 |
msgstr "آماره وردپرس یولایک"
|
172 |
|
173 |
-
#: ../admin/about.php:
|
174 |
msgid "Home"
|
175 |
msgstr "خانه"
|
176 |
|
177 |
-
#: ../admin/about.php:
|
178 |
msgid "OR"
|
179 |
msgstr "یا"
|
180 |
|
181 |
-
#: ../admin/about.php:
|
182 |
msgid "WP ULike Settings"
|
183 |
msgstr "تنظیمات وردپرس یولایک"
|
184 |
|
185 |
-
#: ../admin/about.php:
|
186 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
187 |
msgstr ""
|
188 |
"وردپرس یولایک با صرف کلی علاقه و زمان ساخته شده است. امیدواریم که از آن لذت "
|
189 |
"ببرید :)"
|
190 |
|
191 |
-
#: ../admin/about.php:
|
192 |
msgid "Project Leaders"
|
193 |
msgstr "سازندگان اصلی"
|
194 |
|
195 |
-
#: ../admin/about.php:
|
196 |
msgid "Project Lead & Developer"
|
197 |
msgstr "راهبر پروژه، توسعه دهنده ارشد"
|
198 |
|
199 |
-
#: ../admin/about.php:
|
200 |
msgid "Translations"
|
201 |
msgstr "ترجمه ها"
|
202 |
|
203 |
-
#: ../admin/about.php:
|
204 |
msgid "Would you like to help translate the plugin into more languages?"
|
205 |
msgstr ""
|
206 |
"آیا علاقه ای دارید که در ترجمه این افزونه به زبانهای دیگر با ما همکاری "
|
207 |
"کنید؟!؟ "
|
208 |
|
209 |
-
#: ../admin/about.php:
|
210 |
msgid "Join our WP-Translations Community"
|
211 |
msgstr "به شبکه مترجمان ما بپیوندید"
|
212 |
|
213 |
-
#: ../admin/about.php:
|
214 |
msgid "Other Plugins"
|
215 |
msgstr "سایر افزونه ها"
|
216 |
|
217 |
-
#: ../admin/about.php:294
|
218 |
-
msgid "Like this plugin?"
|
219 |
-
msgstr "این پلاگین چندتا لایک داره؟!؟ :)"
|
220 |
-
|
221 |
-
#: ../admin/about.php:295
|
222 |
-
msgid ""
|
223 |
-
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
224 |
-
"wp-ulike\"> Plugin Directory reviews</a>"
|
225 |
-
msgstr ""
|
226 |
-
"حمایتتون رو از این افزونه، با امتیاز 5 ستاره در <a href=\"http://wordpress."
|
227 |
-
"org/plugins/wp-ulike\">مخزن وردپرس</a> مشخص کنید..."
|
228 |
-
|
229 |
#: ../admin/logs.php:17 ../admin/logs.php:143 ../admin/logs.php:213
|
230 |
#: ../admin/logs.php:265 ../admin/logs.php:339 ../admin/logs.php:393
|
231 |
#: ../admin/logs.php:463 ../admin/logs.php:516 ../admin/logs.php:586
|
@@ -241,7 +241,7 @@ msgstr "آیا از حذف این آیتم اطمینان دارید؟!"
|
|
241 |
msgid "WP ULike Logs"
|
242 |
msgstr "وقایع اتفاقیه در وردپرس یولایک"
|
243 |
|
244 |
-
#: ../admin/logs.php:140 ../admin/stats.php:
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr "وقایع لایک در نوشتارها"
|
247 |
|
@@ -284,7 +284,7 @@ msgid "Actions"
|
|
284 |
msgstr "کارها"
|
285 |
|
286 |
#: ../admin/logs.php:175 ../admin/logs.php:298 ../admin/logs.php:425
|
287 |
-
#: ../admin/logs.php:548 ../admin/stats.php:
|
288 |
msgid "Guest User"
|
289 |
msgstr "کاربر مهمان"
|
290 |
|
@@ -297,7 +297,7 @@ msgstr ""
|
|
297 |
"<strong>خطا:</strong> چیزی یافت نشد. (این مشکل به خاطر این مسأله ایجاد شده "
|
298 |
"است که شما هیچ اطلاعاتی را در این جدول ندارید)"
|
299 |
|
300 |
-
#: ../admin/logs.php:262 ../admin/stats.php:
|
301 |
msgid "Comment Likes Logs"
|
302 |
msgstr "وقایع لایک در دیدگاه ها"
|
303 |
|
@@ -313,7 +313,7 @@ msgstr "نویسنده دیدگاه"
|
|
313 |
msgid "Comment Text"
|
314 |
msgstr "متن دیدگاه"
|
315 |
|
316 |
-
#: ../admin/logs.php:390 ../admin/stats.php:
|
317 |
msgid "Activity Likes Logs"
|
318 |
msgstr "وقایع لایک در فعالیت ها"
|
319 |
|
@@ -330,7 +330,7 @@ msgstr "لینک همیشگی"
|
|
330 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
331 |
msgstr "<a href=\"%1$s\">مشاهده فعالیت</a>"
|
332 |
|
333 |
-
#: ../admin/logs.php:513 ../admin/stats.php:
|
334 |
msgid "Topics Likes Logs"
|
335 |
msgstr "وقایع لایک در تاپیک ها"
|
336 |
|
@@ -342,157 +342,157 @@ msgstr "شناسه تاپیک"
|
|
342 |
msgid "Topic Title"
|
343 |
msgstr "عنوان تاپیک"
|
344 |
|
345 |
-
#: ../admin/stats.php:
|
346 |
msgid "Welcome to WP ULike Statistics!"
|
347 |
msgstr "به آماره وردپرس یولایک خوش آمدید!"
|
348 |
|
349 |
-
#: ../admin/stats.php:
|
350 |
msgid "We have provided some useful statistics tools in this page:"
|
351 |
msgstr ""
|
352 |
"در این بخش، ما مجموعه ای از ابزارهای کاربردی را برای شما آماده کرده ایم:"
|
353 |
|
354 |
-
#: ../admin/stats.php:
|
355 |
msgid "Get Started"
|
356 |
msgstr "آغاز کنید"
|
357 |
|
358 |
-
#: ../admin/stats.php:
|
359 |
msgid "or"
|
360 |
msgstr "یا"
|
361 |
|
362 |
-
#: ../admin/stats.php:
|
363 |
msgid "Other Tools"
|
364 |
msgstr "سایر ابزارها"
|
365 |
|
366 |
-
#: ../admin/stats.php:
|
367 |
msgid "Documentation"
|
368 |
msgstr "مستندات"
|
369 |
|
370 |
-
#: ../admin/stats.php:
|
371 |
msgid "Contact"
|
372 |
msgstr "تماس با ما"
|
373 |
|
374 |
-
#: ../admin/stats.php:
|
375 |
msgid "GitHub Repository"
|
376 |
msgstr "مخزن گیت هاب"
|
377 |
|
378 |
-
#: ../admin/stats.php:
|
379 |
msgid "Posts Likes Summary"
|
380 |
msgstr "خلاصه لایک در نوشتارها"
|
381 |
|
382 |
-
#: ../admin/stats.php:
|
383 |
msgid "Comments Likes Summary"
|
384 |
msgstr "خلاصه لایک در دیدگاه ها"
|
385 |
|
386 |
-
#: ../admin/stats.php:
|
387 |
msgid "Activities Likes Summary"
|
388 |
msgstr "خلاصه لایک در فعالیت ها"
|
389 |
|
390 |
-
#: ../admin/stats.php:
|
391 |
msgid "Topics Likes Summary"
|
392 |
msgstr "خلاصه لایک در تاپیک ها"
|
393 |
|
394 |
-
#: ../admin/stats.php:
|
395 |
msgid "Summary"
|
396 |
msgstr "خلاصه"
|
397 |
|
398 |
-
#: ../admin/stats.php:
|
399 |
msgid "Total Likes"
|
400 |
msgstr "مجموع کل لایک ها"
|
401 |
|
402 |
-
#: ../admin/stats.php:
|
403 |
msgid "Today"
|
404 |
msgstr "امروز"
|
405 |
|
406 |
-
#: ../admin/stats.php:
|
407 |
msgid "Yesterday"
|
408 |
msgstr "دیروز"
|
409 |
|
410 |
-
#: ../admin/stats.php:
|
411 |
msgid "Week"
|
412 |
msgstr "هفته"
|
413 |
|
414 |
-
#: ../admin/stats.php:
|
415 |
msgid "Month"
|
416 |
msgstr "ماه"
|
417 |
|
418 |
-
#: ../admin/stats.php:
|
419 |
msgid "Total"
|
420 |
msgstr "کل"
|
421 |
|
422 |
-
#: ../admin/stats.php:
|
423 |
msgid "Top Likers"
|
424 |
msgstr "برترین لایک کنندگان"
|
425 |
|
426 |
-
#: ../admin/stats.php:
|
427 |
#: ../admin/classes/tmp/settings.php:23 ../admin/classes/tmp/settings.php:24
|
428 |
#: ../admin/classes/tmp/settings.php:32
|
429 |
msgid "Like"
|
430 |
msgstr "لایک"
|
431 |
|
432 |
-
#: ../admin/stats.php:
|
433 |
#: ../admin/classes/class-widget.php:405 ../inc/wp-strings.php:26
|
434 |
msgid "Most Liked Posts"
|
435 |
msgstr "پرلایک ترین مطالب"
|
436 |
|
437 |
-
#: ../admin/stats.php:
|
438 |
#: ../admin/classes/class-widget.php:406 ../inc/wp-strings.php:27
|
439 |
msgid "Most Liked Comments"
|
440 |
msgstr "پرلایک ترین دیدگاه ها"
|
441 |
|
442 |
-
#: ../admin/stats.php:
|
443 |
#: ../admin/classes/class-widget.php:407
|
444 |
msgid "Most Liked Activities"
|
445 |
msgstr "پرلایک ترین فعالیت ها"
|
446 |
|
447 |
-
#: ../admin/stats.php:
|
448 |
#: ../admin/classes/class-widget.php:408
|
449 |
msgid "Most Liked Topics"
|
450 |
msgstr "پرلایک ترین تاپیک ها"
|
451 |
|
452 |
-
#: ../admin/stats.php:
|
453 |
-
#: ../admin/stats.php:
|
454 |
msgid "View Logs"
|
455 |
msgstr "مشاهده وقایع"
|
456 |
|
457 |
-
#: ../admin/stats.php:
|
458 |
msgid "Posts Likes Stats"
|
459 |
msgstr "نمودار لایک در نوشتارها"
|
460 |
|
461 |
-
#: ../admin/stats.php:
|
462 |
-
#: ../admin/stats.php:
|
463 |
#, php-format
|
464 |
msgid "In The Last %s Days"
|
465 |
msgstr "در %s روز گذشته"
|
466 |
|
467 |
-
#: ../admin/stats.php:
|
468 |
msgid "Comments Likes Stats"
|
469 |
msgstr "نمودار لایک در دیدگاه ها"
|
470 |
|
471 |
-
#: ../admin/stats.php:
|
472 |
msgid "Activities Likes Stats"
|
473 |
msgstr "نمودار لایک در فعالیت ها"
|
474 |
|
475 |
-
#: ../admin/stats.php:
|
476 |
msgid "Topics Likes Stats"
|
477 |
msgstr "نمودار لایک در تاپیک ها"
|
478 |
|
479 |
-
#: ../admin/stats.php:
|
480 |
msgid "Likes Percent"
|
481 |
msgstr "درصد تخصیص لایک ها"
|
482 |
|
483 |
-
#: ../admin/stats.php:
|
484 |
msgid "Show on screen"
|
485 |
msgstr "تنظیمات صفحه"
|
486 |
|
487 |
-
#: ../admin/stats.php:
|
488 |
msgid "Welcome"
|
489 |
msgstr "خوش آمدید"
|
490 |
|
491 |
-
#: ../admin/stats.php:
|
492 |
msgid "Days"
|
493 |
msgstr "روزها"
|
494 |
|
495 |
-
#: ../admin/stats.php:
|
496 |
msgid "Save Settings"
|
497 |
msgstr "ذخیره تغییرات"
|
498 |
|
@@ -507,7 +507,7 @@ msgstr ""
|
|
507 |
"\">وردپرس يولايک را</a> انتخاب کرده ايد. طراحي و کدنويسي توسط <a href=\"%s\" "
|
508 |
"title=\"Wordpress ULike\" target=\"_blank\">علي ميرزائي</a>"
|
509 |
|
510 |
-
#: ../admin/admin.php:76 ../inc/wp-functions.php:
|
511 |
msgid "WP ULike"
|
512 |
msgstr "وردپرس یولایک"
|
513 |
|
@@ -582,8 +582,8 @@ msgid "Simple"
|
|
582 |
msgstr "ساده"
|
583 |
|
584 |
#: ../admin/classes/class-widget.php:430 ../admin/classes/tmp/settings.php:95
|
585 |
-
#: ../admin/classes/tmp/settings.php:
|
586 |
-
#: ../admin/classes/tmp/settings.php:
|
587 |
msgid "Heart"
|
588 |
msgstr "قلب"
|
589 |
|
@@ -605,7 +605,7 @@ msgstr "لینک پروفایل به:"
|
|
605 |
|
606 |
#: ../admin/classes/class-widget.php:455
|
607 |
#: ../admin/classes/class-settings.php:97
|
608 |
-
#: ../admin/classes/tmp/settings.php:
|
609 |
msgid "BuddyPress"
|
610 |
msgstr "بادی پرس"
|
611 |
|
@@ -634,8 +634,8 @@ msgid "Similar Settings"
|
|
634 |
msgstr "تنظیمات مشابه"
|
635 |
|
636 |
#: ../admin/classes/class-settings.php:48
|
637 |
-
#: ../admin/classes/tmp/settings.php:
|
638 |
-
#: ../admin/classes/tmp/settings.php:
|
639 |
msgid "Logging Method"
|
640 |
msgstr "روش وقایع نگاری"
|
641 |
|
@@ -748,8 +748,8 @@ msgstr "نوشته ها"
|
|
748 |
#: ../admin/classes/class-settings.php:91
|
749 |
#: ../admin/classes/class-settings.php:99
|
750 |
#: ../admin/classes/class-settings.php:107
|
751 |
-
#: ../admin/classes/tmp/settings.php:101 ../admin/classes/tmp/settings.php:
|
752 |
-
#: ../admin/classes/tmp/settings.php:
|
753 |
msgid "Automatic display"
|
754 |
msgstr "نمایش خودکار"
|
755 |
|
@@ -765,8 +765,8 @@ msgstr ""
|
|
765 |
#: ../admin/classes/class-settings.php:91
|
766 |
#: ../admin/classes/class-settings.php:99
|
767 |
#: ../admin/classes/class-settings.php:107
|
768 |
-
#: ../admin/classes/tmp/settings.php:
|
769 |
-
#: ../admin/classes/tmp/settings.php:
|
770 |
msgid "Users Like Box Template"
|
771 |
msgstr "قالب جعبه لایک کاربران"
|
772 |
|
@@ -778,12 +778,12 @@ msgid "Default Template:"
|
|
778 |
msgstr "قالب پیشفرض:"
|
779 |
|
780 |
#: ../admin/classes/class-settings.php:82
|
781 |
-
#: ../admin/classes/tmp/settings.php:
|
782 |
msgid "Users who have LIKED this post:"
|
783 |
msgstr "کاربرانی که این مطلب را پسندیده اند:"
|
784 |
|
785 |
#: ../admin/classes/class-settings.php:89
|
786 |
-
#: ../admin/classes/tmp/settings.php:
|
787 |
msgid "Comments"
|
788 |
msgstr "دیدگاه ها"
|
789 |
|
@@ -796,7 +796,7 @@ msgstr ""
|
|
796 |
"ها قرار دهید "
|
797 |
|
798 |
#: ../admin/classes/class-settings.php:91
|
799 |
-
#: ../admin/classes/tmp/settings.php:
|
800 |
msgid "Users who have LIKED this comment:"
|
801 |
msgstr "کاربرانی که این دیدگاه را پسندیده اند:"
|
802 |
|
@@ -811,22 +811,22 @@ msgstr ""
|
|
811 |
|
812 |
#: ../admin/classes/class-settings.php:99
|
813 |
#: ../admin/classes/class-settings.php:107
|
814 |
-
#: ../admin/classes/tmp/settings.php:
|
815 |
msgid "Users who have liked this activity:"
|
816 |
msgstr "کاربرانی که این فعالیت را پسندیده اند:"
|
817 |
|
818 |
#: ../admin/classes/class-settings.php:99
|
819 |
-
#: ../admin/classes/tmp/settings.php:
|
820 |
msgid "Post Activity Text"
|
821 |
msgstr "متن فعالیت مطالب"
|
822 |
|
823 |
#: ../admin/classes/class-settings.php:99
|
824 |
-
#: ../admin/classes/tmp/settings.php:
|
825 |
msgid "Comment Activity Text"
|
826 |
msgstr "متن فعالیت دیدگاه ها"
|
827 |
|
828 |
#: ../admin/classes/class-settings.php:105
|
829 |
-
#: ../admin/classes/tmp/settings.php:
|
830 |
msgid "bbPress"
|
831 |
msgstr "بی بی پرس"
|
832 |
|
@@ -893,7 +893,7 @@ msgid "Button Icon"
|
|
893 |
msgstr "آیکن دکمه"
|
894 |
|
895 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
896 |
-
#: ../admin/classes/tmp/settings.php:
|
897 |
msgid "Best size: 16x16"
|
898 |
msgstr "سایز مناسب : 16x16"
|
899 |
|
@@ -931,13 +931,14 @@ msgstr "فرمت اعداد"
|
|
931 |
|
932 |
#: ../admin/classes/tmp/settings.php:61 ../admin/classes/tmp/settings.php:68
|
933 |
#: ../admin/classes/tmp/settings.php:102 ../admin/classes/tmp/settings.php:133
|
934 |
-
#: ../admin/classes/tmp/settings.php:
|
935 |
-
#: ../admin/classes/tmp/settings.php:
|
936 |
-
#: ../admin/classes/tmp/settings.php:
|
937 |
-
#: ../admin/classes/tmp/settings.php:
|
938 |
-
#: ../admin/classes/tmp/settings.php:
|
939 |
-
#: ../admin/classes/tmp/settings.php:429 ../admin/classes/tmp/settings.php:
|
940 |
-
#: ../admin/classes/tmp/settings.php:
|
|
|
941 |
msgid "Activate"
|
942 |
msgstr "فعال سازی"
|
943 |
|
@@ -971,34 +972,34 @@ msgstr "متأسفیم! شما این را نپسندیدید."
|
|
971 |
msgid "Unliked Notice Message"
|
972 |
msgstr "پیغام اطلاعیه لغو پسندیدن"
|
973 |
|
974 |
-
#: ../admin/classes/tmp/settings.php:92 ../admin/classes/tmp/settings.php:
|
975 |
-
#: ../admin/classes/tmp/settings.php:
|
976 |
#: ../inc/wp-strings.php:10
|
977 |
msgid "Themes"
|
978 |
msgstr "قالب ها"
|
979 |
|
980 |
-
#: ../admin/classes/tmp/settings.php:94 ../admin/classes/tmp/settings.php:
|
981 |
-
#: ../admin/classes/tmp/settings.php:
|
982 |
#: ../inc/wp-strings.php:25
|
983 |
msgid "Default"
|
984 |
msgstr "پیشفرض"
|
985 |
|
986 |
-
#: ../admin/classes/tmp/settings.php:106 ../admin/classes/tmp/settings.php:
|
987 |
-
#: ../admin/classes/tmp/settings.php:
|
988 |
msgid "Auto Display Position"
|
989 |
msgstr "محل قرار گیری در نمایش خودکار"
|
990 |
|
991 |
-
#: ../admin/classes/tmp/settings.php:109 ../admin/classes/tmp/settings.php:
|
992 |
-
#: ../admin/classes/tmp/settings.php:
|
993 |
msgid "Top of Content"
|
994 |
msgstr "بالای محتوا"
|
995 |
|
996 |
-
#: ../admin/classes/tmp/settings.php:110 ../admin/classes/tmp/settings.php:
|
997 |
-
#: ../admin/classes/tmp/settings.php:
|
998 |
msgid "Bottom of Content"
|
999 |
msgstr "پایین محتوا"
|
1000 |
|
1001 |
-
#: ../admin/classes/tmp/settings.php:111 ../admin/classes/tmp/settings.php:
|
1002 |
msgid "Top and Bottom"
|
1003 |
msgstr "بالا و پایین"
|
1004 |
|
@@ -1039,241 +1040,249 @@ msgid "You can filter theses pages on auto display option."
|
|
1039 |
msgstr ""
|
1040 |
"شما می توانید بر روی این صفحات فیلتر گذاری کنید تا دکمه لایک نمایش داده نشود"
|
1041 |
|
1042 |
-
#: ../admin/classes/tmp/settings.php:132
|
1043 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1044 |
msgid "Only registered Users"
|
1045 |
msgstr "محدودسازی لایک کاربران"
|
1046 |
|
1047 |
-
#: ../admin/classes/tmp/settings.php:
|
1048 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1049 |
msgstr ""
|
1050 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1051 |
"مطالب را لایک کنند."
|
1052 |
|
1053 |
-
#: ../admin/classes/tmp/settings.php:
|
1054 |
-
#: ../admin/classes/tmp/settings.php:
|
1055 |
msgid "Do Not Log"
|
1056 |
msgstr "وقایع نگاری نکن"
|
1057 |
|
1058 |
-
#: ../admin/classes/tmp/settings.php:
|
1059 |
-
#: ../admin/classes/tmp/settings.php:
|
1060 |
msgid "Logged By Cookie"
|
1061 |
msgstr "با کوکی"
|
1062 |
|
1063 |
-
#: ../admin/classes/tmp/settings.php:
|
1064 |
-
#: ../admin/classes/tmp/settings.php:
|
1065 |
msgid "Logged By IP"
|
1066 |
msgstr "با آی پی"
|
1067 |
|
1068 |
-
#: ../admin/classes/tmp/settings.php:
|
1069 |
-
#: ../admin/classes/tmp/settings.php:
|
1070 |
msgid "Logged By Cookie & IP"
|
1071 |
msgstr "با کوکی و آی پی"
|
1072 |
|
1073 |
-
#: ../admin/classes/tmp/settings.php:
|
1074 |
-
#: ../admin/classes/tmp/settings.php:
|
1075 |
msgid "Logged By Username"
|
1076 |
msgstr "با نام کاربری"
|
1077 |
|
1078 |
-
#: ../admin/classes/tmp/settings.php:
|
1079 |
-
#: ../admin/classes/tmp/settings.php:
|
1080 |
msgid "Show Liked Users Box"
|
1081 |
msgstr "نمایش باکس کاربران لایک کرده"
|
1082 |
|
1083 |
-
#: ../admin/classes/tmp/settings.php:
|
1084 |
-
#: ../admin/classes/tmp/settings.php:
|
1085 |
msgid ""
|
1086 |
"Active this option to show liked users avatars in the bottom of button like."
|
1087 |
msgstr ""
|
1088 |
"با فعال سازی این گزینه، می توانید آواتار کاربران لایک کرده، را در زیر دکمه "
|
1089 |
"لایک، نمایش دهید."
|
1090 |
|
1091 |
-
#: ../admin/classes/tmp/settings.php:
|
1092 |
-
#: ../admin/classes/tmp/settings.php:
|
1093 |
msgid "Size of Gravatars"
|
1094 |
msgstr "سایز آوتار"
|
1095 |
|
1096 |
-
#: ../admin/classes/tmp/settings.php:
|
1097 |
-
#: ../admin/classes/tmp/settings.php:
|
1098 |
msgid "Size of Gravatars to return (max is 512)"
|
1099 |
msgstr "سایز تصاویر گراواتار (بیشترین اندازه 512)"
|
1100 |
|
1101 |
-
#: ../admin/classes/tmp/settings.php:
|
1102 |
-
#: ../admin/classes/tmp/settings.php:
|
1103 |
msgid "Number Of The Users"
|
1104 |
msgstr "تعداد کاربران قابل نمایش"
|
1105 |
|
1106 |
-
#: ../admin/classes/tmp/settings.php:
|
1107 |
-
#: ../admin/classes/tmp/settings.php:
|
1108 |
msgid "The number of users to show in the users liked box"
|
1109 |
msgstr "حداکثر چند کاربر در باکس لایک کنندگان، نمایش داده شوند؟!؟"
|
1110 |
|
1111 |
-
#: ../admin/classes/tmp/settings.php:
|
1112 |
-
#: ../admin/classes/tmp/settings.php:
|
1113 |
-
#: ../admin/classes/tmp/settings.php:
|
1114 |
msgid "Allowed Variables:"
|
1115 |
msgstr "متغیرهای قابل استفاده:"
|
1116 |
|
1117 |
-
#: ../admin/classes/tmp/settings.php:
|
1118 |
-
#: ../admin/classes/tmp/settings.php:
|
1119 |
msgid "Delete All Logs"
|
1120 |
msgstr "حذف تمام وقایع"
|
1121 |
|
1122 |
-
#: ../admin/classes/tmp/settings.php:
|
1123 |
-
#: ../admin/classes/tmp/settings.php:
|
1124 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1125 |
msgstr ""
|
1126 |
"شما قصد دارید که تمامی \"وقایع\" ثبت شده را حذف کنید! این عمل برگشت نا پذیر "
|
1127 |
"است."
|
1128 |
|
1129 |
-
#: ../admin/classes/tmp/settings.php:
|
1130 |
-
#: ../admin/classes/tmp/settings.php:
|
1131 |
msgid "Delete All Data"
|
1132 |
msgstr "حذف تمام داده ها"
|
1133 |
|
1134 |
-
#: ../admin/classes/tmp/settings.php:
|
1135 |
-
#: ../admin/classes/tmp/settings.php:
|
1136 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1137 |
msgstr ""
|
1138 |
"شما قصد دارید که تمامی \"داده ها\" ثبت شده را حذف کنید! این عمل برگشت نا "
|
1139 |
"پذیر است."
|
1140 |
|
1141 |
-
#: ../admin/classes/tmp/settings.php:
|
1142 |
msgid ""
|
1143 |
"<strong>Only</strong> registered users have permission to like comments."
|
1144 |
msgstr ""
|
1145 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1146 |
"دیدگاه ها را لایک کنند."
|
1147 |
|
1148 |
-
#: ../admin/classes/tmp/settings.php:
|
1149 |
msgid "Customize"
|
1150 |
msgstr "سفارشی سازی"
|
1151 |
|
1152 |
-
#: ../admin/classes/tmp/settings.php:
|
1153 |
msgid "Custom Style"
|
1154 |
msgstr "سفارشی سازی"
|
1155 |
|
1156 |
-
#: ../admin/classes/tmp/settings.php:
|
1157 |
msgid "Active this option to see the custom style settings."
|
1158 |
msgstr ""
|
1159 |
"با فعال سازی این گزینه، می توانید استایل سفارشی خود را در افزونه به کار "
|
1160 |
"ببرید."
|
1161 |
|
1162 |
-
#: ../admin/classes/tmp/settings.php:
|
1163 |
msgid "Button style"
|
1164 |
msgstr "دکمه لایک"
|
1165 |
|
1166 |
-
#: ../admin/classes/tmp/settings.php:
|
1167 |
msgid "Background"
|
1168 |
msgstr "رنگ پس زمینه"
|
1169 |
|
1170 |
-
#: ../admin/classes/tmp/settings.php:
|
1171 |
msgid "Border Color"
|
1172 |
msgstr "رنگ حاشیه"
|
1173 |
|
1174 |
-
#: ../admin/classes/tmp/settings.php:
|
1175 |
msgid "Text Color"
|
1176 |
msgstr "رنگ متن"
|
1177 |
|
1178 |
-
#: ../admin/classes/tmp/settings.php:
|
1179 |
msgid "Counter Style"
|
1180 |
msgstr "باکس شمارنده"
|
1181 |
|
1182 |
-
#: ../admin/classes/tmp/settings.php:
|
1183 |
msgid "Loading Animation"
|
1184 |
msgstr "انیمیشن بارگذاری"
|
1185 |
|
1186 |
-
#: ../admin/classes/tmp/settings.php:
|
1187 |
msgid "Custom CSS"
|
1188 |
msgstr "سفارشی سازی css"
|
1189 |
|
1190 |
-
#: ../admin/classes/tmp/settings.php:
|
1191 |
msgid "Activity Content"
|
1192 |
msgstr "در متن فعالیت"
|
1193 |
|
1194 |
-
#: ../admin/classes/tmp/settings.php:
|
1195 |
msgid "Activity Meta"
|
1196 |
msgstr "در متاباکس فعالیت"
|
1197 |
|
1198 |
-
#: ../admin/classes/tmp/settings.php:
|
1199 |
msgid "Activity Comment"
|
1200 |
msgstr "نظرات فعالیت ها"
|
1201 |
|
1202 |
-
#: ../admin/classes/tmp/settings.php:
|
1203 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1204 |
msgstr ""
|
1205 |
" با فعال سازی این گزینه، سیستم لایک در بخش دیدگاه های مربوط به بادی پرس فعال "
|
1206 |
"می شود."
|
1207 |
|
1208 |
-
#: ../admin/classes/tmp/settings.php:
|
1209 |
msgid ""
|
1210 |
"<strong>Only</strong> registered users have permission to like activities."
|
1211 |
msgstr ""
|
1212 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1213 |
"فعالیت های بادی پرس را لایک کنند."
|
1214 |
|
1215 |
-
#: ../admin/classes/tmp/settings.php:
|
1216 |
msgid "BuddyPress Activity"
|
1217 |
msgstr "فعالیت های بادی پرس"
|
1218 |
|
1219 |
-
#: ../admin/classes/tmp/settings.php:
|
1220 |
msgid "insert new likes in buddyPress activity page"
|
1221 |
msgstr ""
|
1222 |
"با فعال سازی این گزینه، اطلاعات جدیدترین لایک ها به بخش فعالیت های بادی پرس "
|
1223 |
"اضافه خواهد شد."
|
1224 |
|
1225 |
-
#: ../admin/classes/tmp/settings.php:
|
1226 |
msgid "BuddyPress Custom Notification"
|
1227 |
msgstr "اطلاعیه های خصوصی بادی پرس"
|
1228 |
|
1229 |
-
#: ../admin/classes/tmp/settings.php:
|
1230 |
msgid "Sends out notifications when you get a like from someone"
|
1231 |
msgstr "ارسال اطلاعیه های خصوصی به کاربران هنگامی که مطالب آنها لایک می شود"
|
1232 |
|
1233 |
-
#: ../admin/classes/tmp/settings.php:
|
1234 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1235 |
msgstr ""
|
1236 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1237 |
"تاپیک ها را لایک کنند."
|
1238 |
|
1239 |
-
#: ../admin/classes/tmp/settings.php:
|
1240 |
msgid "Users who have liked this topic:"
|
1241 |
msgstr "کاربرانی که این تاپیک را پسندیده اند:"
|
1242 |
|
1243 |
-
#: ../inc/wp-ulike.php:
|
1244 |
msgid "You need to login in order to like this post: "
|
1245 |
msgstr "برای امتیاز دهی به این مطلب، لطفا وارد شوید: "
|
1246 |
|
1247 |
-
#: ../inc/wp-ulike.php:
|
1248 |
-
#: ../inc/wp-ulike.php:
|
1249 |
msgid "click here"
|
1250 |
msgstr "برای ورود کلیک کنید"
|
1251 |
|
1252 |
-
#: ../inc/wp-ulike.php:
|
1253 |
msgid "You need to login in order to like this comment: "
|
1254 |
msgstr "برای امتیاز دهی به این دیدگاه، لطفا وارد شوید: "
|
1255 |
|
1256 |
-
#: ../inc/wp-ulike.php:
|
1257 |
msgid "You need to login in order to like this activity: "
|
1258 |
msgstr "برای امتیاز دهی به این فعالیت، لطفا وارد شوید: "
|
1259 |
|
1260 |
-
#: ../inc/wp-ulike.php:
|
1261 |
msgid "Error: This Method Is Not Exist!"
|
1262 |
msgstr "خطا: این متد وجود خارجی ندارد!"
|
1263 |
|
1264 |
-
#: ../inc/wp-functions.php:
|
1265 |
msgid "WP ULike Activity"
|
1266 |
msgstr "فعالیت های وردپرس یولایک"
|
1267 |
|
1268 |
-
#: ../inc/wp-functions.php:
|
1269 |
msgid "Likes"
|
1270 |
msgstr "لایک ها"
|
1271 |
|
1272 |
-
#: ../inc/wp-functions.php:
|
1273 |
msgid "You have a new like from"
|
1274 |
msgstr "شما یک لایک جدید دریافت کرده اید! توسط :"
|
1275 |
|
1276 |
-
#: ../inc/wp-functions.php:
|
1277 |
msgid ""
|
1278 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1279 |
"WordPress, bbPress, BuddyPress & ..."
|
@@ -1282,31 +1291,31 @@ msgstr ""
|
|
1282 |
"و... را لایک/آنلایک کنند (بعلاوه افرادی که نوشته آنها لایک/آنلایک شده)، می "
|
1283 |
"توانند به ترتیب امتیازات مثبت و منفی دریافت کنند."
|
1284 |
|
1285 |
-
#: ../inc/wp-functions.php:
|
1286 |
msgid "Liking Content"
|
1287 |
msgstr "لایک نوشته"
|
1288 |
|
1289 |
-
#: ../inc/wp-functions.php:
|
1290 |
msgid "Liked Content"
|
1291 |
msgstr "نوشته لایک شده"
|
1292 |
|
1293 |
-
#: ../inc/wp-functions.php:
|
1294 |
msgid "Unliking Content"
|
1295 |
msgstr "لغو لایک نوشته"
|
1296 |
|
1297 |
-
#: ../inc/wp-functions.php:
|
1298 |
msgid "Unliked Content"
|
1299 |
msgstr "نوشته لغو لایک شده"
|
1300 |
|
1301 |
-
#: ../inc/wp-functions.php:
|
1302 |
msgid "Recent Posts Liked"
|
1303 |
msgstr "تازه ترین مطالب لایک شده"
|
1304 |
|
1305 |
-
#: ../inc/wp-functions.php:
|
1306 |
msgid "Recent Comments Liked"
|
1307 |
msgstr "تازه ترین دیدگاه های لایک شده"
|
1308 |
|
1309 |
-
#: ../inc/wp-functions.php:
|
1310 |
msgid "This user has not made any likes."
|
1311 |
msgstr "این کاربر، هنوز هیچ موردی را نپسندیده است."
|
1312 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP ULike\n"
|
4 |
+
"POT-Creation-Date: 2017-06-18 16:19+0330\n"
|
5 |
+
"PO-Revision-Date: 2017-06-18 16:19+0330\n"
|
6 |
"Last-Translator: Alimir <alimir71@yahoo.com>\n"
|
7 |
"Language-Team: alimir.ir <info@alimir.ir>\n"
|
8 |
"Language: fa_IR\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: ..\n"
|
18 |
|
19 |
+
#: ../wp-ulike.php:142
|
20 |
msgid "Settings"
|
21 |
msgstr "تنظیمات"
|
22 |
|
23 |
+
#: ../wp-ulike.php:143
|
24 |
msgid "Statistics"
|
25 |
msgstr "آماره"
|
26 |
|
27 |
+
#: ../wp-ulike.php:144
|
28 |
msgid "About"
|
29 |
msgstr "درباره"
|
30 |
|
31 |
+
#: ../admin/about.php:40 ../admin/about.php:289
|
32 |
+
msgid "Like this plugin?"
|
33 |
+
msgstr "این پلاگین چندتا لایک داره؟!؟ :)"
|
34 |
+
|
35 |
+
#: ../admin/about.php:40 ../admin/about.php:290
|
36 |
+
msgid ""
|
37 |
+
"Show your support by Rating 5 Star in <a href=\"http://wordpress.org/plugins/"
|
38 |
+
"wp-ulike\"> Plugin Directory reviews</a>"
|
39 |
+
msgstr ""
|
40 |
+
"حمایتتون رو از این افزونه، با امتیاز 5 ستاره در <a href=\"http://wordpress."
|
41 |
+
"org/plugins/wp-ulike\">مخزن وردپرس</a> ثبت کنید..."
|
42 |
+
|
43 |
+
#: ../admin/about.php:126
|
44 |
msgid "Welcome to WP ULike"
|
45 |
msgstr "به وردپرس یولایک خوش آمدید"
|
46 |
|
47 |
+
#: ../admin/about.php:128
|
48 |
msgid ""
|
49 |
"Thank you for choosing WP ULike! This version is our leanest and most "
|
50 |
"powerful version yet."
|
52 |
"از اینکه از افزونه وردپرس یولایک استفاده می کنید، خیلی ممنونیم! نسخه ی جدید، "
|
53 |
"قویترین و کامل ترین نسخه منتشر شده از این افزونه است."
|
54 |
|
55 |
+
#: ../admin/about.php:129 ../admin/stats.php:38
|
56 |
msgid "Visit our homepage"
|
57 |
msgstr "مشاهده صفحه افزونه"
|
58 |
|
59 |
+
#: ../admin/about.php:131
|
60 |
msgid "Version"
|
61 |
msgstr "نسخه"
|
62 |
|
63 |
+
#: ../admin/about.php:133
|
64 |
msgid "Getting Started"
|
65 |
msgstr "شروع "
|
66 |
|
67 |
+
#: ../admin/about.php:134
|
68 |
msgid "Credits"
|
69 |
msgstr "دستاندرکاران"
|
70 |
|
71 |
+
#: ../admin/about.php:135 ../admin/stats.php:52
|
72 |
#: ../admin/classes/class-settings.php:112
|
73 |
msgid "Support"
|
74 |
msgstr "پشتیبانی"
|
75 |
|
76 |
+
#: ../admin/about.php:136 ../admin/stats.php:53
|
77 |
#: ../admin/classes/class-settings.php:112
|
78 |
msgid "FAQ"
|
79 |
msgstr "سؤالات متداول"
|
80 |
|
81 |
+
#: ../admin/about.php:137
|
82 |
msgid "Reviews"
|
83 |
msgstr "امتیازدهی"
|
84 |
|
85 |
+
#: ../admin/about.php:143
|
86 |
msgid "Introducing WP ULike"
|
87 |
msgstr "معرفی وردپرس یولاک"
|
88 |
|
89 |
+
#: ../admin/about.php:150 ../admin/stats.php:37 ../admin/admin.php:197
|
90 |
msgid "About WP ULike"
|
91 |
msgstr "درباره وردپرس یولایک"
|
92 |
|
93 |
+
#: ../admin/about.php:159 ../admin/classes/class-settings.php:46
|
94 |
msgid ""
|
95 |
"WP ULike plugin allows to integrate a beautiful Ajax Like Button into your "
|
96 |
"wordPress website to allow your visitors to like and unlike pages, posts, "
|
104 |
"سفارشی سازی استایل ها و… تمامی قابلیت های یک سیستم خوب و حرفه ای رو در "
|
105 |
"اختیار شما قرار میده."
|
106 |
|
107 |
+
#: ../admin/about.php:171
|
108 |
msgid "WP Ulike Extension"
|
109 |
msgstr "گسترش وردپرس یولایک"
|
110 |
|
111 |
+
#: ../admin/about.php:172
|
112 |
msgid ""
|
113 |
"Right now, WP ULike support wordpress posts / comments, BuddyPress "
|
114 |
"activities & bbPress Topics."
|
116 |
"وردپرس یولایک سیستمی برای همه است و از نوشته های وردپرس، دیدگاه ها، فعالیت "
|
117 |
"های بادی پرس و تاپیک های بی بی پرس و... پشتیبانی کامل دارد."
|
118 |
|
119 |
+
#: ../admin/about.php:178
|
120 |
msgid "Added More Than 20 Language Files"
|
121 |
msgstr "افزودن بیش از 20 فایل زبان جدید"
|
122 |
|
123 |
+
#: ../admin/about.php:179
|
124 |
msgid ""
|
125 |
"WP ULike is already translated into +20 languages, with more always in "
|
126 |
"progress."
|
128 |
"افزونه وردپرس یولایک به بیش از ۲۰ زبان زنده دنیا ترجمه شده و همچنان در حال "
|
129 |
"توسعه است... :)"
|
130 |
|
131 |
+
#: ../admin/about.php:185
|
132 |
msgid "User Profile Links"
|
133 |
msgstr "لینک به حساب های کاربری"
|
134 |
|
135 |
+
#: ../admin/about.php:186
|
136 |
msgid ""
|
137 |
"Since WP ULike 2.3, We have synced the likers profile with BuddyPress & "
|
138 |
"UltimateMember plugins."
|
141 |
"از دو افزونه محبوب buddypress و Ultimate Member است که در پنل تنظیمات افزونه "
|
142 |
"و ابزارک ها تنظیم می شود."
|
143 |
|
144 |
+
#: ../admin/about.php:192
|
145 |
msgid "New Themes And Styles"
|
146 |
msgstr "قالب ها و استایل های جدید"
|
147 |
|
148 |
+
#: ../admin/about.php:193
|
149 |
msgid ""
|
150 |
"Since WP ULike 2.3, We have made some new styles and themes and you can "
|
151 |
"customize them by your taste."
|
153 |
"از نسخه ۲.۳ افزونه یولایک، ما به مرور قالب های جدید و جذاب رو با امکان "
|
154 |
"سفارشی سازی توسط شما به افزونه اضافه میکنیم."
|
155 |
|
156 |
+
#: ../admin/about.php:199
|
157 |
msgid "myCRED Points Support"
|
158 |
msgstr "پشتیبانی کامل از امتیازات myCRED"
|
159 |
|
160 |
+
#: ../admin/about.php:200
|
161 |
msgid ""
|
162 |
"myCRED is an adaptive points management system that lets you award / charge "
|
163 |
"your users for interacting with your WordPress."
|
166 |
"در آن بر اساس انواع فعالیت هایی که می کند ، امتیاز جایزه می گیرد ، بلکه می "
|
167 |
"تواند این امتیازات را در سایت خود شما خرج کند."
|
168 |
|
169 |
+
#: ../admin/about.php:206 ../admin/stats.php:176 ../admin/stats.php:395
|
170 |
msgid "Likers World Map"
|
171 |
msgstr "نقشه جهانی لایک کنندگان"
|
172 |
|
173 |
+
#: ../admin/about.php:207
|
174 |
msgid ""
|
175 |
"Since WP ULike 2.3, We have made a new ability that you can track your "
|
176 |
"likers by their country in the world map & Top Liker widget."
|
178 |
"از نسخه ۲.۳ افزونه یولایک، امکان بررسی جغرافیایی لایک کنندگان به همراه "
|
179 |
"ابزراک ویژه برترین لایک کنندگان اضافه شده است."
|
180 |
|
181 |
+
#: ../admin/about.php:213 ../admin/stats.php:24 ../admin/admin.php:193
|
182 |
msgid "WP ULike Statistics"
|
183 |
msgstr "آماره وردپرس یولایک"
|
184 |
|
185 |
+
#: ../admin/about.php:213 ../admin/classes/tmp/settings.php:118
|
186 |
msgid "Home"
|
187 |
msgstr "خانه"
|
188 |
|
189 |
+
#: ../admin/about.php:213
|
190 |
msgid "OR"
|
191 |
msgstr "یا"
|
192 |
|
193 |
+
#: ../admin/about.php:213 ../admin/admin.php:73
|
194 |
msgid "WP ULike Settings"
|
195 |
msgstr "تنظیمات وردپرس یولایک"
|
196 |
|
197 |
+
#: ../admin/about.php:219
|
198 |
msgid "WP ULike is created by many love and time. Enjoy it :)"
|
199 |
msgstr ""
|
200 |
"وردپرس یولایک با صرف کلی علاقه و زمان ساخته شده است. امیدواریم که از آن لذت "
|
201 |
"ببرید :)"
|
202 |
|
203 |
+
#: ../admin/about.php:220
|
204 |
msgid "Project Leaders"
|
205 |
msgstr "سازندگان اصلی"
|
206 |
|
207 |
+
#: ../admin/about.php:225
|
208 |
msgid "Project Lead & Developer"
|
209 |
msgstr "راهبر پروژه، توسعه دهنده ارشد"
|
210 |
|
211 |
+
#: ../admin/about.php:229
|
212 |
msgid "Translations"
|
213 |
msgstr "ترجمه ها"
|
214 |
|
215 |
+
#: ../admin/about.php:268
|
216 |
msgid "Would you like to help translate the plugin into more languages?"
|
217 |
msgstr ""
|
218 |
"آیا علاقه ای دارید که در ترجمه این افزونه به زبانهای دیگر با ما همکاری "
|
219 |
"کنید؟!؟ "
|
220 |
|
221 |
+
#: ../admin/about.php:268
|
222 |
msgid "Join our WP-Translations Community"
|
223 |
msgstr "به شبکه مترجمان ما بپیوندید"
|
224 |
|
225 |
+
#: ../admin/about.php:270
|
226 |
msgid "Other Plugins"
|
227 |
msgstr "سایر افزونه ها"
|
228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
#: ../admin/logs.php:17 ../admin/logs.php:143 ../admin/logs.php:213
|
230 |
#: ../admin/logs.php:265 ../admin/logs.php:339 ../admin/logs.php:393
|
231 |
#: ../admin/logs.php:463 ../admin/logs.php:516 ../admin/logs.php:586
|
241 |
msgid "WP ULike Logs"
|
242 |
msgstr "وقایع اتفاقیه در وردپرس یولایک"
|
243 |
|
244 |
+
#: ../admin/logs.php:140 ../admin/stats.php:43 ../admin/admin.php:177
|
245 |
msgid "Post Likes Logs"
|
246 |
msgstr "وقایع لایک در نوشتارها"
|
247 |
|
284 |
msgstr "کارها"
|
285 |
|
286 |
#: ../admin/logs.php:175 ../admin/logs.php:298 ../admin/logs.php:425
|
287 |
+
#: ../admin/logs.php:548 ../admin/stats.php:199
|
288 |
msgid "Guest User"
|
289 |
msgstr "کاربر مهمان"
|
290 |
|
297 |
"<strong>خطا:</strong> چیزی یافت نشد. (این مشکل به خاطر این مسأله ایجاد شده "
|
298 |
"است که شما هیچ اطلاعاتی را در این جدول ندارید)"
|
299 |
|
300 |
+
#: ../admin/logs.php:262 ../admin/stats.php:44 ../admin/admin.php:181
|
301 |
msgid "Comment Likes Logs"
|
302 |
msgstr "وقایع لایک در دیدگاه ها"
|
303 |
|
313 |
msgid "Comment Text"
|
314 |
msgstr "متن دیدگاه"
|
315 |
|
316 |
+
#: ../admin/logs.php:390 ../admin/stats.php:45 ../admin/admin.php:185
|
317 |
msgid "Activity Likes Logs"
|
318 |
msgstr "وقایع لایک در فعالیت ها"
|
319 |
|
330 |
msgid "<a href=\"%1$s\">Activity Permalink</a>"
|
331 |
msgstr "<a href=\"%1$s\">مشاهده فعالیت</a>"
|
332 |
|
333 |
+
#: ../admin/logs.php:513 ../admin/stats.php:46 ../admin/admin.php:189
|
334 |
msgid "Topics Likes Logs"
|
335 |
msgstr "وقایع لایک در تاپیک ها"
|
336 |
|
342 |
msgid "Topic Title"
|
343 |
msgstr "عنوان تاپیک"
|
344 |
|
345 |
+
#: ../admin/stats.php:31
|
346 |
msgid "Welcome to WP ULike Statistics!"
|
347 |
msgstr "به آماره وردپرس یولایک خوش آمدید!"
|
348 |
|
349 |
+
#: ../admin/stats.php:32
|
350 |
msgid "We have provided some useful statistics tools in this page:"
|
351 |
msgstr ""
|
352 |
"در این بخش، ما مجموعه ای از ابزارهای کاربردی را برای شما آماده کرده ایم:"
|
353 |
|
354 |
+
#: ../admin/stats.php:36
|
355 |
msgid "Get Started"
|
356 |
msgstr "آغاز کنید"
|
357 |
|
358 |
+
#: ../admin/stats.php:38
|
359 |
msgid "or"
|
360 |
msgstr "یا"
|
361 |
|
362 |
+
#: ../admin/stats.php:41
|
363 |
msgid "Other Tools"
|
364 |
msgstr "سایر ابزارها"
|
365 |
|
366 |
+
#: ../admin/stats.php:50
|
367 |
msgid "Documentation"
|
368 |
msgstr "مستندات"
|
369 |
|
370 |
+
#: ../admin/stats.php:54
|
371 |
msgid "Contact"
|
372 |
msgstr "تماس با ما"
|
373 |
|
374 |
+
#: ../admin/stats.php:55
|
375 |
msgid "GitHub Repository"
|
376 |
msgstr "مخزن گیت هاب"
|
377 |
|
378 |
+
#: ../admin/stats.php:81
|
379 |
msgid "Posts Likes Summary"
|
380 |
msgstr "خلاصه لایک در نوشتارها"
|
381 |
|
382 |
+
#: ../admin/stats.php:89
|
383 |
msgid "Comments Likes Summary"
|
384 |
msgstr "خلاصه لایک در دیدگاه ها"
|
385 |
|
386 |
+
#: ../admin/stats.php:97
|
387 |
msgid "Activities Likes Summary"
|
388 |
msgstr "خلاصه لایک در فعالیت ها"
|
389 |
|
390 |
+
#: ../admin/stats.php:105
|
391 |
msgid "Topics Likes Summary"
|
392 |
msgstr "خلاصه لایک در تاپیک ها"
|
393 |
|
394 |
+
#: ../admin/stats.php:115 ../admin/stats.php:389
|
395 |
msgid "Summary"
|
396 |
msgstr "خلاصه"
|
397 |
|
398 |
+
#: ../admin/stats.php:127
|
399 |
msgid "Total Likes"
|
400 |
msgstr "مجموع کل لایک ها"
|
401 |
|
402 |
+
#: ../admin/stats.php:139 ../admin/classes/class-widget.php:422
|
403 |
msgid "Today"
|
404 |
msgstr "امروز"
|
405 |
|
406 |
+
#: ../admin/stats.php:144 ../admin/classes/class-widget.php:421
|
407 |
msgid "Yesterday"
|
408 |
msgstr "دیروز"
|
409 |
|
410 |
+
#: ../admin/stats.php:149 ../admin/classes/class-widget.php:420
|
411 |
msgid "Week"
|
412 |
msgstr "هفته"
|
413 |
|
414 |
+
#: ../admin/stats.php:154 ../admin/classes/class-widget.php:419
|
415 |
msgid "Month"
|
416 |
msgstr "ماه"
|
417 |
|
418 |
+
#: ../admin/stats.php:159
|
419 |
msgid "Total"
|
420 |
msgstr "کل"
|
421 |
|
422 |
+
#: ../admin/stats.php:193 ../admin/stats.php:396
|
423 |
msgid "Top Likers"
|
424 |
msgstr "برترین لایک کنندگان"
|
425 |
|
426 |
+
#: ../admin/stats.php:206 ../admin/classes/class-widget.php:281
|
427 |
#: ../admin/classes/tmp/settings.php:23 ../admin/classes/tmp/settings.php:24
|
428 |
#: ../admin/classes/tmp/settings.php:32
|
429 |
msgid "Like"
|
430 |
msgstr "لایک"
|
431 |
|
432 |
+
#: ../admin/stats.php:219 ../admin/stats.php:397
|
433 |
#: ../admin/classes/class-widget.php:405 ../inc/wp-strings.php:26
|
434 |
msgid "Most Liked Posts"
|
435 |
msgstr "پرلایک ترین مطالب"
|
436 |
|
437 |
+
#: ../admin/stats.php:229 ../admin/stats.php:398
|
438 |
#: ../admin/classes/class-widget.php:406 ../inc/wp-strings.php:27
|
439 |
msgid "Most Liked Comments"
|
440 |
msgstr "پرلایک ترین دیدگاه ها"
|
441 |
|
442 |
+
#: ../admin/stats.php:239 ../admin/stats.php:399
|
443 |
#: ../admin/classes/class-widget.php:407
|
444 |
msgid "Most Liked Activities"
|
445 |
msgstr "پرلایک ترین فعالیت ها"
|
446 |
|
447 |
+
#: ../admin/stats.php:249 ../admin/stats.php:400
|
448 |
#: ../admin/classes/class-widget.php:408
|
449 |
msgid "Most Liked Topics"
|
450 |
msgstr "پرلایک ترین تاپیک ها"
|
451 |
|
452 |
+
#: ../admin/stats.php:268 ../admin/stats.php:274 ../admin/stats.php:280
|
453 |
+
#: ../admin/stats.php:286
|
454 |
msgid "View Logs"
|
455 |
msgstr "مشاهده وقایع"
|
456 |
|
457 |
+
#: ../admin/stats.php:269 ../admin/stats.php:390
|
458 |
msgid "Posts Likes Stats"
|
459 |
msgstr "نمودار لایک در نوشتارها"
|
460 |
|
461 |
+
#: ../admin/stats.php:269 ../admin/stats.php:275 ../admin/stats.php:281
|
462 |
+
#: ../admin/stats.php:287 ../admin/stats.php:318
|
463 |
#, php-format
|
464 |
msgid "In The Last %s Days"
|
465 |
msgstr "در %s روز گذشته"
|
466 |
|
467 |
+
#: ../admin/stats.php:275 ../admin/stats.php:391
|
468 |
msgid "Comments Likes Stats"
|
469 |
msgstr "نمودار لایک در دیدگاه ها"
|
470 |
|
471 |
+
#: ../admin/stats.php:281 ../admin/stats.php:392
|
472 |
msgid "Activities Likes Stats"
|
473 |
msgstr "نمودار لایک در فعالیت ها"
|
474 |
|
475 |
+
#: ../admin/stats.php:287 ../admin/stats.php:393
|
476 |
msgid "Topics Likes Stats"
|
477 |
msgstr "نمودار لایک در تاپیک ها"
|
478 |
|
479 |
+
#: ../admin/stats.php:318 ../admin/stats.php:394
|
480 |
msgid "Likes Percent"
|
481 |
msgstr "درصد تخصیص لایک ها"
|
482 |
|
483 |
+
#: ../admin/stats.php:386
|
484 |
msgid "Show on screen"
|
485 |
msgstr "تنظیمات صفحه"
|
486 |
|
487 |
+
#: ../admin/stats.php:388
|
488 |
msgid "Welcome"
|
489 |
msgstr "خوش آمدید"
|
490 |
|
491 |
+
#: ../admin/stats.php:403
|
492 |
msgid "Days"
|
493 |
msgstr "روزها"
|
494 |
|
495 |
+
#: ../admin/stats.php:404 ../admin/classes/class-settings.php:28
|
496 |
msgid "Save Settings"
|
497 |
msgstr "ذخیره تغییرات"
|
498 |
|
507 |
"\">وردپرس يولايک را</a> انتخاب کرده ايد. طراحي و کدنويسي توسط <a href=\"%s\" "
|
508 |
"title=\"Wordpress ULike\" target=\"_blank\">علي ميرزائي</a>"
|
509 |
|
510 |
+
#: ../admin/admin.php:76 ../inc/wp-functions.php:581
|
511 |
msgid "WP ULike"
|
512 |
msgstr "وردپرس یولایک"
|
513 |
|
582 |
msgstr "ساده"
|
583 |
|
584 |
#: ../admin/classes/class-widget.php:430 ../admin/classes/tmp/settings.php:95
|
585 |
+
#: ../admin/classes/tmp/settings.php:208 ../admin/classes/tmp/settings.php:356
|
586 |
+
#: ../admin/classes/tmp/settings.php:482
|
587 |
msgid "Heart"
|
588 |
msgstr "قلب"
|
589 |
|
605 |
|
606 |
#: ../admin/classes/class-widget.php:455
|
607 |
#: ../admin/classes/class-settings.php:97
|
608 |
+
#: ../admin/classes/tmp/settings.php:348
|
609 |
msgid "BuddyPress"
|
610 |
msgstr "بادی پرس"
|
611 |
|
634 |
msgstr "تنظیمات مشابه"
|
635 |
|
636 |
#: ../admin/classes/class-settings.php:48
|
637 |
+
#: ../admin/classes/tmp/settings.php:146 ../admin/classes/tmp/settings.php:237
|
638 |
+
#: ../admin/classes/tmp/settings.php:391 ../admin/classes/tmp/settings.php:510
|
639 |
msgid "Logging Method"
|
640 |
msgstr "روش وقایع نگاری"
|
641 |
|
748 |
#: ../admin/classes/class-settings.php:91
|
749 |
#: ../admin/classes/class-settings.php:99
|
750 |
#: ../admin/classes/class-settings.php:107
|
751 |
+
#: ../admin/classes/tmp/settings.php:101 ../admin/classes/tmp/settings.php:214
|
752 |
+
#: ../admin/classes/tmp/settings.php:362 ../admin/classes/tmp/settings.php:488
|
753 |
msgid "Automatic display"
|
754 |
msgstr "نمایش خودکار"
|
755 |
|
765 |
#: ../admin/classes/class-settings.php:91
|
766 |
#: ../admin/classes/class-settings.php:99
|
767 |
#: ../admin/classes/class-settings.php:107
|
768 |
+
#: ../admin/classes/tmp/settings.php:177 ../admin/classes/tmp/settings.php:268
|
769 |
+
#: ../admin/classes/tmp/settings.php:422 ../admin/classes/tmp/settings.php:541
|
770 |
msgid "Users Like Box Template"
|
771 |
msgstr "قالب جعبه لایک کاربران"
|
772 |
|
778 |
msgstr "قالب پیشفرض:"
|
779 |
|
780 |
#: ../admin/classes/class-settings.php:82
|
781 |
+
#: ../admin/classes/tmp/settings.php:176 ../inc/classes/class-ulike.php:427
|
782 |
msgid "Users who have LIKED this post:"
|
783 |
msgstr "کاربرانی که این مطلب را پسندیده اند:"
|
784 |
|
785 |
#: ../admin/classes/class-settings.php:89
|
786 |
+
#: ../admin/classes/tmp/settings.php:200
|
787 |
msgid "Comments"
|
788 |
msgstr "دیدگاه ها"
|
789 |
|
796 |
"ها قرار دهید "
|
797 |
|
798 |
#: ../admin/classes/class-settings.php:91
|
799 |
+
#: ../admin/classes/tmp/settings.php:267
|
800 |
msgid "Users who have LIKED this comment:"
|
801 |
msgstr "کاربرانی که این دیدگاه را پسندیده اند:"
|
802 |
|
811 |
|
812 |
#: ../admin/classes/class-settings.php:99
|
813 |
#: ../admin/classes/class-settings.php:107
|
814 |
+
#: ../admin/classes/tmp/settings.php:421
|
815 |
msgid "Users who have liked this activity:"
|
816 |
msgstr "کاربرانی که این فعالیت را پسندیده اند:"
|
817 |
|
818 |
#: ../admin/classes/class-settings.php:99
|
819 |
+
#: ../admin/classes/tmp/settings.php:442
|
820 |
msgid "Post Activity Text"
|
821 |
msgstr "متن فعالیت مطالب"
|
822 |
|
823 |
#: ../admin/classes/class-settings.php:99
|
824 |
+
#: ../admin/classes/tmp/settings.php:448
|
825 |
msgid "Comment Activity Text"
|
826 |
msgstr "متن فعالیت دیدگاه ها"
|
827 |
|
828 |
#: ../admin/classes/class-settings.php:105
|
829 |
+
#: ../admin/classes/tmp/settings.php:474
|
830 |
msgid "bbPress"
|
831 |
msgstr "بی بی پرس"
|
832 |
|
893 |
msgstr "آیکن دکمه"
|
894 |
|
895 |
#: ../admin/classes/tmp/settings.php:33 ../admin/classes/tmp/settings.php:38
|
896 |
+
#: ../admin/classes/tmp/settings.php:332
|
897 |
msgid "Best size: 16x16"
|
898 |
msgstr "سایز مناسب : 16x16"
|
899 |
|
931 |
|
932 |
#: ../admin/classes/tmp/settings.php:61 ../admin/classes/tmp/settings.php:68
|
933 |
#: ../admin/classes/tmp/settings.php:102 ../admin/classes/tmp/settings.php:133
|
934 |
+
#: ../admin/classes/tmp/settings.php:140 ../admin/classes/tmp/settings.php:159
|
935 |
+
#: ../admin/classes/tmp/settings.php:215 ../admin/classes/tmp/settings.php:231
|
936 |
+
#: ../admin/classes/tmp/settings.php:250 ../admin/classes/tmp/settings.php:297
|
937 |
+
#: ../admin/classes/tmp/settings.php:363 ../admin/classes/tmp/settings.php:378
|
938 |
+
#: ../admin/classes/tmp/settings.php:385 ../admin/classes/tmp/settings.php:404
|
939 |
+
#: ../admin/classes/tmp/settings.php:429 ../admin/classes/tmp/settings.php:436
|
940 |
+
#: ../admin/classes/tmp/settings.php:489 ../admin/classes/tmp/settings.php:504
|
941 |
+
#: ../admin/classes/tmp/settings.php:523
|
942 |
msgid "Activate"
|
943 |
msgstr "فعال سازی"
|
944 |
|
972 |
msgid "Unliked Notice Message"
|
973 |
msgstr "پیغام اطلاعیه لغو پسندیدن"
|
974 |
|
975 |
+
#: ../admin/classes/tmp/settings.php:92 ../admin/classes/tmp/settings.php:205
|
976 |
+
#: ../admin/classes/tmp/settings.php:353 ../admin/classes/tmp/settings.php:479
|
977 |
#: ../inc/wp-strings.php:10
|
978 |
msgid "Themes"
|
979 |
msgstr "قالب ها"
|
980 |
|
981 |
+
#: ../admin/classes/tmp/settings.php:94 ../admin/classes/tmp/settings.php:207
|
982 |
+
#: ../admin/classes/tmp/settings.php:355 ../admin/classes/tmp/settings.php:481
|
983 |
#: ../inc/wp-strings.php:25
|
984 |
msgid "Default"
|
985 |
msgstr "پیشفرض"
|
986 |
|
987 |
+
#: ../admin/classes/tmp/settings.php:106 ../admin/classes/tmp/settings.php:219
|
988 |
+
#: ../admin/classes/tmp/settings.php:367 ../admin/classes/tmp/settings.php:493
|
989 |
msgid "Auto Display Position"
|
990 |
msgstr "محل قرار گیری در نمایش خودکار"
|
991 |
|
992 |
+
#: ../admin/classes/tmp/settings.php:109 ../admin/classes/tmp/settings.php:222
|
993 |
+
#: ../admin/classes/tmp/settings.php:496
|
994 |
msgid "Top of Content"
|
995 |
msgstr "بالای محتوا"
|
996 |
|
997 |
+
#: ../admin/classes/tmp/settings.php:110 ../admin/classes/tmp/settings.php:223
|
998 |
+
#: ../admin/classes/tmp/settings.php:497
|
999 |
msgid "Bottom of Content"
|
1000 |
msgstr "پایین محتوا"
|
1001 |
|
1002 |
+
#: ../admin/classes/tmp/settings.php:111 ../admin/classes/tmp/settings.php:224
|
1003 |
msgid "Top and Bottom"
|
1004 |
msgstr "بالا و پایین"
|
1005 |
|
1040 |
msgstr ""
|
1041 |
"شما می توانید بر روی این صفحات فیلتر گذاری کنید تا دکمه لایک نمایش داده نشود"
|
1042 |
|
1043 |
+
#: ../admin/classes/tmp/settings.php:132
|
1044 |
+
msgid "Google Rich Snippets"
|
1045 |
+
msgstr "گوگل ریچ اسنیپت"
|
1046 |
+
|
1047 |
+
#: ../admin/classes/tmp/settings.php:134
|
1048 |
+
msgid "Add rich snippet for ratings in form of schema.org"
|
1049 |
+
msgstr "این آپشن، رتبه ی نوشته شما را از بین 5 ستاره مشخص می کند."
|
1050 |
+
|
1051 |
+
#: ../admin/classes/tmp/settings.php:139 ../admin/classes/tmp/settings.php:230
|
1052 |
+
#: ../admin/classes/tmp/settings.php:384 ../admin/classes/tmp/settings.php:503
|
1053 |
msgid "Only registered Users"
|
1054 |
msgstr "محدودسازی لایک کاربران"
|
1055 |
|
1056 |
+
#: ../admin/classes/tmp/settings.php:141
|
1057 |
msgid "<strong>Only</strong> registered users have permission to like posts."
|
1058 |
msgstr ""
|
1059 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1060 |
"مطالب را لایک کنند."
|
1061 |
|
1062 |
+
#: ../admin/classes/tmp/settings.php:148 ../admin/classes/tmp/settings.php:239
|
1063 |
+
#: ../admin/classes/tmp/settings.php:393 ../admin/classes/tmp/settings.php:512
|
1064 |
msgid "Do Not Log"
|
1065 |
msgstr "وقایع نگاری نکن"
|
1066 |
|
1067 |
+
#: ../admin/classes/tmp/settings.php:149 ../admin/classes/tmp/settings.php:240
|
1068 |
+
#: ../admin/classes/tmp/settings.php:394 ../admin/classes/tmp/settings.php:513
|
1069 |
msgid "Logged By Cookie"
|
1070 |
msgstr "با کوکی"
|
1071 |
|
1072 |
+
#: ../admin/classes/tmp/settings.php:150 ../admin/classes/tmp/settings.php:241
|
1073 |
+
#: ../admin/classes/tmp/settings.php:395 ../admin/classes/tmp/settings.php:514
|
1074 |
msgid "Logged By IP"
|
1075 |
msgstr "با آی پی"
|
1076 |
|
1077 |
+
#: ../admin/classes/tmp/settings.php:151 ../admin/classes/tmp/settings.php:242
|
1078 |
+
#: ../admin/classes/tmp/settings.php:396 ../admin/classes/tmp/settings.php:515
|
1079 |
msgid "Logged By Cookie & IP"
|
1080 |
msgstr "با کوکی و آی پی"
|
1081 |
|
1082 |
+
#: ../admin/classes/tmp/settings.php:152 ../admin/classes/tmp/settings.php:243
|
1083 |
+
#: ../admin/classes/tmp/settings.php:397 ../admin/classes/tmp/settings.php:516
|
1084 |
msgid "Logged By Username"
|
1085 |
msgstr "با نام کاربری"
|
1086 |
|
1087 |
+
#: ../admin/classes/tmp/settings.php:158 ../admin/classes/tmp/settings.php:249
|
1088 |
+
#: ../admin/classes/tmp/settings.php:403 ../admin/classes/tmp/settings.php:522
|
1089 |
msgid "Show Liked Users Box"
|
1090 |
msgstr "نمایش باکس کاربران لایک کرده"
|
1091 |
|
1092 |
+
#: ../admin/classes/tmp/settings.php:160 ../admin/classes/tmp/settings.php:251
|
1093 |
+
#: ../admin/classes/tmp/settings.php:405 ../admin/classes/tmp/settings.php:524
|
1094 |
msgid ""
|
1095 |
"Active this option to show liked users avatars in the bottom of button like."
|
1096 |
msgstr ""
|
1097 |
"با فعال سازی این گزینه، می توانید آواتار کاربران لایک کرده، را در زیر دکمه "
|
1098 |
"لایک، نمایش دهید."
|
1099 |
|
1100 |
+
#: ../admin/classes/tmp/settings.php:165 ../admin/classes/tmp/settings.php:256
|
1101 |
+
#: ../admin/classes/tmp/settings.php:410 ../admin/classes/tmp/settings.php:529
|
1102 |
msgid "Size of Gravatars"
|
1103 |
msgstr "سایز آوتار"
|
1104 |
|
1105 |
+
#: ../admin/classes/tmp/settings.php:166 ../admin/classes/tmp/settings.php:257
|
1106 |
+
#: ../admin/classes/tmp/settings.php:411 ../admin/classes/tmp/settings.php:530
|
1107 |
msgid "Size of Gravatars to return (max is 512)"
|
1108 |
msgstr "سایز تصاویر گراواتار (بیشترین اندازه 512)"
|
1109 |
|
1110 |
+
#: ../admin/classes/tmp/settings.php:171 ../admin/classes/tmp/settings.php:262
|
1111 |
+
#: ../admin/classes/tmp/settings.php:416 ../admin/classes/tmp/settings.php:535
|
1112 |
msgid "Number Of The Users"
|
1113 |
msgstr "تعداد کاربران قابل نمایش"
|
1114 |
|
1115 |
+
#: ../admin/classes/tmp/settings.php:172 ../admin/classes/tmp/settings.php:263
|
1116 |
+
#: ../admin/classes/tmp/settings.php:417 ../admin/classes/tmp/settings.php:536
|
1117 |
msgid "The number of users to show in the users liked box"
|
1118 |
msgstr "حداکثر چند کاربر در باکس لایک کنندگان، نمایش داده شوند؟!؟"
|
1119 |
|
1120 |
+
#: ../admin/classes/tmp/settings.php:178 ../admin/classes/tmp/settings.php:269
|
1121 |
+
#: ../admin/classes/tmp/settings.php:423 ../admin/classes/tmp/settings.php:443
|
1122 |
+
#: ../admin/classes/tmp/settings.php:449 ../admin/classes/tmp/settings.php:542
|
1123 |
msgid "Allowed Variables:"
|
1124 |
msgstr "متغیرهای قابل استفاده:"
|
1125 |
|
1126 |
+
#: ../admin/classes/tmp/settings.php:182 ../admin/classes/tmp/settings.php:273
|
1127 |
+
#: ../admin/classes/tmp/settings.php:453 ../admin/classes/tmp/settings.php:546
|
1128 |
msgid "Delete All Logs"
|
1129 |
msgstr "حذف تمام وقایع"
|
1130 |
|
1131 |
+
#: ../admin/classes/tmp/settings.php:183 ../admin/classes/tmp/settings.php:274
|
1132 |
+
#: ../admin/classes/tmp/settings.php:454 ../admin/classes/tmp/settings.php:547
|
1133 |
msgid "You Are About To Delete All Likes Logs. This Action Is Not Reversible."
|
1134 |
msgstr ""
|
1135 |
"شما قصد دارید که تمامی \"وقایع\" ثبت شده را حذف کنید! این عمل برگشت نا پذیر "
|
1136 |
"است."
|
1137 |
|
1138 |
+
#: ../admin/classes/tmp/settings.php:188 ../admin/classes/tmp/settings.php:279
|
1139 |
+
#: ../admin/classes/tmp/settings.php:459 ../admin/classes/tmp/settings.php:552
|
1140 |
msgid "Delete All Data"
|
1141 |
msgstr "حذف تمام داده ها"
|
1142 |
|
1143 |
+
#: ../admin/classes/tmp/settings.php:189 ../admin/classes/tmp/settings.php:280
|
1144 |
+
#: ../admin/classes/tmp/settings.php:460 ../admin/classes/tmp/settings.php:553
|
1145 |
msgid "You Are About To Delete All Likes Data. This Action Is Not Reversible."
|
1146 |
msgstr ""
|
1147 |
"شما قصد دارید که تمامی \"داده ها\" ثبت شده را حذف کنید! این عمل برگشت نا "
|
1148 |
"پذیر است."
|
1149 |
|
1150 |
+
#: ../admin/classes/tmp/settings.php:232
|
1151 |
msgid ""
|
1152 |
"<strong>Only</strong> registered users have permission to like comments."
|
1153 |
msgstr ""
|
1154 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1155 |
"دیدگاه ها را لایک کنند."
|
1156 |
|
1157 |
+
#: ../admin/classes/tmp/settings.php:291
|
1158 |
msgid "Customize"
|
1159 |
msgstr "سفارشی سازی"
|
1160 |
|
1161 |
+
#: ../admin/classes/tmp/settings.php:296
|
1162 |
msgid "Custom Style"
|
1163 |
msgstr "سفارشی سازی"
|
1164 |
|
1165 |
+
#: ../admin/classes/tmp/settings.php:301
|
1166 |
msgid "Active this option to see the custom style settings."
|
1167 |
msgstr ""
|
1168 |
"با فعال سازی این گزینه، می توانید استایل سفارشی خود را در افزونه به کار "
|
1169 |
"ببرید."
|
1170 |
|
1171 |
+
#: ../admin/classes/tmp/settings.php:305
|
1172 |
msgid "Button style"
|
1173 |
msgstr "دکمه لایک"
|
1174 |
|
1175 |
+
#: ../admin/classes/tmp/settings.php:306 ../admin/classes/tmp/settings.php:319
|
1176 |
msgid "Background"
|
1177 |
msgstr "رنگ پس زمینه"
|
1178 |
|
1179 |
+
#: ../admin/classes/tmp/settings.php:310 ../admin/classes/tmp/settings.php:323
|
1180 |
msgid "Border Color"
|
1181 |
msgstr "رنگ حاشیه"
|
1182 |
|
1183 |
+
#: ../admin/classes/tmp/settings.php:314 ../admin/classes/tmp/settings.php:327
|
1184 |
msgid "Text Color"
|
1185 |
msgstr "رنگ متن"
|
1186 |
|
1187 |
+
#: ../admin/classes/tmp/settings.php:318
|
1188 |
msgid "Counter Style"
|
1189 |
msgstr "باکس شمارنده"
|
1190 |
|
1191 |
+
#: ../admin/classes/tmp/settings.php:331
|
1192 |
msgid "Loading Animation"
|
1193 |
msgstr "انیمیشن بارگذاری"
|
1194 |
|
1195 |
+
#: ../admin/classes/tmp/settings.php:336
|
1196 |
msgid "Custom CSS"
|
1197 |
msgstr "سفارشی سازی css"
|
1198 |
|
1199 |
+
#: ../admin/classes/tmp/settings.php:370
|
1200 |
msgid "Activity Content"
|
1201 |
msgstr "در متن فعالیت"
|
1202 |
|
1203 |
+
#: ../admin/classes/tmp/settings.php:371
|
1204 |
msgid "Activity Meta"
|
1205 |
msgstr "در متاباکس فعالیت"
|
1206 |
|
1207 |
+
#: ../admin/classes/tmp/settings.php:377
|
1208 |
msgid "Activity Comment"
|
1209 |
msgstr "نظرات فعالیت ها"
|
1210 |
|
1211 |
+
#: ../admin/classes/tmp/settings.php:379
|
1212 |
msgid "Add the possibility to like Buddypress comments in the activity stream"
|
1213 |
msgstr ""
|
1214 |
" با فعال سازی این گزینه، سیستم لایک در بخش دیدگاه های مربوط به بادی پرس فعال "
|
1215 |
"می شود."
|
1216 |
|
1217 |
+
#: ../admin/classes/tmp/settings.php:386
|
1218 |
msgid ""
|
1219 |
"<strong>Only</strong> registered users have permission to like activities."
|
1220 |
msgstr ""
|
1221 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1222 |
"فعالیت های بادی پرس را لایک کنند."
|
1223 |
|
1224 |
+
#: ../admin/classes/tmp/settings.php:428
|
1225 |
msgid "BuddyPress Activity"
|
1226 |
msgstr "فعالیت های بادی پرس"
|
1227 |
|
1228 |
+
#: ../admin/classes/tmp/settings.php:430
|
1229 |
msgid "insert new likes in buddyPress activity page"
|
1230 |
msgstr ""
|
1231 |
"با فعال سازی این گزینه، اطلاعات جدیدترین لایک ها به بخش فعالیت های بادی پرس "
|
1232 |
"اضافه خواهد شد."
|
1233 |
|
1234 |
+
#: ../admin/classes/tmp/settings.php:435
|
1235 |
msgid "BuddyPress Custom Notification"
|
1236 |
msgstr "اطلاعیه های خصوصی بادی پرس"
|
1237 |
|
1238 |
+
#: ../admin/classes/tmp/settings.php:437
|
1239 |
msgid "Sends out notifications when you get a like from someone"
|
1240 |
msgstr "ارسال اطلاعیه های خصوصی به کاربران هنگامی که مطالب آنها لایک می شود"
|
1241 |
|
1242 |
+
#: ../admin/classes/tmp/settings.php:505
|
1243 |
msgid "<strong>Only</strong> registered users have permission to like Topics."
|
1244 |
msgstr ""
|
1245 |
"با فعال سازی این گزینه، <strong>تنها</strong> کاربران عضو شده، می توانند "
|
1246 |
"تاپیک ها را لایک کنند."
|
1247 |
|
1248 |
+
#: ../admin/classes/tmp/settings.php:540
|
1249 |
msgid "Users who have liked this topic:"
|
1250 |
msgstr "کاربرانی که این تاپیک را پسندیده اند:"
|
1251 |
|
1252 |
+
#: ../inc/wp-ulike.php:72 ../inc/wp-ulike.php:305
|
1253 |
msgid "You need to login in order to like this post: "
|
1254 |
msgstr "برای امتیاز دهی به این مطلب، لطفا وارد شوید: "
|
1255 |
|
1256 |
+
#: ../inc/wp-ulike.php:72 ../inc/wp-ulike.php:145 ../inc/wp-ulike.php:228
|
1257 |
+
#: ../inc/wp-ulike.php:305
|
1258 |
msgid "click here"
|
1259 |
msgstr "برای ورود کلیک کنید"
|
1260 |
|
1261 |
+
#: ../inc/wp-ulike.php:145
|
1262 |
msgid "You need to login in order to like this comment: "
|
1263 |
msgstr "برای امتیاز دهی به این دیدگاه، لطفا وارد شوید: "
|
1264 |
|
1265 |
+
#: ../inc/wp-ulike.php:228
|
1266 |
msgid "You need to login in order to like this activity: "
|
1267 |
msgstr "برای امتیاز دهی به این فعالیت، لطفا وارد شوید: "
|
1268 |
|
1269 |
+
#: ../inc/wp-ulike.php:358
|
1270 |
msgid "Error: This Method Is Not Exist!"
|
1271 |
msgstr "خطا: این متد وجود خارجی ندارد!"
|
1272 |
|
1273 |
+
#: ../inc/wp-functions.php:296
|
1274 |
msgid "WP ULike Activity"
|
1275 |
msgstr "فعالیت های وردپرس یولایک"
|
1276 |
|
1277 |
+
#: ../inc/wp-functions.php:416
|
1278 |
msgid "Likes"
|
1279 |
msgstr "لایک ها"
|
1280 |
|
1281 |
+
#: ../inc/wp-functions.php:482
|
1282 |
msgid "You have a new like from"
|
1283 |
msgstr "شما یک لایک جدید دریافت کرده اید! توسط :"
|
1284 |
|
1285 |
+
#: ../inc/wp-functions.php:582
|
1286 |
msgid ""
|
1287 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1288 |
"WordPress, bbPress, BuddyPress & ..."
|
1291 |
"و... را لایک/آنلایک کنند (بعلاوه افرادی که نوشته آنها لایک/آنلایک شده)، می "
|
1292 |
"توانند به ترتیب امتیازات مثبت و منفی دریافت کنند."
|
1293 |
|
1294 |
+
#: ../inc/wp-functions.php:590
|
1295 |
msgid "Liking Content"
|
1296 |
msgstr "لایک نوشته"
|
1297 |
|
1298 |
+
#: ../inc/wp-functions.php:591
|
1299 |
msgid "Liked Content"
|
1300 |
msgstr "نوشته لایک شده"
|
1301 |
|
1302 |
+
#: ../inc/wp-functions.php:592
|
1303 |
msgid "Unliking Content"
|
1304 |
msgstr "لغو لایک نوشته"
|
1305 |
|
1306 |
+
#: ../inc/wp-functions.php:593
|
1307 |
msgid "Unliked Content"
|
1308 |
msgstr "نوشته لغو لایک شده"
|
1309 |
|
1310 |
+
#: ../inc/wp-functions.php:615 ../inc/wp-functions.php:649
|
1311 |
msgid "Recent Posts Liked"
|
1312 |
msgstr "تازه ترین مطالب لایک شده"
|
1313 |
|
1314 |
+
#: ../inc/wp-functions.php:620 ../inc/wp-functions.php:689
|
1315 |
msgid "Recent Comments Liked"
|
1316 |
msgstr "تازه ترین دیدگاه های لایک شده"
|
1317 |
|
1318 |
+
#: ../inc/wp-functions.php:665 ../inc/wp-functions.php:706
|
1319 |
msgid "This user has not made any likes."
|
1320 |
msgstr "این کاربر، هنوز هیچ موردی را نپسندیده است."
|
1321 |
|
readme.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
# [WP ULike](https://wordpress.org/plugins/wp-ulike/) #
|
2 |
|
3 |
-
###
|
4 |
|
5 |
WP ULike is a WordPress plugin that also supports BuddyPress, bbPress and a number of other plugins. It aims to be a comprehensive “Like” system for your site and enables site users to like a wide range of content types, including posts, forum topics and replies, comments and activity updates. It’s very simple to use and supports many options and full Statistics tools. Also, All are free :)
|
6 |
|
7 |
-
More information can be found at [WP ULike](http://
|
8 |
|
9 |
<a href="https://wordpress.org/plugins/wp-ulike/"><img src="http://preview.alimir.ir/wp-content/uploads/wp-ulike-created-banner.png"></a>
|
10 |
|
@@ -85,6 +85,123 @@ For detailed setup instructions, visit the official [Documentation](https://word
|
|
85 |
|
86 |
This will download the latest developer copy of WP ULike.
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
## Bugs ##
|
89 |
If you find an issue, let us know [here](https://github.com/Alimir/wp-ulike/issues?state=open)!
|
90 |
|
1 |
# [WP ULike](https://wordpress.org/plugins/wp-ulike/) #
|
2 |
|
3 |
+
### WP ULike GitHub Repository
|
4 |
|
5 |
WP ULike is a WordPress plugin that also supports BuddyPress, bbPress and a number of other plugins. It aims to be a comprehensive “Like” system for your site and enables site users to like a wide range of content types, including posts, forum topics and replies, comments and activity updates. It’s very simple to use and supports many options and full Statistics tools. Also, All are free :)
|
6 |
|
7 |
+
More information can be found at [WP ULike](http://wp-ulike.alimir.ir/).
|
8 |
|
9 |
<a href="https://wordpress.org/plugins/wp-ulike/"><img src="http://preview.alimir.ir/wp-content/uploads/wp-ulike-created-banner.png"></a>
|
10 |
|
85 |
|
86 |
This will download the latest developer copy of WP ULike.
|
87 |
|
88 |
+
|
89 |
+
## How To Use this plugin? ##
|
90 |
+
Just install the plugin and activate "automatic display" in plugin configuration panel. (WP ULike has four auto options for posts, comments, buddypress activities & bbPress Topics.)
|
91 |
+
Also you can use of the following function and shortcode for your posts:
|
92 |
+
* Function:
|
93 |
+
```php
|
94 |
+
if(function_exists('wp_ulike')) wp_ulike('get');
|
95 |
+
```
|
96 |
+
* Shortcode:
|
97 |
+
```
|
98 |
+
[wp_ulike]
|
99 |
+
```
|
100 |
+
|
101 |
+
## How To Change The Counter Format? ##
|
102 |
+
Just add a filter on `wp_ulike_format_number`. e.g. If you want to remove `+` character, you need to make use of the sample code below:
|
103 |
+
```php
|
104 |
+
add_filter('wp_ulike_format_number','wp_ulike_new_format_number',10,3);
|
105 |
+
function wp_ulike_new_format_number($value, $num, $plus){
|
106 |
+
if ($num >= 1000 && get_option('wp_ulike_format_number') == '1'):
|
107 |
+
$value = round($num/1000, 2) . 'K';
|
108 |
+
else:
|
109 |
+
$value = $num;
|
110 |
+
endif;
|
111 |
+
return $value;
|
112 |
+
}
|
113 |
+
```
|
114 |
+
|
115 |
+
## How To Change Schema Type? ##
|
116 |
+
The default schema type is `CreativeWork`, if you want to change it to `Article`, you need to make use of the `wp_ulike_posts_add_attr` filter as shown in the sample code below:
|
117 |
+
```php
|
118 |
+
add_filter('wp_ulike_posts_add_attr', 'wp_ulike_change_posts_microdata_itemtype', 10);
|
119 |
+
function wp_ulike_change_posts_microdata_itemtype() {
|
120 |
+
return 'itemscope itemtype="http://schema.org/Article"';
|
121 |
+
}
|
122 |
+
```
|
123 |
+
|
124 |
+
## How To Add Extra Microdata? ##
|
125 |
+
Make use of the `wp_ulike_extra_structured_data` filter as shown in the sample code below:
|
126 |
+
```php
|
127 |
+
add_filter('wp_ulike_extra_structured_data', 'wp_ulike_add_extra_structured_data', 10);
|
128 |
+
function wp_ulike_add_extra_structured_data(){
|
129 |
+
$post_meta = '<div style="display: none;" itemprop="publisher" itemscope itemtype="https://schema.org/Organization">';
|
130 |
+
$post_meta .= '<meta itemprop="name" content="WordPress" />';
|
131 |
+
$post_meta .= '<div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">';
|
132 |
+
$post_meta .= '<meta itemprop="url" content="https://s.w.org/about/images/logos/wordpress-logo-hoz-rgb.png" />';
|
133 |
+
$post_meta .= '</div>';
|
134 |
+
$post_meta .= '</div>';
|
135 |
+
return $post_meta;
|
136 |
+
}
|
137 |
+
```
|
138 |
+
|
139 |
+
## How To Remove All Schema Data Except Of aggregateRating? ##
|
140 |
+
Make use of the `wp_ulike_remove_microdata_post_meta` & `wp_ulike_posts_add_attr` filters as shown in the sample code below:
|
141 |
+
```php
|
142 |
+
add_filter('wp_ulike_remove_microdata_post_meta', '__return_true', 10);
|
143 |
+
add_filter('wp_ulike_posts_add_attr', '__return_null', 10);
|
144 |
+
```
|
145 |
+
|
146 |
+
## How To Remove "0" Count If There Are No Likes? ##
|
147 |
+
Make use of the `wp_ulike_count_box_template` filter as shown in the sample code below:
|
148 |
+
```php
|
149 |
+
add_filter('wp_ulike_count_box_template', 'wp_ulike_change_my_count_box_template', 10, 2);
|
150 |
+
function wp_ulike_change_my_count_box_template($string, $counter) {
|
151 |
+
$num = preg_replace("/[^0-9,.]/", "", $counter);
|
152 |
+
if($num == 0) return;
|
153 |
+
else return $string;
|
154 |
+
}
|
155 |
+
```
|
156 |
+
|
157 |
+
## How To Change The Login Alert Template? ##
|
158 |
+
Make use of the `wp_ulike_login_alert_template` filter as shown in the sample code below:
|
159 |
+
```php
|
160 |
+
add_filter('wp_ulike_login_alert_template', 'wp_ulike_change_login_alert_template', 10);
|
161 |
+
function wp_ulike_change_login_alert_template(){
|
162 |
+
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>Please login to your account! :)</p>';
|
163 |
+
}
|
164 |
+
```
|
165 |
+
|
166 |
+
## How To Get Post Likes Number? ##
|
167 |
+
Make use of the following function in WP Loop:
|
168 |
+
```php
|
169 |
+
if (function_exists('wp_ulike_get_post_likes')):
|
170 |
+
echo wp_ulike_get_post_likes(get_the_ID());
|
171 |
+
endif;
|
172 |
+
```
|
173 |
+
|
174 |
+
## How To Get Comment Likes Number? ##
|
175 |
+
Make use of the following function in your comments loop:
|
176 |
+
```php
|
177 |
+
if (function_exists('wp_ulike_get_comment_likes')):
|
178 |
+
echo wp_ulike_get_comment_likes(get_comment_ID());
|
179 |
+
endif;
|
180 |
+
```
|
181 |
+
|
182 |
+
## How To Sort Most Liked Posts? ##
|
183 |
+
Make use of the following query on a loop:
|
184 |
+
```php
|
185 |
+
$the_query = new WP_Query(array(
|
186 |
+
'post_status' => 'published',
|
187 |
+
'post_type' => 'post',
|
188 |
+
'orderby' => 'meta_value_num',
|
189 |
+
'meta_key' => '_liked',
|
190 |
+
'paged' => (get_query_var('paged')) ? get_query_var('paged') : 1
|
191 |
+
));
|
192 |
+
```
|
193 |
+
|
194 |
+
## How Can I Create Custom Template In Users Liked Box? ##
|
195 |
+
We have provided some variables in setting panel. You can use them in textarea and then save the new options.
|
196 |
+
Attention: `%START_WHILE%` And `%END_WHILE%` variables are very important and you should use them out of the frequent string. (Such as `<li></li>` tags sample in default template)
|
197 |
+
|
198 |
+
## Receive HTTP ERROR 500 on WP ULike > Statistics ##
|
199 |
+
Increasing Your WordPress Memory Limit in wp-config.php to fix this error. It is located in your WordPress site's root folder, and you will need to use an FTP client or file manager in your web hosting control panel.
|
200 |
+
Next, you need to paste this code in wp-config.php file just before the line that says `That's all, stop editing! Happy blogging.`
|
201 |
+
```php
|
202 |
+
define( 'WP_MEMORY_LIMIT', '256M' );
|
203 |
+
```
|
204 |
+
|
205 |
## Bugs ##
|
206 |
If you find an issue, let us know [here](https://github.com/Alimir/wp-ulike/issues?state=open)!
|
207 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://alimir.ir
|
|
4 |
Author: Ali Mirzaei
|
5 |
Tags: wp ulike, wordpress youlike plugin, like button, rating, vote, voting, most liked posts, wordpress like page, wordpress like post, wordpress vote page, wordpress vote post, wp like page, wp like post, wp like plugin, buddypress like system, buddypress votes, comment like system, voting button, wordpress, buddypress, statistics, stats likes, bbpress, bbPress like, WP-Translations, forums, community, credit, points, mycred, users, ultimate member
|
6 |
Requires at least: 3.5
|
7 |
-
Tested up to: 4.
|
8 |
-
Stable tag: 2.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -16,10 +16,9 @@ WP ULike enables you to add Ajax Like button into your WP and allowing your visi
|
|
16 |
WP ULike is a WordPress plugin that also supports BuddyPress, bbPress and a number of other plugins. It aims to be a comprehensive "Like" system for your site and enables site users to like a wide range of content types, including posts, forum topics and replies, comments and activity updates. It's very simple to use and supports many options and full Statistics tools. Also, All are free :)
|
17 |
|
18 |
= More Information =
|
19 |
-
* Visit Our
|
20 |
-
* See Online
|
21 |
-
* Fork Us In
|
22 |
-
* WP Ulike <a target="_blank" href="http://alimir.github.io/wp-ulike/">Github</a> Page.
|
23 |
|
24 |
= Features =
|
25 |
* Clean Design.
|
@@ -86,11 +85,13 @@ WP ULike has been translated into the following languages:
|
|
86 |
* Bosnian (Bosnia and Herzegovina)
|
87 |
* English (United Kingdom)
|
88 |
|
|
|
|
|
89 |
= About Author =
|
90 |
-
* My personal website:
|
91 |
-
* Follow me on
|
92 |
* Catch me on twitter as @alimirir
|
93 |
-
* And Connect me on
|
94 |
|
95 |
== Installation ==
|
96 |
|
@@ -122,17 +123,15 @@ WP ULike has been translated into the following languages:
|
|
122 |
== Frequently Asked Questions ==
|
123 |
|
124 |
= How To Use this plugin? =
|
125 |
-
Just install the plugin and activate
|
126 |
-
|
127 |
-
Also you can use this function and shortcode for the post likes:
|
128 |
-
|
129 |
* Function:
|
130 |
`if(function_exists('wp_ulike')) wp_ulike('get');`
|
131 |
* Shortcode:
|
132 |
`[wp_ulike]`
|
133 |
|
134 |
-
= How To Change
|
135 |
-
|
136 |
<code>
|
137 |
add_filter('wp_ulike_format_number','wp_ulike_new_format_number',10,3);
|
138 |
function wp_ulike_new_format_number($value, $num, $plus){
|
@@ -145,16 +144,69 @@ function wp_ulike_new_format_number($value, $num, $plus){
|
|
145 |
}
|
146 |
</code>
|
147 |
|
148 |
-
= How To
|
149 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
<code>
|
151 |
if (function_exists('wp_ulike_get_post_likes')):
|
152 |
echo wp_ulike_get_post_likes(get_the_ID());
|
153 |
endif;
|
154 |
</code>
|
155 |
|
156 |
-
= How To Get
|
157 |
-
*
|
158 |
<code>
|
159 |
if (function_exists('wp_ulike_get_comment_likes')):
|
160 |
echo wp_ulike_get_comment_likes(get_comment_ID());
|
@@ -162,14 +214,14 @@ endif;
|
|
162 |
</code>
|
163 |
|
164 |
= How To Sort Most Liked Posts? =
|
165 |
-
*
|
166 |
<code>
|
167 |
$the_query = new WP_Query(array(
|
168 |
-
'post_status' =>'published',
|
169 |
-
'post_type' =>'post',
|
170 |
-
'orderby' => 'meta_value_num',
|
171 |
-
'meta_key' => '_liked',
|
172 |
-
'paged' => (get_query_var('paged')) ? get_query_var('paged') : 1
|
173 |
));
|
174 |
</code>
|
175 |
|
@@ -178,14 +230,25 @@ $the_query = new WP_Query(array(
|
|
178 |
* Attention: `%START_WHILE%` And `%END_WHILE%` variables are very important and you should use them out of the frequent string. (Such as `<li></li>` tags sample in default template)
|
179 |
|
180 |
= Receive HTTP ERROR 500 on WP ULike > Statistics =
|
181 |
-
* Increasing Your WordPress Memory Limit in wp-config.php to fix this error. It is located in your WordPress site
|
182 |
-
* Next, you need to paste this code in wp-config.php file just before the line that says
|
183 |
<code>
|
184 |
define( 'WP_MEMORY_LIMIT', '256M' );
|
185 |
</code>
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
= 2.6 =
|
190 |
* Added: Most liked (posts,comments,activities,topics) widgets on statistics panel.
|
191 |
* Fixed: Several bugs in GeoIP Location system.
|
4 |
Author: Ali Mirzaei
|
5 |
Tags: wp ulike, wordpress youlike plugin, like button, rating, vote, voting, most liked posts, wordpress like page, wordpress like post, wordpress vote page, wordpress vote post, wp like page, wp like post, wp like plugin, buddypress like system, buddypress votes, comment like system, voting button, wordpress, buddypress, statistics, stats likes, bbpress, bbPress like, WP-Translations, forums, community, credit, points, mycred, users, ultimate member
|
6 |
Requires at least: 3.5
|
7 |
+
Tested up to: 4.8
|
8 |
+
Stable tag: 2.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
16 |
WP ULike is a WordPress plugin that also supports BuddyPress, bbPress and a number of other plugins. It aims to be a comprehensive "Like" system for your site and enables site users to like a wide range of content types, including posts, forum topics and replies, comments and activity updates. It's very simple to use and supports many options and full Statistics tools. Also, All are free :)
|
17 |
|
18 |
= More Information =
|
19 |
+
* Visit Our [Home Page](http://wp-ulike.alimir.ir/).
|
20 |
+
* See Online [Demo](http://preview.alimir.ir/wp-ulike-plugin).
|
21 |
+
* Fork Us In [Github](https://github.com/Alimir/wp-ulike).
|
|
|
22 |
|
23 |
= Features =
|
24 |
* Clean Design.
|
85 |
* Bosnian (Bosnia and Herzegovina)
|
86 |
* English (United Kingdom)
|
87 |
|
88 |
+
Want to add a new language to WP ULike? Well! You can contribute via [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/wp-ulike).
|
89 |
+
|
90 |
= About Author =
|
91 |
+
* My personal website: [Ali Mirzaei](http://about.alimir.ir)
|
92 |
+
* Follow me on [Facebook](https://www.facebook.com/alimir1993)
|
93 |
* Catch me on twitter as @alimirir
|
94 |
+
* And Connect me on [Linkedin](https://ir.linkedin.com/in/alimirir)
|
95 |
|
96 |
== Installation ==
|
97 |
|
123 |
== Frequently Asked Questions ==
|
124 |
|
125 |
= How To Use this plugin? =
|
126 |
+
Just install the plugin and activate "automatic display" in plugin configuration panel. (WP ULike has four auto options for posts, comments, buddypress activities & bbPress Topics.)
|
127 |
+
Also you can use of the following function and shortcode for your posts:
|
|
|
|
|
128 |
* Function:
|
129 |
`if(function_exists('wp_ulike')) wp_ulike('get');`
|
130 |
* Shortcode:
|
131 |
`[wp_ulike]`
|
132 |
|
133 |
+
= How To Change The Counter Format? =
|
134 |
+
Just add a filter on `wp_ulike_format_number`. e.g. If you want to remove `+` character, you need to make use of the sample code below:
|
135 |
<code>
|
136 |
add_filter('wp_ulike_format_number','wp_ulike_new_format_number',10,3);
|
137 |
function wp_ulike_new_format_number($value, $num, $plus){
|
144 |
}
|
145 |
</code>
|
146 |
|
147 |
+
= How To Change Schema Type? =
|
148 |
+
* The default schema type is 'CreativeWork', if you want to change it to 'Article', you need to make use of the `wp_ulike_posts_add_attr` filter as shown in the sample code below:
|
149 |
+
<code>
|
150 |
+
add_filter('wp_ulike_posts_add_attr', 'wp_ulike_change_posts_microdata_itemtype', 10);
|
151 |
+
function wp_ulike_change_posts_microdata_itemtype() {
|
152 |
+
return 'itemscope itemtype="http://schema.org/Article"';
|
153 |
+
}
|
154 |
+
</code>
|
155 |
+
|
156 |
+
= How To Add Extra Microdata? =
|
157 |
+
* Make use of the `wp_ulike_extra_structured_data` filter as shown in the sample code below:
|
158 |
+
<code>
|
159 |
+
add_filter('wp_ulike_extra_structured_data', 'wp_ulike_add_extra_structured_data', 10);
|
160 |
+
function wp_ulike_add_extra_structured_data(){
|
161 |
+
$post_meta = '<div style="display: none;" itemprop="publisher" itemscope itemtype="https://schema.org/Organization">';
|
162 |
+
$post_meta .= '<meta itemprop="name" content="WordPress" />';
|
163 |
+
$post_meta .= '<div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">';
|
164 |
+
$post_meta .= '<meta itemprop="url" content="https://s.w.org/about/images/logos/wordpress-logo-hoz-rgb.png" />';
|
165 |
+
$post_meta .= '</div>';
|
166 |
+
$post_meta .= '</div>';
|
167 |
+
return $post_meta;
|
168 |
+
}
|
169 |
+
</code>
|
170 |
+
|
171 |
+
= How To Remove All Schema Data Except Of aggregateRating? =
|
172 |
+
* Make use of the `wp_ulike_remove_microdata_post_meta` & 'wp_ulike_posts_add_attr' filters as shown in the sample code below:
|
173 |
+
<code>
|
174 |
+
add_filter('wp_ulike_remove_microdata_post_meta', '__return_true', 10);
|
175 |
+
add_filter('wp_ulike_posts_add_attr', '__return_null', 10);
|
176 |
+
</code>
|
177 |
+
|
178 |
+
= How To Remove "0" Count If There Are No Likes? =
|
179 |
+
* Make use of the `wp_ulike_count_box_template` filter as shown in the sample code below:
|
180 |
+
<code>
|
181 |
+
<?php
|
182 |
+
add_filter('wp_ulike_count_box_template', 'wp_ulike_change_my_count_box_template', 10, 2);
|
183 |
+
function wp_ulike_change_my_count_box_template($string, $counter) {
|
184 |
+
$num = preg_replace("/[^0-9,.]/", "", $counter);
|
185 |
+
if($num == 0) return;
|
186 |
+
else return $string;
|
187 |
+
}
|
188 |
+
?>
|
189 |
+
</code>
|
190 |
+
|
191 |
+
= How To Change The Login Alert Template? =
|
192 |
+
* Make use of the `wp_ulike_login_alert_template` filter as shown in the sample code below:
|
193 |
+
<code>
|
194 |
+
add_filter('wp_ulike_login_alert_template', 'wp_ulike_change_login_alert_template', 10);
|
195 |
+
function wp_ulike_change_login_alert_template(){
|
196 |
+
return '<p class="alert alert-info fade in" role="alert"><button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>Please login to your account! :)</p>';
|
197 |
+
}
|
198 |
+
</code>
|
199 |
+
|
200 |
+
= How To Get Post Likes Number? =
|
201 |
+
* Make use of the following function in WP Loop:
|
202 |
<code>
|
203 |
if (function_exists('wp_ulike_get_post_likes')):
|
204 |
echo wp_ulike_get_post_likes(get_the_ID());
|
205 |
endif;
|
206 |
</code>
|
207 |
|
208 |
+
= How To Get Comment Likes Number? =
|
209 |
+
* Make use of the following function in your comments loop:
|
210 |
<code>
|
211 |
if (function_exists('wp_ulike_get_comment_likes')):
|
212 |
echo wp_ulike_get_comment_likes(get_comment_ID());
|
214 |
</code>
|
215 |
|
216 |
= How To Sort Most Liked Posts? =
|
217 |
+
* Make use of the following query on a loop:
|
218 |
<code>
|
219 |
$the_query = new WP_Query(array(
|
220 |
+
'post_status' => 'published',
|
221 |
+
'post_type' => 'post',
|
222 |
+
'orderby' => 'meta_value_num',
|
223 |
+
'meta_key' => '_liked',
|
224 |
+
'paged' => (get_query_var('paged')) ? get_query_var('paged') : 1
|
225 |
));
|
226 |
</code>
|
227 |
|
230 |
* Attention: `%START_WHILE%` And `%END_WHILE%` variables are very important and you should use them out of the frequent string. (Such as `<li></li>` tags sample in default template)
|
231 |
|
232 |
= Receive HTTP ERROR 500 on WP ULike > Statistics =
|
233 |
+
* Increasing Your WordPress Memory Limit in wp-config.php to fix this error. It is located in your WordPress site's root folder, and you will need to use an FTP client or file manager in your web hosting control panel.
|
234 |
+
* Next, you need to paste this code in wp-config.php file just before the line that says "That's all, stop editing! Happy blogging."
|
235 |
<code>
|
236 |
define( 'WP_MEMORY_LIMIT', '256M' );
|
237 |
</code>
|
238 |
|
239 |
== Changelog ==
|
240 |
|
241 |
+
= 2.7 =
|
242 |
+
* Added: Flexible google rich snippets for posts. (Add rich snippet for likes in form of schema.org)
|
243 |
+
* Added: 'wp_ulike_count_box_template' filter to customize count box template.
|
244 |
+
* Added: 'wp_ulike_login_alert_template' filter to customize login alert message.
|
245 |
+
* Added: 'wp_ulike_bp_notifications_template' filter to customize buddypress notification message.
|
246 |
+
* Added: New admin font icons for dashboard area.
|
247 |
+
* Removed: svg-source.php file.
|
248 |
+
* Updated: WP ULike URI.
|
249 |
+
* Updated: Some elements of "About WP ULike" area.
|
250 |
+
* Updated: Persian language file.
|
251 |
+
|
252 |
= 2.6 =
|
253 |
* Added: Most liked (posts,comments,activities,topics) widgets on statistics panel.
|
254 |
* Fixed: Several bugs in GeoIP Location system.
|
wp-ulike.php
CHANGED
@@ -1,18 +1,34 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name:WP ULike
|
4 |
-
Plugin URI: http://
|
5 |
Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
|
6 |
-
Version: 2.
|
7 |
Author: Ali Mirzaei
|
8 |
Author URI: http://about.alimir.ir
|
9 |
Text Domain: wp-ulike
|
10 |
Domain Path: /lang/
|
11 |
License: GPL2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
*/
|
13 |
|
14 |
//Do not change this value
|
15 |
-
define( '
|
|
|
16 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
17 |
define( 'WP_ULIKE_DB_VERSION' , '1.3' );
|
18 |
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: WP ULike
|
4 |
+
Plugin URI: http://wp-ulike.alimir.ir/
|
5 |
Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
|
6 |
+
Version: 2.7
|
7 |
Author: Ali Mirzaei
|
8 |
Author URI: http://about.alimir.ir
|
9 |
Text Domain: wp-ulike
|
10 |
Domain Path: /lang/
|
11 |
License: GPL2
|
12 |
+
|
13 |
+
/------------------------------------------\
|
14 |
+
_ __ _ _____ _ _ _ _
|
15 |
+
| | / \ | | ___ \ | |(_)| | / /
|
16 |
+
| | / /\ \ | | |_/ / _| || || |/ / ___
|
17 |
+
| | / / \ \ | | __/ | | | || || | / _ \
|
18 |
+
| |/ / \ \| | | | |_| | || || |\ \ __/
|
19 |
+
\___/ \__/\_| \__,_|_||_||_| \_\___|
|
20 |
+
|
21 |
+
\--> Alimir, 2017 <--/
|
22 |
+
|
23 |
+
Thanks for using WP ULike plugin!
|
24 |
+
|
25 |
+
\------------------------------------------/
|
26 |
+
|
27 |
*/
|
28 |
|
29 |
//Do not change this value
|
30 |
+
define( 'WP_ULIKE_PLUGIN_URI' , 'http://wp-ulike.alimir.ir/' );
|
31 |
+
define( 'WP_ULIKE_VERSION' , '2.7' );
|
32 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
33 |
define( 'WP_ULIKE_DB_VERSION' , '1.3' );
|
34 |
|