Version Description
- Improved: bbPress duplicate issue on the lead topic.
- Improved: Compatibility with WordPress 6.0 applied.
- Improved: Add uninstall.php to clear out plugin data.
- Fixed: Minor bug fixes.
Download this release
Release Info
Developer | alimir |
Plugin | WP ULike |
Version | 4.6.3 |
Comparing to | |
See all releases |
Code changes from version 4.6.2 to 4.6.3
- admin/assets/js/plugins.js +1 -1
- assets/js/wp-ulike.js +1 -1
- assets/js/wp-ulike.min.js +1 -1
- includes/classes/class-wp-ulike-cta-process.php +2 -2
- includes/classes/class-wp-ulike-cta-template.php +23 -16
- includes/classes/class-wp-ulike-entities-process.php +13 -7
- includes/functions/utilities.php +1 -1
- includes/hooks/third-party.php +12 -2
- includes/plugin.php +1 -1
- languages/wp-ulike-ar.po +49 -49
- languages/wp-ulike-de.po +49 -49
- languages/wp-ulike-es-co.po +49 -49
- languages/wp-ulike-fa_IR.po +49 -49
- languages/wp-ulike-fr.po +49 -49
- languages/wp-ulike-ja.po +49 -49
- languages/wp-ulike-nl.po +49 -49
- languages/wp-ulike-ru.po +49 -49
- languages/wp-ulike-sv.po +49 -49
- languages/wp-ulike-zh-cn.po +49 -49
- languages/wp-ulike.pot +50 -50
- readme.txt +8 -2
- uninstall.php +155 -4
- wp-ulike.php +3 -2
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! WP ULike - v4.6.
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
1 |
+
/*! WP ULike - v4.6.3
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
assets/js/wp-ulike.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! WP ULike - v4.6.
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
1 |
+
/*! WP ULike - v4.6.3
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
assets/js/wp-ulike.min.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! WP ULike - v4.6.
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
1 |
+
/*! WP ULike - v4.6.3
|
2 |
* https://wpulike.com
|
3 |
* TechnoWich 2022;
|
4 |
*/
|
includes/classes/class-wp-ulike-cta-process.php
CHANGED
@@ -76,9 +76,9 @@ if ( ! class_exists( 'wp_ulike_cta_process' ) ) {
|
|
76 |
$logging_method = wp_ulike_setting_repo::getMethod( $this->parsedArgs['item_type'] );
|
77 |
// Set current status
|
78 |
if( in_array( $logging_method, array('do_not_log','by_cookie') ) ){
|
79 |
-
$this->setCurrentStatus( $this->parsedArgs
|
80 |
} else {
|
81 |
-
$this->setCurrentStatus( $this->parsedArgs
|
82 |
}
|
83 |
|
84 |
// Check permission
|
76 |
$logging_method = wp_ulike_setting_repo::getMethod( $this->parsedArgs['item_type'] );
|
77 |
// Set current status
|
78 |
if( in_array( $logging_method, array('do_not_log','by_cookie') ) ){
|
79 |
+
$this->setCurrentStatus( $this->parsedArgs, true );
|
80 |
} else {
|
81 |
+
$this->setCurrentStatus( $this->parsedArgs );
|
82 |
}
|
83 |
|
84 |
// Check permission
|
includes/classes/class-wp-ulike-cta-template.php
CHANGED
@@ -48,6 +48,8 @@ if ( ! class_exists( 'wp_ulike_cta_template' ) ) {
|
|
48 |
* @return integer
|
49 |
*/
|
50 |
public function get_method_id(){
|
|
|
|
|
51 |
if( ! $this->hasPermission( array(
|
52 |
'item_id' => $this->args['id'],
|
53 |
'type' => $this->args['slug'],
|
@@ -57,25 +59,30 @@ if ( ! class_exists( 'wp_ulike_cta_template' ) ) {
|
|
57 |
), $this->settings ) ){
|
58 |
// If has prev status
|
59 |
if( $this->getPrevStatus() ){
|
60 |
-
|
61 |
}
|
62 |
-
// Else return zero
|
63 |
-
return 0;
|
64 |
-
}
|
65 |
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
}
|
|
|
|
|
79 |
}
|
80 |
|
81 |
/**
|
48 |
* @return integer
|
49 |
*/
|
50 |
public function get_method_id(){
|
51 |
+
$method_id = 0;
|
52 |
+
|
53 |
if( ! $this->hasPermission( array(
|
54 |
'item_id' => $this->args['id'],
|
55 |
'type' => $this->args['slug'],
|
59 |
), $this->settings ) ){
|
60 |
// If has prev status
|
61 |
if( $this->getPrevStatus() ){
|
62 |
+
$method_id = substr( $this->getPrevStatus(), 0, 2 ) !== "un" ? 4 : 5;
|
63 |
}
|
|
|
|
|
|
|
64 |
|
65 |
+
$method_id = 0;
|
66 |
+
} else {
|
67 |
+
switch( wp_ulike_setting_repo::getMethod( $this->args['slug'] ) ){
|
68 |
+
case 'do_not_log':
|
69 |
+
$method_id = $this->getPrevStatus() ? 4 : 1;
|
70 |
+
break;
|
71 |
+
case 'by_cookie':
|
72 |
+
$method_id = 1;
|
73 |
+
break;
|
74 |
+
|
75 |
+
default:
|
76 |
+
if( ! $this->getPrevStatus() ){
|
77 |
+
$method_id = 1;
|
78 |
+
} else {
|
79 |
+
$method_id = substr( $this->getPrevStatus(), 0, 2 ) !== "un" ? 2 : 3;
|
80 |
+
}
|
81 |
+
break;
|
82 |
+
}
|
83 |
}
|
84 |
+
|
85 |
+
return apply_filters( 'wp_ulike_method_id', $method_id, $this );
|
86 |
}
|
87 |
|
88 |
/**
|
includes/classes/class-wp-ulike-entities-process.php
CHANGED
@@ -154,17 +154,19 @@ if ( ! class_exists( 'wp_ulike_entities_process' ) ) {
|
|
154 |
* @param boolean $keep_status
|
155 |
* @return void
|
156 |
*/
|
157 |
-
public function setCurrentStatus( $
|
158 |
if( $force_status ){
|
159 |
$this->currentStatus = $force_status;
|
160 |
return;
|
161 |
}
|
162 |
|
163 |
-
if( $
|
164 |
$this->currentStatus = $this->prevStatus !== 'dislike' || $keep_status ? 'dislike' : 'undislike';
|
165 |
} else {
|
166 |
$this->currentStatus = $this->prevStatus !== 'like' || $keep_status ? 'like' : 'unlike';
|
167 |
}
|
|
|
|
|
168 |
}
|
169 |
|
170 |
/**
|
@@ -178,15 +180,19 @@ if ( ! class_exists( 'wp_ulike_entities_process' ) ) {
|
|
178 |
// if( wp_ulike_is_cache_exist() ){
|
179 |
// wp_cache_delete( $this->currentUser, 'wp_ulike_user_meta' );
|
180 |
// }
|
181 |
-
|
182 |
-
$
|
183 |
"item_id" => $item_id,
|
184 |
"item_type" => $this->itemType,
|
185 |
"current_user" => $this->currentUser,
|
186 |
"settings" => $this->typeSettings,
|
187 |
"is_user_logged_in" => $this->isUserLoggedIn
|
188 |
-
)
|
189 |
-
|
|
|
|
|
|
|
|
|
190 |
}
|
191 |
|
192 |
/**
|
@@ -276,7 +282,7 @@ if ( ! class_exists( 'wp_ulike_entities_process' ) ) {
|
|
276 |
}
|
277 |
}
|
278 |
}
|
279 |
-
wp_ulike_setcookie( $cookie_key, json_encode( $cookie_data ), 2147483647 );
|
280 |
}
|
281 |
}
|
282 |
|
154 |
* @param boolean $keep_status
|
155 |
* @return void
|
156 |
*/
|
157 |
+
public function setCurrentStatus( $args, $keep_status = false, $force_status = false ){
|
158 |
if( $force_status ){
|
159 |
$this->currentStatus = $force_status;
|
160 |
return;
|
161 |
}
|
162 |
|
163 |
+
if( $args['item_factor'] === 'down' ){
|
164 |
$this->currentStatus = $this->prevStatus !== 'dislike' || $keep_status ? 'dislike' : 'undislike';
|
165 |
} else {
|
166 |
$this->currentStatus = $this->prevStatus !== 'like' || $keep_status ? 'like' : 'unlike';
|
167 |
}
|
168 |
+
|
169 |
+
$this->currentStatus = apply_filters( 'wp_ulike_user_current_status', $this->currentStatus, $this->prevStatus, $args );
|
170 |
}
|
171 |
|
172 |
/**
|
180 |
// if( wp_ulike_is_cache_exist() ){
|
181 |
// wp_cache_delete( $this->currentUser, 'wp_ulike_user_meta' );
|
182 |
// }
|
183 |
+
|
184 |
+
$args = array(
|
185 |
"item_id" => $item_id,
|
186 |
"item_type" => $this->itemType,
|
187 |
"current_user" => $this->currentUser,
|
188 |
"settings" => $this->typeSettings,
|
189 |
"is_user_logged_in" => $this->isUserLoggedIn
|
190 |
+
);
|
191 |
+
|
192 |
+
// get user log array
|
193 |
+
$get_user_history = wp_ulike_get_user_item_history( $args );
|
194 |
+
// set prev status
|
195 |
+
$this->prevStatus = apply_filters( 'wp_ulike_user_prev_status', ! empty( $get_user_history[$item_id] ) ? $get_user_history[$item_id] : false, $args );
|
196 |
}
|
197 |
|
198 |
/**
|
282 |
}
|
283 |
}
|
284 |
}
|
285 |
+
wp_ulike_setcookie( $cookie_key, json_encode( $cookie_data ), time() + 2147483647 );
|
286 |
}
|
287 |
}
|
288 |
|
includes/functions/utilities.php
CHANGED
@@ -370,7 +370,7 @@ if( ! function_exists('wp_ulike_setcookie') ){
|
|
370 |
return;
|
371 |
}
|
372 |
if ( ! headers_sent() ) {
|
373 |
-
setcookie( $name, $value, $expire,
|
374 |
} elseif ( defined('WP_DEBUG') && WP_DEBUG ) {
|
375 |
headers_sent( $file, $line );
|
376 |
trigger_error( "{$name} cookie cannot be set - headers already sent by {$file} on line {$line}", E_USER_NOTICE ); // @codingStandardsIgnoreLine
|
370 |
return;
|
371 |
}
|
372 |
if ( ! headers_sent() ) {
|
373 |
+
setcookie( $name, $value, $expire, '/', COOKIE_DOMAIN, $secure, apply_filters( 'wp_ulike_cookie_httponly', $httponly, $name, $value, $expire, $secure ) );
|
374 |
} elseif ( defined('WP_DEBUG') && WP_DEBUG ) {
|
375 |
headers_sent( $file, $line );
|
376 |
trigger_error( "{$name} cookie cannot be set - headers already sent by {$file} on line {$line}", E_USER_NOTICE ); // @codingStandardsIgnoreLine
|
includes/hooks/third-party.php
CHANGED
@@ -523,18 +523,28 @@ if( ! function_exists( 'wp_ulike_put_bbpress' ) ){
|
|
523 |
|
524 |
switch ( $action ) {
|
525 |
case 'bbp_theme_before_reply_content':
|
526 |
-
case 'bbp_theme_before_topic_content':
|
527 |
if( $position === 'top' ){
|
528 |
echo wp_ulike_bbpress('put');
|
529 |
}
|
530 |
return;
|
531 |
|
532 |
case 'bbp_theme_after_reply_content':
|
533 |
-
case 'bbp_theme_after_topic_content':
|
534 |
if( $position === 'bottom' ){
|
535 |
echo wp_ulike_bbpress('put');
|
536 |
}
|
537 |
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
}
|
539 |
}
|
540 |
}
|
523 |
|
524 |
switch ( $action ) {
|
525 |
case 'bbp_theme_before_reply_content':
|
|
|
526 |
if( $position === 'top' ){
|
527 |
echo wp_ulike_bbpress('put');
|
528 |
}
|
529 |
return;
|
530 |
|
531 |
case 'bbp_theme_after_reply_content':
|
|
|
532 |
if( $position === 'bottom' ){
|
533 |
echo wp_ulike_bbpress('put');
|
534 |
}
|
535 |
return;
|
536 |
+
|
537 |
+
case 'bbp_theme_before_topic_content':
|
538 |
+
if( $position === 'top' && ! ( bbp_is_single_topic() && bbp_show_lead_topic() ) ){
|
539 |
+
echo wp_ulike_bbpress('put');
|
540 |
+
}
|
541 |
+
return;
|
542 |
+
|
543 |
+
case 'bbp_theme_after_topic_content':
|
544 |
+
if( $position === 'bottom' && ! ( bbp_is_single_topic() && bbp_show_lead_topic() ) ){
|
545 |
+
echo wp_ulike_bbpress('put');
|
546 |
+
}
|
547 |
+
return;
|
548 |
}
|
549 |
}
|
550 |
}
|
includes/plugin.php
CHANGED
@@ -103,7 +103,7 @@ class WpUlikeInit {
|
|
103 |
* @return void
|
104 |
*/
|
105 |
private function define_constants(){
|
106 |
-
// a custom directory in uploads directory for storing custom files. Default uploads/{
|
107 |
$uploads = wp_get_upload_dir();
|
108 |
define( 'WP_ULIKE_CUSTOM_DIR' , $uploads['basedir'] . '/' . WP_ULIKE_SLUG );
|
109 |
}
|
103 |
* @return void
|
104 |
*/
|
105 |
private function define_constants(){
|
106 |
+
// a custom directory in uploads directory for storing custom files. Default uploads/{WP_ULIKE_SLUG}
|
107 |
$uploads = wp_get_upload_dir();
|
108 |
define( 'WP_ULIKE_CUSTOM_DIR' , $uploads['basedir'] . '/' . WP_ULIKE_SLUG );
|
109 |
}
|
languages/wp-ulike-ar.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2017-01-20 23:26:42+0000\n"
|
9 |
"Language: ar\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -1028,10 +1028,10 @@ msgid "Start the loop of logs"
|
|
1028 |
msgstr ""
|
1029 |
|
1030 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1031 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1032 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1033 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1034 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1035 |
msgid "required"
|
1036 |
msgstr ""
|
1037 |
|
@@ -1776,51 +1776,51 @@ msgstr "لون الخط"
|
|
1776 |
msgid "Points for Liking content"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1780 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1781 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1782 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1783 |
msgid "Points"
|
1784 |
msgstr "نقاط"
|
1785 |
|
1786 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1787 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1788 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1789 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1790 |
msgid "Use zero to disable."
|
1791 |
msgstr "اكتب الصفر لتعطيلها."
|
1792 |
|
1793 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1794 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1795 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1796 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1797 |
msgid "Limit"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1801 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1802 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1803 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1804 |
msgid "Log template"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1808 |
msgid "Points for Author Who Get Liked"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1812 |
msgid "Points for unliking content"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1816 |
msgid "Points for Author Who Get Unliked"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1820 |
msgid "Limits"
|
1821 |
msgstr "حدود"
|
1822 |
|
1823 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1824 |
msgid ""
|
1825 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1826 |
msgstr "%plural% سيتم منحها حتى عند إعجاب او عدم إعجاب مؤلف المنشور."
|
@@ -1853,94 +1853,94 @@ msgstr "قلب متحرك"
|
|
1853 |
msgid "Error receiving input parameters"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/hooks/third-party.php:
|
1857 |
msgid "WP ULike Activity"
|
1858 |
msgstr "نشاطات وردبرس یولایک"
|
1859 |
|
1860 |
-
#: includes/hooks/third-party.php:
|
1861 |
msgid "Votes"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/hooks/third-party.php:
|
1865 |
msgid "posts"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: includes/hooks/third-party.php:
|
1869 |
msgid "comments"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/hooks/third-party.php:
|
1873 |
msgid "activities"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: includes/hooks/third-party.php:
|
1877 |
msgid "topics"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: includes/hooks/third-party.php:
|
1881 |
msgid "replies"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: includes/hooks/third-party.php:
|
1885 |
msgid "You have %d new %s likes"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: includes/hooks/third-party.php:
|
1889 |
msgid "%s liked one of your %s"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: includes/hooks/third-party.php:
|
1893 |
msgid "New activity liked"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: includes/hooks/third-party.php:
|
1897 |
msgid "New comment liked"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: includes/hooks/third-party.php:
|
1901 |
msgid "New post liked"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: includes/hooks/third-party.php:
|
1905 |
msgid "New topic liked"
|
1906 |
msgstr "موضوع جديد تم الإعجاب به"
|
1907 |
|
1908 |
-
#: includes/hooks/third-party.php:
|
1909 |
msgid "Points for liking content"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: includes/hooks/third-party.php:
|
1913 |
msgid ""
|
1914 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1915 |
"WordPress, bbPress, BuddyPress & ..."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: includes/hooks/third-party.php:
|
1919 |
msgid "Liking Content"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: includes/hooks/third-party.php:
|
1923 |
msgid "Liked Content"
|
1924 |
msgstr "المحتوى الحاصل على إعجاب"
|
1925 |
|
1926 |
-
#: includes/hooks/third-party.php:
|
1927 |
msgid "Unliking Content"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: includes/hooks/third-party.php:
|
1931 |
msgid "Unliked Content"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: includes/hooks/third-party.php:
|
1935 |
msgid "Recent Posts Liked"
|
1936 |
msgstr "مشاركات تم الإعجاب بها مؤخراً"
|
1937 |
|
1938 |
-
#: includes/hooks/third-party.php:
|
1939 |
msgid "Recent Comments Liked"
|
1940 |
msgstr "تعليقات تم الإعجاب بها مؤخراً"
|
1941 |
|
1942 |
-
#: includes/hooks/third-party.php:
|
1943 |
-
#: includes/hooks/third-party.php:
|
1944 |
msgid "This user has not made any likes."
|
1945 |
msgstr ""
|
1946 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2017-01-20 23:26:42+0000\n"
|
9 |
"Language: ar\n"
|
10 |
"MIME-Version: 1.0\n"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1031 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
1032 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
1033 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
1034 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
1035 |
msgid "required"
|
1036 |
msgstr ""
|
1037 |
|
1776 |
msgid "Points for Liking content"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1780 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1781 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1782 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1783 |
msgid "Points"
|
1784 |
msgstr "نقاط"
|
1785 |
|
1786 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1787 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1788 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1789 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1790 |
msgid "Use zero to disable."
|
1791 |
msgstr "اكتب الصفر لتعطيلها."
|
1792 |
|
1793 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1794 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1795 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1796 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1797 |
msgid "Limit"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1801 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1802 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1803 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1804 |
msgid "Log template"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1808 |
msgid "Points for Author Who Get Liked"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1812 |
msgid "Points for unliking content"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1816 |
msgid "Points for Author Who Get Unliked"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1820 |
msgid "Limits"
|
1821 |
msgstr "حدود"
|
1822 |
|
1823 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1824 |
msgid ""
|
1825 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1826 |
msgstr "%plural% سيتم منحها حتى عند إعجاب او عدم إعجاب مؤلف المنشور."
|
1853 |
msgid "Error receiving input parameters"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/hooks/third-party.php:134
|
1857 |
msgid "WP ULike Activity"
|
1858 |
msgstr "نشاطات وردبرس یولایک"
|
1859 |
|
1860 |
+
#: includes/hooks/third-party.php:149
|
1861 |
msgid "Votes"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/hooks/third-party.php:358
|
1865 |
msgid "posts"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: includes/hooks/third-party.php:365
|
1869 |
msgid "comments"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: includes/hooks/third-party.php:371
|
1873 |
msgid "activities"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: includes/hooks/third-party.php:379
|
1877 |
msgid "topics"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/hooks/third-party.php:382
|
1881 |
msgid "replies"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/hooks/third-party.php:394
|
1885 |
msgid "You have %d new %s likes"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/hooks/third-party.php:398
|
1889 |
msgid "%s liked one of your %s"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: includes/hooks/third-party.php:429
|
1893 |
msgid "New activity liked"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/hooks/third-party.php:434
|
1897 |
msgid "New comment liked"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: includes/hooks/third-party.php:439
|
1901 |
msgid "New post liked"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: includes/hooks/third-party.php:444
|
1905 |
msgid "New topic liked"
|
1906 |
msgstr "موضوع جديد تم الإعجاب به"
|
1907 |
|
1908 |
+
#: includes/hooks/third-party.php:862
|
1909 |
msgid "Points for liking content"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: includes/hooks/third-party.php:863
|
1913 |
msgid ""
|
1914 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1915 |
"WordPress, bbPress, BuddyPress & ..."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: includes/hooks/third-party.php:879
|
1919 |
msgid "Liking Content"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: includes/hooks/third-party.php:880
|
1923 |
msgid "Liked Content"
|
1924 |
msgstr "المحتوى الحاصل على إعجاب"
|
1925 |
|
1926 |
+
#: includes/hooks/third-party.php:881
|
1927 |
msgid "Unliking Content"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: includes/hooks/third-party.php:882
|
1931 |
msgid "Unliked Content"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/hooks/third-party.php:900
|
1935 |
msgid "Recent Posts Liked"
|
1936 |
msgstr "مشاركات تم الإعجاب بها مؤخراً"
|
1937 |
|
1938 |
+
#: includes/hooks/third-party.php:905
|
1939 |
msgid "Recent Comments Liked"
|
1940 |
msgstr "تعليقات تم الإعجاب بها مؤخراً"
|
1941 |
|
1942 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1943 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1944 |
msgid "This user has not made any likes."
|
1945 |
msgstr ""
|
1946 |
|
languages/wp-ulike-de.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2019-06-19 16:23:52+0000\n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -978,10 +978,10 @@ msgid "Start the loop of logs"
|
|
978 |
msgstr ""
|
979 |
|
980 |
#: admin/classes/class-wp-ulike-settings.php:59
|
981 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
982 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
983 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
984 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
985 |
msgid "required"
|
986 |
msgstr ""
|
987 |
|
@@ -1703,51 +1703,51 @@ msgstr ""
|
|
1703 |
msgid "Points for Liking content"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1707 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1708 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1709 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1710 |
msgid "Points"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1714 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1715 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1716 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1717 |
msgid "Use zero to disable."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1721 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1722 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1723 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1724 |
msgid "Limit"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1728 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1729 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1730 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1731 |
msgid "Log template"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1735 |
msgid "Points for Author Who Get Liked"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1739 |
msgid "Points for unliking content"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1743 |
msgid "Points for Author Who Get Unliked"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1747 |
msgid "Limits"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1751 |
msgid ""
|
1752 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1753 |
msgstr ""
|
@@ -1780,94 +1780,94 @@ msgstr ""
|
|
1780 |
msgid "Error receiving input parameters"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: includes/hooks/third-party.php:
|
1784 |
msgid "WP ULike Activity"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: includes/hooks/third-party.php:
|
1788 |
msgid "Votes"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: includes/hooks/third-party.php:
|
1792 |
msgid "posts"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: includes/hooks/third-party.php:
|
1796 |
msgid "comments"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: includes/hooks/third-party.php:
|
1800 |
msgid "activities"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: includes/hooks/third-party.php:
|
1804 |
msgid "topics"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: includes/hooks/third-party.php:
|
1808 |
msgid "replies"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: includes/hooks/third-party.php:
|
1812 |
msgid "You have %d new %s likes"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: includes/hooks/third-party.php:
|
1816 |
msgid "%s liked one of your %s"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: includes/hooks/third-party.php:
|
1820 |
msgid "New activity liked"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: includes/hooks/third-party.php:
|
1824 |
msgid "New comment liked"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: includes/hooks/third-party.php:
|
1828 |
msgid "New post liked"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: includes/hooks/third-party.php:
|
1832 |
msgid "New topic liked"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: includes/hooks/third-party.php:
|
1836 |
msgid "Points for liking content"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: includes/hooks/third-party.php:
|
1840 |
msgid ""
|
1841 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1842 |
"WordPress, bbPress, BuddyPress & ..."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: includes/hooks/third-party.php:
|
1846 |
msgid "Liking Content"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: includes/hooks/third-party.php:
|
1850 |
msgid "Liked Content"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: includes/hooks/third-party.php:
|
1854 |
msgid "Unliking Content"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: includes/hooks/third-party.php:
|
1858 |
msgid "Unliked Content"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: includes/hooks/third-party.php:
|
1862 |
msgid "Recent Posts Liked"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: includes/hooks/third-party.php:
|
1866 |
msgid "Recent Comments Liked"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: includes/hooks/third-party.php:
|
1870 |
-
#: includes/hooks/third-party.php:
|
1871 |
msgid "This user has not made any likes."
|
1872 |
msgstr ""
|
1873 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2019-06-19 16:23:52+0000\n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
978 |
msgstr ""
|
979 |
|
980 |
#: admin/classes/class-wp-ulike-settings.php:59
|
981 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
982 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
983 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
984 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
985 |
msgid "required"
|
986 |
msgstr ""
|
987 |
|
1703 |
msgid "Points for Liking content"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1707 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1708 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1709 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1710 |
msgid "Points"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1714 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1715 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1716 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1717 |
msgid "Use zero to disable."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1721 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1722 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1723 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1724 |
msgid "Limit"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1728 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1729 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1730 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1731 |
msgid "Log template"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1735 |
msgid "Points for Author Who Get Liked"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1739 |
msgid "Points for unliking content"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1743 |
msgid "Points for Author Who Get Unliked"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1747 |
msgid "Limits"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1751 |
msgid ""
|
1752 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1753 |
msgstr ""
|
1780 |
msgid "Error receiving input parameters"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: includes/hooks/third-party.php:134
|
1784 |
msgid "WP ULike Activity"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: includes/hooks/third-party.php:149
|
1788 |
msgid "Votes"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: includes/hooks/third-party.php:358
|
1792 |
msgid "posts"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: includes/hooks/third-party.php:365
|
1796 |
msgid "comments"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: includes/hooks/third-party.php:371
|
1800 |
msgid "activities"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: includes/hooks/third-party.php:379
|
1804 |
msgid "topics"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/hooks/third-party.php:382
|
1808 |
msgid "replies"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/hooks/third-party.php:394
|
1812 |
msgid "You have %d new %s likes"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/hooks/third-party.php:398
|
1816 |
msgid "%s liked one of your %s"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: includes/hooks/third-party.php:429
|
1820 |
msgid "New activity liked"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: includes/hooks/third-party.php:434
|
1824 |
msgid "New comment liked"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: includes/hooks/third-party.php:439
|
1828 |
msgid "New post liked"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: includes/hooks/third-party.php:444
|
1832 |
msgid "New topic liked"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: includes/hooks/third-party.php:862
|
1836 |
msgid "Points for liking content"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: includes/hooks/third-party.php:863
|
1840 |
msgid ""
|
1841 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1842 |
"WordPress, bbPress, BuddyPress & ..."
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: includes/hooks/third-party.php:879
|
1846 |
msgid "Liking Content"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: includes/hooks/third-party.php:880
|
1850 |
msgid "Liked Content"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/hooks/third-party.php:881
|
1854 |
msgid "Unliking Content"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: includes/hooks/third-party.php:882
|
1858 |
msgid "Unliked Content"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: includes/hooks/third-party.php:900
|
1862 |
msgid "Recent Posts Liked"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: includes/hooks/third-party.php:905
|
1866 |
msgid "Recent Comments Liked"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1870 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1871 |
msgid "This user has not made any likes."
|
1872 |
msgstr ""
|
1873 |
|
languages/wp-ulike-es-co.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: +0000\n"
|
9 |
"Language: es_CO\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -975,10 +975,10 @@ msgid "Start the loop of logs"
|
|
975 |
msgstr ""
|
976 |
|
977 |
#: admin/classes/class-wp-ulike-settings.php:59
|
978 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
979 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
980 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
981 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
982 |
msgid "required"
|
983 |
msgstr ""
|
984 |
|
@@ -1698,51 +1698,51 @@ msgstr ""
|
|
1698 |
msgid "Points for Liking content"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1702 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1703 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1704 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1705 |
msgid "Points"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1709 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1710 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1711 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1712 |
msgid "Use zero to disable."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1716 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1717 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1718 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1719 |
msgid "Limit"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1723 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1724 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1725 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1726 |
msgid "Log template"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1730 |
msgid "Points for Author Who Get Liked"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1734 |
msgid "Points for unliking content"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1738 |
msgid "Points for Author Who Get Unliked"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1742 |
msgid "Limits"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1746 |
msgid ""
|
1747 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1748 |
msgstr ""
|
@@ -1775,94 +1775,94 @@ msgstr ""
|
|
1775 |
msgid "Error receiving input parameters"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: includes/hooks/third-party.php:
|
1779 |
msgid "WP ULike Activity"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: includes/hooks/third-party.php:
|
1783 |
msgid "Votes"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: includes/hooks/third-party.php:
|
1787 |
msgid "posts"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: includes/hooks/third-party.php:
|
1791 |
msgid "comments"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: includes/hooks/third-party.php:
|
1795 |
msgid "activities"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: includes/hooks/third-party.php:
|
1799 |
msgid "topics"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/hooks/third-party.php:
|
1803 |
msgid "replies"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/hooks/third-party.php:
|
1807 |
msgid "You have %d new %s likes"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: includes/hooks/third-party.php:
|
1811 |
msgid "%s liked one of your %s"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: includes/hooks/third-party.php:
|
1815 |
msgid "New activity liked"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/hooks/third-party.php:
|
1819 |
msgid "New comment liked"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: includes/hooks/third-party.php:
|
1823 |
msgid "New post liked"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: includes/hooks/third-party.php:
|
1827 |
msgid "New topic liked"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: includes/hooks/third-party.php:
|
1831 |
msgid "Points for liking content"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: includes/hooks/third-party.php:
|
1835 |
msgid ""
|
1836 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1837 |
"WordPress, bbPress, BuddyPress & ..."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: includes/hooks/third-party.php:
|
1841 |
msgid "Liking Content"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: includes/hooks/third-party.php:
|
1845 |
msgid "Liked Content"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: includes/hooks/third-party.php:
|
1849 |
msgid "Unliking Content"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: includes/hooks/third-party.php:
|
1853 |
msgid "Unliked Content"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/hooks/third-party.php:
|
1857 |
msgid "Recent Posts Liked"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/hooks/third-party.php:
|
1861 |
msgid "Recent Comments Liked"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/hooks/third-party.php:
|
1865 |
-
#: includes/hooks/third-party.php:
|
1866 |
msgid "This user has not made any likes."
|
1867 |
msgstr ""
|
1868 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: +0000\n"
|
9 |
"Language: es_CO\n"
|
10 |
"MIME-Version: 1.0\n"
|
975 |
msgstr ""
|
976 |
|
977 |
#: admin/classes/class-wp-ulike-settings.php:59
|
978 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
979 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
980 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
981 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
982 |
msgid "required"
|
983 |
msgstr ""
|
984 |
|
1698 |
msgid "Points for Liking content"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1702 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1703 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1704 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1705 |
msgid "Points"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1709 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1710 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1711 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1712 |
msgid "Use zero to disable."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1716 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1717 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1718 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1719 |
msgid "Limit"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1723 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1724 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1725 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1726 |
msgid "Log template"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1730 |
msgid "Points for Author Who Get Liked"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1734 |
msgid "Points for unliking content"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1738 |
msgid "Points for Author Who Get Unliked"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1742 |
msgid "Limits"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1746 |
msgid ""
|
1747 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1748 |
msgstr ""
|
1775 |
msgid "Error receiving input parameters"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: includes/hooks/third-party.php:134
|
1779 |
msgid "WP ULike Activity"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: includes/hooks/third-party.php:149
|
1783 |
msgid "Votes"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: includes/hooks/third-party.php:358
|
1787 |
msgid "posts"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: includes/hooks/third-party.php:365
|
1791 |
msgid "comments"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: includes/hooks/third-party.php:371
|
1795 |
msgid "activities"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: includes/hooks/third-party.php:379
|
1799 |
msgid "topics"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: includes/hooks/third-party.php:382
|
1803 |
msgid "replies"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/hooks/third-party.php:394
|
1807 |
msgid "You have %d new %s likes"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: includes/hooks/third-party.php:398
|
1811 |
msgid "%s liked one of your %s"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: includes/hooks/third-party.php:429
|
1815 |
msgid "New activity liked"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: includes/hooks/third-party.php:434
|
1819 |
msgid "New comment liked"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/hooks/third-party.php:439
|
1823 |
msgid "New post liked"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: includes/hooks/third-party.php:444
|
1827 |
msgid "New topic liked"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/hooks/third-party.php:862
|
1831 |
msgid "Points for liking content"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: includes/hooks/third-party.php:863
|
1835 |
msgid ""
|
1836 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1837 |
"WordPress, bbPress, BuddyPress & ..."
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/hooks/third-party.php:879
|
1841 |
msgid "Liking Content"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/hooks/third-party.php:880
|
1845 |
msgid "Liked Content"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/hooks/third-party.php:881
|
1849 |
msgid "Unliking Content"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/hooks/third-party.php:882
|
1853 |
msgid "Unliked Content"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/hooks/third-party.php:900
|
1857 |
msgid "Recent Posts Liked"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/hooks/third-party.php:905
|
1861 |
msgid "Recent Comments Liked"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1865 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1866 |
msgid "This user has not made any likes."
|
1867 |
msgstr ""
|
1868 |
|
languages/wp-ulike-fa_IR.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2021-01-09 02:03+0330\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
@@ -1006,10 +1006,10 @@ msgid "Start the loop of logs"
|
|
1006 |
msgstr "شروع حلقه وقایع"
|
1007 |
|
1008 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1009 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1010 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1011 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1012 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1013 |
msgid "required"
|
1014 |
msgstr "لازم"
|
1015 |
|
@@ -1742,51 +1742,51 @@ msgstr "رنگ"
|
|
1742 |
msgid "Points for Liking content"
|
1743 |
msgstr "امتیاز لایک یک نوشته"
|
1744 |
|
1745 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1746 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1747 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1748 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1749 |
msgid "Points"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1753 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1754 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1755 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1756 |
msgid "Use zero to disable."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1760 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1761 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1762 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1763 |
msgid "Limit"
|
1764 |
msgstr "محدودیت"
|
1765 |
|
1766 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1767 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1768 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1769 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1770 |
msgid "Log template"
|
1771 |
msgstr "قالب وقایع"
|
1772 |
|
1773 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1774 |
msgid "Points for Author Who Get Liked"
|
1775 |
msgstr "امتیاز به کاربری که لایک دریافت کرده است"
|
1776 |
|
1777 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1778 |
msgid "Points for unliking content"
|
1779 |
msgstr "امتیاز لغو لایک یک نوشته"
|
1780 |
|
1781 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1782 |
msgid "Points for Author Who Get Unliked"
|
1783 |
msgstr "امتیاز به کاربری که لغو لایک دریافت کرده است"
|
1784 |
|
1785 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1786 |
msgid "Limits"
|
1787 |
msgstr "محدودیت ها"
|
1788 |
|
1789 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1790 |
msgid ""
|
1791 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1792 |
msgstr ""
|
@@ -1819,64 +1819,64 @@ msgstr ""
|
|
1819 |
msgid "Error receiving input parameters"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: includes/hooks/third-party.php:
|
1823 |
msgid "WP ULike Activity"
|
1824 |
msgstr "فعالیت های وردپرس یولایک"
|
1825 |
|
1826 |
-
#: includes/hooks/third-party.php:
|
1827 |
msgid "Votes"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: includes/hooks/third-party.php:
|
1831 |
msgid "posts"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: includes/hooks/third-party.php:
|
1835 |
msgid "comments"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: includes/hooks/third-party.php:
|
1839 |
msgid "activities"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: includes/hooks/third-party.php:
|
1843 |
msgid "topics"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: includes/hooks/third-party.php:
|
1847 |
msgid "replies"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: includes/hooks/third-party.php:
|
1851 |
msgid "You have %d new %s likes"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: includes/hooks/third-party.php:
|
1855 |
msgid "%s liked one of your %s"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: includes/hooks/third-party.php:
|
1859 |
msgid "New activity liked"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/hooks/third-party.php:
|
1863 |
msgid "New comment liked"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/hooks/third-party.php:
|
1867 |
msgid "New post liked"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/hooks/third-party.php:
|
1871 |
msgid "New topic liked"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/hooks/third-party.php:
|
1875 |
#, fuzzy
|
1876 |
msgid "Points for liking content"
|
1877 |
msgstr "امتیاز لغو لایک یک نوشته"
|
1878 |
|
1879 |
-
#: includes/hooks/third-party.php:
|
1880 |
msgid ""
|
1881 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1882 |
"WordPress, bbPress, BuddyPress & ..."
|
@@ -1885,32 +1885,32 @@ msgstr ""
|
|
1885 |
"و... را لایک/آنلایک کنند (بعلاوه افرادی که نوشته آنها لایک/آنلایک شده)، می "
|
1886 |
"توانند به ترتیب امتیازات مثبت و منفی دریافت کنند."
|
1887 |
|
1888 |
-
#: includes/hooks/third-party.php:
|
1889 |
msgid "Liking Content"
|
1890 |
msgstr "لایک نوشته"
|
1891 |
|
1892 |
-
#: includes/hooks/third-party.php:
|
1893 |
msgid "Liked Content"
|
1894 |
msgstr "نوشته لایک شده"
|
1895 |
|
1896 |
-
#: includes/hooks/third-party.php:
|
1897 |
msgid "Unliking Content"
|
1898 |
msgstr "لغو لایک نوشته"
|
1899 |
|
1900 |
-
#: includes/hooks/third-party.php:
|
1901 |
msgid "Unliked Content"
|
1902 |
msgstr "نوشته لغو لایک شده"
|
1903 |
|
1904 |
-
#: includes/hooks/third-party.php:
|
1905 |
msgid "Recent Posts Liked"
|
1906 |
msgstr "تازه ترین مطالب لایک شده"
|
1907 |
|
1908 |
-
#: includes/hooks/third-party.php:
|
1909 |
msgid "Recent Comments Liked"
|
1910 |
msgstr "تازه ترین دیدگاه های لایک شده"
|
1911 |
|
1912 |
-
#: includes/hooks/third-party.php:
|
1913 |
-
#: includes/hooks/third-party.php:
|
1914 |
msgid "This user has not made any likes."
|
1915 |
msgstr "این کاربر، هنوز هیچ موردی را نپسندیده است."
|
1916 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2021-01-09 02:03+0330\n"
|
9 |
"Last-Translator: \n"
|
10 |
"Language-Team: \n"
|
1006 |
msgstr "شروع حلقه وقایع"
|
1007 |
|
1008 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1009 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
1010 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
1011 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
1012 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
1013 |
msgid "required"
|
1014 |
msgstr "لازم"
|
1015 |
|
1742 |
msgid "Points for Liking content"
|
1743 |
msgstr "امتیاز لایک یک نوشته"
|
1744 |
|
1745 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1746 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1747 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1748 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1749 |
msgid "Points"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1753 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1754 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1755 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1756 |
msgid "Use zero to disable."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1760 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1761 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1762 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1763 |
msgid "Limit"
|
1764 |
msgstr "محدودیت"
|
1765 |
|
1766 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1767 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1768 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1769 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1770 |
msgid "Log template"
|
1771 |
msgstr "قالب وقایع"
|
1772 |
|
1773 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1774 |
msgid "Points for Author Who Get Liked"
|
1775 |
msgstr "امتیاز به کاربری که لایک دریافت کرده است"
|
1776 |
|
1777 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1778 |
msgid "Points for unliking content"
|
1779 |
msgstr "امتیاز لغو لایک یک نوشته"
|
1780 |
|
1781 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1782 |
msgid "Points for Author Who Get Unliked"
|
1783 |
msgstr "امتیاز به کاربری که لغو لایک دریافت کرده است"
|
1784 |
|
1785 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1786 |
msgid "Limits"
|
1787 |
msgstr "محدودیت ها"
|
1788 |
|
1789 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1790 |
msgid ""
|
1791 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1792 |
msgstr ""
|
1819 |
msgid "Error receiving input parameters"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/hooks/third-party.php:134
|
1823 |
msgid "WP ULike Activity"
|
1824 |
msgstr "فعالیت های وردپرس یولایک"
|
1825 |
|
1826 |
+
#: includes/hooks/third-party.php:149
|
1827 |
msgid "Votes"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/hooks/third-party.php:358
|
1831 |
msgid "posts"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: includes/hooks/third-party.php:365
|
1835 |
msgid "comments"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: includes/hooks/third-party.php:371
|
1839 |
msgid "activities"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: includes/hooks/third-party.php:379
|
1843 |
msgid "topics"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/hooks/third-party.php:382
|
1847 |
msgid "replies"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: includes/hooks/third-party.php:394
|
1851 |
msgid "You have %d new %s likes"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: includes/hooks/third-party.php:398
|
1855 |
msgid "%s liked one of your %s"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: includes/hooks/third-party.php:429
|
1859 |
msgid "New activity liked"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: includes/hooks/third-party.php:434
|
1863 |
msgid "New comment liked"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/hooks/third-party.php:439
|
1867 |
msgid "New post liked"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/hooks/third-party.php:444
|
1871 |
msgid "New topic liked"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/hooks/third-party.php:862
|
1875 |
#, fuzzy
|
1876 |
msgid "Points for liking content"
|
1877 |
msgstr "امتیاز لغو لایک یک نوشته"
|
1878 |
|
1879 |
+
#: includes/hooks/third-party.php:863
|
1880 |
msgid ""
|
1881 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1882 |
"WordPress, bbPress, BuddyPress & ..."
|
1885 |
"و... را لایک/آنلایک کنند (بعلاوه افرادی که نوشته آنها لایک/آنلایک شده)، می "
|
1886 |
"توانند به ترتیب امتیازات مثبت و منفی دریافت کنند."
|
1887 |
|
1888 |
+
#: includes/hooks/third-party.php:879
|
1889 |
msgid "Liking Content"
|
1890 |
msgstr "لایک نوشته"
|
1891 |
|
1892 |
+
#: includes/hooks/third-party.php:880
|
1893 |
msgid "Liked Content"
|
1894 |
msgstr "نوشته لایک شده"
|
1895 |
|
1896 |
+
#: includes/hooks/third-party.php:881
|
1897 |
msgid "Unliking Content"
|
1898 |
msgstr "لغو لایک نوشته"
|
1899 |
|
1900 |
+
#: includes/hooks/third-party.php:882
|
1901 |
msgid "Unliked Content"
|
1902 |
msgstr "نوشته لغو لایک شده"
|
1903 |
|
1904 |
+
#: includes/hooks/third-party.php:900
|
1905 |
msgid "Recent Posts Liked"
|
1906 |
msgstr "تازه ترین مطالب لایک شده"
|
1907 |
|
1908 |
+
#: includes/hooks/third-party.php:905
|
1909 |
msgid "Recent Comments Liked"
|
1910 |
msgstr "تازه ترین دیدگاه های لایک شده"
|
1911 |
|
1912 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1913 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1914 |
msgid "This user has not made any likes."
|
1915 |
msgstr "این کاربر، هنوز هیچ موردی را نپسندیده است."
|
1916 |
|
languages/wp-ulike-fr.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2017-01-20 23:27:07+0000\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -1010,10 +1010,10 @@ msgid "Start the loop of logs"
|
|
1010 |
msgstr "Début de la boucle des journaux"
|
1011 |
|
1012 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1013 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1014 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1015 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1016 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1017 |
msgid "required"
|
1018 |
msgstr "obligatoire"
|
1019 |
|
@@ -1750,51 +1750,51 @@ msgstr ""
|
|
1750 |
msgid "Points for Liking content"
|
1751 |
msgstr "Points pour aimer le contenu"
|
1752 |
|
1753 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1754 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1755 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1756 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1757 |
msgid "Points"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1761 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1762 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1763 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1764 |
msgid "Use zero to disable."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1768 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1769 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1770 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1771 |
msgid "Limit"
|
1772 |
msgstr "Limite"
|
1773 |
|
1774 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1775 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1776 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1777 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1778 |
msgid "Log template"
|
1779 |
msgstr "Modèle de journal"
|
1780 |
|
1781 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1782 |
msgid "Points for Author Who Get Liked"
|
1783 |
msgstr "Points pour auteur qui a obtenu des J'aime"
|
1784 |
|
1785 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1786 |
msgid "Points for unliking content"
|
1787 |
msgstr "Points pour le contenu non aimé"
|
1788 |
|
1789 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1790 |
msgid "Points for Author Who Get Unliked"
|
1791 |
msgstr "Points pour auteur qui a obtenu des J'aime pas"
|
1792 |
|
1793 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1794 |
msgid "Limits"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1798 |
msgid ""
|
1799 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1800 |
msgstr ""
|
@@ -1827,64 +1827,64 @@ msgstr ""
|
|
1827 |
msgid "Error receiving input parameters"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: includes/hooks/third-party.php:
|
1831 |
msgid "WP ULike Activity"
|
1832 |
msgstr "Activités de WP ULike"
|
1833 |
|
1834 |
-
#: includes/hooks/third-party.php:
|
1835 |
msgid "Votes"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: includes/hooks/third-party.php:
|
1839 |
msgid "posts"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: includes/hooks/third-party.php:
|
1843 |
msgid "comments"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: includes/hooks/third-party.php:
|
1847 |
msgid "activities"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: includes/hooks/third-party.php:
|
1851 |
msgid "topics"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: includes/hooks/third-party.php:
|
1855 |
msgid "replies"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: includes/hooks/third-party.php:
|
1859 |
msgid "You have %d new %s likes"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/hooks/third-party.php:
|
1863 |
msgid "%s liked one of your %s"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/hooks/third-party.php:
|
1867 |
msgid "New activity liked"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/hooks/third-party.php:
|
1871 |
msgid "New comment liked"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/hooks/third-party.php:
|
1875 |
msgid "New post liked"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/hooks/third-party.php:
|
1879 |
msgid "New topic liked"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/hooks/third-party.php:
|
1883 |
#, fuzzy
|
1884 |
msgid "Points for liking content"
|
1885 |
msgstr "Points pour le contenu non aimé"
|
1886 |
|
1887 |
-
#: includes/hooks/third-party.php:
|
1888 |
msgid ""
|
1889 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1890 |
"WordPress, bbPress, BuddyPress & ..."
|
@@ -1892,32 +1892,32 @@ msgstr ""
|
|
1892 |
"Ce crochet attribue / déduit des points des utilisateurs qui Aiment / Aiment "
|
1893 |
"pas tout le contenu de WordPress, bbPress, BuddyPress..."
|
1894 |
|
1895 |
-
#: includes/hooks/third-party.php:
|
1896 |
msgid "Liking Content"
|
1897 |
msgstr "Aimer le contenu"
|
1898 |
|
1899 |
-
#: includes/hooks/third-party.php:
|
1900 |
msgid "Liked Content"
|
1901 |
msgstr "Contenu aimé"
|
1902 |
|
1903 |
-
#: includes/hooks/third-party.php:
|
1904 |
msgid "Unliking Content"
|
1905 |
msgstr "Ne pas aimer le contenu"
|
1906 |
|
1907 |
-
#: includes/hooks/third-party.php:
|
1908 |
msgid "Unliked Content"
|
1909 |
msgstr "Contenu pas aimé"
|
1910 |
|
1911 |
-
#: includes/hooks/third-party.php:
|
1912 |
msgid "Recent Posts Liked"
|
1913 |
msgstr "Articles récemment aimés"
|
1914 |
|
1915 |
-
#: includes/hooks/third-party.php:
|
1916 |
msgid "Recent Comments Liked"
|
1917 |
msgstr "Commentaires récemment non aimés"
|
1918 |
|
1919 |
-
#: includes/hooks/third-party.php:
|
1920 |
-
#: includes/hooks/third-party.php:
|
1921 |
msgid "This user has not made any likes."
|
1922 |
msgstr "Cet utilisateur n'a fait aucun J'aime"
|
1923 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2017-01-20 23:27:07+0000\n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
1010 |
msgstr "Début de la boucle des journaux"
|
1011 |
|
1012 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1013 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
1014 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
1015 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
1016 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
1017 |
msgid "required"
|
1018 |
msgstr "obligatoire"
|
1019 |
|
1750 |
msgid "Points for Liking content"
|
1751 |
msgstr "Points pour aimer le contenu"
|
1752 |
|
1753 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1754 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1755 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1756 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1757 |
msgid "Points"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1761 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1762 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1763 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1764 |
msgid "Use zero to disable."
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1768 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1769 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1770 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1771 |
msgid "Limit"
|
1772 |
msgstr "Limite"
|
1773 |
|
1774 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1775 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1776 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1777 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1778 |
msgid "Log template"
|
1779 |
msgstr "Modèle de journal"
|
1780 |
|
1781 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1782 |
msgid "Points for Author Who Get Liked"
|
1783 |
msgstr "Points pour auteur qui a obtenu des J'aime"
|
1784 |
|
1785 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1786 |
msgid "Points for unliking content"
|
1787 |
msgstr "Points pour le contenu non aimé"
|
1788 |
|
1789 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1790 |
msgid "Points for Author Who Get Unliked"
|
1791 |
msgstr "Points pour auteur qui a obtenu des J'aime pas"
|
1792 |
|
1793 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1794 |
msgid "Limits"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1798 |
msgid ""
|
1799 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1800 |
msgstr ""
|
1827 |
msgid "Error receiving input parameters"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/hooks/third-party.php:134
|
1831 |
msgid "WP ULike Activity"
|
1832 |
msgstr "Activités de WP ULike"
|
1833 |
|
1834 |
+
#: includes/hooks/third-party.php:149
|
1835 |
msgid "Votes"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: includes/hooks/third-party.php:358
|
1839 |
msgid "posts"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: includes/hooks/third-party.php:365
|
1843 |
msgid "comments"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/hooks/third-party.php:371
|
1847 |
msgid "activities"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: includes/hooks/third-party.php:379
|
1851 |
msgid "topics"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: includes/hooks/third-party.php:382
|
1855 |
msgid "replies"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: includes/hooks/third-party.php:394
|
1859 |
msgid "You have %d new %s likes"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: includes/hooks/third-party.php:398
|
1863 |
msgid "%s liked one of your %s"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/hooks/third-party.php:429
|
1867 |
msgid "New activity liked"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/hooks/third-party.php:434
|
1871 |
msgid "New comment liked"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/hooks/third-party.php:439
|
1875 |
msgid "New post liked"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/hooks/third-party.php:444
|
1879 |
msgid "New topic liked"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/hooks/third-party.php:862
|
1883 |
#, fuzzy
|
1884 |
msgid "Points for liking content"
|
1885 |
msgstr "Points pour le contenu non aimé"
|
1886 |
|
1887 |
+
#: includes/hooks/third-party.php:863
|
1888 |
msgid ""
|
1889 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1890 |
"WordPress, bbPress, BuddyPress & ..."
|
1892 |
"Ce crochet attribue / déduit des points des utilisateurs qui Aiment / Aiment "
|
1893 |
"pas tout le contenu de WordPress, bbPress, BuddyPress..."
|
1894 |
|
1895 |
+
#: includes/hooks/third-party.php:879
|
1896 |
msgid "Liking Content"
|
1897 |
msgstr "Aimer le contenu"
|
1898 |
|
1899 |
+
#: includes/hooks/third-party.php:880
|
1900 |
msgid "Liked Content"
|
1901 |
msgstr "Contenu aimé"
|
1902 |
|
1903 |
+
#: includes/hooks/third-party.php:881
|
1904 |
msgid "Unliking Content"
|
1905 |
msgstr "Ne pas aimer le contenu"
|
1906 |
|
1907 |
+
#: includes/hooks/third-party.php:882
|
1908 |
msgid "Unliked Content"
|
1909 |
msgstr "Contenu pas aimé"
|
1910 |
|
1911 |
+
#: includes/hooks/third-party.php:900
|
1912 |
msgid "Recent Posts Liked"
|
1913 |
msgstr "Articles récemment aimés"
|
1914 |
|
1915 |
+
#: includes/hooks/third-party.php:905
|
1916 |
msgid "Recent Comments Liked"
|
1917 |
msgstr "Commentaires récemment non aimés"
|
1918 |
|
1919 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1920 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1921 |
msgid "This user has not made any likes."
|
1922 |
msgstr "Cet utilisateur n'a fait aucun J'aime"
|
1923 |
|
languages/wp-ulike-ja.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2019-07-03 14:50:28+0000\n"
|
9 |
"Language: ja_JP\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -1010,10 +1010,10 @@ msgid "Start the loop of logs"
|
|
1010 |
msgstr "ログのループを開始する"
|
1011 |
|
1012 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1013 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1014 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1015 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1016 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1017 |
msgid "required"
|
1018 |
msgstr "必須"
|
1019 |
|
@@ -1747,51 +1747,51 @@ msgstr ""
|
|
1747 |
msgid "Points for Liking content"
|
1748 |
msgstr "いいねするコンテンツのためのポイント"
|
1749 |
|
1750 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1751 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1752 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1753 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1754 |
msgid "Points"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1758 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1759 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1760 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1761 |
msgid "Use zero to disable."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1765 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1766 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1767 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1768 |
msgid "Limit"
|
1769 |
msgstr "制限"
|
1770 |
|
1771 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1772 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1773 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1774 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1775 |
msgid "Log template"
|
1776 |
msgstr "ログテンプレート"
|
1777 |
|
1778 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1779 |
msgid "Points for Author Who Get Liked"
|
1780 |
msgstr "いいねを得た作者のためのポイント"
|
1781 |
|
1782 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1783 |
msgid "Points for unliking content"
|
1784 |
msgstr "よくないねのコンテンツのポイント"
|
1785 |
|
1786 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1787 |
msgid "Points for Author Who Get Unliked"
|
1788 |
msgstr "よくないねを取得する著者のためのポイント"
|
1789 |
|
1790 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1791 |
msgid "Limits"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1795 |
msgid ""
|
1796 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1797 |
msgstr ""
|
@@ -1824,64 +1824,64 @@ msgstr ""
|
|
1824 |
msgid "Error receiving input parameters"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: includes/hooks/third-party.php:
|
1828 |
msgid "WP ULike Activity"
|
1829 |
msgstr "WP ULike アクティビティ"
|
1830 |
|
1831 |
-
#: includes/hooks/third-party.php:
|
1832 |
msgid "Votes"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: includes/hooks/third-party.php:
|
1836 |
msgid "posts"
|
1837 |
msgstr "投稿"
|
1838 |
|
1839 |
-
#: includes/hooks/third-party.php:
|
1840 |
msgid "comments"
|
1841 |
msgstr "コメント"
|
1842 |
|
1843 |
-
#: includes/hooks/third-party.php:
|
1844 |
msgid "activities"
|
1845 |
msgstr "アクティビティ"
|
1846 |
|
1847 |
-
#: includes/hooks/third-party.php:
|
1848 |
msgid "topics"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: includes/hooks/third-party.php:
|
1852 |
msgid "replies"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: includes/hooks/third-party.php:
|
1856 |
msgid "You have %d new %s likes"
|
1857 |
msgstr "%d 件の新しい %s いいね"
|
1858 |
|
1859 |
-
#: includes/hooks/third-party.php:
|
1860 |
msgid "%s liked one of your %s"
|
1861 |
msgstr "%s は %s の1つをいいねしました。"
|
1862 |
|
1863 |
-
#: includes/hooks/third-party.php:
|
1864 |
msgid "New activity liked"
|
1865 |
msgstr "いいねした新しいアクティビティ"
|
1866 |
|
1867 |
-
#: includes/hooks/third-party.php:
|
1868 |
msgid "New comment liked"
|
1869 |
msgstr "いいねした新しいコメント"
|
1870 |
|
1871 |
-
#: includes/hooks/third-party.php:
|
1872 |
msgid "New post liked"
|
1873 |
msgstr "いいねした新しい投稿"
|
1874 |
|
1875 |
-
#: includes/hooks/third-party.php:
|
1876 |
msgid "New topic liked"
|
1877 |
msgstr "いいねした新しいトピック"
|
1878 |
|
1879 |
-
#: includes/hooks/third-party.php:
|
1880 |
#, fuzzy
|
1881 |
msgid "Points for liking content"
|
1882 |
msgstr "よくないねのコンテンツのポイント"
|
1883 |
|
1884 |
-
#: includes/hooks/third-party.php:
|
1885 |
msgid ""
|
1886 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1887 |
"WordPress, bbPress, BuddyPress & ..."
|
@@ -1889,32 +1889,32 @@ msgstr ""
|
|
1889 |
"このフックは WordPress、bbPress、BuddyPress などのコンテンツにいいね、もしく"
|
1890 |
"はよくないねをしたユーザーからポイントを増減します"
|
1891 |
|
1892 |
-
#: includes/hooks/third-party.php:
|
1893 |
msgid "Liking Content"
|
1894 |
msgstr "いいねするコンテンツ"
|
1895 |
|
1896 |
-
#: includes/hooks/third-party.php:
|
1897 |
msgid "Liked Content"
|
1898 |
msgstr "いいねしたコンテンツ"
|
1899 |
|
1900 |
-
#: includes/hooks/third-party.php:
|
1901 |
msgid "Unliking Content"
|
1902 |
msgstr "よくないねをしたコンテンツ"
|
1903 |
|
1904 |
-
#: includes/hooks/third-party.php:
|
1905 |
msgid "Unliked Content"
|
1906 |
msgstr "よくないねをしたコンテンツ"
|
1907 |
|
1908 |
-
#: includes/hooks/third-party.php:
|
1909 |
msgid "Recent Posts Liked"
|
1910 |
msgstr "いいねした最近の投稿"
|
1911 |
|
1912 |
-
#: includes/hooks/third-party.php:
|
1913 |
msgid "Recent Comments Liked"
|
1914 |
msgstr "いいねした最近のコメント"
|
1915 |
|
1916 |
-
#: includes/hooks/third-party.php:
|
1917 |
-
#: includes/hooks/third-party.php:
|
1918 |
msgid "This user has not made any likes."
|
1919 |
msgstr "このユーザーはいいねしていません。"
|
1920 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2019-07-03 14:50:28+0000\n"
|
9 |
"Language: ja_JP\n"
|
10 |
"MIME-Version: 1.0\n"
|
1010 |
msgstr "ログのループを開始する"
|
1011 |
|
1012 |
#: admin/classes/class-wp-ulike-settings.php:59
|
1013 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
1014 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
1015 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
1016 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
1017 |
msgid "required"
|
1018 |
msgstr "必須"
|
1019 |
|
1747 |
msgid "Points for Liking content"
|
1748 |
msgstr "いいねするコンテンツのためのポイント"
|
1749 |
|
1750 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1751 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1752 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1753 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1754 |
msgid "Points"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1758 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1759 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1760 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1761 |
msgid "Use zero to disable."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1765 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1766 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1767 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1768 |
msgid "Limit"
|
1769 |
msgstr "制限"
|
1770 |
|
1771 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1772 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1773 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1774 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1775 |
msgid "Log template"
|
1776 |
msgstr "ログテンプレート"
|
1777 |
|
1778 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1779 |
msgid "Points for Author Who Get Liked"
|
1780 |
msgstr "いいねを得た作者のためのポイント"
|
1781 |
|
1782 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1783 |
msgid "Points for unliking content"
|
1784 |
msgstr "よくないねのコンテンツのポイント"
|
1785 |
|
1786 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1787 |
msgid "Points for Author Who Get Unliked"
|
1788 |
msgstr "よくないねを取得する著者のためのポイント"
|
1789 |
|
1790 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1791 |
msgid "Limits"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1795 |
msgid ""
|
1796 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1797 |
msgstr ""
|
1824 |
msgid "Error receiving input parameters"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: includes/hooks/third-party.php:134
|
1828 |
msgid "WP ULike Activity"
|
1829 |
msgstr "WP ULike アクティビティ"
|
1830 |
|
1831 |
+
#: includes/hooks/third-party.php:149
|
1832 |
msgid "Votes"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: includes/hooks/third-party.php:358
|
1836 |
msgid "posts"
|
1837 |
msgstr "投稿"
|
1838 |
|
1839 |
+
#: includes/hooks/third-party.php:365
|
1840 |
msgid "comments"
|
1841 |
msgstr "コメント"
|
1842 |
|
1843 |
+
#: includes/hooks/third-party.php:371
|
1844 |
msgid "activities"
|
1845 |
msgstr "アクティビティ"
|
1846 |
|
1847 |
+
#: includes/hooks/third-party.php:379
|
1848 |
msgid "topics"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: includes/hooks/third-party.php:382
|
1852 |
msgid "replies"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: includes/hooks/third-party.php:394
|
1856 |
msgid "You have %d new %s likes"
|
1857 |
msgstr "%d 件の新しい %s いいね"
|
1858 |
|
1859 |
+
#: includes/hooks/third-party.php:398
|
1860 |
msgid "%s liked one of your %s"
|
1861 |
msgstr "%s は %s の1つをいいねしました。"
|
1862 |
|
1863 |
+
#: includes/hooks/third-party.php:429
|
1864 |
msgid "New activity liked"
|
1865 |
msgstr "いいねした新しいアクティビティ"
|
1866 |
|
1867 |
+
#: includes/hooks/third-party.php:434
|
1868 |
msgid "New comment liked"
|
1869 |
msgstr "いいねした新しいコメント"
|
1870 |
|
1871 |
+
#: includes/hooks/third-party.php:439
|
1872 |
msgid "New post liked"
|
1873 |
msgstr "いいねした新しい投稿"
|
1874 |
|
1875 |
+
#: includes/hooks/third-party.php:444
|
1876 |
msgid "New topic liked"
|
1877 |
msgstr "いいねした新しいトピック"
|
1878 |
|
1879 |
+
#: includes/hooks/third-party.php:862
|
1880 |
#, fuzzy
|
1881 |
msgid "Points for liking content"
|
1882 |
msgstr "よくないねのコンテンツのポイント"
|
1883 |
|
1884 |
+
#: includes/hooks/third-party.php:863
|
1885 |
msgid ""
|
1886 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1887 |
"WordPress, bbPress, BuddyPress & ..."
|
1889 |
"このフックは WordPress、bbPress、BuddyPress などのコンテンツにいいね、もしく"
|
1890 |
"はよくないねをしたユーザーからポイントを増減します"
|
1891 |
|
1892 |
+
#: includes/hooks/third-party.php:879
|
1893 |
msgid "Liking Content"
|
1894 |
msgstr "いいねするコンテンツ"
|
1895 |
|
1896 |
+
#: includes/hooks/third-party.php:880
|
1897 |
msgid "Liked Content"
|
1898 |
msgstr "いいねしたコンテンツ"
|
1899 |
|
1900 |
+
#: includes/hooks/third-party.php:881
|
1901 |
msgid "Unliking Content"
|
1902 |
msgstr "よくないねをしたコンテンツ"
|
1903 |
|
1904 |
+
#: includes/hooks/third-party.php:882
|
1905 |
msgid "Unliked Content"
|
1906 |
msgstr "よくないねをしたコンテンツ"
|
1907 |
|
1908 |
+
#: includes/hooks/third-party.php:900
|
1909 |
msgid "Recent Posts Liked"
|
1910 |
msgstr "いいねした最近の投稿"
|
1911 |
|
1912 |
+
#: includes/hooks/third-party.php:905
|
1913 |
msgid "Recent Comments Liked"
|
1914 |
msgstr "いいねした最近のコメント"
|
1915 |
|
1916 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1917 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1918 |
msgid "This user has not made any likes."
|
1919 |
msgstr "このユーザーはいいねしていません。"
|
1920 |
|
languages/wp-ulike-nl.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2020-02-23 18:53:56+0000\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -985,10 +985,10 @@ msgid "Start the loop of logs"
|
|
985 |
msgstr ""
|
986 |
|
987 |
#: admin/classes/class-wp-ulike-settings.php:59
|
988 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
989 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
990 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
991 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
992 |
msgid "required"
|
993 |
msgstr ""
|
994 |
|
@@ -1720,51 +1720,51 @@ msgstr ""
|
|
1720 |
msgid "Points for Liking content"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1724 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1725 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1726 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1727 |
msgid "Points"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1731 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1732 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1733 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1734 |
msgid "Use zero to disable."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1738 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1739 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1740 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1741 |
msgid "Limit"
|
1742 |
msgstr "Limiet"
|
1743 |
|
1744 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1745 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1746 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1747 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1748 |
msgid "Log template"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1752 |
msgid "Points for Author Who Get Liked"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1756 |
msgid "Points for unliking content"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1760 |
msgid "Points for Author Who Get Unliked"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1764 |
msgid "Limits"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1768 |
msgid ""
|
1769 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1770 |
msgstr ""
|
@@ -1797,94 +1797,94 @@ msgstr ""
|
|
1797 |
msgid "Error receiving input parameters"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: includes/hooks/third-party.php:
|
1801 |
msgid "WP ULike Activity"
|
1802 |
msgstr "WP ULike activiteiten"
|
1803 |
|
1804 |
-
#: includes/hooks/third-party.php:
|
1805 |
msgid "Votes"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: includes/hooks/third-party.php:
|
1809 |
msgid "posts"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: includes/hooks/third-party.php:
|
1813 |
msgid "comments"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: includes/hooks/third-party.php:
|
1817 |
msgid "activities"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: includes/hooks/third-party.php:
|
1821 |
msgid "topics"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: includes/hooks/third-party.php:
|
1825 |
msgid "replies"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: includes/hooks/third-party.php:
|
1829 |
msgid "You have %d new %s likes"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: includes/hooks/third-party.php:
|
1833 |
msgid "%s liked one of your %s"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: includes/hooks/third-party.php:
|
1837 |
msgid "New activity liked"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: includes/hooks/third-party.php:
|
1841 |
msgid "New comment liked"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: includes/hooks/third-party.php:
|
1845 |
msgid "New post liked"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: includes/hooks/third-party.php:
|
1849 |
msgid "New topic liked"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: includes/hooks/third-party.php:
|
1853 |
msgid "Points for liking content"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/hooks/third-party.php:
|
1857 |
msgid ""
|
1858 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1859 |
"WordPress, bbPress, BuddyPress & ..."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/hooks/third-party.php:
|
1863 |
msgid "Liking Content"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/hooks/third-party.php:
|
1867 |
msgid "Liked Content"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/hooks/third-party.php:
|
1871 |
msgid "Unliking Content"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/hooks/third-party.php:
|
1875 |
msgid "Unliked Content"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/hooks/third-party.php:
|
1879 |
msgid "Recent Posts Liked"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/hooks/third-party.php:
|
1883 |
msgid "Recent Comments Liked"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: includes/hooks/third-party.php:
|
1887 |
-
#: includes/hooks/third-party.php:
|
1888 |
msgid "This user has not made any likes."
|
1889 |
msgstr ""
|
1890 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2020-02-23 18:53:56+0000\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
985 |
msgstr ""
|
986 |
|
987 |
#: admin/classes/class-wp-ulike-settings.php:59
|
988 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
989 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
990 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
991 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
992 |
msgid "required"
|
993 |
msgstr ""
|
994 |
|
1720 |
msgid "Points for Liking content"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1724 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1725 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1726 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1727 |
msgid "Points"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1731 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1732 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1733 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1734 |
msgid "Use zero to disable."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1738 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1739 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1740 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1741 |
msgid "Limit"
|
1742 |
msgstr "Limiet"
|
1743 |
|
1744 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1745 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1746 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1747 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1748 |
msgid "Log template"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1752 |
msgid "Points for Author Who Get Liked"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1756 |
msgid "Points for unliking content"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1760 |
msgid "Points for Author Who Get Unliked"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1764 |
msgid "Limits"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1768 |
msgid ""
|
1769 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1770 |
msgstr ""
|
1797 |
msgid "Error receiving input parameters"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: includes/hooks/third-party.php:134
|
1801 |
msgid "WP ULike Activity"
|
1802 |
msgstr "WP ULike activiteiten"
|
1803 |
|
1804 |
+
#: includes/hooks/third-party.php:149
|
1805 |
msgid "Votes"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: includes/hooks/third-party.php:358
|
1809 |
msgid "posts"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/hooks/third-party.php:365
|
1813 |
msgid "comments"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: includes/hooks/third-party.php:371
|
1817 |
msgid "activities"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: includes/hooks/third-party.php:379
|
1821 |
msgid "topics"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/hooks/third-party.php:382
|
1825 |
msgid "replies"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/hooks/third-party.php:394
|
1829 |
msgid "You have %d new %s likes"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/hooks/third-party.php:398
|
1833 |
msgid "%s liked one of your %s"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/hooks/third-party.php:429
|
1837 |
msgid "New activity liked"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/hooks/third-party.php:434
|
1841 |
msgid "New comment liked"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/hooks/third-party.php:439
|
1845 |
msgid "New post liked"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/hooks/third-party.php:444
|
1849 |
msgid "New topic liked"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/hooks/third-party.php:862
|
1853 |
msgid "Points for liking content"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/hooks/third-party.php:863
|
1857 |
msgid ""
|
1858 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1859 |
"WordPress, bbPress, BuddyPress & ..."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: includes/hooks/third-party.php:879
|
1863 |
msgid "Liking Content"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/hooks/third-party.php:880
|
1867 |
msgid "Liked Content"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/hooks/third-party.php:881
|
1871 |
msgid "Unliking Content"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/hooks/third-party.php:882
|
1875 |
msgid "Unliked Content"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/hooks/third-party.php:900
|
1879 |
msgid "Recent Posts Liked"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/hooks/third-party.php:905
|
1883 |
msgid "Recent Comments Liked"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1887 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1888 |
msgid "This user has not made any likes."
|
1889 |
msgstr ""
|
1890 |
|
languages/wp-ulike-ru.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2017-01-20 23:27:25+0000\n"
|
9 |
"Language: ru\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -976,10 +976,10 @@ msgid "Start the loop of logs"
|
|
976 |
msgstr ""
|
977 |
|
978 |
#: admin/classes/class-wp-ulike-settings.php:59
|
979 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
980 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
981 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
982 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
983 |
msgid "required"
|
984 |
msgstr ""
|
985 |
|
@@ -1699,51 +1699,51 @@ msgstr ""
|
|
1699 |
msgid "Points for Liking content"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1703 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1704 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1705 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1706 |
msgid "Points"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1710 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1711 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1712 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1713 |
msgid "Use zero to disable."
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1717 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1718 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1719 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1720 |
msgid "Limit"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1724 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1725 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1726 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1727 |
msgid "Log template"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1731 |
msgid "Points for Author Who Get Liked"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1735 |
msgid "Points for unliking content"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1739 |
msgid "Points for Author Who Get Unliked"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1743 |
msgid "Limits"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1747 |
msgid ""
|
1748 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1749 |
msgstr ""
|
@@ -1776,94 +1776,94 @@ msgstr ""
|
|
1776 |
msgid "Error receiving input parameters"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: includes/hooks/third-party.php:
|
1780 |
msgid "WP ULike Activity"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: includes/hooks/third-party.php:
|
1784 |
msgid "Votes"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: includes/hooks/third-party.php:
|
1788 |
msgid "posts"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: includes/hooks/third-party.php:
|
1792 |
msgid "comments"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: includes/hooks/third-party.php:
|
1796 |
msgid "activities"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: includes/hooks/third-party.php:
|
1800 |
msgid "topics"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: includes/hooks/third-party.php:
|
1804 |
msgid "replies"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: includes/hooks/third-party.php:
|
1808 |
msgid "You have %d new %s likes"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: includes/hooks/third-party.php:
|
1812 |
msgid "%s liked one of your %s"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: includes/hooks/third-party.php:
|
1816 |
msgid "New activity liked"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: includes/hooks/third-party.php:
|
1820 |
msgid "New comment liked"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: includes/hooks/third-party.php:
|
1824 |
msgid "New post liked"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: includes/hooks/third-party.php:
|
1828 |
msgid "New topic liked"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: includes/hooks/third-party.php:
|
1832 |
msgid "Points for liking content"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: includes/hooks/third-party.php:
|
1836 |
msgid ""
|
1837 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1838 |
"WordPress, bbPress, BuddyPress & ..."
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: includes/hooks/third-party.php:
|
1842 |
msgid "Liking Content"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: includes/hooks/third-party.php:
|
1846 |
msgid "Liked Content"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: includes/hooks/third-party.php:
|
1850 |
msgid "Unliking Content"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: includes/hooks/third-party.php:
|
1854 |
msgid "Unliked Content"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: includes/hooks/third-party.php:
|
1858 |
msgid "Recent Posts Liked"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: includes/hooks/third-party.php:
|
1862 |
msgid "Recent Comments Liked"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: includes/hooks/third-party.php:
|
1866 |
-
#: includes/hooks/third-party.php:
|
1867 |
msgid "This user has not made any likes."
|
1868 |
msgstr ""
|
1869 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2017-01-20 23:27:25+0000\n"
|
9 |
"Language: ru\n"
|
10 |
"MIME-Version: 1.0\n"
|
976 |
msgstr ""
|
977 |
|
978 |
#: admin/classes/class-wp-ulike-settings.php:59
|
979 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
980 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
981 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
982 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
983 |
msgid "required"
|
984 |
msgstr ""
|
985 |
|
1699 |
msgid "Points for Liking content"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1703 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1704 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1705 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1706 |
msgid "Points"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1710 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1711 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1712 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1713 |
msgid "Use zero to disable."
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1717 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1718 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1719 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1720 |
msgid "Limit"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1724 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1725 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1726 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1727 |
msgid "Log template"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1731 |
msgid "Points for Author Who Get Liked"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1735 |
msgid "Points for unliking content"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1739 |
msgid "Points for Author Who Get Unliked"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1743 |
msgid "Limits"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1747 |
msgid ""
|
1748 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1749 |
msgstr ""
|
1776 |
msgid "Error receiving input parameters"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: includes/hooks/third-party.php:134
|
1780 |
msgid "WP ULike Activity"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: includes/hooks/third-party.php:149
|
1784 |
msgid "Votes"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: includes/hooks/third-party.php:358
|
1788 |
msgid "posts"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: includes/hooks/third-party.php:365
|
1792 |
msgid "comments"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: includes/hooks/third-party.php:371
|
1796 |
msgid "activities"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: includes/hooks/third-party.php:379
|
1800 |
msgid "topics"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: includes/hooks/third-party.php:382
|
1804 |
msgid "replies"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: includes/hooks/third-party.php:394
|
1808 |
msgid "You have %d new %s likes"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/hooks/third-party.php:398
|
1812 |
msgid "%s liked one of your %s"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/hooks/third-party.php:429
|
1816 |
msgid "New activity liked"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: includes/hooks/third-party.php:434
|
1820 |
msgid "New comment liked"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: includes/hooks/third-party.php:439
|
1824 |
msgid "New post liked"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: includes/hooks/third-party.php:444
|
1828 |
msgid "New topic liked"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: includes/hooks/third-party.php:862
|
1832 |
msgid "Points for liking content"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: includes/hooks/third-party.php:863
|
1836 |
msgid ""
|
1837 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1838 |
"WordPress, bbPress, BuddyPress & ..."
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: includes/hooks/third-party.php:879
|
1842 |
msgid "Liking Content"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
#: includes/hooks/third-party.php:880
|
1846 |
msgid "Liked Content"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: includes/hooks/third-party.php:881
|
1850 |
msgid "Unliking Content"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/hooks/third-party.php:882
|
1854 |
msgid "Unliked Content"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: includes/hooks/third-party.php:900
|
1858 |
msgid "Recent Posts Liked"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: includes/hooks/third-party.php:905
|
1862 |
msgid "Recent Comments Liked"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1866 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1867 |
msgid "This user has not made any likes."
|
1868 |
msgstr ""
|
1869 |
|
languages/wp-ulike-sv.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2020-02-26 22:14:02+0000\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -990,10 +990,10 @@ msgid "Start the loop of logs"
|
|
990 |
msgstr ""
|
991 |
|
992 |
#: admin/classes/class-wp-ulike-settings.php:59
|
993 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
994 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
995 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
996 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
997 |
msgid "required"
|
998 |
msgstr ""
|
999 |
|
@@ -1724,51 +1724,51 @@ msgstr "Typsnittsfärg"
|
|
1724 |
msgid "Points for Liking content"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1728 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1729 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1730 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1731 |
msgid "Points"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1735 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1736 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1737 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1738 |
msgid "Use zero to disable."
|
1739 |
msgstr "Använd noll för att inaktivera."
|
1740 |
|
1741 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1742 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1743 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1744 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1745 |
msgid "Limit"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1749 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1750 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1751 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1752 |
msgid "Log template"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1756 |
msgid "Points for Author Who Get Liked"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1760 |
msgid "Points for unliking content"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1764 |
msgid "Points for Author Who Get Unliked"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1768 |
msgid "Limits"
|
1769 |
msgstr "Begränsningar"
|
1770 |
|
1771 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1772 |
msgid ""
|
1773 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1774 |
msgstr ""
|
@@ -1801,94 +1801,94 @@ msgstr ""
|
|
1801 |
msgid "Error receiving input parameters"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: includes/hooks/third-party.php:
|
1805 |
msgid "WP ULike Activity"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: includes/hooks/third-party.php:
|
1809 |
msgid "Votes"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: includes/hooks/third-party.php:
|
1813 |
msgid "posts"
|
1814 |
msgstr "inlägg"
|
1815 |
|
1816 |
-
#: includes/hooks/third-party.php:
|
1817 |
msgid "comments"
|
1818 |
msgstr "kommentarer"
|
1819 |
|
1820 |
-
#: includes/hooks/third-party.php:
|
1821 |
msgid "activities"
|
1822 |
msgstr "aktiviteter"
|
1823 |
|
1824 |
-
#: includes/hooks/third-party.php:
|
1825 |
msgid "topics"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: includes/hooks/third-party.php:
|
1829 |
msgid "replies"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: includes/hooks/third-party.php:
|
1833 |
msgid "You have %d new %s likes"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: includes/hooks/third-party.php:
|
1837 |
msgid "%s liked one of your %s"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: includes/hooks/third-party.php:
|
1841 |
msgid "New activity liked"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#: includes/hooks/third-party.php:
|
1845 |
msgid "New comment liked"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#: includes/hooks/third-party.php:
|
1849 |
msgid "New post liked"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#: includes/hooks/third-party.php:
|
1853 |
msgid "New topic liked"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/hooks/third-party.php:
|
1857 |
msgid "Points for liking content"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/hooks/third-party.php:
|
1861 |
msgid ""
|
1862 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1863 |
"WordPress, bbPress, BuddyPress & ..."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/hooks/third-party.php:
|
1867 |
msgid "Liking Content"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/hooks/third-party.php:
|
1871 |
msgid "Liked Content"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/hooks/third-party.php:
|
1875 |
msgid "Unliking Content"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/hooks/third-party.php:
|
1879 |
msgid "Unliked Content"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/hooks/third-party.php:
|
1883 |
msgid "Recent Posts Liked"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: includes/hooks/third-party.php:
|
1887 |
msgid "Recent Comments Liked"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: includes/hooks/third-party.php:
|
1891 |
-
#: includes/hooks/third-party.php:
|
1892 |
msgid "This user has not made any likes."
|
1893 |
msgstr ""
|
1894 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2020-02-26 22:14:02+0000\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
990 |
msgstr ""
|
991 |
|
992 |
#: admin/classes/class-wp-ulike-settings.php:59
|
993 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
994 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
995 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
996 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
997 |
msgid "required"
|
998 |
msgstr ""
|
999 |
|
1724 |
msgid "Points for Liking content"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1728 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1729 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1730 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1731 |
msgid "Points"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1735 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1736 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1737 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1738 |
msgid "Use zero to disable."
|
1739 |
msgstr "Använd noll för att inaktivera."
|
1740 |
|
1741 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1742 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1743 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1744 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1745 |
msgid "Limit"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1749 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1750 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1751 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1752 |
msgid "Log template"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1756 |
msgid "Points for Author Who Get Liked"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1760 |
msgid "Points for unliking content"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1764 |
msgid "Points for Author Who Get Unliked"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1768 |
msgid "Limits"
|
1769 |
msgstr "Begränsningar"
|
1770 |
|
1771 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1772 |
msgid ""
|
1773 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1774 |
msgstr ""
|
1801 |
msgid "Error receiving input parameters"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: includes/hooks/third-party.php:134
|
1805 |
msgid "WP ULike Activity"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: includes/hooks/third-party.php:149
|
1809 |
msgid "Votes"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/hooks/third-party.php:358
|
1813 |
msgid "posts"
|
1814 |
msgstr "inlägg"
|
1815 |
|
1816 |
+
#: includes/hooks/third-party.php:365
|
1817 |
msgid "comments"
|
1818 |
msgstr "kommentarer"
|
1819 |
|
1820 |
+
#: includes/hooks/third-party.php:371
|
1821 |
msgid "activities"
|
1822 |
msgstr "aktiviteter"
|
1823 |
|
1824 |
+
#: includes/hooks/third-party.php:379
|
1825 |
msgid "topics"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/hooks/third-party.php:382
|
1829 |
msgid "replies"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/hooks/third-party.php:394
|
1833 |
msgid "You have %d new %s likes"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/hooks/third-party.php:398
|
1837 |
msgid "%s liked one of your %s"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/hooks/third-party.php:429
|
1841 |
msgid "New activity liked"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/hooks/third-party.php:434
|
1845 |
msgid "New comment liked"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/hooks/third-party.php:439
|
1849 |
msgid "New post liked"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/hooks/third-party.php:444
|
1853 |
msgid "New topic liked"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/hooks/third-party.php:862
|
1857 |
msgid "Points for liking content"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/hooks/third-party.php:863
|
1861 |
msgid ""
|
1862 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1863 |
"WordPress, bbPress, BuddyPress & ..."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/hooks/third-party.php:879
|
1867 |
msgid "Liking Content"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/hooks/third-party.php:880
|
1871 |
msgid "Liked Content"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/hooks/third-party.php:881
|
1875 |
msgid "Unliking Content"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/hooks/third-party.php:882
|
1879 |
msgid "Unliked Content"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/hooks/third-party.php:900
|
1883 |
msgid "Recent Posts Liked"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: includes/hooks/third-party.php:905
|
1887 |
msgid "Recent Comments Liked"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1891 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1892 |
msgid "This user has not made any likes."
|
1893 |
msgstr ""
|
1894 |
|
languages/wp-ulike-zh-cn.po
CHANGED
@@ -4,7 +4,7 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"PO-Revision-Date: 2018-05-27 09:01:52+0000\n"
|
9 |
"Language: zh_CN\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -986,10 +986,10 @@ msgid "Start the loop of logs"
|
|
986 |
msgstr ""
|
987 |
|
988 |
#: admin/classes/class-wp-ulike-settings.php:59
|
989 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
990 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
991 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
992 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
993 |
msgid "required"
|
994 |
msgstr ""
|
995 |
|
@@ -1714,51 +1714,51 @@ msgstr ""
|
|
1714 |
msgid "Points for Liking content"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1718 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1719 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1720 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1721 |
msgid "Points"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1725 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1726 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1727 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1728 |
msgid "Use zero to disable."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1732 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1733 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1734 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1735 |
msgid "Limit"
|
1736 |
msgstr "限量"
|
1737 |
|
1738 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1739 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1740 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1741 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1742 |
msgid "Log template"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1746 |
msgid "Points for Author Who Get Liked"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1750 |
msgid "Points for unliking content"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1754 |
msgid "Points for Author Who Get Unliked"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1758 |
msgid "Limits"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1762 |
msgid ""
|
1763 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1764 |
msgstr ""
|
@@ -1791,94 +1791,94 @@ msgstr ""
|
|
1791 |
msgid "Error receiving input parameters"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: includes/hooks/third-party.php:
|
1795 |
msgid "WP ULike Activity"
|
1796 |
msgstr "WP ULike 活动"
|
1797 |
|
1798 |
-
#: includes/hooks/third-party.php:
|
1799 |
msgid "Votes"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/hooks/third-party.php:
|
1803 |
msgid "posts"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/hooks/third-party.php:
|
1807 |
msgid "comments"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: includes/hooks/third-party.php:
|
1811 |
msgid "activities"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: includes/hooks/third-party.php:
|
1815 |
msgid "topics"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/hooks/third-party.php:
|
1819 |
msgid "replies"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: includes/hooks/third-party.php:
|
1823 |
msgid "You have %d new %s likes"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: includes/hooks/third-party.php:
|
1827 |
msgid "%s liked one of your %s"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: includes/hooks/third-party.php:
|
1831 |
msgid "New activity liked"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: includes/hooks/third-party.php:
|
1835 |
msgid "New comment liked"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: includes/hooks/third-party.php:
|
1839 |
msgid "New post liked"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: includes/hooks/third-party.php:
|
1843 |
msgid "New topic liked"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: includes/hooks/third-party.php:
|
1847 |
msgid "Points for liking content"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: includes/hooks/third-party.php:
|
1851 |
msgid ""
|
1852 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1853 |
"WordPress, bbPress, BuddyPress & ..."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/hooks/third-party.php:
|
1857 |
msgid "Liking Content"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/hooks/third-party.php:
|
1861 |
msgid "Liked Content"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/hooks/third-party.php:
|
1865 |
msgid "Unliking Content"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: includes/hooks/third-party.php:
|
1869 |
msgid "Unliked Content"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/hooks/third-party.php:
|
1873 |
msgid "Recent Posts Liked"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: includes/hooks/third-party.php:
|
1877 |
msgid "Recent Comments Liked"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: includes/hooks/third-party.php:
|
1881 |
-
#: includes/hooks/third-party.php:
|
1882 |
msgid "This user has not made any likes."
|
1883 |
msgstr ""
|
1884 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - WP ULike - Stable (latest release)\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"PO-Revision-Date: 2018-05-27 09:01:52+0000\n"
|
9 |
"Language: zh_CN\n"
|
10 |
"MIME-Version: 1.0\n"
|
986 |
msgstr ""
|
987 |
|
988 |
#: admin/classes/class-wp-ulike-settings.php:59
|
989 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
990 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
991 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
992 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
993 |
msgid "required"
|
994 |
msgstr ""
|
995 |
|
1714 |
msgid "Points for Liking content"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1718 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1719 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1720 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1721 |
msgid "Points"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1725 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1726 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1727 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1728 |
msgid "Use zero to disable."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1732 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1733 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1734 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1735 |
msgid "Limit"
|
1736 |
msgstr "限量"
|
1737 |
|
1738 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1739 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1740 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1741 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1742 |
msgid "Log template"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1746 |
msgid "Points for Author Who Get Liked"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1750 |
msgid "Points for unliking content"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1754 |
msgid "Points for Author Who Get Unliked"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1758 |
msgid "Limits"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1762 |
msgid ""
|
1763 |
"%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1764 |
msgstr ""
|
1791 |
msgid "Error receiving input parameters"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: includes/hooks/third-party.php:134
|
1795 |
msgid "WP ULike Activity"
|
1796 |
msgstr "WP ULike 活动"
|
1797 |
|
1798 |
+
#: includes/hooks/third-party.php:149
|
1799 |
msgid "Votes"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: includes/hooks/third-party.php:358
|
1803 |
msgid "posts"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/hooks/third-party.php:365
|
1807 |
msgid "comments"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: includes/hooks/third-party.php:371
|
1811 |
msgid "activities"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: includes/hooks/third-party.php:379
|
1815 |
msgid "topics"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: includes/hooks/third-party.php:382
|
1819 |
msgid "replies"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: includes/hooks/third-party.php:394
|
1823 |
msgid "You have %d new %s likes"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: includes/hooks/third-party.php:398
|
1827 |
msgid "%s liked one of your %s"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: includes/hooks/third-party.php:429
|
1831 |
msgid "New activity liked"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: includes/hooks/third-party.php:434
|
1835 |
msgid "New comment liked"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: includes/hooks/third-party.php:439
|
1839 |
msgid "New post liked"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: includes/hooks/third-party.php:444
|
1843 |
msgid "New topic liked"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/hooks/third-party.php:862
|
1847 |
msgid "Points for liking content"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: includes/hooks/third-party.php:863
|
1851 |
msgid ""
|
1852 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1853 |
"WordPress, bbPress, BuddyPress & ..."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/hooks/third-party.php:879
|
1857 |
msgid "Liking Content"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/hooks/third-party.php:880
|
1861 |
msgid "Liked Content"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/hooks/third-party.php:881
|
1865 |
msgid "Unliking Content"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: includes/hooks/third-party.php:882
|
1869 |
msgid "Unliked Content"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: includes/hooks/third-party.php:900
|
1873 |
msgid "Recent Posts Liked"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: includes/hooks/third-party.php:905
|
1877 |
msgid "Recent Comments Liked"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1881 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1882 |
msgid "This user has not made any likes."
|
1883 |
msgstr ""
|
1884 |
|
languages/wp-ulike.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WP ULike package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP ULike 4.6.
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
-
"POT-Creation-Date: 2022-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -978,10 +978,10 @@ msgid "Start the loop of logs"
|
|
978 |
msgstr ""
|
979 |
|
980 |
#: admin/classes/class-wp-ulike-settings.php:59
|
981 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
982 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
983 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
984 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
985 |
msgid "required"
|
986 |
msgstr ""
|
987 |
|
@@ -1702,51 +1702,51 @@ msgstr ""
|
|
1702 |
msgid "Points for Liking content"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1706 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1707 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1708 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1709 |
msgid "Points"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1713 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1714 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1715 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1716 |
msgid "Use zero to disable."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1720 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1721 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1722 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1723 |
msgid "Limit"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1727 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1728 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1729 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1730 |
msgid "Log template"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1734 |
msgid "Points for Author Who Get Liked"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1738 |
msgid "Points for unliking content"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1742 |
msgid "Points for Author Who Get Unliked"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1746 |
msgid "Limits"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: includes/classes/class-wp-ulike-mycred.php:
|
1750 |
msgid "%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1751 |
msgstr ""
|
1752 |
|
@@ -1778,94 +1778,94 @@ msgstr ""
|
|
1778 |
msgid "Error receiving input parameters"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: includes/hooks/third-party.php:
|
1782 |
msgid "WP ULike Activity"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: includes/hooks/third-party.php:
|
1786 |
msgid "Votes"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: includes/hooks/third-party.php:
|
1790 |
msgid "posts"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: includes/hooks/third-party.php:
|
1794 |
msgid "comments"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/hooks/third-party.php:
|
1798 |
msgid "activities"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: includes/hooks/third-party.php:
|
1802 |
msgid "topics"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: includes/hooks/third-party.php:
|
1806 |
msgid "replies"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: includes/hooks/third-party.php:
|
1810 |
msgid "You have %d new %s likes"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: includes/hooks/third-party.php:
|
1814 |
msgid "%s liked one of your %s"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: includes/hooks/third-party.php:
|
1818 |
msgid "New activity liked"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: includes/hooks/third-party.php:
|
1822 |
msgid "New comment liked"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: includes/hooks/third-party.php:
|
1826 |
msgid "New post liked"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: includes/hooks/third-party.php:
|
1830 |
msgid "New topic liked"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: includes/hooks/third-party.php:
|
1834 |
msgid "Points for liking content"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: includes/hooks/third-party.php:
|
1838 |
msgid ""
|
1839 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1840 |
"WordPress, bbPress, BuddyPress & ..."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/hooks/third-party.php:
|
1844 |
msgid "Liking Content"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: includes/hooks/third-party.php:
|
1848 |
msgid "Liked Content"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: includes/hooks/third-party.php:
|
1852 |
msgid "Unliking Content"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: includes/hooks/third-party.php:
|
1856 |
msgid "Unliked Content"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: includes/hooks/third-party.php:
|
1860 |
msgid "Recent Posts Liked"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: includes/hooks/third-party.php:
|
1864 |
msgid "Recent Comments Liked"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: includes/hooks/third-party.php:
|
1868 |
-
#: includes/hooks/third-party.php:
|
1869 |
msgid "This user has not made any likes."
|
1870 |
msgstr ""
|
1871 |
|
2 |
# This file is distributed under the same license as the WP ULike package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP ULike 4.6.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wpulike.com\n"
|
7 |
+
"POT-Creation-Date: 2022-08-08 19:43:02+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
978 |
msgstr ""
|
979 |
|
980 |
#: admin/classes/class-wp-ulike-settings.php:59
|
981 |
+
#: includes/classes/class-wp-ulike-mycred.php:263
|
982 |
+
#: includes/classes/class-wp-ulike-mycred.php:296
|
983 |
+
#: includes/classes/class-wp-ulike-mycred.php:329
|
984 |
+
#: includes/classes/class-wp-ulike-mycred.php:362
|
985 |
msgid "required"
|
986 |
msgstr ""
|
987 |
|
1702 |
msgid "Points for Liking content"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: includes/classes/class-wp-ulike-mycred.php:243
|
1706 |
+
#: includes/classes/class-wp-ulike-mycred.php:276
|
1707 |
+
#: includes/classes/class-wp-ulike-mycred.php:309
|
1708 |
+
#: includes/classes/class-wp-ulike-mycred.php:342
|
1709 |
msgid "Points"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: includes/classes/class-wp-ulike-mycred.php:247
|
1713 |
+
#: includes/classes/class-wp-ulike-mycred.php:280
|
1714 |
+
#: includes/classes/class-wp-ulike-mycred.php:313
|
1715 |
+
#: includes/classes/class-wp-ulike-mycred.php:346
|
1716 |
msgid "Use zero to disable."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: includes/classes/class-wp-ulike-mycred.php:253
|
1720 |
+
#: includes/classes/class-wp-ulike-mycred.php:286
|
1721 |
+
#: includes/classes/class-wp-ulike-mycred.php:319
|
1722 |
+
#: includes/classes/class-wp-ulike-mycred.php:352
|
1723 |
msgid "Limit"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: includes/classes/class-wp-ulike-mycred.php:260
|
1727 |
+
#: includes/classes/class-wp-ulike-mycred.php:293
|
1728 |
+
#: includes/classes/class-wp-ulike-mycred.php:326
|
1729 |
+
#: includes/classes/class-wp-ulike-mycred.php:359
|
1730 |
msgid "Log template"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: includes/classes/class-wp-ulike-mycred.php:271
|
1734 |
msgid "Points for Author Who Get Liked"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: includes/classes/class-wp-ulike-mycred.php:304
|
1738 |
msgid "Points for unliking content"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: includes/classes/class-wp-ulike-mycred.php:337
|
1742 |
msgid "Points for Author Who Get Unliked"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: includes/classes/class-wp-ulike-mycred.php:370
|
1746 |
msgid "Limits"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: includes/classes/class-wp-ulike-mycred.php:379
|
1750 |
msgid "%plural% is to be awarded even when item authors Like/Unlike their own item."
|
1751 |
msgstr ""
|
1752 |
|
1778 |
msgid "Error receiving input parameters"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: includes/hooks/third-party.php:134
|
1782 |
msgid "WP ULike Activity"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: includes/hooks/third-party.php:149
|
1786 |
msgid "Votes"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: includes/hooks/third-party.php:358
|
1790 |
msgid "posts"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: includes/hooks/third-party.php:365
|
1794 |
msgid "comments"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/hooks/third-party.php:371
|
1798 |
msgid "activities"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: includes/hooks/third-party.php:379
|
1802 |
msgid "topics"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: includes/hooks/third-party.php:382
|
1806 |
msgid "replies"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: includes/hooks/third-party.php:394
|
1810 |
msgid "You have %d new %s likes"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: includes/hooks/third-party.php:398
|
1814 |
msgid "%s liked one of your %s"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: includes/hooks/third-party.php:429
|
1818 |
msgid "New activity liked"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
+
#: includes/hooks/third-party.php:434
|
1822 |
msgid "New comment liked"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
+
#: includes/hooks/third-party.php:439
|
1826 |
msgid "New post liked"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: includes/hooks/third-party.php:444
|
1830 |
msgid "New topic liked"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
#: includes/hooks/third-party.php:862
|
1834 |
msgid "Points for liking content"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: includes/hooks/third-party.php:863
|
1838 |
msgid ""
|
1839 |
"This hook award / deducts points from users who Like/Unlike any content of "
|
1840 |
"WordPress, bbPress, BuddyPress & ..."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: includes/hooks/third-party.php:879
|
1844 |
msgid "Liking Content"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: includes/hooks/third-party.php:880
|
1848 |
msgid "Liked Content"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: includes/hooks/third-party.php:881
|
1852 |
msgid "Unliking Content"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: includes/hooks/third-party.php:882
|
1856 |
msgid "Unliked Content"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: includes/hooks/third-party.php:900
|
1860 |
msgid "Recent Posts Liked"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: includes/hooks/third-party.php:905
|
1864 |
msgid "Recent Comments Liked"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: includes/hooks/third-party.php:936 includes/hooks/third-party.php:962
|
1868 |
+
#: includes/hooks/third-party.php:992 includes/hooks/third-party.php:1022
|
1869 |
msgid "This user has not made any likes."
|
1870 |
msgstr ""
|
1871 |
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ Author: TechnoWich
|
|
5 |
Tags: like, marketing, elementor, user profile, rating, favorite, statistics, button, dislike, gamification, bookmark, member
|
6 |
Requires PHP: 5.6
|
7 |
Requires at least: 5.0
|
8 |
-
Tested up to:
|
9 |
-
Stable tag: 4.6.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -140,6 +140,12 @@ Yes, WP ULike is compatible with Apache, Nginx, Microsoft IIS et LiteSpeed web s
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
= 4.6.2 =
|
144 |
* Improved: bbPress button display on main topic.
|
145 |
* Improved: css conflicts with buddypress.
|
5 |
Tags: like, marketing, elementor, user profile, rating, favorite, statistics, button, dislike, gamification, bookmark, member
|
6 |
Requires PHP: 5.6
|
7 |
Requires at least: 5.0
|
8 |
+
Tested up to: 6.0.1
|
9 |
+
Stable tag: 4.6.3
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= 4.6.3 =
|
144 |
+
* Improved: bbPress duplicate issue on the lead topic.
|
145 |
+
* Improved: Compatibility with WordPress 6.0 applied.
|
146 |
+
* Improved: Add uninstall.php to clear out plugin data.
|
147 |
+
* Fixed: Minor bug fixes.
|
148 |
+
|
149 |
= 4.6.2 =
|
150 |
* Improved: bbPress button display on main topic.
|
151 |
* Improved: css conflicts with buddypress.
|
uninstall.php
CHANGED
@@ -1,10 +1,161 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
*
|
4 |
-
*
|
5 |
*/
|
6 |
|
7 |
-
// If uninstall not called from WordPress, then exit
|
8 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
9 |
-
exit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
}
|
|
|
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Uninstall
|
|
|
4 |
*/
|
5 |
|
|
|
6 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Uninstall class
|
12 |
+
*
|
13 |
+
* @class wp_ulike_uninstall
|
14 |
+
* @since 1.0.0
|
15 |
+
*/
|
16 |
+
class wp_ulike_uninstall {
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Constructor
|
20 |
+
*
|
21 |
+
* @since 1.0.0
|
22 |
+
* @access public
|
23 |
+
*/
|
24 |
+
public function __construct() {
|
25 |
+
|
26 |
+
if ( is_multisite() ) {
|
27 |
+
$this->uninstall_sites();
|
28 |
+
} else {
|
29 |
+
$this->uninstall_site();
|
30 |
+
}
|
31 |
+
}
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Process uninstall on each sites (multisite)
|
35 |
+
*
|
36 |
+
* @since 1.0.0
|
37 |
+
* @access public
|
38 |
+
*/
|
39 |
+
public function uninstall_sites() {
|
40 |
+
|
41 |
+
global $wpdb;
|
42 |
+
|
43 |
+
// Save current blog ID.
|
44 |
+
$current = $wpdb->blogid;
|
45 |
+
$blog_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" );
|
46 |
+
|
47 |
+
// Create tables for each blog ID.
|
48 |
+
foreach ( $blog_ids as $blog_id ) {
|
49 |
+
|
50 |
+
switch_to_blog( $blog_id );
|
51 |
+
$this->uninstall_site();
|
52 |
+
|
53 |
+
}
|
54 |
+
|
55 |
+
// Go back to current blog.
|
56 |
+
switch_to_blog( $current );
|
57 |
+
|
58 |
+
}
|
59 |
+
|
60 |
+
/**
|
61 |
+
* Process uninstall on current site
|
62 |
+
*
|
63 |
+
* @since 1.0.0
|
64 |
+
* @access public
|
65 |
+
*/
|
66 |
+
public function uninstall_site() {
|
67 |
+
/*
|
68 |
+
* Only remove ALL data if WP_ULIKE_REMOVE_ALL_DATA constant is set to true in user's
|
69 |
+
* wp-config.php. This is to prevent data loss when deleting the plugin from the backend
|
70 |
+
* and to ensure only the site owner can perform this action.
|
71 |
+
*/
|
72 |
+
if ( defined( 'WP_ULIKE_REMOVE_ALL_DATA' ) && true === WP_ULIKE_REMOVE_ALL_DATA ) {
|
73 |
+
$this->drop_tables();
|
74 |
+
$this->delete_transients();
|
75 |
+
$this->delete_options();
|
76 |
+
$this->delete_files();
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
/**
|
81 |
+
* Drop plugin custom tables from current site
|
82 |
+
*
|
83 |
+
* @since 1.0.0
|
84 |
+
* @access public
|
85 |
+
*/
|
86 |
+
public function drop_tables() {
|
87 |
+
|
88 |
+
global $wpdb;
|
89 |
+
|
90 |
+
$wpdb->query(
|
91 |
+
"DROP TABLE IF EXISTS
|
92 |
+
{$wpdb->prefix}ulike,
|
93 |
+
{$wpdb->prefix}ulike_comments,
|
94 |
+
{$wpdb->prefix}ulike_activities,
|
95 |
+
{$wpdb->prefix}ulike_forums,
|
96 |
+
{$wpdb->prefix}ulike_meta"
|
97 |
+
);
|
98 |
+
|
99 |
+
}
|
100 |
+
|
101 |
+
/**
|
102 |
+
* Delete plugin transients from current site
|
103 |
+
*
|
104 |
+
* @since 1.0.0
|
105 |
+
* @access public
|
106 |
+
*/
|
107 |
+
public function delete_transients() {
|
108 |
+
|
109 |
+
global $wpdb;
|
110 |
+
|
111 |
+
// Delete all plugin metadata.
|
112 |
+
$wpdb->query( "DELETE from $wpdb->options WHERE option_name LIKE '_transient_wp-ulike%'" );
|
113 |
+
$wpdb->query( "DELETE from $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-ulike%'" );
|
114 |
+
$wpdb->query( "DELETE from $wpdb->options WHERE option_name LIKE '_transient_wp_ulike%'" );
|
115 |
+
$wpdb->query( "DELETE from $wpdb->options WHERE option_name LIKE '_transient_timeout_wp_ulike%'" );
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Delete plugin options from current site
|
120 |
+
*
|
121 |
+
* @since 1.0.0
|
122 |
+
* @access public
|
123 |
+
*/
|
124 |
+
public function delete_options() {
|
125 |
+
|
126 |
+
delete_option( 'wp_ulike_dbVersion' );
|
127 |
+
delete_option( 'widget_wp_ulike' );
|
128 |
+
delete_option( 'wp_ulike_settings' );
|
129 |
+
delete_option( 'wp_ulike_use_inline_custom_css' );
|
130 |
+
delete_option( 'wp_ulike_customize' );
|
131 |
+
|
132 |
+
}
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Delete plugin files
|
136 |
+
*
|
137 |
+
* @since 1.0.0
|
138 |
+
* @access public
|
139 |
+
*/
|
140 |
+
public function delete_files() {
|
141 |
+
|
142 |
+
global $wp_filesystem;
|
143 |
+
|
144 |
+
// Get filesystem.
|
145 |
+
if ( empty( $wp_filesystem ) ) {
|
146 |
+
|
147 |
+
if ( ! function_exists( 'WP_Filesystem' ) ) {
|
148 |
+
require_once ABSPATH . '/wp-admin/includes/file.php';
|
149 |
+
}
|
150 |
+
|
151 |
+
WP_Filesystem();
|
152 |
+
|
153 |
+
}
|
154 |
+
|
155 |
+
$wp_content = $wp_filesystem->wp_content_dir();
|
156 |
+
|
157 |
+
$wp_filesystem->delete( $wp_content . '/uploads/wp-ulike', true );
|
158 |
+
}
|
159 |
}
|
160 |
+
|
161 |
+
new wp_ulike_uninstall();
|
wp-ulike.php
CHANGED
@@ -3,11 +3,12 @@
|
|
3 |
* Plugin Name: WP ULike
|
4 |
* Plugin URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
|
5 |
* Description: Receiving feedback is crucial as a content creator, but unfortunately, the pieces of content you can collect it on are limited by default. However, with the help of the WP ULike plugin, it is possible to cast voting to any type of content you may have on your website. With outstanding and eye-catching widgets, you can have Like and Dislike Button on all of your content would it be a post, comment, BuddyPress activity, bbPress topics, WooCommerce products, you name it. Now you can feel your users Love for each part of your work.
|
6 |
-
* Version: 4.6.
|
7 |
* Author: TechnoWich
|
8 |
* Author URI: https://technowich.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
|
9 |
* Text Domain: wp-ulike
|
10 |
* Domain Path: /languages/
|
|
|
11 |
*
|
12 |
* WP ULike is free software: you can redistribute it and/or modify
|
13 |
* it under the terms of the GNU General Public License as published by
|
@@ -27,7 +28,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
27 |
|
28 |
// Do not change these values
|
29 |
define( 'WP_ULIKE_PLUGIN_URI' , 'https://wpulike.com/' );
|
30 |
-
define( 'WP_ULIKE_VERSION' , '4.6.
|
31 |
define( 'WP_ULIKE_DB_VERSION' , '2.3' );
|
32 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
33 |
define( 'WP_ULIKE_NAME' , __( 'WP ULike', WP_ULIKE_SLUG ) );
|
3 |
* Plugin Name: WP ULike
|
4 |
* Plugin URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
|
5 |
* Description: Receiving feedback is crucial as a content creator, but unfortunately, the pieces of content you can collect it on are limited by default. However, with the help of the WP ULike plugin, it is possible to cast voting to any type of content you may have on your website. With outstanding and eye-catching widgets, you can have Like and Dislike Button on all of your content would it be a post, comment, BuddyPress activity, bbPress topics, WooCommerce products, you name it. Now you can feel your users Love for each part of your work.
|
6 |
+
* Version: 4.6.3
|
7 |
* Author: TechnoWich
|
8 |
* Author URI: https://technowich.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
|
9 |
* Text Domain: wp-ulike
|
10 |
* Domain Path: /languages/
|
11 |
+
* Tested up to: 6.0.1
|
12 |
*
|
13 |
* WP ULike is free software: you can redistribute it and/or modify
|
14 |
* it under the terms of the GNU General Public License as published by
|
28 |
|
29 |
// Do not change these values
|
30 |
define( 'WP_ULIKE_PLUGIN_URI' , 'https://wpulike.com/' );
|
31 |
+
define( 'WP_ULIKE_VERSION' , '4.6.3' );
|
32 |
define( 'WP_ULIKE_DB_VERSION' , '2.3' );
|
33 |
define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
|
34 |
define( 'WP_ULIKE_NAME' , __( 'WP ULike', WP_ULIKE_SLUG ) );
|