WP ULike - Version 4.1.7

Version Description

  • Added: New caching methods to increase the performance of admin pages.
  • Fixed: Limitation issue in getting the popular item IDs.
  • Fixed: Restrict admin assets visible only to plugin and edit post pages.
  • Fixed: Likers box display issue with shortcode value.
  • Fixed: Some small issues.
Download this release

Release Info

Developer alimir
Plugin Icon 128x128 WP ULike
Version 4.1.7
Comparing to
See all releases

Code changes from version 4.1.6 to 4.1.7

admin/admin-functions.php CHANGED
@@ -91,7 +91,6 @@ function wp_ulike_get_paginated_logs( $table, $type ){
91
  * The counter of last likes by the admin last login time.
92
  *
93
  * @author Alimir
94
- * @since 2.4.2
95
  * @return string
96
  */
97
  function wp_ulike_get_number_of_new_likes() {
@@ -101,20 +100,27 @@ function wp_ulike_get_number_of_new_likes() {
101
  update_option( 'wpulike_lastvisit', current_time( 'mysql' ) );
102
  }
103
 
104
- $query = sprintf( '
105
- SELECT
106
- ( SELECT COUNT(*) FROM `%1$sulike` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
107
- ( SELECT COUNT(*) FROM `%1$sulike_activities` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
108
- ( SELECT COUNT(*) FROM `%1$sulike_comments` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
109
- ( SELECT COUNT(*) FROM `%1$sulike_forums` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) )
110
- ',
111
- $wpdb->prefix,
112
- get_option( 'wpulike_lastvisit')
113
- );
114
-
115
- $result = $wpdb->get_var( $query );
 
 
 
 
 
 
 
116
 
117
- return empty( $result ) ? 0 : $result;
118
  }
119
 
120
 
91
  * The counter of last likes by the admin last login time.
92
  *
93
  * @author Alimir
 
94
  * @return string
95
  */
96
  function wp_ulike_get_number_of_new_likes() {
100
  update_option( 'wpulike_lastvisit', current_time( 'mysql' ) );
101
  }
102
 
103
+ $cache_key = sanitize_key( 'calculate-new-votes' );
104
+ $counter_value = wp_cache_get( $cache_key, WP_ULIKE_SLUG );
105
+
106
+ // Make a cachable query to get new like count from all tables
107
+ if( false === $counter_value ){
108
+ $query = sprintf( '
109
+ SELECT
110
+ ( SELECT COUNT(*) FROM `%1$sulike` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
111
+ ( SELECT COUNT(*) FROM `%1$sulike_activities` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
112
+ ( SELECT COUNT(*) FROM `%1$sulike_comments` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) ) +
113
+ ( SELECT COUNT(*) FROM `%1$sulike_forums` WHERE ( date_time <= NOW() AND date_time >= "%2$s" ) )
114
+ ',
115
+ $wpdb->prefix,
116
+ get_option( 'wpulike_lastvisit')
117
+ );
118
+
119
+ $counter_value = $wpdb->get_var( $query );
120
+ wp_cache_set( $cache_key, $counter_value, WP_ULIKE_SLUG );
121
+ }
122
 
123
+ return empty( $counter_value ) ? 0 : $counter_value;
124
  }
125
 
126
 
admin/admin-hooks.php CHANGED
@@ -159,6 +159,29 @@ function wp_ulike_notice_manager(){
159
  }
160
 
161
  if( ! defined( 'WP_ULIKE_PRO_VERSION' ) && strpos( $screen->base, WP_ULIKE_SLUG ) !== false ){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  $notice_list[ 'wp_ulike_seo_tools_banner' ] = new wp_ulike_notices([
163
  'id' => 'wp_ulike_seo_tools_banner',
164
  'title' => __( 'Boost Your SEO by Using Schema Rich Snippets', WP_ULIKE_SLUG ),
159
  }
160
 
161
  if( ! defined( 'WP_ULIKE_PRO_VERSION' ) && strpos( $screen->base, WP_ULIKE_SLUG ) !== false ){
162
+ $notice_list[ 'wp_ulike_logs_page_banner' ] = new wp_ulike_notices([
163
+ 'id' => 'wp_ulike_logs_page_banner',
164
+ 'title' => __( 'How to Create Detailed Log Reports in WP ULike PRO?', WP_ULIKE_SLUG ),
165
+ 'description' => __( "Having votes for your content without a tool for measuring the results is meaningless, isn't it? for that reason, we gave you full access to your log data in the WP ULike professional Logs panel." , WP_ULIKE_SLUG ),
166
+ 'skin' => 'default',
167
+ 'has_close' => true,
168
+ 'buttons' => array(
169
+ array(
170
+ 'label' => __( "Get More Information", WP_ULIKE_SLUG ),
171
+ 'link' => WP_ULIKE_PLUGIN_URI . 'blog/log-reports-in-wp-ulike-pro/?utm_source=logs-page-banner&utm_campaign=gopro&utm_medium=wp-dash'
172
+ ),
173
+ array(
174
+ 'label' => __('No thanks and never ask me again', WP_ULIKE_SLUG),
175
+ 'type' => 'skip',
176
+ 'color_name' => 'error',
177
+ 'expiration' => YEAR_IN_SECONDS * 10
178
+ )
179
+ ),
180
+ 'image' => array(
181
+ 'width' => '140',
182
+ 'src' => WP_ULIKE_ASSETS_URL . '/img/svg/table.svg'
183
+ )
184
+ ]);
185
  $notice_list[ 'wp_ulike_seo_tools_banner' ] = new wp_ulike_notices([
186
  'id' => 'wp_ulike_seo_tools_banner',
187
  'title' => __( 'Boost Your SEO by Using Schema Rich Snippets', WP_ULIKE_SLUG ),
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! WP ULike - v4.1.6
2
  * https://wpulike.com
3
  * TechnoWich 2020;
4
  */
1
+ /*! WP ULike - v4.1.7
2
  * https://wpulike.com
3
  * TechnoWich 2020;
4
  */
admin/classes/class-wp-ulike-stats.php CHANGED
@@ -223,14 +223,7 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
223
  * @return integer
224
  */
225
  public function count_all_logs( $date = 'all' ){
226
- // Result
227
- $result = 0;
228
-
229
- foreach ( $this->tables as $key => $table ) {
230
- $result += $this->count_logs( array( "table" => $table, "date" => $date ) );
231
- }
232
-
233
- return $result;
234
  }
235
 
236
  /**
@@ -253,13 +246,19 @@ if ( ! class_exists( 'wp_ulike_stats' ) ) {
253
  // Extract variables
254
  extract( $parsed_args );
255
 
256
- $query = sprintf( "SELECT COUNT(*) FROM %s WHERE 1=1", $this->wpdb->prefix . $table );
257
- $query .= wp_ulike_get_period_limit_sql( $date );
258
 
259
- $result = $this->wpdb->get_var( $query );
 
 
 
260
 
261
- return empty( $result ) ? 0 : $result;
 
 
262
 
 
263
  }
264
 
265
  /**
223
  * @return integer
224
  */
225
  public function count_all_logs( $date = 'all' ){
226
+ return wp_ulike_count_all_logs( $date );
 
 
 
 
 
 
 
227
  }
228
 
229
  /**
246
  // Extract variables
247
  extract( $parsed_args );
248
 
249
+ $cache_key = sanitize_key( sprintf( 'count-logs-for-%s-table-in-%s-daterange', $table, $date ) );
250
+ $counter_value = wp_cache_get( $cache_key, WP_ULIKE_SLUG );
251
 
252
+ // Make a cachable query to get new like count from all tables
253
+ if( false === $counter_value ){
254
+ $query = sprintf( "SELECT COUNT(*) FROM %s WHERE 1=1", $this->wpdb->prefix . $table );
255
+ $query .= wp_ulike_get_period_limit_sql( $date );
256
 
257
+ $counter_value = $this->wpdb->get_var( $query );
258
+ wp_cache_set( $cache_key, $counter_value, WP_ULIKE_SLUG );
259
+ }
260
 
261
+ return empty( $counter_value ) ? 0 : $counter_value;
262
  }
263
 
264
  /**
admin/settings/classes/setup.class.php CHANGED
@@ -395,7 +395,14 @@ if( ! class_exists( 'CSF' ) ) {
395
 
396
  //
397
  // Enqueue admin and fields styles and scripts.
398
- public static function add_admin_enqueue_scripts() {
 
 
 
 
 
 
 
399
 
400
  // check for developer mode
401
  $min = ( apply_filters( 'csf_dev_mode', false ) || WP_DEBUG ) ? '' : '.min';
395
 
396
  //
397
  // Enqueue admin and fields styles and scripts.
398
+ public static function add_admin_enqueue_scripts( $hook ) {
399
+
400
+ // Scripts is only can be load on ulike pages.
401
+ if ( strpos( $hook, WP_ULIKE_SLUG ) === false ) {
402
+ if( ! defined( 'WP_ULIKE_PRO_DOMAIN' ) || ! in_array( $hook, array( 'post.php', 'post-new.php' ) ) ){
403
+ return;
404
+ }
405
+ }
406
 
407
  // check for developer mode
408
  $min = ( apply_filters( 'csf_dev_mode', false ) || WP_DEBUG ) ? '' : '.min';
assets/img/svg/table.svg ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="582.875pt" version="1.1" viewBox="1 1 582.875 582.875" width="582.875pt">
2
+ <g id="surface1">
3
+ <path d="M 172.25 344.5 C 179.566406 344.5 185.5 350.433594 185.5 357.75 L 185.5 543.25 C 185.5 550.566406 179.566406 556.5 172.25 556.5 C 164.933594 556.5 159 550.566406 159 543.25 L 159 357.75 C 159 350.433594 164.933594 344.5 172.25 344.5 Z M 172.25 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333333%,14.509804%,3.921569%);fill-opacity:1;" />
4
+ <path d="M 106 0 L 477 0 C 506.269531 0 530 23.730469 530 53 L 530 265 C 530 294.269531 506.269531 318 477 318 L 106 318 C 76.726562 318 53 294.269531 53 265 L 53 53 C 53 23.730469 76.726562 0 106 0 Z M 106 0 " style=" stroke:none;fill-rule:nonzero;fill:rgb(87.058824%,88.235294%,78.431373%);fill-opacity:1;" />
5
+ <path d="M 79.5 61.023438 L 79.5 97.976562 C 79.5 117.042969 94.957031 132.5 114.023438 132.5 L 122.046875 132.5 C 128.863281 132.5 135.527344 130.480469 141.199219 126.699219 L 196.625 89.75 C 206.230469 83.34375 212 72.566406 212 61.023438 C 212 41.957031 196.542969 26.5 177.476562 26.5 L 114.023438 26.5 C 94.957031 26.5 79.5 41.957031 79.5 61.023438 Z M 79.5 61.023438 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
6
+ <path d="M 132.492188 424 L 53.722656 424 C 40.769531 424 29.714844 414.636719 27.585938 401.855469 L 0.367188 295.855469 C -2.039062 281.421875 7.714844 267.765625 22.148438 265.359375 C 23.589844 265.121094 25.046875 265 26.507812 265 L 105.277344 265 C 118.230469 265 129.285156 274.367188 131.414062 287.144531 L 158.632812 393.144531 C 161.039062 407.582031 151.285156 421.234375 136.851562 423.640625 C 135.410156 423.878906 133.953125 424 132.492188 424 Z M 132.492188 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(55.686275%,39.607843%,11.764706%);fill-opacity:1;" />
7
+ <path d="M 15.492188 288.195312 C 8.167969 288.195312 2.234375 294.136719 2.234375 301.460938 C 2.234375 302.554688 2.371094 303.648438 2.640625 304.710938 L 22.433594 381.789062 C 24.277344 388.871094 31.511719 393.121094 38.59375 391.277344 C 45.660156 389.4375 49.90625 382.226562 48.089844 375.15625 L 28.316406 298.152344 C 26.8125 292.296875 21.539062 288.203125 15.492188 288.195312 Z M 15.492188 288.195312 " style=" stroke:none;fill-rule:nonzero;fill:rgb(61.176471%,47.058824%,22.745098%);fill-opacity:1;" />
8
+ <path d="M 225.25 424 L 39.75 424 C 32.433594 424 26.5 418.066406 26.5 410.75 C 26.5 403.433594 32.433594 397.5 39.75 397.5 L 225.25 397.5 C 232.566406 397.5 238.5 403.433594 238.5 410.75 C 238.5 418.066406 232.566406 424 225.25 424 Z M 225.25 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(73.333333%,63.529412%,46.666667%);fill-opacity:1;" />
9
+ <path d="M 119.25 424 L 39.75 424 C 32.433594 424 26.5 418.066406 26.5 410.75 C 26.5 403.433594 32.433594 397.5 39.75 397.5 L 119.25 397.5 C 126.566406 397.5 132.5 403.433594 132.5 410.75 C 132.5 418.066406 126.566406 424 119.25 424 Z M 119.25 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(61.176471%,47.058824%,22.745098%);fill-opacity:1;" />
10
+ <path d="M 79.5 424 L 79.5 450.5 L 185.5 450.5 C 200.136719 450.5 212 462.363281 212 477 L 212 503.5 C 212 518.132812 200.136719 530 185.5 530 L 79.5 530 L 79.5 556.5 L 185.5 556.5 C 214.769531 556.5 238.5 532.769531 238.5 503.5 L 238.5 477 C 238.5 447.726562 214.769531 424 185.5 424 Z M 79.5 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(87.058824%,88.235294%,78.431373%);fill-opacity:1;" />
11
+ <path d="M 92.75 424 L 172.25 424 C 179.566406 424 185.5 429.933594 185.5 437.25 C 185.5 444.566406 179.566406 450.5 172.25 450.5 L 92.75 450.5 C 85.433594 450.5 79.5 444.566406 79.5 437.25 C 79.5 429.933594 85.433594 424 92.75 424 Z M 92.75 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
12
+ <path d="M 119.25 556.5 L 66.25 556.5 C 58.933594 556.5 53 550.566406 53 543.25 C 53 535.933594 58.933594 530 66.25 530 L 119.25 530 C 126.566406 530 132.5 535.933594 132.5 543.25 C 132.5 550.566406 126.566406 556.5 119.25 556.5 Z M 119.25 556.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
13
+ <path d="M 53 424 L 53 450.5 L 79.5 450.5 C 94.136719 450.5 106 462.363281 106 477 L 106 503.5 C 106 518.132812 94.136719 530 79.5 530 L 26.5 530 L 26.5 556.5 L 79.5 556.5 C 108.769531 556.5 132.5 532.769531 132.5 503.496094 L 132.5 477 C 132.5 447.726562 108.769531 423.996094 79.5 423.996094 L 53 423.996094 Z M 53 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
14
+ <path d="M 39.75 556.5 L 13.25 556.5 C 5.933594 556.5 0 550.566406 0 543.25 C 0 535.933594 5.933594 530 13.25 530 L 39.75 530 C 47.066406 530 53 535.933594 53 543.25 C 53 550.566406 47.066406 556.5 39.75 556.5 Z M 39.75 556.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
15
+ <path d="M 66.25 450.5 L 39.75 450.5 C 32.433594 450.5 26.5 444.566406 26.5 437.25 C 26.5 429.933594 32.433594 424 39.75 424 L 66.25 424 C 73.566406 424 79.5 429.933594 79.5 437.25 C 79.5 444.566406 73.566406 450.5 66.25 450.5 Z M 66.25 450.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(87.058824%,88.235294%,78.431373%);fill-opacity:1;" />
16
+ <path d="M 450.507812 424 L 529.277344 424 C 542.230469 424 553.285156 414.636719 555.414062 401.855469 L 582.632812 295.855469 C 585.039062 281.421875 575.285156 267.765625 560.851562 265.359375 C 559.410156 265.121094 557.953125 265 556.492188 265 L 477.722656 265 C 464.769531 265 453.714844 274.367188 451.585938 287.144531 L 424.367188 393.144531 C 421.960938 407.582031 431.714844 421.234375 446.148438 423.640625 C 447.589844 423.878906 449.046875 424 450.507812 424 Z M 450.507812 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(55.686275%,39.607843%,11.764706%);fill-opacity:1;" />
17
+ <path d="M 490.25 265 L 543.25 265 C 550.566406 265 556.5 270.933594 556.5 278.25 C 556.5 285.566406 550.566406 291.5 543.25 291.5 L 490.25 291.5 C 482.933594 291.5 477 285.566406 477 278.25 C 477 270.933594 482.933594 265 490.25 265 Z M 490.25 265 " style=" stroke:none;fill-rule:nonzero;fill:rgb(66.27451%,54.117647%,32.941176%);fill-opacity:1;" />
18
+ <path d="M 567.507812 288.195312 C 561.460938 288.203125 556.1875 292.296875 554.683594 298.152344 L 534.910156 375.15625 C 533.089844 382.242188 537.363281 389.464844 544.449219 391.28125 C 551.519531 393.097656 558.726562 388.851562 560.566406 381.789062 L 580.359375 304.710938 C 582.15625 297.609375 577.859375 290.398438 570.757812 288.601562 C 569.695312 288.332031 568.605469 288.195312 567.507812 288.195312 Z M 567.507812 288.195312 " style=" stroke:none;fill-rule:nonzero;fill:rgb(45.882353%,29.803922%,1.176471%);fill-opacity:1;" />
19
+ <path d="M 437.25 371 L 516.75 371 C 524.066406 371 530 376.933594 530 384.25 C 530 391.566406 524.066406 397.5 516.75 397.5 L 437.25 397.5 C 429.933594 397.5 424 391.566406 424 384.25 C 424 376.933594 429.933594 371 437.25 371 Z M 437.25 371 " style=" stroke:none;fill-rule:nonzero;fill:rgb(45.882353%,29.803922%,1.176471%);fill-opacity:1;" />
20
+ <path d="M 66.25 371 L 145.75 371 C 153.066406 371 159 376.933594 159 384.25 C 159 391.566406 153.066406 397.5 145.75 397.5 L 66.25 397.5 C 58.933594 397.5 53 391.566406 53 384.25 C 53 376.933594 58.933594 371 66.25 371 Z M 66.25 371 " style=" stroke:none;fill-rule:nonzero;fill:rgb(45.882353%,29.803922%,1.176471%);fill-opacity:1;" />
21
+ <path d="M 357.75 397.5 L 543.25 397.5 C 550.566406 397.5 556.5 403.433594 556.5 410.75 C 556.5 418.066406 550.566406 424 543.25 424 L 357.75 424 C 350.433594 424 344.5 418.066406 344.5 410.75 C 344.5 403.433594 350.433594 397.5 357.75 397.5 Z M 357.75 397.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(73.333333%,63.529412%,46.666667%);fill-opacity:1;" />
22
+ <path d="M 463.75 397.5 L 543.25 397.5 C 550.566406 397.5 556.5 403.433594 556.5 410.75 C 556.5 418.066406 550.566406 424 543.25 424 L 463.75 424 C 456.433594 424 450.5 418.066406 450.5 410.75 C 450.5 403.433594 456.433594 397.5 463.75 397.5 Z M 463.75 397.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(61.176471%,47.058824%,22.745098%);fill-opacity:1;" />
23
+ <path d="M 503.5 424 L 503.5 450.5 L 397.5 450.5 C 382.863281 450.5 371 462.363281 371 477 L 371 503.5 C 371 518.132812 382.863281 530 397.5 530 L 450.5 530 L 450.5 556.5 L 397.5 556.5 C 368.230469 556.5 344.5 532.769531 344.5 503.5 L 344.5 477 C 344.5 447.726562 368.230469 424 397.5 424 Z M 503.5 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(87.058824%,88.235294%,78.431373%);fill-opacity:1;" />
24
+ <path d="M 463.75 424 L 543.25 424 C 550.566406 424 556.5 429.933594 556.5 437.25 C 556.5 444.566406 550.566406 450.5 543.25 450.5 L 463.75 450.5 C 456.433594 450.5 450.5 444.566406 450.5 437.25 C 450.5 429.933594 456.433594 424 463.75 424 Z M 463.75 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
25
+ <path d="M 357.75 477 C 365.066406 477 371 482.933594 371 490.25 L 371 516.75 C 371 524.066406 365.066406 530 357.75 530 C 350.433594 530 344.5 524.066406 344.5 516.75 L 344.5 490.25 C 344.5 482.933594 350.433594 477 357.75 477 Z M 357.75 477 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
26
+ <path d="M 437.25 530 L 516.75 530 C 524.066406 530 530 535.933594 530 543.25 C 530 550.566406 524.066406 556.5 516.75 556.5 L 437.25 556.5 C 429.933594 556.5 424 550.566406 424 543.25 C 424 535.933594 429.933594 530 437.25 530 Z M 437.25 530 " style=" stroke:none;fill-rule:nonzero;fill:rgb(87.058824%,88.235294%,78.431373%);fill-opacity:1;" />
27
+ <path d="M 463.75 530 L 543.25 530 C 550.566406 530 556.5 535.933594 556.5 543.25 C 556.5 550.566406 550.566406 556.5 543.25 556.5 L 463.75 556.5 C 456.433594 556.5 450.5 550.566406 450.5 543.25 C 450.5 535.933594 456.433594 530 463.75 530 Z M 463.75 530 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
28
+ <path d="M 530 424 L 530 450.5 L 503.5 450.5 C 488.863281 450.5 477 462.363281 477 477 L 477 503.5 C 477 518.132812 488.863281 530 503.5 530 L 556.5 530 L 556.5 556.5 L 503.5 556.5 C 474.230469 556.5 450.5 532.769531 450.5 503.5 L 450.5 477 C 450.5 447.726562 474.230469 424 503.5 424 Z M 530 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
29
+ <path d="M 543.25 530 L 569.75 530 C 577.066406 530 583 535.933594 583 543.25 C 583 550.566406 577.066406 556.5 569.75 556.5 L 543.25 556.5 C 535.933594 556.5 530 550.566406 530 543.25 C 530 535.933594 535.933594 530 543.25 530 Z M 543.25 530 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
30
+ <path d="M 516.75 424 L 543.25 424 C 550.566406 424 556.5 429.933594 556.5 437.25 C 556.5 444.566406 550.566406 450.5 543.25 450.5 L 516.75 450.5 C 509.433594 450.5 503.5 444.566406 503.5 437.25 C 503.5 429.933594 509.433594 424 516.75 424 Z M 516.75 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
31
+ <path d="M 39.75 344.5 C 47.066406 344.5 53 350.433594 53 357.75 L 53 543.25 C 53 550.566406 47.066406 556.5 39.75 556.5 C 32.433594 556.5 26.5 550.566406 26.5 543.25 L 26.5 357.75 C 26.5 350.433594 32.433594 344.5 39.75 344.5 Z M 39.75 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333333%,14.509804%,3.921569%);fill-opacity:1;" />
32
+ <path d="M 13.25 344.5 L 569.75 344.5 C 577.066406 344.5 583 350.433594 583 357.75 C 583 365.066406 577.066406 371 569.75 371 L 13.25 371 C 5.933594 371 0 365.066406 0 357.75 C 0 350.433594 5.933594 344.5 13.25 344.5 Z M 13.25 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(43.921569%,23.137255%,14.509804%);fill-opacity:1;" />
33
+ <path d="M 384.25 344.5 L 569.75 344.5 C 577.066406 344.5 583 350.433594 583 357.75 C 583 365.066406 577.066406 371 569.75 371 L 384.25 371 C 376.933594 371 371 365.066406 371 357.75 C 371 350.433594 376.933594 344.5 384.25 344.5 Z M 384.25 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333333%,14.509804%,3.921569%);fill-opacity:1;" />
34
+ <path d="M 225.25 424 L 384.25 424 C 391.566406 424 397.5 429.933594 397.5 437.25 C 397.5 444.566406 391.566406 450.5 384.25 450.5 L 225.25 450.5 C 217.933594 450.5 212 444.566406 212 437.25 C 212 429.933594 217.933594 424 225.25 424 Z M 225.25 424 " style=" stroke:none;fill-rule:nonzero;fill:rgb(55.686275%,39.607843%,11.764706%);fill-opacity:1;" />
35
+ <path d="M 238.5 291.5 L 318 291.5 C 332.636719 291.5 344.5 303.363281 344.5 318 L 344.5 424 C 344.5 438.632812 332.636719 450.5 318 450.5 L 238.5 450.5 C 223.863281 450.5 212 438.632812 212 424 L 212 318 C 212 303.363281 223.863281 291.5 238.5 291.5 Z M 238.5 291.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(45.882353%,29.803922%,1.176471%);fill-opacity:1;" />
36
+ <path d="M 331.25 318 C 338.566406 318 344.5 323.933594 344.5 331.25 L 344.5 410.75 C 344.5 418.066406 338.566406 424 331.25 424 C 323.933594 424 318 418.066406 318 410.75 L 318 331.25 C 318 323.933594 323.933594 318 331.25 318 Z M 331.25 318 " style=" stroke:none;fill-rule:nonzero;fill:rgb(41.568627%,23.529412%,0%);fill-opacity:1;" />
37
+ <path d="M 318 450.5 L 318 477 L 344.5 477 C 359.136719 477 371 488.863281 371 503.5 L 371 530 C 371 544.632812 359.136719 556.5 344.5 556.5 L 291.5 556.5 L 291.5 582.996094 L 344.5 582.996094 C 373.769531 582.996094 397.5 559.269531 397.5 529.996094 L 397.5 503.496094 C 397.5 474.226562 373.769531 450.496094 344.5 450.496094 L 318 450.496094 Z M 318 450.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039216%,77.254902%,63.529412%);fill-opacity:1;" />
38
+ <path d="M 304.75 583 L 278.25 583 C 270.933594 583 265 577.066406 265 569.75 C 265 562.433594 270.933594 556.5 278.25 556.5 L 304.75 556.5 C 312.066406 556.5 318 562.433594 318 569.75 C 318 577.066406 312.066406 583 304.75 583 Z M 304.75 583 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
39
+ <path d="M 331.25 477 L 304.75 477 C 297.433594 477 291.5 471.066406 291.5 463.75 C 291.5 456.433594 297.433594 450.5 304.75 450.5 L 331.25 450.5 C 338.566406 450.5 344.5 456.433594 344.5 463.75 C 344.5 471.066406 338.566406 477 331.25 477 Z M 331.25 477 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
40
+ <path d="M 238.5 450.5 L 238.5 477 L 265 477 C 279.636719 477 291.5 488.863281 291.5 503.5 L 291.5 530 C 291.5 544.632812 279.636719 556.5 265 556.5 L 212 556.5 L 212 582.996094 L 265 582.996094 C 294.269531 582.996094 318 559.269531 318 529.996094 L 318 503.496094 C 318 474.226562 294.269531 450.496094 265 450.496094 L 238.5 450.496094 Z M 238.5 450.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
41
+ <path d="M 318 490.25 C 318 497.566406 312.066406 503.5 304.75 503.5 C 297.433594 503.5 291.5 497.566406 291.5 490.25 C 291.5 482.933594 297.433594 477 304.75 477 C 312.066406 477 318 482.933594 318 490.25 Z M 318 490.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098039%,61.176471%,41.960784%);fill-opacity:1;" />
42
+ <path d="M 225.25 583 L 198.75 583 C 191.433594 583 185.5 577.066406 185.5 569.75 C 185.5 562.433594 191.433594 556.5 198.75 556.5 L 225.25 556.5 C 232.566406 556.5 238.5 562.433594 238.5 569.75 C 238.5 577.066406 232.566406 583 225.25 583 Z M 225.25 583 " style=" stroke:none;fill-rule:nonzero;fill:rgb(93.333333%,93.72549%,88.235294%);fill-opacity:1;" />
43
+ <path d="M 357.75 477 L 225.25 477 C 217.933594 477 212 471.066406 212 463.75 C 212 456.433594 217.933594 450.5 225.25 450.5 L 357.75 450.5 C 365.066406 450.5 371 456.433594 371 463.75 C 371 471.066406 365.066406 477 357.75 477 Z M 357.75 477 " style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039216%,77.254902%,63.529412%);fill-opacity:1;" />
44
+ <path d="M 344.5 583 L 198.75 583 C 191.433594 583 185.5 577.066406 185.5 569.75 C 185.5 562.433594 191.433594 556.5 198.75 556.5 L 344.5 556.5 C 351.816406 556.5 357.75 562.433594 357.75 569.75 C 357.75 577.066406 351.816406 583 344.5 583 Z M 344.5 583 " style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039216%,77.254902%,63.529412%);fill-opacity:1;" />
45
+ <path d="M 410.75 344.5 C 418.066406 344.5 424 350.433594 424 357.75 L 424 543.25 C 424 550.566406 418.066406 556.5 410.75 556.5 C 403.433594 556.5 397.5 550.566406 397.5 543.25 L 397.5 357.75 C 397.5 350.433594 403.433594 344.5 410.75 344.5 Z M 410.75 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333333%,14.509804%,3.921569%);fill-opacity:1;" />
46
+ <path d="M 543.25 344.5 C 550.566406 344.5 556.5 350.433594 556.5 357.75 L 556.5 543.25 C 556.5 550.566406 550.566406 556.5 543.25 556.5 C 535.933594 556.5 530 550.566406 530 543.25 L 530 357.75 C 530 350.433594 535.933594 344.5 543.25 344.5 Z M 543.25 344.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333333%,14.509804%,3.921569%);fill-opacity:1;" />
47
+ <path d="M 291.5 159 C 291.5 217.542969 244.042969 265 185.5 265 C 126.957031 265 79.5 217.542969 79.5 159 C 79.5 100.457031 126.957031 53 185.5 53 C 244.042969 53 291.5 100.457031 291.5 159 Z M 291.5 159 " style=" stroke:none;fill-rule:nonzero;fill:rgb(19.607843%,62.745098%,39.607843%);fill-opacity:1;" />
48
+ <path d="M 291.5 159 L 185.5 159 L 185.5 265 C 244.042969 265 291.5 217.542969 291.5 159 Z M 291.5 159 " style=" stroke:none;fill-rule:nonzero;fill:rgb(27.058824%,9.411765%,0%);fill-opacity:1;" />
49
+ <path d="M 185.5 159 L 291.5 159 C 291.535156 130.878906 280.363281 103.90625 260.453125 84.046875 Z M 185.5 159 " style=" stroke:none;fill-rule:nonzero;fill:rgb(39.215686%,81.568627%,70.588235%);fill-opacity:1;" />
50
+ <path d="M 344.5 53 C 359.136719 53 371 64.863281 371 79.5 C 371 94.136719 359.136719 106 344.5 106 C 329.863281 106 318 94.136719 318 79.5 C 318 64.863281 329.863281 53 344.5 53 Z M 344.5 53 " style=" stroke:none;fill-rule:nonzero;fill:rgb(19.607843%,62.745098%,39.607843%);fill-opacity:1;" />
51
+ <path d="M 344.5 132.5 C 359.136719 132.5 371 144.363281 371 159 C 371 173.636719 359.136719 185.5 344.5 185.5 C 329.863281 185.5 318 173.636719 318 159 C 318 144.363281 329.863281 132.5 344.5 132.5 Z M 344.5 132.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(39.215686%,81.568627%,70.588235%);fill-opacity:1;" />
52
+ <path d="M 344.5 212 C 359.136719 212 371 223.863281 371 238.5 C 371 253.132812 359.136719 265 344.5 265 C 329.863281 265 318 253.132812 318 238.5 C 318 223.863281 329.863281 212 344.5 212 Z M 344.5 212 " style=" stroke:none;fill-rule:nonzero;fill:rgb(27.058824%,9.411765%,0%);fill-opacity:1;" />
53
+ <path d="M 410.75 53 L 490.25 53 C 497.566406 53 503.5 58.933594 503.5 66.25 C 503.5 73.566406 497.566406 79.5 490.25 79.5 L 410.75 79.5 C 403.433594 79.5 397.5 73.566406 397.5 66.25 C 397.5 58.933594 403.433594 53 410.75 53 Z M 410.75 53 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
54
+ <path d="M 410.75 132.5 L 490.25 132.5 C 497.566406 132.5 503.5 138.433594 503.5 145.75 C 503.5 153.066406 497.566406 159 490.25 159 L 410.75 159 C 403.433594 159 397.5 153.066406 397.5 145.75 C 397.5 138.433594 403.433594 132.5 410.75 132.5 Z M 410.75 132.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
55
+ <path d="M 410.75 212 L 490.25 212 C 497.566406 212 503.5 217.933594 503.5 225.25 C 503.5 232.566406 497.566406 238.5 490.25 238.5 L 410.75 238.5 C 403.433594 238.5 397.5 232.566406 397.5 225.25 C 397.5 217.933594 403.433594 212 410.75 212 Z M 410.75 212 " style=" stroke:none;fill-rule:nonzero;fill:rgb(70.980392%,67.843137%,51.764706%);fill-opacity:1;" />
56
+ <path d="M 53 384.25 C 53 391.566406 47.066406 397.5 39.75 397.5 C 32.433594 397.5 26.5 391.566406 26.5 384.25 C 26.5 376.933594 32.433594 371 39.75 371 C 47.066406 371 53 376.933594 53 384.25 Z M 53 384.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(27.058824%,9.411765%,0%);fill-opacity:1;" />
57
+ <path d="M 185.5 384.25 C 185.5 391.566406 179.566406 397.5 172.25 397.5 C 164.933594 397.5 159 391.566406 159 384.25 C 159 376.933594 164.933594 371 172.25 371 C 179.566406 371 185.5 376.933594 185.5 384.25 Z M 185.5 384.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(20.784314%,4.313725%,0%);fill-opacity:1;" />
58
+ <path d="M 556.5 384.25 C 556.5 391.566406 550.566406 397.5 543.25 397.5 C 535.933594 397.5 530 391.566406 530 384.25 C 530 376.933594 535.933594 371 543.25 371 C 550.566406 371 556.5 376.933594 556.5 384.25 Z M 556.5 384.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(27.058824%,9.411765%,0%);fill-opacity:1;" />
59
+ <path d="M 424 384.25 C 424 391.566406 418.066406 397.5 410.75 397.5 C 403.433594 397.5 397.5 391.566406 397.5 384.25 C 397.5 376.933594 403.433594 371 410.75 371 C 418.066406 371 424 376.933594 424 384.25 Z M 424 384.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(27.058824%,9.411765%,0%);fill-opacity:1;" />
60
+ <path d="M 39.75 265 L 92.75 265 C 100.066406 265 106 270.933594 106 278.25 C 106 285.566406 100.066406 291.5 92.75 291.5 L 39.75 291.5 C 32.433594 291.5 26.5 285.566406 26.5 278.25 C 26.5 270.933594 32.433594 265 39.75 265 Z M 39.75 265 " style=" stroke:none;fill-rule:nonzero;fill:rgb(66.27451%,54.117647%,32.941176%);fill-opacity:1;" />
61
+ <path d="M 371 92.75 C 371 100.066406 365.066406 106 357.75 106 C 350.433594 106 344.5 100.066406 344.5 92.75 C 344.5 85.433594 350.433594 79.5 357.75 79.5 C 365.066406 79.5 371 85.433594 371 92.75 Z M 371 92.75 " style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,44.313725%,25.098039%);fill-opacity:1;" />
62
+ <path d="M 371 172.25 C 371 179.566406 365.066406 185.5 357.75 185.5 C 350.433594 185.5 344.5 179.566406 344.5 172.25 C 344.5 164.933594 350.433594 159 357.75 159 C 365.066406 159 371 164.933594 371 172.25 Z M 371 172.25 " style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,65.490196%,53.72549%);fill-opacity:1;" />
63
+ <path d="M 371 251.75 C 371 259.066406 365.066406 265 357.75 265 C 350.433594 265 344.5 259.066406 344.5 251.75 C 344.5 244.433594 350.433594 238.5 357.75 238.5 C 365.066406 238.5 371 244.433594 371 251.75 Z M 371 251.75 " style=" stroke:none;fill-rule:nonzero;fill:rgb(20.784314%,4.313725%,0%);fill-opacity:1;" />
64
+ <path d="M 185.5 79.5 C 141.59375 79.5 106 115.09375 106 159 L 106 159.785156 L 106.003906 159.898438 L 106.003906 160.164062 L 106.007812 160.277344 L 106.007812 160.421875 L 106.011719 160.535156 L 106.011719 160.652344 L 106.015625 160.683594 L 106.015625 160.796875 L 106.019531 160.910156 L 106.019531 160.941406 L 106.023438 161.03125 L 106.023438 161.058594 L 106.027344 161.171875 L 106.027344 161.289062 L 106.03125 161.320312 L 106.03125 161.445312 L 106.035156 161.546875 L 106.035156 161.578125 L 106.039062 161.6875 L 106.039062 161.691406 L 106.042969 161.808594 L 106.046875 161.832031 L 106.050781 161.933594 L 106.050781 161.953125 L 106.054688 162.066406 L 106.054688 162.09375 L 106.058594 162.183594 L 106.0625 162.210938 L 106.066406 162.324219 L 106.066406 162.335938 L 106.070312 162.441406 L 106.070312 162.46875 L 106.074219 162.574219 L 106.078125 162.585938 L 106.082031 162.699219 L 106.082031 162.726562 L 106.085938 162.816406 L 106.085938 162.847656 L 106.09375 162.957031 L 106.09375 162.980469 L 106.097656 163.070312 L 106.101562 163.105469 L 106.105469 163.21875 L 106.105469 163.222656 L 106.113281 163.332031 L 106.113281 163.359375 L 106.121094 163.46875 L 106.121094 163.472656 L 106.125 163.589844 L 106.128906 163.613281 L 106.132812 163.710938 L 106.132812 163.730469 L 106.140625 163.847656 L 106.144531 163.863281 L 106.148438 163.964844 L 106.148438 163.988281 L 106.15625 164.105469 L 106.164062 164.21875 L 106.164062 164.246094 L 106.171875 164.355469 L 106.171875 164.359375 L 106.179688 164.476562 L 106.183594 164.5 L 106.1875 164.597656 L 106.191406 164.617188 L 106.199219 164.734375 L 106.199219 164.742188 L 106.207031 164.851562 L 106.207031 164.875 L 106.226562 165.105469 L 106.226562 165.132812 L 106.234375 165.230469 L 106.234375 165.246094 L 106.246094 165.359375 L 106.246094 165.382812 L 106.253906 165.476562 L 106.257812 165.503906 L 106.265625 165.617188 L 106.269531 165.632812 L 106.277344 165.730469 L 106.277344 165.757812 L 106.296875 165.988281 L 106.300781 166.007812 L 106.308594 166.113281 L 106.308594 166.125 L 106.320312 166.242188 L 106.320312 166.257812 L 106.332031 166.359375 L 106.332031 166.382812 L 106.34375 166.496094 L 106.34375 166.503906 L 106.355469 166.609375 L 106.359375 166.636719 L 106.378906 166.867188 L 106.382812 166.886719 L 106.390625 166.988281 L 106.394531 167.003906 L 106.40625 167.117188 L 106.40625 167.140625 L 106.417969 167.238281 L 106.417969 167.257812 L 106.441406 167.492188 L 106.445312 167.507812 C 106.453125 167.585938 106.460938 167.664062 106.46875 167.742188 L 106.472656 167.761719 L 106.484375 167.867188 L 106.484375 167.878906 L 106.496094 167.996094 L 106.5 168.011719 L 106.511719 168.109375 L 106.515625 168.136719 L 106.539062 168.363281 L 106.542969 168.386719 L 106.570312 168.617188 L 106.574219 168.636719 L 106.585938 168.746094 L 106.585938 168.75 L 106.601562 168.871094 L 106.601562 168.878906 L 106.617188 168.988281 L 106.617188 169.003906 L 106.648438 169.238281 L 106.652344 169.253906 L 106.683594 169.488281 L 106.683594 169.5 L 106.699219 169.613281 L 106.699219 169.617188 L 106.734375 169.859375 L 106.734375 169.871094 L 106.765625 170.105469 L 106.769531 170.121094 L 106.804688 170.359375 L 106.804688 170.363281 L 106.820312 170.484375 C 106.832031 170.566406 106.84375 170.644531 106.855469 170.726562 L 106.855469 170.734375 L 106.890625 170.972656 L 106.894531 170.984375 L 106.929688 171.222656 L 106.929688 171.230469 L 106.949219 171.347656 L 106.988281 171.589844 L 106.988281 171.597656 L 107.027344 171.835938 L 107.027344 171.84375 C 107.039062 171.925781 107.054688 172.003906 107.066406 172.085938 L 107.066406 172.089844 C 107.101562 172.292969 107.136719 172.492188 107.171875 172.699219 L 107.171875 172.703125 C 107.191406 172.824219 107.214844 172.945312 107.234375 173.066406 C 107.25 173.148438 107.265625 173.226562 107.277344 173.308594 L 107.28125 173.3125 C 107.296875 173.394531 107.308594 173.472656 107.324219 173.554688 L 107.324219 173.558594 C 107.363281 173.761719 107.398438 173.960938 107.4375 174.164062 L 107.441406 174.167969 C 107.496094 174.453125 107.550781 174.730469 107.609375 175.015625 L 107.609375 175.019531 C 112.351562 197.992188 126.980469 217.707031 147.597656 228.898438 L 147.601562 228.898438 C 147.667969 228.9375 147.738281 228.976562 147.808594 229.011719 L 147.816406 229.015625 C 147.882812 229.050781 147.953125 229.089844 148.019531 229.125 L 148.027344 229.128906 C 148.097656 229.167969 148.164062 229.203125 148.234375 229.238281 L 148.238281 229.242188 L 148.335938 229.292969 L 148.34375 229.296875 C 148.414062 229.335938 148.480469 229.371094 148.550781 229.40625 L 148.558594 229.410156 L 148.765625 229.519531 L 148.773438 229.523438 L 148.867188 229.574219 L 148.875 229.578125 L 148.976562 229.632812 L 148.988281 229.636719 L 149.078125 229.683594 L 149.09375 229.6875 L 149.125 229.707031 C 155.628906 233.054688 163.621094 230.496094 166.972656 223.992188 C 170.320312 217.488281 167.761719 209.496094 161.257812 206.144531 C 135.222656 192.753906 124.972656 160.792969 138.367188 134.757812 C 147.449219 117.097656 165.636719 105.996094 185.492188 105.992188 C 192.8125 105.988281 198.742188 100.054688 198.734375 92.734375 C 198.738281 85.429688 192.8125 79.503906 185.5 79.5 Z M 185.5 79.5 " style=" stroke:none;fill-rule:nonzero;fill:rgb(54.509804%,78.823529%,65.490196%);fill-opacity:1;" />
65
+ <path d="M 276.160156 165.367188 C 269.921875 165.375 264.535156 169.730469 263.21875 175.832031 C 256.058594 209.332031 228.171875 234.429688 194.105469 238.042969 C 186.828125 238.820312 181.5625 245.355469 182.34375 252.628906 C 183.066406 259.355469 188.738281 264.457031 195.503906 264.46875 C 195.964844 264.46875 196.421875 264.445312 196.878906 264.398438 C 223.539062 261.539062 248.121094 248.660156 265.648438 228.371094 L 265.652344 228.367188 C 265.792969 228.207031 265.929688 228.050781 266.066406 227.890625 L 266.070312 227.886719 C 266.207031 227.726562 266.34375 227.566406 266.480469 227.40625 L 266.480469 227.402344 C 266.566406 227.300781 266.652344 227.203125 266.734375 227.101562 L 266.886719 226.917969 L 266.890625 226.914062 C 267.027344 226.753906 267.160156 226.589844 267.292969 226.429688 L 267.300781 226.421875 C 267.570312 226.097656 267.835938 225.769531 268.097656 225.441406 L 268.101562 225.4375 L 268.199219 225.316406 C 268.332031 225.152344 268.464844 224.988281 268.59375 224.824219 L 268.597656 224.816406 L 268.742188 224.632812 L 268.746094 224.628906 L 268.890625 224.449219 L 268.902344 224.433594 L 268.988281 224.324219 L 268.996094 224.316406 L 269.136719 224.132812 L 269.140625 224.128906 L 269.285156 223.945312 L 269.292969 223.933594 L 269.386719 223.808594 L 269.523438 223.632812 L 269.535156 223.617188 L 269.621094 223.507812 L 269.628906 223.5 L 269.671875 223.441406 L 269.6875 223.421875 L 269.761719 223.324219 L 269.777344 223.304688 C 269.820312 223.246094 269.863281 223.1875 269.910156 223.128906 L 269.925781 223.105469 L 270 223.011719 L 270.015625 222.992188 L 270.058594 222.933594 L 270.070312 222.914062 L 270.144531 222.816406 L 270.164062 222.792969 L 270.25 222.679688 L 270.292969 222.621094 L 270.308594 222.601562 L 270.382812 222.503906 L 270.398438 222.480469 L 270.4375 222.429688 L 270.464844 222.394531 L 270.523438 222.3125 L 270.550781 222.28125 L 270.613281 222.195312 L 270.632812 222.164062 L 270.671875 222.113281 L 270.695312 222.082031 L 270.757812 221.996094 L 270.78125 221.96875 L 270.816406 221.917969 L 270.847656 221.875 L 270.902344 221.796875 L 270.925781 221.769531 L 270.988281 221.683594 L 271.011719 221.652344 L 271.050781 221.601562 L 271.074219 221.566406 L 271.132812 221.488281 L 271.160156 221.449219 L 271.191406 221.40625 L 271.277344 221.289062 L 271.308594 221.246094 L 271.351562 221.183594 L 271.390625 221.132812 L 271.425781 221.085938 L 271.507812 220.96875 L 271.535156 220.933594 L 271.570312 220.886719 L 271.621094 220.816406 L 271.683594 220.730469 L 271.726562 220.667969 L 271.765625 220.613281 L 271.796875 220.570312 L 271.832031 220.519531 L 271.878906 220.457031 L 271.910156 220.410156 L 271.941406 220.371094 L 271.992188 220.296875 L 272.023438 220.253906 L 272.054688 220.207031 L 272.097656 220.148438 L 272.136719 220.09375 L 272.167969 220.046875 L 272.207031 219.996094 L 272.25 219.933594 L 272.28125 219.886719 L 272.308594 219.847656 L 272.363281 219.773438 L 272.390625 219.730469 L 272.425781 219.683594 L 272.46875 219.621094 L 272.503906 219.570312 L 272.535156 219.523438 L 272.570312 219.472656 L 272.617188 219.410156 L 272.648438 219.363281 L 272.675781 219.324219 L 272.726562 219.253906 L 272.757812 219.203125 L 272.789062 219.160156 L 272.832031 219.097656 L 272.871094 219.042969 L 272.898438 219.003906 L 272.949219 218.933594 L 272.976562 218.890625 L 273.011719 218.835938 L 273.039062 218.800781 L 273.089844 218.722656 L 273.117188 218.6875 L 273.160156 218.621094 L 273.1875 218.582031 L 273.234375 218.511719 L 273.257812 218.480469 L 273.3125 218.398438 L 273.332031 218.367188 L 273.378906 218.296875 L 273.394531 218.277344 L 273.453125 218.1875 L 273.472656 218.160156 L 273.53125 218.074219 L 273.59375 217.980469 L 273.613281 217.949219 L 273.671875 217.863281 L 273.683594 217.84375 L 273.738281 217.765625 L 273.75 217.746094 L 273.808594 217.65625 L 273.828125 217.628906 L 273.878906 217.550781 L 273.898438 217.519531 L 273.949219 217.445312 L 273.964844 217.417969 L 274.023438 217.332031 L 274.09375 217.226562 L 274.101562 217.210938 L 274.164062 217.121094 L 274.179688 217.09375 L 274.238281 217.003906 L 274.300781 216.910156 L 274.320312 216.882812 L 274.375 216.796875 L 274.390625 216.773438 L 274.441406 216.695312 L 274.453125 216.675781 L 274.511719 216.585938 L 274.527344 216.5625 L 274.585938 216.46875 L 274.59375 216.457031 L 274.652344 216.367188 L 274.664062 216.351562 L 274.722656 216.257812 L 274.734375 216.238281 L 274.796875 216.144531 L 274.796875 216.140625 L 274.875 216.023438 L 274.933594 215.929688 L 274.996094 215.835938 L 275.011719 215.808594 L 275.070312 215.71875 L 275.082031 215.699219 L 275.140625 215.605469 L 275.144531 215.601562 L 275.203125 215.503906 L 275.21875 215.484375 L 275.277344 215.390625 L 275.285156 215.375 L 275.339844 215.285156 L 275.351562 215.269531 L 275.410156 215.175781 L 275.421875 215.15625 L 275.542969 214.960938 L 275.558594 214.9375 L 275.617188 214.84375 L 275.625 214.832031 L 275.679688 214.742188 L 275.691406 214.722656 L 275.75 214.628906 L 275.757812 214.613281 L 275.882812 214.410156 L 275.894531 214.394531 L 275.953125 214.296875 L 275.960938 214.285156 L 276.019531 214.1875 L 276.023438 214.183594 L 276.085938 214.082031 L 276.097656 214.066406 C 276.136719 213.996094 276.179688 213.929688 276.222656 213.859375 L 276.226562 213.851562 L 276.289062 213.746094 L 276.292969 213.742188 L 276.355469 213.636719 L 276.355469 213.632812 L 276.421875 213.527344 L 276.425781 213.519531 L 276.550781 213.308594 L 276.558594 213.300781 L 276.617188 213.199219 L 276.625 213.1875 L 276.683594 213.085938 L 276.6875 213.085938 L 276.75 212.980469 L 276.753906 212.96875 C 276.796875 212.898438 276.835938 212.828125 276.878906 212.761719 L 276.882812 212.75 L 276.945312 212.644531 L 276.949219 212.636719 L 277.011719 212.535156 L 277.011719 212.53125 L 277.074219 212.425781 L 277.078125 212.417969 C 277.121094 212.347656 277.164062 212.273438 277.203125 212.203125 L 277.207031 212.199219 L 277.269531 212.089844 L 277.269531 212.085938 L 277.398438 211.867188 L 277.398438 211.863281 C 282.867188 202.382812 286.828125 192.105469 289.128906 181.40625 C 290.664062 174.246094 286.101562 167.195312 278.941406 165.660156 C 278.027344 165.464844 277.09375 165.367188 276.160156 165.367188 Z M 276.160156 165.367188 " style=" stroke:none;fill-rule:nonzero;fill:rgb(20.784314%,4.313725%,0%);fill-opacity:1;" />
66
+ <path d="M 260.0625 90.589844 C 252.746094 90.597656 246.816406 96.535156 246.824219 103.851562 C 246.828125 106.691406 247.738281 109.449219 249.425781 111.730469 C 257.34375 122.417969 262.445312 134.925781 264.261719 148.101562 C 265.15625 154.660156 270.753906 159.550781 277.371094 159.558594 C 277.980469 159.558594 278.582031 159.519531 279.183594 159.4375 C 286.429688 158.445312 291.503906 151.769531 290.515625 144.519531 L 290.515625 144.507812 L 290.503906 144.421875 L 290.5 144.378906 L 290.492188 144.324219 L 290.484375 144.277344 L 290.476562 144.226562 L 290.472656 144.1875 L 290.464844 144.125 L 290.453125 144.054688 L 290.4375 143.953125 L 290.433594 143.910156 L 290.425781 143.859375 L 290.421875 143.816406 L 290.390625 143.625 L 290.386719 143.589844 L 290.378906 143.535156 L 290.375 143.492188 L 290.367188 143.4375 L 290.359375 143.40625 L 290.339844 143.269531 L 290.332031 143.207031 L 290.328125 143.171875 L 290.316406 143.113281 L 290.3125 143.089844 L 290.28125 142.878906 L 290.277344 142.851562 L 290.265625 142.785156 L 290.265625 142.765625 L 290.253906 142.695312 L 290.25 142.683594 L 290.214844 142.453125 L 290.214844 142.445312 L 290.203125 142.371094 L 290.199219 142.355469 C 290.183594 142.25 290.167969 142.144531 290.148438 142.039062 L 290.148438 142.03125 C 288.007812 128.714844 283.324219 115.929688 276.359375 104.378906 L 276.359375 104.375 C 276.292969 104.265625 276.222656 104.148438 276.15625 104.039062 L 276.148438 104.027344 C 276.105469 103.960938 276.066406 103.898438 276.027344 103.832031 L 275.992188 103.769531 L 275.980469 103.753906 C 275.929688 103.671875 275.878906 103.585938 275.828125 103.503906 L 275.8125 103.484375 L 275.78125 103.429688 L 275.769531 103.414062 L 275.734375 103.355469 L 275.730469 103.347656 L 275.660156 103.234375 L 275.648438 103.214844 L 275.617188 103.164062 L 275.570312 103.09375 L 275.554688 103.0625 C 275.519531 103.007812 275.488281 102.957031 275.453125 102.902344 L 275.433594 102.871094 L 275.40625 102.824219 L 275.386719 102.792969 L 275.355469 102.75 L 275.339844 102.71875 L 275.292969 102.648438 L 275.265625 102.605469 L 275.242188 102.566406 L 275.21875 102.523438 L 275.164062 102.441406 L 275.144531 102.414062 L 275.097656 102.335938 L 275.085938 102.320312 L 275.046875 102.257812 L 275.03125 102.230469 L 274.996094 102.179688 L 274.980469 102.152344 L 274.941406 102.085938 L 274.929688 102.074219 L 274.882812 101.996094 L 274.867188 101.976562 L 274.828125 101.910156 L 274.816406 101.894531 L 274.773438 101.824219 L 274.765625 101.8125 L 274.660156 101.652344 L 274.652344 101.636719 L 274.609375 101.566406 L 274.597656 101.554688 L 274.550781 101.480469 L 274.546875 101.472656 L 274.441406 101.308594 L 274.429688 101.292969 L 274.386719 101.222656 L 274.378906 101.210938 C 274.324219 101.128906 274.269531 101.046875 274.214844 100.960938 L 274.210938 100.957031 C 273.09375 99.253906 271.929688 97.582031 270.71875 95.949219 C 268.21875 92.574219 264.265625 90.582031 260.0625 90.589844 Z M 260.0625 90.589844 " style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,65.490196%,53.72549%);fill-opacity:1;" />
67
+ </g>
68
+ </svg>
assets/js/wp-ulike.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! WP ULike - v4.1.6
2
  * https://wpulike.com
3
  * TechnoWich 2020;
4
  */
@@ -410,6 +410,7 @@
410
  id: this.settings.ID,
411
  nonce: this.settings.nonce,
412
  type: this.settings.type,
 
413
  disablePophover: this.settings.disablePophover,
414
  refresh: this._refreshTheLikers ? 1 : 0
415
  },
1
+ /*! WP ULike - v4.1.7
2
  * https://wpulike.com
3
  * TechnoWich 2020;
4
  */
410
  id: this.settings.ID,
411
  nonce: this.settings.nonce,
412
  type: this.settings.type,
413
+ displayLikers: this.settings.displayLikers,
414
  disablePophover: this.settings.disablePophover,
415
  refresh: this._refreshTheLikers ? 1 : 0
416
  },
assets/js/wp-ulike.min.js CHANGED
@@ -1 +1 @@
1
- !function(i){"use strict";var s="WordpressUlikeNotifications",n={messageType:"success",messageText:"Hello World!",messageElement:"wpulike-message",notifContainer:"wpulike-notification"};function e(t,e){this.element=t,this.$element=i(t),this.settings=i.extend({},n,e),this._defaults=n,this._name=s,this.init()}i.extend(e.prototype,{init:function(){this._message(),this._container(),this._append(),this._remove()},_message:function(){this.$messageElement=i("<div/>").addClass(this.settings.messageElement+" wpulike-"+this.settings.messageType).text(this.settings.messageText)},_container:function(){i("."+this.settings.notifContainer).length||this.$element.append(i("<div/>").addClass(this.settings.notifContainer)),this.$notifContainer=this.$element.find("."+this.settings.notifContainer)},_append:function(){this.$notifContainer.append(this.$messageElement).trigger("WordpressUlikeNotificationAppend")},_remove:function(){var t=this;this.$messageElement.click(function(){i(this).fadeOut(300,function(){i(this).remove(),i("."+t.settings.messageElement).length||t.$notifContainer.remove()}).trigger("WordpressUlikeRemoveNotification")}),setTimeout(function(){t.$messageElement.fadeOut(300,function(){i(this).remove(),i("."+t.settings.messageElement).length||t.$notifContainer.remove()}).trigger("WordpressUlikeRemoveNotification")},8e3)}}),i.fn[s]=function(t){return this.each(function(){new e(this,t)})}}(jQuery,window,document),function(n,t,i){"use strict";var l="WordpressUlike",e=(n(t),n(i)),a={ID:0,nonce:0,type:"",append:"",appendTimeout:2e3,displayLikers:!1,disablePophover:!0,factor:"",template:"",counterSelector:".count-box",generalSelector:".wp_ulike_general_class",buttonSelector:".wp_ulike_btn",likersSelector:".wp_ulike_likers_wrapper"},o={"ulike-id":"ID","ulike-nonce":"nonce","ulike-type":"type","ulike-append":"append","ulike-display-likers":"displayLikers","ulike-disable-pophover":"disablePophover","ulike-append-timeout":"appendTimeout","ulike-factor":"factor","ulike-template":"template"};function s(t,e){for(var i in this.element=t,this.$element=n(t),this.settings=n.extend({},a,e),this._defaults=a,this._name=l,this._refreshTheLikers=!1,this.buttonElement=this.$element.find(this.settings.buttonSelector),this.generalElement=this.$element.find(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector),o){var s=this.buttonElement.data(i);void 0!==s&&(this.settings[o[i]]=s)}this.init()}n.extend(s.prototype,{init:function(){this.buttonElement.click(this._initLike.bind(this)),this.buttonElement.one("mouseenter",this._updateLikers.bind(this))},_ajax:function(t,e){n.ajax({url:wp_ulike_params.ajax_url,type:"POST",cache:!1,dataType:"json",data:t}).done(e)},_initLike:function(t){t.stopPropagation(),this._maybeUpdateElements(t),this._updateSameButtons(),this.buttonElement.prop("disabled",!0),e.trigger("WordpressUlikeLoading",this.element),this.generalElement.addClass("wp_ulike_is_loading"),this._ajax({action:"wp_ulike_process",id:this.settings.ID,nonce:this.settings.nonce,factor:this.settings.factor,type:this.settings.type,template:this.settings.template},function(t){this.generalElement.removeClass("wp_ulike_is_loading"),t.success?(this._updateMarkup(t),this._appendChild()):this._sendNotification("error",t.data),this.buttonElement.prop("disabled",!1),e.trigger("WordpressUlikeUpdated",this.element)}.bind(this))},_maybeUpdateElements:function(t){this.buttonElement=n(t.currentTarget),this.generalElement=this.buttonElement.closest(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector),this.settings.factor=this.buttonElement.data("ulike-factor")},_appendChild:function(){if(""!==this.settings.append){var t=n(this.settings.append);this.buttonElement.append(t),this.settings.appendTimeout&&setTimeout(function(){t.detach()},this.settings.appendTimeout)}},_updateMarkup:function(t){this._setSbilingElement(),this._setSbilingButtons(),this._updateGeneralClassNames(t.data.status),null!==t.data.data&&(t.data.status<5&&(this.__updateCounter(t.data.data),this._refreshTheLikers=!0),this._updateButton(t.data.btnText,t.data.status)),this._sendNotification(t.data.messageType,t.data.message),this._refreshTheLikers&&this._updateLikers()},_updateGeneralClassNames:function(t){var e="wp_ulike_is_not_liked",i="wp_ulike_is_liked",s="wp_ulike_is_unliked",n="wp_ulike_click_is_disabled";switch(this.siblingElement.length&&this.siblingElement.removeClass(this._arrayToString([i,s])),t){case 1:this.generalElement.addClass(i).removeClass(e),this.generalElement.children().first().addClass(n);break;case 2:this.generalElement.addClass(s).removeClass(i);break;case 3:this.generalElement.addClass(i).removeClass(s);break;default:this.generalElement.children().first().addClass(n),this.siblingElement.length&&this.siblingElement.children().first().addClass(n)}},_arrayToString:function(t){return t.join(" ")},_setSbilingElement:function(){this.siblingElement=this.generalElement.siblings()},_setSbilingButtons:function(){this.siblingButton=this.buttonElement.siblings(this.settings.buttonSelector)},__updateCounter:function(t){"object"!=typeof t?this.counterElement.text(t):"down"===this.settings.factor?(this.counterElement.text(t.down),this.siblingElement.length&&this.siblingElement.find(this.settings.counterSelector).text(t.up)):(this.counterElement.text(t.up),this.siblingElement.length&&this.siblingElement.find(this.settings.counterSelector).text(t.down)),e.trigger("WordpressUlikeCounterUpdated",[this.buttonElement])},_updateLikers:function(){this.likersElement=this._getLikersElement(),!this.settings.displayLikers||this.likersElement.length&&!this._refreshTheLikers||(this.generalElement.addClass("wp_ulike_is_getting_likers_list"),this._ajax({action:"wp_ulike_get_likers",id:this.settings.ID,nonce:this.settings.nonce,type:this.settings.type,disablePophover:this.settings.disablePophover,refresh:this._refreshTheLikers?1:0},function(t){this.generalElement.removeClass("wp_ulike_is_getting_likers_list"),t.success&&(this.likersElement.length||(this.likersElement=n("<div>",{class:t.data.class}).appendTo(this.$element)),t.data.template?this.likersElement.show().html(t.data.template):this.likersElement.hide()),this._refreshTheLikers=!1}.bind(this)))},_updateSameButtons:function(){var t=void 0!==this.settings.factor?this.settings.factor:"";this.sameButtons=e.find(".wp_"+this.settings.type.toLowerCase()+t+"_"+this.settings.ID),1<this.sameButtons.length&&(this.buttonElement=this.sameButtons,this.generalElement=this.buttonElement.closest(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector))},_getLikersElement:function(){return this.$element.find(this.settings.likersSelector)},_updateButton:function(t,e){this.buttonElement.hasClass("wp_ulike_put_image")?(this.buttonElement.toggleClass("image-unlike wp_ulike_btn_is_active"),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).removeClass("image-unlike wp_ulike_btn_is_active"),this.siblingButton.length&&this.siblingButton.removeClass("image-unlike wp_ulike_btn_is_active")):this.buttonElement.hasClass("wp_ulike_put_text")&&null!==t&&("object"!=typeof t?this.buttonElement.find("span").html(t):"down"===this.settings.factor?(this.buttonElement.find("span").html(t.down),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).find("span").html(t.up)):(this.buttonElement.find("span").html(t.up),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).find("span").html(t.down)))},_sendNotification:function(t,e){"1"===wp_ulike_params.notifications&&n(i.body).WordpressUlikeNotifications({messageType:t,messageText:e})}}),n.fn[l]=function(t){return this.each(function(){n.data(this,"plugin_"+l)||n.data(this,"plugin_"+l,new s(this,t))})}}(jQuery,window,document),function(e){e(function(){e(this).bind("DOMNodeInserted",function(t){e(".wpulike").WordpressUlike()})}),e(".wpulike").WordpressUlike()}(jQuery);
1
+ !function(i){"use strict";var s="WordpressUlikeNotifications",n={messageType:"success",messageText:"Hello World!",messageElement:"wpulike-message",notifContainer:"wpulike-notification"};function e(t,e){this.element=t,this.$element=i(t),this.settings=i.extend({},n,e),this._defaults=n,this._name=s,this.init()}i.extend(e.prototype,{init:function(){this._message(),this._container(),this._append(),this._remove()},_message:function(){this.$messageElement=i("<div/>").addClass(this.settings.messageElement+" wpulike-"+this.settings.messageType).text(this.settings.messageText)},_container:function(){i("."+this.settings.notifContainer).length||this.$element.append(i("<div/>").addClass(this.settings.notifContainer)),this.$notifContainer=this.$element.find("."+this.settings.notifContainer)},_append:function(){this.$notifContainer.append(this.$messageElement).trigger("WordpressUlikeNotificationAppend")},_remove:function(){var t=this;this.$messageElement.click(function(){i(this).fadeOut(300,function(){i(this).remove(),i("."+t.settings.messageElement).length||t.$notifContainer.remove()}).trigger("WordpressUlikeRemoveNotification")}),setTimeout(function(){t.$messageElement.fadeOut(300,function(){i(this).remove(),i("."+t.settings.messageElement).length||t.$notifContainer.remove()}).trigger("WordpressUlikeRemoveNotification")},8e3)}}),i.fn[s]=function(t){return this.each(function(){new e(this,t)})}}(jQuery,window,document),function(n,t,i){"use strict";var l="WordpressUlike",e=(n(t),n(i)),a={ID:0,nonce:0,type:"",append:"",appendTimeout:2e3,displayLikers:!1,disablePophover:!0,factor:"",template:"",counterSelector:".count-box",generalSelector:".wp_ulike_general_class",buttonSelector:".wp_ulike_btn",likersSelector:".wp_ulike_likers_wrapper"},o={"ulike-id":"ID","ulike-nonce":"nonce","ulike-type":"type","ulike-append":"append","ulike-display-likers":"displayLikers","ulike-disable-pophover":"disablePophover","ulike-append-timeout":"appendTimeout","ulike-factor":"factor","ulike-template":"template"};function s(t,e){for(var i in this.element=t,this.$element=n(t),this.settings=n.extend({},a,e),this._defaults=a,this._name=l,this._refreshTheLikers=!1,this.buttonElement=this.$element.find(this.settings.buttonSelector),this.generalElement=this.$element.find(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector),o){var s=this.buttonElement.data(i);void 0!==s&&(this.settings[o[i]]=s)}this.init()}n.extend(s.prototype,{init:function(){this.buttonElement.click(this._initLike.bind(this)),this.buttonElement.one("mouseenter",this._updateLikers.bind(this))},_ajax:function(t,e){n.ajax({url:wp_ulike_params.ajax_url,type:"POST",cache:!1,dataType:"json",data:t}).done(e)},_initLike:function(t){t.stopPropagation(),this._maybeUpdateElements(t),this._updateSameButtons(),this.buttonElement.prop("disabled",!0),e.trigger("WordpressUlikeLoading",this.element),this.generalElement.addClass("wp_ulike_is_loading"),this._ajax({action:"wp_ulike_process",id:this.settings.ID,nonce:this.settings.nonce,factor:this.settings.factor,type:this.settings.type,template:this.settings.template},function(t){this.generalElement.removeClass("wp_ulike_is_loading"),t.success?(this._updateMarkup(t),this._appendChild()):this._sendNotification("error",t.data),this.buttonElement.prop("disabled",!1),e.trigger("WordpressUlikeUpdated",this.element)}.bind(this))},_maybeUpdateElements:function(t){this.buttonElement=n(t.currentTarget),this.generalElement=this.buttonElement.closest(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector),this.settings.factor=this.buttonElement.data("ulike-factor")},_appendChild:function(){if(""!==this.settings.append){var t=n(this.settings.append);this.buttonElement.append(t),this.settings.appendTimeout&&setTimeout(function(){t.detach()},this.settings.appendTimeout)}},_updateMarkup:function(t){this._setSbilingElement(),this._setSbilingButtons(),this._updateGeneralClassNames(t.data.status),null!==t.data.data&&(t.data.status<5&&(this.__updateCounter(t.data.data),this._refreshTheLikers=!0),this._updateButton(t.data.btnText,t.data.status)),this._sendNotification(t.data.messageType,t.data.message),this._refreshTheLikers&&this._updateLikers()},_updateGeneralClassNames:function(t){var e="wp_ulike_is_not_liked",i="wp_ulike_is_liked",s="wp_ulike_is_unliked",n="wp_ulike_click_is_disabled";switch(this.siblingElement.length&&this.siblingElement.removeClass(this._arrayToString([i,s])),t){case 1:this.generalElement.addClass(i).removeClass(e),this.generalElement.children().first().addClass(n);break;case 2:this.generalElement.addClass(s).removeClass(i);break;case 3:this.generalElement.addClass(i).removeClass(s);break;default:this.generalElement.children().first().addClass(n),this.siblingElement.length&&this.siblingElement.children().first().addClass(n)}},_arrayToString:function(t){return t.join(" ")},_setSbilingElement:function(){this.siblingElement=this.generalElement.siblings()},_setSbilingButtons:function(){this.siblingButton=this.buttonElement.siblings(this.settings.buttonSelector)},__updateCounter:function(t){"object"!=typeof t?this.counterElement.text(t):"down"===this.settings.factor?(this.counterElement.text(t.down),this.siblingElement.length&&this.siblingElement.find(this.settings.counterSelector).text(t.up)):(this.counterElement.text(t.up),this.siblingElement.length&&this.siblingElement.find(this.settings.counterSelector).text(t.down)),e.trigger("WordpressUlikeCounterUpdated",[this.buttonElement])},_updateLikers:function(){this.likersElement=this._getLikersElement(),!this.settings.displayLikers||this.likersElement.length&&!this._refreshTheLikers||(this.generalElement.addClass("wp_ulike_is_getting_likers_list"),this._ajax({action:"wp_ulike_get_likers",id:this.settings.ID,nonce:this.settings.nonce,type:this.settings.type,displayLikers:this.settings.displayLikers,disablePophover:this.settings.disablePophover,refresh:this._refreshTheLikers?1:0},function(t){this.generalElement.removeClass("wp_ulike_is_getting_likers_list"),t.success&&(this.likersElement.length||(this.likersElement=n("<div>",{class:t.data.class}).appendTo(this.$element)),t.data.template?this.likersElement.show().html(t.data.template):this.likersElement.hide()),this._refreshTheLikers=!1}.bind(this)))},_updateSameButtons:function(){var t=void 0!==this.settings.factor?this.settings.factor:"";this.sameButtons=e.find(".wp_"+this.settings.type.toLowerCase()+t+"_"+this.settings.ID),1<this.sameButtons.length&&(this.buttonElement=this.sameButtons,this.generalElement=this.buttonElement.closest(this.settings.generalSelector),this.counterElement=this.generalElement.find(this.settings.counterSelector))},_getLikersElement:function(){return this.$element.find(this.settings.likersSelector)},_updateButton:function(t,e){this.buttonElement.hasClass("wp_ulike_put_image")?(this.buttonElement.toggleClass("image-unlike wp_ulike_btn_is_active"),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).removeClass("image-unlike wp_ulike_btn_is_active"),this.siblingButton.length&&this.siblingButton.removeClass("image-unlike wp_ulike_btn_is_active")):this.buttonElement.hasClass("wp_ulike_put_text")&&null!==t&&("object"!=typeof t?this.buttonElement.find("span").html(t):"down"===this.settings.factor?(this.buttonElement.find("span").html(t.down),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).find("span").html(t.up)):(this.buttonElement.find("span").html(t.up),this.siblingElement.length&&this.siblingElement.find(this.settings.buttonSelector).find("span").html(t.down)))},_sendNotification:function(t,e){"1"===wp_ulike_params.notifications&&n(i.body).WordpressUlikeNotifications({messageType:t,messageText:e})}}),n.fn[l]=function(t){return this.each(function(){n.data(this,"plugin_"+l)||n.data(this,"plugin_"+l,new s(this,t))})}}(jQuery,window,document),function(e){e(function(){e(this).bind("DOMNodeInserted",function(t){e(".wpulike").WordpressUlike()})}),e(".wpulike").WordpressUlike()}(jQuery);
inc/frontend-ajax.php CHANGED
@@ -143,17 +143,23 @@ add_action( 'wp_ajax_nopriv_wp_ulike_process' , 'wp_ulike_process' );
143
  */
144
  function wp_ulike_get_likers(){
145
 
146
- $post_ID = $_POST['id'];
147
- $post_type = $_POST['type'];
148
- $nonce_token = $_POST['nonce'];
149
- $is_refresh = $_POST['refresh'];
150
- $disable_pophover = $_POST['disablePophover'];
 
151
 
152
  // Check security nonce field
153
  if( $post_ID == null || ( ! wp_verify_nonce( $nonce_token, $post_type . $post_ID ) && wp_ulike_is_cache_exist() ) ) {
154
  wp_send_json_error( __( 'Error: Something Wrong Happened!', WP_ULIKE_SLUG ) );
155
  }
156
 
 
 
 
 
 
157
  // Don't refresh likers data, when user is not logged in.
158
  if( $is_refresh && ! is_user_logged_in() ) {
159
  wp_send_json_error( __( 'Notice: The likers box is refreshed only for logged in users!', WP_ULIKE_SLUG ) );
@@ -170,11 +176,6 @@ function wp_ulike_get_likers(){
170
  // Extract settings array
171
  extract( $get_settings );
172
 
173
- // If likers box has been disabled
174
- if ( ! wp_ulike_get_option( $setting . '|enable_likers_box' , false ) ) {
175
- wp_send_json_error( __( 'Notice: The likers box is not activated!', WP_ULIKE_SLUG ) );
176
- }
177
-
178
  // Add specific class name with popover checkup
179
  $class_names = wp_ulike_is_true( $disable_pophover ) ? 'wp_ulike_likers_wrapper wp_ulike_display_inline' : 'wp_ulike_likers_wrapper';
180
  $users_list = wp_ulike_get_likers_template( $table, $column, $post_ID, $setting );
143
  */
144
  function wp_ulike_get_likers(){
145
 
146
+ $post_ID = isset( $_POST['id'] ) ? esc_html( $_POST['id'] ) : NULL;
147
+ $post_type = isset( $_POST['type'] ) ? esc_html( $_POST['type'] ) : NULL;
148
+ $nonce_token = isset( $_POST['nonce'] ) ? esc_html( $_POST['nonce'] ) : NULL;
149
+ $is_refresh = isset( $_POST['refresh'] ) ? esc_html( $_POST['refresh'] ) : false;
150
+ $display_likers = isset( $_POST['displayLikers'] ) ? esc_html( $_POST['displayLikers'] ) : false;
151
+ $disable_pophover = isset( $_POST['disablePophover'] ) ? esc_html( $_POST['disablePophover'] ) : false;
152
 
153
  // Check security nonce field
154
  if( $post_ID == null || ( ! wp_verify_nonce( $nonce_token, $post_type . $post_ID ) && wp_ulike_is_cache_exist() ) ) {
155
  wp_send_json_error( __( 'Error: Something Wrong Happened!', WP_ULIKE_SLUG ) );
156
  }
157
 
158
+ // If likers box has been disabled
159
+ if ( ! $display_likers ) {
160
+ wp_send_json_error( __( 'Notice: The likers box is not activated!', WP_ULIKE_SLUG ) );
161
+ }
162
+
163
  // Don't refresh likers data, when user is not logged in.
164
  if( $is_refresh && ! is_user_logged_in() ) {
165
  wp_send_json_error( __( 'Notice: The likers box is refreshed only for logged in users!', WP_ULIKE_SLUG ) );
176
  // Extract settings array
177
  extract( $get_settings );
178
 
 
 
 
 
 
179
  // Add specific class name with popover checkup
180
  $class_names = wp_ulike_is_true( $disable_pophover ) ? 'wp_ulike_likers_wrapper wp_ulike_display_inline' : 'wp_ulike_likers_wrapper';
181
  $users_list = wp_ulike_get_likers_template( $table, $column, $post_ID, $setting );
inc/general-functions.php CHANGED
@@ -1072,7 +1072,7 @@ if( ! function_exists( 'wp_ulike_get_popular_items_info' ) ){
1072
  "status" => 'like',
1073
  "order" => 'DESC',
1074
  "period" => 'all',
1075
- "limit" => 30
1076
  );
1077
  $parsed_args = wp_parse_args( $args, $defaults );
1078
  $info_args = wp_ulike_get_table_info( $parsed_args['type'] );
@@ -1085,6 +1085,10 @@ if( ! function_exists( 'wp_ulike_get_popular_items_info' ) ){
1085
  $status_type = sprintf( "`status` = '%s'", $parsed_args['status'] );
1086
  }
1087
 
 
 
 
 
1088
 
1089
  // generate query string
1090
  $query = sprintf( "
@@ -1095,13 +1099,13 @@ if( ! function_exists( 'wp_ulike_get_popular_items_info' ) ){
1095
  %s
1096
  GROUP BY item_ID
1097
  ORDER BY counter
1098
- %s LIMIT %d",
1099
  $info_args['column'],
1100
  $wpdb->prefix . $info_args['table'],
1101
  $status_type,
1102
  $period_limit,
1103
  $parsed_args['order'],
1104
- $parsed_args['limit']
1105
  );
1106
 
1107
  return $wpdb->get_results( $query );
@@ -1122,7 +1126,7 @@ if( ! function_exists( 'wp_ulike_get_popular_items_ids' ) ){
1122
  "status" => 'like',
1123
  "order" => 'DESC',
1124
  "period" => 'all',
1125
- "limit" => 30
1126
  );
1127
  $parsed_args = wp_parse_args( $args, $defaults );
1128
  $item_info = wp_ulike_get_popular_items_info( $parsed_args );
@@ -1622,8 +1626,35 @@ if( ! function_exists('wp_ulike_count_all_logs') ){
1622
  * @return integer
1623
  */
1624
  function wp_ulike_count_all_logs( $period = 'all' ){
1625
- $instance = wp_ulike_stats::get_instance();
1626
- return $instance->count_all_logs( $period );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1627
  }
1628
  }
1629
 
1072
  "status" => 'like',
1073
  "order" => 'DESC',
1074
  "period" => 'all',
1075
+ "limit" => 0
1076
  );
1077
  $parsed_args = wp_parse_args( $args, $defaults );
1078
  $info_args = wp_ulike_get_table_info( $parsed_args['type'] );
1085
  $status_type = sprintf( "`status` = '%s'", $parsed_args['status'] );
1086
  }
1087
 
1088
+ $limit_records = '';
1089
+ if( (int) $parsed_args['limit'] > 0 ){
1090
+ $limit_records = sprintf( "LIMIT %d", $parsed_args['limit'] );
1091
+ }
1092
 
1093
  // generate query string
1094
  $query = sprintf( "
1099
  %s
1100
  GROUP BY item_ID
1101
  ORDER BY counter
1102
+ %s %s",
1103
  $info_args['column'],
1104
  $wpdb->prefix . $info_args['table'],
1105
  $status_type,
1106
  $period_limit,
1107
  $parsed_args['order'],
1108
+ $limit_records
1109
  );
1110
 
1111
  return $wpdb->get_results( $query );
1126
  "status" => 'like',
1127
  "order" => 'DESC',
1128
  "period" => 'all',
1129
+ "limit" => 0
1130
  );
1131
  $parsed_args = wp_parse_args( $args, $defaults );
1132
  $item_info = wp_ulike_get_popular_items_info( $parsed_args );
1626
  * @return integer
1627
  */
1628
  function wp_ulike_count_all_logs( $period = 'all' ){
1629
+ global $wpdb;
1630
+
1631
+ // Convert array period
1632
+ if( is_array( $period ) ){
1633
+ $period = implode( '-', $period );
1634
+ }
1635
+
1636
+ $cache_key = sanitize_key( sprintf( 'calculate-%s-logs', $period ) );
1637
+ $counter_value = wp_cache_get( $cache_key, WP_ULIKE_SLUG );
1638
+
1639
+ // Make a cachable query to get new like count from all tables
1640
+ if( false === $counter_value ){
1641
+
1642
+ $query = sprintf( '
1643
+ SELECT
1644
+ ( SELECT COUNT(*) FROM `%1$sulike` WHERE 1=1 %2$s ) +
1645
+ ( SELECT COUNT(*) FROM `%1$sulike_activities` WHERE 1=1 %2$s ) +
1646
+ ( SELECT COUNT(*) FROM `%1$sulike_comments` WHERE 1=1 %2$s ) +
1647
+ ( SELECT COUNT(*) FROM `%1$sulike_forums` WHERE 1=1 %2$s )
1648
+ ',
1649
+ $wpdb->prefix,
1650
+ wp_ulike_get_period_limit_sql( $period )
1651
+ );
1652
+
1653
+ $counter_value = $wpdb->get_var( $query );
1654
+ wp_cache_set( $cache_key, $counter_value, WP_ULIKE_SLUG );
1655
+ }
1656
+
1657
+ return empty( $counter_value ) ? 0 : $counter_value;
1658
  }
1659
  }
1660
 
lang/wp-ulike-NO.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "For mer informasjon:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Logger"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Brukernavn"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Status"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Handlinger"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "For mer informasjon:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2568,17 +2614,17 @@ msgid ""
2568
  msgstr ""
2569
 
2570
  #: build/wp-ulike/inc/frontend-ajax.php:42
2571
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2572
- #: inc/frontend-ajax.php:164
2573
  msgid "Error: This Method Is Not Exist!"
2574
  msgstr ""
2575
 
2576
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2577
- msgid "Notice: The likers box is refreshed only for logged in users!"
2578
  msgstr ""
2579
 
2580
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2581
- msgid "Notice: The likers box is not activated!"
2582
  msgstr ""
2583
 
2584
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2623,15 +2669,15 @@ msgstr ""
2623
  msgid "Table info is empty."
2624
  msgstr ""
2625
 
2626
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2627
  msgid "You need to login in order to like this post: "
2628
  msgstr ""
2629
 
2630
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2631
  msgid "click here"
2632
  msgstr ""
2633
 
2634
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2635
  msgid "Like This"
2636
  msgstr ""
2637
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "For mer informasjon:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Logger"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "For mer informasjon:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Brukernavn"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Status"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Handlinger"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2614
  msgstr ""
2615
 
2616
  #: build/wp-ulike/inc/frontend-ajax.php:42
2617
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2618
+ #: inc/frontend-ajax.php:170
2619
  msgid "Error: This Method Is Not Exist!"
2620
  msgstr ""
2621
 
2622
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2623
+ msgid "Notice: The likers box is not activated!"
2624
  msgstr ""
2625
 
2626
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2627
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2628
  msgstr ""
2629
 
2630
  #: build/wp-ulike/inc/general-functions.php:85
2669
  msgid "Table info is empty."
2670
  msgstr ""
2671
 
2672
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2673
  msgid "You need to login in order to like this post: "
2674
  msgstr ""
2675
 
2676
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2677
  msgid "click here"
2678
  msgstr ""
2679
 
2680
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2681
  msgid "Like This"
2682
  msgstr ""
2683
 
lang/wp-ulike-ar.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WP ULike\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
5
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
6
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
7
  "Last-Translator: Alimir <info@alimir.ir>\n"
8
  "Language-Team: alimir.ir <info@alimir.ir>\n"
@@ -22,8 +22,8 @@ msgstr ""
22
  #: build/wp-ulike/admin/admin-ajax.php:76
23
  #: build/wp-ulike/admin/admin-ajax.php:82
24
  #: build/wp-ulike/inc/frontend-ajax.php:34
25
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
26
- #: inc/frontend-ajax.php:151
27
  msgid "Error: Something Wrong Happened!"
28
  msgstr ""
29
 
@@ -39,9 +39,9 @@ msgstr ""
39
  msgid "It's Ok!"
40
  msgstr ""
41
 
42
- #: admin/admin-functions.php:225
43
  #: admin/classes/class-wp-ulike-admin-panel.php:517
44
- #: build/wp-ulike/admin/admin-functions.php:228
45
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
46
  #, fuzzy
47
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "لمزيد من المعلومات:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
 
 
 
 
 
 
 
 
 
 
 
 
109
  #, fuzzy
110
  msgid "WP Ulike Pro is Ready :))"
111
  msgstr "وردپرس یولایک -ابزارک بیشترین لایک شده ها"
112
 
113
- #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
116
  "been released with some new features such as support for Dislike button, "
@@ -119,8 +133,8 @@ msgid ""
119
  "provide a full support for our users."
120
  msgstr ""
121
 
122
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
123
- #: build/wp-ulike/admin/admin-hooks.php:239
124
  #: build/wp-ulike/admin/includes/templates/about.php:29
125
  msgid "Go Pro"
126
  msgstr ""
@@ -136,30 +150,30 @@ msgid "No information was found in this database!"
136
  msgstr ""
137
 
138
  #: admin/classes/class-wp-ulike-admin-pages.php:27
139
- #: admin/includes/templates/posts-logs.php:39
140
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
141
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
142
  msgid "Post Likes Logs"
143
  msgstr "احداث الاعجابات في المنشورات"
144
 
145
  #: admin/classes/class-wp-ulike-admin-pages.php:35
146
- #: admin/includes/templates/comments-logs.php:39
147
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
148
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
149
  msgid "Comment Likes Logs"
150
  msgstr "احداث الاعجابات في التعالیق"
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:43
153
- #: admin/includes/templates/activities-logs.php:39
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
155
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
156
  msgid "Activity Likes Logs"
157
  msgstr "احداث الاعجابات في الانشطة"
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:51
160
- #: admin/includes/templates/topics-logs.php:39
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
162
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
163
  #, fuzzy
164
  msgid "Topics Likes Logs"
165
  msgstr "احداث الاعجابات في المنشورات"
@@ -180,23 +194,23 @@ msgid "About"
180
  msgstr ""
181
 
182
  #: admin/classes/class-wp-ulike-admin-pages.php:133
183
- #: admin/includes/templates/activities-logs.php:42
184
- #: admin/includes/templates/activities-logs.php:119
185
- #: admin/includes/templates/comments-logs.php:42
186
- #: admin/includes/templates/comments-logs.php:129
187
- #: admin/includes/templates/posts-logs.php:42
188
- #: admin/includes/templates/posts-logs.php:118
189
- #: admin/includes/templates/topics-logs.php:42
190
- #: admin/includes/templates/topics-logs.php:118
191
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
199
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
200
  msgid "Logs"
201
  msgstr "السجلات"
202
 
@@ -1065,16 +1079,16 @@ msgstr "آماره فعالیت ها"
1065
  msgid "Topics Stats"
1066
  msgstr "الاحصائیات من المنشورات المعجبین فیهن"
1067
 
1068
- #: admin/classes/class-wp-ulike-stats.php:274
1069
- #: admin/includes/templates/activities-logs.php:76
1070
- #: admin/includes/templates/comments-logs.php:81
1071
- #: admin/includes/templates/posts-logs.php:75
1072
- #: admin/includes/templates/topics-logs.php:75
1073
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1074
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1075
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1076
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1077
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1078
  msgid "Guest User"
1079
  msgstr "مستخدم ضيف"
1080
 
@@ -1365,115 +1379,177 @@ msgstr "ساهموا في التطوير"
1365
  msgid "No data found! This is because there is still no data in your database."
1366
  msgstr ""
1367
 
1368
- #: admin/includes/templates/activities-logs.php:38
1369
- #: admin/includes/templates/comments-logs.php:38
1370
- #: admin/includes/templates/posts-logs.php:38
1371
- #: admin/includes/templates/topics-logs.php:38
1372
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1373
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1374
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1375
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1376
  msgid "WP ULike Logs"
1377
  msgstr "الاحداث في وردبرس یولایک"
1378
 
1379
- #: admin/includes/templates/activities-logs.php:49
1380
- #: admin/includes/templates/comments-logs.php:49
1381
- #: admin/includes/templates/posts-logs.php:49
1382
- #: admin/includes/templates/topics-logs.php:49
1383
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1384
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1385
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1386
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1387
  msgid "ID"
1388
  msgstr "ID"
1389
 
1390
- #: admin/includes/templates/activities-logs.php:50
1391
- #: admin/includes/templates/comments-logs.php:50
1392
- #: admin/includes/templates/posts-logs.php:50
1393
- #: admin/includes/templates/topics-logs.php:50
1394
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1395
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1396
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1397
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1398
  msgid "Username"
1399
  msgstr "اسم المستخدم : "
1400
 
1401
- #: admin/includes/templates/activities-logs.php:51
1402
- #: admin/includes/templates/comments-logs.php:51
1403
- #: admin/includes/templates/posts-logs.php:51
1404
- #: admin/includes/templates/topics-logs.php:51
1405
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1406
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1407
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1408
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1409
  msgid "Status"
1410
  msgstr "وضعیة"
1411
 
1412
- #: admin/includes/templates/activities-logs.php:52
1413
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1414
  msgid "Activity ID"
1415
  msgstr "ID النشاط"
1416
 
1417
- #: admin/includes/templates/activities-logs.php:53
1418
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1419
  msgid "Permalink"
1420
  msgstr "روابط دائمة"
1421
 
1422
- #: admin/includes/templates/activities-logs.php:54
1423
- #: admin/includes/templates/comments-logs.php:55
1424
- #: admin/includes/templates/posts-logs.php:54
1425
- #: admin/includes/templates/topics-logs.php:54
1426
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1427
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1428
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1429
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1430
  msgid "Date / Time"
1431
  msgstr "تاريخ / وقت"
1432
 
1433
- #: admin/includes/templates/activities-logs.php:55
1434
- #: admin/includes/templates/comments-logs.php:56
1435
- #: admin/includes/templates/posts-logs.php:55
1436
- #: admin/includes/templates/topics-logs.php:55
1437
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1438
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1439
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1440
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1441
  msgid "IP"
1442
  msgstr "عنوان IP"
1443
 
1444
- #: admin/includes/templates/activities-logs.php:56
1445
- #: admin/includes/templates/comments-logs.php:57
1446
- #: admin/includes/templates/posts-logs.php:56
1447
- #: admin/includes/templates/topics-logs.php:56
1448
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1449
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1450
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1451
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1452
  msgid "Actions"
1453
  msgstr "تطبیقات"
1454
 
1455
- #: admin/includes/templates/activities-logs.php:92
1456
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1457
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1458
  msgstr "<a href=\"%1$s\">عرض الانشطة</a>"
1459
 
1460
- #: admin/includes/templates/comments-logs.php:52
1461
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1462
  msgid "Comment ID"
1463
  msgstr "ID التعلیق"
1464
 
1465
- #: admin/includes/templates/comments-logs.php:53
1466
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1467
  msgid "Comment Author"
1468
  msgstr "کاتب التعلیق"
1469
 
1470
- #: admin/includes/templates/comments-logs.php:54
1471
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1472
  msgid "Comment Text"
1473
  msgstr "نص التعليق"
1474
 
1475
- #: admin/includes/templates/comments-logs.php:63
1476
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1477
  msgid "Not Found!"
1478
  msgstr ""
1479
 
@@ -1483,61 +1559,31 @@ msgstr ""
1483
  msgid "WP ULike Premium"
1484
  msgstr "اعدادات وردبرس یولایک"
1485
 
1486
- #: admin/includes/templates/go-pro.php:22
1487
- #: admin/includes/templates/statistics.php:48
1488
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1489
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1490
- msgid "Buy WP ULike Premium"
1491
- msgstr ""
1492
-
1493
- #: admin/includes/templates/go-pro.php:28
1494
- #: admin/includes/templates/statistics.php:53
1495
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1496
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1497
- #, fuzzy
1498
- msgid "More information"
1499
- msgstr "لمزيد من المعلومات:"
1500
-
1501
- #: admin/includes/templates/go-pro.php:114
1502
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1503
  msgid ""
1504
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1505
  "ULike PRO plugin we fully support this page builder and have a variety of "
1506
  "widgets & controllers that make life much easier for you."
1507
  msgstr ""
1508
 
1509
- #: admin/includes/templates/go-pro.php:114
1510
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1511
  msgid ""
1512
  "Just drag your desired widget and drop it in your Elementor sections, "
1513
  "customize as you go and enjoy your like and dislike buttons on your contents."
1514
  msgstr ""
1515
 
1516
- #: admin/includes/templates/posts-logs.php:52
1517
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1518
  msgid "Post ID"
1519
  msgstr "ID المنشور"
1520
 
1521
- #: admin/includes/templates/posts-logs.php:53
1522
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1523
  msgid "Post Title"
1524
  msgstr "عنوان المنشور"
1525
 
1526
- #: admin/includes/templates/statistics.php:45
1527
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1528
- msgid "Check Votings, Best Likers & Top contents"
1529
- msgstr ""
1530
-
1531
- #: admin/includes/templates/statistics.php:47
1532
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1533
- msgid ""
1534
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1535
- "users love and what annoys them in an instance. You can extract reports of "
1536
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1537
- "dateRange picker and status selector controllers, no confusing options and "
1538
- "coding needed."
1539
- msgstr ""
1540
-
1541
  #: admin/includes/templates/statistics.php:76
1542
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1543
  msgid "Total"
@@ -1590,13 +1636,13 @@ msgstr "مجموع کل الاعجابات"
1590
  msgid "Top"
1591
  msgstr "تلميح"
1592
 
1593
- #: admin/includes/templates/topics-logs.php:52
1594
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1595
  msgid "Topic ID"
1596
  msgstr ""
1597
 
1598
- #: admin/includes/templates/topics-logs.php:53
1599
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1600
  #, fuzzy
1601
  msgid "Topic Title"
1602
  msgstr "عنوان المنشور"
@@ -1720,49 +1766,49 @@ msgstr ""
1720
  msgid "Are you sure to reset all options?"
1721
  msgstr "هل أنت متأكد لإزالة هذا البند ؟!"
1722
 
1723
- #: admin/settings/classes/setup.class.php:429
1724
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1725
  msgid "Are you sure?"
1726
  msgstr ""
1727
 
1728
- #: admin/settings/classes/setup.class.php:430
1729
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1730
  msgid "Restoring options."
1731
  msgstr ""
1732
 
1733
- #: admin/settings/classes/setup.class.php:431
1734
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1735
  #, fuzzy
1736
  msgid "Importing options."
1737
  msgstr "خيارات النوع : "
1738
 
1739
- #: admin/settings/classes/setup.class.php:434
1740
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1741
  msgid "Please enter %s or more characters"
1742
  msgstr ""
1743
 
1744
- #: admin/settings/classes/setup.class.php:435
1745
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1746
  msgid "Searching..."
1747
  msgstr ""
1748
 
1749
- #: admin/settings/classes/setup.class.php:436
1750
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1751
  msgid "No results match"
1752
  msgstr ""
1753
 
1754
- #: admin/settings/classes/setup.class.php:507
1755
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1756
  msgid "Ooops! This field type (%s) can not be used here, yet."
1757
  msgstr ""
1758
 
1759
- #: admin/settings/classes/setup.class.php:570
1760
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1761
  msgid "This field class is not available!"
1762
  msgstr ""
1763
 
1764
- #: admin/settings/classes/setup.class.php:574
1765
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1766
  msgid "This type is not found!"
1767
  msgstr ""
1768
 
@@ -2643,17 +2689,17 @@ msgid ""
2643
  msgstr ""
2644
 
2645
  #: build/wp-ulike/inc/frontend-ajax.php:42
2646
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2647
- #: inc/frontend-ajax.php:164
2648
  msgid "Error: This Method Is Not Exist!"
2649
  msgstr ""
2650
 
2651
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2652
- msgid "Notice: The likers box is refreshed only for logged in users!"
2653
  msgstr ""
2654
 
2655
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2656
- msgid "Notice: The likers box is not activated!"
2657
  msgstr ""
2658
 
2659
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2699,15 +2745,15 @@ msgstr ""
2699
  msgid "Table info is empty."
2700
  msgstr ""
2701
 
2702
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2703
  msgid "You need to login in order to like this post: "
2704
  msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا المنشور :"
2705
 
2706
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2707
  msgid "click here"
2708
  msgstr "اضغط هنا انقر للدخول"
2709
 
2710
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2711
  #, fuzzy
2712
  msgid "Like This"
2713
  msgstr "اعجاب"
2
  msgstr ""
3
  "Project-Id-Version: WP ULike\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
5
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
6
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
7
  "Last-Translator: Alimir <info@alimir.ir>\n"
8
  "Language-Team: alimir.ir <info@alimir.ir>\n"
22
  #: build/wp-ulike/admin/admin-ajax.php:76
23
  #: build/wp-ulike/admin/admin-ajax.php:82
24
  #: build/wp-ulike/inc/frontend-ajax.php:34
25
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
26
+ #: inc/frontend-ajax.php:152
27
  msgid "Error: Something Wrong Happened!"
28
  msgstr ""
29
 
39
  msgid "It's Ok!"
40
  msgstr ""
41
 
42
+ #: admin/admin-functions.php:231
43
  #: admin/classes/class-wp-ulike-admin-panel.php:517
44
+ #: build/wp-ulike/admin/admin-functions.php:234
45
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
46
  #, fuzzy
47
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "لمزيد من المعلومات:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
+ msgstr ""
113
+
114
+ #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
+ msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
  #, fuzzy
124
  msgid "WP Ulike Pro is Ready :))"
125
  msgstr "وردپرس یولایک -ابزارک بیشترین لایک شده ها"
126
 
127
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
128
  msgid ""
129
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
130
  "been released with some new features such as support for Dislike button, "
133
  "provide a full support for our users."
134
  msgstr ""
135
 
136
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
137
+ #: build/wp-ulike/admin/admin-hooks.php:262
138
  #: build/wp-ulike/admin/includes/templates/about.php:29
139
  msgid "Go Pro"
140
  msgstr ""
150
  msgstr ""
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:27
153
+ #: admin/includes/templates/posts-logs.php:61
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
155
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
156
  msgid "Post Likes Logs"
157
  msgstr "احداث الاعجابات في المنشورات"
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:35
160
+ #: admin/includes/templates/comments-logs.php:61
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
162
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
163
  msgid "Comment Likes Logs"
164
  msgstr "احداث الاعجابات في التعالیق"
165
 
166
  #: admin/classes/class-wp-ulike-admin-pages.php:43
167
+ #: admin/includes/templates/activities-logs.php:61
168
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
169
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
170
  msgid "Activity Likes Logs"
171
  msgstr "احداث الاعجابات في الانشطة"
172
 
173
  #: admin/classes/class-wp-ulike-admin-pages.php:51
174
+ #: admin/includes/templates/topics-logs.php:61
175
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
176
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
177
  #, fuzzy
178
  msgid "Topics Likes Logs"
179
  msgstr "احداث الاعجابات في المنشورات"
194
  msgstr ""
195
 
196
  #: admin/classes/class-wp-ulike-admin-pages.php:133
197
+ #: admin/includes/templates/activities-logs.php:64
198
+ #: admin/includes/templates/activities-logs.php:141
199
+ #: admin/includes/templates/comments-logs.php:64
200
+ #: admin/includes/templates/comments-logs.php:151
201
+ #: admin/includes/templates/posts-logs.php:64
202
+ #: admin/includes/templates/posts-logs.php:140
203
+ #: admin/includes/templates/topics-logs.php:64
204
+ #: admin/includes/templates/topics-logs.php:140
205
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
213
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
214
  msgid "Logs"
215
  msgstr "السجلات"
216
 
1079
  msgid "Topics Stats"
1080
  msgstr "الاحصائیات من المنشورات المعجبین فیهن"
1081
 
1082
+ #: admin/classes/class-wp-ulike-stats.php:273
1083
+ #: admin/includes/templates/activities-logs.php:98
1084
+ #: admin/includes/templates/comments-logs.php:103
1085
+ #: admin/includes/templates/posts-logs.php:97
1086
+ #: admin/includes/templates/topics-logs.php:97
1087
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1088
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1089
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1090
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1091
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1092
  msgid "Guest User"
1093
  msgstr "مستخدم ضيف"
1094
 
1379
  msgid "No data found! This is because there is still no data in your database."
1380
  msgstr ""
1381
 
1382
+ #: admin/includes/templates/activities-logs.php:40
1383
+ #: admin/includes/templates/comments-logs.php:40
1384
+ #: admin/includes/templates/posts-logs.php:40
1385
+ #: admin/includes/templates/statistics.php:45
1386
+ #: admin/includes/templates/topics-logs.php:40
1387
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1388
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1389
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1390
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1391
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1392
+ msgid "Check Votings, Best Likers & Top contents"
1393
+ msgstr ""
1394
+
1395
+ #: admin/includes/templates/activities-logs.php:42
1396
+ #: admin/includes/templates/comments-logs.php:42
1397
+ #: admin/includes/templates/posts-logs.php:42
1398
+ #: admin/includes/templates/statistics.php:47
1399
+ #: admin/includes/templates/topics-logs.php:42
1400
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1401
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1402
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1403
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1404
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1405
+ msgid ""
1406
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1407
+ "users love and what annoys them in an instance. You can extract reports of "
1408
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1409
+ "dateRange picker and status selector controllers, no confusing options and "
1410
+ "coding needed."
1411
+ msgstr ""
1412
+
1413
+ #: admin/includes/templates/activities-logs.php:43
1414
+ #: admin/includes/templates/comments-logs.php:43
1415
+ #: admin/includes/templates/go-pro.php:22
1416
+ #: admin/includes/templates/posts-logs.php:43
1417
+ #: admin/includes/templates/statistics.php:48
1418
+ #: admin/includes/templates/topics-logs.php:43
1419
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1420
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1421
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1423
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1424
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1425
+ msgid "Buy WP ULike Premium"
1426
+ msgstr ""
1427
+
1428
+ #: admin/includes/templates/activities-logs.php:48
1429
+ #: admin/includes/templates/comments-logs.php:48
1430
+ #: admin/includes/templates/go-pro.php:28
1431
+ #: admin/includes/templates/posts-logs.php:48
1432
+ #: admin/includes/templates/statistics.php:53
1433
+ #: admin/includes/templates/topics-logs.php:48
1434
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1435
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1436
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1437
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1438
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1439
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1440
+ #, fuzzy
1441
+ msgid "More information"
1442
+ msgstr "لمزيد من المعلومات:"
1443
+
1444
+ #: admin/includes/templates/activities-logs.php:60
1445
+ #: admin/includes/templates/comments-logs.php:60
1446
+ #: admin/includes/templates/posts-logs.php:60
1447
+ #: admin/includes/templates/topics-logs.php:60
1448
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1449
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1450
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1451
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1452
  msgid "WP ULike Logs"
1453
  msgstr "الاحداث في وردبرس یولایک"
1454
 
1455
+ #: admin/includes/templates/activities-logs.php:71
1456
+ #: admin/includes/templates/comments-logs.php:71
1457
+ #: admin/includes/templates/posts-logs.php:71
1458
+ #: admin/includes/templates/topics-logs.php:71
1459
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1460
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1461
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1462
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1463
  msgid "ID"
1464
  msgstr "ID"
1465
 
1466
+ #: admin/includes/templates/activities-logs.php:72
1467
+ #: admin/includes/templates/comments-logs.php:72
1468
+ #: admin/includes/templates/posts-logs.php:72
1469
+ #: admin/includes/templates/topics-logs.php:72
1470
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1471
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1472
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1473
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1474
  msgid "Username"
1475
  msgstr "اسم المستخدم : "
1476
 
1477
+ #: admin/includes/templates/activities-logs.php:73
1478
+ #: admin/includes/templates/comments-logs.php:73
1479
+ #: admin/includes/templates/posts-logs.php:73
1480
+ #: admin/includes/templates/topics-logs.php:73
1481
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1482
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1483
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1484
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1485
  msgid "Status"
1486
  msgstr "وضعیة"
1487
 
1488
+ #: admin/includes/templates/activities-logs.php:74
1489
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1490
  msgid "Activity ID"
1491
  msgstr "ID النشاط"
1492
 
1493
+ #: admin/includes/templates/activities-logs.php:75
1494
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1495
  msgid "Permalink"
1496
  msgstr "روابط دائمة"
1497
 
1498
+ #: admin/includes/templates/activities-logs.php:76
1499
+ #: admin/includes/templates/comments-logs.php:77
1500
+ #: admin/includes/templates/posts-logs.php:76
1501
+ #: admin/includes/templates/topics-logs.php:76
1502
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1503
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1504
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1505
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1506
  msgid "Date / Time"
1507
  msgstr "تاريخ / وقت"
1508
 
1509
+ #: admin/includes/templates/activities-logs.php:77
1510
+ #: admin/includes/templates/comments-logs.php:78
1511
+ #: admin/includes/templates/posts-logs.php:77
1512
+ #: admin/includes/templates/topics-logs.php:77
1513
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1514
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1515
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1516
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1517
  msgid "IP"
1518
  msgstr "عنوان IP"
1519
 
1520
+ #: admin/includes/templates/activities-logs.php:78
1521
+ #: admin/includes/templates/comments-logs.php:79
1522
+ #: admin/includes/templates/posts-logs.php:78
1523
+ #: admin/includes/templates/topics-logs.php:78
1524
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1525
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1526
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1527
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1528
  msgid "Actions"
1529
  msgstr "تطبیقات"
1530
 
1531
+ #: admin/includes/templates/activities-logs.php:114
1532
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1533
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1534
  msgstr "<a href=\"%1$s\">عرض الانشطة</a>"
1535
 
1536
+ #: admin/includes/templates/comments-logs.php:74
1537
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1538
  msgid "Comment ID"
1539
  msgstr "ID التعلیق"
1540
 
1541
+ #: admin/includes/templates/comments-logs.php:75
1542
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1543
  msgid "Comment Author"
1544
  msgstr "کاتب التعلیق"
1545
 
1546
+ #: admin/includes/templates/comments-logs.php:76
1547
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1548
  msgid "Comment Text"
1549
  msgstr "نص التعليق"
1550
 
1551
+ #: admin/includes/templates/comments-logs.php:85
1552
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1553
  msgid "Not Found!"
1554
  msgstr ""
1555
 
1559
  msgid "WP ULike Premium"
1560
  msgstr "اعدادات وردبرس یولایک"
1561
 
1562
+ #: admin/includes/templates/go-pro.php:119
1563
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1564
  msgid ""
1565
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1566
  "ULike PRO plugin we fully support this page builder and have a variety of "
1567
  "widgets & controllers that make life much easier for you."
1568
  msgstr ""
1569
 
1570
+ #: admin/includes/templates/go-pro.php:119
1571
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1572
  msgid ""
1573
  "Just drag your desired widget and drop it in your Elementor sections, "
1574
  "customize as you go and enjoy your like and dislike buttons on your contents."
1575
  msgstr ""
1576
 
1577
+ #: admin/includes/templates/posts-logs.php:74
1578
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1579
  msgid "Post ID"
1580
  msgstr "ID المنشور"
1581
 
1582
+ #: admin/includes/templates/posts-logs.php:75
1583
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1584
  msgid "Post Title"
1585
  msgstr "عنوان المنشور"
1586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1587
  #: admin/includes/templates/statistics.php:76
1588
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1589
  msgid "Total"
1636
  msgid "Top"
1637
  msgstr "تلميح"
1638
 
1639
+ #: admin/includes/templates/topics-logs.php:74
1640
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1641
  msgid "Topic ID"
1642
  msgstr ""
1643
 
1644
+ #: admin/includes/templates/topics-logs.php:75
1645
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1646
  #, fuzzy
1647
  msgid "Topic Title"
1648
  msgstr "عنوان المنشور"
1766
  msgid "Are you sure to reset all options?"
1767
  msgstr "هل أنت متأكد لإزالة هذا البند ؟!"
1768
 
1769
+ #: admin/settings/classes/setup.class.php:436
1770
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1771
  msgid "Are you sure?"
1772
  msgstr ""
1773
 
1774
+ #: admin/settings/classes/setup.class.php:437
1775
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1776
  msgid "Restoring options."
1777
  msgstr ""
1778
 
1779
+ #: admin/settings/classes/setup.class.php:438
1780
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1781
  #, fuzzy
1782
  msgid "Importing options."
1783
  msgstr "خيارات النوع : "
1784
 
1785
+ #: admin/settings/classes/setup.class.php:441
1786
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1787
  msgid "Please enter %s or more characters"
1788
  msgstr ""
1789
 
1790
+ #: admin/settings/classes/setup.class.php:442
1791
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1792
  msgid "Searching..."
1793
  msgstr ""
1794
 
1795
+ #: admin/settings/classes/setup.class.php:443
1796
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1797
  msgid "No results match"
1798
  msgstr ""
1799
 
1800
+ #: admin/settings/classes/setup.class.php:514
1801
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1802
  msgid "Ooops! This field type (%s) can not be used here, yet."
1803
  msgstr ""
1804
 
1805
+ #: admin/settings/classes/setup.class.php:577
1806
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1807
  msgid "This field class is not available!"
1808
  msgstr ""
1809
 
1810
+ #: admin/settings/classes/setup.class.php:581
1811
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1812
  msgid "This type is not found!"
1813
  msgstr ""
1814
 
2689
  msgstr ""
2690
 
2691
  #: build/wp-ulike/inc/frontend-ajax.php:42
2692
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2693
+ #: inc/frontend-ajax.php:170
2694
  msgid "Error: This Method Is Not Exist!"
2695
  msgstr ""
2696
 
2697
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2698
+ msgid "Notice: The likers box is not activated!"
2699
  msgstr ""
2700
 
2701
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2702
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2703
  msgstr ""
2704
 
2705
  #: build/wp-ulike/inc/general-functions.php:85
2745
  msgid "Table info is empty."
2746
  msgstr ""
2747
 
2748
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2749
  msgid "You need to login in order to like this post: "
2750
  msgstr "تحتاج إلى تسجيل الدخول لتقییم هذا المنشور :"
2751
 
2752
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2753
  msgid "click here"
2754
  msgstr "اضغط هنا انقر للدخول"
2755
 
2756
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2757
  #, fuzzy
2758
  msgid "Like This"
2759
  msgstr "اعجاب"
lang/wp-ulike-cs_CZ.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Další informace:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Log"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Uživatelské jméno"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Aktualita"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr "Odkaz"
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Akce"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "Další informace:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr "ID článku"
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1536,13 +1582,13 @@ msgstr ""
1536
  msgid "Top"
1537
  msgstr "Vyskakovací tip"
1538
 
1539
- #: admin/includes/templates/topics-logs.php:52
1540
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1541
  msgid "Topic ID"
1542
  msgstr ""
1543
 
1544
- #: admin/includes/templates/topics-logs.php:53
1545
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1546
  msgid "Topic Title"
1547
  msgstr ""
1548
 
@@ -1661,48 +1707,48 @@ msgstr ""
1661
  msgid "Are you sure to reset all options?"
1662
  msgstr ""
1663
 
1664
- #: admin/settings/classes/setup.class.php:429
1665
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1666
  msgid "Are you sure?"
1667
  msgstr ""
1668
 
1669
- #: admin/settings/classes/setup.class.php:430
1670
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1671
  msgid "Restoring options."
1672
  msgstr ""
1673
 
1674
- #: admin/settings/classes/setup.class.php:431
1675
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1676
  msgid "Importing options."
1677
  msgstr ""
1678
 
1679
- #: admin/settings/classes/setup.class.php:434
1680
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1681
  msgid "Please enter %s or more characters"
1682
  msgstr ""
1683
 
1684
- #: admin/settings/classes/setup.class.php:435
1685
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1686
  msgid "Searching..."
1687
  msgstr ""
1688
 
1689
- #: admin/settings/classes/setup.class.php:436
1690
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1691
  msgid "No results match"
1692
  msgstr ""
1693
 
1694
- #: admin/settings/classes/setup.class.php:507
1695
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1696
  msgid "Ooops! This field type (%s) can not be used here, yet."
1697
  msgstr ""
1698
 
1699
- #: admin/settings/classes/setup.class.php:570
1700
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1701
  msgid "This field class is not available!"
1702
  msgstr ""
1703
 
1704
- #: admin/settings/classes/setup.class.php:574
1705
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1706
  msgid "This type is not found!"
1707
  msgstr ""
1708
 
@@ -2571,17 +2617,17 @@ msgid ""
2571
  msgstr ""
2572
 
2573
  #: build/wp-ulike/inc/frontend-ajax.php:42
2574
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2575
- #: inc/frontend-ajax.php:164
2576
  msgid "Error: This Method Is Not Exist!"
2577
  msgstr ""
2578
 
2579
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2580
- msgid "Notice: The likers box is refreshed only for logged in users!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2584
- msgid "Notice: The likers box is not activated!"
2585
  msgstr ""
2586
 
2587
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2626,15 +2672,15 @@ msgstr ""
2626
  msgid "Table info is empty."
2627
  msgstr ""
2628
 
2629
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2630
  msgid "You need to login in order to like this post: "
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2634
  msgid "click here"
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2638
  msgid "Like This"
2639
  msgstr ""
2640
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Další informace:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Log"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "Další informace:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Uživatelské jméno"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Aktualita"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr "Odkaz"
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Akce"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr "ID článku"
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1582
  msgid "Top"
1583
  msgstr "Vyskakovací tip"
1584
 
1585
+ #: admin/includes/templates/topics-logs.php:74
1586
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1587
  msgid "Topic ID"
1588
  msgstr ""
1589
 
1590
+ #: admin/includes/templates/topics-logs.php:75
1591
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1592
  msgid "Topic Title"
1593
  msgstr ""
1594
 
1707
  msgid "Are you sure to reset all options?"
1708
  msgstr ""
1709
 
1710
+ #: admin/settings/classes/setup.class.php:436
1711
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1712
  msgid "Are you sure?"
1713
  msgstr ""
1714
 
1715
+ #: admin/settings/classes/setup.class.php:437
1716
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1717
  msgid "Restoring options."
1718
  msgstr ""
1719
 
1720
+ #: admin/settings/classes/setup.class.php:438
1721
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1722
  msgid "Importing options."
1723
  msgstr ""
1724
 
1725
+ #: admin/settings/classes/setup.class.php:441
1726
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1727
  msgid "Please enter %s or more characters"
1728
  msgstr ""
1729
 
1730
+ #: admin/settings/classes/setup.class.php:442
1731
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1732
  msgid "Searching..."
1733
  msgstr ""
1734
 
1735
+ #: admin/settings/classes/setup.class.php:443
1736
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1737
  msgid "No results match"
1738
  msgstr ""
1739
 
1740
+ #: admin/settings/classes/setup.class.php:514
1741
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1742
  msgid "Ooops! This field type (%s) can not be used here, yet."
1743
  msgstr ""
1744
 
1745
+ #: admin/settings/classes/setup.class.php:577
1746
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1747
  msgid "This field class is not available!"
1748
  msgstr ""
1749
 
1750
+ #: admin/settings/classes/setup.class.php:581
1751
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1752
  msgid "This type is not found!"
1753
  msgstr ""
1754
 
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/frontend-ajax.php:42
2620
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2621
+ #: inc/frontend-ajax.php:170
2622
  msgid "Error: This Method Is Not Exist!"
2623
  msgstr ""
2624
 
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2626
+ msgid "Notice: The likers box is not activated!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2630
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2631
  msgstr ""
2632
 
2633
  #: build/wp-ulike/inc/general-functions.php:85
2672
  msgid "Table info is empty."
2673
  msgstr ""
2674
 
2675
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2676
  msgid "You need to login in order to like this post: "
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2680
  msgid "click here"
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2684
  msgid "Like This"
2685
  msgstr ""
2686
 
lang/wp-ulike-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Weitere Informationen:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Logdateien"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Benutzername"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Status"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Anzahl"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "Weitere Informationen:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr "Beitrags-ID"
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2571,17 +2617,17 @@ msgid ""
2571
  msgstr ""
2572
 
2573
  #: build/wp-ulike/inc/frontend-ajax.php:42
2574
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2575
- #: inc/frontend-ajax.php:164
2576
  msgid "Error: This Method Is Not Exist!"
2577
  msgstr ""
2578
 
2579
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2580
- msgid "Notice: The likers box is refreshed only for logged in users!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2584
- msgid "Notice: The likers box is not activated!"
2585
  msgstr ""
2586
 
2587
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2626,15 +2672,15 @@ msgstr ""
2626
  msgid "Table info is empty."
2627
  msgstr ""
2628
 
2629
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2630
  msgid "You need to login in order to like this post: "
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2634
  msgid "click here"
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2638
  #, fuzzy
2639
  msgid "Like This"
2640
  msgstr "Gefällt dir dieses Plugin?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Weitere Informationen:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Logdateien"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "Weitere Informationen:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Benutzername"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Status"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Anzahl"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr "Beitrags-ID"
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/frontend-ajax.php:42
2620
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2621
+ #: inc/frontend-ajax.php:170
2622
  msgid "Error: This Method Is Not Exist!"
2623
  msgstr ""
2624
 
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2626
+ msgid "Notice: The likers box is not activated!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2630
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2631
  msgstr ""
2632
 
2633
  #: build/wp-ulike/inc/general-functions.php:85
2672
  msgid "Table info is empty."
2673
  msgstr ""
2674
 
2675
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2676
  msgid "You need to login in order to like this post: "
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2680
  msgid "click here"
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2684
  #, fuzzy
2685
  msgid "Like This"
2686
  msgstr "Gefällt dir dieses Plugin?"
lang/wp-ulike-el.po CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP ULike\n"
8
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
9
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
10
  "PO-Revision-Date: 2017-01-20 21:23+0330\n"
11
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
12
  "Language-Team: Greek (http://www.transifex.com/wp-translations/wp-ulike/"
@@ -27,8 +27,8 @@ msgstr ""
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
31
- #: inc/frontend-ajax.php:151
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
@@ -44,9 +44,9 @@ msgstr ""
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
- #: admin/admin-functions.php:225
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
- #: build/wp-ulike/admin/admin-functions.php:228
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  #, fuzzy
52
  msgid "Button"
@@ -74,44 +74,58 @@ msgstr ""
74
  msgid "Sure, I'd love to!"
75
  msgstr ""
76
 
77
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
78
  #: build/wp-ulike/admin/admin-hooks.php:142
79
- #: build/wp-ulike/admin/admin-hooks.php:204
80
  msgid "Not Now"
81
  msgstr ""
82
 
83
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
84
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
- #: build/wp-ulike/admin/admin-hooks.php:210
 
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
- msgid "Boost Your SEO by Using Schema Rich Snippets"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
97
- "Plugin which can manage +13 types of Schema Markups to make a better "
98
- "connection between your webpages and search engines. Now you can talk in "
99
- "search engine language and tell them which type of content you are promoting."
100
  msgstr ""
101
 
102
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
103
- #: build/wp-ulike/admin/admin-hooks.php:170
104
- #: build/wp-ulike/admin/admin-hooks.php:200
 
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Για περισσότερα:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
- msgid "WP Ulike Pro is Ready :))"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
115
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
116
  "been released with some new features such as support for Dislike button, "
117
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -119,8 +133,8 @@ msgid ""
119
  "provide a full support for our users."
120
  msgstr ""
121
 
122
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
123
- #: build/wp-ulike/admin/admin-hooks.php:239
124
  #: build/wp-ulike/admin/includes/templates/about.php:29
125
  msgid "Go Pro"
126
  msgstr ""
@@ -136,30 +150,30 @@ msgid "No information was found in this database!"
136
  msgstr ""
137
 
138
  #: admin/classes/class-wp-ulike-admin-pages.php:27
139
- #: admin/includes/templates/posts-logs.php:39
140
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
141
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
142
  msgid "Post Likes Logs"
143
  msgstr ""
144
 
145
  #: admin/classes/class-wp-ulike-admin-pages.php:35
146
- #: admin/includes/templates/comments-logs.php:39
147
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
148
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
149
  msgid "Comment Likes Logs"
150
  msgstr ""
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:43
153
- #: admin/includes/templates/activities-logs.php:39
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
155
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
156
  msgid "Activity Likes Logs"
157
  msgstr ""
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:51
160
- #: admin/includes/templates/topics-logs.php:39
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
162
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
163
  msgid "Topics Likes Logs"
164
  msgstr ""
165
 
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr "Περί"
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr "Αρχείο καταγραφής"
200
 
@@ -1029,16 +1043,16 @@ msgstr ""
1029
  msgid "Topics Stats"
1030
  msgstr ""
1031
 
1032
- #: admin/classes/class-wp-ulike-stats.php:274
1033
- #: admin/includes/templates/activities-logs.php:76
1034
- #: admin/includes/templates/comments-logs.php:81
1035
- #: admin/includes/templates/posts-logs.php:75
1036
- #: admin/includes/templates/topics-logs.php:75
1037
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1038
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1039
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1040
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1041
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1042
  msgid "Guest User"
1043
  msgstr ""
1044
 
@@ -1326,115 +1340,177 @@ msgstr ""
1326
  msgid "No data found! This is because there is still no data in your database."
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:38
1330
- #: admin/includes/templates/comments-logs.php:38
1331
- #: admin/includes/templates/posts-logs.php:38
1332
- #: admin/includes/templates/topics-logs.php:38
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1337
  msgid "WP ULike Logs"
1338
  msgstr "Αρχείο καταγραφής WP ULike"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:49
1341
- #: admin/includes/templates/comments-logs.php:49
1342
- #: admin/includes/templates/posts-logs.php:49
1343
- #: admin/includes/templates/topics-logs.php:49
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1348
  msgid "ID"
1349
  msgstr "ID"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:50
1352
- #: admin/includes/templates/comments-logs.php:50
1353
- #: admin/includes/templates/posts-logs.php:50
1354
- #: admin/includes/templates/topics-logs.php:50
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1359
  msgid "Username"
1360
  msgstr "Όνομα χρήστη"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:51
1363
- #: admin/includes/templates/comments-logs.php:51
1364
- #: admin/includes/templates/posts-logs.php:51
1365
- #: admin/includes/templates/topics-logs.php:51
1366
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1367
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1368
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1369
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1370
  msgid "Status"
1371
  msgstr "Κατάσταση"
1372
 
1373
- #: admin/includes/templates/activities-logs.php:52
1374
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1375
  msgid "Activity ID"
1376
  msgstr "ID Δραστηριότητας"
1377
 
1378
- #: admin/includes/templates/activities-logs.php:53
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1380
  msgid "Permalink"
1381
  msgstr "Permalink"
1382
 
1383
- #: admin/includes/templates/activities-logs.php:54
1384
- #: admin/includes/templates/comments-logs.php:55
1385
- #: admin/includes/templates/posts-logs.php:54
1386
- #: admin/includes/templates/topics-logs.php:54
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1391
  msgid "Date / Time"
1392
  msgstr "Ημερομηνία / Ώρα"
1393
 
1394
- #: admin/includes/templates/activities-logs.php:55
1395
- #: admin/includes/templates/comments-logs.php:56
1396
- #: admin/includes/templates/posts-logs.php:55
1397
- #: admin/includes/templates/topics-logs.php:55
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1402
  msgid "IP"
1403
  msgstr "IP"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:56
1406
- #: admin/includes/templates/comments-logs.php:57
1407
- #: admin/includes/templates/posts-logs.php:56
1408
- #: admin/includes/templates/topics-logs.php:56
1409
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1410
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1411
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1412
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1413
  msgid "Actions"
1414
  msgstr "Ενέργειες"
1415
 
1416
- #: admin/includes/templates/activities-logs.php:92
1417
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1418
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1419
  msgstr "<a href=\"%1$s\">Permalink Δραστηριότητας</a>"
1420
 
1421
- #: admin/includes/templates/comments-logs.php:52
1422
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1423
  msgid "Comment ID"
1424
  msgstr "ID Σχολίου"
1425
 
1426
- #: admin/includes/templates/comments-logs.php:53
1427
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1428
  msgid "Comment Author"
1429
  msgstr "Συντάκτης Σχολίου"
1430
 
1431
- #: admin/includes/templates/comments-logs.php:54
1432
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1433
  msgid "Comment Text"
1434
  msgstr "Κείμενο Σχολίου"
1435
 
1436
- #: admin/includes/templates/comments-logs.php:63
1437
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1438
  msgid "Not Found!"
1439
  msgstr ""
1440
 
@@ -1444,61 +1520,31 @@ msgstr ""
1444
  msgid "WP ULike Premium"
1445
  msgstr "Ρυθμίσεις WP ULike"
1446
 
1447
- #: admin/includes/templates/go-pro.php:22
1448
- #: admin/includes/templates/statistics.php:48
1449
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1450
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1451
- msgid "Buy WP ULike Premium"
1452
- msgstr ""
1453
-
1454
- #: admin/includes/templates/go-pro.php:28
1455
- #: admin/includes/templates/statistics.php:53
1456
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1457
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1458
- #, fuzzy
1459
- msgid "More information"
1460
- msgstr "Για περισσότερα:"
1461
-
1462
- #: admin/includes/templates/go-pro.php:114
1463
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1464
  msgid ""
1465
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1466
  "ULike PRO plugin we fully support this page builder and have a variety of "
1467
  "widgets & controllers that make life much easier for you."
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/go-pro.php:114
1471
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1472
  msgid ""
1473
  "Just drag your desired widget and drop it in your Elementor sections, "
1474
  "customize as you go and enjoy your like and dislike buttons on your contents."
1475
  msgstr ""
1476
 
1477
- #: admin/includes/templates/posts-logs.php:52
1478
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1479
  msgid "Post ID"
1480
  msgstr "ID δημοσιεύματος"
1481
 
1482
- #: admin/includes/templates/posts-logs.php:53
1483
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1484
  msgid "Post Title"
1485
  msgstr "Τίτλος Άρθρου"
1486
 
1487
- #: admin/includes/templates/statistics.php:45
1488
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1489
- msgid "Check Votings, Best Likers & Top contents"
1490
- msgstr ""
1491
-
1492
- #: admin/includes/templates/statistics.php:47
1493
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1494
- msgid ""
1495
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1496
- "users love and what annoys them in an instance. You can extract reports of "
1497
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1498
- "dateRange picker and status selector controllers, no confusing options and "
1499
- "coding needed."
1500
- msgstr ""
1501
-
1502
  #: admin/includes/templates/statistics.php:76
1503
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1504
  msgid "Total"
@@ -1550,13 +1596,13 @@ msgstr ""
1550
  msgid "Top"
1551
  msgstr "Tooltip"
1552
 
1553
- #: admin/includes/templates/topics-logs.php:52
1554
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1555
  msgid "Topic ID"
1556
  msgstr ""
1557
 
1558
- #: admin/includes/templates/topics-logs.php:53
1559
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1560
  msgid "Topic Title"
1561
  msgstr ""
1562
 
@@ -1679,49 +1725,49 @@ msgstr ""
1679
  msgid "Are you sure to reset all options?"
1680
  msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το στοιχείο;!"
1681
 
1682
- #: admin/settings/classes/setup.class.php:429
1683
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1684
  msgid "Are you sure?"
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:430
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1689
  msgid "Restoring options."
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:431
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1694
  #, fuzzy
1695
  msgid "Importing options."
1696
  msgstr "Ταξινόμηση Επιλογών:"
1697
 
1698
- #: admin/settings/classes/setup.class.php:434
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1700
  msgid "Please enter %s or more characters"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:435
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1705
  msgid "Searching..."
1706
  msgstr ""
1707
 
1708
- #: admin/settings/classes/setup.class.php:436
1709
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1710
  msgid "No results match"
1711
  msgstr ""
1712
 
1713
- #: admin/settings/classes/setup.class.php:507
1714
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1715
  msgid "Ooops! This field type (%s) can not be used here, yet."
1716
  msgstr ""
1717
 
1718
- #: admin/settings/classes/setup.class.php:570
1719
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1720
  msgid "This field class is not available!"
1721
  msgstr ""
1722
 
1723
- #: admin/settings/classes/setup.class.php:574
1724
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1725
  msgid "This type is not found!"
1726
  msgstr ""
1727
 
@@ -2598,17 +2644,17 @@ msgid ""
2598
  msgstr ""
2599
 
2600
  #: build/wp-ulike/inc/frontend-ajax.php:42
2601
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2602
- #: inc/frontend-ajax.php:164
2603
  msgid "Error: This Method Is Not Exist!"
2604
  msgstr ""
2605
 
2606
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2607
- msgid "Notice: The likers box is refreshed only for logged in users!"
2608
  msgstr ""
2609
 
2610
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2611
- msgid "Notice: The likers box is not activated!"
2612
  msgstr ""
2613
 
2614
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2653,15 +2699,15 @@ msgstr ""
2653
  msgid "Table info is empty."
2654
  msgstr ""
2655
 
2656
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2657
  msgid "You need to login in order to like this post: "
2658
  msgstr ""
2659
 
2660
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2661
  msgid "click here"
2662
  msgstr "κάντε κλικ εδώ"
2663
 
2664
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2665
  #, fuzzy
2666
  msgid "Like This"
2667
  msgstr "Μου αρέσει"
6
  msgstr ""
7
  "Project-Id-Version: WP ULike\n"
8
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
9
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
10
  "PO-Revision-Date: 2017-01-20 21:23+0330\n"
11
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
12
  "Language-Team: Greek (http://www.transifex.com/wp-translations/wp-ulike/"
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
31
+ #: inc/frontend-ajax.php:152
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
+ #: admin/admin-functions.php:231
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
+ #: build/wp-ulike/admin/admin-functions.php:234
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  #, fuzzy
52
  msgid "Button"
74
  msgid "Sure, I'd love to!"
75
  msgstr ""
76
 
77
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
78
  #: build/wp-ulike/admin/admin-hooks.php:142
79
+ #: build/wp-ulike/admin/admin-hooks.php:227
80
  msgid "Not Now"
81
  msgstr ""
82
 
83
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
84
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
85
+ #: build/wp-ulike/admin/admin-hooks.php:148
86
  #: build/wp-ulike/admin/admin-hooks.php:174
87
+ #: build/wp-ulike/admin/admin-hooks.php:197
88
+ #: build/wp-ulike/admin/admin-hooks.php:233
89
  msgid "No thanks and never ask me again"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
93
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
94
  msgstr ""
95
 
96
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
97
  msgid ""
98
+ "Having votes for your content without a tool for measuring the results is "
99
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
100
+ "data in the WP ULike professional Logs panel."
 
101
  msgstr ""
102
 
103
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
104
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
105
+ #: build/wp-ulike/admin/admin-hooks.php:193
106
+ #: build/wp-ulike/admin/admin-hooks.php:223
107
  #, fuzzy
108
  msgid "Get More Information"
109
  msgstr "Για περισσότερα:"
110
 
111
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
112
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
113
  msgstr ""
114
 
115
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
116
  msgid ""
117
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
118
+ "Plugin which can manage +13 types of Schema Markups to make a better "
119
+ "connection between your webpages and search engines. Now you can talk in "
120
+ "search engine language and tell them which type of content you are promoting."
121
+ msgstr ""
122
+
123
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
124
+ msgid "WP Ulike Pro is Ready :))"
125
+ msgstr ""
126
+
127
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
128
+ msgid ""
129
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
130
  "been released with some new features such as support for Dislike button, "
131
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
133
  "provide a full support for our users."
134
  msgstr ""
135
 
136
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
137
+ #: build/wp-ulike/admin/admin-hooks.php:262
138
  #: build/wp-ulike/admin/includes/templates/about.php:29
139
  msgid "Go Pro"
140
  msgstr ""
150
  msgstr ""
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:27
153
+ #: admin/includes/templates/posts-logs.php:61
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
155
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
156
  msgid "Post Likes Logs"
157
  msgstr ""
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:35
160
+ #: admin/includes/templates/comments-logs.php:61
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
162
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
163
  msgid "Comment Likes Logs"
164
  msgstr ""
165
 
166
  #: admin/classes/class-wp-ulike-admin-pages.php:43
167
+ #: admin/includes/templates/activities-logs.php:61
168
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
169
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
170
  msgid "Activity Likes Logs"
171
  msgstr ""
172
 
173
  #: admin/classes/class-wp-ulike-admin-pages.php:51
174
+ #: admin/includes/templates/topics-logs.php:61
175
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
176
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
177
  msgid "Topics Likes Logs"
178
  msgstr ""
179
 
192
  msgstr "Περί"
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr "Αρχείο καταγραφής"
214
 
1043
  msgid "Topics Stats"
1044
  msgstr ""
1045
 
1046
+ #: admin/classes/class-wp-ulike-stats.php:273
1047
+ #: admin/includes/templates/activities-logs.php:98
1048
+ #: admin/includes/templates/comments-logs.php:103
1049
+ #: admin/includes/templates/posts-logs.php:97
1050
+ #: admin/includes/templates/topics-logs.php:97
1051
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1052
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1053
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1054
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1055
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1056
  msgid "Guest User"
1057
  msgstr ""
1058
 
1340
  msgid "No data found! This is because there is still no data in your database."
1341
  msgstr ""
1342
 
1343
+ #: admin/includes/templates/activities-logs.php:40
1344
+ #: admin/includes/templates/comments-logs.php:40
1345
+ #: admin/includes/templates/posts-logs.php:40
1346
+ #: admin/includes/templates/statistics.php:45
1347
+ #: admin/includes/templates/topics-logs.php:40
1348
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1349
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1350
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1351
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1352
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1353
+ msgid "Check Votings, Best Likers & Top contents"
1354
+ msgstr ""
1355
+
1356
+ #: admin/includes/templates/activities-logs.php:42
1357
+ #: admin/includes/templates/comments-logs.php:42
1358
+ #: admin/includes/templates/posts-logs.php:42
1359
+ #: admin/includes/templates/statistics.php:47
1360
+ #: admin/includes/templates/topics-logs.php:42
1361
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1362
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1363
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1364
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1365
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1366
+ msgid ""
1367
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1368
+ "users love and what annoys them in an instance. You can extract reports of "
1369
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1370
+ "dateRange picker and status selector controllers, no confusing options and "
1371
+ "coding needed."
1372
+ msgstr ""
1373
+
1374
+ #: admin/includes/templates/activities-logs.php:43
1375
+ #: admin/includes/templates/comments-logs.php:43
1376
+ #: admin/includes/templates/go-pro.php:22
1377
+ #: admin/includes/templates/posts-logs.php:43
1378
+ #: admin/includes/templates/statistics.php:48
1379
+ #: admin/includes/templates/topics-logs.php:43
1380
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1381
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1382
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1383
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1384
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1386
+ msgid "Buy WP ULike Premium"
1387
+ msgstr ""
1388
+
1389
+ #: admin/includes/templates/activities-logs.php:48
1390
+ #: admin/includes/templates/comments-logs.php:48
1391
+ #: admin/includes/templates/go-pro.php:28
1392
+ #: admin/includes/templates/posts-logs.php:48
1393
+ #: admin/includes/templates/statistics.php:53
1394
+ #: admin/includes/templates/topics-logs.php:48
1395
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1396
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1397
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1398
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1399
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1400
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1401
+ #, fuzzy
1402
+ msgid "More information"
1403
+ msgstr "Για περισσότερα:"
1404
+
1405
+ #: admin/includes/templates/activities-logs.php:60
1406
+ #: admin/includes/templates/comments-logs.php:60
1407
+ #: admin/includes/templates/posts-logs.php:60
1408
+ #: admin/includes/templates/topics-logs.php:60
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1413
  msgid "WP ULike Logs"
1414
  msgstr "Αρχείο καταγραφής WP ULike"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:71
1417
+ #: admin/includes/templates/comments-logs.php:71
1418
+ #: admin/includes/templates/posts-logs.php:71
1419
+ #: admin/includes/templates/topics-logs.php:71
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1424
  msgid "ID"
1425
  msgstr "ID"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:72
1428
+ #: admin/includes/templates/comments-logs.php:72
1429
+ #: admin/includes/templates/posts-logs.php:72
1430
+ #: admin/includes/templates/topics-logs.php:72
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1435
  msgid "Username"
1436
  msgstr "Όνομα χρήστη"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:73
1439
+ #: admin/includes/templates/comments-logs.php:73
1440
+ #: admin/includes/templates/posts-logs.php:73
1441
+ #: admin/includes/templates/topics-logs.php:73
1442
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1443
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1444
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1445
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1446
  msgid "Status"
1447
  msgstr "Κατάσταση"
1448
 
1449
+ #: admin/includes/templates/activities-logs.php:74
1450
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1451
  msgid "Activity ID"
1452
  msgstr "ID Δραστηριότητας"
1453
 
1454
+ #: admin/includes/templates/activities-logs.php:75
1455
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1456
  msgid "Permalink"
1457
  msgstr "Permalink"
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:76
1460
+ #: admin/includes/templates/comments-logs.php:77
1461
+ #: admin/includes/templates/posts-logs.php:76
1462
+ #: admin/includes/templates/topics-logs.php:76
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1467
  msgid "Date / Time"
1468
  msgstr "Ημερομηνία / Ώρα"
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:77
1471
+ #: admin/includes/templates/comments-logs.php:78
1472
+ #: admin/includes/templates/posts-logs.php:77
1473
+ #: admin/includes/templates/topics-logs.php:77
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1478
  msgid "IP"
1479
  msgstr "IP"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:78
1482
+ #: admin/includes/templates/comments-logs.php:79
1483
+ #: admin/includes/templates/posts-logs.php:78
1484
+ #: admin/includes/templates/topics-logs.php:78
1485
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1486
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1487
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1488
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1489
  msgid "Actions"
1490
  msgstr "Ενέργειες"
1491
 
1492
+ #: admin/includes/templates/activities-logs.php:114
1493
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1494
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1495
  msgstr "<a href=\"%1$s\">Permalink Δραστηριότητας</a>"
1496
 
1497
+ #: admin/includes/templates/comments-logs.php:74
1498
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1499
  msgid "Comment ID"
1500
  msgstr "ID Σχολίου"
1501
 
1502
+ #: admin/includes/templates/comments-logs.php:75
1503
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1504
  msgid "Comment Author"
1505
  msgstr "Συντάκτης Σχολίου"
1506
 
1507
+ #: admin/includes/templates/comments-logs.php:76
1508
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1509
  msgid "Comment Text"
1510
  msgstr "Κείμενο Σχολίου"
1511
 
1512
+ #: admin/includes/templates/comments-logs.php:85
1513
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1514
  msgid "Not Found!"
1515
  msgstr ""
1516
 
1520
  msgid "WP ULike Premium"
1521
  msgstr "Ρυθμίσεις WP ULike"
1522
 
1523
+ #: admin/includes/templates/go-pro.php:119
1524
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1525
  msgid ""
1526
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1527
  "ULike PRO plugin we fully support this page builder and have a variety of "
1528
  "widgets & controllers that make life much easier for you."
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/go-pro.php:119
1532
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1533
  msgid ""
1534
  "Just drag your desired widget and drop it in your Elementor sections, "
1535
  "customize as you go and enjoy your like and dislike buttons on your contents."
1536
  msgstr ""
1537
 
1538
+ #: admin/includes/templates/posts-logs.php:74
1539
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1540
  msgid "Post ID"
1541
  msgstr "ID δημοσιεύματος"
1542
 
1543
+ #: admin/includes/templates/posts-logs.php:75
1544
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1545
  msgid "Post Title"
1546
  msgstr "Τίτλος Άρθρου"
1547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1548
  #: admin/includes/templates/statistics.php:76
1549
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1550
  msgid "Total"
1596
  msgid "Top"
1597
  msgstr "Tooltip"
1598
 
1599
+ #: admin/includes/templates/topics-logs.php:74
1600
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1601
  msgid "Topic ID"
1602
  msgstr ""
1603
 
1604
+ #: admin/includes/templates/topics-logs.php:75
1605
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1606
  msgid "Topic Title"
1607
  msgstr ""
1608
 
1725
  msgid "Are you sure to reset all options?"
1726
  msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το στοιχείο;!"
1727
 
1728
+ #: admin/settings/classes/setup.class.php:436
1729
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1730
  msgid "Are you sure?"
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:437
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1735
  msgid "Restoring options."
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:438
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1740
  #, fuzzy
1741
  msgid "Importing options."
1742
  msgstr "Ταξινόμηση Επιλογών:"
1743
 
1744
+ #: admin/settings/classes/setup.class.php:441
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1746
  msgid "Please enter %s or more characters"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:442
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1751
  msgid "Searching..."
1752
  msgstr ""
1753
 
1754
+ #: admin/settings/classes/setup.class.php:443
1755
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1756
  msgid "No results match"
1757
  msgstr ""
1758
 
1759
+ #: admin/settings/classes/setup.class.php:514
1760
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1761
  msgid "Ooops! This field type (%s) can not be used here, yet."
1762
  msgstr ""
1763
 
1764
+ #: admin/settings/classes/setup.class.php:577
1765
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1766
  msgid "This field class is not available!"
1767
  msgstr ""
1768
 
1769
+ #: admin/settings/classes/setup.class.php:581
1770
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1771
  msgid "This type is not found!"
1772
  msgstr ""
1773
 
2644
  msgstr ""
2645
 
2646
  #: build/wp-ulike/inc/frontend-ajax.php:42
2647
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2648
+ #: inc/frontend-ajax.php:170
2649
  msgid "Error: This Method Is Not Exist!"
2650
  msgstr ""
2651
 
2652
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2653
+ msgid "Notice: The likers box is not activated!"
2654
  msgstr ""
2655
 
2656
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2657
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2658
  msgstr ""
2659
 
2660
  #: build/wp-ulike/inc/general-functions.php:85
2699
  msgid "Table info is empty."
2700
  msgstr ""
2701
 
2702
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2703
  msgid "You need to login in order to like this post: "
2704
  msgstr ""
2705
 
2706
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2707
  msgid "click here"
2708
  msgstr "κάντε κλικ εδώ"
2709
 
2710
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2711
  #, fuzzy
2712
  msgid "Like This"
2713
  msgstr "Μου αρέσει"
lang/wp-ulike-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike 2.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:40+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: \n"
@@ -24,8 +24,8 @@ msgstr ""
24
  #: build/wp-ulike/admin/admin-ajax.php:76
25
  #: build/wp-ulike/admin/admin-ajax.php:82
26
  #: build/wp-ulike/inc/frontend-ajax.php:34
27
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
28
- #: inc/frontend-ajax.php:151
29
  msgid "Error: Something Wrong Happened!"
30
  msgstr ""
31
 
@@ -41,9 +41,9 @@ msgstr ""
41
  msgid "It's Ok!"
42
  msgstr ""
43
 
44
- #: admin/admin-functions.php:225
45
  #: admin/classes/class-wp-ulike-admin-panel.php:517
46
- #: build/wp-ulike/admin/admin-functions.php:228
47
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
48
  msgid "Button"
49
  msgstr ""
@@ -70,43 +70,57 @@ msgstr ""
70
  msgid "Sure, I'd love to!"
71
  msgstr ""
72
 
73
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
74
  #: build/wp-ulike/admin/admin-hooks.php:142
75
- #: build/wp-ulike/admin/admin-hooks.php:204
76
  msgid "Not Now"
77
  msgstr ""
78
 
79
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
80
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
81
  #: build/wp-ulike/admin/admin-hooks.php:174
82
- #: build/wp-ulike/admin/admin-hooks.php:210
 
83
  msgid "No thanks and never ask me again"
84
  msgstr ""
85
 
86
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
87
- msgid "Boost Your SEO by Using Schema Rich Snippets"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
91
  msgid ""
92
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
93
- "Plugin which can manage +13 types of Schema Markups to make a better "
94
- "connection between your webpages and search engines. Now you can talk in "
95
- "search engine language and tell them which type of content you are promoting."
96
  msgstr ""
97
 
98
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
99
- #: build/wp-ulike/admin/admin-hooks.php:170
100
- #: build/wp-ulike/admin/admin-hooks.php:200
 
101
  msgid "Get More Information"
102
  msgstr ""
103
 
104
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
105
- msgid "WP Ulike Pro is Ready :))"
106
  msgstr ""
107
 
108
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
109
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
110
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
111
  "been released with some new features such as support for Dislike button, "
112
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -114,8 +128,8 @@ msgid ""
114
  "provide a full support for our users."
115
  msgstr ""
116
 
117
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
118
- #: build/wp-ulike/admin/admin-hooks.php:239
119
  #: build/wp-ulike/admin/includes/templates/about.php:29
120
  msgid "Go Pro"
121
  msgstr ""
@@ -131,30 +145,30 @@ msgid "No information was found in this database!"
131
  msgstr ""
132
 
133
  #: admin/classes/class-wp-ulike-admin-pages.php:27
134
- #: admin/includes/templates/posts-logs.php:39
135
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
136
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
137
  msgid "Post Likes Logs"
138
  msgstr ""
139
 
140
  #: admin/classes/class-wp-ulike-admin-pages.php:35
141
- #: admin/includes/templates/comments-logs.php:39
142
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
143
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
144
  msgid "Comment Likes Logs"
145
  msgstr ""
146
 
147
  #: admin/classes/class-wp-ulike-admin-pages.php:43
148
- #: admin/includes/templates/activities-logs.php:39
149
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
150
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
151
  msgid "Activity Likes Logs"
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:51
155
- #: admin/includes/templates/topics-logs.php:39
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
157
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
158
  msgid "Topics Likes Logs"
159
  msgstr ""
160
 
@@ -173,23 +187,23 @@ msgid "About"
173
  msgstr ""
174
 
175
  #: admin/classes/class-wp-ulike-admin-pages.php:133
176
- #: admin/includes/templates/activities-logs.php:42
177
- #: admin/includes/templates/activities-logs.php:119
178
- #: admin/includes/templates/comments-logs.php:42
179
- #: admin/includes/templates/comments-logs.php:129
180
- #: admin/includes/templates/posts-logs.php:42
181
- #: admin/includes/templates/posts-logs.php:118
182
- #: admin/includes/templates/topics-logs.php:42
183
- #: admin/includes/templates/topics-logs.php:118
184
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
185
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
186
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
187
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
188
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
189
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
191
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
193
  msgid "Logs"
194
  msgstr ""
195
 
@@ -1005,16 +1019,16 @@ msgstr ""
1005
  msgid "Topics Stats"
1006
  msgstr ""
1007
 
1008
- #: admin/classes/class-wp-ulike-stats.php:274
1009
- #: admin/includes/templates/activities-logs.php:76
1010
- #: admin/includes/templates/comments-logs.php:81
1011
- #: admin/includes/templates/posts-logs.php:75
1012
- #: admin/includes/templates/topics-logs.php:75
1013
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1014
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1015
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1016
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1017
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1018
  msgid "Guest User"
1019
  msgstr ""
1020
 
@@ -1300,115 +1314,176 @@ msgstr ""
1300
  msgid "No data found! This is because there is still no data in your database."
1301
  msgstr ""
1302
 
1303
- #: admin/includes/templates/activities-logs.php:38
1304
- #: admin/includes/templates/comments-logs.php:38
1305
- #: admin/includes/templates/posts-logs.php:38
1306
- #: admin/includes/templates/topics-logs.php:38
1307
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1308
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1309
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1310
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1311
  msgid "WP ULike Logs"
1312
  msgstr ""
1313
 
1314
- #: admin/includes/templates/activities-logs.php:49
1315
- #: admin/includes/templates/comments-logs.php:49
1316
- #: admin/includes/templates/posts-logs.php:49
1317
- #: admin/includes/templates/topics-logs.php:49
1318
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1319
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1320
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1321
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1322
  msgid "ID"
1323
  msgstr ""
1324
 
1325
- #: admin/includes/templates/activities-logs.php:50
1326
- #: admin/includes/templates/comments-logs.php:50
1327
- #: admin/includes/templates/posts-logs.php:50
1328
- #: admin/includes/templates/topics-logs.php:50
1329
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1330
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1331
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1332
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1333
  msgid "Username"
1334
  msgstr ""
1335
 
1336
- #: admin/includes/templates/activities-logs.php:51
1337
- #: admin/includes/templates/comments-logs.php:51
1338
- #: admin/includes/templates/posts-logs.php:51
1339
- #: admin/includes/templates/topics-logs.php:51
1340
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1341
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1342
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1343
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1344
  msgid "Status"
1345
  msgstr ""
1346
 
1347
- #: admin/includes/templates/activities-logs.php:52
1348
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1349
  msgid "Activity ID"
1350
  msgstr ""
1351
 
1352
- #: admin/includes/templates/activities-logs.php:53
1353
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1354
  msgid "Permalink"
1355
  msgstr ""
1356
 
1357
- #: admin/includes/templates/activities-logs.php:54
1358
- #: admin/includes/templates/comments-logs.php:55
1359
- #: admin/includes/templates/posts-logs.php:54
1360
- #: admin/includes/templates/topics-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1362
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1363
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1364
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1365
  msgid "Date / Time"
1366
  msgstr ""
1367
 
1368
- #: admin/includes/templates/activities-logs.php:55
1369
- #: admin/includes/templates/comments-logs.php:56
1370
- #: admin/includes/templates/posts-logs.php:55
1371
- #: admin/includes/templates/topics-logs.php:55
1372
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1373
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1374
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1375
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1376
  msgid "IP"
1377
  msgstr ""
1378
 
1379
- #: admin/includes/templates/activities-logs.php:56
1380
- #: admin/includes/templates/comments-logs.php:57
1381
- #: admin/includes/templates/posts-logs.php:56
1382
- #: admin/includes/templates/topics-logs.php:56
1383
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1384
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1385
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1386
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1387
  msgid "Actions"
1388
  msgstr ""
1389
 
1390
- #: admin/includes/templates/activities-logs.php:92
1391
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1392
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1393
  msgstr ""
1394
 
1395
- #: admin/includes/templates/comments-logs.php:52
1396
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1397
  msgid "Comment ID"
1398
  msgstr ""
1399
 
1400
- #: admin/includes/templates/comments-logs.php:53
1401
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1402
  msgid "Comment Author"
1403
  msgstr ""
1404
 
1405
- #: admin/includes/templates/comments-logs.php:54
1406
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1407
  msgid "Comment Text"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:63
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1412
  msgid "Not Found!"
1413
  msgstr ""
1414
 
@@ -1417,60 +1492,31 @@ msgstr ""
1417
  msgid "WP ULike Premium"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/go-pro.php:22
1421
- #: admin/includes/templates/statistics.php:48
1422
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1423
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1424
- msgid "Buy WP ULike Premium"
1425
- msgstr ""
1426
-
1427
- #: admin/includes/templates/go-pro.php:28
1428
- #: admin/includes/templates/statistics.php:53
1429
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1430
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1431
- msgid "More information"
1432
- msgstr ""
1433
-
1434
- #: admin/includes/templates/go-pro.php:114
1435
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1436
  msgid ""
1437
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1438
  "ULike PRO plugin we fully support this page builder and have a variety of "
1439
  "widgets & controllers that make life much easier for you."
1440
  msgstr ""
1441
 
1442
- #: admin/includes/templates/go-pro.php:114
1443
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1444
  msgid ""
1445
  "Just drag your desired widget and drop it in your Elementor sections, "
1446
  "customize as you go and enjoy your like and dislike buttons on your contents."
1447
  msgstr ""
1448
 
1449
- #: admin/includes/templates/posts-logs.php:52
1450
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1451
  msgid "Post ID"
1452
  msgstr ""
1453
 
1454
- #: admin/includes/templates/posts-logs.php:53
1455
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1456
  msgid "Post Title"
1457
  msgstr ""
1458
 
1459
- #: admin/includes/templates/statistics.php:45
1460
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1461
- msgid "Check Votings, Best Likers & Top contents"
1462
- msgstr ""
1463
-
1464
- #: admin/includes/templates/statistics.php:47
1465
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1466
- msgid ""
1467
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1468
- "users love and what annoys them in an instance. You can extract reports of "
1469
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1470
- "dateRange picker and status selector controllers, no confusing options and "
1471
- "coding needed."
1472
- msgstr ""
1473
-
1474
  #: admin/includes/templates/statistics.php:76
1475
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1476
  msgid "Total"
@@ -1516,13 +1562,13 @@ msgstr ""
1516
  msgid "Top"
1517
  msgstr ""
1518
 
1519
- #: admin/includes/templates/topics-logs.php:52
1520
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1521
  msgid "Topic ID"
1522
  msgstr ""
1523
 
1524
- #: admin/includes/templates/topics-logs.php:53
1525
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1526
  msgid "Topic Title"
1527
  msgstr ""
1528
 
@@ -1640,48 +1686,48 @@ msgstr ""
1640
  msgid "Are you sure to reset all options?"
1641
  msgstr ""
1642
 
1643
- #: admin/settings/classes/setup.class.php:429
1644
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1645
  msgid "Are you sure?"
1646
  msgstr ""
1647
 
1648
- #: admin/settings/classes/setup.class.php:430
1649
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1650
  msgid "Restoring options."
1651
  msgstr ""
1652
 
1653
- #: admin/settings/classes/setup.class.php:431
1654
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1655
  msgid "Importing options."
1656
  msgstr ""
1657
 
1658
- #: admin/settings/classes/setup.class.php:434
1659
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1660
  msgid "Please enter %s or more characters"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:435
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1665
  msgid "Searching..."
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:436
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1670
  msgid "No results match"
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:507
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1675
  msgid "Ooops! This field type (%s) can not be used here, yet."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:570
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1680
  msgid "This field class is not available!"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:574
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1685
  msgid "This type is not found!"
1686
  msgstr ""
1687
 
@@ -2523,17 +2569,17 @@ msgid ""
2523
  msgstr ""
2524
 
2525
  #: build/wp-ulike/inc/frontend-ajax.php:42
2526
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2527
- #: inc/frontend-ajax.php:164
2528
  msgid "Error: This Method Is Not Exist!"
2529
  msgstr ""
2530
 
2531
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2532
- msgid "Notice: The likers box is refreshed only for logged in users!"
2533
  msgstr ""
2534
 
2535
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2536
- msgid "Notice: The likers box is not activated!"
2537
  msgstr ""
2538
 
2539
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2578,15 +2624,15 @@ msgstr ""
2578
  msgid "Table info is empty."
2579
  msgstr ""
2580
 
2581
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2582
  msgid "You need to login in order to like this post: "
2583
  msgstr ""
2584
 
2585
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2586
  msgid "click here"
2587
  msgstr ""
2588
 
2589
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2590
  msgid "Like This"
2591
  msgstr ""
2592
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike 2.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:40+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: \n"
24
  #: build/wp-ulike/admin/admin-ajax.php:76
25
  #: build/wp-ulike/admin/admin-ajax.php:82
26
  #: build/wp-ulike/inc/frontend-ajax.php:34
27
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
28
+ #: inc/frontend-ajax.php:152
29
  msgid "Error: Something Wrong Happened!"
30
  msgstr ""
31
 
41
  msgid "It's Ok!"
42
  msgstr ""
43
 
44
+ #: admin/admin-functions.php:231
45
  #: admin/classes/class-wp-ulike-admin-panel.php:517
46
+ #: build/wp-ulike/admin/admin-functions.php:234
47
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
48
  msgid "Button"
49
  msgstr ""
70
  msgid "Sure, I'd love to!"
71
  msgstr ""
72
 
73
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
74
  #: build/wp-ulike/admin/admin-hooks.php:142
75
+ #: build/wp-ulike/admin/admin-hooks.php:227
76
  msgid "Not Now"
77
  msgstr ""
78
 
79
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
80
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
81
+ #: build/wp-ulike/admin/admin-hooks.php:148
82
  #: build/wp-ulike/admin/admin-hooks.php:174
83
+ #: build/wp-ulike/admin/admin-hooks.php:197
84
+ #: build/wp-ulike/admin/admin-hooks.php:233
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
+ "Having votes for your content without a tool for measuring the results is "
95
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
96
+ "data in the WP ULike professional Logs panel."
 
97
  msgstr ""
98
 
99
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
100
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
101
+ #: build/wp-ulike/admin/admin-hooks.php:193
102
+ #: build/wp-ulike/admin/admin-hooks.php:223
103
  msgid "Get More Information"
104
  msgstr ""
105
 
106
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
107
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
108
  msgstr ""
109
 
110
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
111
  msgid ""
112
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
113
+ "Plugin which can manage +13 types of Schema Markups to make a better "
114
+ "connection between your webpages and search engines. Now you can talk in "
115
+ "search engine language and tell them which type of content you are promoting."
116
+ msgstr ""
117
+
118
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
119
+ msgid "WP Ulike Pro is Ready :))"
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
123
+ msgid ""
124
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
125
  "been released with some new features such as support for Dislike button, "
126
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
128
  "provide a full support for our users."
129
  msgstr ""
130
 
131
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
132
+ #: build/wp-ulike/admin/admin-hooks.php:262
133
  #: build/wp-ulike/admin/includes/templates/about.php:29
134
  msgid "Go Pro"
135
  msgstr ""
145
  msgstr ""
146
 
147
  #: admin/classes/class-wp-ulike-admin-pages.php:27
148
+ #: admin/includes/templates/posts-logs.php:61
149
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
150
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
151
  msgid "Post Likes Logs"
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:35
155
+ #: admin/includes/templates/comments-logs.php:61
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
157
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
158
  msgid "Comment Likes Logs"
159
  msgstr ""
160
 
161
  #: admin/classes/class-wp-ulike-admin-pages.php:43
162
+ #: admin/includes/templates/activities-logs.php:61
163
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
164
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
165
  msgid "Activity Likes Logs"
166
  msgstr ""
167
 
168
  #: admin/classes/class-wp-ulike-admin-pages.php:51
169
+ #: admin/includes/templates/topics-logs.php:61
170
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
171
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
172
  msgid "Topics Likes Logs"
173
  msgstr ""
174
 
187
  msgstr ""
188
 
189
  #: admin/classes/class-wp-ulike-admin-pages.php:133
190
+ #: admin/includes/templates/activities-logs.php:64
191
+ #: admin/includes/templates/activities-logs.php:141
192
+ #: admin/includes/templates/comments-logs.php:64
193
+ #: admin/includes/templates/comments-logs.php:151
194
+ #: admin/includes/templates/posts-logs.php:64
195
+ #: admin/includes/templates/posts-logs.php:140
196
+ #: admin/includes/templates/topics-logs.php:64
197
+ #: admin/includes/templates/topics-logs.php:140
198
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
199
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
200
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
201
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
202
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
203
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
205
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
207
  msgid "Logs"
208
  msgstr ""
209
 
1019
  msgid "Topics Stats"
1020
  msgstr ""
1021
 
1022
+ #: admin/classes/class-wp-ulike-stats.php:273
1023
+ #: admin/includes/templates/activities-logs.php:98
1024
+ #: admin/includes/templates/comments-logs.php:103
1025
+ #: admin/includes/templates/posts-logs.php:97
1026
+ #: admin/includes/templates/topics-logs.php:97
1027
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1028
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1029
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1030
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1031
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1032
  msgid "Guest User"
1033
  msgstr ""
1034
 
1314
  msgid "No data found! This is because there is still no data in your database."
1315
  msgstr ""
1316
 
1317
+ #: admin/includes/templates/activities-logs.php:40
1318
+ #: admin/includes/templates/comments-logs.php:40
1319
+ #: admin/includes/templates/posts-logs.php:40
1320
+ #: admin/includes/templates/statistics.php:45
1321
+ #: admin/includes/templates/topics-logs.php:40
1322
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1323
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1324
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1325
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1326
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1327
+ msgid "Check Votings, Best Likers & Top contents"
1328
+ msgstr ""
1329
+
1330
+ #: admin/includes/templates/activities-logs.php:42
1331
+ #: admin/includes/templates/comments-logs.php:42
1332
+ #: admin/includes/templates/posts-logs.php:42
1333
+ #: admin/includes/templates/statistics.php:47
1334
+ #: admin/includes/templates/topics-logs.php:42
1335
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1336
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1337
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1338
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1339
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1340
+ msgid ""
1341
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1342
+ "users love and what annoys them in an instance. You can extract reports of "
1343
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1344
+ "dateRange picker and status selector controllers, no confusing options and "
1345
+ "coding needed."
1346
+ msgstr ""
1347
+
1348
+ #: admin/includes/templates/activities-logs.php:43
1349
+ #: admin/includes/templates/comments-logs.php:43
1350
+ #: admin/includes/templates/go-pro.php:22
1351
+ #: admin/includes/templates/posts-logs.php:43
1352
+ #: admin/includes/templates/statistics.php:48
1353
+ #: admin/includes/templates/topics-logs.php:43
1354
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1355
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1356
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1357
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1358
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1359
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1360
+ msgid "Buy WP ULike Premium"
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:48
1364
+ #: admin/includes/templates/comments-logs.php:48
1365
+ #: admin/includes/templates/go-pro.php:28
1366
+ #: admin/includes/templates/posts-logs.php:48
1367
+ #: admin/includes/templates/statistics.php:53
1368
+ #: admin/includes/templates/topics-logs.php:48
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1375
+ msgid "More information"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:60
1379
+ #: admin/includes/templates/comments-logs.php:60
1380
+ #: admin/includes/templates/posts-logs.php:60
1381
+ #: admin/includes/templates/topics-logs.php:60
1382
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1383
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1384
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1385
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1386
  msgid "WP ULike Logs"
1387
  msgstr ""
1388
 
1389
+ #: admin/includes/templates/activities-logs.php:71
1390
+ #: admin/includes/templates/comments-logs.php:71
1391
+ #: admin/includes/templates/posts-logs.php:71
1392
+ #: admin/includes/templates/topics-logs.php:71
1393
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1394
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1395
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1396
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1397
  msgid "ID"
1398
  msgstr ""
1399
 
1400
+ #: admin/includes/templates/activities-logs.php:72
1401
+ #: admin/includes/templates/comments-logs.php:72
1402
+ #: admin/includes/templates/posts-logs.php:72
1403
+ #: admin/includes/templates/topics-logs.php:72
1404
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1405
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1406
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1407
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1408
  msgid "Username"
1409
  msgstr ""
1410
 
1411
+ #: admin/includes/templates/activities-logs.php:73
1412
+ #: admin/includes/templates/comments-logs.php:73
1413
+ #: admin/includes/templates/posts-logs.php:73
1414
+ #: admin/includes/templates/topics-logs.php:73
1415
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1416
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1417
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1418
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1419
  msgid "Status"
1420
  msgstr ""
1421
 
1422
+ #: admin/includes/templates/activities-logs.php:74
1423
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1424
  msgid "Activity ID"
1425
  msgstr ""
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:75
1428
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1429
  msgid "Permalink"
1430
  msgstr ""
1431
 
1432
+ #: admin/includes/templates/activities-logs.php:76
1433
+ #: admin/includes/templates/comments-logs.php:77
1434
+ #: admin/includes/templates/posts-logs.php:76
1435
+ #: admin/includes/templates/topics-logs.php:76
1436
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1437
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1438
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1439
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1440
  msgid "Date / Time"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:77
1444
+ #: admin/includes/templates/comments-logs.php:78
1445
+ #: admin/includes/templates/posts-logs.php:77
1446
+ #: admin/includes/templates/topics-logs.php:77
1447
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1448
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1449
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1450
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1451
  msgid "IP"
1452
  msgstr ""
1453
 
1454
+ #: admin/includes/templates/activities-logs.php:78
1455
+ #: admin/includes/templates/comments-logs.php:79
1456
+ #: admin/includes/templates/posts-logs.php:78
1457
+ #: admin/includes/templates/topics-logs.php:78
1458
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1459
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1460
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1461
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1462
  msgid "Actions"
1463
  msgstr ""
1464
 
1465
+ #: admin/includes/templates/activities-logs.php:114
1466
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1467
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/comments-logs.php:74
1471
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1472
  msgid "Comment ID"
1473
  msgstr ""
1474
 
1475
+ #: admin/includes/templates/comments-logs.php:75
1476
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1477
  msgid "Comment Author"
1478
  msgstr ""
1479
 
1480
+ #: admin/includes/templates/comments-logs.php:76
1481
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1482
  msgid "Comment Text"
1483
  msgstr ""
1484
 
1485
+ #: admin/includes/templates/comments-logs.php:85
1486
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1487
  msgid "Not Found!"
1488
  msgstr ""
1489
 
1492
  msgid "WP ULike Premium"
1493
  msgstr ""
1494
 
1495
+ #: admin/includes/templates/go-pro.php:119
1496
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1497
  msgid ""
1498
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1499
  "ULike PRO plugin we fully support this page builder and have a variety of "
1500
  "widgets & controllers that make life much easier for you."
1501
  msgstr ""
1502
 
1503
+ #: admin/includes/templates/go-pro.php:119
1504
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1505
  msgid ""
1506
  "Just drag your desired widget and drop it in your Elementor sections, "
1507
  "customize as you go and enjoy your like and dislike buttons on your contents."
1508
  msgstr ""
1509
 
1510
+ #: admin/includes/templates/posts-logs.php:74
1511
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1512
  msgid "Post ID"
1513
  msgstr ""
1514
 
1515
+ #: admin/includes/templates/posts-logs.php:75
1516
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1517
  msgid "Post Title"
1518
  msgstr ""
1519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1520
  #: admin/includes/templates/statistics.php:76
1521
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1522
  msgid "Total"
1562
  msgid "Top"
1563
  msgstr ""
1564
 
1565
+ #: admin/includes/templates/topics-logs.php:74
1566
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1567
  msgid "Topic ID"
1568
  msgstr ""
1569
 
1570
+ #: admin/includes/templates/topics-logs.php:75
1571
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1572
  msgid "Topic Title"
1573
  msgstr ""
1574
 
1686
  msgid "Are you sure to reset all options?"
1687
  msgstr ""
1688
 
1689
+ #: admin/settings/classes/setup.class.php:436
1690
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1691
  msgid "Are you sure?"
1692
  msgstr ""
1693
 
1694
+ #: admin/settings/classes/setup.class.php:437
1695
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1696
  msgid "Restoring options."
1697
  msgstr ""
1698
 
1699
+ #: admin/settings/classes/setup.class.php:438
1700
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1701
  msgid "Importing options."
1702
  msgstr ""
1703
 
1704
+ #: admin/settings/classes/setup.class.php:441
1705
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1706
  msgid "Please enter %s or more characters"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:442
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1711
  msgid "Searching..."
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:443
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1716
  msgid "No results match"
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:514
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1721
  msgid "Ooops! This field type (%s) can not be used here, yet."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:577
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1726
  msgid "This field class is not available!"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:581
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1731
  msgid "This type is not found!"
1732
  msgstr ""
1733
 
2569
  msgstr ""
2570
 
2571
  #: build/wp-ulike/inc/frontend-ajax.php:42
2572
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2573
+ #: inc/frontend-ajax.php:170
2574
  msgid "Error: This Method Is Not Exist!"
2575
  msgstr ""
2576
 
2577
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2578
+ msgid "Notice: The likers box is not activated!"
2579
  msgstr ""
2580
 
2581
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2582
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2583
  msgstr ""
2584
 
2585
  #: build/wp-ulike/inc/general-functions.php:85
2624
  msgid "Table info is empty."
2625
  msgstr ""
2626
 
2627
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2628
  msgid "You need to login in order to like this post: "
2629
  msgstr ""
2630
 
2631
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2632
  msgid "click here"
2633
  msgstr ""
2634
 
2635
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2636
  msgid "Like This"
2637
  msgstr ""
2638
 
lang/wp-ulike-es_ES.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-ulike/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Para más información:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Registros"
199
 
@@ -1021,16 +1035,16 @@ msgstr ""
1021
  msgid "Topics Stats"
1022
  msgstr ""
1023
 
1024
- #: admin/classes/class-wp-ulike-stats.php:274
1025
- #: admin/includes/templates/activities-logs.php:76
1026
- #: admin/includes/templates/comments-logs.php:81
1027
- #: admin/includes/templates/posts-logs.php:75
1028
- #: admin/includes/templates/topics-logs.php:75
1029
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1030
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1031
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1032
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1033
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1034
  msgid "Guest User"
1035
  msgstr ""
1036
 
@@ -1316,115 +1330,177 @@ msgstr ""
1316
  msgid "No data found! This is because there is still no data in your database."
1317
  msgstr ""
1318
 
1319
- #: admin/includes/templates/activities-logs.php:38
1320
- #: admin/includes/templates/comments-logs.php:38
1321
- #: admin/includes/templates/posts-logs.php:38
1322
- #: admin/includes/templates/topics-logs.php:38
1323
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1326
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1327
  msgid "WP ULike Logs"
1328
  msgstr ""
1329
 
1330
- #: admin/includes/templates/activities-logs.php:49
1331
- #: admin/includes/templates/comments-logs.php:49
1332
- #: admin/includes/templates/posts-logs.php:49
1333
- #: admin/includes/templates/topics-logs.php:49
1334
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1337
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1338
  msgid "ID"
1339
  msgstr "ID"
1340
 
1341
- #: admin/includes/templates/activities-logs.php:50
1342
- #: admin/includes/templates/comments-logs.php:50
1343
- #: admin/includes/templates/posts-logs.php:50
1344
- #: admin/includes/templates/topics-logs.php:50
1345
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1348
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1349
  msgid "Username"
1350
  msgstr "Usuario"
1351
 
1352
- #: admin/includes/templates/activities-logs.php:51
1353
- #: admin/includes/templates/comments-logs.php:51
1354
- #: admin/includes/templates/posts-logs.php:51
1355
- #: admin/includes/templates/topics-logs.php:51
1356
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1359
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1360
  msgid "Status"
1361
  msgstr "Estado"
1362
 
1363
- #: admin/includes/templates/activities-logs.php:52
1364
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1365
  msgid "Activity ID"
1366
  msgstr ""
1367
 
1368
- #: admin/includes/templates/activities-logs.php:53
1369
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1370
  msgid "Permalink"
1371
  msgstr "Enlace permanente"
1372
 
1373
- #: admin/includes/templates/activities-logs.php:54
1374
- #: admin/includes/templates/comments-logs.php:55
1375
- #: admin/includes/templates/posts-logs.php:54
1376
- #: admin/includes/templates/topics-logs.php:54
1377
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1378
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1379
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1380
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1381
  msgid "Date / Time"
1382
  msgstr ""
1383
 
1384
- #: admin/includes/templates/activities-logs.php:55
1385
- #: admin/includes/templates/comments-logs.php:56
1386
- #: admin/includes/templates/posts-logs.php:55
1387
- #: admin/includes/templates/topics-logs.php:55
1388
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1389
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1390
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1391
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1392
  msgid "IP"
1393
  msgstr ""
1394
 
1395
- #: admin/includes/templates/activities-logs.php:56
1396
- #: admin/includes/templates/comments-logs.php:57
1397
- #: admin/includes/templates/posts-logs.php:56
1398
- #: admin/includes/templates/topics-logs.php:56
1399
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1400
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1401
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1402
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1403
  msgid "Actions"
1404
  msgstr "Acciones"
1405
 
1406
- #: admin/includes/templates/activities-logs.php:92
1407
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1408
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1409
  msgstr ""
1410
 
1411
- #: admin/includes/templates/comments-logs.php:52
1412
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1413
  msgid "Comment ID"
1414
  msgstr ""
1415
 
1416
- #: admin/includes/templates/comments-logs.php:53
1417
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1418
  msgid "Comment Author"
1419
  msgstr ""
1420
 
1421
- #: admin/includes/templates/comments-logs.php:54
1422
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1423
  msgid "Comment Text"
1424
  msgstr ""
1425
 
1426
- #: admin/includes/templates/comments-logs.php:63
1427
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1428
  msgid "Not Found!"
1429
  msgstr ""
1430
 
@@ -1433,61 +1509,31 @@ msgstr ""
1433
  msgid "WP ULike Premium"
1434
  msgstr ""
1435
 
1436
- #: admin/includes/templates/go-pro.php:22
1437
- #: admin/includes/templates/statistics.php:48
1438
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1439
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1440
- msgid "Buy WP ULike Premium"
1441
- msgstr ""
1442
-
1443
- #: admin/includes/templates/go-pro.php:28
1444
- #: admin/includes/templates/statistics.php:53
1445
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1446
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1447
- #, fuzzy
1448
- msgid "More information"
1449
- msgstr "Para más información:"
1450
-
1451
- #: admin/includes/templates/go-pro.php:114
1452
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1453
  msgid ""
1454
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1455
  "ULike PRO plugin we fully support this page builder and have a variety of "
1456
  "widgets & controllers that make life much easier for you."
1457
  msgstr ""
1458
 
1459
- #: admin/includes/templates/go-pro.php:114
1460
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1461
  msgid ""
1462
  "Just drag your desired widget and drop it in your Elementor sections, "
1463
  "customize as you go and enjoy your like and dislike buttons on your contents."
1464
  msgstr ""
1465
 
1466
- #: admin/includes/templates/posts-logs.php:52
1467
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1468
  msgid "Post ID"
1469
  msgstr ""
1470
 
1471
- #: admin/includes/templates/posts-logs.php:53
1472
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1473
  msgid "Post Title"
1474
  msgstr ""
1475
 
1476
- #: admin/includes/templates/statistics.php:45
1477
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1478
- msgid "Check Votings, Best Likers & Top contents"
1479
- msgstr ""
1480
-
1481
- #: admin/includes/templates/statistics.php:47
1482
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1483
- msgid ""
1484
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1485
- "users love and what annoys them in an instance. You can extract reports of "
1486
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1487
- "dateRange picker and status selector controllers, no confusing options and "
1488
- "coding needed."
1489
- msgstr ""
1490
-
1491
  #: admin/includes/templates/statistics.php:76
1492
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1493
  msgid "Total"
@@ -1537,13 +1583,13 @@ msgstr ""
1537
  msgid "Top"
1538
  msgstr ""
1539
 
1540
- #: admin/includes/templates/topics-logs.php:52
1541
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1542
  msgid "Topic ID"
1543
  msgstr ""
1544
 
1545
- #: admin/includes/templates/topics-logs.php:53
1546
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1547
  msgid "Topic Title"
1548
  msgstr ""
1549
 
@@ -1662,48 +1708,48 @@ msgstr ""
1662
  msgid "Are you sure to reset all options?"
1663
  msgstr ""
1664
 
1665
- #: admin/settings/classes/setup.class.php:429
1666
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1667
  msgid "Are you sure?"
1668
  msgstr ""
1669
 
1670
- #: admin/settings/classes/setup.class.php:430
1671
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1672
  msgid "Restoring options."
1673
  msgstr ""
1674
 
1675
- #: admin/settings/classes/setup.class.php:431
1676
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1677
  msgid "Importing options."
1678
  msgstr ""
1679
 
1680
- #: admin/settings/classes/setup.class.php:434
1681
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1682
  msgid "Please enter %s or more characters"
1683
  msgstr ""
1684
 
1685
- #: admin/settings/classes/setup.class.php:435
1686
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1687
  msgid "Searching..."
1688
  msgstr ""
1689
 
1690
- #: admin/settings/classes/setup.class.php:436
1691
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1692
  msgid "No results match"
1693
  msgstr ""
1694
 
1695
- #: admin/settings/classes/setup.class.php:507
1696
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1697
  msgid "Ooops! This field type (%s) can not be used here, yet."
1698
  msgstr ""
1699
 
1700
- #: admin/settings/classes/setup.class.php:570
1701
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1702
  msgid "This field class is not available!"
1703
  msgstr ""
1704
 
1705
- #: admin/settings/classes/setup.class.php:574
1706
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1707
  msgid "This type is not found!"
1708
  msgstr ""
1709
 
@@ -2573,17 +2619,17 @@ msgid ""
2573
  msgstr ""
2574
 
2575
  #: build/wp-ulike/inc/frontend-ajax.php:42
2576
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2577
- #: inc/frontend-ajax.php:164
2578
  msgid "Error: This Method Is Not Exist!"
2579
  msgstr ""
2580
 
2581
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2582
- msgid "Notice: The likers box is refreshed only for logged in users!"
2583
  msgstr ""
2584
 
2585
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2586
- msgid "Notice: The likers box is not activated!"
2587
  msgstr ""
2588
 
2589
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2628,15 +2674,15 @@ msgstr ""
2628
  msgid "Table info is empty."
2629
  msgstr ""
2630
 
2631
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2632
  msgid "You need to login in order to like this post: "
2633
  msgstr ""
2634
 
2635
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2636
  msgid "click here"
2637
  msgstr ""
2638
 
2639
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2640
  #, fuzzy
2641
  msgid "Like This"
2642
  msgstr "¿Te gusta este plugin?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-ulike/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Para más información:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Registros"
213
 
1035
  msgid "Topics Stats"
1036
  msgstr ""
1037
 
1038
+ #: admin/classes/class-wp-ulike-stats.php:273
1039
+ #: admin/includes/templates/activities-logs.php:98
1040
+ #: admin/includes/templates/comments-logs.php:103
1041
+ #: admin/includes/templates/posts-logs.php:97
1042
+ #: admin/includes/templates/topics-logs.php:97
1043
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1044
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1045
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1046
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1047
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1048
  msgid "Guest User"
1049
  msgstr ""
1050
 
1330
  msgid "No data found! This is because there is still no data in your database."
1331
  msgstr ""
1332
 
1333
+ #: admin/includes/templates/activities-logs.php:40
1334
+ #: admin/includes/templates/comments-logs.php:40
1335
+ #: admin/includes/templates/posts-logs.php:40
1336
+ #: admin/includes/templates/statistics.php:45
1337
+ #: admin/includes/templates/topics-logs.php:40
1338
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1341
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1342
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1343
+ msgid "Check Votings, Best Likers & Top contents"
1344
+ msgstr ""
1345
+
1346
+ #: admin/includes/templates/activities-logs.php:42
1347
+ #: admin/includes/templates/comments-logs.php:42
1348
+ #: admin/includes/templates/posts-logs.php:42
1349
+ #: admin/includes/templates/statistics.php:47
1350
+ #: admin/includes/templates/topics-logs.php:42
1351
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1354
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1355
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1356
+ msgid ""
1357
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1358
+ "users love and what annoys them in an instance. You can extract reports of "
1359
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1360
+ "dateRange picker and status selector controllers, no confusing options and "
1361
+ "coding needed."
1362
+ msgstr ""
1363
+
1364
+ #: admin/includes/templates/activities-logs.php:43
1365
+ #: admin/includes/templates/comments-logs.php:43
1366
+ #: admin/includes/templates/go-pro.php:22
1367
+ #: admin/includes/templates/posts-logs.php:43
1368
+ #: admin/includes/templates/statistics.php:48
1369
+ #: admin/includes/templates/topics-logs.php:43
1370
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1372
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1373
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1374
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1375
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1376
+ msgid "Buy WP ULike Premium"
1377
+ msgstr ""
1378
+
1379
+ #: admin/includes/templates/activities-logs.php:48
1380
+ #: admin/includes/templates/comments-logs.php:48
1381
+ #: admin/includes/templates/go-pro.php:28
1382
+ #: admin/includes/templates/posts-logs.php:48
1383
+ #: admin/includes/templates/statistics.php:53
1384
+ #: admin/includes/templates/topics-logs.php:48
1385
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1387
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1388
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1389
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1390
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1391
+ #, fuzzy
1392
+ msgid "More information"
1393
+ msgstr "Para más información:"
1394
+
1395
+ #: admin/includes/templates/activities-logs.php:60
1396
+ #: admin/includes/templates/comments-logs.php:60
1397
+ #: admin/includes/templates/posts-logs.php:60
1398
+ #: admin/includes/templates/topics-logs.php:60
1399
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1402
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1403
  msgid "WP ULike Logs"
1404
  msgstr ""
1405
 
1406
+ #: admin/includes/templates/activities-logs.php:71
1407
+ #: admin/includes/templates/comments-logs.php:71
1408
+ #: admin/includes/templates/posts-logs.php:71
1409
+ #: admin/includes/templates/topics-logs.php:71
1410
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1413
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1414
  msgid "ID"
1415
  msgstr "ID"
1416
 
1417
+ #: admin/includes/templates/activities-logs.php:72
1418
+ #: admin/includes/templates/comments-logs.php:72
1419
+ #: admin/includes/templates/posts-logs.php:72
1420
+ #: admin/includes/templates/topics-logs.php:72
1421
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1424
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1425
  msgid "Username"
1426
  msgstr "Usuario"
1427
 
1428
+ #: admin/includes/templates/activities-logs.php:73
1429
+ #: admin/includes/templates/comments-logs.php:73
1430
+ #: admin/includes/templates/posts-logs.php:73
1431
+ #: admin/includes/templates/topics-logs.php:73
1432
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1435
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1436
  msgid "Status"
1437
  msgstr "Estado"
1438
 
1439
+ #: admin/includes/templates/activities-logs.php:74
1440
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1441
  msgid "Activity ID"
1442
  msgstr ""
1443
 
1444
+ #: admin/includes/templates/activities-logs.php:75
1445
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1446
  msgid "Permalink"
1447
  msgstr "Enlace permanente"
1448
 
1449
+ #: admin/includes/templates/activities-logs.php:76
1450
+ #: admin/includes/templates/comments-logs.php:77
1451
+ #: admin/includes/templates/posts-logs.php:76
1452
+ #: admin/includes/templates/topics-logs.php:76
1453
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1454
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1455
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1456
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1457
  msgid "Date / Time"
1458
  msgstr ""
1459
 
1460
+ #: admin/includes/templates/activities-logs.php:77
1461
+ #: admin/includes/templates/comments-logs.php:78
1462
+ #: admin/includes/templates/posts-logs.php:77
1463
+ #: admin/includes/templates/topics-logs.php:77
1464
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1465
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1466
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1467
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1468
  msgid "IP"
1469
  msgstr ""
1470
 
1471
+ #: admin/includes/templates/activities-logs.php:78
1472
+ #: admin/includes/templates/comments-logs.php:79
1473
+ #: admin/includes/templates/posts-logs.php:78
1474
+ #: admin/includes/templates/topics-logs.php:78
1475
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1476
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1477
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1478
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1479
  msgid "Actions"
1480
  msgstr "Acciones"
1481
 
1482
+ #: admin/includes/templates/activities-logs.php:114
1483
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1484
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1485
  msgstr ""
1486
 
1487
+ #: admin/includes/templates/comments-logs.php:74
1488
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1489
  msgid "Comment ID"
1490
  msgstr ""
1491
 
1492
+ #: admin/includes/templates/comments-logs.php:75
1493
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1494
  msgid "Comment Author"
1495
  msgstr ""
1496
 
1497
+ #: admin/includes/templates/comments-logs.php:76
1498
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1499
  msgid "Comment Text"
1500
  msgstr ""
1501
 
1502
+ #: admin/includes/templates/comments-logs.php:85
1503
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1504
  msgid "Not Found!"
1505
  msgstr ""
1506
 
1509
  msgid "WP ULike Premium"
1510
  msgstr ""
1511
 
1512
+ #: admin/includes/templates/go-pro.php:119
1513
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1514
  msgid ""
1515
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1516
  "ULike PRO plugin we fully support this page builder and have a variety of "
1517
  "widgets & controllers that make life much easier for you."
1518
  msgstr ""
1519
 
1520
+ #: admin/includes/templates/go-pro.php:119
1521
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1522
  msgid ""
1523
  "Just drag your desired widget and drop it in your Elementor sections, "
1524
  "customize as you go and enjoy your like and dislike buttons on your contents."
1525
  msgstr ""
1526
 
1527
+ #: admin/includes/templates/posts-logs.php:74
1528
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1529
  msgid "Post ID"
1530
  msgstr ""
1531
 
1532
+ #: admin/includes/templates/posts-logs.php:75
1533
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1534
  msgid "Post Title"
1535
  msgstr ""
1536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1537
  #: admin/includes/templates/statistics.php:76
1538
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1539
  msgid "Total"
1583
  msgid "Top"
1584
  msgstr ""
1585
 
1586
+ #: admin/includes/templates/topics-logs.php:74
1587
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1588
  msgid "Topic ID"
1589
  msgstr ""
1590
 
1591
+ #: admin/includes/templates/topics-logs.php:75
1592
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1593
  msgid "Topic Title"
1594
  msgstr ""
1595
 
1708
  msgid "Are you sure to reset all options?"
1709
  msgstr ""
1710
 
1711
+ #: admin/settings/classes/setup.class.php:436
1712
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1713
  msgid "Are you sure?"
1714
  msgstr ""
1715
 
1716
+ #: admin/settings/classes/setup.class.php:437
1717
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1718
  msgid "Restoring options."
1719
  msgstr ""
1720
 
1721
+ #: admin/settings/classes/setup.class.php:438
1722
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1723
  msgid "Importing options."
1724
  msgstr ""
1725
 
1726
+ #: admin/settings/classes/setup.class.php:441
1727
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1728
  msgid "Please enter %s or more characters"
1729
  msgstr ""
1730
 
1731
+ #: admin/settings/classes/setup.class.php:442
1732
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1733
  msgid "Searching..."
1734
  msgstr ""
1735
 
1736
+ #: admin/settings/classes/setup.class.php:443
1737
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1738
  msgid "No results match"
1739
  msgstr ""
1740
 
1741
+ #: admin/settings/classes/setup.class.php:514
1742
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1743
  msgid "Ooops! This field type (%s) can not be used here, yet."
1744
  msgstr ""
1745
 
1746
+ #: admin/settings/classes/setup.class.php:577
1747
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1748
  msgid "This field class is not available!"
1749
  msgstr ""
1750
 
1751
+ #: admin/settings/classes/setup.class.php:581
1752
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1753
  msgid "This type is not found!"
1754
  msgstr ""
1755
 
2619
  msgstr ""
2620
 
2621
  #: build/wp-ulike/inc/frontend-ajax.php:42
2622
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2623
+ #: inc/frontend-ajax.php:170
2624
  msgid "Error: This Method Is Not Exist!"
2625
  msgstr ""
2626
 
2627
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2628
+ msgid "Notice: The likers box is not activated!"
2629
  msgstr ""
2630
 
2631
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2632
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2633
  msgstr ""
2634
 
2635
  #: build/wp-ulike/inc/general-functions.php:85
2674
  msgid "Table info is empty."
2675
  msgstr ""
2676
 
2677
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2678
  msgid "You need to login in order to like this post: "
2679
  msgstr ""
2680
 
2681
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2682
  msgid "click here"
2683
  msgstr ""
2684
 
2685
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2686
  #, fuzzy
2687
  msgid "Like This"
2688
  msgstr "¿Te gusta este plugin?"
lang/wp-ulike-fi.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Finnish (http://www.transifex.com/projects/p/wp-ulike/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Lisätietoja:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Lokit"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Käyttäjätunnus"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Tila"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr "Pikalinkki"
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Tapahtumat"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "Lisätietoja:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2569,17 +2615,17 @@ msgid ""
2569
  msgstr ""
2570
 
2571
  #: build/wp-ulike/inc/frontend-ajax.php:42
2572
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2573
- #: inc/frontend-ajax.php:164
2574
  msgid "Error: This Method Is Not Exist!"
2575
  msgstr ""
2576
 
2577
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2578
- msgid "Notice: The likers box is refreshed only for logged in users!"
2579
  msgstr ""
2580
 
2581
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2582
- msgid "Notice: The likers box is not activated!"
2583
  msgstr ""
2584
 
2585
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2624,15 +2670,15 @@ msgstr ""
2624
  msgid "Table info is empty."
2625
  msgstr ""
2626
 
2627
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2628
  msgid "You need to login in order to like this post: "
2629
  msgstr ""
2630
 
2631
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2632
  msgid "click here"
2633
  msgstr ""
2634
 
2635
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2636
  msgid "Like This"
2637
  msgstr ""
2638
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Finnish (http://www.transifex.com/projects/p/wp-ulike/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Lisätietoja:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Lokit"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "Lisätietoja:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Käyttäjätunnus"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Tila"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr "Pikalinkki"
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Tapahtumat"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2615
  msgstr ""
2616
 
2617
  #: build/wp-ulike/inc/frontend-ajax.php:42
2618
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2619
+ #: inc/frontend-ajax.php:170
2620
  msgid "Error: This Method Is Not Exist!"
2621
  msgstr ""
2622
 
2623
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2624
+ msgid "Notice: The likers box is not activated!"
2625
  msgstr ""
2626
 
2627
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2628
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2629
  msgstr ""
2630
 
2631
  #: build/wp-ulike/inc/general-functions.php:85
2670
  msgid "Table info is empty."
2671
  msgstr ""
2672
 
2673
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2674
  msgid "You need to login in order to like this post: "
2675
  msgstr ""
2676
 
2677
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2678
  msgid "click here"
2679
  msgstr ""
2680
 
2681
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2682
  msgid "Like This"
2683
  msgstr ""
2684
 
lang/wp-ulike-fr_FR.po CHANGED
@@ -9,7 +9,7 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: WP ULike\n"
11
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
12
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
13
  "PO-Revision-Date: 2017-04-29 01:33+0330\n"
14
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
15
  "Language-Team: French (France) (http://www.transifex.com/wp-translations/wp-"
@@ -30,8 +30,8 @@ msgstr ""
30
  #: build/wp-ulike/admin/admin-ajax.php:76
31
  #: build/wp-ulike/admin/admin-ajax.php:82
32
  #: build/wp-ulike/inc/frontend-ajax.php:34
33
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
34
- #: inc/frontend-ajax.php:151
35
  msgid "Error: Something Wrong Happened!"
36
  msgstr ""
37
 
@@ -47,9 +47,9 @@ msgstr ""
47
  msgid "It's Ok!"
48
  msgstr ""
49
 
50
- #: admin/admin-functions.php:225
51
  #: admin/classes/class-wp-ulike-admin-panel.php:517
52
- #: build/wp-ulike/admin/admin-functions.php:228
53
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
54
  #, fuzzy
55
  msgid "Button"
@@ -81,44 +81,58 @@ msgstr ""
81
  msgid "Sure, I'd love to!"
82
  msgstr ""
83
 
84
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
85
  #: build/wp-ulike/admin/admin-hooks.php:142
86
- #: build/wp-ulike/admin/admin-hooks.php:204
87
  msgid "Not Now"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
91
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
92
  #: build/wp-ulike/admin/admin-hooks.php:174
93
- #: build/wp-ulike/admin/admin-hooks.php:210
 
94
  msgid "No thanks and never ask me again"
95
  msgstr ""
96
 
97
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
98
- msgid "Boost Your SEO by Using Schema Rich Snippets"
99
  msgstr ""
100
 
101
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
102
  msgid ""
103
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
104
- "Plugin which can manage +13 types of Schema Markups to make a better "
105
- "connection between your webpages and search engines. Now you can talk in "
106
- "search engine language and tell them which type of content you are promoting."
107
  msgstr ""
108
 
109
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
110
- #: build/wp-ulike/admin/admin-hooks.php:170
111
- #: build/wp-ulike/admin/admin-hooks.php:200
 
112
  #, fuzzy
113
  msgid "Get More Information"
114
  msgstr "Pour plus d'informations :"
115
 
116
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
117
- msgid "WP Ulike Pro is Ready :))"
118
  msgstr ""
119
 
120
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
121
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
122
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
123
  "been released with some new features such as support for Dislike button, "
124
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -126,8 +140,8 @@ msgid ""
126
  "provide a full support for our users."
127
  msgstr ""
128
 
129
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
130
- #: build/wp-ulike/admin/admin-hooks.php:239
131
  #: build/wp-ulike/admin/includes/templates/about.php:29
132
  msgid "Go Pro"
133
  msgstr ""
@@ -143,30 +157,30 @@ msgid "No information was found in this database!"
143
  msgstr ""
144
 
145
  #: admin/classes/class-wp-ulike-admin-pages.php:27
146
- #: admin/includes/templates/posts-logs.php:39
147
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
148
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
149
  msgid "Post Likes Logs"
150
  msgstr "Journaux des J'aime des articles"
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:35
153
- #: admin/includes/templates/comments-logs.php:39
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
155
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
156
  msgid "Comment Likes Logs"
157
  msgstr "Journaux des J'aime des commentaires"
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:43
160
- #: admin/includes/templates/activities-logs.php:39
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
162
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
163
  msgid "Activity Likes Logs"
164
  msgstr "Journaux des J'aime d'activité"
165
 
166
  #: admin/classes/class-wp-ulike-admin-pages.php:51
167
- #: admin/includes/templates/topics-logs.php:39
168
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
169
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
170
  msgid "Topics Likes Logs"
171
  msgstr "Historiques des sujets likés"
172
 
@@ -185,23 +199,23 @@ msgid "About"
185
  msgstr "À propos"
186
 
187
  #: admin/classes/class-wp-ulike-admin-pages.php:133
188
- #: admin/includes/templates/activities-logs.php:42
189
- #: admin/includes/templates/activities-logs.php:119
190
- #: admin/includes/templates/comments-logs.php:42
191
- #: admin/includes/templates/comments-logs.php:129
192
- #: admin/includes/templates/posts-logs.php:42
193
- #: admin/includes/templates/posts-logs.php:118
194
- #: admin/includes/templates/topics-logs.php:42
195
- #: admin/includes/templates/topics-logs.php:118
196
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
197
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
198
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
199
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
200
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
201
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
202
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
203
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
204
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
205
  msgid "Logs"
206
  msgstr "Fichiers journaux"
207
 
@@ -1077,16 +1091,16 @@ msgstr "Stats de l'activité des J'aime"
1077
  msgid "Topics Stats"
1078
  msgstr "Stats des J'aime des sujets"
1079
 
1080
- #: admin/classes/class-wp-ulike-stats.php:274
1081
- #: admin/includes/templates/activities-logs.php:76
1082
- #: admin/includes/templates/comments-logs.php:81
1083
- #: admin/includes/templates/posts-logs.php:75
1084
- #: admin/includes/templates/topics-logs.php:75
1085
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1086
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1087
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1088
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1089
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1090
  msgid "Guest User"
1091
  msgstr "Utilisateur invité"
1092
 
@@ -1377,115 +1391,177 @@ msgstr "Gestion de projet et développeur"
1377
  msgid "No data found! This is because there is still no data in your database."
1378
  msgstr ""
1379
 
1380
- #: admin/includes/templates/activities-logs.php:38
1381
- #: admin/includes/templates/comments-logs.php:38
1382
- #: admin/includes/templates/posts-logs.php:38
1383
- #: admin/includes/templates/topics-logs.php:38
1384
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1385
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1386
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1387
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1388
  msgid "WP ULike Logs"
1389
  msgstr "Journaux WP ULike"
1390
 
1391
- #: admin/includes/templates/activities-logs.php:49
1392
- #: admin/includes/templates/comments-logs.php:49
1393
- #: admin/includes/templates/posts-logs.php:49
1394
- #: admin/includes/templates/topics-logs.php:49
1395
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1396
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1397
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1398
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1399
  msgid "ID"
1400
  msgstr "ID"
1401
 
1402
- #: admin/includes/templates/activities-logs.php:50
1403
- #: admin/includes/templates/comments-logs.php:50
1404
- #: admin/includes/templates/posts-logs.php:50
1405
- #: admin/includes/templates/topics-logs.php:50
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1407
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1408
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1409
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1410
  msgid "Username"
1411
  msgstr "Identifiant"
1412
 
1413
- #: admin/includes/templates/activities-logs.php:51
1414
- #: admin/includes/templates/comments-logs.php:51
1415
- #: admin/includes/templates/posts-logs.php:51
1416
- #: admin/includes/templates/topics-logs.php:51
1417
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1418
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1419
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1420
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1421
  msgid "Status"
1422
  msgstr "Statut"
1423
 
1424
- #: admin/includes/templates/activities-logs.php:52
1425
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1426
  msgid "Activity ID"
1427
  msgstr "ID de l'activité"
1428
 
1429
- #: admin/includes/templates/activities-logs.php:53
1430
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1431
  msgid "Permalink"
1432
  msgstr "Permalien"
1433
 
1434
- #: admin/includes/templates/activities-logs.php:54
1435
- #: admin/includes/templates/comments-logs.php:55
1436
- #: admin/includes/templates/posts-logs.php:54
1437
- #: admin/includes/templates/topics-logs.php:54
1438
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1439
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1440
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1441
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1442
  msgid "Date / Time"
1443
  msgstr "Date/Heure"
1444
 
1445
- #: admin/includes/templates/activities-logs.php:55
1446
- #: admin/includes/templates/comments-logs.php:56
1447
- #: admin/includes/templates/posts-logs.php:55
1448
- #: admin/includes/templates/topics-logs.php:55
1449
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1450
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1451
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1452
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1453
  msgid "IP"
1454
  msgstr "IP"
1455
 
1456
- #: admin/includes/templates/activities-logs.php:56
1457
- #: admin/includes/templates/comments-logs.php:57
1458
- #: admin/includes/templates/posts-logs.php:56
1459
- #: admin/includes/templates/topics-logs.php:56
1460
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1461
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1462
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1463
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1464
  msgid "Actions"
1465
  msgstr "Actions"
1466
 
1467
- #: admin/includes/templates/activities-logs.php:92
1468
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1469
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1470
  msgstr "<a href=\"%1$s\">Permalien activité</a>"
1471
 
1472
- #: admin/includes/templates/comments-logs.php:52
1473
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1474
  msgid "Comment ID"
1475
  msgstr "ID du commentaire"
1476
 
1477
- #: admin/includes/templates/comments-logs.php:53
1478
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1479
  msgid "Comment Author"
1480
  msgstr "Auteur du commentaire"
1481
 
1482
- #: admin/includes/templates/comments-logs.php:54
1483
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1484
  msgid "Comment Text"
1485
  msgstr "Texte du commentaire"
1486
 
1487
- #: admin/includes/templates/comments-logs.php:63
1488
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1489
  msgid "Not Found!"
1490
  msgstr ""
1491
 
@@ -1495,61 +1571,31 @@ msgstr ""
1495
  msgid "WP ULike Premium"
1496
  msgstr "Réglages de WP ULike"
1497
 
1498
- #: admin/includes/templates/go-pro.php:22
1499
- #: admin/includes/templates/statistics.php:48
1500
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1501
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1502
- msgid "Buy WP ULike Premium"
1503
- msgstr ""
1504
-
1505
- #: admin/includes/templates/go-pro.php:28
1506
- #: admin/includes/templates/statistics.php:53
1507
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1508
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1509
- #, fuzzy
1510
- msgid "More information"
1511
- msgstr "Pour plus d'informations :"
1512
-
1513
- #: admin/includes/templates/go-pro.php:114
1514
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1515
  msgid ""
1516
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1517
  "ULike PRO plugin we fully support this page builder and have a variety of "
1518
  "widgets & controllers that make life much easier for you."
1519
  msgstr ""
1520
 
1521
- #: admin/includes/templates/go-pro.php:114
1522
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1523
  msgid ""
1524
  "Just drag your desired widget and drop it in your Elementor sections, "
1525
  "customize as you go and enjoy your like and dislike buttons on your contents."
1526
  msgstr ""
1527
 
1528
- #: admin/includes/templates/posts-logs.php:52
1529
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1530
  msgid "Post ID"
1531
  msgstr "ID de l'article"
1532
 
1533
- #: admin/includes/templates/posts-logs.php:53
1534
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1535
  msgid "Post Title"
1536
  msgstr "Titre d'article"
1537
 
1538
- #: admin/includes/templates/statistics.php:45
1539
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1540
- msgid "Check Votings, Best Likers & Top contents"
1541
- msgstr ""
1542
-
1543
- #: admin/includes/templates/statistics.php:47
1544
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1545
- msgid ""
1546
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1547
- "users love and what annoys them in an instance. You can extract reports of "
1548
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1549
- "dateRange picker and status selector controllers, no confusing options and "
1550
- "coding needed."
1551
- msgstr ""
1552
-
1553
  #: admin/includes/templates/statistics.php:76
1554
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1555
  msgid "Total"
@@ -1601,13 +1647,13 @@ msgstr "Top Likers"
1601
  msgid "Top"
1602
  msgstr "Info-bulle"
1603
 
1604
- #: admin/includes/templates/topics-logs.php:52
1605
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1606
  msgid "Topic ID"
1607
  msgstr "ID du sujet"
1608
 
1609
- #: admin/includes/templates/topics-logs.php:53
1610
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1611
  msgid "Topic Title"
1612
  msgstr "Titre du sujet"
1613
 
@@ -1730,49 +1776,49 @@ msgstr ""
1730
  msgid "Are you sure to reset all options?"
1731
  msgstr "Voulez-vous vraiment supprimer cet élément ?"
1732
 
1733
- #: admin/settings/classes/setup.class.php:429
1734
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1735
  msgid "Are you sure?"
1736
  msgstr ""
1737
 
1738
- #: admin/settings/classes/setup.class.php:430
1739
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1740
  msgid "Restoring options."
1741
  msgstr ""
1742
 
1743
- #: admin/settings/classes/setup.class.php:431
1744
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1745
  #, fuzzy
1746
  msgid "Importing options."
1747
  msgstr "Options de tri&nbsp;:"
1748
 
1749
- #: admin/settings/classes/setup.class.php:434
1750
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1751
  msgid "Please enter %s or more characters"
1752
  msgstr ""
1753
 
1754
- #: admin/settings/classes/setup.class.php:435
1755
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1756
  msgid "Searching..."
1757
  msgstr ""
1758
 
1759
- #: admin/settings/classes/setup.class.php:436
1760
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1761
  msgid "No results match"
1762
  msgstr ""
1763
 
1764
- #: admin/settings/classes/setup.class.php:507
1765
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1766
  msgid "Ooops! This field type (%s) can not be used here, yet."
1767
  msgstr ""
1768
 
1769
- #: admin/settings/classes/setup.class.php:570
1770
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1771
  msgid "This field class is not available!"
1772
  msgstr ""
1773
 
1774
- #: admin/settings/classes/setup.class.php:574
1775
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1776
  msgid "This type is not found!"
1777
  msgstr ""
1778
 
@@ -2651,17 +2697,17 @@ msgid ""
2651
  msgstr ""
2652
 
2653
  #: build/wp-ulike/inc/frontend-ajax.php:42
2654
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2655
- #: inc/frontend-ajax.php:164
2656
  msgid "Error: This Method Is Not Exist!"
2657
  msgstr "Erreur : cette méthode n'existe pas !"
2658
 
2659
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2660
- msgid "Notice: The likers box is refreshed only for logged in users!"
2661
  msgstr ""
2662
 
2663
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2664
- msgid "Notice: The likers box is not activated!"
2665
  msgstr ""
2666
 
2667
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2709,15 +2755,15 @@ msgstr ""
2709
  msgid "Table info is empty."
2710
  msgstr ""
2711
 
2712
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2713
  msgid "You need to login in order to like this post: "
2714
  msgstr "Vous devez être connecté pour aimer cet article&nbsp;:"
2715
 
2716
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2717
  msgid "click here"
2718
  msgstr "Cliquez ici"
2719
 
2720
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2721
  #, fuzzy
2722
  msgid "Like This"
2723
  msgstr "J'aime"
9
  msgstr ""
10
  "Project-Id-Version: WP ULike\n"
11
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
12
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
13
  "PO-Revision-Date: 2017-04-29 01:33+0330\n"
14
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
15
  "Language-Team: French (France) (http://www.transifex.com/wp-translations/wp-"
30
  #: build/wp-ulike/admin/admin-ajax.php:76
31
  #: build/wp-ulike/admin/admin-ajax.php:82
32
  #: build/wp-ulike/inc/frontend-ajax.php:34
33
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
34
+ #: inc/frontend-ajax.php:152
35
  msgid "Error: Something Wrong Happened!"
36
  msgstr ""
37
 
47
  msgid "It's Ok!"
48
  msgstr ""
49
 
50
+ #: admin/admin-functions.php:231
51
  #: admin/classes/class-wp-ulike-admin-panel.php:517
52
+ #: build/wp-ulike/admin/admin-functions.php:234
53
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
54
  #, fuzzy
55
  msgid "Button"
81
  msgid "Sure, I'd love to!"
82
  msgstr ""
83
 
84
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
85
  #: build/wp-ulike/admin/admin-hooks.php:142
86
+ #: build/wp-ulike/admin/admin-hooks.php:227
87
  msgid "Not Now"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
91
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
92
+ #: build/wp-ulike/admin/admin-hooks.php:148
93
  #: build/wp-ulike/admin/admin-hooks.php:174
94
+ #: build/wp-ulike/admin/admin-hooks.php:197
95
+ #: build/wp-ulike/admin/admin-hooks.php:233
96
  msgid "No thanks and never ask me again"
97
  msgstr ""
98
 
99
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
100
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
101
  msgstr ""
102
 
103
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
104
  msgid ""
105
+ "Having votes for your content without a tool for measuring the results is "
106
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
107
+ "data in the WP ULike professional Logs panel."
 
108
  msgstr ""
109
 
110
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
111
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
112
+ #: build/wp-ulike/admin/admin-hooks.php:193
113
+ #: build/wp-ulike/admin/admin-hooks.php:223
114
  #, fuzzy
115
  msgid "Get More Information"
116
  msgstr "Pour plus d'informations :"
117
 
118
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
119
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
120
  msgstr ""
121
 
122
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
123
  msgid ""
124
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
125
+ "Plugin which can manage +13 types of Schema Markups to make a better "
126
+ "connection between your webpages and search engines. Now you can talk in "
127
+ "search engine language and tell them which type of content you are promoting."
128
+ msgstr ""
129
+
130
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
131
+ msgid "WP Ulike Pro is Ready :))"
132
+ msgstr ""
133
+
134
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
135
+ msgid ""
136
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
137
  "been released with some new features such as support for Dislike button, "
138
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
140
  "provide a full support for our users."
141
  msgstr ""
142
 
143
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
144
+ #: build/wp-ulike/admin/admin-hooks.php:262
145
  #: build/wp-ulike/admin/includes/templates/about.php:29
146
  msgid "Go Pro"
147
  msgstr ""
157
  msgstr ""
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:27
160
+ #: admin/includes/templates/posts-logs.php:61
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
162
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
163
  msgid "Post Likes Logs"
164
  msgstr "Journaux des J'aime des articles"
165
 
166
  #: admin/classes/class-wp-ulike-admin-pages.php:35
167
+ #: admin/includes/templates/comments-logs.php:61
168
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
169
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
170
  msgid "Comment Likes Logs"
171
  msgstr "Journaux des J'aime des commentaires"
172
 
173
  #: admin/classes/class-wp-ulike-admin-pages.php:43
174
+ #: admin/includes/templates/activities-logs.php:61
175
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
176
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
177
  msgid "Activity Likes Logs"
178
  msgstr "Journaux des J'aime d'activité"
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:51
181
+ #: admin/includes/templates/topics-logs.php:61
182
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
183
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
184
  msgid "Topics Likes Logs"
185
  msgstr "Historiques des sujets likés"
186
 
199
  msgstr "À propos"
200
 
201
  #: admin/classes/class-wp-ulike-admin-pages.php:133
202
+ #: admin/includes/templates/activities-logs.php:64
203
+ #: admin/includes/templates/activities-logs.php:141
204
+ #: admin/includes/templates/comments-logs.php:64
205
+ #: admin/includes/templates/comments-logs.php:151
206
+ #: admin/includes/templates/posts-logs.php:64
207
+ #: admin/includes/templates/posts-logs.php:140
208
+ #: admin/includes/templates/topics-logs.php:64
209
+ #: admin/includes/templates/topics-logs.php:140
210
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
211
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
212
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
213
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
214
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
215
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
216
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
217
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
218
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
219
  msgid "Logs"
220
  msgstr "Fichiers journaux"
221
 
1091
  msgid "Topics Stats"
1092
  msgstr "Stats des J'aime des sujets"
1093
 
1094
+ #: admin/classes/class-wp-ulike-stats.php:273
1095
+ #: admin/includes/templates/activities-logs.php:98
1096
+ #: admin/includes/templates/comments-logs.php:103
1097
+ #: admin/includes/templates/posts-logs.php:97
1098
+ #: admin/includes/templates/topics-logs.php:97
1099
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1100
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1101
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1102
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1103
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1104
  msgid "Guest User"
1105
  msgstr "Utilisateur invité"
1106
 
1391
  msgid "No data found! This is because there is still no data in your database."
1392
  msgstr ""
1393
 
1394
+ #: admin/includes/templates/activities-logs.php:40
1395
+ #: admin/includes/templates/comments-logs.php:40
1396
+ #: admin/includes/templates/posts-logs.php:40
1397
+ #: admin/includes/templates/statistics.php:45
1398
+ #: admin/includes/templates/topics-logs.php:40
1399
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1400
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1401
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1402
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1403
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1404
+ msgid "Check Votings, Best Likers & Top contents"
1405
+ msgstr ""
1406
+
1407
+ #: admin/includes/templates/activities-logs.php:42
1408
+ #: admin/includes/templates/comments-logs.php:42
1409
+ #: admin/includes/templates/posts-logs.php:42
1410
+ #: admin/includes/templates/statistics.php:47
1411
+ #: admin/includes/templates/topics-logs.php:42
1412
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1413
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1414
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1415
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1416
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1417
+ msgid ""
1418
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1419
+ "users love and what annoys them in an instance. You can extract reports of "
1420
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1421
+ "dateRange picker and status selector controllers, no confusing options and "
1422
+ "coding needed."
1423
+ msgstr ""
1424
+
1425
+ #: admin/includes/templates/activities-logs.php:43
1426
+ #: admin/includes/templates/comments-logs.php:43
1427
+ #: admin/includes/templates/go-pro.php:22
1428
+ #: admin/includes/templates/posts-logs.php:43
1429
+ #: admin/includes/templates/statistics.php:48
1430
+ #: admin/includes/templates/topics-logs.php:43
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1433
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1434
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1435
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1436
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1437
+ msgid "Buy WP ULike Premium"
1438
+ msgstr ""
1439
+
1440
+ #: admin/includes/templates/activities-logs.php:48
1441
+ #: admin/includes/templates/comments-logs.php:48
1442
+ #: admin/includes/templates/go-pro.php:28
1443
+ #: admin/includes/templates/posts-logs.php:48
1444
+ #: admin/includes/templates/statistics.php:53
1445
+ #: admin/includes/templates/topics-logs.php:48
1446
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1447
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1448
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1449
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1450
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1451
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1452
+ #, fuzzy
1453
+ msgid "More information"
1454
+ msgstr "Pour plus d'informations :"
1455
+
1456
+ #: admin/includes/templates/activities-logs.php:60
1457
+ #: admin/includes/templates/comments-logs.php:60
1458
+ #: admin/includes/templates/posts-logs.php:60
1459
+ #: admin/includes/templates/topics-logs.php:60
1460
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1461
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1462
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1463
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1464
  msgid "WP ULike Logs"
1465
  msgstr "Journaux WP ULike"
1466
 
1467
+ #: admin/includes/templates/activities-logs.php:71
1468
+ #: admin/includes/templates/comments-logs.php:71
1469
+ #: admin/includes/templates/posts-logs.php:71
1470
+ #: admin/includes/templates/topics-logs.php:71
1471
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1472
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1473
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1474
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1475
  msgid "ID"
1476
  msgstr "ID"
1477
 
1478
+ #: admin/includes/templates/activities-logs.php:72
1479
+ #: admin/includes/templates/comments-logs.php:72
1480
+ #: admin/includes/templates/posts-logs.php:72
1481
+ #: admin/includes/templates/topics-logs.php:72
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1483
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1484
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1485
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1486
  msgid "Username"
1487
  msgstr "Identifiant"
1488
 
1489
+ #: admin/includes/templates/activities-logs.php:73
1490
+ #: admin/includes/templates/comments-logs.php:73
1491
+ #: admin/includes/templates/posts-logs.php:73
1492
+ #: admin/includes/templates/topics-logs.php:73
1493
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1494
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1495
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1496
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1497
  msgid "Status"
1498
  msgstr "Statut"
1499
 
1500
+ #: admin/includes/templates/activities-logs.php:74
1501
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1502
  msgid "Activity ID"
1503
  msgstr "ID de l'activité"
1504
 
1505
+ #: admin/includes/templates/activities-logs.php:75
1506
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1507
  msgid "Permalink"
1508
  msgstr "Permalien"
1509
 
1510
+ #: admin/includes/templates/activities-logs.php:76
1511
+ #: admin/includes/templates/comments-logs.php:77
1512
+ #: admin/includes/templates/posts-logs.php:76
1513
+ #: admin/includes/templates/topics-logs.php:76
1514
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1515
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1516
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1517
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1518
  msgid "Date / Time"
1519
  msgstr "Date/Heure"
1520
 
1521
+ #: admin/includes/templates/activities-logs.php:77
1522
+ #: admin/includes/templates/comments-logs.php:78
1523
+ #: admin/includes/templates/posts-logs.php:77
1524
+ #: admin/includes/templates/topics-logs.php:77
1525
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1526
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1528
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1529
  msgid "IP"
1530
  msgstr "IP"
1531
 
1532
+ #: admin/includes/templates/activities-logs.php:78
1533
+ #: admin/includes/templates/comments-logs.php:79
1534
+ #: admin/includes/templates/posts-logs.php:78
1535
+ #: admin/includes/templates/topics-logs.php:78
1536
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1537
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1538
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1539
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1540
  msgid "Actions"
1541
  msgstr "Actions"
1542
 
1543
+ #: admin/includes/templates/activities-logs.php:114
1544
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1545
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1546
  msgstr "<a href=\"%1$s\">Permalien activité</a>"
1547
 
1548
+ #: admin/includes/templates/comments-logs.php:74
1549
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1550
  msgid "Comment ID"
1551
  msgstr "ID du commentaire"
1552
 
1553
+ #: admin/includes/templates/comments-logs.php:75
1554
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1555
  msgid "Comment Author"
1556
  msgstr "Auteur du commentaire"
1557
 
1558
+ #: admin/includes/templates/comments-logs.php:76
1559
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1560
  msgid "Comment Text"
1561
  msgstr "Texte du commentaire"
1562
 
1563
+ #: admin/includes/templates/comments-logs.php:85
1564
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1565
  msgid "Not Found!"
1566
  msgstr ""
1567
 
1571
  msgid "WP ULike Premium"
1572
  msgstr "Réglages de WP ULike"
1573
 
1574
+ #: admin/includes/templates/go-pro.php:119
1575
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1576
  msgid ""
1577
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1578
  "ULike PRO plugin we fully support this page builder and have a variety of "
1579
  "widgets & controllers that make life much easier for you."
1580
  msgstr ""
1581
 
1582
+ #: admin/includes/templates/go-pro.php:119
1583
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1584
  msgid ""
1585
  "Just drag your desired widget and drop it in your Elementor sections, "
1586
  "customize as you go and enjoy your like and dislike buttons on your contents."
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/posts-logs.php:74
1590
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1591
  msgid "Post ID"
1592
  msgstr "ID de l'article"
1593
 
1594
+ #: admin/includes/templates/posts-logs.php:75
1595
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1596
  msgid "Post Title"
1597
  msgstr "Titre d'article"
1598
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1599
  #: admin/includes/templates/statistics.php:76
1600
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1601
  msgid "Total"
1647
  msgid "Top"
1648
  msgstr "Info-bulle"
1649
 
1650
+ #: admin/includes/templates/topics-logs.php:74
1651
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1652
  msgid "Topic ID"
1653
  msgstr "ID du sujet"
1654
 
1655
+ #: admin/includes/templates/topics-logs.php:75
1656
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1657
  msgid "Topic Title"
1658
  msgstr "Titre du sujet"
1659
 
1776
  msgid "Are you sure to reset all options?"
1777
  msgstr "Voulez-vous vraiment supprimer cet élément ?"
1778
 
1779
+ #: admin/settings/classes/setup.class.php:436
1780
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1781
  msgid "Are you sure?"
1782
  msgstr ""
1783
 
1784
+ #: admin/settings/classes/setup.class.php:437
1785
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1786
  msgid "Restoring options."
1787
  msgstr ""
1788
 
1789
+ #: admin/settings/classes/setup.class.php:438
1790
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1791
  #, fuzzy
1792
  msgid "Importing options."
1793
  msgstr "Options de tri&nbsp;:"
1794
 
1795
+ #: admin/settings/classes/setup.class.php:441
1796
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1797
  msgid "Please enter %s or more characters"
1798
  msgstr ""
1799
 
1800
+ #: admin/settings/classes/setup.class.php:442
1801
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1802
  msgid "Searching..."
1803
  msgstr ""
1804
 
1805
+ #: admin/settings/classes/setup.class.php:443
1806
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1807
  msgid "No results match"
1808
  msgstr ""
1809
 
1810
+ #: admin/settings/classes/setup.class.php:514
1811
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1812
  msgid "Ooops! This field type (%s) can not be used here, yet."
1813
  msgstr ""
1814
 
1815
+ #: admin/settings/classes/setup.class.php:577
1816
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1817
  msgid "This field class is not available!"
1818
  msgstr ""
1819
 
1820
+ #: admin/settings/classes/setup.class.php:581
1821
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1822
  msgid "This type is not found!"
1823
  msgstr ""
1824
 
2697
  msgstr ""
2698
 
2699
  #: build/wp-ulike/inc/frontend-ajax.php:42
2700
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2701
+ #: inc/frontend-ajax.php:170
2702
  msgid "Error: This Method Is Not Exist!"
2703
  msgstr "Erreur : cette méthode n'existe pas !"
2704
 
2705
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2706
+ msgid "Notice: The likers box is not activated!"
2707
  msgstr ""
2708
 
2709
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2710
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2711
  msgstr ""
2712
 
2713
  #: build/wp-ulike/inc/general-functions.php:85
2755
  msgid "Table info is empty."
2756
  msgstr ""
2757
 
2758
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2759
  msgid "You need to login in order to like this post: "
2760
  msgstr "Vous devez être connecté pour aimer cet article&nbsp;:"
2761
 
2762
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2763
  msgid "click here"
2764
  msgstr "Cliquez ici"
2765
 
2766
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2767
  #, fuzzy
2768
  msgid "Like This"
2769
  msgstr "J'aime"
lang/wp-ulike-he_IL.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/wp-ulike/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "לעוד מידע"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr ""
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr ""
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr "לוג"
200
 
@@ -1023,16 +1037,16 @@ msgstr ""
1023
  msgid "Topics Stats"
1024
  msgstr ""
1025
 
1026
- #: admin/classes/class-wp-ulike-stats.php:274
1027
- #: admin/includes/templates/activities-logs.php:76
1028
- #: admin/includes/templates/comments-logs.php:81
1029
- #: admin/includes/templates/posts-logs.php:75
1030
- #: admin/includes/templates/topics-logs.php:75
1031
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1032
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1033
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1034
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1035
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1036
  msgid "Guest User"
1037
  msgstr ""
1038
 
@@ -1318,115 +1332,177 @@ msgstr ""
1318
  msgid "No data found! This is because there is still no data in your database."
1319
  msgstr ""
1320
 
1321
- #: admin/includes/templates/activities-logs.php:38
1322
- #: admin/includes/templates/comments-logs.php:38
1323
- #: admin/includes/templates/posts-logs.php:38
1324
- #: admin/includes/templates/topics-logs.php:38
1325
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1326
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1327
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1328
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1329
  msgid "WP ULike Logs"
1330
  msgstr ""
1331
 
1332
- #: admin/includes/templates/activities-logs.php:49
1333
- #: admin/includes/templates/comments-logs.php:49
1334
- #: admin/includes/templates/posts-logs.php:49
1335
- #: admin/includes/templates/topics-logs.php:49
1336
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1337
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1338
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1339
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1340
  msgid "ID"
1341
  msgstr "מזהה"
1342
 
1343
- #: admin/includes/templates/activities-logs.php:50
1344
- #: admin/includes/templates/comments-logs.php:50
1345
- #: admin/includes/templates/posts-logs.php:50
1346
- #: admin/includes/templates/topics-logs.php:50
1347
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1348
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1349
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1350
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1351
  msgid "Username"
1352
  msgstr "שם משתמש"
1353
 
1354
- #: admin/includes/templates/activities-logs.php:51
1355
- #: admin/includes/templates/comments-logs.php:51
1356
- #: admin/includes/templates/posts-logs.php:51
1357
- #: admin/includes/templates/topics-logs.php:51
1358
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1359
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1360
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1362
  msgid "Status"
1363
  msgstr "סטטוס"
1364
 
1365
- #: admin/includes/templates/activities-logs.php:52
1366
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1367
  msgid "Activity ID"
1368
  msgstr ""
1369
 
1370
- #: admin/includes/templates/activities-logs.php:53
1371
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1372
  msgid "Permalink"
1373
  msgstr ""
1374
 
1375
- #: admin/includes/templates/activities-logs.php:54
1376
- #: admin/includes/templates/comments-logs.php:55
1377
- #: admin/includes/templates/posts-logs.php:54
1378
- #: admin/includes/templates/topics-logs.php:54
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1380
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1381
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1382
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1383
  msgid "Date / Time"
1384
  msgstr ""
1385
 
1386
- #: admin/includes/templates/activities-logs.php:55
1387
- #: admin/includes/templates/comments-logs.php:56
1388
- #: admin/includes/templates/posts-logs.php:55
1389
- #: admin/includes/templates/topics-logs.php:55
1390
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1391
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1392
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1393
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1394
  msgid "IP"
1395
  msgstr ""
1396
 
1397
- #: admin/includes/templates/activities-logs.php:56
1398
- #: admin/includes/templates/comments-logs.php:57
1399
- #: admin/includes/templates/posts-logs.php:56
1400
- #: admin/includes/templates/topics-logs.php:56
1401
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1402
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1403
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1404
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1405
  msgid "Actions"
1406
  msgstr "פעולות"
1407
 
1408
- #: admin/includes/templates/activities-logs.php:92
1409
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1410
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1411
  msgstr ""
1412
 
1413
- #: admin/includes/templates/comments-logs.php:52
1414
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1415
  msgid "Comment ID"
1416
  msgstr ""
1417
 
1418
- #: admin/includes/templates/comments-logs.php:53
1419
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1420
  msgid "Comment Author"
1421
  msgstr ""
1422
 
1423
- #: admin/includes/templates/comments-logs.php:54
1424
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1425
  msgid "Comment Text"
1426
  msgstr ""
1427
 
1428
- #: admin/includes/templates/comments-logs.php:63
1429
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1430
  msgid "Not Found!"
1431
  msgstr ""
1432
 
@@ -1435,61 +1511,31 @@ msgstr ""
1435
  msgid "WP ULike Premium"
1436
  msgstr ""
1437
 
1438
- #: admin/includes/templates/go-pro.php:22
1439
- #: admin/includes/templates/statistics.php:48
1440
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1441
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1442
- msgid "Buy WP ULike Premium"
1443
- msgstr ""
1444
-
1445
- #: admin/includes/templates/go-pro.php:28
1446
- #: admin/includes/templates/statistics.php:53
1447
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1448
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1449
- #, fuzzy
1450
- msgid "More information"
1451
- msgstr "לעוד מידע"
1452
-
1453
- #: admin/includes/templates/go-pro.php:114
1454
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1455
  msgid ""
1456
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1457
  "ULike PRO plugin we fully support this page builder and have a variety of "
1458
  "widgets & controllers that make life much easier for you."
1459
  msgstr ""
1460
 
1461
- #: admin/includes/templates/go-pro.php:114
1462
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1463
  msgid ""
1464
  "Just drag your desired widget and drop it in your Elementor sections, "
1465
  "customize as you go and enjoy your like and dislike buttons on your contents."
1466
  msgstr ""
1467
 
1468
- #: admin/includes/templates/posts-logs.php:52
1469
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1470
  msgid "Post ID"
1471
  msgstr ""
1472
 
1473
- #: admin/includes/templates/posts-logs.php:53
1474
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1475
  msgid "Post Title"
1476
  msgstr ""
1477
 
1478
- #: admin/includes/templates/statistics.php:45
1479
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1480
- msgid "Check Votings, Best Likers & Top contents"
1481
- msgstr ""
1482
-
1483
- #: admin/includes/templates/statistics.php:47
1484
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1485
- msgid ""
1486
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1487
- "users love and what annoys them in an instance. You can extract reports of "
1488
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1489
- "dateRange picker and status selector controllers, no confusing options and "
1490
- "coding needed."
1491
- msgstr ""
1492
-
1493
  #: admin/includes/templates/statistics.php:76
1494
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1495
  msgid "Total"
@@ -1538,13 +1584,13 @@ msgstr ""
1538
  msgid "Top"
1539
  msgstr ""
1540
 
1541
- #: admin/includes/templates/topics-logs.php:52
1542
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1543
  msgid "Topic ID"
1544
  msgstr ""
1545
 
1546
- #: admin/includes/templates/topics-logs.php:53
1547
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1548
  msgid "Topic Title"
1549
  msgstr ""
1550
 
@@ -1663,48 +1709,48 @@ msgstr ""
1663
  msgid "Are you sure to reset all options?"
1664
  msgstr ""
1665
 
1666
- #: admin/settings/classes/setup.class.php:429
1667
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1668
  msgid "Are you sure?"
1669
  msgstr ""
1670
 
1671
- #: admin/settings/classes/setup.class.php:430
1672
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1673
  msgid "Restoring options."
1674
  msgstr ""
1675
 
1676
- #: admin/settings/classes/setup.class.php:431
1677
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1678
  msgid "Importing options."
1679
  msgstr ""
1680
 
1681
- #: admin/settings/classes/setup.class.php:434
1682
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1683
  msgid "Please enter %s or more characters"
1684
  msgstr ""
1685
 
1686
- #: admin/settings/classes/setup.class.php:435
1687
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1688
  msgid "Searching..."
1689
  msgstr ""
1690
 
1691
- #: admin/settings/classes/setup.class.php:436
1692
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1693
  msgid "No results match"
1694
  msgstr ""
1695
 
1696
- #: admin/settings/classes/setup.class.php:507
1697
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1698
  msgid "Ooops! This field type (%s) can not be used here, yet."
1699
  msgstr ""
1700
 
1701
- #: admin/settings/classes/setup.class.php:570
1702
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1703
  msgid "This field class is not available!"
1704
  msgstr ""
1705
 
1706
- #: admin/settings/classes/setup.class.php:574
1707
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1708
  msgid "This type is not found!"
1709
  msgstr ""
1710
 
@@ -2574,17 +2620,17 @@ msgid ""
2574
  msgstr ""
2575
 
2576
  #: build/wp-ulike/inc/frontend-ajax.php:42
2577
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2578
- #: inc/frontend-ajax.php:164
2579
  msgid "Error: This Method Is Not Exist!"
2580
  msgstr ""
2581
 
2582
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2583
- msgid "Notice: The likers box is refreshed only for logged in users!"
2584
  msgstr ""
2585
 
2586
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2587
- msgid "Notice: The likers box is not activated!"
2588
  msgstr ""
2589
 
2590
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2629,15 +2675,15 @@ msgstr ""
2629
  msgid "Table info is empty."
2630
  msgstr ""
2631
 
2632
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2633
  msgid "You need to login in order to like this post: "
2634
  msgstr ""
2635
 
2636
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2637
  msgid "click here"
2638
  msgstr ""
2639
 
2640
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2641
  msgid "Like This"
2642
  msgstr ""
2643
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/wp-ulike/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "לעוד מידע"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr ""
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr ""
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
192
  msgstr ""
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr "לוג"
214
 
1037
  msgid "Topics Stats"
1038
  msgstr ""
1039
 
1040
+ #: admin/classes/class-wp-ulike-stats.php:273
1041
+ #: admin/includes/templates/activities-logs.php:98
1042
+ #: admin/includes/templates/comments-logs.php:103
1043
+ #: admin/includes/templates/posts-logs.php:97
1044
+ #: admin/includes/templates/topics-logs.php:97
1045
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1046
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1047
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1048
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1049
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1050
  msgid "Guest User"
1051
  msgstr ""
1052
 
1332
  msgid "No data found! This is because there is still no data in your database."
1333
  msgstr ""
1334
 
1335
+ #: admin/includes/templates/activities-logs.php:40
1336
+ #: admin/includes/templates/comments-logs.php:40
1337
+ #: admin/includes/templates/posts-logs.php:40
1338
+ #: admin/includes/templates/statistics.php:45
1339
+ #: admin/includes/templates/topics-logs.php:40
1340
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1341
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1342
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1343
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1344
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1345
+ msgid "Check Votings, Best Likers & Top contents"
1346
+ msgstr ""
1347
+
1348
+ #: admin/includes/templates/activities-logs.php:42
1349
+ #: admin/includes/templates/comments-logs.php:42
1350
+ #: admin/includes/templates/posts-logs.php:42
1351
+ #: admin/includes/templates/statistics.php:47
1352
+ #: admin/includes/templates/topics-logs.php:42
1353
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1354
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1355
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1356
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1357
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1358
+ msgid ""
1359
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1360
+ "users love and what annoys them in an instance. You can extract reports of "
1361
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1362
+ "dateRange picker and status selector controllers, no confusing options and "
1363
+ "coding needed."
1364
+ msgstr ""
1365
+
1366
+ #: admin/includes/templates/activities-logs.php:43
1367
+ #: admin/includes/templates/comments-logs.php:43
1368
+ #: admin/includes/templates/go-pro.php:22
1369
+ #: admin/includes/templates/posts-logs.php:43
1370
+ #: admin/includes/templates/statistics.php:48
1371
+ #: admin/includes/templates/topics-logs.php:43
1372
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1374
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1375
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1376
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1377
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1378
+ msgid "Buy WP ULike Premium"
1379
+ msgstr ""
1380
+
1381
+ #: admin/includes/templates/activities-logs.php:48
1382
+ #: admin/includes/templates/comments-logs.php:48
1383
+ #: admin/includes/templates/go-pro.php:28
1384
+ #: admin/includes/templates/posts-logs.php:48
1385
+ #: admin/includes/templates/statistics.php:53
1386
+ #: admin/includes/templates/topics-logs.php:48
1387
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1389
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1390
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1391
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1392
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1393
+ #, fuzzy
1394
+ msgid "More information"
1395
+ msgstr "לעוד מידע"
1396
+
1397
+ #: admin/includes/templates/activities-logs.php:60
1398
+ #: admin/includes/templates/comments-logs.php:60
1399
+ #: admin/includes/templates/posts-logs.php:60
1400
+ #: admin/includes/templates/topics-logs.php:60
1401
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1402
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1403
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1404
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1405
  msgid "WP ULike Logs"
1406
  msgstr ""
1407
 
1408
+ #: admin/includes/templates/activities-logs.php:71
1409
+ #: admin/includes/templates/comments-logs.php:71
1410
+ #: admin/includes/templates/posts-logs.php:71
1411
+ #: admin/includes/templates/topics-logs.php:71
1412
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1413
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1414
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1415
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1416
  msgid "ID"
1417
  msgstr "מזהה"
1418
 
1419
+ #: admin/includes/templates/activities-logs.php:72
1420
+ #: admin/includes/templates/comments-logs.php:72
1421
+ #: admin/includes/templates/posts-logs.php:72
1422
+ #: admin/includes/templates/topics-logs.php:72
1423
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1424
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1425
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1426
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1427
  msgid "Username"
1428
  msgstr "שם משתמש"
1429
 
1430
+ #: admin/includes/templates/activities-logs.php:73
1431
+ #: admin/includes/templates/comments-logs.php:73
1432
+ #: admin/includes/templates/posts-logs.php:73
1433
+ #: admin/includes/templates/topics-logs.php:73
1434
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1435
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1436
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1437
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1438
  msgid "Status"
1439
  msgstr "סטטוס"
1440
 
1441
+ #: admin/includes/templates/activities-logs.php:74
1442
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1443
  msgid "Activity ID"
1444
  msgstr ""
1445
 
1446
+ #: admin/includes/templates/activities-logs.php:75
1447
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1448
  msgid "Permalink"
1449
  msgstr ""
1450
 
1451
+ #: admin/includes/templates/activities-logs.php:76
1452
+ #: admin/includes/templates/comments-logs.php:77
1453
+ #: admin/includes/templates/posts-logs.php:76
1454
+ #: admin/includes/templates/topics-logs.php:76
1455
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1456
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1457
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1458
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1459
  msgid "Date / Time"
1460
  msgstr ""
1461
 
1462
+ #: admin/includes/templates/activities-logs.php:77
1463
+ #: admin/includes/templates/comments-logs.php:78
1464
+ #: admin/includes/templates/posts-logs.php:77
1465
+ #: admin/includes/templates/topics-logs.php:77
1466
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1467
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1468
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1469
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1470
  msgid "IP"
1471
  msgstr ""
1472
 
1473
+ #: admin/includes/templates/activities-logs.php:78
1474
+ #: admin/includes/templates/comments-logs.php:79
1475
+ #: admin/includes/templates/posts-logs.php:78
1476
+ #: admin/includes/templates/topics-logs.php:78
1477
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1478
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1479
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1480
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1481
  msgid "Actions"
1482
  msgstr "פעולות"
1483
 
1484
+ #: admin/includes/templates/activities-logs.php:114
1485
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1486
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1487
  msgstr ""
1488
 
1489
+ #: admin/includes/templates/comments-logs.php:74
1490
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1491
  msgid "Comment ID"
1492
  msgstr ""
1493
 
1494
+ #: admin/includes/templates/comments-logs.php:75
1495
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1496
  msgid "Comment Author"
1497
  msgstr ""
1498
 
1499
+ #: admin/includes/templates/comments-logs.php:76
1500
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1501
  msgid "Comment Text"
1502
  msgstr ""
1503
 
1504
+ #: admin/includes/templates/comments-logs.php:85
1505
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1506
  msgid "Not Found!"
1507
  msgstr ""
1508
 
1511
  msgid "WP ULike Premium"
1512
  msgstr ""
1513
 
1514
+ #: admin/includes/templates/go-pro.php:119
1515
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1516
  msgid ""
1517
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1518
  "ULike PRO plugin we fully support this page builder and have a variety of "
1519
  "widgets & controllers that make life much easier for you."
1520
  msgstr ""
1521
 
1522
+ #: admin/includes/templates/go-pro.php:119
1523
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1524
  msgid ""
1525
  "Just drag your desired widget and drop it in your Elementor sections, "
1526
  "customize as you go and enjoy your like and dislike buttons on your contents."
1527
  msgstr ""
1528
 
1529
+ #: admin/includes/templates/posts-logs.php:74
1530
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1531
  msgid "Post ID"
1532
  msgstr ""
1533
 
1534
+ #: admin/includes/templates/posts-logs.php:75
1535
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1536
  msgid "Post Title"
1537
  msgstr ""
1538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1539
  #: admin/includes/templates/statistics.php:76
1540
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1541
  msgid "Total"
1584
  msgid "Top"
1585
  msgstr ""
1586
 
1587
+ #: admin/includes/templates/topics-logs.php:74
1588
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1589
  msgid "Topic ID"
1590
  msgstr ""
1591
 
1592
+ #: admin/includes/templates/topics-logs.php:75
1593
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1594
  msgid "Topic Title"
1595
  msgstr ""
1596
 
1709
  msgid "Are you sure to reset all options?"
1710
  msgstr ""
1711
 
1712
+ #: admin/settings/classes/setup.class.php:436
1713
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1714
  msgid "Are you sure?"
1715
  msgstr ""
1716
 
1717
+ #: admin/settings/classes/setup.class.php:437
1718
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1719
  msgid "Restoring options."
1720
  msgstr ""
1721
 
1722
+ #: admin/settings/classes/setup.class.php:438
1723
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1724
  msgid "Importing options."
1725
  msgstr ""
1726
 
1727
+ #: admin/settings/classes/setup.class.php:441
1728
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1729
  msgid "Please enter %s or more characters"
1730
  msgstr ""
1731
 
1732
+ #: admin/settings/classes/setup.class.php:442
1733
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1734
  msgid "Searching..."
1735
  msgstr ""
1736
 
1737
+ #: admin/settings/classes/setup.class.php:443
1738
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1739
  msgid "No results match"
1740
  msgstr ""
1741
 
1742
+ #: admin/settings/classes/setup.class.php:514
1743
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1744
  msgid "Ooops! This field type (%s) can not be used here, yet."
1745
  msgstr ""
1746
 
1747
+ #: admin/settings/classes/setup.class.php:577
1748
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1749
  msgid "This field class is not available!"
1750
  msgstr ""
1751
 
1752
+ #: admin/settings/classes/setup.class.php:581
1753
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1754
  msgid "This type is not found!"
1755
  msgstr ""
1756
 
2620
  msgstr ""
2621
 
2622
  #: build/wp-ulike/inc/frontend-ajax.php:42
2623
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2624
+ #: inc/frontend-ajax.php:170
2625
  msgid "Error: This Method Is Not Exist!"
2626
  msgstr ""
2627
 
2628
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2629
+ msgid "Notice: The likers box is not activated!"
2630
  msgstr ""
2631
 
2632
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2633
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2634
  msgstr ""
2635
 
2636
  #: build/wp-ulike/inc/general-functions.php:85
2675
  msgid "Table info is empty."
2676
  msgstr ""
2677
 
2678
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2679
  msgid "You need to login in order to like this post: "
2680
  msgstr ""
2681
 
2682
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2683
  msgid "click here"
2684
  msgstr ""
2685
 
2686
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2687
  msgid "Like This"
2688
  msgstr ""
2689
 
lang/wp-ulike-hu_HU.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "További információk:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Naplózások"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Felhasználói név"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Státusz"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr "Közvetlen hivatkozás"
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Műveletek"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "További információk:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2570,17 +2616,17 @@ msgid ""
2570
  msgstr ""
2571
 
2572
  #: build/wp-ulike/inc/frontend-ajax.php:42
2573
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2574
- #: inc/frontend-ajax.php:164
2575
  msgid "Error: This Method Is Not Exist!"
2576
  msgstr ""
2577
 
2578
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2579
- msgid "Notice: The likers box is refreshed only for logged in users!"
2580
  msgstr ""
2581
 
2582
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2583
- msgid "Notice: The likers box is not activated!"
2584
  msgstr ""
2585
 
2586
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2625,15 +2671,15 @@ msgstr ""
2625
  msgid "Table info is empty."
2626
  msgstr ""
2627
 
2628
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2629
  msgid "You need to login in order to like this post: "
2630
  msgstr ""
2631
 
2632
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2633
  msgid "click here"
2634
  msgstr ""
2635
 
2636
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2637
  msgid "Like This"
2638
  msgstr ""
2639
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "További információk:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Naplózások"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "További információk:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Felhasználói név"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Státusz"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr "Közvetlen hivatkozás"
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Műveletek"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2616
  msgstr ""
2617
 
2618
  #: build/wp-ulike/inc/frontend-ajax.php:42
2619
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2620
+ #: inc/frontend-ajax.php:170
2621
  msgid "Error: This Method Is Not Exist!"
2622
  msgstr ""
2623
 
2624
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2625
+ msgid "Notice: The likers box is not activated!"
2626
  msgstr ""
2627
 
2628
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2629
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2630
  msgstr ""
2631
 
2632
  #: build/wp-ulike/inc/general-functions.php:85
2671
  msgid "Table info is empty."
2672
  msgstr ""
2673
 
2674
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2675
  msgid "You need to login in order to like this post: "
2676
  msgstr ""
2677
 
2678
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2679
  msgid "click here"
2680
  msgstr ""
2681
 
2682
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2683
  msgid "Like This"
2684
  msgstr ""
2685
 
lang/wp-ulike-id_ID.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Untuk informasi lebih lanjut:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Catatan"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Nama Pengguna"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Status"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Aksi"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "Untuk informasi lebih lanjut:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1534,13 +1580,13 @@ msgstr ""
1534
  msgid "Top"
1535
  msgstr ""
1536
 
1537
- #: admin/includes/templates/topics-logs.php:52
1538
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1539
  msgid "Topic ID"
1540
  msgstr ""
1541
 
1542
- #: admin/includes/templates/topics-logs.php:53
1543
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1544
  msgid "Topic Title"
1545
  msgstr ""
1546
 
@@ -1659,48 +1705,48 @@ msgstr ""
1659
  msgid "Are you sure to reset all options?"
1660
  msgstr ""
1661
 
1662
- #: admin/settings/classes/setup.class.php:429
1663
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1664
  msgid "Are you sure?"
1665
  msgstr ""
1666
 
1667
- #: admin/settings/classes/setup.class.php:430
1668
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1669
  msgid "Restoring options."
1670
  msgstr ""
1671
 
1672
- #: admin/settings/classes/setup.class.php:431
1673
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1674
  msgid "Importing options."
1675
  msgstr ""
1676
 
1677
- #: admin/settings/classes/setup.class.php:434
1678
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1679
  msgid "Please enter %s or more characters"
1680
  msgstr ""
1681
 
1682
- #: admin/settings/classes/setup.class.php:435
1683
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1684
  msgid "Searching..."
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:436
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1689
  msgid "No results match"
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:507
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1694
  msgid "Ooops! This field type (%s) can not be used here, yet."
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:570
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1699
  msgid "This field class is not available!"
1700
  msgstr ""
1701
 
1702
- #: admin/settings/classes/setup.class.php:574
1703
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1704
  msgid "This type is not found!"
1705
  msgstr ""
1706
 
@@ -2569,17 +2615,17 @@ msgid ""
2569
  msgstr ""
2570
 
2571
  #: build/wp-ulike/inc/frontend-ajax.php:42
2572
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2573
- #: inc/frontend-ajax.php:164
2574
  msgid "Error: This Method Is Not Exist!"
2575
  msgstr ""
2576
 
2577
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2578
- msgid "Notice: The likers box is refreshed only for logged in users!"
2579
  msgstr ""
2580
 
2581
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2582
- msgid "Notice: The likers box is not activated!"
2583
  msgstr ""
2584
 
2585
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2624,15 +2670,15 @@ msgstr ""
2624
  msgid "Table info is empty."
2625
  msgstr ""
2626
 
2627
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2628
  msgid "You need to login in order to like this post: "
2629
  msgstr ""
2630
 
2631
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2632
  msgid "click here"
2633
  msgstr ""
2634
 
2635
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2636
  msgid "Like This"
2637
  msgstr ""
2638
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Untuk informasi lebih lanjut:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Catatan"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "Untuk informasi lebih lanjut:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Nama Pengguna"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Status"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Aksi"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1580
  msgid "Top"
1581
  msgstr ""
1582
 
1583
+ #: admin/includes/templates/topics-logs.php:74
1584
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1585
  msgid "Topic ID"
1586
  msgstr ""
1587
 
1588
+ #: admin/includes/templates/topics-logs.php:75
1589
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1590
  msgid "Topic Title"
1591
  msgstr ""
1592
 
1705
  msgid "Are you sure to reset all options?"
1706
  msgstr ""
1707
 
1708
+ #: admin/settings/classes/setup.class.php:436
1709
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1710
  msgid "Are you sure?"
1711
  msgstr ""
1712
 
1713
+ #: admin/settings/classes/setup.class.php:437
1714
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1715
  msgid "Restoring options."
1716
  msgstr ""
1717
 
1718
+ #: admin/settings/classes/setup.class.php:438
1719
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1720
  msgid "Importing options."
1721
  msgstr ""
1722
 
1723
+ #: admin/settings/classes/setup.class.php:441
1724
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1725
  msgid "Please enter %s or more characters"
1726
  msgstr ""
1727
 
1728
+ #: admin/settings/classes/setup.class.php:442
1729
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1730
  msgid "Searching..."
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:443
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1735
  msgid "No results match"
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:514
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1740
  msgid "Ooops! This field type (%s) can not be used here, yet."
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:577
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1745
  msgid "This field class is not available!"
1746
  msgstr ""
1747
 
1748
+ #: admin/settings/classes/setup.class.php:581
1749
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1750
  msgid "This type is not found!"
1751
  msgstr ""
1752
 
2615
  msgstr ""
2616
 
2617
  #: build/wp-ulike/inc/frontend-ajax.php:42
2618
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2619
+ #: inc/frontend-ajax.php:170
2620
  msgid "Error: This Method Is Not Exist!"
2621
  msgstr ""
2622
 
2623
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2624
+ msgid "Notice: The likers box is not activated!"
2625
  msgstr ""
2626
 
2627
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2628
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2629
  msgstr ""
2630
 
2631
  #: build/wp-ulike/inc/general-functions.php:85
2670
  msgid "Table info is empty."
2671
  msgstr ""
2672
 
2673
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2674
  msgid "You need to login in order to like this post: "
2675
  msgstr ""
2676
 
2677
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2678
  msgid "click here"
2679
  msgstr ""
2680
 
2681
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2682
  msgid "Like This"
2683
  msgstr ""
2684
 
lang/wp-ulike-it_IT.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/wp-ulike/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Per altre informazioni:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Logs"
199
 
@@ -1021,16 +1035,16 @@ msgstr ""
1021
  msgid "Topics Stats"
1022
  msgstr ""
1023
 
1024
- #: admin/classes/class-wp-ulike-stats.php:274
1025
- #: admin/includes/templates/activities-logs.php:76
1026
- #: admin/includes/templates/comments-logs.php:81
1027
- #: admin/includes/templates/posts-logs.php:75
1028
- #: admin/includes/templates/topics-logs.php:75
1029
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1030
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1031
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1032
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1033
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1034
  msgid "Guest User"
1035
  msgstr ""
1036
 
@@ -1316,115 +1330,177 @@ msgstr ""
1316
  msgid "No data found! This is because there is still no data in your database."
1317
  msgstr ""
1318
 
1319
- #: admin/includes/templates/activities-logs.php:38
1320
- #: admin/includes/templates/comments-logs.php:38
1321
- #: admin/includes/templates/posts-logs.php:38
1322
- #: admin/includes/templates/topics-logs.php:38
1323
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1326
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1327
  msgid "WP ULike Logs"
1328
  msgstr ""
1329
 
1330
- #: admin/includes/templates/activities-logs.php:49
1331
- #: admin/includes/templates/comments-logs.php:49
1332
- #: admin/includes/templates/posts-logs.php:49
1333
- #: admin/includes/templates/topics-logs.php:49
1334
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1337
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1338
  msgid "ID"
1339
  msgstr "ID"
1340
 
1341
- #: admin/includes/templates/activities-logs.php:50
1342
- #: admin/includes/templates/comments-logs.php:50
1343
- #: admin/includes/templates/posts-logs.php:50
1344
- #: admin/includes/templates/topics-logs.php:50
1345
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1348
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1349
  msgid "Username"
1350
  msgstr "Nome Utente"
1351
 
1352
- #: admin/includes/templates/activities-logs.php:51
1353
- #: admin/includes/templates/comments-logs.php:51
1354
- #: admin/includes/templates/posts-logs.php:51
1355
- #: admin/includes/templates/topics-logs.php:51
1356
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1359
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1360
  msgid "Status"
1361
  msgstr "Stato"
1362
 
1363
- #: admin/includes/templates/activities-logs.php:52
1364
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1365
  msgid "Activity ID"
1366
  msgstr ""
1367
 
1368
- #: admin/includes/templates/activities-logs.php:53
1369
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1370
  msgid "Permalink"
1371
  msgstr "Permalink"
1372
 
1373
- #: admin/includes/templates/activities-logs.php:54
1374
- #: admin/includes/templates/comments-logs.php:55
1375
- #: admin/includes/templates/posts-logs.php:54
1376
- #: admin/includes/templates/topics-logs.php:54
1377
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1378
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1379
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1380
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1381
  msgid "Date / Time"
1382
  msgstr ""
1383
 
1384
- #: admin/includes/templates/activities-logs.php:55
1385
- #: admin/includes/templates/comments-logs.php:56
1386
- #: admin/includes/templates/posts-logs.php:55
1387
- #: admin/includes/templates/topics-logs.php:55
1388
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1389
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1390
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1391
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1392
  msgid "IP"
1393
  msgstr ""
1394
 
1395
- #: admin/includes/templates/activities-logs.php:56
1396
- #: admin/includes/templates/comments-logs.php:57
1397
- #: admin/includes/templates/posts-logs.php:56
1398
- #: admin/includes/templates/topics-logs.php:56
1399
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1400
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1401
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1402
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1403
  msgid "Actions"
1404
  msgstr "Azioni"
1405
 
1406
- #: admin/includes/templates/activities-logs.php:92
1407
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1408
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1409
  msgstr ""
1410
 
1411
- #: admin/includes/templates/comments-logs.php:52
1412
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1413
  msgid "Comment ID"
1414
  msgstr ""
1415
 
1416
- #: admin/includes/templates/comments-logs.php:53
1417
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1418
  msgid "Comment Author"
1419
  msgstr ""
1420
 
1421
- #: admin/includes/templates/comments-logs.php:54
1422
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1423
  msgid "Comment Text"
1424
  msgstr ""
1425
 
1426
- #: admin/includes/templates/comments-logs.php:63
1427
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1428
  msgid "Not Found!"
1429
  msgstr ""
1430
 
@@ -1433,61 +1509,31 @@ msgstr ""
1433
  msgid "WP ULike Premium"
1434
  msgstr ""
1435
 
1436
- #: admin/includes/templates/go-pro.php:22
1437
- #: admin/includes/templates/statistics.php:48
1438
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1439
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1440
- msgid "Buy WP ULike Premium"
1441
- msgstr ""
1442
-
1443
- #: admin/includes/templates/go-pro.php:28
1444
- #: admin/includes/templates/statistics.php:53
1445
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1446
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1447
- #, fuzzy
1448
- msgid "More information"
1449
- msgstr "Per altre informazioni:"
1450
-
1451
- #: admin/includes/templates/go-pro.php:114
1452
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1453
  msgid ""
1454
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1455
  "ULike PRO plugin we fully support this page builder and have a variety of "
1456
  "widgets & controllers that make life much easier for you."
1457
  msgstr ""
1458
 
1459
- #: admin/includes/templates/go-pro.php:114
1460
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1461
  msgid ""
1462
  "Just drag your desired widget and drop it in your Elementor sections, "
1463
  "customize as you go and enjoy your like and dislike buttons on your contents."
1464
  msgstr ""
1465
 
1466
- #: admin/includes/templates/posts-logs.php:52
1467
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1468
  msgid "Post ID"
1469
  msgstr ""
1470
 
1471
- #: admin/includes/templates/posts-logs.php:53
1472
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1473
  msgid "Post Title"
1474
  msgstr ""
1475
 
1476
- #: admin/includes/templates/statistics.php:45
1477
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1478
- msgid "Check Votings, Best Likers & Top contents"
1479
- msgstr ""
1480
-
1481
- #: admin/includes/templates/statistics.php:47
1482
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1483
- msgid ""
1484
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1485
- "users love and what annoys them in an instance. You can extract reports of "
1486
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1487
- "dateRange picker and status selector controllers, no confusing options and "
1488
- "coding needed."
1489
- msgstr ""
1490
-
1491
  #: admin/includes/templates/statistics.php:76
1492
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1493
  msgid "Total"
@@ -1536,13 +1582,13 @@ msgstr ""
1536
  msgid "Top"
1537
  msgstr ""
1538
 
1539
- #: admin/includes/templates/topics-logs.php:52
1540
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1541
  msgid "Topic ID"
1542
  msgstr ""
1543
 
1544
- #: admin/includes/templates/topics-logs.php:53
1545
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1546
  msgid "Topic Title"
1547
  msgstr ""
1548
 
@@ -1661,48 +1707,48 @@ msgstr ""
1661
  msgid "Are you sure to reset all options?"
1662
  msgstr ""
1663
 
1664
- #: admin/settings/classes/setup.class.php:429
1665
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1666
  msgid "Are you sure?"
1667
  msgstr ""
1668
 
1669
- #: admin/settings/classes/setup.class.php:430
1670
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1671
  msgid "Restoring options."
1672
  msgstr ""
1673
 
1674
- #: admin/settings/classes/setup.class.php:431
1675
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1676
  msgid "Importing options."
1677
  msgstr ""
1678
 
1679
- #: admin/settings/classes/setup.class.php:434
1680
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1681
  msgid "Please enter %s or more characters"
1682
  msgstr ""
1683
 
1684
- #: admin/settings/classes/setup.class.php:435
1685
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1686
  msgid "Searching..."
1687
  msgstr ""
1688
 
1689
- #: admin/settings/classes/setup.class.php:436
1690
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1691
  msgid "No results match"
1692
  msgstr ""
1693
 
1694
- #: admin/settings/classes/setup.class.php:507
1695
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1696
  msgid "Ooops! This field type (%s) can not be used here, yet."
1697
  msgstr ""
1698
 
1699
- #: admin/settings/classes/setup.class.php:570
1700
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1701
  msgid "This field class is not available!"
1702
  msgstr ""
1703
 
1704
- #: admin/settings/classes/setup.class.php:574
1705
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1706
  msgid "This type is not found!"
1707
  msgstr ""
1708
 
@@ -2571,17 +2617,17 @@ msgid ""
2571
  msgstr ""
2572
 
2573
  #: build/wp-ulike/inc/frontend-ajax.php:42
2574
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2575
- #: inc/frontend-ajax.php:164
2576
  msgid "Error: This Method Is Not Exist!"
2577
  msgstr ""
2578
 
2579
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2580
- msgid "Notice: The likers box is refreshed only for logged in users!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2584
- msgid "Notice: The likers box is not activated!"
2585
  msgstr ""
2586
 
2587
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2626,15 +2672,15 @@ msgstr ""
2626
  msgid "Table info is empty."
2627
  msgstr ""
2628
 
2629
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2630
  msgid "You need to login in order to like this post: "
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2634
  msgid "click here"
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2638
  #, fuzzy
2639
  msgid "Like This"
2640
  msgstr "Ti piace questo plugin?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/wp-ulike/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Per altre informazioni:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Logs"
213
 
1035
  msgid "Topics Stats"
1036
  msgstr ""
1037
 
1038
+ #: admin/classes/class-wp-ulike-stats.php:273
1039
+ #: admin/includes/templates/activities-logs.php:98
1040
+ #: admin/includes/templates/comments-logs.php:103
1041
+ #: admin/includes/templates/posts-logs.php:97
1042
+ #: admin/includes/templates/topics-logs.php:97
1043
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1044
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1045
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1046
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1047
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1048
  msgid "Guest User"
1049
  msgstr ""
1050
 
1330
  msgid "No data found! This is because there is still no data in your database."
1331
  msgstr ""
1332
 
1333
+ #: admin/includes/templates/activities-logs.php:40
1334
+ #: admin/includes/templates/comments-logs.php:40
1335
+ #: admin/includes/templates/posts-logs.php:40
1336
+ #: admin/includes/templates/statistics.php:45
1337
+ #: admin/includes/templates/topics-logs.php:40
1338
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1341
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1342
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1343
+ msgid "Check Votings, Best Likers & Top contents"
1344
+ msgstr ""
1345
+
1346
+ #: admin/includes/templates/activities-logs.php:42
1347
+ #: admin/includes/templates/comments-logs.php:42
1348
+ #: admin/includes/templates/posts-logs.php:42
1349
+ #: admin/includes/templates/statistics.php:47
1350
+ #: admin/includes/templates/topics-logs.php:42
1351
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1354
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1355
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1356
+ msgid ""
1357
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1358
+ "users love and what annoys them in an instance. You can extract reports of "
1359
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1360
+ "dateRange picker and status selector controllers, no confusing options and "
1361
+ "coding needed."
1362
+ msgstr ""
1363
+
1364
+ #: admin/includes/templates/activities-logs.php:43
1365
+ #: admin/includes/templates/comments-logs.php:43
1366
+ #: admin/includes/templates/go-pro.php:22
1367
+ #: admin/includes/templates/posts-logs.php:43
1368
+ #: admin/includes/templates/statistics.php:48
1369
+ #: admin/includes/templates/topics-logs.php:43
1370
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1372
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1373
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1374
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1375
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1376
+ msgid "Buy WP ULike Premium"
1377
+ msgstr ""
1378
+
1379
+ #: admin/includes/templates/activities-logs.php:48
1380
+ #: admin/includes/templates/comments-logs.php:48
1381
+ #: admin/includes/templates/go-pro.php:28
1382
+ #: admin/includes/templates/posts-logs.php:48
1383
+ #: admin/includes/templates/statistics.php:53
1384
+ #: admin/includes/templates/topics-logs.php:48
1385
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1387
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1388
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1389
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1390
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1391
+ #, fuzzy
1392
+ msgid "More information"
1393
+ msgstr "Per altre informazioni:"
1394
+
1395
+ #: admin/includes/templates/activities-logs.php:60
1396
+ #: admin/includes/templates/comments-logs.php:60
1397
+ #: admin/includes/templates/posts-logs.php:60
1398
+ #: admin/includes/templates/topics-logs.php:60
1399
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1402
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1403
  msgid "WP ULike Logs"
1404
  msgstr ""
1405
 
1406
+ #: admin/includes/templates/activities-logs.php:71
1407
+ #: admin/includes/templates/comments-logs.php:71
1408
+ #: admin/includes/templates/posts-logs.php:71
1409
+ #: admin/includes/templates/topics-logs.php:71
1410
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1413
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1414
  msgid "ID"
1415
  msgstr "ID"
1416
 
1417
+ #: admin/includes/templates/activities-logs.php:72
1418
+ #: admin/includes/templates/comments-logs.php:72
1419
+ #: admin/includes/templates/posts-logs.php:72
1420
+ #: admin/includes/templates/topics-logs.php:72
1421
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1424
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1425
  msgid "Username"
1426
  msgstr "Nome Utente"
1427
 
1428
+ #: admin/includes/templates/activities-logs.php:73
1429
+ #: admin/includes/templates/comments-logs.php:73
1430
+ #: admin/includes/templates/posts-logs.php:73
1431
+ #: admin/includes/templates/topics-logs.php:73
1432
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1435
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1436
  msgid "Status"
1437
  msgstr "Stato"
1438
 
1439
+ #: admin/includes/templates/activities-logs.php:74
1440
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1441
  msgid "Activity ID"
1442
  msgstr ""
1443
 
1444
+ #: admin/includes/templates/activities-logs.php:75
1445
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1446
  msgid "Permalink"
1447
  msgstr "Permalink"
1448
 
1449
+ #: admin/includes/templates/activities-logs.php:76
1450
+ #: admin/includes/templates/comments-logs.php:77
1451
+ #: admin/includes/templates/posts-logs.php:76
1452
+ #: admin/includes/templates/topics-logs.php:76
1453
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1454
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1455
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1456
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1457
  msgid "Date / Time"
1458
  msgstr ""
1459
 
1460
+ #: admin/includes/templates/activities-logs.php:77
1461
+ #: admin/includes/templates/comments-logs.php:78
1462
+ #: admin/includes/templates/posts-logs.php:77
1463
+ #: admin/includes/templates/topics-logs.php:77
1464
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1465
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1466
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1467
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1468
  msgid "IP"
1469
  msgstr ""
1470
 
1471
+ #: admin/includes/templates/activities-logs.php:78
1472
+ #: admin/includes/templates/comments-logs.php:79
1473
+ #: admin/includes/templates/posts-logs.php:78
1474
+ #: admin/includes/templates/topics-logs.php:78
1475
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1476
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1477
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1478
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1479
  msgid "Actions"
1480
  msgstr "Azioni"
1481
 
1482
+ #: admin/includes/templates/activities-logs.php:114
1483
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1484
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1485
  msgstr ""
1486
 
1487
+ #: admin/includes/templates/comments-logs.php:74
1488
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1489
  msgid "Comment ID"
1490
  msgstr ""
1491
 
1492
+ #: admin/includes/templates/comments-logs.php:75
1493
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1494
  msgid "Comment Author"
1495
  msgstr ""
1496
 
1497
+ #: admin/includes/templates/comments-logs.php:76
1498
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1499
  msgid "Comment Text"
1500
  msgstr ""
1501
 
1502
+ #: admin/includes/templates/comments-logs.php:85
1503
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1504
  msgid "Not Found!"
1505
  msgstr ""
1506
 
1509
  msgid "WP ULike Premium"
1510
  msgstr ""
1511
 
1512
+ #: admin/includes/templates/go-pro.php:119
1513
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1514
  msgid ""
1515
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1516
  "ULike PRO plugin we fully support this page builder and have a variety of "
1517
  "widgets & controllers that make life much easier for you."
1518
  msgstr ""
1519
 
1520
+ #: admin/includes/templates/go-pro.php:119
1521
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1522
  msgid ""
1523
  "Just drag your desired widget and drop it in your Elementor sections, "
1524
  "customize as you go and enjoy your like and dislike buttons on your contents."
1525
  msgstr ""
1526
 
1527
+ #: admin/includes/templates/posts-logs.php:74
1528
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1529
  msgid "Post ID"
1530
  msgstr ""
1531
 
1532
+ #: admin/includes/templates/posts-logs.php:75
1533
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1534
  msgid "Post Title"
1535
  msgstr ""
1536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1537
  #: admin/includes/templates/statistics.php:76
1538
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1539
  msgid "Total"
1582
  msgid "Top"
1583
  msgstr ""
1584
 
1585
+ #: admin/includes/templates/topics-logs.php:74
1586
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1587
  msgid "Topic ID"
1588
  msgstr ""
1589
 
1590
+ #: admin/includes/templates/topics-logs.php:75
1591
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1592
  msgid "Topic Title"
1593
  msgstr ""
1594
 
1707
  msgid "Are you sure to reset all options?"
1708
  msgstr ""
1709
 
1710
+ #: admin/settings/classes/setup.class.php:436
1711
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1712
  msgid "Are you sure?"
1713
  msgstr ""
1714
 
1715
+ #: admin/settings/classes/setup.class.php:437
1716
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1717
  msgid "Restoring options."
1718
  msgstr ""
1719
 
1720
+ #: admin/settings/classes/setup.class.php:438
1721
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1722
  msgid "Importing options."
1723
  msgstr ""
1724
 
1725
+ #: admin/settings/classes/setup.class.php:441
1726
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1727
  msgid "Please enter %s or more characters"
1728
  msgstr ""
1729
 
1730
+ #: admin/settings/classes/setup.class.php:442
1731
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1732
  msgid "Searching..."
1733
  msgstr ""
1734
 
1735
+ #: admin/settings/classes/setup.class.php:443
1736
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1737
  msgid "No results match"
1738
  msgstr ""
1739
 
1740
+ #: admin/settings/classes/setup.class.php:514
1741
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1742
  msgid "Ooops! This field type (%s) can not be used here, yet."
1743
  msgstr ""
1744
 
1745
+ #: admin/settings/classes/setup.class.php:577
1746
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1747
  msgid "This field class is not available!"
1748
  msgstr ""
1749
 
1750
+ #: admin/settings/classes/setup.class.php:581
1751
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1752
  msgid "This type is not found!"
1753
  msgstr ""
1754
 
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/frontend-ajax.php:42
2620
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2621
+ #: inc/frontend-ajax.php:170
2622
  msgid "Error: This Method Is Not Exist!"
2623
  msgstr ""
2624
 
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2626
+ msgid "Notice: The likers box is not activated!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2630
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2631
  msgstr ""
2632
 
2633
  #: build/wp-ulike/inc/general-functions.php:85
2672
  msgid "Table info is empty."
2673
  msgstr ""
2674
 
2675
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2676
  msgid "You need to login in order to like this post: "
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2680
  msgid "click here"
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2684
  #, fuzzy
2685
  msgid "Like This"
2686
  msgstr "Ti piace questo plugin?"
lang/wp-ulike-ja.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Japanese (http://www.transifex.com/projects/p/wp-ulike/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "より詳しい情報:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "ログ"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "ユーザー名"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "ステータス"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr "パーマリンク"
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "操作"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "より詳しい情報:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr "投稿ID"
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1536,13 +1582,13 @@ msgstr ""
1536
  msgid "Top"
1537
  msgstr "ツールチップ"
1538
 
1539
- #: admin/includes/templates/topics-logs.php:52
1540
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1541
  msgid "Topic ID"
1542
  msgstr ""
1543
 
1544
- #: admin/includes/templates/topics-logs.php:53
1545
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1546
  msgid "Topic Title"
1547
  msgstr ""
1548
 
@@ -1661,48 +1707,48 @@ msgstr ""
1661
  msgid "Are you sure to reset all options?"
1662
  msgstr ""
1663
 
1664
- #: admin/settings/classes/setup.class.php:429
1665
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1666
  msgid "Are you sure?"
1667
  msgstr ""
1668
 
1669
- #: admin/settings/classes/setup.class.php:430
1670
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1671
  msgid "Restoring options."
1672
  msgstr ""
1673
 
1674
- #: admin/settings/classes/setup.class.php:431
1675
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1676
  msgid "Importing options."
1677
  msgstr ""
1678
 
1679
- #: admin/settings/classes/setup.class.php:434
1680
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1681
  msgid "Please enter %s or more characters"
1682
  msgstr ""
1683
 
1684
- #: admin/settings/classes/setup.class.php:435
1685
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1686
  msgid "Searching..."
1687
  msgstr ""
1688
 
1689
- #: admin/settings/classes/setup.class.php:436
1690
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1691
  msgid "No results match"
1692
  msgstr ""
1693
 
1694
- #: admin/settings/classes/setup.class.php:507
1695
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1696
  msgid "Ooops! This field type (%s) can not be used here, yet."
1697
  msgstr ""
1698
 
1699
- #: admin/settings/classes/setup.class.php:570
1700
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1701
  msgid "This field class is not available!"
1702
  msgstr ""
1703
 
1704
- #: admin/settings/classes/setup.class.php:574
1705
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1706
  msgid "This type is not found!"
1707
  msgstr ""
1708
 
@@ -2572,17 +2618,17 @@ msgid ""
2572
  msgstr ""
2573
 
2574
  #: build/wp-ulike/inc/frontend-ajax.php:42
2575
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2576
- #: inc/frontend-ajax.php:164
2577
  msgid "Error: This Method Is Not Exist!"
2578
  msgstr ""
2579
 
2580
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2581
- msgid "Notice: The likers box is refreshed only for logged in users!"
2582
  msgstr ""
2583
 
2584
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2585
- msgid "Notice: The likers box is not activated!"
2586
  msgstr ""
2587
 
2588
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2627,15 +2673,15 @@ msgstr ""
2627
  msgid "Table info is empty."
2628
  msgstr ""
2629
 
2630
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2631
  msgid "You need to login in order to like this post: "
2632
  msgstr ""
2633
 
2634
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2635
  msgid "click here"
2636
  msgstr ""
2637
 
2638
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2639
  msgid "Like This"
2640
  msgstr ""
2641
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Japanese (http://www.transifex.com/projects/p/wp-ulike/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "より詳しい情報:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "ログ"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "より詳しい情報:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "ユーザー名"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "ステータス"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr "パーマリンク"
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "操作"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr "投稿ID"
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1582
  msgid "Top"
1583
  msgstr "ツールチップ"
1584
 
1585
+ #: admin/includes/templates/topics-logs.php:74
1586
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1587
  msgid "Topic ID"
1588
  msgstr ""
1589
 
1590
+ #: admin/includes/templates/topics-logs.php:75
1591
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1592
  msgid "Topic Title"
1593
  msgstr ""
1594
 
1707
  msgid "Are you sure to reset all options?"
1708
  msgstr ""
1709
 
1710
+ #: admin/settings/classes/setup.class.php:436
1711
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1712
  msgid "Are you sure?"
1713
  msgstr ""
1714
 
1715
+ #: admin/settings/classes/setup.class.php:437
1716
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1717
  msgid "Restoring options."
1718
  msgstr ""
1719
 
1720
+ #: admin/settings/classes/setup.class.php:438
1721
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1722
  msgid "Importing options."
1723
  msgstr ""
1724
 
1725
+ #: admin/settings/classes/setup.class.php:441
1726
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1727
  msgid "Please enter %s or more characters"
1728
  msgstr ""
1729
 
1730
+ #: admin/settings/classes/setup.class.php:442
1731
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1732
  msgid "Searching..."
1733
  msgstr ""
1734
 
1735
+ #: admin/settings/classes/setup.class.php:443
1736
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1737
  msgid "No results match"
1738
  msgstr ""
1739
 
1740
+ #: admin/settings/classes/setup.class.php:514
1741
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1742
  msgid "Ooops! This field type (%s) can not be used here, yet."
1743
  msgstr ""
1744
 
1745
+ #: admin/settings/classes/setup.class.php:577
1746
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1747
  msgid "This field class is not available!"
1748
  msgstr ""
1749
 
1750
+ #: admin/settings/classes/setup.class.php:581
1751
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1752
  msgid "This type is not found!"
1753
  msgstr ""
1754
 
2618
  msgstr ""
2619
 
2620
  #: build/wp-ulike/inc/frontend-ajax.php:42
2621
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2622
+ #: inc/frontend-ajax.php:170
2623
  msgid "Error: This Method Is Not Exist!"
2624
  msgstr ""
2625
 
2626
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2627
+ msgid "Notice: The likers box is not activated!"
2628
  msgstr ""
2629
 
2630
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2631
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2632
  msgstr ""
2633
 
2634
  #: build/wp-ulike/inc/general-functions.php:85
2673
  msgid "Table info is empty."
2674
  msgstr ""
2675
 
2676
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2677
  msgid "You need to login in order to like this post: "
2678
  msgstr ""
2679
 
2680
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2681
  msgid "click here"
2682
  msgstr ""
2683
 
2684
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2685
  msgid "Like This"
2686
  msgstr ""
2687
 
lang/wp-ulike-km.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Khmer (http://www.transifex.com/projects/p/wp-ulike/language/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "សម្រាប់​ព័ត៌មាន​បន្ថែម:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "កំណត់​ហេតុ"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "ឈ្មោះ​អ្នក​ប្រើ"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "ស្ថានភាព"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "សកម្មភាព"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "សម្រាប់​ព័ត៌មាន​បន្ថែម:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2570,17 +2616,17 @@ msgid ""
2570
  msgstr ""
2571
 
2572
  #: build/wp-ulike/inc/frontend-ajax.php:42
2573
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2574
- #: inc/frontend-ajax.php:164
2575
  msgid "Error: This Method Is Not Exist!"
2576
  msgstr ""
2577
 
2578
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2579
- msgid "Notice: The likers box is refreshed only for logged in users!"
2580
  msgstr ""
2581
 
2582
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2583
- msgid "Notice: The likers box is not activated!"
2584
  msgstr ""
2585
 
2586
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2625,15 +2671,15 @@ msgstr ""
2625
  msgid "Table info is empty."
2626
  msgstr ""
2627
 
2628
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2629
  msgid "You need to login in order to like this post: "
2630
  msgstr ""
2631
 
2632
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2633
  msgid "click here"
2634
  msgstr ""
2635
 
2636
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2637
  #, fuzzy
2638
  msgid "Like This"
2639
  msgstr "ចូល​ចិត្ត​កម្មវិធី​បន្ថែម​នេះ​ទេ?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Khmer (http://www.transifex.com/projects/p/wp-ulike/language/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "សម្រាប់​ព័ត៌មាន​បន្ថែម:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "កំណត់​ហេតុ"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "សម្រាប់​ព័ត៌មាន​បន្ថែម:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "ឈ្មោះ​អ្នក​ប្រើ"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "ស្ថានភាព"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "សកម្មភាព"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2616
  msgstr ""
2617
 
2618
  #: build/wp-ulike/inc/frontend-ajax.php:42
2619
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2620
+ #: inc/frontend-ajax.php:170
2621
  msgid "Error: This Method Is Not Exist!"
2622
  msgstr ""
2623
 
2624
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2625
+ msgid "Notice: The likers box is not activated!"
2626
  msgstr ""
2627
 
2628
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2629
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2630
  msgstr ""
2631
 
2632
  #: build/wp-ulike/inc/general-functions.php:85
2671
  msgid "Table info is empty."
2672
  msgstr ""
2673
 
2674
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2675
  msgid "You need to login in order to like this post: "
2676
  msgstr ""
2677
 
2678
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2679
  msgid "click here"
2680
  msgstr ""
2681
 
2682
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2683
  #, fuzzy
2684
  msgid "Like This"
2685
  msgstr "ចូល​ចិត្ត​កម្មវិធី​បន្ថែម​នេះ​ទេ?"
lang/wp-ulike-lt_LT.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
9
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
10
  "Last-Translator: Alimir <info@alimir.ir>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/"
@@ -28,8 +28,8 @@ msgstr ""
28
  #: build/wp-ulike/admin/admin-ajax.php:76
29
  #: build/wp-ulike/admin/admin-ajax.php:82
30
  #: build/wp-ulike/inc/frontend-ajax.php:34
31
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
32
- #: inc/frontend-ajax.php:151
33
  msgid "Error: Something Wrong Happened!"
34
  msgstr ""
35
 
@@ -45,9 +45,9 @@ msgstr ""
45
  msgid "It's Ok!"
46
  msgstr ""
47
 
48
- #: admin/admin-functions.php:225
49
  #: admin/classes/class-wp-ulike-admin-panel.php:517
50
- #: build/wp-ulike/admin/admin-functions.php:228
51
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
52
  #, fuzzy
53
  msgid "Button"
@@ -75,44 +75,58 @@ msgstr ""
75
  msgid "Sure, I'd love to!"
76
  msgstr ""
77
 
78
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
79
  #: build/wp-ulike/admin/admin-hooks.php:142
80
- #: build/wp-ulike/admin/admin-hooks.php:204
81
  msgid "Not Now"
82
  msgstr ""
83
 
84
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
85
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
86
  #: build/wp-ulike/admin/admin-hooks.php:174
87
- #: build/wp-ulike/admin/admin-hooks.php:210
 
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
- msgid "Boost Your SEO by Using Schema Rich Snippets"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
98
- "Plugin which can manage +13 types of Schema Markups to make a better "
99
- "connection between your webpages and search engines. Now you can talk in "
100
- "search engine language and tell them which type of content you are promoting."
101
  msgstr ""
102
 
103
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
104
- #: build/wp-ulike/admin/admin-hooks.php:170
105
- #: build/wp-ulike/admin/admin-hooks.php:200
 
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Platesnei informacijai:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
- msgid "WP Ulike Pro is Ready :))"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
116
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
117
  "been released with some new features such as support for Dislike button, "
118
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -120,8 +134,8 @@ msgid ""
120
  "provide a full support for our users."
121
  msgstr ""
122
 
123
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
124
- #: build/wp-ulike/admin/admin-hooks.php:239
125
  #: build/wp-ulike/admin/includes/templates/about.php:29
126
  msgid "Go Pro"
127
  msgstr ""
@@ -137,30 +151,30 @@ msgid "No information was found in this database!"
137
  msgstr ""
138
 
139
  #: admin/classes/class-wp-ulike-admin-pages.php:27
140
- #: admin/includes/templates/posts-logs.php:39
141
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
142
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
143
  msgid "Post Likes Logs"
144
  msgstr ""
145
 
146
  #: admin/classes/class-wp-ulike-admin-pages.php:35
147
- #: admin/includes/templates/comments-logs.php:39
148
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
149
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
150
  msgid "Comment Likes Logs"
151
  msgstr ""
152
 
153
  #: admin/classes/class-wp-ulike-admin-pages.php:43
154
- #: admin/includes/templates/activities-logs.php:39
155
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
156
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
157
  msgid "Activity Likes Logs"
158
  msgstr ""
159
 
160
  #: admin/classes/class-wp-ulike-admin-pages.php:51
161
- #: admin/includes/templates/topics-logs.php:39
162
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
163
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
164
  msgid "Topics Likes Logs"
165
  msgstr ""
166
 
@@ -180,23 +194,23 @@ msgid "About"
180
  msgstr ""
181
 
182
  #: admin/classes/class-wp-ulike-admin-pages.php:133
183
- #: admin/includes/templates/activities-logs.php:42
184
- #: admin/includes/templates/activities-logs.php:119
185
- #: admin/includes/templates/comments-logs.php:42
186
- #: admin/includes/templates/comments-logs.php:129
187
- #: admin/includes/templates/posts-logs.php:42
188
- #: admin/includes/templates/posts-logs.php:118
189
- #: admin/includes/templates/topics-logs.php:42
190
- #: admin/includes/templates/topics-logs.php:118
191
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
199
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
200
  msgid "Logs"
201
  msgstr "Registras"
202
 
@@ -1027,16 +1041,16 @@ msgstr ""
1027
  msgid "Topics Stats"
1028
  msgstr ""
1029
 
1030
- #: admin/classes/class-wp-ulike-stats.php:274
1031
- #: admin/includes/templates/activities-logs.php:76
1032
- #: admin/includes/templates/comments-logs.php:81
1033
- #: admin/includes/templates/posts-logs.php:75
1034
- #: admin/includes/templates/topics-logs.php:75
1035
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1036
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1037
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1038
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1039
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1040
  msgid "Guest User"
1041
  msgstr ""
1042
 
@@ -1322,115 +1336,177 @@ msgstr ""
1322
  msgid "No data found! This is because there is still no data in your database."
1323
  msgstr ""
1324
 
1325
- #: admin/includes/templates/activities-logs.php:38
1326
- #: admin/includes/templates/comments-logs.php:38
1327
- #: admin/includes/templates/posts-logs.php:38
1328
- #: admin/includes/templates/topics-logs.php:38
1329
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1330
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1331
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1332
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1333
  msgid "WP ULike Logs"
1334
  msgstr ""
1335
 
1336
- #: admin/includes/templates/activities-logs.php:49
1337
- #: admin/includes/templates/comments-logs.php:49
1338
- #: admin/includes/templates/posts-logs.php:49
1339
- #: admin/includes/templates/topics-logs.php:49
1340
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1341
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1342
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1343
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1344
  msgid "ID"
1345
  msgstr "ID"
1346
 
1347
- #: admin/includes/templates/activities-logs.php:50
1348
- #: admin/includes/templates/comments-logs.php:50
1349
- #: admin/includes/templates/posts-logs.php:50
1350
- #: admin/includes/templates/topics-logs.php:50
1351
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1352
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1353
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1354
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1355
  msgid "Username"
1356
  msgstr "Vartotojo vardas"
1357
 
1358
- #: admin/includes/templates/activities-logs.php:51
1359
- #: admin/includes/templates/comments-logs.php:51
1360
- #: admin/includes/templates/posts-logs.php:51
1361
- #: admin/includes/templates/topics-logs.php:51
1362
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1363
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1364
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1365
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1366
  msgid "Status"
1367
  msgstr "Būsena"
1368
 
1369
- #: admin/includes/templates/activities-logs.php:52
1370
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1371
  msgid "Activity ID"
1372
  msgstr ""
1373
 
1374
- #: admin/includes/templates/activities-logs.php:53
1375
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1376
  msgid "Permalink"
1377
  msgstr ""
1378
 
1379
- #: admin/includes/templates/activities-logs.php:54
1380
- #: admin/includes/templates/comments-logs.php:55
1381
- #: admin/includes/templates/posts-logs.php:54
1382
- #: admin/includes/templates/topics-logs.php:54
1383
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1384
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1385
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1386
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1387
  msgid "Date / Time"
1388
  msgstr "Data / Laikas"
1389
 
1390
- #: admin/includes/templates/activities-logs.php:55
1391
- #: admin/includes/templates/comments-logs.php:56
1392
- #: admin/includes/templates/posts-logs.php:55
1393
- #: admin/includes/templates/topics-logs.php:55
1394
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1395
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1396
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1397
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1398
  msgid "IP"
1399
  msgstr "IP"
1400
 
1401
- #: admin/includes/templates/activities-logs.php:56
1402
- #: admin/includes/templates/comments-logs.php:57
1403
- #: admin/includes/templates/posts-logs.php:56
1404
- #: admin/includes/templates/topics-logs.php:56
1405
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1406
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1407
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1408
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1409
  msgid "Actions"
1410
  msgstr "Veiksmai"
1411
 
1412
- #: admin/includes/templates/activities-logs.php:92
1413
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1414
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1415
  msgstr ""
1416
 
1417
- #: admin/includes/templates/comments-logs.php:52
1418
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1419
  msgid "Comment ID"
1420
  msgstr ""
1421
 
1422
- #: admin/includes/templates/comments-logs.php:53
1423
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1424
  msgid "Comment Author"
1425
  msgstr ""
1426
 
1427
- #: admin/includes/templates/comments-logs.php:54
1428
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1429
  msgid "Comment Text"
1430
  msgstr ""
1431
 
1432
- #: admin/includes/templates/comments-logs.php:63
1433
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1434
  msgid "Not Found!"
1435
  msgstr ""
1436
 
@@ -1440,61 +1516,31 @@ msgstr ""
1440
  msgid "WP ULike Premium"
1441
  msgstr "WP ULike Nustatymai"
1442
 
1443
- #: admin/includes/templates/go-pro.php:22
1444
- #: admin/includes/templates/statistics.php:48
1445
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1446
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1447
- msgid "Buy WP ULike Premium"
1448
- msgstr ""
1449
-
1450
- #: admin/includes/templates/go-pro.php:28
1451
- #: admin/includes/templates/statistics.php:53
1452
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1453
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1454
- #, fuzzy
1455
- msgid "More information"
1456
- msgstr "Platesnei informacijai:"
1457
-
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1462
  "ULike PRO plugin we fully support this page builder and have a variety of "
1463
  "widgets & controllers that make life much easier for you."
1464
  msgstr ""
1465
 
1466
- #: admin/includes/templates/go-pro.php:114
1467
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1468
  msgid ""
1469
  "Just drag your desired widget and drop it in your Elementor sections, "
1470
  "customize as you go and enjoy your like and dislike buttons on your contents."
1471
  msgstr ""
1472
 
1473
- #: admin/includes/templates/posts-logs.php:52
1474
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1475
  msgid "Post ID"
1476
  msgstr ""
1477
 
1478
- #: admin/includes/templates/posts-logs.php:53
1479
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1480
  msgid "Post Title"
1481
  msgstr ""
1482
 
1483
- #: admin/includes/templates/statistics.php:45
1484
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1485
- msgid "Check Votings, Best Likers & Top contents"
1486
- msgstr ""
1487
-
1488
- #: admin/includes/templates/statistics.php:47
1489
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1490
- msgid ""
1491
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1492
- "users love and what annoys them in an instance. You can extract reports of "
1493
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1494
- "dateRange picker and status selector controllers, no confusing options and "
1495
- "coding needed."
1496
- msgstr ""
1497
-
1498
  #: admin/includes/templates/statistics.php:76
1499
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1500
  msgid "Total"
@@ -1543,13 +1589,13 @@ msgstr ""
1543
  msgid "Top"
1544
  msgstr ""
1545
 
1546
- #: admin/includes/templates/topics-logs.php:52
1547
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1548
  msgid "Topic ID"
1549
  msgstr ""
1550
 
1551
- #: admin/includes/templates/topics-logs.php:53
1552
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1553
  msgid "Topic Title"
1554
  msgstr ""
1555
 
@@ -1669,48 +1715,48 @@ msgstr ""
1669
  msgid "Are you sure to reset all options?"
1670
  msgstr ""
1671
 
1672
- #: admin/settings/classes/setup.class.php:429
1673
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1674
  msgid "Are you sure?"
1675
  msgstr ""
1676
 
1677
- #: admin/settings/classes/setup.class.php:430
1678
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1679
  msgid "Restoring options."
1680
  msgstr ""
1681
 
1682
- #: admin/settings/classes/setup.class.php:431
1683
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1684
  msgid "Importing options."
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:434
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1689
  msgid "Please enter %s or more characters"
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:435
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1694
  msgid "Searching..."
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:436
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1699
  msgid "No results match"
1700
  msgstr ""
1701
 
1702
- #: admin/settings/classes/setup.class.php:507
1703
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1704
  msgid "Ooops! This field type (%s) can not be used here, yet."
1705
  msgstr ""
1706
 
1707
- #: admin/settings/classes/setup.class.php:570
1708
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1709
  msgid "This field class is not available!"
1710
  msgstr ""
1711
 
1712
- #: admin/settings/classes/setup.class.php:574
1713
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1714
  msgid "This type is not found!"
1715
  msgstr ""
1716
 
@@ -2579,17 +2625,17 @@ msgid ""
2579
  msgstr ""
2580
 
2581
  #: build/wp-ulike/inc/frontend-ajax.php:42
2582
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2583
- #: inc/frontend-ajax.php:164
2584
  msgid "Error: This Method Is Not Exist!"
2585
  msgstr ""
2586
 
2587
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2588
- msgid "Notice: The likers box is refreshed only for logged in users!"
2589
  msgstr ""
2590
 
2591
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2592
- msgid "Notice: The likers box is not activated!"
2593
  msgstr ""
2594
 
2595
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2634,15 +2680,15 @@ msgstr ""
2634
  msgid "Table info is empty."
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2638
  msgid "You need to login in order to like this post: "
2639
  msgstr ""
2640
 
2641
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2642
  msgid "click here"
2643
  msgstr ""
2644
 
2645
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2646
  #, fuzzy
2647
  msgid "Like This"
2648
  msgstr "WP ULike"
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
9
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
10
  "Last-Translator: Alimir <info@alimir.ir>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/"
28
  #: build/wp-ulike/admin/admin-ajax.php:76
29
  #: build/wp-ulike/admin/admin-ajax.php:82
30
  #: build/wp-ulike/inc/frontend-ajax.php:34
31
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
32
+ #: inc/frontend-ajax.php:152
33
  msgid "Error: Something Wrong Happened!"
34
  msgstr ""
35
 
45
  msgid "It's Ok!"
46
  msgstr ""
47
 
48
+ #: admin/admin-functions.php:231
49
  #: admin/classes/class-wp-ulike-admin-panel.php:517
50
+ #: build/wp-ulike/admin/admin-functions.php:234
51
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
52
  #, fuzzy
53
  msgid "Button"
75
  msgid "Sure, I'd love to!"
76
  msgstr ""
77
 
78
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
79
  #: build/wp-ulike/admin/admin-hooks.php:142
80
+ #: build/wp-ulike/admin/admin-hooks.php:227
81
  msgid "Not Now"
82
  msgstr ""
83
 
84
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
85
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
86
+ #: build/wp-ulike/admin/admin-hooks.php:148
87
  #: build/wp-ulike/admin/admin-hooks.php:174
88
+ #: build/wp-ulike/admin/admin-hooks.php:197
89
+ #: build/wp-ulike/admin/admin-hooks.php:233
90
  msgid "No thanks and never ask me again"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
94
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
95
  msgstr ""
96
 
97
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
98
  msgid ""
99
+ "Having votes for your content without a tool for measuring the results is "
100
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
101
+ "data in the WP ULike professional Logs panel."
 
102
  msgstr ""
103
 
104
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
105
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
106
+ #: build/wp-ulike/admin/admin-hooks.php:193
107
+ #: build/wp-ulike/admin/admin-hooks.php:223
108
  #, fuzzy
109
  msgid "Get More Information"
110
  msgstr "Platesnei informacijai:"
111
 
112
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
113
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
114
  msgstr ""
115
 
116
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
117
  msgid ""
118
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
119
+ "Plugin which can manage +13 types of Schema Markups to make a better "
120
+ "connection between your webpages and search engines. Now you can talk in "
121
+ "search engine language and tell them which type of content you are promoting."
122
+ msgstr ""
123
+
124
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
125
+ msgid "WP Ulike Pro is Ready :))"
126
+ msgstr ""
127
+
128
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
129
+ msgid ""
130
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
131
  "been released with some new features such as support for Dislike button, "
132
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
134
  "provide a full support for our users."
135
  msgstr ""
136
 
137
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
138
+ #: build/wp-ulike/admin/admin-hooks.php:262
139
  #: build/wp-ulike/admin/includes/templates/about.php:29
140
  msgid "Go Pro"
141
  msgstr ""
151
  msgstr ""
152
 
153
  #: admin/classes/class-wp-ulike-admin-pages.php:27
154
+ #: admin/includes/templates/posts-logs.php:61
155
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
156
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
157
  msgid "Post Likes Logs"
158
  msgstr ""
159
 
160
  #: admin/classes/class-wp-ulike-admin-pages.php:35
161
+ #: admin/includes/templates/comments-logs.php:61
162
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
163
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
164
  msgid "Comment Likes Logs"
165
  msgstr ""
166
 
167
  #: admin/classes/class-wp-ulike-admin-pages.php:43
168
+ #: admin/includes/templates/activities-logs.php:61
169
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
170
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
171
  msgid "Activity Likes Logs"
172
  msgstr ""
173
 
174
  #: admin/classes/class-wp-ulike-admin-pages.php:51
175
+ #: admin/includes/templates/topics-logs.php:61
176
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
177
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
178
  msgid "Topics Likes Logs"
179
  msgstr ""
180
 
194
  msgstr ""
195
 
196
  #: admin/classes/class-wp-ulike-admin-pages.php:133
197
+ #: admin/includes/templates/activities-logs.php:64
198
+ #: admin/includes/templates/activities-logs.php:141
199
+ #: admin/includes/templates/comments-logs.php:64
200
+ #: admin/includes/templates/comments-logs.php:151
201
+ #: admin/includes/templates/posts-logs.php:64
202
+ #: admin/includes/templates/posts-logs.php:140
203
+ #: admin/includes/templates/topics-logs.php:64
204
+ #: admin/includes/templates/topics-logs.php:140
205
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
213
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
214
  msgid "Logs"
215
  msgstr "Registras"
216
 
1041
  msgid "Topics Stats"
1042
  msgstr ""
1043
 
1044
+ #: admin/classes/class-wp-ulike-stats.php:273
1045
+ #: admin/includes/templates/activities-logs.php:98
1046
+ #: admin/includes/templates/comments-logs.php:103
1047
+ #: admin/includes/templates/posts-logs.php:97
1048
+ #: admin/includes/templates/topics-logs.php:97
1049
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1050
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1051
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1052
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1053
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1054
  msgid "Guest User"
1055
  msgstr ""
1056
 
1336
  msgid "No data found! This is because there is still no data in your database."
1337
  msgstr ""
1338
 
1339
+ #: admin/includes/templates/activities-logs.php:40
1340
+ #: admin/includes/templates/comments-logs.php:40
1341
+ #: admin/includes/templates/posts-logs.php:40
1342
+ #: admin/includes/templates/statistics.php:45
1343
+ #: admin/includes/templates/topics-logs.php:40
1344
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1345
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1346
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1347
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1348
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1349
+ msgid "Check Votings, Best Likers & Top contents"
1350
+ msgstr ""
1351
+
1352
+ #: admin/includes/templates/activities-logs.php:42
1353
+ #: admin/includes/templates/comments-logs.php:42
1354
+ #: admin/includes/templates/posts-logs.php:42
1355
+ #: admin/includes/templates/statistics.php:47
1356
+ #: admin/includes/templates/topics-logs.php:42
1357
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1358
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1359
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1360
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1361
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1362
+ msgid ""
1363
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1364
+ "users love and what annoys them in an instance. You can extract reports of "
1365
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1366
+ "dateRange picker and status selector controllers, no confusing options and "
1367
+ "coding needed."
1368
+ msgstr ""
1369
+
1370
+ #: admin/includes/templates/activities-logs.php:43
1371
+ #: admin/includes/templates/comments-logs.php:43
1372
+ #: admin/includes/templates/go-pro.php:22
1373
+ #: admin/includes/templates/posts-logs.php:43
1374
+ #: admin/includes/templates/statistics.php:48
1375
+ #: admin/includes/templates/topics-logs.php:43
1376
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1377
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1378
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1379
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1380
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1381
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1382
+ msgid "Buy WP ULike Premium"
1383
+ msgstr ""
1384
+
1385
+ #: admin/includes/templates/activities-logs.php:48
1386
+ #: admin/includes/templates/comments-logs.php:48
1387
+ #: admin/includes/templates/go-pro.php:28
1388
+ #: admin/includes/templates/posts-logs.php:48
1389
+ #: admin/includes/templates/statistics.php:53
1390
+ #: admin/includes/templates/topics-logs.php:48
1391
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1392
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1393
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1394
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1395
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1396
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1397
+ #, fuzzy
1398
+ msgid "More information"
1399
+ msgstr "Platesnei informacijai:"
1400
+
1401
+ #: admin/includes/templates/activities-logs.php:60
1402
+ #: admin/includes/templates/comments-logs.php:60
1403
+ #: admin/includes/templates/posts-logs.php:60
1404
+ #: admin/includes/templates/topics-logs.php:60
1405
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1406
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1407
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1408
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1409
  msgid "WP ULike Logs"
1410
  msgstr ""
1411
 
1412
+ #: admin/includes/templates/activities-logs.php:71
1413
+ #: admin/includes/templates/comments-logs.php:71
1414
+ #: admin/includes/templates/posts-logs.php:71
1415
+ #: admin/includes/templates/topics-logs.php:71
1416
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1417
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1418
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1419
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1420
  msgid "ID"
1421
  msgstr "ID"
1422
 
1423
+ #: admin/includes/templates/activities-logs.php:72
1424
+ #: admin/includes/templates/comments-logs.php:72
1425
+ #: admin/includes/templates/posts-logs.php:72
1426
+ #: admin/includes/templates/topics-logs.php:72
1427
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1428
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1429
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1430
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1431
  msgid "Username"
1432
  msgstr "Vartotojo vardas"
1433
 
1434
+ #: admin/includes/templates/activities-logs.php:73
1435
+ #: admin/includes/templates/comments-logs.php:73
1436
+ #: admin/includes/templates/posts-logs.php:73
1437
+ #: admin/includes/templates/topics-logs.php:73
1438
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1439
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1440
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1441
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1442
  msgid "Status"
1443
  msgstr "Būsena"
1444
 
1445
+ #: admin/includes/templates/activities-logs.php:74
1446
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1447
  msgid "Activity ID"
1448
  msgstr ""
1449
 
1450
+ #: admin/includes/templates/activities-logs.php:75
1451
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1452
  msgid "Permalink"
1453
  msgstr ""
1454
 
1455
+ #: admin/includes/templates/activities-logs.php:76
1456
+ #: admin/includes/templates/comments-logs.php:77
1457
+ #: admin/includes/templates/posts-logs.php:76
1458
+ #: admin/includes/templates/topics-logs.php:76
1459
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1460
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1461
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1462
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1463
  msgid "Date / Time"
1464
  msgstr "Data / Laikas"
1465
 
1466
+ #: admin/includes/templates/activities-logs.php:77
1467
+ #: admin/includes/templates/comments-logs.php:78
1468
+ #: admin/includes/templates/posts-logs.php:77
1469
+ #: admin/includes/templates/topics-logs.php:77
1470
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1471
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1472
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1473
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1474
  msgid "IP"
1475
  msgstr "IP"
1476
 
1477
+ #: admin/includes/templates/activities-logs.php:78
1478
+ #: admin/includes/templates/comments-logs.php:79
1479
+ #: admin/includes/templates/posts-logs.php:78
1480
+ #: admin/includes/templates/topics-logs.php:78
1481
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1482
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1483
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1484
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1485
  msgid "Actions"
1486
  msgstr "Veiksmai"
1487
 
1488
+ #: admin/includes/templates/activities-logs.php:114
1489
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1490
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1491
  msgstr ""
1492
 
1493
+ #: admin/includes/templates/comments-logs.php:74
1494
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1495
  msgid "Comment ID"
1496
  msgstr ""
1497
 
1498
+ #: admin/includes/templates/comments-logs.php:75
1499
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1500
  msgid "Comment Author"
1501
  msgstr ""
1502
 
1503
+ #: admin/includes/templates/comments-logs.php:76
1504
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1505
  msgid "Comment Text"
1506
  msgstr ""
1507
 
1508
+ #: admin/includes/templates/comments-logs.php:85
1509
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1510
  msgid "Not Found!"
1511
  msgstr ""
1512
 
1516
  msgid "WP ULike Premium"
1517
  msgstr "WP ULike Nustatymai"
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1521
  msgid ""
1522
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1523
  "ULike PRO plugin we fully support this page builder and have a variety of "
1524
  "widgets & controllers that make life much easier for you."
1525
  msgstr ""
1526
 
1527
+ #: admin/includes/templates/go-pro.php:119
1528
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1529
  msgid ""
1530
  "Just drag your desired widget and drop it in your Elementor sections, "
1531
  "customize as you go and enjoy your like and dislike buttons on your contents."
1532
  msgstr ""
1533
 
1534
+ #: admin/includes/templates/posts-logs.php:74
1535
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1536
  msgid "Post ID"
1537
  msgstr ""
1538
 
1539
+ #: admin/includes/templates/posts-logs.php:75
1540
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1541
  msgid "Post Title"
1542
  msgstr ""
1543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1544
  #: admin/includes/templates/statistics.php:76
1545
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1546
  msgid "Total"
1589
  msgid "Top"
1590
  msgstr ""
1591
 
1592
+ #: admin/includes/templates/topics-logs.php:74
1593
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1594
  msgid "Topic ID"
1595
  msgstr ""
1596
 
1597
+ #: admin/includes/templates/topics-logs.php:75
1598
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1599
  msgid "Topic Title"
1600
  msgstr ""
1601
 
1715
  msgid "Are you sure to reset all options?"
1716
  msgstr ""
1717
 
1718
+ #: admin/settings/classes/setup.class.php:436
1719
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1720
  msgid "Are you sure?"
1721
  msgstr ""
1722
 
1723
+ #: admin/settings/classes/setup.class.php:437
1724
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1725
  msgid "Restoring options."
1726
  msgstr ""
1727
 
1728
+ #: admin/settings/classes/setup.class.php:438
1729
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1730
  msgid "Importing options."
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:441
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1735
  msgid "Please enter %s or more characters"
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:442
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1740
  msgid "Searching..."
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:443
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1745
  msgid "No results match"
1746
  msgstr ""
1747
 
1748
+ #: admin/settings/classes/setup.class.php:514
1749
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1750
  msgid "Ooops! This field type (%s) can not be used here, yet."
1751
  msgstr ""
1752
 
1753
+ #: admin/settings/classes/setup.class.php:577
1754
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1755
  msgid "This field class is not available!"
1756
  msgstr ""
1757
 
1758
+ #: admin/settings/classes/setup.class.php:581
1759
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1760
  msgid "This type is not found!"
1761
  msgstr ""
1762
 
2625
  msgstr ""
2626
 
2627
  #: build/wp-ulike/inc/frontend-ajax.php:42
2628
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2629
+ #: inc/frontend-ajax.php:170
2630
  msgid "Error: This Method Is Not Exist!"
2631
  msgstr ""
2632
 
2633
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2634
+ msgid "Notice: The likers box is not activated!"
2635
  msgstr ""
2636
 
2637
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2638
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2639
  msgstr ""
2640
 
2641
  #: build/wp-ulike/inc/general-functions.php:85
2680
  msgid "Table info is empty."
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2684
  msgid "You need to login in order to like this post: "
2685
  msgstr ""
2686
 
2687
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2688
  msgid "click here"
2689
  msgstr ""
2690
 
2691
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2692
  #, fuzzy
2693
  msgid "Like This"
2694
  msgstr "WP ULike"
lang/wp-ulike-nl_NL.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
9
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
10
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/wp-translations/"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "Voor meer informatie:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr "Berichten likes log"
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr "Reactie likes log"
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr "Evenementen likes log"
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr "Over"
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Logboeken"
199
 
@@ -1036,16 +1050,16 @@ msgstr "Evenementen likes log"
1036
  msgid "Topics Stats"
1037
  msgstr ""
1038
 
1039
- #: admin/classes/class-wp-ulike-stats.php:274
1040
- #: admin/includes/templates/activities-logs.php:76
1041
- #: admin/includes/templates/comments-logs.php:81
1042
- #: admin/includes/templates/posts-logs.php:75
1043
- #: admin/includes/templates/topics-logs.php:75
1044
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1045
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1046
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1047
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1048
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1049
  msgid "Guest User"
1050
  msgstr ""
1051
 
@@ -1333,115 +1347,177 @@ msgstr "Projectleider en ontwikkelaar"
1333
  msgid "No data found! This is because there is still no data in your database."
1334
  msgstr ""
1335
 
1336
- #: admin/includes/templates/activities-logs.php:38
1337
- #: admin/includes/templates/comments-logs.php:38
1338
- #: admin/includes/templates/posts-logs.php:38
1339
- #: admin/includes/templates/topics-logs.php:38
1340
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1341
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1342
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1343
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1344
  msgid "WP ULike Logs"
1345
  msgstr "WP ULike log"
1346
 
1347
- #: admin/includes/templates/activities-logs.php:49
1348
- #: admin/includes/templates/comments-logs.php:49
1349
- #: admin/includes/templates/posts-logs.php:49
1350
- #: admin/includes/templates/topics-logs.php:49
1351
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1352
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1353
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1354
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1355
  msgid "ID"
1356
  msgstr "ID"
1357
 
1358
- #: admin/includes/templates/activities-logs.php:50
1359
- #: admin/includes/templates/comments-logs.php:50
1360
- #: admin/includes/templates/posts-logs.php:50
1361
- #: admin/includes/templates/topics-logs.php:50
1362
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1363
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1364
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1365
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1366
  msgid "Username"
1367
  msgstr "Gebruikersnaam"
1368
 
1369
- #: admin/includes/templates/activities-logs.php:51
1370
- #: admin/includes/templates/comments-logs.php:51
1371
- #: admin/includes/templates/posts-logs.php:51
1372
- #: admin/includes/templates/topics-logs.php:51
1373
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1374
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1375
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1377
  msgid "Status"
1378
  msgstr "Status"
1379
 
1380
- #: admin/includes/templates/activities-logs.php:52
1381
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1382
  msgid "Activity ID"
1383
  msgstr "Evenementen ID"
1384
 
1385
- #: admin/includes/templates/activities-logs.php:53
1386
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1387
  msgid "Permalink"
1388
  msgstr "Permalink"
1389
 
1390
- #: admin/includes/templates/activities-logs.php:54
1391
- #: admin/includes/templates/comments-logs.php:55
1392
- #: admin/includes/templates/posts-logs.php:54
1393
- #: admin/includes/templates/topics-logs.php:54
1394
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1395
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1396
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1397
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1398
  msgid "Date / Time"
1399
  msgstr "Datum & tijd"
1400
 
1401
- #: admin/includes/templates/activities-logs.php:55
1402
- #: admin/includes/templates/comments-logs.php:56
1403
- #: admin/includes/templates/posts-logs.php:55
1404
- #: admin/includes/templates/topics-logs.php:55
1405
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1406
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1407
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1408
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1409
  msgid "IP"
1410
  msgstr "IP"
1411
 
1412
- #: admin/includes/templates/activities-logs.php:56
1413
- #: admin/includes/templates/comments-logs.php:57
1414
- #: admin/includes/templates/posts-logs.php:56
1415
- #: admin/includes/templates/topics-logs.php:56
1416
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1417
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1418
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1419
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1420
  msgid "Actions"
1421
  msgstr "Acties"
1422
 
1423
- #: admin/includes/templates/activities-logs.php:92
1424
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1425
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1426
  msgstr ""
1427
 
1428
- #: admin/includes/templates/comments-logs.php:52
1429
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1430
  msgid "Comment ID"
1431
  msgstr "Reactie ID"
1432
 
1433
- #: admin/includes/templates/comments-logs.php:53
1434
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1435
  msgid "Comment Author"
1436
  msgstr "Reactie auteur"
1437
 
1438
- #: admin/includes/templates/comments-logs.php:54
1439
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1440
  msgid "Comment Text"
1441
  msgstr ""
1442
 
1443
- #: admin/includes/templates/comments-logs.php:63
1444
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1445
  msgid "Not Found!"
1446
  msgstr ""
1447
 
@@ -1451,61 +1527,31 @@ msgstr ""
1451
  msgid "WP ULike Premium"
1452
  msgstr "WP ULike Instellingen"
1453
 
1454
- #: admin/includes/templates/go-pro.php:22
1455
- #: admin/includes/templates/statistics.php:48
1456
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1457
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1458
- msgid "Buy WP ULike Premium"
1459
- msgstr ""
1460
-
1461
- #: admin/includes/templates/go-pro.php:28
1462
- #: admin/includes/templates/statistics.php:53
1463
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1464
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1465
- #, fuzzy
1466
- msgid "More information"
1467
- msgstr "Voor meer informatie:"
1468
-
1469
- #: admin/includes/templates/go-pro.php:114
1470
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1471
  msgid ""
1472
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1473
  "ULike PRO plugin we fully support this page builder and have a variety of "
1474
  "widgets & controllers that make life much easier for you."
1475
  msgstr ""
1476
 
1477
- #: admin/includes/templates/go-pro.php:114
1478
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1479
  msgid ""
1480
  "Just drag your desired widget and drop it in your Elementor sections, "
1481
  "customize as you go and enjoy your like and dislike buttons on your contents."
1482
  msgstr ""
1483
 
1484
- #: admin/includes/templates/posts-logs.php:52
1485
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1486
  msgid "Post ID"
1487
  msgstr "Berichten ID"
1488
 
1489
- #: admin/includes/templates/posts-logs.php:53
1490
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1491
  msgid "Post Title"
1492
  msgstr "Titel bericht"
1493
 
1494
- #: admin/includes/templates/statistics.php:45
1495
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1496
- msgid "Check Votings, Best Likers & Top contents"
1497
- msgstr ""
1498
-
1499
- #: admin/includes/templates/statistics.php:47
1500
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1501
- msgid ""
1502
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1503
- "users love and what annoys them in an instance. You can extract reports of "
1504
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1505
- "dateRange picker and status selector controllers, no confusing options and "
1506
- "coding needed."
1507
- msgstr ""
1508
-
1509
  #: admin/includes/templates/statistics.php:76
1510
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1511
  msgid "Total"
@@ -1557,13 +1603,13 @@ msgstr ""
1557
  msgid "Top"
1558
  msgstr "Tooltip"
1559
 
1560
- #: admin/includes/templates/topics-logs.php:52
1561
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1562
  msgid "Topic ID"
1563
  msgstr ""
1564
 
1565
- #: admin/includes/templates/topics-logs.php:53
1566
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1567
  msgid "Topic Title"
1568
  msgstr ""
1569
 
@@ -1684,49 +1730,49 @@ msgstr ""
1684
  msgid "Are you sure to reset all options?"
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:429
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1689
  msgid "Are you sure?"
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:430
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1694
  msgid "Restoring options."
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:431
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1699
  #, fuzzy
1700
  msgid "Importing options."
1701
  msgstr "Sorteer opties:"
1702
 
1703
- #: admin/settings/classes/setup.class.php:434
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1705
  msgid "Please enter %s or more characters"
1706
  msgstr ""
1707
 
1708
- #: admin/settings/classes/setup.class.php:435
1709
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1710
  msgid "Searching..."
1711
  msgstr ""
1712
 
1713
- #: admin/settings/classes/setup.class.php:436
1714
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1715
  msgid "No results match"
1716
  msgstr ""
1717
 
1718
- #: admin/settings/classes/setup.class.php:507
1719
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1720
  msgid "Ooops! This field type (%s) can not be used here, yet."
1721
  msgstr ""
1722
 
1723
- #: admin/settings/classes/setup.class.php:570
1724
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1725
  msgid "This field class is not available!"
1726
  msgstr ""
1727
 
1728
- #: admin/settings/classes/setup.class.php:574
1729
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1730
  msgid "This type is not found!"
1731
  msgstr ""
1732
 
@@ -2603,17 +2649,17 @@ msgid ""
2603
  msgstr ""
2604
 
2605
  #: build/wp-ulike/inc/frontend-ajax.php:42
2606
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2607
- #: inc/frontend-ajax.php:164
2608
  msgid "Error: This Method Is Not Exist!"
2609
  msgstr ""
2610
 
2611
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2612
- msgid "Notice: The likers box is refreshed only for logged in users!"
2613
  msgstr ""
2614
 
2615
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2616
- msgid "Notice: The likers box is not activated!"
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2659,15 +2705,15 @@ msgstr ""
2659
  msgid "Table info is empty."
2660
  msgstr ""
2661
 
2662
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2663
  msgid "You need to login in order to like this post: "
2664
  msgstr "Je moet inloggen om dit bericht leuk te vinden:"
2665
 
2666
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2667
  msgid "click here"
2668
  msgstr "klik hier"
2669
 
2670
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2671
  #, fuzzy
2672
  msgid "Like This"
2673
  msgstr "Vind ik leuk"
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
9
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
10
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
11
  "Language-Team: Dutch (Netherlands) (http://www.transifex.com/wp-translations/"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Voor meer informatie:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr "Berichten likes log"
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr "Reactie likes log"
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr "Evenementen likes log"
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
191
  msgstr "Over"
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Logboeken"
213
 
1050
  msgid "Topics Stats"
1051
  msgstr ""
1052
 
1053
+ #: admin/classes/class-wp-ulike-stats.php:273
1054
+ #: admin/includes/templates/activities-logs.php:98
1055
+ #: admin/includes/templates/comments-logs.php:103
1056
+ #: admin/includes/templates/posts-logs.php:97
1057
+ #: admin/includes/templates/topics-logs.php:97
1058
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1059
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1060
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1061
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1062
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1063
  msgid "Guest User"
1064
  msgstr ""
1065
 
1347
  msgid "No data found! This is because there is still no data in your database."
1348
  msgstr ""
1349
 
1350
+ #: admin/includes/templates/activities-logs.php:40
1351
+ #: admin/includes/templates/comments-logs.php:40
1352
+ #: admin/includes/templates/posts-logs.php:40
1353
+ #: admin/includes/templates/statistics.php:45
1354
+ #: admin/includes/templates/topics-logs.php:40
1355
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1356
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1357
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1358
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1359
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1360
+ msgid "Check Votings, Best Likers & Top contents"
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:42
1364
+ #: admin/includes/templates/comments-logs.php:42
1365
+ #: admin/includes/templates/posts-logs.php:42
1366
+ #: admin/includes/templates/statistics.php:47
1367
+ #: admin/includes/templates/topics-logs.php:42
1368
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1369
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1370
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1371
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1372
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1373
+ msgid ""
1374
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1375
+ "users love and what annoys them in an instance. You can extract reports of "
1376
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1377
+ "dateRange picker and status selector controllers, no confusing options and "
1378
+ "coding needed."
1379
+ msgstr ""
1380
+
1381
+ #: admin/includes/templates/activities-logs.php:43
1382
+ #: admin/includes/templates/comments-logs.php:43
1383
+ #: admin/includes/templates/go-pro.php:22
1384
+ #: admin/includes/templates/posts-logs.php:43
1385
+ #: admin/includes/templates/statistics.php:48
1386
+ #: admin/includes/templates/topics-logs.php:43
1387
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1388
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1389
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1390
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1391
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1392
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1393
+ msgid "Buy WP ULike Premium"
1394
+ msgstr ""
1395
+
1396
+ #: admin/includes/templates/activities-logs.php:48
1397
+ #: admin/includes/templates/comments-logs.php:48
1398
+ #: admin/includes/templates/go-pro.php:28
1399
+ #: admin/includes/templates/posts-logs.php:48
1400
+ #: admin/includes/templates/statistics.php:53
1401
+ #: admin/includes/templates/topics-logs.php:48
1402
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1403
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1404
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1405
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1406
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1407
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1408
+ #, fuzzy
1409
+ msgid "More information"
1410
+ msgstr "Voor meer informatie:"
1411
+
1412
+ #: admin/includes/templates/activities-logs.php:60
1413
+ #: admin/includes/templates/comments-logs.php:60
1414
+ #: admin/includes/templates/posts-logs.php:60
1415
+ #: admin/includes/templates/topics-logs.php:60
1416
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1417
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1418
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1419
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1420
  msgid "WP ULike Logs"
1421
  msgstr "WP ULike log"
1422
 
1423
+ #: admin/includes/templates/activities-logs.php:71
1424
+ #: admin/includes/templates/comments-logs.php:71
1425
+ #: admin/includes/templates/posts-logs.php:71
1426
+ #: admin/includes/templates/topics-logs.php:71
1427
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1428
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1429
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1430
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1431
  msgid "ID"
1432
  msgstr "ID"
1433
 
1434
+ #: admin/includes/templates/activities-logs.php:72
1435
+ #: admin/includes/templates/comments-logs.php:72
1436
+ #: admin/includes/templates/posts-logs.php:72
1437
+ #: admin/includes/templates/topics-logs.php:72
1438
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1439
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1440
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1441
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1442
  msgid "Username"
1443
  msgstr "Gebruikersnaam"
1444
 
1445
+ #: admin/includes/templates/activities-logs.php:73
1446
+ #: admin/includes/templates/comments-logs.php:73
1447
+ #: admin/includes/templates/posts-logs.php:73
1448
+ #: admin/includes/templates/topics-logs.php:73
1449
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1450
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1451
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1453
  msgid "Status"
1454
  msgstr "Status"
1455
 
1456
+ #: admin/includes/templates/activities-logs.php:74
1457
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1458
  msgid "Activity ID"
1459
  msgstr "Evenementen ID"
1460
 
1461
+ #: admin/includes/templates/activities-logs.php:75
1462
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1463
  msgid "Permalink"
1464
  msgstr "Permalink"
1465
 
1466
+ #: admin/includes/templates/activities-logs.php:76
1467
+ #: admin/includes/templates/comments-logs.php:77
1468
+ #: admin/includes/templates/posts-logs.php:76
1469
+ #: admin/includes/templates/topics-logs.php:76
1470
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1471
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1472
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1473
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1474
  msgid "Date / Time"
1475
  msgstr "Datum & tijd"
1476
 
1477
+ #: admin/includes/templates/activities-logs.php:77
1478
+ #: admin/includes/templates/comments-logs.php:78
1479
+ #: admin/includes/templates/posts-logs.php:77
1480
+ #: admin/includes/templates/topics-logs.php:77
1481
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1482
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1483
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1484
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1485
  msgid "IP"
1486
  msgstr "IP"
1487
 
1488
+ #: admin/includes/templates/activities-logs.php:78
1489
+ #: admin/includes/templates/comments-logs.php:79
1490
+ #: admin/includes/templates/posts-logs.php:78
1491
+ #: admin/includes/templates/topics-logs.php:78
1492
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1493
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1494
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1495
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1496
  msgid "Actions"
1497
  msgstr "Acties"
1498
 
1499
+ #: admin/includes/templates/activities-logs.php:114
1500
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1501
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1502
  msgstr ""
1503
 
1504
+ #: admin/includes/templates/comments-logs.php:74
1505
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1506
  msgid "Comment ID"
1507
  msgstr "Reactie ID"
1508
 
1509
+ #: admin/includes/templates/comments-logs.php:75
1510
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1511
  msgid "Comment Author"
1512
  msgstr "Reactie auteur"
1513
 
1514
+ #: admin/includes/templates/comments-logs.php:76
1515
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1516
  msgid "Comment Text"
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/comments-logs.php:85
1520
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1521
  msgid "Not Found!"
1522
  msgstr ""
1523
 
1527
  msgid "WP ULike Premium"
1528
  msgstr "WP ULike Instellingen"
1529
 
1530
+ #: admin/includes/templates/go-pro.php:119
1531
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1532
  msgid ""
1533
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1534
  "ULike PRO plugin we fully support this page builder and have a variety of "
1535
  "widgets & controllers that make life much easier for you."
1536
  msgstr ""
1537
 
1538
+ #: admin/includes/templates/go-pro.php:119
1539
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1540
  msgid ""
1541
  "Just drag your desired widget and drop it in your Elementor sections, "
1542
  "customize as you go and enjoy your like and dislike buttons on your contents."
1543
  msgstr ""
1544
 
1545
+ #: admin/includes/templates/posts-logs.php:74
1546
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1547
  msgid "Post ID"
1548
  msgstr "Berichten ID"
1549
 
1550
+ #: admin/includes/templates/posts-logs.php:75
1551
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1552
  msgid "Post Title"
1553
  msgstr "Titel bericht"
1554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1555
  #: admin/includes/templates/statistics.php:76
1556
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1557
  msgid "Total"
1603
  msgid "Top"
1604
  msgstr "Tooltip"
1605
 
1606
+ #: admin/includes/templates/topics-logs.php:74
1607
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1608
  msgid "Topic ID"
1609
  msgstr ""
1610
 
1611
+ #: admin/includes/templates/topics-logs.php:75
1612
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1613
  msgid "Topic Title"
1614
  msgstr ""
1615
 
1730
  msgid "Are you sure to reset all options?"
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:436
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1735
  msgid "Are you sure?"
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:437
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1740
  msgid "Restoring options."
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:438
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1745
  #, fuzzy
1746
  msgid "Importing options."
1747
  msgstr "Sorteer opties:"
1748
 
1749
+ #: admin/settings/classes/setup.class.php:441
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1751
  msgid "Please enter %s or more characters"
1752
  msgstr ""
1753
 
1754
+ #: admin/settings/classes/setup.class.php:442
1755
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1756
  msgid "Searching..."
1757
  msgstr ""
1758
 
1759
+ #: admin/settings/classes/setup.class.php:443
1760
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1761
  msgid "No results match"
1762
  msgstr ""
1763
 
1764
+ #: admin/settings/classes/setup.class.php:514
1765
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1766
  msgid "Ooops! This field type (%s) can not be used here, yet."
1767
  msgstr ""
1768
 
1769
+ #: admin/settings/classes/setup.class.php:577
1770
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1771
  msgid "This field class is not available!"
1772
  msgstr ""
1773
 
1774
+ #: admin/settings/classes/setup.class.php:581
1775
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1776
  msgid "This type is not found!"
1777
  msgstr ""
1778
 
2649
  msgstr ""
2650
 
2651
  #: build/wp-ulike/inc/frontend-ajax.php:42
2652
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2653
+ #: inc/frontend-ajax.php:170
2654
  msgid "Error: This Method Is Not Exist!"
2655
  msgstr ""
2656
 
2657
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2658
+ msgid "Notice: The likers box is not activated!"
2659
  msgstr ""
2660
 
2661
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2662
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2663
  msgstr ""
2664
 
2665
  #: build/wp-ulike/inc/general-functions.php:85
2705
  msgid "Table info is empty."
2706
  msgstr ""
2707
 
2708
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2709
  msgid "You need to login in order to like this post: "
2710
  msgstr "Je moet inloggen om dit bericht leuk te vinden:"
2711
 
2712
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2713
  msgid "click here"
2714
  msgstr "klik hier"
2715
 
2716
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2717
  #, fuzzy
2718
  msgid "Like This"
2719
  msgstr "Vind ik leuk"
lang/wp-ulike-pl_PL.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/wp-ulike/"
@@ -27,8 +27,8 @@ msgstr ""
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
31
- #: inc/frontend-ajax.php:151
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
@@ -44,9 +44,9 @@ msgstr ""
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
- #: admin/admin-functions.php:225
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
- #: build/wp-ulike/admin/admin-functions.php:228
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  msgid "Button"
52
  msgstr ""
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "Więcej informacji:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr ""
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr ""
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr "Logi"
200
 
@@ -1022,16 +1036,16 @@ msgstr ""
1022
  msgid "Topics Stats"
1023
  msgstr ""
1024
 
1025
- #: admin/classes/class-wp-ulike-stats.php:274
1026
- #: admin/includes/templates/activities-logs.php:76
1027
- #: admin/includes/templates/comments-logs.php:81
1028
- #: admin/includes/templates/posts-logs.php:75
1029
- #: admin/includes/templates/topics-logs.php:75
1030
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1031
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1032
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1033
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1034
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1035
  msgid "Guest User"
1036
  msgstr ""
1037
 
@@ -1317,115 +1331,177 @@ msgstr ""
1317
  msgid "No data found! This is because there is still no data in your database."
1318
  msgstr ""
1319
 
1320
- #: admin/includes/templates/activities-logs.php:38
1321
- #: admin/includes/templates/comments-logs.php:38
1322
- #: admin/includes/templates/posts-logs.php:38
1323
- #: admin/includes/templates/topics-logs.php:38
1324
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1326
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1327
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1328
  msgid "WP ULike Logs"
1329
  msgstr ""
1330
 
1331
- #: admin/includes/templates/activities-logs.php:49
1332
- #: admin/includes/templates/comments-logs.php:49
1333
- #: admin/includes/templates/posts-logs.php:49
1334
- #: admin/includes/templates/topics-logs.php:49
1335
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1337
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1338
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1339
  msgid "ID"
1340
  msgstr "ID"
1341
 
1342
- #: admin/includes/templates/activities-logs.php:50
1343
- #: admin/includes/templates/comments-logs.php:50
1344
- #: admin/includes/templates/posts-logs.php:50
1345
- #: admin/includes/templates/topics-logs.php:50
1346
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1348
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1349
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1350
  msgid "Username"
1351
  msgstr "Nazwa użytkownika"
1352
 
1353
- #: admin/includes/templates/activities-logs.php:51
1354
- #: admin/includes/templates/comments-logs.php:51
1355
- #: admin/includes/templates/posts-logs.php:51
1356
- #: admin/includes/templates/topics-logs.php:51
1357
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1359
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1360
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1361
  msgid "Status"
1362
  msgstr "Status"
1363
 
1364
- #: admin/includes/templates/activities-logs.php:52
1365
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1366
  msgid "Activity ID"
1367
  msgstr ""
1368
 
1369
- #: admin/includes/templates/activities-logs.php:53
1370
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1371
  msgid "Permalink"
1372
  msgstr "Permalink"
1373
 
1374
- #: admin/includes/templates/activities-logs.php:54
1375
- #: admin/includes/templates/comments-logs.php:55
1376
- #: admin/includes/templates/posts-logs.php:54
1377
- #: admin/includes/templates/topics-logs.php:54
1378
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1380
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1381
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1382
  msgid "Date / Time"
1383
  msgstr ""
1384
 
1385
- #: admin/includes/templates/activities-logs.php:55
1386
- #: admin/includes/templates/comments-logs.php:56
1387
- #: admin/includes/templates/posts-logs.php:55
1388
- #: admin/includes/templates/topics-logs.php:55
1389
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1391
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1392
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1393
  msgid "IP"
1394
  msgstr ""
1395
 
1396
- #: admin/includes/templates/activities-logs.php:56
1397
- #: admin/includes/templates/comments-logs.php:57
1398
- #: admin/includes/templates/posts-logs.php:56
1399
- #: admin/includes/templates/topics-logs.php:56
1400
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1402
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1403
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1404
  msgid "Actions"
1405
  msgstr "Akcje"
1406
 
1407
- #: admin/includes/templates/activities-logs.php:92
1408
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1409
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1410
  msgstr ""
1411
 
1412
- #: admin/includes/templates/comments-logs.php:52
1413
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1414
  msgid "Comment ID"
1415
  msgstr ""
1416
 
1417
- #: admin/includes/templates/comments-logs.php:53
1418
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1419
  msgid "Comment Author"
1420
  msgstr ""
1421
 
1422
- #: admin/includes/templates/comments-logs.php:54
1423
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1424
  msgid "Comment Text"
1425
  msgstr ""
1426
 
1427
- #: admin/includes/templates/comments-logs.php:63
1428
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1429
  msgid "Not Found!"
1430
  msgstr ""
1431
 
@@ -1434,61 +1510,31 @@ msgstr ""
1434
  msgid "WP ULike Premium"
1435
  msgstr ""
1436
 
1437
- #: admin/includes/templates/go-pro.php:22
1438
- #: admin/includes/templates/statistics.php:48
1439
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1440
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1441
- msgid "Buy WP ULike Premium"
1442
- msgstr ""
1443
-
1444
- #: admin/includes/templates/go-pro.php:28
1445
- #: admin/includes/templates/statistics.php:53
1446
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1447
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1448
- #, fuzzy
1449
- msgid "More information"
1450
- msgstr "Więcej informacji:"
1451
-
1452
- #: admin/includes/templates/go-pro.php:114
1453
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1454
  msgid ""
1455
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1456
  "ULike PRO plugin we fully support this page builder and have a variety of "
1457
  "widgets & controllers that make life much easier for you."
1458
  msgstr ""
1459
 
1460
- #: admin/includes/templates/go-pro.php:114
1461
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1462
  msgid ""
1463
  "Just drag your desired widget and drop it in your Elementor sections, "
1464
  "customize as you go and enjoy your like and dislike buttons on your contents."
1465
  msgstr ""
1466
 
1467
- #: admin/includes/templates/posts-logs.php:52
1468
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1469
  msgid "Post ID"
1470
  msgstr ""
1471
 
1472
- #: admin/includes/templates/posts-logs.php:53
1473
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1474
  msgid "Post Title"
1475
  msgstr ""
1476
 
1477
- #: admin/includes/templates/statistics.php:45
1478
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1479
- msgid "Check Votings, Best Likers & Top contents"
1480
- msgstr ""
1481
-
1482
- #: admin/includes/templates/statistics.php:47
1483
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1484
- msgid ""
1485
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1486
- "users love and what annoys them in an instance. You can extract reports of "
1487
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1488
- "dateRange picker and status selector controllers, no confusing options and "
1489
- "coding needed."
1490
- msgstr ""
1491
-
1492
  #: admin/includes/templates/statistics.php:76
1493
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1494
  msgid "Total"
@@ -1537,13 +1583,13 @@ msgstr ""
1537
  msgid "Top"
1538
  msgstr ""
1539
 
1540
- #: admin/includes/templates/topics-logs.php:52
1541
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1542
  msgid "Topic ID"
1543
  msgstr ""
1544
 
1545
- #: admin/includes/templates/topics-logs.php:53
1546
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1547
  msgid "Topic Title"
1548
  msgstr ""
1549
 
@@ -1662,48 +1708,48 @@ msgstr ""
1662
  msgid "Are you sure to reset all options?"
1663
  msgstr ""
1664
 
1665
- #: admin/settings/classes/setup.class.php:429
1666
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1667
  msgid "Are you sure?"
1668
  msgstr ""
1669
 
1670
- #: admin/settings/classes/setup.class.php:430
1671
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1672
  msgid "Restoring options."
1673
  msgstr ""
1674
 
1675
- #: admin/settings/classes/setup.class.php:431
1676
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1677
  msgid "Importing options."
1678
  msgstr ""
1679
 
1680
- #: admin/settings/classes/setup.class.php:434
1681
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1682
  msgid "Please enter %s or more characters"
1683
  msgstr ""
1684
 
1685
- #: admin/settings/classes/setup.class.php:435
1686
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1687
  msgid "Searching..."
1688
  msgstr ""
1689
 
1690
- #: admin/settings/classes/setup.class.php:436
1691
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1692
  msgid "No results match"
1693
  msgstr ""
1694
 
1695
- #: admin/settings/classes/setup.class.php:507
1696
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1697
  msgid "Ooops! This field type (%s) can not be used here, yet."
1698
  msgstr ""
1699
 
1700
- #: admin/settings/classes/setup.class.php:570
1701
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1702
  msgid "This field class is not available!"
1703
  msgstr ""
1704
 
1705
- #: admin/settings/classes/setup.class.php:574
1706
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1707
  msgid "This type is not found!"
1708
  msgstr ""
1709
 
@@ -2571,17 +2617,17 @@ msgid ""
2571
  msgstr ""
2572
 
2573
  #: build/wp-ulike/inc/frontend-ajax.php:42
2574
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2575
- #: inc/frontend-ajax.php:164
2576
  msgid "Error: This Method Is Not Exist!"
2577
  msgstr ""
2578
 
2579
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2580
- msgid "Notice: The likers box is refreshed only for logged in users!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2584
- msgid "Notice: The likers box is not activated!"
2585
  msgstr ""
2586
 
2587
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2626,15 +2672,15 @@ msgstr ""
2626
  msgid "Table info is empty."
2627
  msgstr ""
2628
 
2629
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2630
  msgid "You need to login in order to like this post: "
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2634
  msgid "click here"
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2638
  #, fuzzy
2639
  msgid "Like This"
2640
  msgstr "Lubisz tę wtyczkę?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/wp-ulike/"
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
31
+ #: inc/frontend-ajax.php:152
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
+ #: admin/admin-functions.php:231
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
+ #: build/wp-ulike/admin/admin-functions.php:234
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  msgid "Button"
52
  msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Więcej informacji:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr ""
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr ""
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
192
  msgstr ""
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr "Logi"
214
 
1036
  msgid "Topics Stats"
1037
  msgstr ""
1038
 
1039
+ #: admin/classes/class-wp-ulike-stats.php:273
1040
+ #: admin/includes/templates/activities-logs.php:98
1041
+ #: admin/includes/templates/comments-logs.php:103
1042
+ #: admin/includes/templates/posts-logs.php:97
1043
+ #: admin/includes/templates/topics-logs.php:97
1044
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1045
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1046
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1047
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1048
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1049
  msgid "Guest User"
1050
  msgstr ""
1051
 
1331
  msgid "No data found! This is because there is still no data in your database."
1332
  msgstr ""
1333
 
1334
+ #: admin/includes/templates/activities-logs.php:40
1335
+ #: admin/includes/templates/comments-logs.php:40
1336
+ #: admin/includes/templates/posts-logs.php:40
1337
+ #: admin/includes/templates/statistics.php:45
1338
+ #: admin/includes/templates/topics-logs.php:40
1339
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1341
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1342
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1343
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1344
+ msgid "Check Votings, Best Likers & Top contents"
1345
+ msgstr ""
1346
+
1347
+ #: admin/includes/templates/activities-logs.php:42
1348
+ #: admin/includes/templates/comments-logs.php:42
1349
+ #: admin/includes/templates/posts-logs.php:42
1350
+ #: admin/includes/templates/statistics.php:47
1351
+ #: admin/includes/templates/topics-logs.php:42
1352
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1354
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1355
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1356
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1357
+ msgid ""
1358
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1359
+ "users love and what annoys them in an instance. You can extract reports of "
1360
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1361
+ "dateRange picker and status selector controllers, no confusing options and "
1362
+ "coding needed."
1363
+ msgstr ""
1364
+
1365
+ #: admin/includes/templates/activities-logs.php:43
1366
+ #: admin/includes/templates/comments-logs.php:43
1367
+ #: admin/includes/templates/go-pro.php:22
1368
+ #: admin/includes/templates/posts-logs.php:43
1369
+ #: admin/includes/templates/statistics.php:48
1370
+ #: admin/includes/templates/topics-logs.php:43
1371
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1372
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1374
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1375
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1376
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1377
+ msgid "Buy WP ULike Premium"
1378
+ msgstr ""
1379
+
1380
+ #: admin/includes/templates/activities-logs.php:48
1381
+ #: admin/includes/templates/comments-logs.php:48
1382
+ #: admin/includes/templates/go-pro.php:28
1383
+ #: admin/includes/templates/posts-logs.php:48
1384
+ #: admin/includes/templates/statistics.php:53
1385
+ #: admin/includes/templates/topics-logs.php:48
1386
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1387
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1389
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1390
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1391
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1392
+ #, fuzzy
1393
+ msgid "More information"
1394
+ msgstr "Więcej informacji:"
1395
+
1396
+ #: admin/includes/templates/activities-logs.php:60
1397
+ #: admin/includes/templates/comments-logs.php:60
1398
+ #: admin/includes/templates/posts-logs.php:60
1399
+ #: admin/includes/templates/topics-logs.php:60
1400
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1402
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1403
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1404
  msgid "WP ULike Logs"
1405
  msgstr ""
1406
 
1407
+ #: admin/includes/templates/activities-logs.php:71
1408
+ #: admin/includes/templates/comments-logs.php:71
1409
+ #: admin/includes/templates/posts-logs.php:71
1410
+ #: admin/includes/templates/topics-logs.php:71
1411
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1413
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1414
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1415
  msgid "ID"
1416
  msgstr "ID"
1417
 
1418
+ #: admin/includes/templates/activities-logs.php:72
1419
+ #: admin/includes/templates/comments-logs.php:72
1420
+ #: admin/includes/templates/posts-logs.php:72
1421
+ #: admin/includes/templates/topics-logs.php:72
1422
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1424
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1425
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1426
  msgid "Username"
1427
  msgstr "Nazwa użytkownika"
1428
 
1429
+ #: admin/includes/templates/activities-logs.php:73
1430
+ #: admin/includes/templates/comments-logs.php:73
1431
+ #: admin/includes/templates/posts-logs.php:73
1432
+ #: admin/includes/templates/topics-logs.php:73
1433
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1435
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1436
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1437
  msgid "Status"
1438
  msgstr "Status"
1439
 
1440
+ #: admin/includes/templates/activities-logs.php:74
1441
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1442
  msgid "Activity ID"
1443
  msgstr ""
1444
 
1445
+ #: admin/includes/templates/activities-logs.php:75
1446
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1447
  msgid "Permalink"
1448
  msgstr "Permalink"
1449
 
1450
+ #: admin/includes/templates/activities-logs.php:76
1451
+ #: admin/includes/templates/comments-logs.php:77
1452
+ #: admin/includes/templates/posts-logs.php:76
1453
+ #: admin/includes/templates/topics-logs.php:76
1454
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1456
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1457
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1458
  msgid "Date / Time"
1459
  msgstr ""
1460
 
1461
+ #: admin/includes/templates/activities-logs.php:77
1462
+ #: admin/includes/templates/comments-logs.php:78
1463
+ #: admin/includes/templates/posts-logs.php:77
1464
+ #: admin/includes/templates/topics-logs.php:77
1465
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1467
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1468
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1469
  msgid "IP"
1470
  msgstr ""
1471
 
1472
+ #: admin/includes/templates/activities-logs.php:78
1473
+ #: admin/includes/templates/comments-logs.php:79
1474
+ #: admin/includes/templates/posts-logs.php:78
1475
+ #: admin/includes/templates/topics-logs.php:78
1476
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1478
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1479
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1480
  msgid "Actions"
1481
  msgstr "Akcje"
1482
 
1483
+ #: admin/includes/templates/activities-logs.php:114
1484
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1485
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1486
  msgstr ""
1487
 
1488
+ #: admin/includes/templates/comments-logs.php:74
1489
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1490
  msgid "Comment ID"
1491
  msgstr ""
1492
 
1493
+ #: admin/includes/templates/comments-logs.php:75
1494
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1495
  msgid "Comment Author"
1496
  msgstr ""
1497
 
1498
+ #: admin/includes/templates/comments-logs.php:76
1499
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1500
  msgid "Comment Text"
1501
  msgstr ""
1502
 
1503
+ #: admin/includes/templates/comments-logs.php:85
1504
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1505
  msgid "Not Found!"
1506
  msgstr ""
1507
 
1510
  msgid "WP ULike Premium"
1511
  msgstr ""
1512
 
1513
+ #: admin/includes/templates/go-pro.php:119
1514
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1515
  msgid ""
1516
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1517
  "ULike PRO plugin we fully support this page builder and have a variety of "
1518
  "widgets & controllers that make life much easier for you."
1519
  msgstr ""
1520
 
1521
+ #: admin/includes/templates/go-pro.php:119
1522
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1523
  msgid ""
1524
  "Just drag your desired widget and drop it in your Elementor sections, "
1525
  "customize as you go and enjoy your like and dislike buttons on your contents."
1526
  msgstr ""
1527
 
1528
+ #: admin/includes/templates/posts-logs.php:74
1529
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1530
  msgid "Post ID"
1531
  msgstr ""
1532
 
1533
+ #: admin/includes/templates/posts-logs.php:75
1534
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1535
  msgid "Post Title"
1536
  msgstr ""
1537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1538
  #: admin/includes/templates/statistics.php:76
1539
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1540
  msgid "Total"
1583
  msgid "Top"
1584
  msgstr ""
1585
 
1586
+ #: admin/includes/templates/topics-logs.php:74
1587
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1588
  msgid "Topic ID"
1589
  msgstr ""
1590
 
1591
+ #: admin/includes/templates/topics-logs.php:75
1592
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1593
  msgid "Topic Title"
1594
  msgstr ""
1595
 
1708
  msgid "Are you sure to reset all options?"
1709
  msgstr ""
1710
 
1711
+ #: admin/settings/classes/setup.class.php:436
1712
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1713
  msgid "Are you sure?"
1714
  msgstr ""
1715
 
1716
+ #: admin/settings/classes/setup.class.php:437
1717
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1718
  msgid "Restoring options."
1719
  msgstr ""
1720
 
1721
+ #: admin/settings/classes/setup.class.php:438
1722
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1723
  msgid "Importing options."
1724
  msgstr ""
1725
 
1726
+ #: admin/settings/classes/setup.class.php:441
1727
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1728
  msgid "Please enter %s or more characters"
1729
  msgstr ""
1730
 
1731
+ #: admin/settings/classes/setup.class.php:442
1732
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1733
  msgid "Searching..."
1734
  msgstr ""
1735
 
1736
+ #: admin/settings/classes/setup.class.php:443
1737
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1738
  msgid "No results match"
1739
  msgstr ""
1740
 
1741
+ #: admin/settings/classes/setup.class.php:514
1742
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1743
  msgid "Ooops! This field type (%s) can not be used here, yet."
1744
  msgstr ""
1745
 
1746
+ #: admin/settings/classes/setup.class.php:577
1747
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1748
  msgid "This field class is not available!"
1749
  msgstr ""
1750
 
1751
+ #: admin/settings/classes/setup.class.php:581
1752
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1753
  msgid "This type is not found!"
1754
  msgstr ""
1755
 
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/frontend-ajax.php:42
2620
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2621
+ #: inc/frontend-ajax.php:170
2622
  msgid "Error: This Method Is Not Exist!"
2623
  msgstr ""
2624
 
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2626
+ msgid "Notice: The likers box is not activated!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2630
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2631
  msgstr ""
2632
 
2633
  #: build/wp-ulike/inc/general-functions.php:85
2672
  msgid "Table info is empty."
2673
  msgstr ""
2674
 
2675
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2676
  msgid "You need to login in order to like this post: "
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2680
  msgid "click here"
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2684
  #, fuzzy
2685
  msgid "Like This"
2686
  msgstr "Lubisz tę wtyczkę?"
lang/wp-ulike-pt_BR.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "Para mais informações:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr ""
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr ""
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr "Históricos"
200
 
@@ -1025,16 +1039,16 @@ msgstr ""
1025
  msgid "Topics Stats"
1026
  msgstr ""
1027
 
1028
- #: admin/classes/class-wp-ulike-stats.php:274
1029
- #: admin/includes/templates/activities-logs.php:76
1030
- #: admin/includes/templates/comments-logs.php:81
1031
- #: admin/includes/templates/posts-logs.php:75
1032
- #: admin/includes/templates/topics-logs.php:75
1033
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1034
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1035
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1036
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1037
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1038
  msgid "Guest User"
1039
  msgstr ""
1040
 
@@ -1320,115 +1334,177 @@ msgstr ""
1320
  msgid "No data found! This is because there is still no data in your database."
1321
  msgstr ""
1322
 
1323
- #: admin/includes/templates/activities-logs.php:38
1324
- #: admin/includes/templates/comments-logs.php:38
1325
- #: admin/includes/templates/posts-logs.php:38
1326
- #: admin/includes/templates/topics-logs.php:38
1327
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1328
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1329
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1330
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1331
  msgid "WP ULike Logs"
1332
  msgstr ""
1333
 
1334
- #: admin/includes/templates/activities-logs.php:49
1335
- #: admin/includes/templates/comments-logs.php:49
1336
- #: admin/includes/templates/posts-logs.php:49
1337
- #: admin/includes/templates/topics-logs.php:49
1338
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1339
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1340
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1341
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1342
  msgid "ID"
1343
  msgstr "ID"
1344
 
1345
- #: admin/includes/templates/activities-logs.php:50
1346
- #: admin/includes/templates/comments-logs.php:50
1347
- #: admin/includes/templates/posts-logs.php:50
1348
- #: admin/includes/templates/topics-logs.php:50
1349
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1350
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1351
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1352
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1353
  msgid "Username"
1354
  msgstr "Nome de utilizador"
1355
 
1356
- #: admin/includes/templates/activities-logs.php:51
1357
- #: admin/includes/templates/comments-logs.php:51
1358
- #: admin/includes/templates/posts-logs.php:51
1359
- #: admin/includes/templates/topics-logs.php:51
1360
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1362
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1363
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1364
  msgid "Status"
1365
  msgstr "Estado"
1366
 
1367
- #: admin/includes/templates/activities-logs.php:52
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1369
  msgid "Activity ID"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:53
1373
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1374
  msgid "Permalink"
1375
  msgstr "Link Permanente"
1376
 
1377
- #: admin/includes/templates/activities-logs.php:54
1378
- #: admin/includes/templates/comments-logs.php:55
1379
- #: admin/includes/templates/posts-logs.php:54
1380
- #: admin/includes/templates/topics-logs.php:54
1381
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1382
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1383
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1384
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1385
  msgid "Date / Time"
1386
  msgstr ""
1387
 
1388
- #: admin/includes/templates/activities-logs.php:55
1389
- #: admin/includes/templates/comments-logs.php:56
1390
- #: admin/includes/templates/posts-logs.php:55
1391
- #: admin/includes/templates/topics-logs.php:55
1392
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1393
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1394
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1395
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1396
  msgid "IP"
1397
  msgstr ""
1398
 
1399
- #: admin/includes/templates/activities-logs.php:56
1400
- #: admin/includes/templates/comments-logs.php:57
1401
- #: admin/includes/templates/posts-logs.php:56
1402
- #: admin/includes/templates/topics-logs.php:56
1403
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1404
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1405
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1406
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1407
  msgid "Actions"
1408
  msgstr "Ações"
1409
 
1410
- #: admin/includes/templates/activities-logs.php:92
1411
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1412
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:52
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1417
  msgid "Comment ID"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:53
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1422
  msgid "Comment Author"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:54
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1427
  msgid "Comment Text"
1428
  msgstr ""
1429
 
1430
- #: admin/includes/templates/comments-logs.php:63
1431
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1432
  msgid "Not Found!"
1433
  msgstr ""
1434
 
@@ -1437,61 +1513,31 @@ msgstr ""
1437
  msgid "WP ULike Premium"
1438
  msgstr ""
1439
 
1440
- #: admin/includes/templates/go-pro.php:22
1441
- #: admin/includes/templates/statistics.php:48
1442
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1443
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1444
- msgid "Buy WP ULike Premium"
1445
- msgstr ""
1446
-
1447
- #: admin/includes/templates/go-pro.php:28
1448
- #: admin/includes/templates/statistics.php:53
1449
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1450
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1451
- #, fuzzy
1452
- msgid "More information"
1453
- msgstr "Para mais informações:"
1454
-
1455
- #: admin/includes/templates/go-pro.php:114
1456
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1457
  msgid ""
1458
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1459
  "ULike PRO plugin we fully support this page builder and have a variety of "
1460
  "widgets & controllers that make life much easier for you."
1461
  msgstr ""
1462
 
1463
- #: admin/includes/templates/go-pro.php:114
1464
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1465
  msgid ""
1466
  "Just drag your desired widget and drop it in your Elementor sections, "
1467
  "customize as you go and enjoy your like and dislike buttons on your contents."
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:52
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1472
  msgid "Post ID"
1473
  msgstr "ID do Post"
1474
 
1475
- #: admin/includes/templates/posts-logs.php:53
1476
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1477
  msgid "Post Title"
1478
  msgstr ""
1479
 
1480
- #: admin/includes/templates/statistics.php:45
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1482
- msgid "Check Votings, Best Likers & Top contents"
1483
- msgstr ""
1484
-
1485
- #: admin/includes/templates/statistics.php:47
1486
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1487
- msgid ""
1488
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1489
- "users love and what annoys them in an instance. You can extract reports of "
1490
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1491
- "dateRange picker and status selector controllers, no confusing options and "
1492
- "coding needed."
1493
- msgstr ""
1494
-
1495
  #: admin/includes/templates/statistics.php:76
1496
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1497
  msgid "Total"
@@ -1541,13 +1587,13 @@ msgstr ""
1541
  msgid "Top"
1542
  msgstr ""
1543
 
1544
- #: admin/includes/templates/topics-logs.php:52
1545
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1546
  msgid "Topic ID"
1547
  msgstr ""
1548
 
1549
- #: admin/includes/templates/topics-logs.php:53
1550
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1551
  msgid "Topic Title"
1552
  msgstr ""
1553
 
@@ -1666,48 +1712,48 @@ msgstr ""
1666
  msgid "Are you sure to reset all options?"
1667
  msgstr ""
1668
 
1669
- #: admin/settings/classes/setup.class.php:429
1670
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1671
  msgid "Are you sure?"
1672
  msgstr ""
1673
 
1674
- #: admin/settings/classes/setup.class.php:430
1675
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1676
  msgid "Restoring options."
1677
  msgstr ""
1678
 
1679
- #: admin/settings/classes/setup.class.php:431
1680
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1681
  msgid "Importing options."
1682
  msgstr ""
1683
 
1684
- #: admin/settings/classes/setup.class.php:434
1685
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1686
  msgid "Please enter %s or more characters"
1687
  msgstr ""
1688
 
1689
- #: admin/settings/classes/setup.class.php:435
1690
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1691
  msgid "Searching..."
1692
  msgstr ""
1693
 
1694
- #: admin/settings/classes/setup.class.php:436
1695
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1696
  msgid "No results match"
1697
  msgstr ""
1698
 
1699
- #: admin/settings/classes/setup.class.php:507
1700
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1701
  msgid "Ooops! This field type (%s) can not be used here, yet."
1702
  msgstr ""
1703
 
1704
- #: admin/settings/classes/setup.class.php:570
1705
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1706
  msgid "This field class is not available!"
1707
  msgstr ""
1708
 
1709
- #: admin/settings/classes/setup.class.php:574
1710
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1711
  msgid "This type is not found!"
1712
  msgstr ""
1713
 
@@ -2578,17 +2624,17 @@ msgid ""
2578
  msgstr ""
2579
 
2580
  #: build/wp-ulike/inc/frontend-ajax.php:42
2581
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2582
- #: inc/frontend-ajax.php:164
2583
  msgid "Error: This Method Is Not Exist!"
2584
  msgstr ""
2585
 
2586
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2587
- msgid "Notice: The likers box is refreshed only for logged in users!"
2588
  msgstr ""
2589
 
2590
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2591
- msgid "Notice: The likers box is not activated!"
2592
  msgstr ""
2593
 
2594
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2633,15 +2679,15 @@ msgstr ""
2633
  msgid "Table info is empty."
2634
  msgstr ""
2635
 
2636
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2637
  msgid "You need to login in order to like this post: "
2638
  msgstr ""
2639
 
2640
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2641
  msgid "click here"
2642
  msgstr ""
2643
 
2644
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2645
  #, fuzzy
2646
  msgid "Like This"
2647
  msgstr "Gostou desse plugin?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Para mais informações:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr ""
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr ""
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
192
  msgstr ""
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr "Históricos"
214
 
1039
  msgid "Topics Stats"
1040
  msgstr ""
1041
 
1042
+ #: admin/classes/class-wp-ulike-stats.php:273
1043
+ #: admin/includes/templates/activities-logs.php:98
1044
+ #: admin/includes/templates/comments-logs.php:103
1045
+ #: admin/includes/templates/posts-logs.php:97
1046
+ #: admin/includes/templates/topics-logs.php:97
1047
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1048
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1049
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1050
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1051
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1052
  msgid "Guest User"
1053
  msgstr ""
1054
 
1334
  msgid "No data found! This is because there is still no data in your database."
1335
  msgstr ""
1336
 
1337
+ #: admin/includes/templates/activities-logs.php:40
1338
+ #: admin/includes/templates/comments-logs.php:40
1339
+ #: admin/includes/templates/posts-logs.php:40
1340
+ #: admin/includes/templates/statistics.php:45
1341
+ #: admin/includes/templates/topics-logs.php:40
1342
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1343
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1344
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1345
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1346
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1347
+ msgid "Check Votings, Best Likers & Top contents"
1348
+ msgstr ""
1349
+
1350
+ #: admin/includes/templates/activities-logs.php:42
1351
+ #: admin/includes/templates/comments-logs.php:42
1352
+ #: admin/includes/templates/posts-logs.php:42
1353
+ #: admin/includes/templates/statistics.php:47
1354
+ #: admin/includes/templates/topics-logs.php:42
1355
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1356
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1357
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1358
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1359
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1360
+ msgid ""
1361
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1362
+ "users love and what annoys them in an instance. You can extract reports of "
1363
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1364
+ "dateRange picker and status selector controllers, no confusing options and "
1365
+ "coding needed."
1366
+ msgstr ""
1367
+
1368
+ #: admin/includes/templates/activities-logs.php:43
1369
+ #: admin/includes/templates/comments-logs.php:43
1370
+ #: admin/includes/templates/go-pro.php:22
1371
+ #: admin/includes/templates/posts-logs.php:43
1372
+ #: admin/includes/templates/statistics.php:48
1373
+ #: admin/includes/templates/topics-logs.php:43
1374
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1375
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1376
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1377
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1378
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1379
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1380
+ msgid "Buy WP ULike Premium"
1381
+ msgstr ""
1382
+
1383
+ #: admin/includes/templates/activities-logs.php:48
1384
+ #: admin/includes/templates/comments-logs.php:48
1385
+ #: admin/includes/templates/go-pro.php:28
1386
+ #: admin/includes/templates/posts-logs.php:48
1387
+ #: admin/includes/templates/statistics.php:53
1388
+ #: admin/includes/templates/topics-logs.php:48
1389
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1390
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1391
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1392
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1393
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1394
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1395
+ #, fuzzy
1396
+ msgid "More information"
1397
+ msgstr "Para mais informações:"
1398
+
1399
+ #: admin/includes/templates/activities-logs.php:60
1400
+ #: admin/includes/templates/comments-logs.php:60
1401
+ #: admin/includes/templates/posts-logs.php:60
1402
+ #: admin/includes/templates/topics-logs.php:60
1403
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1404
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1405
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1406
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1407
  msgid "WP ULike Logs"
1408
  msgstr ""
1409
 
1410
+ #: admin/includes/templates/activities-logs.php:71
1411
+ #: admin/includes/templates/comments-logs.php:71
1412
+ #: admin/includes/templates/posts-logs.php:71
1413
+ #: admin/includes/templates/topics-logs.php:71
1414
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1415
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1416
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1417
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1418
  msgid "ID"
1419
  msgstr "ID"
1420
 
1421
+ #: admin/includes/templates/activities-logs.php:72
1422
+ #: admin/includes/templates/comments-logs.php:72
1423
+ #: admin/includes/templates/posts-logs.php:72
1424
+ #: admin/includes/templates/topics-logs.php:72
1425
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1426
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1427
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1428
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1429
  msgid "Username"
1430
  msgstr "Nome de utilizador"
1431
 
1432
+ #: admin/includes/templates/activities-logs.php:73
1433
+ #: admin/includes/templates/comments-logs.php:73
1434
+ #: admin/includes/templates/posts-logs.php:73
1435
+ #: admin/includes/templates/topics-logs.php:73
1436
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1437
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1438
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1439
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1440
  msgid "Status"
1441
  msgstr "Estado"
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:74
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1445
  msgid "Activity ID"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:75
1449
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1450
  msgid "Permalink"
1451
  msgstr "Link Permanente"
1452
 
1453
+ #: admin/includes/templates/activities-logs.php:76
1454
+ #: admin/includes/templates/comments-logs.php:77
1455
+ #: admin/includes/templates/posts-logs.php:76
1456
+ #: admin/includes/templates/topics-logs.php:76
1457
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1458
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1459
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1460
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1461
  msgid "Date / Time"
1462
  msgstr ""
1463
 
1464
+ #: admin/includes/templates/activities-logs.php:77
1465
+ #: admin/includes/templates/comments-logs.php:78
1466
+ #: admin/includes/templates/posts-logs.php:77
1467
+ #: admin/includes/templates/topics-logs.php:77
1468
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1469
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1470
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1471
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1472
  msgid "IP"
1473
  msgstr ""
1474
 
1475
+ #: admin/includes/templates/activities-logs.php:78
1476
+ #: admin/includes/templates/comments-logs.php:79
1477
+ #: admin/includes/templates/posts-logs.php:78
1478
+ #: admin/includes/templates/topics-logs.php:78
1479
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1480
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1481
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1482
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1483
  msgid "Actions"
1484
  msgstr "Ações"
1485
 
1486
+ #: admin/includes/templates/activities-logs.php:114
1487
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1488
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:74
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1493
  msgid "Comment ID"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:75
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1498
  msgid "Comment Author"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:76
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1503
  msgid "Comment Text"
1504
  msgstr ""
1505
 
1506
+ #: admin/includes/templates/comments-logs.php:85
1507
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1508
  msgid "Not Found!"
1509
  msgstr ""
1510
 
1513
  msgid "WP ULike Premium"
1514
  msgstr ""
1515
 
1516
+ #: admin/includes/templates/go-pro.php:119
1517
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1518
  msgid ""
1519
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1520
  "ULike PRO plugin we fully support this page builder and have a variety of "
1521
  "widgets & controllers that make life much easier for you."
1522
  msgstr ""
1523
 
1524
+ #: admin/includes/templates/go-pro.php:119
1525
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1526
  msgid ""
1527
  "Just drag your desired widget and drop it in your Elementor sections, "
1528
  "customize as you go and enjoy your like and dislike buttons on your contents."
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:74
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1533
  msgid "Post ID"
1534
  msgstr "ID do Post"
1535
 
1536
+ #: admin/includes/templates/posts-logs.php:75
1537
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1538
  msgid "Post Title"
1539
  msgstr ""
1540
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1541
  #: admin/includes/templates/statistics.php:76
1542
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1543
  msgid "Total"
1587
  msgid "Top"
1588
  msgstr ""
1589
 
1590
+ #: admin/includes/templates/topics-logs.php:74
1591
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1592
  msgid "Topic ID"
1593
  msgstr ""
1594
 
1595
+ #: admin/includes/templates/topics-logs.php:75
1596
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1597
  msgid "Topic Title"
1598
  msgstr ""
1599
 
1712
  msgid "Are you sure to reset all options?"
1713
  msgstr ""
1714
 
1715
+ #: admin/settings/classes/setup.class.php:436
1716
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1717
  msgid "Are you sure?"
1718
  msgstr ""
1719
 
1720
+ #: admin/settings/classes/setup.class.php:437
1721
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1722
  msgid "Restoring options."
1723
  msgstr ""
1724
 
1725
+ #: admin/settings/classes/setup.class.php:438
1726
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1727
  msgid "Importing options."
1728
  msgstr ""
1729
 
1730
+ #: admin/settings/classes/setup.class.php:441
1731
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1732
  msgid "Please enter %s or more characters"
1733
  msgstr ""
1734
 
1735
+ #: admin/settings/classes/setup.class.php:442
1736
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1737
  msgid "Searching..."
1738
  msgstr ""
1739
 
1740
+ #: admin/settings/classes/setup.class.php:443
1741
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1742
  msgid "No results match"
1743
  msgstr ""
1744
 
1745
+ #: admin/settings/classes/setup.class.php:514
1746
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1747
  msgid "Ooops! This field type (%s) can not be used here, yet."
1748
  msgstr ""
1749
 
1750
+ #: admin/settings/classes/setup.class.php:577
1751
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1752
  msgid "This field class is not available!"
1753
  msgstr ""
1754
 
1755
+ #: admin/settings/classes/setup.class.php:581
1756
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1757
  msgid "This type is not found!"
1758
  msgstr ""
1759
 
2624
  msgstr ""
2625
 
2626
  #: build/wp-ulike/inc/frontend-ajax.php:42
2627
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2628
+ #: inc/frontend-ajax.php:170
2629
  msgid "Error: This Method Is Not Exist!"
2630
  msgstr ""
2631
 
2632
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2633
+ msgid "Notice: The likers box is not activated!"
2634
  msgstr ""
2635
 
2636
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2637
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2638
  msgstr ""
2639
 
2640
  #: build/wp-ulike/inc/general-functions.php:85
2679
  msgid "Table info is empty."
2680
  msgstr ""
2681
 
2682
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2683
  msgid "You need to login in order to like this post: "
2684
  msgstr ""
2685
 
2686
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2687
  msgid "click here"
2688
  msgstr ""
2689
 
2690
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2691
  #, fuzzy
2692
  msgid "Like This"
2693
  msgstr "Gostou desse plugin?"
lang/wp-ulike-pt_PT.po CHANGED
@@ -7,7 +7,7 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WP ULike\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
10
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
11
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
12
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
13
  "Language-Team: Portuguese (Portugal) (http://www.transifex.com/wp-"
@@ -28,8 +28,8 @@ msgstr ""
28
  #: build/wp-ulike/admin/admin-ajax.php:76
29
  #: build/wp-ulike/admin/admin-ajax.php:82
30
  #: build/wp-ulike/inc/frontend-ajax.php:34
31
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
32
- #: inc/frontend-ajax.php:151
33
  msgid "Error: Something Wrong Happened!"
34
  msgstr ""
35
 
@@ -45,9 +45,9 @@ msgstr ""
45
  msgid "It's Ok!"
46
  msgstr ""
47
 
48
- #: admin/admin-functions.php:225
49
  #: admin/classes/class-wp-ulike-admin-panel.php:517
50
- #: build/wp-ulike/admin/admin-functions.php:228
51
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
52
  #, fuzzy
53
  msgid "Button"
@@ -75,44 +75,58 @@ msgstr ""
75
  msgid "Sure, I'd love to!"
76
  msgstr ""
77
 
78
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
79
  #: build/wp-ulike/admin/admin-hooks.php:142
80
- #: build/wp-ulike/admin/admin-hooks.php:204
81
  msgid "Not Now"
82
  msgstr ""
83
 
84
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
85
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
86
  #: build/wp-ulike/admin/admin-hooks.php:174
87
- #: build/wp-ulike/admin/admin-hooks.php:210
 
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
- msgid "Boost Your SEO by Using Schema Rich Snippets"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
98
- "Plugin which can manage +13 types of Schema Markups to make a better "
99
- "connection between your webpages and search engines. Now you can talk in "
100
- "search engine language and tell them which type of content you are promoting."
101
  msgstr ""
102
 
103
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
104
- #: build/wp-ulike/admin/admin-hooks.php:170
105
- #: build/wp-ulike/admin/admin-hooks.php:200
 
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Para mais informação:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
- msgid "WP Ulike Pro is Ready :))"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
116
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
117
  "been released with some new features such as support for Dislike button, "
118
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -120,8 +134,8 @@ msgid ""
120
  "provide a full support for our users."
121
  msgstr ""
122
 
123
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
124
- #: build/wp-ulike/admin/admin-hooks.php:239
125
  #: build/wp-ulike/admin/includes/templates/about.php:29
126
  msgid "Go Pro"
127
  msgstr ""
@@ -137,30 +151,30 @@ msgid "No information was found in this database!"
137
  msgstr ""
138
 
139
  #: admin/classes/class-wp-ulike-admin-pages.php:27
140
- #: admin/includes/templates/posts-logs.php:39
141
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
142
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
143
  msgid "Post Likes Logs"
144
  msgstr "Registos de Gostos do Artigo"
145
 
146
  #: admin/classes/class-wp-ulike-admin-pages.php:35
147
- #: admin/includes/templates/comments-logs.php:39
148
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
149
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
150
  msgid "Comment Likes Logs"
151
  msgstr ""
152
 
153
  #: admin/classes/class-wp-ulike-admin-pages.php:43
154
- #: admin/includes/templates/activities-logs.php:39
155
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
156
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
157
  msgid "Activity Likes Logs"
158
  msgstr ""
159
 
160
  #: admin/classes/class-wp-ulike-admin-pages.php:51
161
- #: admin/includes/templates/topics-logs.php:39
162
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
163
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
164
  msgid "Topics Likes Logs"
165
  msgstr ""
166
 
@@ -179,23 +193,23 @@ msgid "About"
179
  msgstr "Sobre"
180
 
181
  #: admin/classes/class-wp-ulike-admin-pages.php:133
182
- #: admin/includes/templates/activities-logs.php:42
183
- #: admin/includes/templates/activities-logs.php:119
184
- #: admin/includes/templates/comments-logs.php:42
185
- #: admin/includes/templates/comments-logs.php:129
186
- #: admin/includes/templates/posts-logs.php:42
187
- #: admin/includes/templates/posts-logs.php:118
188
- #: admin/includes/templates/topics-logs.php:42
189
- #: admin/includes/templates/topics-logs.php:118
190
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
199
  msgid "Logs"
200
  msgstr "Registos"
201
 
@@ -1041,16 +1055,16 @@ msgstr "Atividade de Metadados"
1041
  msgid "Topics Stats"
1042
  msgstr "Estado dos Gostos de Artigos"
1043
 
1044
- #: admin/classes/class-wp-ulike-stats.php:274
1045
- #: admin/includes/templates/activities-logs.php:76
1046
- #: admin/includes/templates/comments-logs.php:81
1047
- #: admin/includes/templates/posts-logs.php:75
1048
- #: admin/includes/templates/topics-logs.php:75
1049
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1050
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1051
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1052
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1053
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1054
  msgid "Guest User"
1055
  msgstr "Utilizador Convidado"
1056
 
@@ -1339,115 +1353,177 @@ msgstr "Líder do Projeto e Programador"
1339
  msgid "No data found! This is because there is still no data in your database."
1340
  msgstr ""
1341
 
1342
- #: admin/includes/templates/activities-logs.php:38
1343
- #: admin/includes/templates/comments-logs.php:38
1344
- #: admin/includes/templates/posts-logs.php:38
1345
- #: admin/includes/templates/topics-logs.php:38
1346
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1347
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1348
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1349
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1350
  msgid "WP ULike Logs"
1351
  msgstr "Registos de WP ULike"
1352
 
1353
- #: admin/includes/templates/activities-logs.php:49
1354
- #: admin/includes/templates/comments-logs.php:49
1355
- #: admin/includes/templates/posts-logs.php:49
1356
- #: admin/includes/templates/topics-logs.php:49
1357
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1358
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1359
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1360
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1361
  msgid "ID"
1362
  msgstr "Id."
1363
 
1364
- #: admin/includes/templates/activities-logs.php:50
1365
- #: admin/includes/templates/comments-logs.php:50
1366
- #: admin/includes/templates/posts-logs.php:50
1367
- #: admin/includes/templates/topics-logs.php:50
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1369
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1370
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1371
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1372
  msgid "Username"
1373
  msgstr "Nome de utilizador"
1374
 
1375
- #: admin/includes/templates/activities-logs.php:51
1376
- #: admin/includes/templates/comments-logs.php:51
1377
- #: admin/includes/templates/posts-logs.php:51
1378
- #: admin/includes/templates/topics-logs.php:51
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1380
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1381
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1382
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1383
  msgid "Status"
1384
  msgstr "Estado"
1385
 
1386
- #: admin/includes/templates/activities-logs.php:52
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1388
  msgid "Activity ID"
1389
  msgstr "Id. da Atividade"
1390
 
1391
- #: admin/includes/templates/activities-logs.php:53
1392
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1393
  msgid "Permalink"
1394
  msgstr "Hiperligação permanente"
1395
 
1396
- #: admin/includes/templates/activities-logs.php:54
1397
- #: admin/includes/templates/comments-logs.php:55
1398
- #: admin/includes/templates/posts-logs.php:54
1399
- #: admin/includes/templates/topics-logs.php:54
1400
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1401
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1402
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1403
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1404
  msgid "Date / Time"
1405
  msgstr "Data / Hora"
1406
 
1407
- #: admin/includes/templates/activities-logs.php:55
1408
- #: admin/includes/templates/comments-logs.php:56
1409
- #: admin/includes/templates/posts-logs.php:55
1410
- #: admin/includes/templates/topics-logs.php:55
1411
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1412
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1413
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1414
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1415
  msgid "IP"
1416
  msgstr "IP"
1417
 
1418
- #: admin/includes/templates/activities-logs.php:56
1419
- #: admin/includes/templates/comments-logs.php:57
1420
- #: admin/includes/templates/posts-logs.php:56
1421
- #: admin/includes/templates/topics-logs.php:56
1422
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1423
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1424
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1425
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1426
  msgid "Actions"
1427
  msgstr "Ações"
1428
 
1429
- #: admin/includes/templates/activities-logs.php:92
1430
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1431
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1432
  msgstr "<a href=\"%1$s\">Hiperligação Permanente Atividade</a>"
1433
 
1434
- #: admin/includes/templates/comments-logs.php:52
1435
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1436
  msgid "Comment ID"
1437
  msgstr "Id. do Comentário"
1438
 
1439
- #: admin/includes/templates/comments-logs.php:53
1440
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1441
  msgid "Comment Author"
1442
  msgstr "Autor do Comentário"
1443
 
1444
- #: admin/includes/templates/comments-logs.php:54
1445
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1446
  msgid "Comment Text"
1447
  msgstr "Texto do Comentário"
1448
 
1449
- #: admin/includes/templates/comments-logs.php:63
1450
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1451
  msgid "Not Found!"
1452
  msgstr ""
1453
 
@@ -1457,61 +1533,31 @@ msgstr ""
1457
  msgid "WP ULike Premium"
1458
  msgstr "Definições do WP ULike"
1459
 
1460
- #: admin/includes/templates/go-pro.php:22
1461
- #: admin/includes/templates/statistics.php:48
1462
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1463
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1464
- msgid "Buy WP ULike Premium"
1465
- msgstr ""
1466
-
1467
- #: admin/includes/templates/go-pro.php:28
1468
- #: admin/includes/templates/statistics.php:53
1469
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1470
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1471
- #, fuzzy
1472
- msgid "More information"
1473
- msgstr "Para mais informação:"
1474
-
1475
- #: admin/includes/templates/go-pro.php:114
1476
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1477
  msgid ""
1478
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1479
  "ULike PRO plugin we fully support this page builder and have a variety of "
1480
  "widgets & controllers that make life much easier for you."
1481
  msgstr ""
1482
 
1483
- #: admin/includes/templates/go-pro.php:114
1484
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1485
  msgid ""
1486
  "Just drag your desired widget and drop it in your Elementor sections, "
1487
  "customize as you go and enjoy your like and dislike buttons on your contents."
1488
  msgstr ""
1489
 
1490
- #: admin/includes/templates/posts-logs.php:52
1491
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1492
  msgid "Post ID"
1493
  msgstr "Id. do Artigo"
1494
 
1495
- #: admin/includes/templates/posts-logs.php:53
1496
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1497
  msgid "Post Title"
1498
  msgstr "Título do Artigo"
1499
 
1500
- #: admin/includes/templates/statistics.php:45
1501
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1502
- msgid "Check Votings, Best Likers & Top contents"
1503
- msgstr ""
1504
-
1505
- #: admin/includes/templates/statistics.php:47
1506
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1507
- msgid ""
1508
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1509
- "users love and what annoys them in an instance. You can extract reports of "
1510
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1511
- "dateRange picker and status selector controllers, no confusing options and "
1512
- "coding needed."
1513
- msgstr ""
1514
-
1515
  #: admin/includes/templates/statistics.php:76
1516
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1517
  msgid "Total"
@@ -1563,13 +1609,13 @@ msgstr "Melhores Gostos"
1563
  msgid "Top"
1564
  msgstr "Dica da Ferramenta"
1565
 
1566
- #: admin/includes/templates/topics-logs.php:52
1567
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1568
  msgid "Topic ID"
1569
  msgstr "Id. do Tópico"
1570
 
1571
- #: admin/includes/templates/topics-logs.php:53
1572
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1573
  msgid "Topic Title"
1574
  msgstr ""
1575
 
@@ -1689,49 +1735,49 @@ msgstr ""
1689
  msgid "Are you sure to reset all options?"
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:429
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1694
  msgid "Are you sure?"
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:430
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1699
  msgid "Restoring options."
1700
  msgstr ""
1701
 
1702
- #: admin/settings/classes/setup.class.php:431
1703
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1704
  #, fuzzy
1705
  msgid "Importing options."
1706
  msgstr "Opções de ordenação:"
1707
 
1708
- #: admin/settings/classes/setup.class.php:434
1709
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1710
  msgid "Please enter %s or more characters"
1711
  msgstr ""
1712
 
1713
- #: admin/settings/classes/setup.class.php:435
1714
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1715
  msgid "Searching..."
1716
  msgstr ""
1717
 
1718
- #: admin/settings/classes/setup.class.php:436
1719
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1720
  msgid "No results match"
1721
  msgstr ""
1722
 
1723
- #: admin/settings/classes/setup.class.php:507
1724
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1725
  msgid "Ooops! This field type (%s) can not be used here, yet."
1726
  msgstr ""
1727
 
1728
- #: admin/settings/classes/setup.class.php:570
1729
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1730
  msgid "This field class is not available!"
1731
  msgstr ""
1732
 
1733
- #: admin/settings/classes/setup.class.php:574
1734
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1735
  msgid "This type is not found!"
1736
  msgstr ""
1737
 
@@ -2608,17 +2654,17 @@ msgid ""
2608
  msgstr ""
2609
 
2610
  #: build/wp-ulike/inc/frontend-ajax.php:42
2611
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2612
- #: inc/frontend-ajax.php:164
2613
  msgid "Error: This Method Is Not Exist!"
2614
  msgstr "Erro: este método não existe!"
2615
 
2616
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2617
- msgid "Notice: The likers box is refreshed only for logged in users!"
2618
  msgstr ""
2619
 
2620
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2621
- msgid "Notice: The likers box is not activated!"
2622
  msgstr ""
2623
 
2624
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2664,15 +2710,15 @@ msgstr ""
2664
  msgid "Table info is empty."
2665
  msgstr ""
2666
 
2667
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2668
  msgid "You need to login in order to like this post: "
2669
  msgstr "Precisa de iniciar a sessão para poder gostar este artigo: "
2670
 
2671
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2672
  msgid "click here"
2673
  msgstr "clique aqui"
2674
 
2675
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2676
  #, fuzzy
2677
  msgid "Like This"
2678
  msgstr "Gostar"
7
  msgstr ""
8
  "Project-Id-Version: WP ULike\n"
9
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
10
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
11
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
12
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
13
  "Language-Team: Portuguese (Portugal) (http://www.transifex.com/wp-"
28
  #: build/wp-ulike/admin/admin-ajax.php:76
29
  #: build/wp-ulike/admin/admin-ajax.php:82
30
  #: build/wp-ulike/inc/frontend-ajax.php:34
31
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
32
+ #: inc/frontend-ajax.php:152
33
  msgid "Error: Something Wrong Happened!"
34
  msgstr ""
35
 
45
  msgid "It's Ok!"
46
  msgstr ""
47
 
48
+ #: admin/admin-functions.php:231
49
  #: admin/classes/class-wp-ulike-admin-panel.php:517
50
+ #: build/wp-ulike/admin/admin-functions.php:234
51
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
52
  #, fuzzy
53
  msgid "Button"
75
  msgid "Sure, I'd love to!"
76
  msgstr ""
77
 
78
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
79
  #: build/wp-ulike/admin/admin-hooks.php:142
80
+ #: build/wp-ulike/admin/admin-hooks.php:227
81
  msgid "Not Now"
82
  msgstr ""
83
 
84
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
85
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
86
+ #: build/wp-ulike/admin/admin-hooks.php:148
87
  #: build/wp-ulike/admin/admin-hooks.php:174
88
+ #: build/wp-ulike/admin/admin-hooks.php:197
89
+ #: build/wp-ulike/admin/admin-hooks.php:233
90
  msgid "No thanks and never ask me again"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
94
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
95
  msgstr ""
96
 
97
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
98
  msgid ""
99
+ "Having votes for your content without a tool for measuring the results is "
100
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
101
+ "data in the WP ULike professional Logs panel."
 
102
  msgstr ""
103
 
104
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
105
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
106
+ #: build/wp-ulike/admin/admin-hooks.php:193
107
+ #: build/wp-ulike/admin/admin-hooks.php:223
108
  #, fuzzy
109
  msgid "Get More Information"
110
  msgstr "Para mais informação:"
111
 
112
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
113
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
114
  msgstr ""
115
 
116
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
117
  msgid ""
118
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
119
+ "Plugin which can manage +13 types of Schema Markups to make a better "
120
+ "connection between your webpages and search engines. Now you can talk in "
121
+ "search engine language and tell them which type of content you are promoting."
122
+ msgstr ""
123
+
124
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
125
+ msgid "WP Ulike Pro is Ready :))"
126
+ msgstr ""
127
+
128
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
129
+ msgid ""
130
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
131
  "been released with some new features such as support for Dislike button, "
132
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
134
  "provide a full support for our users."
135
  msgstr ""
136
 
137
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
138
+ #: build/wp-ulike/admin/admin-hooks.php:262
139
  #: build/wp-ulike/admin/includes/templates/about.php:29
140
  msgid "Go Pro"
141
  msgstr ""
151
  msgstr ""
152
 
153
  #: admin/classes/class-wp-ulike-admin-pages.php:27
154
+ #: admin/includes/templates/posts-logs.php:61
155
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
156
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
157
  msgid "Post Likes Logs"
158
  msgstr "Registos de Gostos do Artigo"
159
 
160
  #: admin/classes/class-wp-ulike-admin-pages.php:35
161
+ #: admin/includes/templates/comments-logs.php:61
162
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
163
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
164
  msgid "Comment Likes Logs"
165
  msgstr ""
166
 
167
  #: admin/classes/class-wp-ulike-admin-pages.php:43
168
+ #: admin/includes/templates/activities-logs.php:61
169
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
170
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
171
  msgid "Activity Likes Logs"
172
  msgstr ""
173
 
174
  #: admin/classes/class-wp-ulike-admin-pages.php:51
175
+ #: admin/includes/templates/topics-logs.php:61
176
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
177
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
178
  msgid "Topics Likes Logs"
179
  msgstr ""
180
 
193
  msgstr "Sobre"
194
 
195
  #: admin/classes/class-wp-ulike-admin-pages.php:133
196
+ #: admin/includes/templates/activities-logs.php:64
197
+ #: admin/includes/templates/activities-logs.php:141
198
+ #: admin/includes/templates/comments-logs.php:64
199
+ #: admin/includes/templates/comments-logs.php:151
200
+ #: admin/includes/templates/posts-logs.php:64
201
+ #: admin/includes/templates/posts-logs.php:140
202
+ #: admin/includes/templates/topics-logs.php:64
203
+ #: admin/includes/templates/topics-logs.php:140
204
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
213
  msgid "Logs"
214
  msgstr "Registos"
215
 
1055
  msgid "Topics Stats"
1056
  msgstr "Estado dos Gostos de Artigos"
1057
 
1058
+ #: admin/classes/class-wp-ulike-stats.php:273
1059
+ #: admin/includes/templates/activities-logs.php:98
1060
+ #: admin/includes/templates/comments-logs.php:103
1061
+ #: admin/includes/templates/posts-logs.php:97
1062
+ #: admin/includes/templates/topics-logs.php:97
1063
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1064
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1065
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1066
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1067
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1068
  msgid "Guest User"
1069
  msgstr "Utilizador Convidado"
1070
 
1353
  msgid "No data found! This is because there is still no data in your database."
1354
  msgstr ""
1355
 
1356
+ #: admin/includes/templates/activities-logs.php:40
1357
+ #: admin/includes/templates/comments-logs.php:40
1358
+ #: admin/includes/templates/posts-logs.php:40
1359
+ #: admin/includes/templates/statistics.php:45
1360
+ #: admin/includes/templates/topics-logs.php:40
1361
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1362
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1363
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1364
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1365
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1366
+ msgid "Check Votings, Best Likers & Top contents"
1367
+ msgstr ""
1368
+
1369
+ #: admin/includes/templates/activities-logs.php:42
1370
+ #: admin/includes/templates/comments-logs.php:42
1371
+ #: admin/includes/templates/posts-logs.php:42
1372
+ #: admin/includes/templates/statistics.php:47
1373
+ #: admin/includes/templates/topics-logs.php:42
1374
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1375
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1376
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1377
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1378
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1379
+ msgid ""
1380
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1381
+ "users love and what annoys them in an instance. You can extract reports of "
1382
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1383
+ "dateRange picker and status selector controllers, no confusing options and "
1384
+ "coding needed."
1385
+ msgstr ""
1386
+
1387
+ #: admin/includes/templates/activities-logs.php:43
1388
+ #: admin/includes/templates/comments-logs.php:43
1389
+ #: admin/includes/templates/go-pro.php:22
1390
+ #: admin/includes/templates/posts-logs.php:43
1391
+ #: admin/includes/templates/statistics.php:48
1392
+ #: admin/includes/templates/topics-logs.php:43
1393
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1394
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1395
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1396
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1397
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1398
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1399
+ msgid "Buy WP ULike Premium"
1400
+ msgstr ""
1401
+
1402
+ #: admin/includes/templates/activities-logs.php:48
1403
+ #: admin/includes/templates/comments-logs.php:48
1404
+ #: admin/includes/templates/go-pro.php:28
1405
+ #: admin/includes/templates/posts-logs.php:48
1406
+ #: admin/includes/templates/statistics.php:53
1407
+ #: admin/includes/templates/topics-logs.php:48
1408
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1409
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1410
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1412
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1413
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1414
+ #, fuzzy
1415
+ msgid "More information"
1416
+ msgstr "Para mais informação:"
1417
+
1418
+ #: admin/includes/templates/activities-logs.php:60
1419
+ #: admin/includes/templates/comments-logs.php:60
1420
+ #: admin/includes/templates/posts-logs.php:60
1421
+ #: admin/includes/templates/topics-logs.php:60
1422
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1423
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1424
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1425
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1426
  msgid "WP ULike Logs"
1427
  msgstr "Registos de WP ULike"
1428
 
1429
+ #: admin/includes/templates/activities-logs.php:71
1430
+ #: admin/includes/templates/comments-logs.php:71
1431
+ #: admin/includes/templates/posts-logs.php:71
1432
+ #: admin/includes/templates/topics-logs.php:71
1433
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1434
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1435
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1436
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1437
  msgid "ID"
1438
  msgstr "Id."
1439
 
1440
+ #: admin/includes/templates/activities-logs.php:72
1441
+ #: admin/includes/templates/comments-logs.php:72
1442
+ #: admin/includes/templates/posts-logs.php:72
1443
+ #: admin/includes/templates/topics-logs.php:72
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1445
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1446
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1447
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1448
  msgid "Username"
1449
  msgstr "Nome de utilizador"
1450
 
1451
+ #: admin/includes/templates/activities-logs.php:73
1452
+ #: admin/includes/templates/comments-logs.php:73
1453
+ #: admin/includes/templates/posts-logs.php:73
1454
+ #: admin/includes/templates/topics-logs.php:73
1455
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1456
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1457
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1458
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1459
  msgid "Status"
1460
  msgstr "Estado"
1461
 
1462
+ #: admin/includes/templates/activities-logs.php:74
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1464
  msgid "Activity ID"
1465
  msgstr "Id. da Atividade"
1466
 
1467
+ #: admin/includes/templates/activities-logs.php:75
1468
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1469
  msgid "Permalink"
1470
  msgstr "Hiperligação permanente"
1471
 
1472
+ #: admin/includes/templates/activities-logs.php:76
1473
+ #: admin/includes/templates/comments-logs.php:77
1474
+ #: admin/includes/templates/posts-logs.php:76
1475
+ #: admin/includes/templates/topics-logs.php:76
1476
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1477
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1478
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1479
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1480
  msgid "Date / Time"
1481
  msgstr "Data / Hora"
1482
 
1483
+ #: admin/includes/templates/activities-logs.php:77
1484
+ #: admin/includes/templates/comments-logs.php:78
1485
+ #: admin/includes/templates/posts-logs.php:77
1486
+ #: admin/includes/templates/topics-logs.php:77
1487
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1488
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1489
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1490
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1491
  msgid "IP"
1492
  msgstr "IP"
1493
 
1494
+ #: admin/includes/templates/activities-logs.php:78
1495
+ #: admin/includes/templates/comments-logs.php:79
1496
+ #: admin/includes/templates/posts-logs.php:78
1497
+ #: admin/includes/templates/topics-logs.php:78
1498
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1499
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1500
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1501
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1502
  msgid "Actions"
1503
  msgstr "Ações"
1504
 
1505
+ #: admin/includes/templates/activities-logs.php:114
1506
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1507
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1508
  msgstr "<a href=\"%1$s\">Hiperligação Permanente Atividade</a>"
1509
 
1510
+ #: admin/includes/templates/comments-logs.php:74
1511
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1512
  msgid "Comment ID"
1513
  msgstr "Id. do Comentário"
1514
 
1515
+ #: admin/includes/templates/comments-logs.php:75
1516
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1517
  msgid "Comment Author"
1518
  msgstr "Autor do Comentário"
1519
 
1520
+ #: admin/includes/templates/comments-logs.php:76
1521
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1522
  msgid "Comment Text"
1523
  msgstr "Texto do Comentário"
1524
 
1525
+ #: admin/includes/templates/comments-logs.php:85
1526
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1527
  msgid "Not Found!"
1528
  msgstr ""
1529
 
1533
  msgid "WP ULike Premium"
1534
  msgstr "Definições do WP ULike"
1535
 
1536
+ #: admin/includes/templates/go-pro.php:119
1537
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1538
  msgid ""
1539
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1540
  "ULike PRO plugin we fully support this page builder and have a variety of "
1541
  "widgets & controllers that make life much easier for you."
1542
  msgstr ""
1543
 
1544
+ #: admin/includes/templates/go-pro.php:119
1545
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1546
  msgid ""
1547
  "Just drag your desired widget and drop it in your Elementor sections, "
1548
  "customize as you go and enjoy your like and dislike buttons on your contents."
1549
  msgstr ""
1550
 
1551
+ #: admin/includes/templates/posts-logs.php:74
1552
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1553
  msgid "Post ID"
1554
  msgstr "Id. do Artigo"
1555
 
1556
+ #: admin/includes/templates/posts-logs.php:75
1557
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1558
  msgid "Post Title"
1559
  msgstr "Título do Artigo"
1560
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1561
  #: admin/includes/templates/statistics.php:76
1562
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1563
  msgid "Total"
1609
  msgid "Top"
1610
  msgstr "Dica da Ferramenta"
1611
 
1612
+ #: admin/includes/templates/topics-logs.php:74
1613
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1614
  msgid "Topic ID"
1615
  msgstr "Id. do Tópico"
1616
 
1617
+ #: admin/includes/templates/topics-logs.php:75
1618
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1619
  msgid "Topic Title"
1620
  msgstr ""
1621
 
1735
  msgid "Are you sure to reset all options?"
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:436
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1740
  msgid "Are you sure?"
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:437
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1745
  msgid "Restoring options."
1746
  msgstr ""
1747
 
1748
+ #: admin/settings/classes/setup.class.php:438
1749
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1750
  #, fuzzy
1751
  msgid "Importing options."
1752
  msgstr "Opções de ordenação:"
1753
 
1754
+ #: admin/settings/classes/setup.class.php:441
1755
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1756
  msgid "Please enter %s or more characters"
1757
  msgstr ""
1758
 
1759
+ #: admin/settings/classes/setup.class.php:442
1760
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1761
  msgid "Searching..."
1762
  msgstr ""
1763
 
1764
+ #: admin/settings/classes/setup.class.php:443
1765
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1766
  msgid "No results match"
1767
  msgstr ""
1768
 
1769
+ #: admin/settings/classes/setup.class.php:514
1770
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1771
  msgid "Ooops! This field type (%s) can not be used here, yet."
1772
  msgstr ""
1773
 
1774
+ #: admin/settings/classes/setup.class.php:577
1775
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1776
  msgid "This field class is not available!"
1777
  msgstr ""
1778
 
1779
+ #: admin/settings/classes/setup.class.php:581
1780
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1781
  msgid "This type is not found!"
1782
  msgstr ""
1783
 
2654
  msgstr ""
2655
 
2656
  #: build/wp-ulike/inc/frontend-ajax.php:42
2657
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2658
+ #: inc/frontend-ajax.php:170
2659
  msgid "Error: This Method Is Not Exist!"
2660
  msgstr "Erro: este método não existe!"
2661
 
2662
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2663
+ msgid "Notice: The likers box is not activated!"
2664
  msgstr ""
2665
 
2666
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2667
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2668
  msgstr ""
2669
 
2670
  #: build/wp-ulike/inc/general-functions.php:85
2710
  msgid "Table info is empty."
2711
  msgstr ""
2712
 
2713
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2714
  msgid "You need to login in order to like this post: "
2715
  msgstr "Precisa de iniciar a sessão para poder gostar este artigo: "
2716
 
2717
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2718
  msgid "click here"
2719
  msgstr "clique aqui"
2720
 
2721
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2722
  #, fuzzy
2723
  msgid "Like This"
2724
  msgstr "Gostar"
lang/wp-ulike-ro_RO.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/wp-"
@@ -27,8 +27,8 @@ msgstr ""
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
31
- #: inc/frontend-ajax.php:151
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
@@ -44,9 +44,9 @@ msgstr ""
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
- #: admin/admin-functions.php:225
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
- #: build/wp-ulike/admin/admin-functions.php:228
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  #, fuzzy
52
  msgid "Button"
@@ -74,44 +74,58 @@ msgstr ""
74
  msgid "Sure, I'd love to!"
75
  msgstr ""
76
 
77
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
78
  #: build/wp-ulike/admin/admin-hooks.php:142
79
- #: build/wp-ulike/admin/admin-hooks.php:204
80
  msgid "Not Now"
81
  msgstr ""
82
 
83
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
84
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
- #: build/wp-ulike/admin/admin-hooks.php:210
 
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
- msgid "Boost Your SEO by Using Schema Rich Snippets"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
97
- "Plugin which can manage +13 types of Schema Markups to make a better "
98
- "connection between your webpages and search engines. Now you can talk in "
99
- "search engine language and tell them which type of content you are promoting."
100
  msgstr ""
101
 
102
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
103
- #: build/wp-ulike/admin/admin-hooks.php:170
104
- #: build/wp-ulike/admin/admin-hooks.php:200
 
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Pentru mai multe informații:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
- msgid "WP Ulike Pro is Ready :))"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
115
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
116
  "been released with some new features such as support for Dislike button, "
117
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -119,8 +133,8 @@ msgid ""
119
  "provide a full support for our users."
120
  msgstr ""
121
 
122
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
123
- #: build/wp-ulike/admin/admin-hooks.php:239
124
  #: build/wp-ulike/admin/includes/templates/about.php:29
125
  msgid "Go Pro"
126
  msgstr ""
@@ -136,30 +150,30 @@ msgid "No information was found in this database!"
136
  msgstr ""
137
 
138
  #: admin/classes/class-wp-ulike-admin-pages.php:27
139
- #: admin/includes/templates/posts-logs.php:39
140
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
141
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
142
  msgid "Post Likes Logs"
143
  msgstr ""
144
 
145
  #: admin/classes/class-wp-ulike-admin-pages.php:35
146
- #: admin/includes/templates/comments-logs.php:39
147
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
148
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
149
  msgid "Comment Likes Logs"
150
  msgstr ""
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:43
153
- #: admin/includes/templates/activities-logs.php:39
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
155
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
156
  msgid "Activity Likes Logs"
157
  msgstr ""
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:51
160
- #: admin/includes/templates/topics-logs.php:39
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
162
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
163
  msgid "Topics Likes Logs"
164
  msgstr ""
165
 
@@ -179,23 +193,23 @@ msgid "About"
179
  msgstr ""
180
 
181
  #: admin/classes/class-wp-ulike-admin-pages.php:133
182
- #: admin/includes/templates/activities-logs.php:42
183
- #: admin/includes/templates/activities-logs.php:119
184
- #: admin/includes/templates/comments-logs.php:42
185
- #: admin/includes/templates/comments-logs.php:129
186
- #: admin/includes/templates/posts-logs.php:42
187
- #: admin/includes/templates/posts-logs.php:118
188
- #: admin/includes/templates/topics-logs.php:42
189
- #: admin/includes/templates/topics-logs.php:118
190
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
199
  msgid "Logs"
200
  msgstr "Registre"
201
 
@@ -1024,16 +1038,16 @@ msgstr ""
1024
  msgid "Topics Stats"
1025
  msgstr ""
1026
 
1027
- #: admin/classes/class-wp-ulike-stats.php:274
1028
- #: admin/includes/templates/activities-logs.php:76
1029
- #: admin/includes/templates/comments-logs.php:81
1030
- #: admin/includes/templates/posts-logs.php:75
1031
- #: admin/includes/templates/topics-logs.php:75
1032
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1033
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1034
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1035
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1036
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1037
  msgid "Guest User"
1038
  msgstr ""
1039
 
@@ -1319,115 +1333,177 @@ msgstr ""
1319
  msgid "No data found! This is because there is still no data in your database."
1320
  msgstr ""
1321
 
1322
- #: admin/includes/templates/activities-logs.php:38
1323
- #: admin/includes/templates/comments-logs.php:38
1324
- #: admin/includes/templates/posts-logs.php:38
1325
- #: admin/includes/templates/topics-logs.php:38
1326
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1327
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1328
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1329
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1330
  msgid "WP ULike Logs"
1331
  msgstr ""
1332
 
1333
- #: admin/includes/templates/activities-logs.php:49
1334
- #: admin/includes/templates/comments-logs.php:49
1335
- #: admin/includes/templates/posts-logs.php:49
1336
- #: admin/includes/templates/topics-logs.php:49
1337
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1338
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1339
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1340
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1341
  msgid "ID"
1342
  msgstr "ID"
1343
 
1344
- #: admin/includes/templates/activities-logs.php:50
1345
- #: admin/includes/templates/comments-logs.php:50
1346
- #: admin/includes/templates/posts-logs.php:50
1347
- #: admin/includes/templates/topics-logs.php:50
1348
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1349
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1350
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1351
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1352
  msgid "Username"
1353
  msgstr "Nume utilizator"
1354
 
1355
- #: admin/includes/templates/activities-logs.php:51
1356
- #: admin/includes/templates/comments-logs.php:51
1357
- #: admin/includes/templates/posts-logs.php:51
1358
- #: admin/includes/templates/topics-logs.php:51
1359
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1360
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1362
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1363
  msgid "Status"
1364
  msgstr "Stare"
1365
 
1366
- #: admin/includes/templates/activities-logs.php:52
1367
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1368
  msgid "Activity ID"
1369
  msgstr ""
1370
 
1371
- #: admin/includes/templates/activities-logs.php:53
1372
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1373
  msgid "Permalink"
1374
  msgstr ""
1375
 
1376
- #: admin/includes/templates/activities-logs.php:54
1377
- #: admin/includes/templates/comments-logs.php:55
1378
- #: admin/includes/templates/posts-logs.php:54
1379
- #: admin/includes/templates/topics-logs.php:54
1380
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1381
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1382
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1383
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1384
  msgid "Date / Time"
1385
  msgstr ""
1386
 
1387
- #: admin/includes/templates/activities-logs.php:55
1388
- #: admin/includes/templates/comments-logs.php:56
1389
- #: admin/includes/templates/posts-logs.php:55
1390
- #: admin/includes/templates/topics-logs.php:55
1391
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1392
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1393
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1394
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1395
  msgid "IP"
1396
  msgstr ""
1397
 
1398
- #: admin/includes/templates/activities-logs.php:56
1399
- #: admin/includes/templates/comments-logs.php:57
1400
- #: admin/includes/templates/posts-logs.php:56
1401
- #: admin/includes/templates/topics-logs.php:56
1402
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1403
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1404
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1405
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1406
  msgid "Actions"
1407
  msgstr "Acțiuni"
1408
 
1409
- #: admin/includes/templates/activities-logs.php:92
1410
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1411
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1412
  msgstr ""
1413
 
1414
- #: admin/includes/templates/comments-logs.php:52
1415
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1416
  msgid "Comment ID"
1417
  msgstr ""
1418
 
1419
- #: admin/includes/templates/comments-logs.php:53
1420
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1421
  msgid "Comment Author"
1422
  msgstr ""
1423
 
1424
- #: admin/includes/templates/comments-logs.php:54
1425
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1426
  msgid "Comment Text"
1427
  msgstr ""
1428
 
1429
- #: admin/includes/templates/comments-logs.php:63
1430
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1431
  msgid "Not Found!"
1432
  msgstr ""
1433
 
@@ -1436,61 +1512,31 @@ msgstr ""
1436
  msgid "WP ULike Premium"
1437
  msgstr ""
1438
 
1439
- #: admin/includes/templates/go-pro.php:22
1440
- #: admin/includes/templates/statistics.php:48
1441
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1442
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1443
- msgid "Buy WP ULike Premium"
1444
- msgstr ""
1445
-
1446
- #: admin/includes/templates/go-pro.php:28
1447
- #: admin/includes/templates/statistics.php:53
1448
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1449
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1450
- #, fuzzy
1451
- msgid "More information"
1452
- msgstr "Pentru mai multe informații:"
1453
-
1454
- #: admin/includes/templates/go-pro.php:114
1455
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1456
  msgid ""
1457
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1458
  "ULike PRO plugin we fully support this page builder and have a variety of "
1459
  "widgets & controllers that make life much easier for you."
1460
  msgstr ""
1461
 
1462
- #: admin/includes/templates/go-pro.php:114
1463
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1464
  msgid ""
1465
  "Just drag your desired widget and drop it in your Elementor sections, "
1466
  "customize as you go and enjoy your like and dislike buttons on your contents."
1467
  msgstr ""
1468
 
1469
- #: admin/includes/templates/posts-logs.php:52
1470
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1471
  msgid "Post ID"
1472
  msgstr ""
1473
 
1474
- #: admin/includes/templates/posts-logs.php:53
1475
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1476
  msgid "Post Title"
1477
  msgstr ""
1478
 
1479
- #: admin/includes/templates/statistics.php:45
1480
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1481
- msgid "Check Votings, Best Likers & Top contents"
1482
- msgstr ""
1483
-
1484
- #: admin/includes/templates/statistics.php:47
1485
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1486
- msgid ""
1487
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1488
- "users love and what annoys them in an instance. You can extract reports of "
1489
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1490
- "dateRange picker and status selector controllers, no confusing options and "
1491
- "coding needed."
1492
- msgstr ""
1493
-
1494
  #: admin/includes/templates/statistics.php:76
1495
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1496
  msgid "Total"
@@ -1539,13 +1585,13 @@ msgstr ""
1539
  msgid "Top"
1540
  msgstr ""
1541
 
1542
- #: admin/includes/templates/topics-logs.php:52
1543
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1544
  msgid "Topic ID"
1545
  msgstr ""
1546
 
1547
- #: admin/includes/templates/topics-logs.php:53
1548
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1549
  msgid "Topic Title"
1550
  msgstr ""
1551
 
@@ -1664,48 +1710,48 @@ msgstr ""
1664
  msgid "Are you sure to reset all options?"
1665
  msgstr ""
1666
 
1667
- #: admin/settings/classes/setup.class.php:429
1668
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1669
  msgid "Are you sure?"
1670
  msgstr ""
1671
 
1672
- #: admin/settings/classes/setup.class.php:430
1673
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1674
  msgid "Restoring options."
1675
  msgstr ""
1676
 
1677
- #: admin/settings/classes/setup.class.php:431
1678
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1679
  msgid "Importing options."
1680
  msgstr ""
1681
 
1682
- #: admin/settings/classes/setup.class.php:434
1683
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1684
  msgid "Please enter %s or more characters"
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:435
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1689
  msgid "Searching..."
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:436
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1694
  msgid "No results match"
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:507
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1699
  msgid "Ooops! This field type (%s) can not be used here, yet."
1700
  msgstr ""
1701
 
1702
- #: admin/settings/classes/setup.class.php:570
1703
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1704
  msgid "This field class is not available!"
1705
  msgstr ""
1706
 
1707
- #: admin/settings/classes/setup.class.php:574
1708
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1709
  msgid "This type is not found!"
1710
  msgstr ""
1711
 
@@ -2575,17 +2621,17 @@ msgid ""
2575
  msgstr ""
2576
 
2577
  #: build/wp-ulike/inc/frontend-ajax.php:42
2578
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2579
- #: inc/frontend-ajax.php:164
2580
  msgid "Error: This Method Is Not Exist!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2584
- msgid "Notice: The likers box is refreshed only for logged in users!"
2585
  msgstr ""
2586
 
2587
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2588
- msgid "Notice: The likers box is not activated!"
2589
  msgstr ""
2590
 
2591
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2630,15 +2676,15 @@ msgstr ""
2630
  msgid "Table info is empty."
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2634
  msgid "You need to login in order to like this post: "
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2638
  msgid "click here"
2639
  msgstr ""
2640
 
2641
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2642
  #, fuzzy
2643
  msgid "Like This"
2644
  msgstr "Apreciaţi acest modul?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/wp-"
27
  #: build/wp-ulike/admin/admin-ajax.php:76
28
  #: build/wp-ulike/admin/admin-ajax.php:82
29
  #: build/wp-ulike/inc/frontend-ajax.php:34
30
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
31
+ #: inc/frontend-ajax.php:152
32
  msgid "Error: Something Wrong Happened!"
33
  msgstr ""
34
 
44
  msgid "It's Ok!"
45
  msgstr ""
46
 
47
+ #: admin/admin-functions.php:231
48
  #: admin/classes/class-wp-ulike-admin-panel.php:517
49
+ #: build/wp-ulike/admin/admin-functions.php:234
50
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
51
  #, fuzzy
52
  msgid "Button"
74
  msgid "Sure, I'd love to!"
75
  msgstr ""
76
 
77
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
78
  #: build/wp-ulike/admin/admin-hooks.php:142
79
+ #: build/wp-ulike/admin/admin-hooks.php:227
80
  msgid "Not Now"
81
  msgstr ""
82
 
83
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
84
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
85
+ #: build/wp-ulike/admin/admin-hooks.php:148
86
  #: build/wp-ulike/admin/admin-hooks.php:174
87
+ #: build/wp-ulike/admin/admin-hooks.php:197
88
+ #: build/wp-ulike/admin/admin-hooks.php:233
89
  msgid "No thanks and never ask me again"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
93
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
94
  msgstr ""
95
 
96
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
97
  msgid ""
98
+ "Having votes for your content without a tool for measuring the results is "
99
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
100
+ "data in the WP ULike professional Logs panel."
 
101
  msgstr ""
102
 
103
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
104
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
105
+ #: build/wp-ulike/admin/admin-hooks.php:193
106
+ #: build/wp-ulike/admin/admin-hooks.php:223
107
  #, fuzzy
108
  msgid "Get More Information"
109
  msgstr "Pentru mai multe informații:"
110
 
111
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
112
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
113
  msgstr ""
114
 
115
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
116
  msgid ""
117
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
118
+ "Plugin which can manage +13 types of Schema Markups to make a better "
119
+ "connection between your webpages and search engines. Now you can talk in "
120
+ "search engine language and tell them which type of content you are promoting."
121
+ msgstr ""
122
+
123
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
124
+ msgid "WP Ulike Pro is Ready :))"
125
+ msgstr ""
126
+
127
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
128
+ msgid ""
129
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
130
  "been released with some new features such as support for Dislike button, "
131
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
133
  "provide a full support for our users."
134
  msgstr ""
135
 
136
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
137
+ #: build/wp-ulike/admin/admin-hooks.php:262
138
  #: build/wp-ulike/admin/includes/templates/about.php:29
139
  msgid "Go Pro"
140
  msgstr ""
150
  msgstr ""
151
 
152
  #: admin/classes/class-wp-ulike-admin-pages.php:27
153
+ #: admin/includes/templates/posts-logs.php:61
154
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
155
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
156
  msgid "Post Likes Logs"
157
  msgstr ""
158
 
159
  #: admin/classes/class-wp-ulike-admin-pages.php:35
160
+ #: admin/includes/templates/comments-logs.php:61
161
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
162
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
163
  msgid "Comment Likes Logs"
164
  msgstr ""
165
 
166
  #: admin/classes/class-wp-ulike-admin-pages.php:43
167
+ #: admin/includes/templates/activities-logs.php:61
168
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
169
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
170
  msgid "Activity Likes Logs"
171
  msgstr ""
172
 
173
  #: admin/classes/class-wp-ulike-admin-pages.php:51
174
+ #: admin/includes/templates/topics-logs.php:61
175
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
176
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
177
  msgid "Topics Likes Logs"
178
  msgstr ""
179
 
193
  msgstr ""
194
 
195
  #: admin/classes/class-wp-ulike-admin-pages.php:133
196
+ #: admin/includes/templates/activities-logs.php:64
197
+ #: admin/includes/templates/activities-logs.php:141
198
+ #: admin/includes/templates/comments-logs.php:64
199
+ #: admin/includes/templates/comments-logs.php:151
200
+ #: admin/includes/templates/posts-logs.php:64
201
+ #: admin/includes/templates/posts-logs.php:140
202
+ #: admin/includes/templates/topics-logs.php:64
203
+ #: admin/includes/templates/topics-logs.php:140
204
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
213
  msgid "Logs"
214
  msgstr "Registre"
215
 
1038
  msgid "Topics Stats"
1039
  msgstr ""
1040
 
1041
+ #: admin/classes/class-wp-ulike-stats.php:273
1042
+ #: admin/includes/templates/activities-logs.php:98
1043
+ #: admin/includes/templates/comments-logs.php:103
1044
+ #: admin/includes/templates/posts-logs.php:97
1045
+ #: admin/includes/templates/topics-logs.php:97
1046
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1047
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1048
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1049
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1050
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1051
  msgid "Guest User"
1052
  msgstr ""
1053
 
1333
  msgid "No data found! This is because there is still no data in your database."
1334
  msgstr ""
1335
 
1336
+ #: admin/includes/templates/activities-logs.php:40
1337
+ #: admin/includes/templates/comments-logs.php:40
1338
+ #: admin/includes/templates/posts-logs.php:40
1339
+ #: admin/includes/templates/statistics.php:45
1340
+ #: admin/includes/templates/topics-logs.php:40
1341
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1342
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1343
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1344
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1345
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1346
+ msgid "Check Votings, Best Likers & Top contents"
1347
+ msgstr ""
1348
+
1349
+ #: admin/includes/templates/activities-logs.php:42
1350
+ #: admin/includes/templates/comments-logs.php:42
1351
+ #: admin/includes/templates/posts-logs.php:42
1352
+ #: admin/includes/templates/statistics.php:47
1353
+ #: admin/includes/templates/topics-logs.php:42
1354
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1355
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1356
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1357
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1358
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1359
+ msgid ""
1360
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1361
+ "users love and what annoys them in an instance. You can extract reports of "
1362
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1363
+ "dateRange picker and status selector controllers, no confusing options and "
1364
+ "coding needed."
1365
+ msgstr ""
1366
+
1367
+ #: admin/includes/templates/activities-logs.php:43
1368
+ #: admin/includes/templates/comments-logs.php:43
1369
+ #: admin/includes/templates/go-pro.php:22
1370
+ #: admin/includes/templates/posts-logs.php:43
1371
+ #: admin/includes/templates/statistics.php:48
1372
+ #: admin/includes/templates/topics-logs.php:43
1373
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1374
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1375
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1376
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1377
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1378
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1379
+ msgid "Buy WP ULike Premium"
1380
+ msgstr ""
1381
+
1382
+ #: admin/includes/templates/activities-logs.php:48
1383
+ #: admin/includes/templates/comments-logs.php:48
1384
+ #: admin/includes/templates/go-pro.php:28
1385
+ #: admin/includes/templates/posts-logs.php:48
1386
+ #: admin/includes/templates/statistics.php:53
1387
+ #: admin/includes/templates/topics-logs.php:48
1388
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1389
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1390
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1391
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1392
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1393
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1394
+ #, fuzzy
1395
+ msgid "More information"
1396
+ msgstr "Pentru mai multe informații:"
1397
+
1398
+ #: admin/includes/templates/activities-logs.php:60
1399
+ #: admin/includes/templates/comments-logs.php:60
1400
+ #: admin/includes/templates/posts-logs.php:60
1401
+ #: admin/includes/templates/topics-logs.php:60
1402
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1403
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1404
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1405
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1406
  msgid "WP ULike Logs"
1407
  msgstr ""
1408
 
1409
+ #: admin/includes/templates/activities-logs.php:71
1410
+ #: admin/includes/templates/comments-logs.php:71
1411
+ #: admin/includes/templates/posts-logs.php:71
1412
+ #: admin/includes/templates/topics-logs.php:71
1413
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1414
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1415
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1416
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1417
  msgid "ID"
1418
  msgstr "ID"
1419
 
1420
+ #: admin/includes/templates/activities-logs.php:72
1421
+ #: admin/includes/templates/comments-logs.php:72
1422
+ #: admin/includes/templates/posts-logs.php:72
1423
+ #: admin/includes/templates/topics-logs.php:72
1424
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1425
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1426
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1427
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1428
  msgid "Username"
1429
  msgstr "Nume utilizator"
1430
 
1431
+ #: admin/includes/templates/activities-logs.php:73
1432
+ #: admin/includes/templates/comments-logs.php:73
1433
+ #: admin/includes/templates/posts-logs.php:73
1434
+ #: admin/includes/templates/topics-logs.php:73
1435
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1436
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1437
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1438
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1439
  msgid "Status"
1440
  msgstr "Stare"
1441
 
1442
+ #: admin/includes/templates/activities-logs.php:74
1443
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1444
  msgid "Activity ID"
1445
  msgstr ""
1446
 
1447
+ #: admin/includes/templates/activities-logs.php:75
1448
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1449
  msgid "Permalink"
1450
  msgstr ""
1451
 
1452
+ #: admin/includes/templates/activities-logs.php:76
1453
+ #: admin/includes/templates/comments-logs.php:77
1454
+ #: admin/includes/templates/posts-logs.php:76
1455
+ #: admin/includes/templates/topics-logs.php:76
1456
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1457
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1458
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1459
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1460
  msgid "Date / Time"
1461
  msgstr ""
1462
 
1463
+ #: admin/includes/templates/activities-logs.php:77
1464
+ #: admin/includes/templates/comments-logs.php:78
1465
+ #: admin/includes/templates/posts-logs.php:77
1466
+ #: admin/includes/templates/topics-logs.php:77
1467
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1468
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1469
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1470
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1471
  msgid "IP"
1472
  msgstr ""
1473
 
1474
+ #: admin/includes/templates/activities-logs.php:78
1475
+ #: admin/includes/templates/comments-logs.php:79
1476
+ #: admin/includes/templates/posts-logs.php:78
1477
+ #: admin/includes/templates/topics-logs.php:78
1478
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1479
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1480
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1481
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1482
  msgid "Actions"
1483
  msgstr "Acțiuni"
1484
 
1485
+ #: admin/includes/templates/activities-logs.php:114
1486
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1487
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1488
  msgstr ""
1489
 
1490
+ #: admin/includes/templates/comments-logs.php:74
1491
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1492
  msgid "Comment ID"
1493
  msgstr ""
1494
 
1495
+ #: admin/includes/templates/comments-logs.php:75
1496
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1497
  msgid "Comment Author"
1498
  msgstr ""
1499
 
1500
+ #: admin/includes/templates/comments-logs.php:76
1501
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1502
  msgid "Comment Text"
1503
  msgstr ""
1504
 
1505
+ #: admin/includes/templates/comments-logs.php:85
1506
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1507
  msgid "Not Found!"
1508
  msgstr ""
1509
 
1512
  msgid "WP ULike Premium"
1513
  msgstr ""
1514
 
1515
+ #: admin/includes/templates/go-pro.php:119
1516
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1517
  msgid ""
1518
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1519
  "ULike PRO plugin we fully support this page builder and have a variety of "
1520
  "widgets & controllers that make life much easier for you."
1521
  msgstr ""
1522
 
1523
+ #: admin/includes/templates/go-pro.php:119
1524
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1525
  msgid ""
1526
  "Just drag your desired widget and drop it in your Elementor sections, "
1527
  "customize as you go and enjoy your like and dislike buttons on your contents."
1528
  msgstr ""
1529
 
1530
+ #: admin/includes/templates/posts-logs.php:74
1531
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1532
  msgid "Post ID"
1533
  msgstr ""
1534
 
1535
+ #: admin/includes/templates/posts-logs.php:75
1536
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1537
  msgid "Post Title"
1538
  msgstr ""
1539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1540
  #: admin/includes/templates/statistics.php:76
1541
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1542
  msgid "Total"
1585
  msgid "Top"
1586
  msgstr ""
1587
 
1588
+ #: admin/includes/templates/topics-logs.php:74
1589
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1590
  msgid "Topic ID"
1591
  msgstr ""
1592
 
1593
+ #: admin/includes/templates/topics-logs.php:75
1594
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1595
  msgid "Topic Title"
1596
  msgstr ""
1597
 
1710
  msgid "Are you sure to reset all options?"
1711
  msgstr ""
1712
 
1713
+ #: admin/settings/classes/setup.class.php:436
1714
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1715
  msgid "Are you sure?"
1716
  msgstr ""
1717
 
1718
+ #: admin/settings/classes/setup.class.php:437
1719
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1720
  msgid "Restoring options."
1721
  msgstr ""
1722
 
1723
+ #: admin/settings/classes/setup.class.php:438
1724
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1725
  msgid "Importing options."
1726
  msgstr ""
1727
 
1728
+ #: admin/settings/classes/setup.class.php:441
1729
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1730
  msgid "Please enter %s or more characters"
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:442
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1735
  msgid "Searching..."
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:443
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1740
  msgid "No results match"
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:514
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1745
  msgid "Ooops! This field type (%s) can not be used here, yet."
1746
  msgstr ""
1747
 
1748
+ #: admin/settings/classes/setup.class.php:577
1749
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1750
  msgid "This field class is not available!"
1751
  msgstr ""
1752
 
1753
+ #: admin/settings/classes/setup.class.php:581
1754
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1755
  msgid "This type is not found!"
1756
  msgstr ""
1757
 
2621
  msgstr ""
2622
 
2623
  #: build/wp-ulike/inc/frontend-ajax.php:42
2624
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2625
+ #: inc/frontend-ajax.php:170
2626
  msgid "Error: This Method Is Not Exist!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2630
+ msgid "Notice: The likers box is not activated!"
2631
  msgstr ""
2632
 
2633
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2634
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2635
  msgstr ""
2636
 
2637
  #: build/wp-ulike/inc/general-functions.php:85
2676
  msgid "Table info is empty."
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2680
  msgid "You need to login in order to like this post: "
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2684
  msgid "click here"
2685
  msgstr ""
2686
 
2687
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2688
  #, fuzzy
2689
  msgid "Like This"
2690
  msgstr "Apreciaţi acest modul?"
lang/wp-ulike-ru_RU.po CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP ULike\n"
8
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
9
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
10
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
11
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/wp-"
@@ -29,8 +29,8 @@ msgstr ""
29
  #: build/wp-ulike/admin/admin-ajax.php:76
30
  #: build/wp-ulike/admin/admin-ajax.php:82
31
  #: build/wp-ulike/inc/frontend-ajax.php:34
32
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
33
- #: inc/frontend-ajax.php:151
34
  msgid "Error: Something Wrong Happened!"
35
  msgstr ""
36
 
@@ -46,9 +46,9 @@ msgstr ""
46
  msgid "It's Ok!"
47
  msgstr ""
48
 
49
- #: admin/admin-functions.php:225
50
  #: admin/classes/class-wp-ulike-admin-panel.php:517
51
- #: build/wp-ulike/admin/admin-functions.php:228
52
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
53
  #, fuzzy
54
  msgid "Button"
@@ -76,44 +76,58 @@ msgstr ""
76
  msgid "Sure, I'd love to!"
77
  msgstr ""
78
 
79
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
80
  #: build/wp-ulike/admin/admin-hooks.php:142
81
- #: build/wp-ulike/admin/admin-hooks.php:204
82
  msgid "Not Now"
83
  msgstr ""
84
 
85
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
86
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
87
  #: build/wp-ulike/admin/admin-hooks.php:174
88
- #: build/wp-ulike/admin/admin-hooks.php:210
 
89
  msgid "No thanks and never ask me again"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
93
- msgid "Boost Your SEO by Using Schema Rich Snippets"
94
  msgstr ""
95
 
96
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
97
  msgid ""
98
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
99
- "Plugin which can manage +13 types of Schema Markups to make a better "
100
- "connection between your webpages and search engines. Now you can talk in "
101
- "search engine language and tell them which type of content you are promoting."
102
  msgstr ""
103
 
104
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
105
- #: build/wp-ulike/admin/admin-hooks.php:170
106
- #: build/wp-ulike/admin/admin-hooks.php:200
 
107
  #, fuzzy
108
  msgid "Get More Information"
109
  msgstr "Для дополнительной информации:"
110
 
111
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
112
- msgid "WP Ulike Pro is Ready :))"
113
  msgstr ""
114
 
115
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
116
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
117
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
118
  "been released with some new features such as support for Dislike button, "
119
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -121,8 +135,8 @@ msgid ""
121
  "provide a full support for our users."
122
  msgstr ""
123
 
124
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
125
- #: build/wp-ulike/admin/admin-hooks.php:239
126
  #: build/wp-ulike/admin/includes/templates/about.php:29
127
  msgid "Go Pro"
128
  msgstr ""
@@ -138,30 +152,30 @@ msgid "No information was found in this database!"
138
  msgstr ""
139
 
140
  #: admin/classes/class-wp-ulike-admin-pages.php:27
141
- #: admin/includes/templates/posts-logs.php:39
142
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
143
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
144
  msgid "Post Likes Logs"
145
  msgstr ""
146
 
147
  #: admin/classes/class-wp-ulike-admin-pages.php:35
148
- #: admin/includes/templates/comments-logs.php:39
149
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
150
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
151
  msgid "Comment Likes Logs"
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:43
155
- #: admin/includes/templates/activities-logs.php:39
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
157
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
158
  msgid "Activity Likes Logs"
159
  msgstr ""
160
 
161
  #: admin/classes/class-wp-ulike-admin-pages.php:51
162
- #: admin/includes/templates/topics-logs.php:39
163
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
164
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
165
  msgid "Topics Likes Logs"
166
  msgstr ""
167
 
@@ -180,23 +194,23 @@ msgid "About"
180
  msgstr "Детали"
181
 
182
  #: admin/classes/class-wp-ulike-admin-pages.php:133
183
- #: admin/includes/templates/activities-logs.php:42
184
- #: admin/includes/templates/activities-logs.php:119
185
- #: admin/includes/templates/comments-logs.php:42
186
- #: admin/includes/templates/comments-logs.php:129
187
- #: admin/includes/templates/posts-logs.php:42
188
- #: admin/includes/templates/posts-logs.php:118
189
- #: admin/includes/templates/topics-logs.php:42
190
- #: admin/includes/templates/topics-logs.php:118
191
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
199
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
200
  msgid "Logs"
201
  msgstr "Логи"
202
 
@@ -1036,16 +1050,16 @@ msgstr ""
1036
  msgid "Topics Stats"
1037
  msgstr "Заголовок темы"
1038
 
1039
- #: admin/classes/class-wp-ulike-stats.php:274
1040
- #: admin/includes/templates/activities-logs.php:76
1041
- #: admin/includes/templates/comments-logs.php:81
1042
- #: admin/includes/templates/posts-logs.php:75
1043
- #: admin/includes/templates/topics-logs.php:75
1044
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1045
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1046
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1047
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1048
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1049
  msgid "Guest User"
1050
  msgstr ""
1051
 
@@ -1331,115 +1345,177 @@ msgstr ""
1331
  msgid "No data found! This is because there is still no data in your database."
1332
  msgstr ""
1333
 
1334
- #: admin/includes/templates/activities-logs.php:38
1335
- #: admin/includes/templates/comments-logs.php:38
1336
- #: admin/includes/templates/posts-logs.php:38
1337
- #: admin/includes/templates/topics-logs.php:38
1338
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1339
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1340
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1341
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1342
  msgid "WP ULike Logs"
1343
  msgstr ""
1344
 
1345
- #: admin/includes/templates/activities-logs.php:49
1346
- #: admin/includes/templates/comments-logs.php:49
1347
- #: admin/includes/templates/posts-logs.php:49
1348
- #: admin/includes/templates/topics-logs.php:49
1349
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1350
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1351
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1352
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1353
  msgid "ID"
1354
  msgstr "ID"
1355
 
1356
- #: admin/includes/templates/activities-logs.php:50
1357
- #: admin/includes/templates/comments-logs.php:50
1358
- #: admin/includes/templates/posts-logs.php:50
1359
- #: admin/includes/templates/topics-logs.php:50
1360
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1361
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1362
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1363
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1364
  msgid "Username"
1365
  msgstr "Имя пользователя"
1366
 
1367
- #: admin/includes/templates/activities-logs.php:51
1368
- #: admin/includes/templates/comments-logs.php:51
1369
- #: admin/includes/templates/posts-logs.php:51
1370
- #: admin/includes/templates/topics-logs.php:51
1371
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1372
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1373
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1374
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1375
  msgid "Status"
1376
  msgstr "Статус"
1377
 
1378
- #: admin/includes/templates/activities-logs.php:52
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1380
  msgid "Activity ID"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:53
1384
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1385
  msgid "Permalink"
1386
  msgstr "Постоянная ссылка"
1387
 
1388
- #: admin/includes/templates/activities-logs.php:54
1389
- #: admin/includes/templates/comments-logs.php:55
1390
- #: admin/includes/templates/posts-logs.php:54
1391
- #: admin/includes/templates/topics-logs.php:54
1392
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1393
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1394
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1395
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1396
  msgid "Date / Time"
1397
  msgstr "Дата и время"
1398
 
1399
- #: admin/includes/templates/activities-logs.php:55
1400
- #: admin/includes/templates/comments-logs.php:56
1401
- #: admin/includes/templates/posts-logs.php:55
1402
- #: admin/includes/templates/topics-logs.php:55
1403
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1404
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1405
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1406
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1407
  msgid "IP"
1408
  msgstr "IP"
1409
 
1410
- #: admin/includes/templates/activities-logs.php:56
1411
- #: admin/includes/templates/comments-logs.php:57
1412
- #: admin/includes/templates/posts-logs.php:56
1413
- #: admin/includes/templates/topics-logs.php:56
1414
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1415
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1416
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1417
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1418
  msgid "Actions"
1419
  msgstr "Действия"
1420
 
1421
- #: admin/includes/templates/activities-logs.php:92
1422
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1423
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1424
  msgstr ""
1425
 
1426
- #: admin/includes/templates/comments-logs.php:52
1427
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1428
  msgid "Comment ID"
1429
  msgstr "ID комментария"
1430
 
1431
- #: admin/includes/templates/comments-logs.php:53
1432
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1433
  msgid "Comment Author"
1434
  msgstr "Автор комментария"
1435
 
1436
- #: admin/includes/templates/comments-logs.php:54
1437
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1438
  msgid "Comment Text"
1439
  msgstr "Текст комментария"
1440
 
1441
- #: admin/includes/templates/comments-logs.php:63
1442
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1443
  msgid "Not Found!"
1444
  msgstr ""
1445
 
@@ -1449,61 +1525,31 @@ msgstr ""
1449
  msgid "WP ULike Premium"
1450
  msgstr "Настройки WP ULike"
1451
 
1452
- #: admin/includes/templates/go-pro.php:22
1453
- #: admin/includes/templates/statistics.php:48
1454
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1455
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1456
- msgid "Buy WP ULike Premium"
1457
- msgstr ""
1458
-
1459
- #: admin/includes/templates/go-pro.php:28
1460
- #: admin/includes/templates/statistics.php:53
1461
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1462
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1463
- #, fuzzy
1464
- msgid "More information"
1465
- msgstr "Для дополнительной информации:"
1466
-
1467
- #: admin/includes/templates/go-pro.php:114
1468
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1469
  msgid ""
1470
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1471
  "ULike PRO plugin we fully support this page builder and have a variety of "
1472
  "widgets & controllers that make life much easier for you."
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/go-pro.php:114
1476
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1477
  msgid ""
1478
  "Just drag your desired widget and drop it in your Elementor sections, "
1479
  "customize as you go and enjoy your like and dislike buttons on your contents."
1480
  msgstr ""
1481
 
1482
- #: admin/includes/templates/posts-logs.php:52
1483
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1484
  msgid "Post ID"
1485
  msgstr "ID записи"
1486
 
1487
- #: admin/includes/templates/posts-logs.php:53
1488
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1489
  msgid "Post Title"
1490
  msgstr "Заголовок поста"
1491
 
1492
- #: admin/includes/templates/statistics.php:45
1493
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1494
- msgid "Check Votings, Best Likers & Top contents"
1495
- msgstr ""
1496
-
1497
- #: admin/includes/templates/statistics.php:47
1498
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1499
- msgid ""
1500
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1501
- "users love and what annoys them in an instance. You can extract reports of "
1502
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1503
- "dateRange picker and status selector controllers, no confusing options and "
1504
- "coding needed."
1505
- msgstr ""
1506
-
1507
  #: admin/includes/templates/statistics.php:76
1508
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1509
  msgid "Total"
@@ -1555,13 +1601,13 @@ msgstr ""
1555
  msgid "Top"
1556
  msgstr "Подсказка"
1557
 
1558
- #: admin/includes/templates/topics-logs.php:52
1559
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1560
  msgid "Topic ID"
1561
  msgstr "ID темы"
1562
 
1563
- #: admin/includes/templates/topics-logs.php:53
1564
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1565
  msgid "Topic Title"
1566
  msgstr "Заголовок темы"
1567
 
@@ -1684,49 +1730,49 @@ msgstr ""
1684
  msgid "Are you sure to reset all options?"
1685
  msgstr "Вы уверены, что хотите удалить этот элемент?"
1686
 
1687
- #: admin/settings/classes/setup.class.php:429
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1689
  msgid "Are you sure?"
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:430
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1694
  msgid "Restoring options."
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:431
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1699
  #, fuzzy
1700
  msgid "Importing options."
1701
  msgstr "Параметры сортировки"
1702
 
1703
- #: admin/settings/classes/setup.class.php:434
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1705
  msgid "Please enter %s or more characters"
1706
  msgstr ""
1707
 
1708
- #: admin/settings/classes/setup.class.php:435
1709
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1710
  msgid "Searching..."
1711
  msgstr ""
1712
 
1713
- #: admin/settings/classes/setup.class.php:436
1714
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1715
  msgid "No results match"
1716
  msgstr ""
1717
 
1718
- #: admin/settings/classes/setup.class.php:507
1719
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1720
  msgid "Ooops! This field type (%s) can not be used here, yet."
1721
  msgstr ""
1722
 
1723
- #: admin/settings/classes/setup.class.php:570
1724
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1725
  msgid "This field class is not available!"
1726
  msgstr ""
1727
 
1728
- #: admin/settings/classes/setup.class.php:574
1729
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1730
  msgid "This type is not found!"
1731
  msgstr ""
1732
 
@@ -2602,17 +2648,17 @@ msgid ""
2602
  msgstr ""
2603
 
2604
  #: build/wp-ulike/inc/frontend-ajax.php:42
2605
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2606
- #: inc/frontend-ajax.php:164
2607
  msgid "Error: This Method Is Not Exist!"
2608
  msgstr "Ошибка: Этот метод не существует!"
2609
 
2610
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2611
- msgid "Notice: The likers box is refreshed only for logged in users!"
2612
  msgstr ""
2613
 
2614
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2615
- msgid "Notice: The likers box is not activated!"
2616
  msgstr ""
2617
 
2618
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2659,15 +2705,15 @@ msgstr ""
2659
  msgid "Table info is empty."
2660
  msgstr ""
2661
 
2662
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2663
  msgid "You need to login in order to like this post: "
2664
  msgstr "Вам нужно войти, чтобы лайкнуть этот пост:"
2665
 
2666
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2667
  msgid "click here"
2668
  msgstr "нажмите здесь"
2669
 
2670
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2671
  #, fuzzy
2672
  msgid "Like This"
2673
  msgstr "Нравится"
6
  msgstr ""
7
  "Project-Id-Version: WP ULike\n"
8
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
9
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
10
  "PO-Revision-Date: 2017-01-20 21:22+0330\n"
11
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/wp-translations/wp-"
29
  #: build/wp-ulike/admin/admin-ajax.php:76
30
  #: build/wp-ulike/admin/admin-ajax.php:82
31
  #: build/wp-ulike/inc/frontend-ajax.php:34
32
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
33
+ #: inc/frontend-ajax.php:152
34
  msgid "Error: Something Wrong Happened!"
35
  msgstr ""
36
 
46
  msgid "It's Ok!"
47
  msgstr ""
48
 
49
+ #: admin/admin-functions.php:231
50
  #: admin/classes/class-wp-ulike-admin-panel.php:517
51
+ #: build/wp-ulike/admin/admin-functions.php:234
52
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
53
  #, fuzzy
54
  msgid "Button"
76
  msgid "Sure, I'd love to!"
77
  msgstr ""
78
 
79
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
80
  #: build/wp-ulike/admin/admin-hooks.php:142
81
+ #: build/wp-ulike/admin/admin-hooks.php:227
82
  msgid "Not Now"
83
  msgstr ""
84
 
85
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
86
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
87
+ #: build/wp-ulike/admin/admin-hooks.php:148
88
  #: build/wp-ulike/admin/admin-hooks.php:174
89
+ #: build/wp-ulike/admin/admin-hooks.php:197
90
+ #: build/wp-ulike/admin/admin-hooks.php:233
91
  msgid "No thanks and never ask me again"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
95
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
96
  msgstr ""
97
 
98
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
99
  msgid ""
100
+ "Having votes for your content without a tool for measuring the results is "
101
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
102
+ "data in the WP ULike professional Logs panel."
 
103
  msgstr ""
104
 
105
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
106
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
107
+ #: build/wp-ulike/admin/admin-hooks.php:193
108
+ #: build/wp-ulike/admin/admin-hooks.php:223
109
  #, fuzzy
110
  msgid "Get More Information"
111
  msgstr "Для дополнительной информации:"
112
 
113
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
114
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
115
  msgstr ""
116
 
117
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
118
  msgid ""
119
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
120
+ "Plugin which can manage +13 types of Schema Markups to make a better "
121
+ "connection between your webpages and search engines. Now you can talk in "
122
+ "search engine language and tell them which type of content you are promoting."
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
126
+ msgid "WP Ulike Pro is Ready :))"
127
+ msgstr ""
128
+
129
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
130
+ msgid ""
131
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
132
  "been released with some new features such as support for Dislike button, "
133
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
135
  "provide a full support for our users."
136
  msgstr ""
137
 
138
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
139
+ #: build/wp-ulike/admin/admin-hooks.php:262
140
  #: build/wp-ulike/admin/includes/templates/about.php:29
141
  msgid "Go Pro"
142
  msgstr ""
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:27
155
+ #: admin/includes/templates/posts-logs.php:61
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
157
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
158
  msgid "Post Likes Logs"
159
  msgstr ""
160
 
161
  #: admin/classes/class-wp-ulike-admin-pages.php:35
162
+ #: admin/includes/templates/comments-logs.php:61
163
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
164
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
165
  msgid "Comment Likes Logs"
166
  msgstr ""
167
 
168
  #: admin/classes/class-wp-ulike-admin-pages.php:43
169
+ #: admin/includes/templates/activities-logs.php:61
170
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
171
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
172
  msgid "Activity Likes Logs"
173
  msgstr ""
174
 
175
  #: admin/classes/class-wp-ulike-admin-pages.php:51
176
+ #: admin/includes/templates/topics-logs.php:61
177
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
178
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
179
  msgid "Topics Likes Logs"
180
  msgstr ""
181
 
194
  msgstr "Детали"
195
 
196
  #: admin/classes/class-wp-ulike-admin-pages.php:133
197
+ #: admin/includes/templates/activities-logs.php:64
198
+ #: admin/includes/templates/activities-logs.php:141
199
+ #: admin/includes/templates/comments-logs.php:64
200
+ #: admin/includes/templates/comments-logs.php:151
201
+ #: admin/includes/templates/posts-logs.php:64
202
+ #: admin/includes/templates/posts-logs.php:140
203
+ #: admin/includes/templates/topics-logs.php:64
204
+ #: admin/includes/templates/topics-logs.php:140
205
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
213
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
214
  msgid "Logs"
215
  msgstr "Логи"
216
 
1050
  msgid "Topics Stats"
1051
  msgstr "Заголовок темы"
1052
 
1053
+ #: admin/classes/class-wp-ulike-stats.php:273
1054
+ #: admin/includes/templates/activities-logs.php:98
1055
+ #: admin/includes/templates/comments-logs.php:103
1056
+ #: admin/includes/templates/posts-logs.php:97
1057
+ #: admin/includes/templates/topics-logs.php:97
1058
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1059
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1060
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1061
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1062
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1063
  msgid "Guest User"
1064
  msgstr ""
1065
 
1345
  msgid "No data found! This is because there is still no data in your database."
1346
  msgstr ""
1347
 
1348
+ #: admin/includes/templates/activities-logs.php:40
1349
+ #: admin/includes/templates/comments-logs.php:40
1350
+ #: admin/includes/templates/posts-logs.php:40
1351
+ #: admin/includes/templates/statistics.php:45
1352
+ #: admin/includes/templates/topics-logs.php:40
1353
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1354
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1355
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1356
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1357
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1358
+ msgid "Check Votings, Best Likers & Top contents"
1359
+ msgstr ""
1360
+
1361
+ #: admin/includes/templates/activities-logs.php:42
1362
+ #: admin/includes/templates/comments-logs.php:42
1363
+ #: admin/includes/templates/posts-logs.php:42
1364
+ #: admin/includes/templates/statistics.php:47
1365
+ #: admin/includes/templates/topics-logs.php:42
1366
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1367
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1368
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1369
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1370
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1371
+ msgid ""
1372
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1373
+ "users love and what annoys them in an instance. You can extract reports of "
1374
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1375
+ "dateRange picker and status selector controllers, no confusing options and "
1376
+ "coding needed."
1377
+ msgstr ""
1378
+
1379
+ #: admin/includes/templates/activities-logs.php:43
1380
+ #: admin/includes/templates/comments-logs.php:43
1381
+ #: admin/includes/templates/go-pro.php:22
1382
+ #: admin/includes/templates/posts-logs.php:43
1383
+ #: admin/includes/templates/statistics.php:48
1384
+ #: admin/includes/templates/topics-logs.php:43
1385
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1386
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1387
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1388
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1389
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1390
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1391
+ msgid "Buy WP ULike Premium"
1392
+ msgstr ""
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:48
1395
+ #: admin/includes/templates/comments-logs.php:48
1396
+ #: admin/includes/templates/go-pro.php:28
1397
+ #: admin/includes/templates/posts-logs.php:48
1398
+ #: admin/includes/templates/statistics.php:53
1399
+ #: admin/includes/templates/topics-logs.php:48
1400
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1401
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1402
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1403
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1404
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1405
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1406
+ #, fuzzy
1407
+ msgid "More information"
1408
+ msgstr "Для дополнительной информации:"
1409
+
1410
+ #: admin/includes/templates/activities-logs.php:60
1411
+ #: admin/includes/templates/comments-logs.php:60
1412
+ #: admin/includes/templates/posts-logs.php:60
1413
+ #: admin/includes/templates/topics-logs.php:60
1414
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1415
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1416
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1417
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1418
  msgid "WP ULike Logs"
1419
  msgstr ""
1420
 
1421
+ #: admin/includes/templates/activities-logs.php:71
1422
+ #: admin/includes/templates/comments-logs.php:71
1423
+ #: admin/includes/templates/posts-logs.php:71
1424
+ #: admin/includes/templates/topics-logs.php:71
1425
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1426
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1427
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1428
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1429
  msgid "ID"
1430
  msgstr "ID"
1431
 
1432
+ #: admin/includes/templates/activities-logs.php:72
1433
+ #: admin/includes/templates/comments-logs.php:72
1434
+ #: admin/includes/templates/posts-logs.php:72
1435
+ #: admin/includes/templates/topics-logs.php:72
1436
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1437
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1438
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1439
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1440
  msgid "Username"
1441
  msgstr "Имя пользователя"
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:73
1444
+ #: admin/includes/templates/comments-logs.php:73
1445
+ #: admin/includes/templates/posts-logs.php:73
1446
+ #: admin/includes/templates/topics-logs.php:73
1447
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1448
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1449
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1450
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1451
  msgid "Status"
1452
  msgstr "Статус"
1453
 
1454
+ #: admin/includes/templates/activities-logs.php:74
1455
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1456
  msgid "Activity ID"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:75
1460
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1461
  msgid "Permalink"
1462
  msgstr "Постоянная ссылка"
1463
 
1464
+ #: admin/includes/templates/activities-logs.php:76
1465
+ #: admin/includes/templates/comments-logs.php:77
1466
+ #: admin/includes/templates/posts-logs.php:76
1467
+ #: admin/includes/templates/topics-logs.php:76
1468
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1469
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1470
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1471
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1472
  msgid "Date / Time"
1473
  msgstr "Дата и время"
1474
 
1475
+ #: admin/includes/templates/activities-logs.php:77
1476
+ #: admin/includes/templates/comments-logs.php:78
1477
+ #: admin/includes/templates/posts-logs.php:77
1478
+ #: admin/includes/templates/topics-logs.php:77
1479
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1480
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1481
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1482
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1483
  msgid "IP"
1484
  msgstr "IP"
1485
 
1486
+ #: admin/includes/templates/activities-logs.php:78
1487
+ #: admin/includes/templates/comments-logs.php:79
1488
+ #: admin/includes/templates/posts-logs.php:78
1489
+ #: admin/includes/templates/topics-logs.php:78
1490
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1491
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1492
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1493
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1494
  msgid "Actions"
1495
  msgstr "Действия"
1496
 
1497
+ #: admin/includes/templates/activities-logs.php:114
1498
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1499
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1500
  msgstr ""
1501
 
1502
+ #: admin/includes/templates/comments-logs.php:74
1503
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1504
  msgid "Comment ID"
1505
  msgstr "ID комментария"
1506
 
1507
+ #: admin/includes/templates/comments-logs.php:75
1508
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1509
  msgid "Comment Author"
1510
  msgstr "Автор комментария"
1511
 
1512
+ #: admin/includes/templates/comments-logs.php:76
1513
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1514
  msgid "Comment Text"
1515
  msgstr "Текст комментария"
1516
 
1517
+ #: admin/includes/templates/comments-logs.php:85
1518
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1519
  msgid "Not Found!"
1520
  msgstr ""
1521
 
1525
  msgid "WP ULike Premium"
1526
  msgstr "Настройки WP ULike"
1527
 
1528
+ #: admin/includes/templates/go-pro.php:119
1529
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1530
  msgid ""
1531
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1532
  "ULike PRO plugin we fully support this page builder and have a variety of "
1533
  "widgets & controllers that make life much easier for you."
1534
  msgstr ""
1535
 
1536
+ #: admin/includes/templates/go-pro.php:119
1537
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1538
  msgid ""
1539
  "Just drag your desired widget and drop it in your Elementor sections, "
1540
  "customize as you go and enjoy your like and dislike buttons on your contents."
1541
  msgstr ""
1542
 
1543
+ #: admin/includes/templates/posts-logs.php:74
1544
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1545
  msgid "Post ID"
1546
  msgstr "ID записи"
1547
 
1548
+ #: admin/includes/templates/posts-logs.php:75
1549
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1550
  msgid "Post Title"
1551
  msgstr "Заголовок поста"
1552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1553
  #: admin/includes/templates/statistics.php:76
1554
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1555
  msgid "Total"
1601
  msgid "Top"
1602
  msgstr "Подсказка"
1603
 
1604
+ #: admin/includes/templates/topics-logs.php:74
1605
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1606
  msgid "Topic ID"
1607
  msgstr "ID темы"
1608
 
1609
+ #: admin/includes/templates/topics-logs.php:75
1610
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1611
  msgid "Topic Title"
1612
  msgstr "Заголовок темы"
1613
 
1730
  msgid "Are you sure to reset all options?"
1731
  msgstr "Вы уверены, что хотите удалить этот элемент?"
1732
 
1733
+ #: admin/settings/classes/setup.class.php:436
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1735
  msgid "Are you sure?"
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:437
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1740
  msgid "Restoring options."
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:438
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1745
  #, fuzzy
1746
  msgid "Importing options."
1747
  msgstr "Параметры сортировки"
1748
 
1749
+ #: admin/settings/classes/setup.class.php:441
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1751
  msgid "Please enter %s or more characters"
1752
  msgstr ""
1753
 
1754
+ #: admin/settings/classes/setup.class.php:442
1755
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1756
  msgid "Searching..."
1757
  msgstr ""
1758
 
1759
+ #: admin/settings/classes/setup.class.php:443
1760
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1761
  msgid "No results match"
1762
  msgstr ""
1763
 
1764
+ #: admin/settings/classes/setup.class.php:514
1765
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1766
  msgid "Ooops! This field type (%s) can not be used here, yet."
1767
  msgstr ""
1768
 
1769
+ #: admin/settings/classes/setup.class.php:577
1770
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1771
  msgid "This field class is not available!"
1772
  msgstr ""
1773
 
1774
+ #: admin/settings/classes/setup.class.php:581
1775
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1776
  msgid "This type is not found!"
1777
  msgstr ""
1778
 
2648
  msgstr ""
2649
 
2650
  #: build/wp-ulike/inc/frontend-ajax.php:42
2651
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2652
+ #: inc/frontend-ajax.php:170
2653
  msgid "Error: This Method Is Not Exist!"
2654
  msgstr "Ошибка: Этот метод не существует!"
2655
 
2656
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2657
+ msgid "Notice: The likers box is not activated!"
2658
  msgstr ""
2659
 
2660
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2661
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2662
  msgstr ""
2663
 
2664
  #: build/wp-ulike/inc/general-functions.php:85
2705
  msgid "Table info is empty."
2706
  msgstr ""
2707
 
2708
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2709
  msgid "You need to login in order to like this post: "
2710
  msgstr "Вам нужно войти, чтобы лайкнуть этот пост:"
2711
 
2712
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2713
  msgid "click here"
2714
  msgstr "нажмите здесь"
2715
 
2716
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2717
  #, fuzzy
2718
  msgid "Like This"
2719
  msgstr "Нравится"
lang/wp-ulike-sk_SK.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "Viac informácií:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Záznamy"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Meno užívateľa"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Stav"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr "Trvalý odkaz"
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Akcie"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "Viac informácií:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr "ID príspevku"
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2571,17 +2617,17 @@ msgid ""
2571
  msgstr ""
2572
 
2573
  #: build/wp-ulike/inc/frontend-ajax.php:42
2574
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2575
- #: inc/frontend-ajax.php:164
2576
  msgid "Error: This Method Is Not Exist!"
2577
  msgstr ""
2578
 
2579
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2580
- msgid "Notice: The likers box is refreshed only for logged in users!"
2581
  msgstr ""
2582
 
2583
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2584
- msgid "Notice: The likers box is not activated!"
2585
  msgstr ""
2586
 
2587
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2626,15 +2672,15 @@ msgstr ""
2626
  msgid "Table info is empty."
2627
  msgstr ""
2628
 
2629
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2630
  msgid "You need to login in order to like this post: "
2631
  msgstr ""
2632
 
2633
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2634
  msgid "click here"
2635
  msgstr ""
2636
 
2637
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2638
  #, fuzzy
2639
  msgid "Like This"
2640
  msgstr "Páči sa vám tento modul?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "Viac informácií:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Záznamy"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "Viac informácií:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Meno užívateľa"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Stav"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr "Trvalý odkaz"
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Akcie"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr "ID príspevku"
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2617
  msgstr ""
2618
 
2619
  #: build/wp-ulike/inc/frontend-ajax.php:42
2620
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2621
+ #: inc/frontend-ajax.php:170
2622
  msgid "Error: This Method Is Not Exist!"
2623
  msgstr ""
2624
 
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2626
+ msgid "Notice: The likers box is not activated!"
2627
  msgstr ""
2628
 
2629
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2630
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2631
  msgstr ""
2632
 
2633
  #: build/wp-ulike/inc/general-functions.php:85
2672
  msgid "Table info is empty."
2673
  msgstr ""
2674
 
2675
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2676
  msgid "You need to login in order to like this post: "
2677
  msgstr ""
2678
 
2679
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2680
  msgid "click here"
2681
  msgstr ""
2682
 
2683
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2684
  #, fuzzy
2685
  msgid "Like This"
2686
  msgstr "Páči sa vám tento modul?"
lang/wp-ulike-sv_SE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "För mer information:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  msgid "Topics Likes Logs"
162
  msgstr ""
163
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr ""
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "Loggar"
199
 
@@ -1020,16 +1034,16 @@ msgstr ""
1020
  msgid "Topics Stats"
1021
  msgstr ""
1022
 
1023
- #: admin/classes/class-wp-ulike-stats.php:274
1024
- #: admin/includes/templates/activities-logs.php:76
1025
- #: admin/includes/templates/comments-logs.php:81
1026
- #: admin/includes/templates/posts-logs.php:75
1027
- #: admin/includes/templates/topics-logs.php:75
1028
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1029
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1030
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1031
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1032
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1033
  msgid "Guest User"
1034
  msgstr ""
1035
 
@@ -1315,115 +1329,177 @@ msgstr ""
1315
  msgid "No data found! This is because there is still no data in your database."
1316
  msgstr ""
1317
 
1318
- #: admin/includes/templates/activities-logs.php:38
1319
- #: admin/includes/templates/comments-logs.php:38
1320
- #: admin/includes/templates/posts-logs.php:38
1321
- #: admin/includes/templates/topics-logs.php:38
1322
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1323
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1324
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1325
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "WP ULike Logs"
1327
  msgstr ""
1328
 
1329
- #: admin/includes/templates/activities-logs.php:49
1330
- #: admin/includes/templates/comments-logs.php:49
1331
- #: admin/includes/templates/posts-logs.php:49
1332
- #: admin/includes/templates/topics-logs.php:49
1333
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1334
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1335
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1336
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1337
  msgid "ID"
1338
  msgstr "ID"
1339
 
1340
- #: admin/includes/templates/activities-logs.php:50
1341
- #: admin/includes/templates/comments-logs.php:50
1342
- #: admin/includes/templates/posts-logs.php:50
1343
- #: admin/includes/templates/topics-logs.php:50
1344
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1345
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1346
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1347
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1348
  msgid "Username"
1349
  msgstr "Användarnamn"
1350
 
1351
- #: admin/includes/templates/activities-logs.php:51
1352
- #: admin/includes/templates/comments-logs.php:51
1353
- #: admin/includes/templates/posts-logs.php:51
1354
- #: admin/includes/templates/topics-logs.php:51
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1356
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1357
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1358
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1359
  msgid "Status"
1360
  msgstr "Status"
1361
 
1362
- #: admin/includes/templates/activities-logs.php:52
1363
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1364
  msgid "Activity ID"
1365
  msgstr ""
1366
 
1367
- #: admin/includes/templates/activities-logs.php:53
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1369
  msgid "Permalink"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:54
1373
- #: admin/includes/templates/comments-logs.php:55
1374
- #: admin/includes/templates/posts-logs.php:54
1375
- #: admin/includes/templates/topics-logs.php:54
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1377
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1378
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1379
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1380
  msgid "Date / Time"
1381
  msgstr ""
1382
 
1383
- #: admin/includes/templates/activities-logs.php:55
1384
- #: admin/includes/templates/comments-logs.php:56
1385
- #: admin/includes/templates/posts-logs.php:55
1386
- #: admin/includes/templates/topics-logs.php:55
1387
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1388
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1389
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1390
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1391
  msgid "IP"
1392
  msgstr ""
1393
 
1394
- #: admin/includes/templates/activities-logs.php:56
1395
- #: admin/includes/templates/comments-logs.php:57
1396
- #: admin/includes/templates/posts-logs.php:56
1397
- #: admin/includes/templates/topics-logs.php:56
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1399
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1400
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1401
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1402
  msgid "Actions"
1403
  msgstr "Åtgärd"
1404
 
1405
- #: admin/includes/templates/activities-logs.php:92
1406
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1407
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1408
  msgstr ""
1409
 
1410
- #: admin/includes/templates/comments-logs.php:52
1411
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1412
  msgid "Comment ID"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:53
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1417
  msgid "Comment Author"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:54
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1422
  msgid "Comment Text"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:63
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1427
  msgid "Not Found!"
1428
  msgstr ""
1429
 
@@ -1432,61 +1508,31 @@ msgstr ""
1432
  msgid "WP ULike Premium"
1433
  msgstr ""
1434
 
1435
- #: admin/includes/templates/go-pro.php:22
1436
- #: admin/includes/templates/statistics.php:48
1437
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1438
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1439
- msgid "Buy WP ULike Premium"
1440
- msgstr ""
1441
-
1442
- #: admin/includes/templates/go-pro.php:28
1443
- #: admin/includes/templates/statistics.php:53
1444
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1445
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1446
- #, fuzzy
1447
- msgid "More information"
1448
- msgstr "För mer information:"
1449
-
1450
- #: admin/includes/templates/go-pro.php:114
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1452
  msgid ""
1453
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1454
  "ULike PRO plugin we fully support this page builder and have a variety of "
1455
  "widgets & controllers that make life much easier for you."
1456
  msgstr ""
1457
 
1458
- #: admin/includes/templates/go-pro.php:114
1459
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1460
  msgid ""
1461
  "Just drag your desired widget and drop it in your Elementor sections, "
1462
  "customize as you go and enjoy your like and dislike buttons on your contents."
1463
  msgstr ""
1464
 
1465
- #: admin/includes/templates/posts-logs.php:52
1466
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1467
  msgid "Post ID"
1468
  msgstr ""
1469
 
1470
- #: admin/includes/templates/posts-logs.php:53
1471
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1472
  msgid "Post Title"
1473
  msgstr ""
1474
 
1475
- #: admin/includes/templates/statistics.php:45
1476
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1477
- msgid "Check Votings, Best Likers & Top contents"
1478
- msgstr ""
1479
-
1480
- #: admin/includes/templates/statistics.php:47
1481
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1482
- msgid ""
1483
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1484
- "users love and what annoys them in an instance. You can extract reports of "
1485
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1486
- "dateRange picker and status selector controllers, no confusing options and "
1487
- "coding needed."
1488
- msgstr ""
1489
-
1490
  #: admin/includes/templates/statistics.php:76
1491
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1492
  msgid "Total"
@@ -1535,13 +1581,13 @@ msgstr ""
1535
  msgid "Top"
1536
  msgstr ""
1537
 
1538
- #: admin/includes/templates/topics-logs.php:52
1539
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1540
  msgid "Topic ID"
1541
  msgstr ""
1542
 
1543
- #: admin/includes/templates/topics-logs.php:53
1544
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1545
  msgid "Topic Title"
1546
  msgstr ""
1547
 
@@ -1660,48 +1706,48 @@ msgstr ""
1660
  msgid "Are you sure to reset all options?"
1661
  msgstr ""
1662
 
1663
- #: admin/settings/classes/setup.class.php:429
1664
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1665
  msgid "Are you sure?"
1666
  msgstr ""
1667
 
1668
- #: admin/settings/classes/setup.class.php:430
1669
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1670
  msgid "Restoring options."
1671
  msgstr ""
1672
 
1673
- #: admin/settings/classes/setup.class.php:431
1674
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1675
  msgid "Importing options."
1676
  msgstr ""
1677
 
1678
- #: admin/settings/classes/setup.class.php:434
1679
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1680
  msgid "Please enter %s or more characters"
1681
  msgstr ""
1682
 
1683
- #: admin/settings/classes/setup.class.php:435
1684
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1685
  msgid "Searching..."
1686
  msgstr ""
1687
 
1688
- #: admin/settings/classes/setup.class.php:436
1689
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1690
  msgid "No results match"
1691
  msgstr ""
1692
 
1693
- #: admin/settings/classes/setup.class.php:507
1694
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1695
  msgid "Ooops! This field type (%s) can not be used here, yet."
1696
  msgstr ""
1697
 
1698
- #: admin/settings/classes/setup.class.php:570
1699
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1700
  msgid "This field class is not available!"
1701
  msgstr ""
1702
 
1703
- #: admin/settings/classes/setup.class.php:574
1704
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1705
  msgid "This type is not found!"
1706
  msgstr ""
1707
 
@@ -2569,17 +2615,17 @@ msgid ""
2569
  msgstr ""
2570
 
2571
  #: build/wp-ulike/inc/frontend-ajax.php:42
2572
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2573
- #: inc/frontend-ajax.php:164
2574
  msgid "Error: This Method Is Not Exist!"
2575
  msgstr ""
2576
 
2577
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2578
- msgid "Notice: The likers box is refreshed only for logged in users!"
2579
  msgstr ""
2580
 
2581
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2582
- msgid "Notice: The likers box is not activated!"
2583
  msgstr ""
2584
 
2585
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2624,15 +2670,15 @@ msgstr ""
2624
  msgid "Table info is empty."
2625
  msgstr ""
2626
 
2627
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2628
  msgid "You need to login in order to like this post: "
2629
  msgstr ""
2630
 
2631
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2632
  msgid "click here"
2633
  msgstr ""
2634
 
2635
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2636
  msgid "Like This"
2637
  msgstr ""
2638
 
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "För mer information:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  msgid "Topics Likes Logs"
176
  msgstr ""
177
 
191
  msgstr ""
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "Loggar"
213
 
1034
  msgid "Topics Stats"
1035
  msgstr ""
1036
 
1037
+ #: admin/classes/class-wp-ulike-stats.php:273
1038
+ #: admin/includes/templates/activities-logs.php:98
1039
+ #: admin/includes/templates/comments-logs.php:103
1040
+ #: admin/includes/templates/posts-logs.php:97
1041
+ #: admin/includes/templates/topics-logs.php:97
1042
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1043
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1044
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1045
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1046
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1047
  msgid "Guest User"
1048
  msgstr ""
1049
 
1329
  msgid "No data found! This is because there is still no data in your database."
1330
  msgstr ""
1331
 
1332
+ #: admin/includes/templates/activities-logs.php:40
1333
+ #: admin/includes/templates/comments-logs.php:40
1334
+ #: admin/includes/templates/posts-logs.php:40
1335
+ #: admin/includes/templates/statistics.php:45
1336
+ #: admin/includes/templates/topics-logs.php:40
1337
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1338
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1339
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1340
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1341
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1342
+ msgid "Check Votings, Best Likers & Top contents"
1343
+ msgstr ""
1344
+
1345
+ #: admin/includes/templates/activities-logs.php:42
1346
+ #: admin/includes/templates/comments-logs.php:42
1347
+ #: admin/includes/templates/posts-logs.php:42
1348
+ #: admin/includes/templates/statistics.php:47
1349
+ #: admin/includes/templates/topics-logs.php:42
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1355
+ msgid ""
1356
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1357
+ "users love and what annoys them in an instance. You can extract reports of "
1358
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1359
+ "dateRange picker and status selector controllers, no confusing options and "
1360
+ "coding needed."
1361
+ msgstr ""
1362
+
1363
+ #: admin/includes/templates/activities-logs.php:43
1364
+ #: admin/includes/templates/comments-logs.php:43
1365
+ #: admin/includes/templates/go-pro.php:22
1366
+ #: admin/includes/templates/posts-logs.php:43
1367
+ #: admin/includes/templates/statistics.php:48
1368
+ #: admin/includes/templates/topics-logs.php:43
1369
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1370
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1371
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1372
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1374
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1375
+ msgid "Buy WP ULike Premium"
1376
+ msgstr ""
1377
+
1378
+ #: admin/includes/templates/activities-logs.php:48
1379
+ #: admin/includes/templates/comments-logs.php:48
1380
+ #: admin/includes/templates/go-pro.php:28
1381
+ #: admin/includes/templates/posts-logs.php:48
1382
+ #: admin/includes/templates/statistics.php:53
1383
+ #: admin/includes/templates/topics-logs.php:48
1384
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1385
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1386
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1387
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1389
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1390
+ #, fuzzy
1391
+ msgid "More information"
1392
+ msgstr "För mer information:"
1393
+
1394
+ #: admin/includes/templates/activities-logs.php:60
1395
+ #: admin/includes/templates/comments-logs.php:60
1396
+ #: admin/includes/templates/posts-logs.php:60
1397
+ #: admin/includes/templates/topics-logs.php:60
1398
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1399
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1401
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1402
  msgid "WP ULike Logs"
1403
  msgstr ""
1404
 
1405
+ #: admin/includes/templates/activities-logs.php:71
1406
+ #: admin/includes/templates/comments-logs.php:71
1407
+ #: admin/includes/templates/posts-logs.php:71
1408
+ #: admin/includes/templates/topics-logs.php:71
1409
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1410
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1411
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1412
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1413
  msgid "ID"
1414
  msgstr "ID"
1415
 
1416
+ #: admin/includes/templates/activities-logs.php:72
1417
+ #: admin/includes/templates/comments-logs.php:72
1418
+ #: admin/includes/templates/posts-logs.php:72
1419
+ #: admin/includes/templates/topics-logs.php:72
1420
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1421
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1422
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1423
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1424
  msgid "Username"
1425
  msgstr "Användarnamn"
1426
 
1427
+ #: admin/includes/templates/activities-logs.php:73
1428
+ #: admin/includes/templates/comments-logs.php:73
1429
+ #: admin/includes/templates/posts-logs.php:73
1430
+ #: admin/includes/templates/topics-logs.php:73
1431
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1432
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1433
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1434
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1435
  msgid "Status"
1436
  msgstr "Status"
1437
 
1438
+ #: admin/includes/templates/activities-logs.php:74
1439
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1440
  msgid "Activity ID"
1441
  msgstr ""
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:75
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1445
  msgid "Permalink"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:76
1449
+ #: admin/includes/templates/comments-logs.php:77
1450
+ #: admin/includes/templates/posts-logs.php:76
1451
+ #: admin/includes/templates/topics-logs.php:76
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1453
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1454
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1455
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1456
  msgid "Date / Time"
1457
  msgstr ""
1458
 
1459
+ #: admin/includes/templates/activities-logs.php:77
1460
+ #: admin/includes/templates/comments-logs.php:78
1461
+ #: admin/includes/templates/posts-logs.php:77
1462
+ #: admin/includes/templates/topics-logs.php:77
1463
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1464
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1465
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1466
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1467
  msgid "IP"
1468
  msgstr ""
1469
 
1470
+ #: admin/includes/templates/activities-logs.php:78
1471
+ #: admin/includes/templates/comments-logs.php:79
1472
+ #: admin/includes/templates/posts-logs.php:78
1473
+ #: admin/includes/templates/topics-logs.php:78
1474
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1475
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1476
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1477
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1478
  msgid "Actions"
1479
  msgstr "Åtgärd"
1480
 
1481
+ #: admin/includes/templates/activities-logs.php:114
1482
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1483
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1484
  msgstr ""
1485
 
1486
+ #: admin/includes/templates/comments-logs.php:74
1487
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1488
  msgid "Comment ID"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:75
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1493
  msgid "Comment Author"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:76
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1498
  msgid "Comment Text"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:85
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1503
  msgid "Not Found!"
1504
  msgstr ""
1505
 
1508
  msgid "WP ULike Premium"
1509
  msgstr ""
1510
 
1511
+ #: admin/includes/templates/go-pro.php:119
1512
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1513
  msgid ""
1514
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1515
  "ULike PRO plugin we fully support this page builder and have a variety of "
1516
  "widgets & controllers that make life much easier for you."
1517
  msgstr ""
1518
 
1519
+ #: admin/includes/templates/go-pro.php:119
1520
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1521
  msgid ""
1522
  "Just drag your desired widget and drop it in your Elementor sections, "
1523
  "customize as you go and enjoy your like and dislike buttons on your contents."
1524
  msgstr ""
1525
 
1526
+ #: admin/includes/templates/posts-logs.php:74
1527
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1528
  msgid "Post ID"
1529
  msgstr ""
1530
 
1531
+ #: admin/includes/templates/posts-logs.php:75
1532
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1533
  msgid "Post Title"
1534
  msgstr ""
1535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
  #: admin/includes/templates/statistics.php:76
1537
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1538
  msgid "Total"
1581
  msgid "Top"
1582
  msgstr ""
1583
 
1584
+ #: admin/includes/templates/topics-logs.php:74
1585
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1586
  msgid "Topic ID"
1587
  msgstr ""
1588
 
1589
+ #: admin/includes/templates/topics-logs.php:75
1590
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1591
  msgid "Topic Title"
1592
  msgstr ""
1593
 
1706
  msgid "Are you sure to reset all options?"
1707
  msgstr ""
1708
 
1709
+ #: admin/settings/classes/setup.class.php:436
1710
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1711
  msgid "Are you sure?"
1712
  msgstr ""
1713
 
1714
+ #: admin/settings/classes/setup.class.php:437
1715
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1716
  msgid "Restoring options."
1717
  msgstr ""
1718
 
1719
+ #: admin/settings/classes/setup.class.php:438
1720
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1721
  msgid "Importing options."
1722
  msgstr ""
1723
 
1724
+ #: admin/settings/classes/setup.class.php:441
1725
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1726
  msgid "Please enter %s or more characters"
1727
  msgstr ""
1728
 
1729
+ #: admin/settings/classes/setup.class.php:442
1730
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1731
  msgid "Searching..."
1732
  msgstr ""
1733
 
1734
+ #: admin/settings/classes/setup.class.php:443
1735
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1736
  msgid "No results match"
1737
  msgstr ""
1738
 
1739
+ #: admin/settings/classes/setup.class.php:514
1740
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1741
  msgid "Ooops! This field type (%s) can not be used here, yet."
1742
  msgstr ""
1743
 
1744
+ #: admin/settings/classes/setup.class.php:577
1745
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1746
  msgid "This field class is not available!"
1747
  msgstr ""
1748
 
1749
+ #: admin/settings/classes/setup.class.php:581
1750
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1751
  msgid "This type is not found!"
1752
  msgstr ""
1753
 
2615
  msgstr ""
2616
 
2617
  #: build/wp-ulike/inc/frontend-ajax.php:42
2618
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2619
+ #: inc/frontend-ajax.php:170
2620
  msgid "Error: This Method Is Not Exist!"
2621
  msgstr ""
2622
 
2623
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2624
+ msgid "Notice: The likers box is not activated!"
2625
  msgstr ""
2626
 
2627
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2628
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2629
  msgstr ""
2630
 
2631
  #: build/wp-ulike/inc/general-functions.php:85
2670
  msgid "Table info is empty."
2671
  msgstr ""
2672
 
2673
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2674
  msgid "You need to login in order to like this post: "
2675
  msgstr ""
2676
 
2677
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2678
  msgid "click here"
2679
  msgstr ""
2680
 
2681
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2682
  msgid "Like This"
2683
  msgstr ""
2684
 
lang/wp-ulike-tr_TR.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "Daha fazla bilgi için:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr ""
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr ""
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr "Günlükler"
200
 
@@ -1023,16 +1037,16 @@ msgstr ""
1023
  msgid "Topics Stats"
1024
  msgstr ""
1025
 
1026
- #: admin/classes/class-wp-ulike-stats.php:274
1027
- #: admin/includes/templates/activities-logs.php:76
1028
- #: admin/includes/templates/comments-logs.php:81
1029
- #: admin/includes/templates/posts-logs.php:75
1030
- #: admin/includes/templates/topics-logs.php:75
1031
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1032
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1033
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1034
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1035
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1036
  msgid "Guest User"
1037
  msgstr ""
1038
 
@@ -1318,115 +1332,177 @@ msgstr ""
1318
  msgid "No data found! This is because there is still no data in your database."
1319
  msgstr ""
1320
 
1321
- #: admin/includes/templates/activities-logs.php:38
1322
- #: admin/includes/templates/comments-logs.php:38
1323
- #: admin/includes/templates/posts-logs.php:38
1324
- #: admin/includes/templates/topics-logs.php:38
1325
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1326
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1327
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1328
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1329
  msgid "WP ULike Logs"
1330
  msgstr ""
1331
 
1332
- #: admin/includes/templates/activities-logs.php:49
1333
- #: admin/includes/templates/comments-logs.php:49
1334
- #: admin/includes/templates/posts-logs.php:49
1335
- #: admin/includes/templates/topics-logs.php:49
1336
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1337
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1338
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1339
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1340
  msgid "ID"
1341
  msgstr "ID"
1342
 
1343
- #: admin/includes/templates/activities-logs.php:50
1344
- #: admin/includes/templates/comments-logs.php:50
1345
- #: admin/includes/templates/posts-logs.php:50
1346
- #: admin/includes/templates/topics-logs.php:50
1347
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1348
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1349
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1350
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1351
  msgid "Username"
1352
  msgstr "Kullanıcıadı"
1353
 
1354
- #: admin/includes/templates/activities-logs.php:51
1355
- #: admin/includes/templates/comments-logs.php:51
1356
- #: admin/includes/templates/posts-logs.php:51
1357
- #: admin/includes/templates/topics-logs.php:51
1358
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1359
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1360
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1362
  msgid "Status"
1363
  msgstr "Durum"
1364
 
1365
- #: admin/includes/templates/activities-logs.php:52
1366
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1367
  msgid "Activity ID"
1368
  msgstr ""
1369
 
1370
- #: admin/includes/templates/activities-logs.php:53
1371
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1372
  msgid "Permalink"
1373
  msgstr "Kalıcı bağlantı"
1374
 
1375
- #: admin/includes/templates/activities-logs.php:54
1376
- #: admin/includes/templates/comments-logs.php:55
1377
- #: admin/includes/templates/posts-logs.php:54
1378
- #: admin/includes/templates/topics-logs.php:54
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1380
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1381
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1382
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1383
  msgid "Date / Time"
1384
  msgstr ""
1385
 
1386
- #: admin/includes/templates/activities-logs.php:55
1387
- #: admin/includes/templates/comments-logs.php:56
1388
- #: admin/includes/templates/posts-logs.php:55
1389
- #: admin/includes/templates/topics-logs.php:55
1390
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1391
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1392
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1393
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1394
  msgid "IP"
1395
  msgstr ""
1396
 
1397
- #: admin/includes/templates/activities-logs.php:56
1398
- #: admin/includes/templates/comments-logs.php:57
1399
- #: admin/includes/templates/posts-logs.php:56
1400
- #: admin/includes/templates/topics-logs.php:56
1401
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1402
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1403
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1404
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1405
  msgid "Actions"
1406
  msgstr "Eylemler"
1407
 
1408
- #: admin/includes/templates/activities-logs.php:92
1409
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1410
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1411
  msgstr ""
1412
 
1413
- #: admin/includes/templates/comments-logs.php:52
1414
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1415
  msgid "Comment ID"
1416
  msgstr ""
1417
 
1418
- #: admin/includes/templates/comments-logs.php:53
1419
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1420
  msgid "Comment Author"
1421
  msgstr ""
1422
 
1423
- #: admin/includes/templates/comments-logs.php:54
1424
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1425
  msgid "Comment Text"
1426
  msgstr ""
1427
 
1428
- #: admin/includes/templates/comments-logs.php:63
1429
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1430
  msgid "Not Found!"
1431
  msgstr ""
1432
 
@@ -1435,61 +1511,31 @@ msgstr ""
1435
  msgid "WP ULike Premium"
1436
  msgstr ""
1437
 
1438
- #: admin/includes/templates/go-pro.php:22
1439
- #: admin/includes/templates/statistics.php:48
1440
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1441
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1442
- msgid "Buy WP ULike Premium"
1443
- msgstr ""
1444
-
1445
- #: admin/includes/templates/go-pro.php:28
1446
- #: admin/includes/templates/statistics.php:53
1447
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1448
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1449
- #, fuzzy
1450
- msgid "More information"
1451
- msgstr "Daha fazla bilgi için:"
1452
-
1453
- #: admin/includes/templates/go-pro.php:114
1454
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1455
  msgid ""
1456
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1457
  "ULike PRO plugin we fully support this page builder and have a variety of "
1458
  "widgets & controllers that make life much easier for you."
1459
  msgstr ""
1460
 
1461
- #: admin/includes/templates/go-pro.php:114
1462
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1463
  msgid ""
1464
  "Just drag your desired widget and drop it in your Elementor sections, "
1465
  "customize as you go and enjoy your like and dislike buttons on your contents."
1466
  msgstr ""
1467
 
1468
- #: admin/includes/templates/posts-logs.php:52
1469
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1470
  msgid "Post ID"
1471
  msgstr "Gönderi ID'si"
1472
 
1473
- #: admin/includes/templates/posts-logs.php:53
1474
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1475
  msgid "Post Title"
1476
  msgstr ""
1477
 
1478
- #: admin/includes/templates/statistics.php:45
1479
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1480
- msgid "Check Votings, Best Likers & Top contents"
1481
- msgstr ""
1482
-
1483
- #: admin/includes/templates/statistics.php:47
1484
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1485
- msgid ""
1486
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1487
- "users love and what annoys them in an instance. You can extract reports of "
1488
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1489
- "dateRange picker and status selector controllers, no confusing options and "
1490
- "coding needed."
1491
- msgstr ""
1492
-
1493
  #: admin/includes/templates/statistics.php:76
1494
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1495
  msgid "Total"
@@ -1539,13 +1585,13 @@ msgstr ""
1539
  msgid "Top"
1540
  msgstr "Baloncuk"
1541
 
1542
- #: admin/includes/templates/topics-logs.php:52
1543
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1544
  msgid "Topic ID"
1545
  msgstr ""
1546
 
1547
- #: admin/includes/templates/topics-logs.php:53
1548
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1549
  msgid "Topic Title"
1550
  msgstr ""
1551
 
@@ -1664,48 +1710,48 @@ msgstr ""
1664
  msgid "Are you sure to reset all options?"
1665
  msgstr ""
1666
 
1667
- #: admin/settings/classes/setup.class.php:429
1668
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1669
  msgid "Are you sure?"
1670
  msgstr ""
1671
 
1672
- #: admin/settings/classes/setup.class.php:430
1673
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1674
  msgid "Restoring options."
1675
  msgstr ""
1676
 
1677
- #: admin/settings/classes/setup.class.php:431
1678
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1679
  msgid "Importing options."
1680
  msgstr ""
1681
 
1682
- #: admin/settings/classes/setup.class.php:434
1683
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1684
  msgid "Please enter %s or more characters"
1685
  msgstr ""
1686
 
1687
- #: admin/settings/classes/setup.class.php:435
1688
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1689
  msgid "Searching..."
1690
  msgstr ""
1691
 
1692
- #: admin/settings/classes/setup.class.php:436
1693
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1694
  msgid "No results match"
1695
  msgstr ""
1696
 
1697
- #: admin/settings/classes/setup.class.php:507
1698
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1699
  msgid "Ooops! This field type (%s) can not be used here, yet."
1700
  msgstr ""
1701
 
1702
- #: admin/settings/classes/setup.class.php:570
1703
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1704
  msgid "This field class is not available!"
1705
  msgstr ""
1706
 
1707
- #: admin/settings/classes/setup.class.php:574
1708
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1709
  msgid "This type is not found!"
1710
  msgstr ""
1711
 
@@ -2576,17 +2622,17 @@ msgid ""
2576
  msgstr ""
2577
 
2578
  #: build/wp-ulike/inc/frontend-ajax.php:42
2579
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2580
- #: inc/frontend-ajax.php:164
2581
  msgid "Error: This Method Is Not Exist!"
2582
  msgstr ""
2583
 
2584
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2585
- msgid "Notice: The likers box is refreshed only for logged in users!"
2586
  msgstr ""
2587
 
2588
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2589
- msgid "Notice: The likers box is not activated!"
2590
  msgstr ""
2591
 
2592
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2631,15 +2677,15 @@ msgstr ""
2631
  msgid "Table info is empty."
2632
  msgstr ""
2633
 
2634
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2635
  msgid "You need to login in order to like this post: "
2636
  msgstr ""
2637
 
2638
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2639
  msgid "click here"
2640
  msgstr ""
2641
 
2642
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2643
  #, fuzzy
2644
  msgid "Like This"
2645
  msgstr "Bu eklentiyi beğendin mi?"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "Daha fazla bilgi için:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr ""
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr ""
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr ""
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
192
  msgstr ""
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr "Günlükler"
214
 
1037
  msgid "Topics Stats"
1038
  msgstr ""
1039
 
1040
+ #: admin/classes/class-wp-ulike-stats.php:273
1041
+ #: admin/includes/templates/activities-logs.php:98
1042
+ #: admin/includes/templates/comments-logs.php:103
1043
+ #: admin/includes/templates/posts-logs.php:97
1044
+ #: admin/includes/templates/topics-logs.php:97
1045
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1046
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1047
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1048
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1049
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1050
  msgid "Guest User"
1051
  msgstr ""
1052
 
1332
  msgid "No data found! This is because there is still no data in your database."
1333
  msgstr ""
1334
 
1335
+ #: admin/includes/templates/activities-logs.php:40
1336
+ #: admin/includes/templates/comments-logs.php:40
1337
+ #: admin/includes/templates/posts-logs.php:40
1338
+ #: admin/includes/templates/statistics.php:45
1339
+ #: admin/includes/templates/topics-logs.php:40
1340
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1341
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1342
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1343
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1344
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1345
+ msgid "Check Votings, Best Likers & Top contents"
1346
+ msgstr ""
1347
+
1348
+ #: admin/includes/templates/activities-logs.php:42
1349
+ #: admin/includes/templates/comments-logs.php:42
1350
+ #: admin/includes/templates/posts-logs.php:42
1351
+ #: admin/includes/templates/statistics.php:47
1352
+ #: admin/includes/templates/topics-logs.php:42
1353
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1354
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1355
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1356
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1357
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1358
+ msgid ""
1359
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1360
+ "users love and what annoys them in an instance. You can extract reports of "
1361
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1362
+ "dateRange picker and status selector controllers, no confusing options and "
1363
+ "coding needed."
1364
+ msgstr ""
1365
+
1366
+ #: admin/includes/templates/activities-logs.php:43
1367
+ #: admin/includes/templates/comments-logs.php:43
1368
+ #: admin/includes/templates/go-pro.php:22
1369
+ #: admin/includes/templates/posts-logs.php:43
1370
+ #: admin/includes/templates/statistics.php:48
1371
+ #: admin/includes/templates/topics-logs.php:43
1372
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1373
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1374
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1375
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1376
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1377
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1378
+ msgid "Buy WP ULike Premium"
1379
+ msgstr ""
1380
+
1381
+ #: admin/includes/templates/activities-logs.php:48
1382
+ #: admin/includes/templates/comments-logs.php:48
1383
+ #: admin/includes/templates/go-pro.php:28
1384
+ #: admin/includes/templates/posts-logs.php:48
1385
+ #: admin/includes/templates/statistics.php:53
1386
+ #: admin/includes/templates/topics-logs.php:48
1387
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1388
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1389
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1390
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1391
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1392
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1393
+ #, fuzzy
1394
+ msgid "More information"
1395
+ msgstr "Daha fazla bilgi için:"
1396
+
1397
+ #: admin/includes/templates/activities-logs.php:60
1398
+ #: admin/includes/templates/comments-logs.php:60
1399
+ #: admin/includes/templates/posts-logs.php:60
1400
+ #: admin/includes/templates/topics-logs.php:60
1401
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1402
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1403
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1404
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1405
  msgid "WP ULike Logs"
1406
  msgstr ""
1407
 
1408
+ #: admin/includes/templates/activities-logs.php:71
1409
+ #: admin/includes/templates/comments-logs.php:71
1410
+ #: admin/includes/templates/posts-logs.php:71
1411
+ #: admin/includes/templates/topics-logs.php:71
1412
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1413
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1414
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1415
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1416
  msgid "ID"
1417
  msgstr "ID"
1418
 
1419
+ #: admin/includes/templates/activities-logs.php:72
1420
+ #: admin/includes/templates/comments-logs.php:72
1421
+ #: admin/includes/templates/posts-logs.php:72
1422
+ #: admin/includes/templates/topics-logs.php:72
1423
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1424
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1425
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1426
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1427
  msgid "Username"
1428
  msgstr "Kullanıcıadı"
1429
 
1430
+ #: admin/includes/templates/activities-logs.php:73
1431
+ #: admin/includes/templates/comments-logs.php:73
1432
+ #: admin/includes/templates/posts-logs.php:73
1433
+ #: admin/includes/templates/topics-logs.php:73
1434
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1435
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1436
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1437
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1438
  msgid "Status"
1439
  msgstr "Durum"
1440
 
1441
+ #: admin/includes/templates/activities-logs.php:74
1442
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1443
  msgid "Activity ID"
1444
  msgstr ""
1445
 
1446
+ #: admin/includes/templates/activities-logs.php:75
1447
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1448
  msgid "Permalink"
1449
  msgstr "Kalıcı bağlantı"
1450
 
1451
+ #: admin/includes/templates/activities-logs.php:76
1452
+ #: admin/includes/templates/comments-logs.php:77
1453
+ #: admin/includes/templates/posts-logs.php:76
1454
+ #: admin/includes/templates/topics-logs.php:76
1455
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1456
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1457
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1458
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1459
  msgid "Date / Time"
1460
  msgstr ""
1461
 
1462
+ #: admin/includes/templates/activities-logs.php:77
1463
+ #: admin/includes/templates/comments-logs.php:78
1464
+ #: admin/includes/templates/posts-logs.php:77
1465
+ #: admin/includes/templates/topics-logs.php:77
1466
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1467
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1468
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1469
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1470
  msgid "IP"
1471
  msgstr ""
1472
 
1473
+ #: admin/includes/templates/activities-logs.php:78
1474
+ #: admin/includes/templates/comments-logs.php:79
1475
+ #: admin/includes/templates/posts-logs.php:78
1476
+ #: admin/includes/templates/topics-logs.php:78
1477
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1478
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1479
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1480
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1481
  msgid "Actions"
1482
  msgstr "Eylemler"
1483
 
1484
+ #: admin/includes/templates/activities-logs.php:114
1485
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1486
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1487
  msgstr ""
1488
 
1489
+ #: admin/includes/templates/comments-logs.php:74
1490
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1491
  msgid "Comment ID"
1492
  msgstr ""
1493
 
1494
+ #: admin/includes/templates/comments-logs.php:75
1495
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1496
  msgid "Comment Author"
1497
  msgstr ""
1498
 
1499
+ #: admin/includes/templates/comments-logs.php:76
1500
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1501
  msgid "Comment Text"
1502
  msgstr ""
1503
 
1504
+ #: admin/includes/templates/comments-logs.php:85
1505
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1506
  msgid "Not Found!"
1507
  msgstr ""
1508
 
1511
  msgid "WP ULike Premium"
1512
  msgstr ""
1513
 
1514
+ #: admin/includes/templates/go-pro.php:119
1515
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1516
  msgid ""
1517
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1518
  "ULike PRO plugin we fully support this page builder and have a variety of "
1519
  "widgets & controllers that make life much easier for you."
1520
  msgstr ""
1521
 
1522
+ #: admin/includes/templates/go-pro.php:119
1523
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1524
  msgid ""
1525
  "Just drag your desired widget and drop it in your Elementor sections, "
1526
  "customize as you go and enjoy your like and dislike buttons on your contents."
1527
  msgstr ""
1528
 
1529
+ #: admin/includes/templates/posts-logs.php:74
1530
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1531
  msgid "Post ID"
1532
  msgstr "Gönderi ID'si"
1533
 
1534
+ #: admin/includes/templates/posts-logs.php:75
1535
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1536
  msgid "Post Title"
1537
  msgstr ""
1538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1539
  #: admin/includes/templates/statistics.php:76
1540
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1541
  msgid "Total"
1585
  msgid "Top"
1586
  msgstr "Baloncuk"
1587
 
1588
+ #: admin/includes/templates/topics-logs.php:74
1589
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1590
  msgid "Topic ID"
1591
  msgstr ""
1592
 
1593
+ #: admin/includes/templates/topics-logs.php:75
1594
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1595
  msgid "Topic Title"
1596
  msgstr ""
1597
 
1710
  msgid "Are you sure to reset all options?"
1711
  msgstr ""
1712
 
1713
+ #: admin/settings/classes/setup.class.php:436
1714
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1715
  msgid "Are you sure?"
1716
  msgstr ""
1717
 
1718
+ #: admin/settings/classes/setup.class.php:437
1719
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1720
  msgid "Restoring options."
1721
  msgstr ""
1722
 
1723
+ #: admin/settings/classes/setup.class.php:438
1724
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1725
  msgid "Importing options."
1726
  msgstr ""
1727
 
1728
+ #: admin/settings/classes/setup.class.php:441
1729
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1730
  msgid "Please enter %s or more characters"
1731
  msgstr ""
1732
 
1733
+ #: admin/settings/classes/setup.class.php:442
1734
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1735
  msgid "Searching..."
1736
  msgstr ""
1737
 
1738
+ #: admin/settings/classes/setup.class.php:443
1739
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1740
  msgid "No results match"
1741
  msgstr ""
1742
 
1743
+ #: admin/settings/classes/setup.class.php:514
1744
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1745
  msgid "Ooops! This field type (%s) can not be used here, yet."
1746
  msgstr ""
1747
 
1748
+ #: admin/settings/classes/setup.class.php:577
1749
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1750
  msgid "This field class is not available!"
1751
  msgstr ""
1752
 
1753
+ #: admin/settings/classes/setup.class.php:581
1754
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1755
  msgid "This type is not found!"
1756
  msgstr ""
1757
 
2622
  msgstr ""
2623
 
2624
  #: build/wp-ulike/inc/frontend-ajax.php:42
2625
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2626
+ #: inc/frontend-ajax.php:170
2627
  msgid "Error: This Method Is Not Exist!"
2628
  msgstr ""
2629
 
2630
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2631
+ msgid "Notice: The likers box is not activated!"
2632
  msgstr ""
2633
 
2634
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2635
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2636
  msgstr ""
2637
 
2638
  #: build/wp-ulike/inc/general-functions.php:85
2677
  msgid "Table info is empty."
2678
  msgstr ""
2679
 
2680
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2681
  msgid "You need to login in order to like this post: "
2682
  msgstr ""
2683
 
2684
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2685
  msgid "click here"
2686
  msgstr ""
2687
 
2688
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2689
  #, fuzzy
2690
  msgid "Like This"
2691
  msgstr "Bu eklentiyi beğendin mi?"
lang/wp-ulike-zh_CN.po CHANGED
@@ -5,7 +5,7 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
9
  "PO-Revision-Date: 2017-01-20 21:23+0330\n"
10
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/wp-translations/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
@@ -73,44 +73,58 @@ msgstr ""
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
- #: build/wp-ulike/admin/admin-hooks.php:204
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
- #: build/wp-ulike/admin/admin-hooks.php:210
 
86
  msgid "No thanks and never ask me again"
87
  msgstr ""
88
 
89
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
90
- msgid "Boost Your SEO by Using Schema Rich Snippets"
91
  msgstr ""
92
 
93
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
94
  msgid ""
95
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
96
- "Plugin which can manage +13 types of Schema Markups to make a better "
97
- "connection between your webpages and search engines. Now you can talk in "
98
- "search engine language and tell them which type of content you are promoting."
99
  msgstr ""
100
 
101
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
102
- #: build/wp-ulike/admin/admin-hooks.php:170
103
- #: build/wp-ulike/admin/admin-hooks.php:200
 
104
  #, fuzzy
105
  msgid "Get More Information"
106
  msgstr "更多信息:"
107
 
108
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
109
- msgid "WP Ulike Pro is Ready :))"
110
  msgstr ""
111
 
112
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
113
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
114
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
115
  "been released with some new features such as support for Dislike button, "
116
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -118,8 +132,8 @@ msgid ""
118
  "provide a full support for our users."
119
  msgstr ""
120
 
121
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
122
- #: build/wp-ulike/admin/admin-hooks.php:239
123
  #: build/wp-ulike/admin/includes/templates/about.php:29
124
  msgid "Go Pro"
125
  msgstr ""
@@ -135,30 +149,30 @@ msgid "No information was found in this database!"
135
  msgstr ""
136
 
137
  #: admin/classes/class-wp-ulike-admin-pages.php:27
138
- #: admin/includes/templates/posts-logs.php:39
139
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
140
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
141
  msgid "Post Likes Logs"
142
  msgstr "文章喜欢日志"
143
 
144
  #: admin/classes/class-wp-ulike-admin-pages.php:35
145
- #: admin/includes/templates/comments-logs.php:39
146
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
147
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
148
  msgid "Comment Likes Logs"
149
  msgstr "评论喜欢日志"
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:43
152
- #: admin/includes/templates/activities-logs.php:39
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
154
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
155
  msgid "Activity Likes Logs"
156
  msgstr "活动喜欢日志"
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:51
159
- #: admin/includes/templates/topics-logs.php:39
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
161
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
162
  msgid "Topics Likes Logs"
163
  msgstr ""
164
 
@@ -177,23 +191,23 @@ msgid "About"
177
  msgstr "关于"
178
 
179
  #: admin/classes/class-wp-ulike-admin-pages.php:133
180
- #: admin/includes/templates/activities-logs.php:42
181
- #: admin/includes/templates/activities-logs.php:119
182
- #: admin/includes/templates/comments-logs.php:42
183
- #: admin/includes/templates/comments-logs.php:129
184
- #: admin/includes/templates/posts-logs.php:42
185
- #: admin/includes/templates/posts-logs.php:118
186
- #: admin/includes/templates/topics-logs.php:42
187
- #: admin/includes/templates/topics-logs.php:118
188
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
189
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
191
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
193
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
195
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
197
  msgid "Logs"
198
  msgstr "日志"
199
 
@@ -1032,16 +1046,16 @@ msgstr "活动喜欢日志"
1032
  msgid "Topics Stats"
1033
  msgstr ""
1034
 
1035
- #: admin/classes/class-wp-ulike-stats.php:274
1036
- #: admin/includes/templates/activities-logs.php:76
1037
- #: admin/includes/templates/comments-logs.php:81
1038
- #: admin/includes/templates/posts-logs.php:75
1039
- #: admin/includes/templates/topics-logs.php:75
1040
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1041
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1042
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1043
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1044
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1045
  msgid "Guest User"
1046
  msgstr ""
1047
 
@@ -1328,115 +1342,177 @@ msgstr "项目主管和开发"
1328
  msgid "No data found! This is because there is still no data in your database."
1329
  msgstr ""
1330
 
1331
- #: admin/includes/templates/activities-logs.php:38
1332
- #: admin/includes/templates/comments-logs.php:38
1333
- #: admin/includes/templates/posts-logs.php:38
1334
- #: admin/includes/templates/topics-logs.php:38
1335
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1336
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1337
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1338
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1339
  msgid "WP ULike Logs"
1340
  msgstr "WP ULike 日志"
1341
 
1342
- #: admin/includes/templates/activities-logs.php:49
1343
- #: admin/includes/templates/comments-logs.php:49
1344
- #: admin/includes/templates/posts-logs.php:49
1345
- #: admin/includes/templates/topics-logs.php:49
1346
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1347
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1348
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1349
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1350
  msgid "ID"
1351
  msgstr "ID"
1352
 
1353
- #: admin/includes/templates/activities-logs.php:50
1354
- #: admin/includes/templates/comments-logs.php:50
1355
- #: admin/includes/templates/posts-logs.php:50
1356
- #: admin/includes/templates/topics-logs.php:50
1357
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1358
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1359
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1360
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1361
  msgid "Username"
1362
  msgstr "用户名"
1363
 
1364
- #: admin/includes/templates/activities-logs.php:51
1365
- #: admin/includes/templates/comments-logs.php:51
1366
- #: admin/includes/templates/posts-logs.php:51
1367
- #: admin/includes/templates/topics-logs.php:51
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1369
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1370
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1371
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1372
  msgid "Status"
1373
  msgstr "状态"
1374
 
1375
- #: admin/includes/templates/activities-logs.php:52
1376
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1377
  msgid "Activity ID"
1378
  msgstr "活动ID"
1379
 
1380
- #: admin/includes/templates/activities-logs.php:53
1381
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1382
  msgid "Permalink"
1383
  msgstr "固定链接"
1384
 
1385
- #: admin/includes/templates/activities-logs.php:54
1386
- #: admin/includes/templates/comments-logs.php:55
1387
- #: admin/includes/templates/posts-logs.php:54
1388
- #: admin/includes/templates/topics-logs.php:54
1389
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1390
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1391
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1392
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1393
  msgid "Date / Time"
1394
  msgstr "日期/时间"
1395
 
1396
- #: admin/includes/templates/activities-logs.php:55
1397
- #: admin/includes/templates/comments-logs.php:56
1398
- #: admin/includes/templates/posts-logs.php:55
1399
- #: admin/includes/templates/topics-logs.php:55
1400
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1401
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1402
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1403
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1404
  msgid "IP"
1405
  msgstr "IP"
1406
 
1407
- #: admin/includes/templates/activities-logs.php:56
1408
- #: admin/includes/templates/comments-logs.php:57
1409
- #: admin/includes/templates/posts-logs.php:56
1410
- #: admin/includes/templates/topics-logs.php:56
1411
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1412
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1413
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1414
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1415
  msgid "Actions"
1416
  msgstr "操作"
1417
 
1418
- #: admin/includes/templates/activities-logs.php:92
1419
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1420
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1421
  msgstr ""
1422
 
1423
- #: admin/includes/templates/comments-logs.php:52
1424
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1425
  msgid "Comment ID"
1426
  msgstr "评论ID"
1427
 
1428
- #: admin/includes/templates/comments-logs.php:53
1429
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1430
  msgid "Comment Author"
1431
  msgstr "评论作者"
1432
 
1433
- #: admin/includes/templates/comments-logs.php:54
1434
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1435
  msgid "Comment Text"
1436
  msgstr ""
1437
 
1438
- #: admin/includes/templates/comments-logs.php:63
1439
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1440
  msgid "Not Found!"
1441
  msgstr ""
1442
 
@@ -1446,61 +1522,31 @@ msgstr ""
1446
  msgid "WP ULike Premium"
1447
  msgstr "WP ULike 设置"
1448
 
1449
- #: admin/includes/templates/go-pro.php:22
1450
- #: admin/includes/templates/statistics.php:48
1451
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1452
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1453
- msgid "Buy WP ULike Premium"
1454
- msgstr ""
1455
-
1456
- #: admin/includes/templates/go-pro.php:28
1457
- #: admin/includes/templates/statistics.php:53
1458
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1459
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1460
- #, fuzzy
1461
- msgid "More information"
1462
- msgstr "更多信息:"
1463
-
1464
- #: admin/includes/templates/go-pro.php:114
1465
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1466
  msgid ""
1467
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1468
  "ULike PRO plugin we fully support this page builder and have a variety of "
1469
  "widgets & controllers that make life much easier for you."
1470
  msgstr ""
1471
 
1472
- #: admin/includes/templates/go-pro.php:114
1473
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1474
  msgid ""
1475
  "Just drag your desired widget and drop it in your Elementor sections, "
1476
  "customize as you go and enjoy your like and dislike buttons on your contents."
1477
  msgstr ""
1478
 
1479
- #: admin/includes/templates/posts-logs.php:52
1480
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1481
  msgid "Post ID"
1482
  msgstr "文章ID"
1483
 
1484
- #: admin/includes/templates/posts-logs.php:53
1485
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1486
  msgid "Post Title"
1487
  msgstr "文章标题"
1488
 
1489
- #: admin/includes/templates/statistics.php:45
1490
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1491
- msgid "Check Votings, Best Likers & Top contents"
1492
- msgstr ""
1493
-
1494
- #: admin/includes/templates/statistics.php:47
1495
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1496
- msgid ""
1497
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1498
- "users love and what annoys them in an instance. You can extract reports of "
1499
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1500
- "dateRange picker and status selector controllers, no confusing options and "
1501
- "coding needed."
1502
- msgstr ""
1503
-
1504
  #: admin/includes/templates/statistics.php:76
1505
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1506
  msgid "Total"
@@ -1550,13 +1596,13 @@ msgstr ""
1550
  msgid "Top"
1551
  msgstr "提示工具"
1552
 
1553
- #: admin/includes/templates/topics-logs.php:52
1554
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1555
  msgid "Topic ID"
1556
  msgstr ""
1557
 
1558
- #: admin/includes/templates/topics-logs.php:53
1559
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1560
  msgid "Topic Title"
1561
  msgstr ""
1562
 
@@ -1677,49 +1723,49 @@ msgstr ""
1677
  msgid "Are you sure to reset all options?"
1678
  msgstr ""
1679
 
1680
- #: admin/settings/classes/setup.class.php:429
1681
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1682
  msgid "Are you sure?"
1683
  msgstr ""
1684
 
1685
- #: admin/settings/classes/setup.class.php:430
1686
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1687
  msgid "Restoring options."
1688
  msgstr ""
1689
 
1690
- #: admin/settings/classes/setup.class.php:431
1691
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1692
  #, fuzzy
1693
  msgid "Importing options."
1694
  msgstr "排序选项:"
1695
 
1696
- #: admin/settings/classes/setup.class.php:434
1697
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1698
  msgid "Please enter %s or more characters"
1699
  msgstr ""
1700
 
1701
- #: admin/settings/classes/setup.class.php:435
1702
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1703
  msgid "Searching..."
1704
  msgstr ""
1705
 
1706
- #: admin/settings/classes/setup.class.php:436
1707
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1708
  msgid "No results match"
1709
  msgstr ""
1710
 
1711
- #: admin/settings/classes/setup.class.php:507
1712
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1713
  msgid "Ooops! This field type (%s) can not be used here, yet."
1714
  msgstr ""
1715
 
1716
- #: admin/settings/classes/setup.class.php:570
1717
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1718
  msgid "This field class is not available!"
1719
  msgstr ""
1720
 
1721
- #: admin/settings/classes/setup.class.php:574
1722
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1723
  msgid "This type is not found!"
1724
  msgstr ""
1725
 
@@ -2596,17 +2642,17 @@ msgid ""
2596
  msgstr ""
2597
 
2598
  #: build/wp-ulike/inc/frontend-ajax.php:42
2599
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2600
- #: inc/frontend-ajax.php:164
2601
  msgid "Error: This Method Is Not Exist!"
2602
  msgstr ""
2603
 
2604
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2605
- msgid "Notice: The likers box is refreshed only for logged in users!"
2606
  msgstr ""
2607
 
2608
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2609
- msgid "Notice: The likers box is not activated!"
2610
  msgstr ""
2611
 
2612
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2652,15 +2698,15 @@ msgstr ""
2652
  msgid "Table info is empty."
2653
  msgstr ""
2654
 
2655
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2656
  msgid "You need to login in order to like this post: "
2657
  msgstr "你需要登录后才能喜欢这篇文章:"
2658
 
2659
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2660
  msgid "click here"
2661
  msgstr "点击这里"
2662
 
2663
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2664
  #, fuzzy
2665
  msgid "Like This"
2666
  msgstr "喜欢"
5
  msgstr ""
6
  "Project-Id-Version: WP ULike\n"
7
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
8
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
9
  "PO-Revision-Date: 2017-01-20 21:23+0330\n"
10
  "Last-Translator: Alimir <alimir71@yahoo.com>\n"
11
  "Language-Team: Chinese (China) (http://www.transifex.com/wp-translations/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  #, fuzzy
51
  msgid "Button"
73
  msgid "Sure, I'd love to!"
74
  msgstr ""
75
 
76
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
77
  #: build/wp-ulike/admin/admin-hooks.php:142
78
+ #: build/wp-ulike/admin/admin-hooks.php:227
79
  msgid "Not Now"
80
  msgstr ""
81
 
82
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
83
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
84
+ #: build/wp-ulike/admin/admin-hooks.php:148
85
  #: build/wp-ulike/admin/admin-hooks.php:174
86
+ #: build/wp-ulike/admin/admin-hooks.php:197
87
+ #: build/wp-ulike/admin/admin-hooks.php:233
88
  msgid "No thanks and never ask me again"
89
  msgstr ""
90
 
91
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
92
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
93
  msgstr ""
94
 
95
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
96
  msgid ""
97
+ "Having votes for your content without a tool for measuring the results is "
98
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
99
+ "data in the WP ULike professional Logs panel."
 
100
  msgstr ""
101
 
102
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
103
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
104
+ #: build/wp-ulike/admin/admin-hooks.php:193
105
+ #: build/wp-ulike/admin/admin-hooks.php:223
106
  #, fuzzy
107
  msgid "Get More Information"
108
  msgstr "更多信息:"
109
 
110
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
111
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
112
  msgstr ""
113
 
114
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
115
  msgid ""
116
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
117
+ "Plugin which can manage +13 types of Schema Markups to make a better "
118
+ "connection between your webpages and search engines. Now you can talk in "
119
+ "search engine language and tell them which type of content you are promoting."
120
+ msgstr ""
121
+
122
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
123
+ msgid "WP Ulike Pro is Ready :))"
124
+ msgstr ""
125
+
126
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
127
+ msgid ""
128
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
129
  "been released with some new features such as support for Dislike button, "
130
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
132
  "provide a full support for our users."
133
  msgstr ""
134
 
135
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
136
+ #: build/wp-ulike/admin/admin-hooks.php:262
137
  #: build/wp-ulike/admin/includes/templates/about.php:29
138
  msgid "Go Pro"
139
  msgstr ""
149
  msgstr ""
150
 
151
  #: admin/classes/class-wp-ulike-admin-pages.php:27
152
+ #: admin/includes/templates/posts-logs.php:61
153
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
154
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
155
  msgid "Post Likes Logs"
156
  msgstr "文章喜欢日志"
157
 
158
  #: admin/classes/class-wp-ulike-admin-pages.php:35
159
+ #: admin/includes/templates/comments-logs.php:61
160
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
161
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
162
  msgid "Comment Likes Logs"
163
  msgstr "评论喜欢日志"
164
 
165
  #: admin/classes/class-wp-ulike-admin-pages.php:43
166
+ #: admin/includes/templates/activities-logs.php:61
167
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
168
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
169
  msgid "Activity Likes Logs"
170
  msgstr "活动喜欢日志"
171
 
172
  #: admin/classes/class-wp-ulike-admin-pages.php:51
173
+ #: admin/includes/templates/topics-logs.php:61
174
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
175
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
176
  msgid "Topics Likes Logs"
177
  msgstr ""
178
 
191
  msgstr "关于"
192
 
193
  #: admin/classes/class-wp-ulike-admin-pages.php:133
194
+ #: admin/includes/templates/activities-logs.php:64
195
+ #: admin/includes/templates/activities-logs.php:141
196
+ #: admin/includes/templates/comments-logs.php:64
197
+ #: admin/includes/templates/comments-logs.php:151
198
+ #: admin/includes/templates/posts-logs.php:64
199
+ #: admin/includes/templates/posts-logs.php:140
200
+ #: admin/includes/templates/topics-logs.php:64
201
+ #: admin/includes/templates/topics-logs.php:140
202
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
203
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
205
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
207
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
209
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
211
  msgid "Logs"
212
  msgstr "日志"
213
 
1046
  msgid "Topics Stats"
1047
  msgstr ""
1048
 
1049
+ #: admin/classes/class-wp-ulike-stats.php:273
1050
+ #: admin/includes/templates/activities-logs.php:98
1051
+ #: admin/includes/templates/comments-logs.php:103
1052
+ #: admin/includes/templates/posts-logs.php:97
1053
+ #: admin/includes/templates/topics-logs.php:97
1054
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1055
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1056
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1057
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1058
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1059
  msgid "Guest User"
1060
  msgstr ""
1061
 
1342
  msgid "No data found! This is because there is still no data in your database."
1343
  msgstr ""
1344
 
1345
+ #: admin/includes/templates/activities-logs.php:40
1346
+ #: admin/includes/templates/comments-logs.php:40
1347
+ #: admin/includes/templates/posts-logs.php:40
1348
+ #: admin/includes/templates/statistics.php:45
1349
+ #: admin/includes/templates/topics-logs.php:40
1350
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1351
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1352
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1353
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1354
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1355
+ msgid "Check Votings, Best Likers & Top contents"
1356
+ msgstr ""
1357
+
1358
+ #: admin/includes/templates/activities-logs.php:42
1359
+ #: admin/includes/templates/comments-logs.php:42
1360
+ #: admin/includes/templates/posts-logs.php:42
1361
+ #: admin/includes/templates/statistics.php:47
1362
+ #: admin/includes/templates/topics-logs.php:42
1363
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1364
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1365
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1366
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1367
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1368
+ msgid ""
1369
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1370
+ "users love and what annoys them in an instance. You can extract reports of "
1371
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1372
+ "dateRange picker and status selector controllers, no confusing options and "
1373
+ "coding needed."
1374
+ msgstr ""
1375
+
1376
+ #: admin/includes/templates/activities-logs.php:43
1377
+ #: admin/includes/templates/comments-logs.php:43
1378
+ #: admin/includes/templates/go-pro.php:22
1379
+ #: admin/includes/templates/posts-logs.php:43
1380
+ #: admin/includes/templates/statistics.php:48
1381
+ #: admin/includes/templates/topics-logs.php:43
1382
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1383
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1384
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1385
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1386
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1387
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1388
+ msgid "Buy WP ULike Premium"
1389
+ msgstr ""
1390
+
1391
+ #: admin/includes/templates/activities-logs.php:48
1392
+ #: admin/includes/templates/comments-logs.php:48
1393
+ #: admin/includes/templates/go-pro.php:28
1394
+ #: admin/includes/templates/posts-logs.php:48
1395
+ #: admin/includes/templates/statistics.php:53
1396
+ #: admin/includes/templates/topics-logs.php:48
1397
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1398
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1399
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1400
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1401
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1402
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1403
+ #, fuzzy
1404
+ msgid "More information"
1405
+ msgstr "更多信息:"
1406
+
1407
+ #: admin/includes/templates/activities-logs.php:60
1408
+ #: admin/includes/templates/comments-logs.php:60
1409
+ #: admin/includes/templates/posts-logs.php:60
1410
+ #: admin/includes/templates/topics-logs.php:60
1411
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1412
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1413
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1414
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1415
  msgid "WP ULike Logs"
1416
  msgstr "WP ULike 日志"
1417
 
1418
+ #: admin/includes/templates/activities-logs.php:71
1419
+ #: admin/includes/templates/comments-logs.php:71
1420
+ #: admin/includes/templates/posts-logs.php:71
1421
+ #: admin/includes/templates/topics-logs.php:71
1422
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1423
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1424
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1425
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1426
  msgid "ID"
1427
  msgstr "ID"
1428
 
1429
+ #: admin/includes/templates/activities-logs.php:72
1430
+ #: admin/includes/templates/comments-logs.php:72
1431
+ #: admin/includes/templates/posts-logs.php:72
1432
+ #: admin/includes/templates/topics-logs.php:72
1433
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1434
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1435
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1436
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1437
  msgid "Username"
1438
  msgstr "用户名"
1439
 
1440
+ #: admin/includes/templates/activities-logs.php:73
1441
+ #: admin/includes/templates/comments-logs.php:73
1442
+ #: admin/includes/templates/posts-logs.php:73
1443
+ #: admin/includes/templates/topics-logs.php:73
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1445
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1446
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1447
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1448
  msgid "Status"
1449
  msgstr "状态"
1450
 
1451
+ #: admin/includes/templates/activities-logs.php:74
1452
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1453
  msgid "Activity ID"
1454
  msgstr "活动ID"
1455
 
1456
+ #: admin/includes/templates/activities-logs.php:75
1457
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1458
  msgid "Permalink"
1459
  msgstr "固定链接"
1460
 
1461
+ #: admin/includes/templates/activities-logs.php:76
1462
+ #: admin/includes/templates/comments-logs.php:77
1463
+ #: admin/includes/templates/posts-logs.php:76
1464
+ #: admin/includes/templates/topics-logs.php:76
1465
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1466
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1467
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1468
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1469
  msgid "Date / Time"
1470
  msgstr "日期/时间"
1471
 
1472
+ #: admin/includes/templates/activities-logs.php:77
1473
+ #: admin/includes/templates/comments-logs.php:78
1474
+ #: admin/includes/templates/posts-logs.php:77
1475
+ #: admin/includes/templates/topics-logs.php:77
1476
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1477
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1478
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1479
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1480
  msgid "IP"
1481
  msgstr "IP"
1482
 
1483
+ #: admin/includes/templates/activities-logs.php:78
1484
+ #: admin/includes/templates/comments-logs.php:79
1485
+ #: admin/includes/templates/posts-logs.php:78
1486
+ #: admin/includes/templates/topics-logs.php:78
1487
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1488
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1489
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1490
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1491
  msgid "Actions"
1492
  msgstr "操作"
1493
 
1494
+ #: admin/includes/templates/activities-logs.php:114
1495
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1496
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1497
  msgstr ""
1498
 
1499
+ #: admin/includes/templates/comments-logs.php:74
1500
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1501
  msgid "Comment ID"
1502
  msgstr "评论ID"
1503
 
1504
+ #: admin/includes/templates/comments-logs.php:75
1505
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1506
  msgid "Comment Author"
1507
  msgstr "评论作者"
1508
 
1509
+ #: admin/includes/templates/comments-logs.php:76
1510
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1511
  msgid "Comment Text"
1512
  msgstr ""
1513
 
1514
+ #: admin/includes/templates/comments-logs.php:85
1515
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1516
  msgid "Not Found!"
1517
  msgstr ""
1518
 
1522
  msgid "WP ULike Premium"
1523
  msgstr "WP ULike 设置"
1524
 
1525
+ #: admin/includes/templates/go-pro.php:119
1526
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1527
  msgid ""
1528
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1529
  "ULike PRO plugin we fully support this page builder and have a variety of "
1530
  "widgets & controllers that make life much easier for you."
1531
  msgstr ""
1532
 
1533
+ #: admin/includes/templates/go-pro.php:119
1534
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1535
  msgid ""
1536
  "Just drag your desired widget and drop it in your Elementor sections, "
1537
  "customize as you go and enjoy your like and dislike buttons on your contents."
1538
  msgstr ""
1539
 
1540
+ #: admin/includes/templates/posts-logs.php:74
1541
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1542
  msgid "Post ID"
1543
  msgstr "文章ID"
1544
 
1545
+ #: admin/includes/templates/posts-logs.php:75
1546
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1547
  msgid "Post Title"
1548
  msgstr "文章标题"
1549
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1550
  #: admin/includes/templates/statistics.php:76
1551
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1552
  msgid "Total"
1596
  msgid "Top"
1597
  msgstr "提示工具"
1598
 
1599
+ #: admin/includes/templates/topics-logs.php:74
1600
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1601
  msgid "Topic ID"
1602
  msgstr ""
1603
 
1604
+ #: admin/includes/templates/topics-logs.php:75
1605
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1606
  msgid "Topic Title"
1607
  msgstr ""
1608
 
1723
  msgid "Are you sure to reset all options?"
1724
  msgstr ""
1725
 
1726
+ #: admin/settings/classes/setup.class.php:436
1727
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1728
  msgid "Are you sure?"
1729
  msgstr ""
1730
 
1731
+ #: admin/settings/classes/setup.class.php:437
1732
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1733
  msgid "Restoring options."
1734
  msgstr ""
1735
 
1736
+ #: admin/settings/classes/setup.class.php:438
1737
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1738
  #, fuzzy
1739
  msgid "Importing options."
1740
  msgstr "排序选项:"
1741
 
1742
+ #: admin/settings/classes/setup.class.php:441
1743
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1744
  msgid "Please enter %s or more characters"
1745
  msgstr ""
1746
 
1747
+ #: admin/settings/classes/setup.class.php:442
1748
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1749
  msgid "Searching..."
1750
  msgstr ""
1751
 
1752
+ #: admin/settings/classes/setup.class.php:443
1753
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1754
  msgid "No results match"
1755
  msgstr ""
1756
 
1757
+ #: admin/settings/classes/setup.class.php:514
1758
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1759
  msgid "Ooops! This field type (%s) can not be used here, yet."
1760
  msgstr ""
1761
 
1762
+ #: admin/settings/classes/setup.class.php:577
1763
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1764
  msgid "This field class is not available!"
1765
  msgstr ""
1766
 
1767
+ #: admin/settings/classes/setup.class.php:581
1768
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1769
  msgid "This type is not found!"
1770
  msgstr ""
1771
 
2642
  msgstr ""
2643
 
2644
  #: build/wp-ulike/inc/frontend-ajax.php:42
2645
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2646
+ #: inc/frontend-ajax.php:170
2647
  msgid "Error: This Method Is Not Exist!"
2648
  msgstr ""
2649
 
2650
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2651
+ msgid "Notice: The likers box is not activated!"
2652
  msgstr ""
2653
 
2654
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2655
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2656
  msgstr ""
2657
 
2658
  #: build/wp-ulike/inc/general-functions.php:85
2698
  msgid "Table info is empty."
2699
  msgstr ""
2700
 
2701
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2702
  msgid "You need to login in order to like this post: "
2703
  msgstr "你需要登录后才能喜欢这篇文章:"
2704
 
2705
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2706
  msgid "click here"
2707
  msgstr "点击这里"
2708
 
2709
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2710
  #, fuzzy
2711
  msgid "Like This"
2712
  msgstr "喜欢"
lang/wp-ulike-zh_TW.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/wp-"
@@ -26,8 +26,8 @@ msgstr ""
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
30
- #: inc/frontend-ajax.php:151
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
@@ -43,9 +43,9 @@ msgstr ""
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
- #: admin/admin-functions.php:225
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
- #: build/wp-ulike/admin/admin-functions.php:228
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
@@ -72,44 +72,58 @@ msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
- #: build/wp-ulike/admin/admin-hooks.php:204
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
83
  #: build/wp-ulike/admin/admin-hooks.php:174
84
- #: build/wp-ulike/admin/admin-hooks.php:210
 
85
  msgid "No thanks and never ask me again"
86
  msgstr ""
87
 
88
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
89
- msgid "Boost Your SEO by Using Schema Rich Snippets"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
93
  msgid ""
94
- "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
95
- "Plugin which can manage +13 types of Schema Markups to make a better "
96
- "connection between your webpages and search engines. Now you can talk in "
97
- "search engine language and tell them which type of content you are promoting."
98
  msgstr ""
99
 
100
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
101
- #: build/wp-ulike/admin/admin-hooks.php:170
102
- #: build/wp-ulike/admin/admin-hooks.php:200
 
103
  #, fuzzy
104
  msgid "Get More Information"
105
  msgstr "取得更多資訊:"
106
 
107
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
108
- msgid "WP Ulike Pro is Ready :))"
109
  msgstr ""
110
 
111
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
112
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
113
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
114
  "been released with some new features such as support for Dislike button, "
115
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
@@ -117,8 +131,8 @@ msgid ""
117
  "provide a full support for our users."
118
  msgstr ""
119
 
120
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
121
- #: build/wp-ulike/admin/admin-hooks.php:239
122
  #: build/wp-ulike/admin/includes/templates/about.php:29
123
  msgid "Go Pro"
124
  msgstr ""
@@ -134,30 +148,30 @@ msgid "No information was found in this database!"
134
  msgstr ""
135
 
136
  #: admin/classes/class-wp-ulike-admin-pages.php:27
137
- #: admin/includes/templates/posts-logs.php:39
138
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
139
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
140
  msgid "Post Likes Logs"
141
  msgstr ""
142
 
143
  #: admin/classes/class-wp-ulike-admin-pages.php:35
144
- #: admin/includes/templates/comments-logs.php:39
145
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
146
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
147
  msgid "Comment Likes Logs"
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:43
151
- #: admin/includes/templates/activities-logs.php:39
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
153
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
154
  msgid "Activity Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:51
158
- #: admin/includes/templates/topics-logs.php:39
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
160
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
161
  #, fuzzy
162
  msgid "Topics Likes Logs"
163
  msgstr "最多人喜歡的文章"
@@ -178,23 +192,23 @@ msgid "About"
178
  msgstr ""
179
 
180
  #: admin/classes/class-wp-ulike-admin-pages.php:133
181
- #: admin/includes/templates/activities-logs.php:42
182
- #: admin/includes/templates/activities-logs.php:119
183
- #: admin/includes/templates/comments-logs.php:42
184
- #: admin/includes/templates/comments-logs.php:129
185
- #: admin/includes/templates/posts-logs.php:42
186
- #: admin/includes/templates/posts-logs.php:118
187
- #: admin/includes/templates/topics-logs.php:42
188
- #: admin/includes/templates/topics-logs.php:118
189
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
190
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
191
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
192
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
194
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
196
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
198
  msgid "Logs"
199
  msgstr ""
200
 
@@ -1023,16 +1037,16 @@ msgstr ""
1023
  msgid "Topics Stats"
1024
  msgstr ""
1025
 
1026
- #: admin/classes/class-wp-ulike-stats.php:274
1027
- #: admin/includes/templates/activities-logs.php:76
1028
- #: admin/includes/templates/comments-logs.php:81
1029
- #: admin/includes/templates/posts-logs.php:75
1030
- #: admin/includes/templates/topics-logs.php:75
1031
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1032
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1033
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1034
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1035
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1036
  msgid "Guest User"
1037
  msgstr ""
1038
 
@@ -1320,115 +1334,177 @@ msgstr ""
1320
  msgid "No data found! This is because there is still no data in your database."
1321
  msgstr ""
1322
 
1323
- #: admin/includes/templates/activities-logs.php:38
1324
- #: admin/includes/templates/comments-logs.php:38
1325
- #: admin/includes/templates/posts-logs.php:38
1326
- #: admin/includes/templates/topics-logs.php:38
1327
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1328
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1329
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1330
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1331
  msgid "WP ULike Logs"
1332
  msgstr ""
1333
 
1334
- #: admin/includes/templates/activities-logs.php:49
1335
- #: admin/includes/templates/comments-logs.php:49
1336
- #: admin/includes/templates/posts-logs.php:49
1337
- #: admin/includes/templates/topics-logs.php:49
1338
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1339
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1340
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1341
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1342
  msgid "ID"
1343
  msgstr ""
1344
 
1345
- #: admin/includes/templates/activities-logs.php:50
1346
- #: admin/includes/templates/comments-logs.php:50
1347
- #: admin/includes/templates/posts-logs.php:50
1348
- #: admin/includes/templates/topics-logs.php:50
1349
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1350
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1351
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1352
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1353
  msgid "Username"
1354
  msgstr "帳號"
1355
 
1356
- #: admin/includes/templates/activities-logs.php:51
1357
- #: admin/includes/templates/comments-logs.php:51
1358
- #: admin/includes/templates/posts-logs.php:51
1359
- #: admin/includes/templates/topics-logs.php:51
1360
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1361
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1362
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1363
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1364
  msgid "Status"
1365
  msgstr "狀態"
1366
 
1367
- #: admin/includes/templates/activities-logs.php:52
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1369
  msgid "Activity ID"
1370
  msgstr ""
1371
 
1372
- #: admin/includes/templates/activities-logs.php:53
1373
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1374
  msgid "Permalink"
1375
  msgstr ""
1376
 
1377
- #: admin/includes/templates/activities-logs.php:54
1378
- #: admin/includes/templates/comments-logs.php:55
1379
- #: admin/includes/templates/posts-logs.php:54
1380
- #: admin/includes/templates/topics-logs.php:54
1381
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1382
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1383
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1384
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1385
  msgid "Date / Time"
1386
  msgstr ""
1387
 
1388
- #: admin/includes/templates/activities-logs.php:55
1389
- #: admin/includes/templates/comments-logs.php:56
1390
- #: admin/includes/templates/posts-logs.php:55
1391
- #: admin/includes/templates/topics-logs.php:55
1392
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1393
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1394
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1395
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1396
  msgid "IP"
1397
  msgstr ""
1398
 
1399
- #: admin/includes/templates/activities-logs.php:56
1400
- #: admin/includes/templates/comments-logs.php:57
1401
- #: admin/includes/templates/posts-logs.php:56
1402
- #: admin/includes/templates/topics-logs.php:56
1403
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1404
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1405
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1406
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1407
  msgid "Actions"
1408
  msgstr "管理項目"
1409
 
1410
- #: admin/includes/templates/activities-logs.php:92
1411
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1412
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1413
  msgstr ""
1414
 
1415
- #: admin/includes/templates/comments-logs.php:52
1416
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1417
  msgid "Comment ID"
1418
  msgstr ""
1419
 
1420
- #: admin/includes/templates/comments-logs.php:53
1421
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1422
  msgid "Comment Author"
1423
  msgstr ""
1424
 
1425
- #: admin/includes/templates/comments-logs.php:54
1426
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1427
  msgid "Comment Text"
1428
  msgstr ""
1429
 
1430
- #: admin/includes/templates/comments-logs.php:63
1431
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1432
  msgid "Not Found!"
1433
  msgstr ""
1434
 
@@ -1438,61 +1514,31 @@ msgstr ""
1438
  msgid "WP ULike Premium"
1439
  msgstr "WP ULike"
1440
 
1441
- #: admin/includes/templates/go-pro.php:22
1442
- #: admin/includes/templates/statistics.php:48
1443
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1444
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1445
- msgid "Buy WP ULike Premium"
1446
- msgstr ""
1447
-
1448
- #: admin/includes/templates/go-pro.php:28
1449
- #: admin/includes/templates/statistics.php:53
1450
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1451
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1452
- #, fuzzy
1453
- msgid "More information"
1454
- msgstr "取得更多資訊:"
1455
-
1456
- #: admin/includes/templates/go-pro.php:114
1457
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1458
  msgid ""
1459
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1460
  "ULike PRO plugin we fully support this page builder and have a variety of "
1461
  "widgets & controllers that make life much easier for you."
1462
  msgstr ""
1463
 
1464
- #: admin/includes/templates/go-pro.php:114
1465
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1466
  msgid ""
1467
  "Just drag your desired widget and drop it in your Elementor sections, "
1468
  "customize as you go and enjoy your like and dislike buttons on your contents."
1469
  msgstr ""
1470
 
1471
- #: admin/includes/templates/posts-logs.php:52
1472
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1473
  msgid "Post ID"
1474
  msgstr ""
1475
 
1476
- #: admin/includes/templates/posts-logs.php:53
1477
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1478
  msgid "Post Title"
1479
  msgstr ""
1480
 
1481
- #: admin/includes/templates/statistics.php:45
1482
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1483
- msgid "Check Votings, Best Likers & Top contents"
1484
- msgstr ""
1485
-
1486
- #: admin/includes/templates/statistics.php:47
1487
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1488
- msgid ""
1489
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1490
- "users love and what annoys them in an instance. You can extract reports of "
1491
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1492
- "dateRange picker and status selector controllers, no confusing options and "
1493
- "coding needed."
1494
- msgstr ""
1495
-
1496
  #: admin/includes/templates/statistics.php:76
1497
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1498
  msgid "Total"
@@ -1541,13 +1587,13 @@ msgstr "最多喜歡的用戶"
1541
  msgid "Top"
1542
  msgstr ""
1543
 
1544
- #: admin/includes/templates/topics-logs.php:52
1545
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1546
  msgid "Topic ID"
1547
  msgstr ""
1548
 
1549
- #: admin/includes/templates/topics-logs.php:53
1550
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1551
  msgid "Topic Title"
1552
  msgstr ""
1553
 
@@ -1666,48 +1712,48 @@ msgstr ""
1666
  msgid "Are you sure to reset all options?"
1667
  msgstr ""
1668
 
1669
- #: admin/settings/classes/setup.class.php:429
1670
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1671
  msgid "Are you sure?"
1672
  msgstr ""
1673
 
1674
- #: admin/settings/classes/setup.class.php:430
1675
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1676
  msgid "Restoring options."
1677
  msgstr ""
1678
 
1679
- #: admin/settings/classes/setup.class.php:431
1680
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1681
  msgid "Importing options."
1682
  msgstr ""
1683
 
1684
- #: admin/settings/classes/setup.class.php:434
1685
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1686
  msgid "Please enter %s or more characters"
1687
  msgstr ""
1688
 
1689
- #: admin/settings/classes/setup.class.php:435
1690
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1691
  msgid "Searching..."
1692
  msgstr ""
1693
 
1694
- #: admin/settings/classes/setup.class.php:436
1695
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1696
  msgid "No results match"
1697
  msgstr ""
1698
 
1699
- #: admin/settings/classes/setup.class.php:507
1700
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1701
  msgid "Ooops! This field type (%s) can not be used here, yet."
1702
  msgstr ""
1703
 
1704
- #: admin/settings/classes/setup.class.php:570
1705
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1706
  msgid "This field class is not available!"
1707
  msgstr ""
1708
 
1709
- #: admin/settings/classes/setup.class.php:574
1710
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1711
  msgid "This type is not found!"
1712
  msgstr ""
1713
 
@@ -2574,17 +2620,17 @@ msgid ""
2574
  msgstr ""
2575
 
2576
  #: build/wp-ulike/inc/frontend-ajax.php:42
2577
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2578
- #: inc/frontend-ajax.php:164
2579
  msgid "Error: This Method Is Not Exist!"
2580
  msgstr ""
2581
 
2582
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2583
- msgid "Notice: The likers box is refreshed only for logged in users!"
2584
  msgstr ""
2585
 
2586
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2587
- msgid "Notice: The likers box is not activated!"
2588
  msgstr ""
2589
 
2590
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2629,15 +2675,15 @@ msgstr ""
2629
  msgid "Table info is empty."
2630
  msgstr ""
2631
 
2632
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2633
  msgid "You need to login in order to like this post: "
2634
  msgstr "你需要登錄後才能喜歡這篇文章:"
2635
 
2636
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2637
  msgid "click here"
2638
  msgstr "點擊這裡"
2639
 
2640
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2641
  #, fuzzy
2642
  msgid "Like This"
2643
  msgstr "喜歡"
4
  msgstr ""
5
  "Project-Id-Version: WP ULike\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "PO-Revision-Date: 2015-05-21 11:28+0330\n"
9
  "Last-Translator: Alimir <info@alimir.ir>\n"
10
  "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/wp-"
26
  #: build/wp-ulike/admin/admin-ajax.php:76
27
  #: build/wp-ulike/admin/admin-ajax.php:82
28
  #: build/wp-ulike/inc/frontend-ajax.php:34
29
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
30
+ #: inc/frontend-ajax.php:152
31
  msgid "Error: Something Wrong Happened!"
32
  msgstr ""
33
 
43
  msgid "It's Ok!"
44
  msgstr ""
45
 
46
+ #: admin/admin-functions.php:231
47
  #: admin/classes/class-wp-ulike-admin-panel.php:517
48
+ #: build/wp-ulike/admin/admin-functions.php:234
49
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
50
  msgid "Button"
51
  msgstr ""
72
  msgid "Sure, I'd love to!"
73
  msgstr ""
74
 
75
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
76
  #: build/wp-ulike/admin/admin-hooks.php:142
77
+ #: build/wp-ulike/admin/admin-hooks.php:227
78
  msgid "Not Now"
79
  msgstr ""
80
 
81
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
82
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
83
+ #: build/wp-ulike/admin/admin-hooks.php:148
84
  #: build/wp-ulike/admin/admin-hooks.php:174
85
+ #: build/wp-ulike/admin/admin-hooks.php:197
86
+ #: build/wp-ulike/admin/admin-hooks.php:233
87
  msgid "No thanks and never ask me again"
88
  msgstr ""
89
 
90
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
91
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
95
  msgid ""
96
+ "Having votes for your content without a tool for measuring the results is "
97
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
98
+ "data in the WP ULike professional Logs panel."
 
99
  msgstr ""
100
 
101
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
102
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
103
+ #: build/wp-ulike/admin/admin-hooks.php:193
104
+ #: build/wp-ulike/admin/admin-hooks.php:223
105
  #, fuzzy
106
  msgid "Get More Information"
107
  msgstr "取得更多資訊:"
108
 
109
  #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
110
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
111
  msgstr ""
112
 
113
  #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
114
  msgid ""
115
+ "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
116
+ "Plugin which can manage +13 types of Schema Markups to make a better "
117
+ "connection between your webpages and search engines. Now you can talk in "
118
+ "search engine language and tell them which type of content you are promoting."
119
+ msgstr ""
120
+
121
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
122
+ msgid "WP Ulike Pro is Ready :))"
123
+ msgstr ""
124
+
125
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
126
+ msgid ""
127
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
128
  "been released with some new features such as support for Dislike button, "
129
  "Professional stats, Elementor (Page Builder) Widgets, and some new "
131
  "provide a full support for our users."
132
  msgstr ""
133
 
134
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
135
+ #: build/wp-ulike/admin/admin-hooks.php:262
136
  #: build/wp-ulike/admin/includes/templates/about.php:29
137
  msgid "Go Pro"
138
  msgstr ""
148
  msgstr ""
149
 
150
  #: admin/classes/class-wp-ulike-admin-pages.php:27
151
+ #: admin/includes/templates/posts-logs.php:61
152
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
153
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
154
  msgid "Post Likes Logs"
155
  msgstr ""
156
 
157
  #: admin/classes/class-wp-ulike-admin-pages.php:35
158
+ #: admin/includes/templates/comments-logs.php:61
159
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
160
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
161
  msgid "Comment Likes Logs"
162
  msgstr ""
163
 
164
  #: admin/classes/class-wp-ulike-admin-pages.php:43
165
+ #: admin/includes/templates/activities-logs.php:61
166
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
167
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
168
  msgid "Activity Likes Logs"
169
  msgstr ""
170
 
171
  #: admin/classes/class-wp-ulike-admin-pages.php:51
172
+ #: admin/includes/templates/topics-logs.php:61
173
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
174
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
175
  #, fuzzy
176
  msgid "Topics Likes Logs"
177
  msgstr "最多人喜歡的文章"
192
  msgstr ""
193
 
194
  #: admin/classes/class-wp-ulike-admin-pages.php:133
195
+ #: admin/includes/templates/activities-logs.php:64
196
+ #: admin/includes/templates/activities-logs.php:141
197
+ #: admin/includes/templates/comments-logs.php:64
198
+ #: admin/includes/templates/comments-logs.php:151
199
+ #: admin/includes/templates/posts-logs.php:64
200
+ #: admin/includes/templates/posts-logs.php:140
201
+ #: admin/includes/templates/topics-logs.php:64
202
+ #: admin/includes/templates/topics-logs.php:140
203
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
204
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
205
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
206
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
208
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
210
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
212
  msgid "Logs"
213
  msgstr ""
214
 
1037
  msgid "Topics Stats"
1038
  msgstr ""
1039
 
1040
+ #: admin/classes/class-wp-ulike-stats.php:273
1041
+ #: admin/includes/templates/activities-logs.php:98
1042
+ #: admin/includes/templates/comments-logs.php:103
1043
+ #: admin/includes/templates/posts-logs.php:97
1044
+ #: admin/includes/templates/topics-logs.php:97
1045
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1046
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1047
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1048
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1049
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1050
  msgid "Guest User"
1051
  msgstr ""
1052
 
1334
  msgid "No data found! This is because there is still no data in your database."
1335
  msgstr ""
1336
 
1337
+ #: admin/includes/templates/activities-logs.php:40
1338
+ #: admin/includes/templates/comments-logs.php:40
1339
+ #: admin/includes/templates/posts-logs.php:40
1340
+ #: admin/includes/templates/statistics.php:45
1341
+ #: admin/includes/templates/topics-logs.php:40
1342
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1343
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1344
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1345
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1346
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1347
+ msgid "Check Votings, Best Likers & Top contents"
1348
+ msgstr ""
1349
+
1350
+ #: admin/includes/templates/activities-logs.php:42
1351
+ #: admin/includes/templates/comments-logs.php:42
1352
+ #: admin/includes/templates/posts-logs.php:42
1353
+ #: admin/includes/templates/statistics.php:47
1354
+ #: admin/includes/templates/topics-logs.php:42
1355
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1356
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1357
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1358
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1359
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1360
+ msgid ""
1361
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1362
+ "users love and what annoys them in an instance. You can extract reports of "
1363
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer with "
1364
+ "dateRange picker and status selector controllers, no confusing options and "
1365
+ "coding needed."
1366
+ msgstr ""
1367
+
1368
+ #: admin/includes/templates/activities-logs.php:43
1369
+ #: admin/includes/templates/comments-logs.php:43
1370
+ #: admin/includes/templates/go-pro.php:22
1371
+ #: admin/includes/templates/posts-logs.php:43
1372
+ #: admin/includes/templates/statistics.php:48
1373
+ #: admin/includes/templates/topics-logs.php:43
1374
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1375
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1376
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1377
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1378
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1379
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1380
+ msgid "Buy WP ULike Premium"
1381
+ msgstr ""
1382
+
1383
+ #: admin/includes/templates/activities-logs.php:48
1384
+ #: admin/includes/templates/comments-logs.php:48
1385
+ #: admin/includes/templates/go-pro.php:28
1386
+ #: admin/includes/templates/posts-logs.php:48
1387
+ #: admin/includes/templates/statistics.php:53
1388
+ #: admin/includes/templates/topics-logs.php:48
1389
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1390
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1391
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1392
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1393
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1394
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1395
+ #, fuzzy
1396
+ msgid "More information"
1397
+ msgstr "取得更多資訊:"
1398
+
1399
+ #: admin/includes/templates/activities-logs.php:60
1400
+ #: admin/includes/templates/comments-logs.php:60
1401
+ #: admin/includes/templates/posts-logs.php:60
1402
+ #: admin/includes/templates/topics-logs.php:60
1403
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1404
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1405
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1406
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1407
  msgid "WP ULike Logs"
1408
  msgstr ""
1409
 
1410
+ #: admin/includes/templates/activities-logs.php:71
1411
+ #: admin/includes/templates/comments-logs.php:71
1412
+ #: admin/includes/templates/posts-logs.php:71
1413
+ #: admin/includes/templates/topics-logs.php:71
1414
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1415
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1416
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1417
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1418
  msgid "ID"
1419
  msgstr ""
1420
 
1421
+ #: admin/includes/templates/activities-logs.php:72
1422
+ #: admin/includes/templates/comments-logs.php:72
1423
+ #: admin/includes/templates/posts-logs.php:72
1424
+ #: admin/includes/templates/topics-logs.php:72
1425
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1426
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1427
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1428
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1429
  msgid "Username"
1430
  msgstr "帳號"
1431
 
1432
+ #: admin/includes/templates/activities-logs.php:73
1433
+ #: admin/includes/templates/comments-logs.php:73
1434
+ #: admin/includes/templates/posts-logs.php:73
1435
+ #: admin/includes/templates/topics-logs.php:73
1436
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1437
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1438
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1439
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1440
  msgid "Status"
1441
  msgstr "狀態"
1442
 
1443
+ #: admin/includes/templates/activities-logs.php:74
1444
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1445
  msgid "Activity ID"
1446
  msgstr ""
1447
 
1448
+ #: admin/includes/templates/activities-logs.php:75
1449
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1450
  msgid "Permalink"
1451
  msgstr ""
1452
 
1453
+ #: admin/includes/templates/activities-logs.php:76
1454
+ #: admin/includes/templates/comments-logs.php:77
1455
+ #: admin/includes/templates/posts-logs.php:76
1456
+ #: admin/includes/templates/topics-logs.php:76
1457
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1458
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1459
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1460
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1461
  msgid "Date / Time"
1462
  msgstr ""
1463
 
1464
+ #: admin/includes/templates/activities-logs.php:77
1465
+ #: admin/includes/templates/comments-logs.php:78
1466
+ #: admin/includes/templates/posts-logs.php:77
1467
+ #: admin/includes/templates/topics-logs.php:77
1468
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1469
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1470
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1471
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1472
  msgid "IP"
1473
  msgstr ""
1474
 
1475
+ #: admin/includes/templates/activities-logs.php:78
1476
+ #: admin/includes/templates/comments-logs.php:79
1477
+ #: admin/includes/templates/posts-logs.php:78
1478
+ #: admin/includes/templates/topics-logs.php:78
1479
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1480
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1481
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1482
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1483
  msgid "Actions"
1484
  msgstr "管理項目"
1485
 
1486
+ #: admin/includes/templates/activities-logs.php:114
1487
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1488
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1489
  msgstr ""
1490
 
1491
+ #: admin/includes/templates/comments-logs.php:74
1492
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1493
  msgid "Comment ID"
1494
  msgstr ""
1495
 
1496
+ #: admin/includes/templates/comments-logs.php:75
1497
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1498
  msgid "Comment Author"
1499
  msgstr ""
1500
 
1501
+ #: admin/includes/templates/comments-logs.php:76
1502
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1503
  msgid "Comment Text"
1504
  msgstr ""
1505
 
1506
+ #: admin/includes/templates/comments-logs.php:85
1507
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1508
  msgid "Not Found!"
1509
  msgstr ""
1510
 
1514
  msgid "WP ULike Premium"
1515
  msgstr "WP ULike"
1516
 
1517
+ #: admin/includes/templates/go-pro.php:119
1518
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1519
  msgid ""
1520
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1521
  "ULike PRO plugin we fully support this page builder and have a variety of "
1522
  "widgets & controllers that make life much easier for you."
1523
  msgstr ""
1524
 
1525
+ #: admin/includes/templates/go-pro.php:119
1526
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1527
  msgid ""
1528
  "Just drag your desired widget and drop it in your Elementor sections, "
1529
  "customize as you go and enjoy your like and dislike buttons on your contents."
1530
  msgstr ""
1531
 
1532
+ #: admin/includes/templates/posts-logs.php:74
1533
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1534
  msgid "Post ID"
1535
  msgstr ""
1536
 
1537
+ #: admin/includes/templates/posts-logs.php:75
1538
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1539
  msgid "Post Title"
1540
  msgstr ""
1541
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1542
  #: admin/includes/templates/statistics.php:76
1543
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1544
  msgid "Total"
1587
  msgid "Top"
1588
  msgstr ""
1589
 
1590
+ #: admin/includes/templates/topics-logs.php:74
1591
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1592
  msgid "Topic ID"
1593
  msgstr ""
1594
 
1595
+ #: admin/includes/templates/topics-logs.php:75
1596
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1597
  msgid "Topic Title"
1598
  msgstr ""
1599
 
1712
  msgid "Are you sure to reset all options?"
1713
  msgstr ""
1714
 
1715
+ #: admin/settings/classes/setup.class.php:436
1716
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1717
  msgid "Are you sure?"
1718
  msgstr ""
1719
 
1720
+ #: admin/settings/classes/setup.class.php:437
1721
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1722
  msgid "Restoring options."
1723
  msgstr ""
1724
 
1725
+ #: admin/settings/classes/setup.class.php:438
1726
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1727
  msgid "Importing options."
1728
  msgstr ""
1729
 
1730
+ #: admin/settings/classes/setup.class.php:441
1731
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1732
  msgid "Please enter %s or more characters"
1733
  msgstr ""
1734
 
1735
+ #: admin/settings/classes/setup.class.php:442
1736
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1737
  msgid "Searching..."
1738
  msgstr ""
1739
 
1740
+ #: admin/settings/classes/setup.class.php:443
1741
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1742
  msgid "No results match"
1743
  msgstr ""
1744
 
1745
+ #: admin/settings/classes/setup.class.php:514
1746
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1747
  msgid "Ooops! This field type (%s) can not be used here, yet."
1748
  msgstr ""
1749
 
1750
+ #: admin/settings/classes/setup.class.php:577
1751
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1752
  msgid "This field class is not available!"
1753
  msgstr ""
1754
 
1755
+ #: admin/settings/classes/setup.class.php:581
1756
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1757
  msgid "This type is not found!"
1758
  msgstr ""
1759
 
2620
  msgstr ""
2621
 
2622
  #: build/wp-ulike/inc/frontend-ajax.php:42
2623
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2624
+ #: inc/frontend-ajax.php:170
2625
  msgid "Error: This Method Is Not Exist!"
2626
  msgstr ""
2627
 
2628
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2629
+ msgid "Notice: The likers box is not activated!"
2630
  msgstr ""
2631
 
2632
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2633
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2634
  msgstr ""
2635
 
2636
  #: build/wp-ulike/inc/general-functions.php:85
2675
  msgid "Table info is empty."
2676
  msgstr ""
2677
 
2678
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2679
  msgid "You need to login in order to like this post: "
2680
  msgstr "你需要登錄後才能喜歡這篇文章:"
2681
 
2682
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2683
  msgid "click here"
2684
  msgstr "點擊這裡"
2685
 
2686
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2687
  #, fuzzy
2688
  msgid "Like This"
2689
  msgstr "喜歡"
lang/wp-ulike.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP ULike 4.1.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
- "POT-Creation-Date: 2020-02-16 15:32:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -30,8 +30,8 @@ msgstr ""
30
  #: build/wp-ulike/admin/admin-ajax.php:76
31
  #: build/wp-ulike/admin/admin-ajax.php:82
32
  #: build/wp-ulike/inc/frontend-ajax.php:34
33
- #: build/wp-ulike/inc/frontend-ajax.php:154 inc/frontend-ajax.php:31
34
- #: inc/frontend-ajax.php:151
35
  msgid "Error: Something Wrong Happened!"
36
  msgstr ""
37
 
@@ -47,9 +47,9 @@ msgstr ""
47
  msgid "It's Ok!"
48
  msgstr ""
49
 
50
- #: admin/admin-functions.php:225
51
  #: admin/classes/class-wp-ulike-admin-panel.php:517
52
- #: build/wp-ulike/admin/admin-functions.php:228
53
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
54
  msgid "Button"
55
  msgstr ""
@@ -76,25 +76,45 @@ msgstr ""
76
  msgid "Sure, I'd love to!"
77
  msgstr ""
78
 
79
- #: admin/admin-hooks.php:139 admin/admin-hooks.php:201
80
  #: build/wp-ulike/admin/admin-hooks.php:142
81
- #: build/wp-ulike/admin/admin-hooks.php:204
82
  msgid "Not Now"
83
  msgstr ""
84
 
85
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
86
- #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:148
 
87
  #: build/wp-ulike/admin/admin-hooks.php:174
88
- #: build/wp-ulike/admin/admin-hooks.php:210
 
89
  msgid "No thanks and never ask me again"
90
  msgstr ""
91
 
92
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
93
- msgid "Boost Your SEO by Using Schema Rich Snippets"
94
  msgstr ""
95
 
96
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
97
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
99
  "Plugin which can manage +13 types of Schema Markups to make a better "
100
  "connection between your webpages and search engines. Now you can talk in "
@@ -102,17 +122,11 @@ msgid ""
102
  "promoting."
103
  msgstr ""
104
 
105
- #: admin/admin-hooks.php:167 admin/admin-hooks.php:197
106
- #: build/wp-ulike/admin/admin-hooks.php:170
107
- #: build/wp-ulike/admin/admin-hooks.php:200
108
- msgid "Get More Information"
109
- msgstr ""
110
-
111
- #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
112
  msgid "WP Ulike Pro is Ready :))"
113
  msgstr ""
114
 
115
- #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
116
  msgid ""
117
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
118
  "been released with some new features such as support for Dislike button, "
@@ -121,8 +135,8 @@ msgid ""
121
  "provide a full support for our users."
122
  msgstr ""
123
 
124
- #: admin/admin-hooks.php:236 admin/includes/templates/about.php:26
125
- #: build/wp-ulike/admin/admin-hooks.php:239
126
  #: build/wp-ulike/admin/includes/templates/about.php:29
127
  msgid "Go Pro"
128
  msgstr ""
@@ -138,30 +152,30 @@ msgid "No information was found in this database!"
138
  msgstr ""
139
 
140
  #: admin/classes/class-wp-ulike-admin-pages.php:27
141
- #: admin/includes/templates/posts-logs.php:39
142
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
143
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:42
144
  msgid "Post Likes Logs"
145
  msgstr ""
146
 
147
  #: admin/classes/class-wp-ulike-admin-pages.php:35
148
- #: admin/includes/templates/comments-logs.php:39
149
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
150
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:42
151
  msgid "Comment Likes Logs"
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:43
155
- #: admin/includes/templates/activities-logs.php:39
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
157
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:42
158
  msgid "Activity Likes Logs"
159
  msgstr ""
160
 
161
  #: admin/classes/class-wp-ulike-admin-pages.php:51
162
- #: admin/includes/templates/topics-logs.php:39
163
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
164
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:42
165
  msgid "Topics Likes Logs"
166
  msgstr ""
167
 
@@ -180,23 +194,23 @@ msgid "About"
180
  msgstr ""
181
 
182
  #: admin/classes/class-wp-ulike-admin-pages.php:133
183
- #: admin/includes/templates/activities-logs.php:42
184
- #: admin/includes/templates/activities-logs.php:119
185
- #: admin/includes/templates/comments-logs.php:42
186
- #: admin/includes/templates/comments-logs.php:129
187
- #: admin/includes/templates/posts-logs.php:42
188
- #: admin/includes/templates/posts-logs.php:118
189
- #: admin/includes/templates/topics-logs.php:42
190
- #: admin/includes/templates/topics-logs.php:118
191
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
192
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
193
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:122
194
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
195
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:132
196
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
197
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:121
198
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
199
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:121
200
  msgid "Logs"
201
  msgstr ""
202
 
@@ -1011,16 +1025,16 @@ msgstr ""
1011
  msgid "Topics Stats"
1012
  msgstr ""
1013
 
1014
- #: admin/classes/class-wp-ulike-stats.php:274
1015
- #: admin/includes/templates/activities-logs.php:76
1016
- #: admin/includes/templates/comments-logs.php:81
1017
- #: admin/includes/templates/posts-logs.php:75
1018
- #: admin/includes/templates/topics-logs.php:75
1019
- #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:277
1020
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1021
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:84
1022
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1023
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1024
  msgid "Guest User"
1025
  msgstr ""
1026
 
@@ -1307,115 +1321,176 @@ msgstr ""
1307
  msgid "No data found! This is because there is still no data in your database."
1308
  msgstr ""
1309
 
1310
- #: admin/includes/templates/activities-logs.php:38
1311
- #: admin/includes/templates/comments-logs.php:38
1312
- #: admin/includes/templates/posts-logs.php:38
1313
- #: admin/includes/templates/topics-logs.php:38
1314
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:41
1315
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:41
1316
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:41
1317
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1318
  msgid "WP ULike Logs"
1319
  msgstr ""
1320
 
1321
- #: admin/includes/templates/activities-logs.php:49
1322
- #: admin/includes/templates/comments-logs.php:49
1323
- #: admin/includes/templates/posts-logs.php:49
1324
- #: admin/includes/templates/topics-logs.php:49
1325
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:52
1326
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:52
1327
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:52
1328
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:52
1329
  msgid "ID"
1330
  msgstr ""
1331
 
1332
- #: admin/includes/templates/activities-logs.php:50
1333
- #: admin/includes/templates/comments-logs.php:50
1334
- #: admin/includes/templates/posts-logs.php:50
1335
- #: admin/includes/templates/topics-logs.php:50
1336
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:53
1337
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:53
1338
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:53
1339
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:53
1340
  msgid "Username"
1341
  msgstr ""
1342
 
1343
- #: admin/includes/templates/activities-logs.php:51
1344
- #: admin/includes/templates/comments-logs.php:51
1345
- #: admin/includes/templates/posts-logs.php:51
1346
- #: admin/includes/templates/topics-logs.php:51
1347
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:54
1348
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:54
1349
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:54
1350
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:54
1351
  msgid "Status"
1352
  msgstr ""
1353
 
1354
- #: admin/includes/templates/activities-logs.php:52
1355
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:55
1356
  msgid "Activity ID"
1357
  msgstr ""
1358
 
1359
- #: admin/includes/templates/activities-logs.php:53
1360
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:56
1361
  msgid "Permalink"
1362
  msgstr ""
1363
 
1364
- #: admin/includes/templates/activities-logs.php:54
1365
- #: admin/includes/templates/comments-logs.php:55
1366
- #: admin/includes/templates/posts-logs.php:54
1367
- #: admin/includes/templates/topics-logs.php:54
1368
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:57
1369
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:58
1370
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:57
1371
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:57
1372
  msgid "Date / Time"
1373
  msgstr ""
1374
 
1375
- #: admin/includes/templates/activities-logs.php:55
1376
- #: admin/includes/templates/comments-logs.php:56
1377
- #: admin/includes/templates/posts-logs.php:55
1378
- #: admin/includes/templates/topics-logs.php:55
1379
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:58
1380
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:59
1381
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:58
1382
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:58
1383
  msgid "IP"
1384
  msgstr ""
1385
 
1386
- #: admin/includes/templates/activities-logs.php:56
1387
- #: admin/includes/templates/comments-logs.php:57
1388
- #: admin/includes/templates/posts-logs.php:56
1389
- #: admin/includes/templates/topics-logs.php:56
1390
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:59
1391
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:60
1392
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:59
1393
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:59
1394
  msgid "Actions"
1395
  msgstr ""
1396
 
1397
- #: admin/includes/templates/activities-logs.php:92
1398
- #: build/wp-ulike/admin/includes/templates/activities-logs.php:95
1399
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1400
  msgstr ""
1401
 
1402
- #: admin/includes/templates/comments-logs.php:52
1403
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:55
1404
  msgid "Comment ID"
1405
  msgstr ""
1406
 
1407
- #: admin/includes/templates/comments-logs.php:53
1408
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:56
1409
  msgid "Comment Author"
1410
  msgstr ""
1411
 
1412
- #: admin/includes/templates/comments-logs.php:54
1413
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:57
1414
  msgid "Comment Text"
1415
  msgstr ""
1416
 
1417
- #: admin/includes/templates/comments-logs.php:63
1418
- #: build/wp-ulike/admin/includes/templates/comments-logs.php:66
1419
  msgid "Not Found!"
1420
  msgstr ""
1421
 
@@ -1424,61 +1499,32 @@ msgstr ""
1424
  msgid "WP ULike Premium"
1425
  msgstr ""
1426
 
1427
- #: admin/includes/templates/go-pro.php:22
1428
- #: admin/includes/templates/statistics.php:48
1429
- #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1430
- #: build/wp-ulike/admin/includes/templates/statistics.php:51
1431
- msgid "Buy WP ULike Premium"
1432
- msgstr ""
1433
-
1434
- #: admin/includes/templates/go-pro.php:28
1435
- #: admin/includes/templates/statistics.php:53
1436
- #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1437
- #: build/wp-ulike/admin/includes/templates/statistics.php:56
1438
- msgid "More information"
1439
- msgstr ""
1440
-
1441
- #: admin/includes/templates/go-pro.php:114
1442
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1443
  msgid ""
1444
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1445
  "ULike PRO plugin we fully support this page builder and have a variety of "
1446
  "widgets & controllers that make life much easier for you."
1447
  msgstr ""
1448
 
1449
- #: admin/includes/templates/go-pro.php:114
1450
- #: build/wp-ulike/admin/includes/templates/go-pro.php:117
1451
  msgid ""
1452
  "Just drag your desired widget and drop it in your Elementor sections, "
1453
  "customize as you go and enjoy your like and dislike buttons on your "
1454
  "contents."
1455
  msgstr ""
1456
 
1457
- #: admin/includes/templates/posts-logs.php:52
1458
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:55
1459
  msgid "Post ID"
1460
  msgstr ""
1461
 
1462
- #: admin/includes/templates/posts-logs.php:53
1463
- #: build/wp-ulike/admin/includes/templates/posts-logs.php:56
1464
  msgid "Post Title"
1465
  msgstr ""
1466
 
1467
- #: admin/includes/templates/statistics.php:45
1468
- #: build/wp-ulike/admin/includes/templates/statistics.php:48
1469
- msgid "Check Votings, Best Likers & Top contents"
1470
- msgstr ""
1471
-
1472
- #: admin/includes/templates/statistics.php:47
1473
- #: build/wp-ulike/admin/includes/templates/statistics.php:50
1474
- msgid ""
1475
- "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1476
- "users love and what annoys them in an instance. You can extract reports of "
1477
- "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer "
1478
- "with dateRange picker and status selector controllers, no confusing options "
1479
- "and coding needed."
1480
- msgstr ""
1481
-
1482
  #: admin/includes/templates/statistics.php:76
1483
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1484
  msgid "Total"
@@ -1524,13 +1570,13 @@ msgstr ""
1524
  msgid "Top"
1525
  msgstr ""
1526
 
1527
- #: admin/includes/templates/topics-logs.php:52
1528
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:55
1529
  msgid "Topic ID"
1530
  msgstr ""
1531
 
1532
- #: admin/includes/templates/topics-logs.php:53
1533
- #: build/wp-ulike/admin/includes/templates/topics-logs.php:56
1534
  msgid "Topic Title"
1535
  msgstr ""
1536
 
@@ -1648,48 +1694,48 @@ msgstr ""
1648
  msgid "Are you sure to reset all options?"
1649
  msgstr ""
1650
 
1651
- #: admin/settings/classes/setup.class.php:429
1652
- #: build/wp-ulike/admin/settings/classes/setup.class.php:429
1653
  msgid "Are you sure?"
1654
  msgstr ""
1655
 
1656
- #: admin/settings/classes/setup.class.php:430
1657
- #: build/wp-ulike/admin/settings/classes/setup.class.php:430
1658
  msgid "Restoring options."
1659
  msgstr ""
1660
 
1661
- #: admin/settings/classes/setup.class.php:431
1662
- #: build/wp-ulike/admin/settings/classes/setup.class.php:431
1663
  msgid "Importing options."
1664
  msgstr ""
1665
 
1666
- #: admin/settings/classes/setup.class.php:434
1667
- #: build/wp-ulike/admin/settings/classes/setup.class.php:434
1668
  msgid "Please enter %s or more characters"
1669
  msgstr ""
1670
 
1671
- #: admin/settings/classes/setup.class.php:435
1672
- #: build/wp-ulike/admin/settings/classes/setup.class.php:435
1673
  msgid "Searching..."
1674
  msgstr ""
1675
 
1676
- #: admin/settings/classes/setup.class.php:436
1677
- #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1678
  msgid "No results match"
1679
  msgstr ""
1680
 
1681
- #: admin/settings/classes/setup.class.php:507
1682
- #: build/wp-ulike/admin/settings/classes/setup.class.php:507
1683
  msgid "Ooops! This field type (%s) can not be used here, yet."
1684
  msgstr ""
1685
 
1686
- #: admin/settings/classes/setup.class.php:570
1687
- #: build/wp-ulike/admin/settings/classes/setup.class.php:570
1688
  msgid "This field class is not available!"
1689
  msgstr ""
1690
 
1691
- #: admin/settings/classes/setup.class.php:574
1692
- #: build/wp-ulike/admin/settings/classes/setup.class.php:574
1693
  msgid "This type is not found!"
1694
  msgstr ""
1695
 
@@ -2530,17 +2576,17 @@ msgid "%plural% is to be awarded even when item authors Like/Unlike their own it
2530
  msgstr ""
2531
 
2532
  #: build/wp-ulike/inc/frontend-ajax.php:42
2533
- #: build/wp-ulike/inc/frontend-ajax.php:167 inc/frontend-ajax.php:39
2534
- #: inc/frontend-ajax.php:164
2535
  msgid "Error: This Method Is Not Exist!"
2536
  msgstr ""
2537
 
2538
- #: build/wp-ulike/inc/frontend-ajax.php:159 inc/frontend-ajax.php:156
2539
- msgid "Notice: The likers box is refreshed only for logged in users!"
2540
  msgstr ""
2541
 
2542
- #: build/wp-ulike/inc/frontend-ajax.php:175 inc/frontend-ajax.php:172
2543
- msgid "Notice: The likers box is not activated!"
2544
  msgstr ""
2545
 
2546
  #: build/wp-ulike/inc/general-functions.php:85
@@ -2585,15 +2631,15 @@ msgstr ""
2585
  msgid "Table info is empty."
2586
  msgstr ""
2587
 
2588
- #: build/wp-ulike/inc/general-functions.php:1303 inc/general-functions.php:1300
2589
  msgid "You need to login in order to like this post: "
2590
  msgstr ""
2591
 
2592
- #: build/wp-ulike/inc/general-functions.php:1305 inc/general-functions.php:1302
2593
  msgid "click here"
2594
  msgstr ""
2595
 
2596
- #: build/wp-ulike/inc/general-functions.php:1839 inc/general-functions.php:1836
2597
  msgid "Like This"
2598
  msgstr ""
2599
 
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP ULike 4.1.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/plugins/wp-ulike/\n"
7
+ "POT-Creation-Date: 2020-02-23 09:39:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
30
  #: build/wp-ulike/admin/admin-ajax.php:76
31
  #: build/wp-ulike/admin/admin-ajax.php:82
32
  #: build/wp-ulike/inc/frontend-ajax.php:34
33
+ #: build/wp-ulike/inc/frontend-ajax.php:155 inc/frontend-ajax.php:31
34
+ #: inc/frontend-ajax.php:152
35
  msgid "Error: Something Wrong Happened!"
36
  msgstr ""
37
 
47
  msgid "It's Ok!"
48
  msgstr ""
49
 
50
+ #: admin/admin-functions.php:231
51
  #: admin/classes/class-wp-ulike-admin-panel.php:517
52
+ #: build/wp-ulike/admin/admin-functions.php:234
53
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-panel.php:520
54
  msgid "Button"
55
  msgstr ""
76
  msgid "Sure, I'd love to!"
77
  msgstr ""
78
 
79
+ #: admin/admin-hooks.php:139 admin/admin-hooks.php:224
80
  #: build/wp-ulike/admin/admin-hooks.php:142
81
+ #: build/wp-ulike/admin/admin-hooks.php:227
82
  msgid "Not Now"
83
  msgstr ""
84
 
85
  #: admin/admin-hooks.php:145 admin/admin-hooks.php:171
86
+ #: admin/admin-hooks.php:194 admin/admin-hooks.php:230
87
+ #: build/wp-ulike/admin/admin-hooks.php:148
88
  #: build/wp-ulike/admin/admin-hooks.php:174
89
+ #: build/wp-ulike/admin/admin-hooks.php:197
90
+ #: build/wp-ulike/admin/admin-hooks.php:233
91
  msgid "No thanks and never ask me again"
92
  msgstr ""
93
 
94
  #: admin/admin-hooks.php:161 build/wp-ulike/admin/admin-hooks.php:164
95
+ msgid "How to Create Detailed Log Reports in WP ULike PRO?"
96
  msgstr ""
97
 
98
  #: admin/admin-hooks.php:162 build/wp-ulike/admin/admin-hooks.php:165
99
  msgid ""
100
+ "Having votes for your content without a tool for measuring the results is "
101
+ "meaningless, isn't it? for that reason, we gave you full access to your log "
102
+ "data in the WP ULike professional Logs panel."
103
+ msgstr ""
104
+
105
+ #: admin/admin-hooks.php:167 admin/admin-hooks.php:190
106
+ #: admin/admin-hooks.php:220 build/wp-ulike/admin/admin-hooks.php:170
107
+ #: build/wp-ulike/admin/admin-hooks.php:193
108
+ #: build/wp-ulike/admin/admin-hooks.php:223
109
+ msgid "Get More Information"
110
+ msgstr ""
111
+
112
+ #: admin/admin-hooks.php:184 build/wp-ulike/admin/admin-hooks.php:187
113
+ msgid "Boost Your SEO by Using Schema Rich Snippets"
114
+ msgstr ""
115
+
116
+ #: admin/admin-hooks.php:185 build/wp-ulike/admin/admin-hooks.php:188
117
+ msgid ""
118
  "WP ULike Pro in its latest update evolved to an innovative and powerful SEO "
119
  "Plugin which can manage +13 types of Schema Markups to make a better "
120
  "connection between your webpages and search engines. Now you can talk in "
122
  "promoting."
123
  msgstr ""
124
 
125
+ #: admin/admin-hooks.php:207 build/wp-ulike/admin/admin-hooks.php:210
 
 
 
 
 
 
126
  msgid "WP Ulike Pro is Ready :))"
127
  msgstr ""
128
 
129
+ #: admin/admin-hooks.php:208 build/wp-ulike/admin/admin-hooks.php:211
130
  msgid ""
131
  "Finally, after a long time, the Premium version of the WP Ulike plugin has "
132
  "been released with some new features such as support for Dislike button, "
135
  "provide a full support for our users."
136
  msgstr ""
137
 
138
+ #: admin/admin-hooks.php:259 admin/includes/templates/about.php:26
139
+ #: build/wp-ulike/admin/admin-hooks.php:262
140
  #: build/wp-ulike/admin/includes/templates/about.php:29
141
  msgid "Go Pro"
142
  msgstr ""
152
  msgstr ""
153
 
154
  #: admin/classes/class-wp-ulike-admin-pages.php:27
155
+ #: admin/includes/templates/posts-logs.php:61
156
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:30
157
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:64
158
  msgid "Post Likes Logs"
159
  msgstr ""
160
 
161
  #: admin/classes/class-wp-ulike-admin-pages.php:35
162
+ #: admin/includes/templates/comments-logs.php:61
163
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:38
164
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:64
165
  msgid "Comment Likes Logs"
166
  msgstr ""
167
 
168
  #: admin/classes/class-wp-ulike-admin-pages.php:43
169
+ #: admin/includes/templates/activities-logs.php:61
170
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:46
171
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:64
172
  msgid "Activity Likes Logs"
173
  msgstr ""
174
 
175
  #: admin/classes/class-wp-ulike-admin-pages.php:51
176
+ #: admin/includes/templates/topics-logs.php:61
177
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:54
178
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:64
179
  msgid "Topics Likes Logs"
180
  msgstr ""
181
 
194
  msgstr ""
195
 
196
  #: admin/classes/class-wp-ulike-admin-pages.php:133
197
+ #: admin/includes/templates/activities-logs.php:64
198
+ #: admin/includes/templates/activities-logs.php:141
199
+ #: admin/includes/templates/comments-logs.php:64
200
+ #: admin/includes/templates/comments-logs.php:151
201
+ #: admin/includes/templates/posts-logs.php:64
202
+ #: admin/includes/templates/posts-logs.php:140
203
+ #: admin/includes/templates/topics-logs.php:64
204
+ #: admin/includes/templates/topics-logs.php:140
205
  #: build/wp-ulike/admin/classes/class-wp-ulike-admin-pages.php:136
206
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:67
207
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:144
208
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:67
209
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:154
210
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:67
211
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:143
212
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:67
213
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:143
214
  msgid "Logs"
215
  msgstr ""
216
 
1025
  msgid "Topics Stats"
1026
  msgstr ""
1027
 
1028
+ #: admin/classes/class-wp-ulike-stats.php:273
1029
+ #: admin/includes/templates/activities-logs.php:98
1030
+ #: admin/includes/templates/comments-logs.php:103
1031
+ #: admin/includes/templates/posts-logs.php:97
1032
+ #: admin/includes/templates/topics-logs.php:97
1033
+ #: build/wp-ulike/admin/classes/class-wp-ulike-stats.php:276
1034
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:101
1035
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:106
1036
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:100
1037
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:100
1038
  msgid "Guest User"
1039
  msgstr ""
1040
 
1321
  msgid "No data found! This is because there is still no data in your database."
1322
  msgstr ""
1323
 
1324
+ #: admin/includes/templates/activities-logs.php:40
1325
+ #: admin/includes/templates/comments-logs.php:40
1326
+ #: admin/includes/templates/posts-logs.php:40
1327
+ #: admin/includes/templates/statistics.php:45
1328
+ #: admin/includes/templates/topics-logs.php:40
1329
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:43
1330
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:43
1331
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:43
1332
+ #: build/wp-ulike/admin/includes/templates/statistics.php:48
1333
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:43
1334
+ msgid "Check Votings, Best Likers & Top contents"
1335
+ msgstr ""
1336
+
1337
+ #: admin/includes/templates/activities-logs.php:42
1338
+ #: admin/includes/templates/comments-logs.php:42
1339
+ #: admin/includes/templates/posts-logs.php:42
1340
+ #: admin/includes/templates/statistics.php:47
1341
+ #: admin/includes/templates/topics-logs.php:42
1342
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:45
1343
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:45
1344
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:45
1345
+ #: build/wp-ulike/admin/includes/templates/statistics.php:50
1346
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:45
1347
+ msgid ""
1348
+ "With WP ULike Pro comprehensive Statistics tools, you can track what your "
1349
+ "users love and what annoys them in an instance. You can extract reports of "
1350
+ "likes and dislikes in Linear Charts, Pie Charts or whichever you prefer "
1351
+ "with dateRange picker and status selector controllers, no confusing options "
1352
+ "and coding needed."
1353
+ msgstr ""
1354
+
1355
+ #: admin/includes/templates/activities-logs.php:43
1356
+ #: admin/includes/templates/comments-logs.php:43
1357
+ #: admin/includes/templates/go-pro.php:22
1358
+ #: admin/includes/templates/posts-logs.php:43
1359
+ #: admin/includes/templates/statistics.php:48
1360
+ #: admin/includes/templates/topics-logs.php:43
1361
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:46
1362
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:46
1363
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:25
1364
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:46
1365
+ #: build/wp-ulike/admin/includes/templates/statistics.php:51
1366
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:46
1367
+ msgid "Buy WP ULike Premium"
1368
+ msgstr ""
1369
+
1370
+ #: admin/includes/templates/activities-logs.php:48
1371
+ #: admin/includes/templates/comments-logs.php:48
1372
+ #: admin/includes/templates/go-pro.php:28
1373
+ #: admin/includes/templates/posts-logs.php:48
1374
+ #: admin/includes/templates/statistics.php:53
1375
+ #: admin/includes/templates/topics-logs.php:48
1376
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:51
1377
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:51
1378
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:31
1379
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:51
1380
+ #: build/wp-ulike/admin/includes/templates/statistics.php:56
1381
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:51
1382
+ msgid "More information"
1383
+ msgstr ""
1384
+
1385
+ #: admin/includes/templates/activities-logs.php:60
1386
+ #: admin/includes/templates/comments-logs.php:60
1387
+ #: admin/includes/templates/posts-logs.php:60
1388
+ #: admin/includes/templates/topics-logs.php:60
1389
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:63
1390
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:63
1391
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:63
1392
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:63
1393
  msgid "WP ULike Logs"
1394
  msgstr ""
1395
 
1396
+ #: admin/includes/templates/activities-logs.php:71
1397
+ #: admin/includes/templates/comments-logs.php:71
1398
+ #: admin/includes/templates/posts-logs.php:71
1399
+ #: admin/includes/templates/topics-logs.php:71
1400
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:74
1401
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:74
1402
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:74
1403
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:74
1404
  msgid "ID"
1405
  msgstr ""
1406
 
1407
+ #: admin/includes/templates/activities-logs.php:72
1408
+ #: admin/includes/templates/comments-logs.php:72
1409
+ #: admin/includes/templates/posts-logs.php:72
1410
+ #: admin/includes/templates/topics-logs.php:72
1411
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:75
1412
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:75
1413
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:75
1414
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:75
1415
  msgid "Username"
1416
  msgstr ""
1417
 
1418
+ #: admin/includes/templates/activities-logs.php:73
1419
+ #: admin/includes/templates/comments-logs.php:73
1420
+ #: admin/includes/templates/posts-logs.php:73
1421
+ #: admin/includes/templates/topics-logs.php:73
1422
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:76
1423
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:76
1424
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:76
1425
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:76
1426
  msgid "Status"
1427
  msgstr ""
1428
 
1429
+ #: admin/includes/templates/activities-logs.php:74
1430
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:77
1431
  msgid "Activity ID"
1432
  msgstr ""
1433
 
1434
+ #: admin/includes/templates/activities-logs.php:75
1435
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:78
1436
  msgid "Permalink"
1437
  msgstr ""
1438
 
1439
+ #: admin/includes/templates/activities-logs.php:76
1440
+ #: admin/includes/templates/comments-logs.php:77
1441
+ #: admin/includes/templates/posts-logs.php:76
1442
+ #: admin/includes/templates/topics-logs.php:76
1443
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:79
1444
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:80
1445
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:79
1446
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:79
1447
  msgid "Date / Time"
1448
  msgstr ""
1449
 
1450
+ #: admin/includes/templates/activities-logs.php:77
1451
+ #: admin/includes/templates/comments-logs.php:78
1452
+ #: admin/includes/templates/posts-logs.php:77
1453
+ #: admin/includes/templates/topics-logs.php:77
1454
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:80
1455
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:81
1456
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:80
1457
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:80
1458
  msgid "IP"
1459
  msgstr ""
1460
 
1461
+ #: admin/includes/templates/activities-logs.php:78
1462
+ #: admin/includes/templates/comments-logs.php:79
1463
+ #: admin/includes/templates/posts-logs.php:78
1464
+ #: admin/includes/templates/topics-logs.php:78
1465
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:81
1466
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:82
1467
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:81
1468
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:81
1469
  msgid "Actions"
1470
  msgstr ""
1471
 
1472
+ #: admin/includes/templates/activities-logs.php:114
1473
+ #: build/wp-ulike/admin/includes/templates/activities-logs.php:117
1474
  msgid "<a href=\"%1$s\">Activity Permalink</a>"
1475
  msgstr ""
1476
 
1477
+ #: admin/includes/templates/comments-logs.php:74
1478
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:77
1479
  msgid "Comment ID"
1480
  msgstr ""
1481
 
1482
+ #: admin/includes/templates/comments-logs.php:75
1483
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:78
1484
  msgid "Comment Author"
1485
  msgstr ""
1486
 
1487
+ #: admin/includes/templates/comments-logs.php:76
1488
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:79
1489
  msgid "Comment Text"
1490
  msgstr ""
1491
 
1492
+ #: admin/includes/templates/comments-logs.php:85
1493
+ #: build/wp-ulike/admin/includes/templates/comments-logs.php:88
1494
  msgid "Not Found!"
1495
  msgstr ""
1496
 
1499
  msgid "WP ULike Premium"
1500
  msgstr ""
1501
 
1502
+ #: admin/includes/templates/go-pro.php:119
1503
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
  msgid ""
1505
  "Elementor is the #1 WordPress page builder. In the new version of the WP "
1506
  "ULike PRO plugin we fully support this page builder and have a variety of "
1507
  "widgets & controllers that make life much easier for you."
1508
  msgstr ""
1509
 
1510
+ #: admin/includes/templates/go-pro.php:119
1511
+ #: build/wp-ulike/admin/includes/templates/go-pro.php:122
1512
  msgid ""
1513
  "Just drag your desired widget and drop it in your Elementor sections, "
1514
  "customize as you go and enjoy your like and dislike buttons on your "
1515
  "contents."
1516
  msgstr ""
1517
 
1518
+ #: admin/includes/templates/posts-logs.php:74
1519
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:77
1520
  msgid "Post ID"
1521
  msgstr ""
1522
 
1523
+ #: admin/includes/templates/posts-logs.php:75
1524
+ #: build/wp-ulike/admin/includes/templates/posts-logs.php:78
1525
  msgid "Post Title"
1526
  msgstr ""
1527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1528
  #: admin/includes/templates/statistics.php:76
1529
  #: build/wp-ulike/admin/includes/templates/statistics.php:79
1530
  msgid "Total"
1570
  msgid "Top"
1571
  msgstr ""
1572
 
1573
+ #: admin/includes/templates/topics-logs.php:74
1574
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:77
1575
  msgid "Topic ID"
1576
  msgstr ""
1577
 
1578
+ #: admin/includes/templates/topics-logs.php:75
1579
+ #: build/wp-ulike/admin/includes/templates/topics-logs.php:78
1580
  msgid "Topic Title"
1581
  msgstr ""
1582
 
1694
  msgid "Are you sure to reset all options?"
1695
  msgstr ""
1696
 
1697
+ #: admin/settings/classes/setup.class.php:436
1698
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:436
1699
  msgid "Are you sure?"
1700
  msgstr ""
1701
 
1702
+ #: admin/settings/classes/setup.class.php:437
1703
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:437
1704
  msgid "Restoring options."
1705
  msgstr ""
1706
 
1707
+ #: admin/settings/classes/setup.class.php:438
1708
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:438
1709
  msgid "Importing options."
1710
  msgstr ""
1711
 
1712
+ #: admin/settings/classes/setup.class.php:441
1713
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:441
1714
  msgid "Please enter %s or more characters"
1715
  msgstr ""
1716
 
1717
+ #: admin/settings/classes/setup.class.php:442
1718
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:442
1719
  msgid "Searching..."
1720
  msgstr ""
1721
 
1722
+ #: admin/settings/classes/setup.class.php:443
1723
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:443
1724
  msgid "No results match"
1725
  msgstr ""
1726
 
1727
+ #: admin/settings/classes/setup.class.php:514
1728
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:514
1729
  msgid "Ooops! This field type (%s) can not be used here, yet."
1730
  msgstr ""
1731
 
1732
+ #: admin/settings/classes/setup.class.php:577
1733
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:577
1734
  msgid "This field class is not available!"
1735
  msgstr ""
1736
 
1737
+ #: admin/settings/classes/setup.class.php:581
1738
+ #: build/wp-ulike/admin/settings/classes/setup.class.php:581
1739
  msgid "This type is not found!"
1740
  msgstr ""
1741
 
2576
  msgstr ""
2577
 
2578
  #: build/wp-ulike/inc/frontend-ajax.php:42
2579
+ #: build/wp-ulike/inc/frontend-ajax.php:173 inc/frontend-ajax.php:39
2580
+ #: inc/frontend-ajax.php:170
2581
  msgid "Error: This Method Is Not Exist!"
2582
  msgstr ""
2583
 
2584
+ #: build/wp-ulike/inc/frontend-ajax.php:160 inc/frontend-ajax.php:157
2585
+ msgid "Notice: The likers box is not activated!"
2586
  msgstr ""
2587
 
2588
+ #: build/wp-ulike/inc/frontend-ajax.php:165 inc/frontend-ajax.php:162
2589
+ msgid "Notice: The likers box is refreshed only for logged in users!"
2590
  msgstr ""
2591
 
2592
  #: build/wp-ulike/inc/general-functions.php:85
2631
  msgid "Table info is empty."
2632
  msgstr ""
2633
 
2634
+ #: build/wp-ulike/inc/general-functions.php:1307 inc/general-functions.php:1304
2635
  msgid "You need to login in order to like this post: "
2636
  msgstr ""
2637
 
2638
+ #: build/wp-ulike/inc/general-functions.php:1309 inc/general-functions.php:1306
2639
  msgid "click here"
2640
  msgstr ""
2641
 
2642
+ #: build/wp-ulike/inc/general-functions.php:1870 inc/general-functions.php:1867
2643
  msgid "Like This"
2644
  msgstr ""
2645
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: wp ulike, like button, elementor, like, dislike, wordpress youlike plugin,
6
  Requires PHP: 5.4
7
  Requires at least: 3.5.0
8
  Tested up to: 5.3.2
9
- Stable tag: 4.1.6
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -14,7 +14,7 @@ WP ULike enables you to add Ajax Like button into your WP and allowing your visi
14
 
15
  == Description ==
16
 
17
- If you’re looking for one of the best and fastest ways to add like and dislike functionality to your WordPress website, then the WP ULike plugin is for you! WP ULike is our ultimate solution to cast voting to any type of content you may have in your website. With outstanding and eye-catching widgets, you can have Like and Dislike Button on all of your contents would it be a Post, Comment, Activities, Forum Topics, WooCommerce products, you name it. Now you can feel your users Love :heart: for each part of your work.
18
 
19
  It's time for **[WP ULike](https://wpulike.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme)**.
20
 
@@ -139,7 +139,7 @@ Want to add a new language to WP ULike? Well! You can contribute via [translate.
139
  == Frequently Asked Questions ==
140
 
141
  = How To Use this plugin? =
142
- Just install the plugin and activate "automatic display" in plugin configuration panel. (WP ULike has four auto options for posts, comments, buddypress activities & bbPress Topics.)
143
  Also you can use of the following function and shortcode for your posts:
144
  * Function:
145
  `if(function_exists('wp_ulike')) wp_ulike('get');`
@@ -186,6 +186,13 @@ define( 'WP_MEMORY_LIMIT', '256M' );
186
 
187
  == Changelog ==
188
 
 
 
 
 
 
 
 
189
  = 4.1.6 =
190
  * Added: Professional logs controller page with various options. [PRO]
191
  * Added: All times preset in date range filter. [PRO]
6
  Requires PHP: 5.4
7
  Requires at least: 3.5.0
8
  Tested up to: 5.3.2
9
+ Stable tag: 4.1.7
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
14
 
15
  == Description ==
16
 
17
+ If you’re looking for one of the best and fastest ways to add like and dislike functionality to your WordPress website, then the WP ULike plugin is for you! WP ULike is our ultimate solution 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 contents would it be a Post, Comment, Activities, Forum Topics, WooCommerce products, you name it. Now you can feel your users Love :heart: for each part of your work.
18
 
19
  It's time for **[WP ULike](https://wpulike.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme)**.
20
 
139
  == Frequently Asked Questions ==
140
 
141
  = How To Use this plugin? =
142
+ Just install the plugin and activate "automatic display" in plugin configuration panel. (WP ULike has four auto options for posts, comments, BuddyPress activities & bbPress Topics.)
143
  Also you can use of the following function and shortcode for your posts:
144
  * Function:
145
  `if(function_exists('wp_ulike')) wp_ulike('get');`
186
 
187
  == Changelog ==
188
 
189
+ = 4.1.7 =
190
+ * Added: New caching methods to increase the performance of admin pages.
191
+ * Fixed: Limitation issue in getting the popular item IDs.
192
+ * Fixed: Restrict admin assets visible only to plugin and edit post pages.
193
+ * Fixed: Likers box display issue with shortcode value.
194
+ * Fixed: Some small issues.
195
+
196
  = 4.1.6 =
197
  * Added: Professional logs controller page with various options. [PRO]
198
  * Added: All times preset in date range filter. [PRO]
wp-ulike.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: WP ULike
11
  * Plugin URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
12
  * Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
13
- * Version: 4.1.6
14
  * Author: Ali Mirzaei
15
  * Author URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
16
  * Text Domain: wp-ulike
@@ -46,7 +46,7 @@ if ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) {
46
 
47
  // Do not change these values
48
  define( 'WP_ULIKE_PLUGIN_URI' , 'https://wpulike.com/' );
49
- define( 'WP_ULIKE_VERSION' , '4.1.6' );
50
  define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
51
  define( 'WP_ULIKE_NAME' , __( 'WP ULike', WP_ULIKE_SLUG ));
52
 
10
  * Plugin Name: WP ULike
11
  * Plugin URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
12
  * Description: WP ULike plugin allows to integrate a beautiful Ajax Like Button into your wordPress website to allow your visitors to like and unlike pages, posts, comments AND buddypress activities. Its very simple to use and supports many options.
13
+ * Version: 4.1.7
14
  * Author: Ali Mirzaei
15
  * Author URI: https://wpulike.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
16
  * Text Domain: wp-ulike
46
 
47
  // Do not change these values
48
  define( 'WP_ULIKE_PLUGIN_URI' , 'https://wpulike.com/' );
49
+ define( 'WP_ULIKE_VERSION' , '4.1.7' );
50
  define( 'WP_ULIKE_SLUG' , 'wp-ulike' );
51
  define( 'WP_ULIKE_NAME' , __( 'WP ULike', WP_ULIKE_SLUG ));
52