Premmerce Permalink Manager for WooCommerce - Version 1.1.3

Version Description

Release Date: Jan 24, 2018

  • Updated freemius sdk
  • Fixed the dependency check on multisite

=

Download this release

Release Info

Developer premmerce
Plugin Icon 128x128 Premmerce Permalink Manager for WooCommerce
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

freemius/config.php CHANGED
@@ -285,6 +285,9 @@
285
  if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
286
  define( 'WP_FS__TIME_24_HOURS_IN_SEC', 86400 );
287
  }
 
 
 
288
 
289
  #--------------------------------------------------------------------------------
290
  #region Debugging
285
  if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
286
  define( 'WP_FS__TIME_24_HOURS_IN_SEC', 86400 );
287
  }
288
+ if ( ! defined( 'WP_FS__TIME_WEEK_IN_SEC' ) ) {
289
+ define( 'WP_FS__TIME_WEEK_IN_SEC', 7 * WP_FS__TIME_24_HOURS_IN_SEC );
290
+ }
291
 
292
  #--------------------------------------------------------------------------------
293
  #region Debugging
freemius/includes/class-freemius.php CHANGED
@@ -3009,10 +3009,6 @@
3009
 
3010
  $this->parse_settings( $plugin_info );
3011
 
3012
- if ( $this->has_affiliate_program() ) {
3013
- $this->fetch_affiliate_and_terms();
3014
- }
3015
-
3016
  if ( ! self::is_ajax() ) {
3017
  if ( ! $this->is_addon() || $this->is_only_premium() ) {
3018
  add_action( 'admin_menu', array( &$this, '_prepare_admin_menu' ), WP_FS__LOWEST_PRIORITY );
@@ -7357,14 +7353,12 @@
7357
 
7358
  /**
7359
  * @author Leo Fajardo (@leorw)
7360
- * @since 1.2.3
7361
  */
7362
- private function fetch_affiliate_and_terms() {
7363
- $this->_logger->entrance();
7364
-
7365
  if ( ! is_object( $this->plugin_affiliate_terms ) ) {
7366
  $plugins_api = $this->get_api_plugin_scope();
7367
- $affiliate_terms = $plugins_api->get( '/aff.json?type=affiliation', true );
7368
 
7369
  if ( ! $this->is_api_result_entity( $affiliate_terms ) ) {
7370
  return;
@@ -7372,20 +7366,30 @@
7372
 
7373
  $this->plugin_affiliate_terms = new FS_AffiliateTerms( $affiliate_terms );
7374
  }
 
 
 
 
 
 
 
 
 
 
7375
 
7376
- if ( $this->is_registered() ) {
7377
  $users_api = $this->get_api_user_scope();
7378
- $result = $users_api->get( "/plugins/{$this->_plugin->id}/aff/{$this->plugin_affiliate_terms->id}/affiliates.json", true );
7379
  if ( $this->is_api_result_object( $result, 'affiliates' ) ) {
7380
  if ( ! empty( $result->affiliates ) ) {
7381
  $affiliate = new FS_Affiliate( $result->affiliates[0] );
7382
 
7383
- if ( ! $affiliate->is_pending() && ! empty( $this->_storage->affiliate_application_data ) ) {
7384
- unset( $this->_storage->affiliate_application_data );
 
7385
  }
7386
 
7387
  if ( $affiliate->is_using_custom_terms ) {
7388
- $affiliate_terms = $users_api->get( "/plugins/{$this->_plugin->id}/affiliates/{$affiliate->id}/aff/{$affiliate->custom_affiliate_terms_id}.json", true );
7389
  if ( $this->is_api_result_entity( $affiliate_terms ) ) {
7390
  $this->custom_affiliate_terms = new FS_AffiliateTerms( $affiliate_terms );
7391
  }
@@ -7397,6 +7401,17 @@
7397
  }
7398
  }
7399
 
 
 
 
 
 
 
 
 
 
 
 
7400
  /**
7401
  * @author Leo Fajardo
7402
  * @since 1.2.3
@@ -7469,6 +7484,8 @@
7469
  }
7470
  }
7471
 
 
 
7472
  $api = $this->get_api_user_scope();
7473
  $result = $api->call(
7474
  ( "/plugins/{$this->_plugin->id}/aff/{$this->plugin_affiliate_terms->id}/affiliates.json" ),
@@ -7490,6 +7507,7 @@
7490
  }
7491
 
7492
  $affiliate_application_data = array(
 
7493
  'stats_description' => $affiliate['stats_description'],
7494
  'promotion_method_description' => $affiliate['promotion_method_description'],
7495
  );
@@ -12671,6 +12689,8 @@
12671
  function _affiliation_page_render() {
12672
  $this->_logger->entrance();
12673
 
 
 
12674
  fs_enqueue_local_style( 'fs_affiliation', '/admin/affiliation.css' );
12675
 
12676
  $vars = array( 'id' => $this->_module_id );
@@ -13160,8 +13180,6 @@
13160
  if (
13161
  // Product has no affiliate program.
13162
  ! $this->has_affiliate_program() ||
13163
- // User is already an affiliate.
13164
- is_object( $this->affiliate ) ||
13165
  // User has applied for an affiliate account.
13166
  ! empty( $this->_storage->affiliate_application_data ) ) {
13167
  return false;
@@ -13792,7 +13810,7 @@
13792
  ) );
13793
  }
13794
 
13795
- $plugin_id = fs_request_get( 'module_id', $this->get_id() );
13796
 
13797
  if ( ! FS_Plugin::is_valid_id( $plugin_id ) ) {
13798
  // Invalid ID.
@@ -13910,10 +13928,11 @@
13910
  }
13911
  }
13912
 
13913
- $vars = array(
13914
- 'id' => $plugin_id,
13915
- 'slug' => $this->_slug,
13916
- );
 
13917
 
13918
  fs_require_template( 'auto-installation.php', $vars );
13919
  }
3009
 
3010
  $this->parse_settings( $plugin_info );
3011
 
 
 
 
 
3012
  if ( ! self::is_ajax() ) {
3013
  if ( ! $this->is_addon() || $this->is_only_premium() ) {
3014
  add_action( 'admin_menu', array( &$this, '_prepare_admin_menu' ), WP_FS__LOWEST_PRIORITY );
7353
 
7354
  /**
7355
  * @author Leo Fajardo (@leorw)
7356
+ * @since 1.2.4
7357
  */
7358
+ private function fetch_affiliate_terms() {
 
 
7359
  if ( ! is_object( $this->plugin_affiliate_terms ) ) {
7360
  $plugins_api = $this->get_api_plugin_scope();
7361
+ $affiliate_terms = $plugins_api->get( '/aff.json?type=affiliation', false, WP_FS__TIME_WEEK_IN_SEC );
7362
 
7363
  if ( ! $this->is_api_result_entity( $affiliate_terms ) ) {
7364
  return;
7366
 
7367
  $this->plugin_affiliate_terms = new FS_AffiliateTerms( $affiliate_terms );
7368
  }
7369
+ }
7370
+
7371
+ /**
7372
+ * @author Leo Fajardo (@leorw)
7373
+ * @since 1.2.4
7374
+ */
7375
+ private function fetch_affiliate_and_custom_terms() {
7376
+ if ( ! empty( $this->_storage->affiliate_application_data ) ) {
7377
+ $application_data = $this->_storage->affiliate_application_data;
7378
+ $flush = ( ! isset( $application_data['status'] ) || 'pending' === $application_data['status'] );
7379
 
 
7380
  $users_api = $this->get_api_user_scope();
7381
+ $result = $users_api->get( "/plugins/{$this->_plugin->id}/aff/{$this->plugin_affiliate_terms->id}/affiliates.json", $flush, WP_FS__TIME_WEEK_IN_SEC );
7382
  if ( $this->is_api_result_object( $result, 'affiliates' ) ) {
7383
  if ( ! empty( $result->affiliates ) ) {
7384
  $affiliate = new FS_Affiliate( $result->affiliates[0] );
7385
 
7386
+ if ( ! isset( $application_data['status'] ) || $application_data['status'] !== $affiliate->status ) {
7387
+ $application_data['status'] = $affiliate->status;
7388
+ $this->_storage->affiliate_application_data = $application_data;
7389
  }
7390
 
7391
  if ( $affiliate->is_using_custom_terms ) {
7392
+ $affiliate_terms = $users_api->get( "/plugins/{$this->_plugin->id}/affiliates/{$affiliate->id}/aff/{$affiliate->custom_affiliate_terms_id}.json", $flush, WP_FS__TIME_WEEK_IN_SEC );
7393
  if ( $this->is_api_result_entity( $affiliate_terms ) ) {
7394
  $this->custom_affiliate_terms = new FS_AffiliateTerms( $affiliate_terms );
7395
  }
7401
  }
7402
  }
7403
 
7404
+ /**
7405
+ * @author Leo Fajardo (@leorw)
7406
+ * @since 1.2.3
7407
+ */
7408
+ private function fetch_affiliate_and_terms() {
7409
+ $this->_logger->entrance();
7410
+
7411
+ $this->fetch_affiliate_terms();
7412
+ $this->fetch_affiliate_and_custom_terms();
7413
+ }
7414
+
7415
  /**
7416
  * @author Leo Fajardo
7417
  * @since 1.2.3
7484
  }
7485
  }
7486
 
7487
+ $this->fetch_affiliate_terms();
7488
+
7489
  $api = $this->get_api_user_scope();
7490
  $result = $api->call(
7491
  ( "/plugins/{$this->_plugin->id}/aff/{$this->plugin_affiliate_terms->id}/affiliates.json" ),
7507
  }
7508
 
7509
  $affiliate_application_data = array(
7510
+ 'status' => 'pending',
7511
  'stats_description' => $affiliate['stats_description'],
7512
  'promotion_method_description' => $affiliate['promotion_method_description'],
7513
  );
12689
  function _affiliation_page_render() {
12690
  $this->_logger->entrance();
12691
 
12692
+ $this->fetch_affiliate_and_terms();
12693
+
12694
  fs_enqueue_local_style( 'fs_affiliation', '/admin/affiliation.css' );
12695
 
12696
  $vars = array( 'id' => $this->_module_id );
13180
  if (
13181
  // Product has no affiliate program.
13182
  ! $this->has_affiliate_program() ||
 
 
13183
  // User has applied for an affiliate account.
13184
  ! empty( $this->_storage->affiliate_application_data ) ) {
13185
  return false;
13810
  ) );
13811
  }
13812
 
13813
+ $plugin_id = fs_request_get( 'target_module_id', $this->get_id() );
13814
 
13815
  if ( ! FS_Plugin::is_valid_id( $plugin_id ) ) {
13816
  // Invalid ID.
13928
  }
13929
  }
13930
 
13931
+ $vars = array(
13932
+ 'id' => $this->_module_id,
13933
+ 'target_module_id' => $plugin_id,
13934
+ 'slug' => $this->_slug,
13935
+ );
13936
 
13937
  fs_require_template( 'auto-installation.php', $vars );
13938
  }
freemius/includes/fs-core-functions.php CHANGED
@@ -1,226 +1,248 @@
1
- <?php
2
- /**
3
- * @package Freemius
4
- * @copyright Copyright (c) 2015, Freemius, Inc.
5
- * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6
- * @since 1.0.3
7
- */
8
-
9
- if ( ! defined( 'ABSPATH' ) ) {
10
- exit;
11
- }
12
-
13
- if ( ! function_exists( 'fs_dummy' ) ) {
14
- function fs_dummy() {
15
- }
16
- }
17
-
18
- /* Url.
19
- --------------------------------------------------------------------------------------------*/
20
- if ( ! function_exists( 'fs_get_url_daily_cache_killer' ) ) {
21
- function fs_get_url_daily_cache_killer() {
22
- return date( '\YY\Mm\Dd' );
23
- }
24
- }
25
-
26
- /* Templates / Views.
27
- --------------------------------------------------------------------------------------------*/
28
- if ( ! function_exists( 'fs_get_template_path' ) ) {
29
- function fs_get_template_path( $path ) {
30
- return WP_FS__DIR_TEMPLATES . '/' . trim( $path, '/' );
31
- }
32
-
33
- function fs_include_template( $path, &$params = null ) {
34
- $VARS = &$params;
35
- include fs_get_template_path( $path );
36
- }
37
-
38
- function fs_include_once_template( $path, &$params = null ) {
39
- $VARS = &$params;
40
- include_once fs_get_template_path( $path );
41
- }
42
-
43
- function fs_require_template( $path, &$params = null ) {
44
- $VARS = &$params;
45
- require fs_get_template_path( $path );
46
- }
47
-
48
- function fs_require_once_template( $path, &$params = null ) {
49
- $VARS = &$params;
50
- require_once fs_get_template_path( $path );
51
- }
52
-
53
- function fs_get_template( $path, &$params = null ) {
54
- ob_start();
55
-
56
- $VARS = &$params;
57
- require fs_get_template_path( $path );
58
-
59
- return ob_get_clean();
60
- }
61
- }
62
-
63
- /* Scripts and styles including.
64
- --------------------------------------------------------------------------------------------*/
65
-
66
- /**
67
- * Generates an absolute URL to the given path. This function ensures that the URL will be correct whether the asset
68
- * is inside a plugin's folder or a theme's folder.
69
- *
70
- * Examples:
71
- * 1. "themes" folder
72
- * Path: C:/xampp/htdocs/fswp/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css
73
- * URL: http://fswp:8080/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css
74
- *
75
- * 2. "plugins" folder
76
- * Path: C:/xampp/htdocs/fswp/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css
77
- * URL: http://fswp:8080/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css
78
- *
79
- * @author Leo Fajardo (@leorw)
80
- * @since 1.2.2
81
- *
82
- * @param string $asset_abs_path Asset's absolute path.
83
- *
84
- * @return string Asset's URL.
85
- */
86
- function fs_asset_url( $asset_abs_path ) {
87
- $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR );
88
- $asset_abs_path = fs_normalize_path( $asset_abs_path );
89
- $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path );
90
-
91
- $asset_url = content_url( fs_normalize_path( $asset_rel_path ) );
92
-
93
- return $asset_url;
94
- }
95
-
96
- function fs_enqueue_local_style( $handle, $path, $deps = array(), $ver = false, $media = 'all' ) {
97
- wp_enqueue_style( $handle, fs_asset_url( WP_FS__DIR_CSS . '/' . trim( $path, '/' ) ), $deps, $ver, $media );
98
- }
99
-
100
- function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = 'all' ) {
101
- wp_enqueue_script( $handle, fs_asset_url( WP_FS__DIR_JS . '/' . trim( $path, '/' ) ), $deps, $ver, $in_footer );
102
- }
103
-
104
- function fs_img_url( $path, $img_dir = WP_FS__DIR_IMG ) {
105
- return ( fs_asset_url( $img_dir . '/' . trim( $path, '/' ) ) );
106
- }
107
-
108
- /* Request handlers.
109
- --------------------------------------------------------------------------------------------*/
110
- /**
111
- * @param string $key
112
- * @param mixed $def
113
- * @param string|bool $type Since 1.2.1.7 - when set to 'get' will look for the value passed via querystring, when
114
- * set to 'post' will look for the value passed via the POST request's body, otherwise,
115
- * will check if the parameter was passed in any of the two.
116
- *
117
- * @return mixed
118
- */
119
- function fs_request_get( $key, $def = false, $type = false ) {
120
- if ( is_string( $type ) ) {
121
- $type = strtolower( $type );
122
- }
123
-
124
- switch ( $type ) {
125
- case 'post':
126
- $value = isset( $_POST[ $key ] ) ? $_POST[ $key ] : $def;
127
- break;
128
- case 'get':
129
- $value = isset( $_GET[ $key ] ) ? $_GET[ $key ] : $def;
130
- break;
131
- default:
132
- $value = isset( $_REQUEST[ $key ] ) ? $_REQUEST[ $key ] : $def;
133
- break;
134
- }
135
-
136
- return $value;
137
- }
138
-
139
- function fs_request_has( $key ) {
140
- return isset( $_REQUEST[ $key ] );
141
- }
142
-
143
- function fs_request_get_bool( $key, $def = false ) {
144
- if ( ! isset( $_REQUEST[ $key ] ) ) {
145
- return $def;
146
- }
147
-
148
- if ( 1 == $_REQUEST[ $key ] || 'true' === strtolower( $_REQUEST[ $key ] ) ) {
149
- return true;
150
- }
151
-
152
- if ( 0 == $_REQUEST[ $key ] || 'false' === strtolower( $_REQUEST[ $key ] ) ) {
153
- return false;
154
- }
155
-
156
- return $def;
157
- }
158
-
159
- function fs_request_is_post() {
160
- return ( 'post' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
161
- }
162
-
163
- function fs_request_is_get() {
164
- return ( 'get' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
165
- }
166
-
167
- function fs_get_action( $action_key = 'action' ) {
168
- if ( ! empty( $_REQUEST[ $action_key ] ) ) {
169
- return strtolower( $_REQUEST[ $action_key ] );
170
- }
171
-
172
- if ( 'action' == $action_key ) {
173
- $action_key = 'fs_action';
174
-
175
- if ( ! empty( $_REQUEST[ $action_key ] ) ) {
176
- return strtolower( $_REQUEST[ $action_key ] );
177
- }
178
- }
179
-
180
- return false;
181
- }
182
-
183
- function fs_request_is_action( $action, $action_key = 'action' ) {
184
- return ( strtolower( $action ) === fs_get_action( $action_key ) );
185
- }
186
-
187
- /**
188
- * @author Vova Feldman (@svovaf)
189
- * @since 1.0.0
190
- *
191
- * @since 1.2.1.5 Allow nonce verification.
192
- *
193
- * @param string $action
194
- * @param string $action_key
195
- * @param string $nonce_key
196
- *
197
- * @return bool
198
- */
199
- function fs_request_is_action_secure(
200
- $action,
201
- $action_key = 'action',
202
- $nonce_key = 'nonce'
203
- ) {
204
- if ( strtolower( $action ) !== fs_get_action( $action_key ) ) {
205
- return false;
206
- }
207
-
208
- $nonce = ! empty( $_REQUEST[ $nonce_key ] ) ?
209
- $_REQUEST[ $nonce_key ] :
210
- '';
211
-
212
- if ( empty( $nonce ) ||
213
- ( false === wp_verify_nonce( $nonce, $action ) )
214
- ) {
215
- return false;
216
- }
217
-
218
- return true;
219
- }
220
-
221
- function fs_is_plugin_page( $page_slug ) {
222
- return ( is_admin() && $page_slug === fs_request_get( 'page' ) );
223
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
  if ( ! function_exists( 'fs_get_raw_referer' ) ) {
226
  /**
@@ -245,814 +267,852 @@
245
  return false;
246
  }
247
  }
248
-
249
- /* Core UI.
250
- --------------------------------------------------------------------------------------------*/
251
- /**
252
- * @param number $module_id
253
- * @param string $page
254
- * @param string $action
255
- * @param string $title
256
- * @param array $params
257
- * @param bool $is_primary
258
- * @param string|bool $icon_class Optional class for an icon (since 1.1.7).
259
- * @param string|bool $confirmation Optional confirmation message before submit (since 1.1.7).
260
- * @param string $method Since 1.1.7
261
- *
262
- * @uses fs_ui_get_action_button()
263
- */
264
- function fs_ui_action_button(
265
- $module_id,
266
- $page,
267
- $action,
268
- $title,
269
- $params = array(),
270
- $is_primary = true,
271
- $icon_class = false,
272
- $confirmation = false,
273
- $method = 'GET'
274
- ) {
275
- echo fs_ui_get_action_button(
276
- $module_id,
277
- $page,
278
- $action,
279
- $title,
280
- $params,
281
- $is_primary,
282
- $icon_class,
283
- $confirmation,
284
- $method
285
- );
286
- }
287
-
288
- /**
289
- * @author Vova Feldman (@svovaf)
290
- * @since 1.1.7
291
- *
292
- * @param number $module_id
293
- * @param string $page
294
- * @param string $action
295
- * @param string $title
296
- * @param array $params
297
- * @param bool $is_primary
298
- * @param string|bool $icon_class Optional class for an icon.
299
- * @param string|bool $confirmation Optional confirmation message before submit.
300
- * @param string $method
301
- *
302
- * @return string
303
- */
304
- function fs_ui_get_action_button(
305
- $module_id,
306
- $page,
307
- $action,
308
- $title,
309
- $params = array(),
310
- $is_primary = true,
311
- $icon_class = false,
312
- $confirmation = false,
313
- $method = 'GET'
314
- ) {
315
- // Prepend icon (if set).
316
- $title = ( is_string( $icon_class ) ? '<i class="' . $icon_class . '"></i> ' : '' ) . $title;
317
-
318
- if ( is_string( $confirmation ) ) {
319
- return sprintf( '<form action="%s" method="%s"><input type="hidden" name="fs_action" value="%s">%s<a href="#" class="%s" onclick="if (confirm(\'%s\')) this.parentNode.submit(); return false;">%s</a></form>',
320
- freemius( $module_id )->_get_admin_page_url( $page, $params ),
321
- $method,
322
- $action,
323
- wp_nonce_field( $action, '_wpnonce', true, false ),
324
- 'button' . ( $is_primary ? ' button-primary' : '' ),
325
- $confirmation,
326
- $title
327
- );
328
- } else if ( 'GET' !== strtoupper( $method ) ) {
329
- return sprintf( '<form action="%s" method="%s"><input type="hidden" name="fs_action" value="%s">%s<a href="#" class="%s" onclick="this.parentNode.submit(); return false;">%s</a></form>',
330
- freemius( $module_id )->_get_admin_page_url( $page, $params ),
331
- $method,
332
- $action,
333
- wp_nonce_field( $action, '_wpnonce', true, false ),
334
- 'button' . ( $is_primary ? ' button-primary' : '' ),
335
- $title
336
- );
337
- } else {
338
- return sprintf( '<a href="%s" class="%s">%s</a></form>',
339
- wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ),
340
- 'button' . ( $is_primary ? ' button-primary' : '' ),
341
- $title
342
- );
343
- }
344
- }
345
-
346
- function fs_ui_action_link( $module_id, $page, $action, $title, $params = array() ) {
347
- ?><a class=""
348
- href="<?php echo wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ) ?>"><?php echo $title ?></a><?php
349
- }
350
-
351
- /*function fs_error_handler($errno, $errstr, $errfile, $errline)
352
- {
353
- if (false === strpos($errfile, 'freemius/'))
354
- {
355
- // @todo Dump Freemius errors to local log.
356
- }
357
-
358
- // switch ($errno) {
359
- // case E_USER_ERROR:
360
- // break;
361
- // case E_WARNING:
362
- // case E_USER_WARNING:
363
- // break;
364
- // case E_NOTICE:
365
- // case E_USER_NOTICE:
366
- // break;
367
- // default:
368
- // break;
369
- // }
370
- }
371
-
372
- set_error_handler('fs_error_handler');*/
373
-
374
- if ( ! function_exists( 'fs_nonce_url' ) ) {
375
- /**
376
- * Retrieve URL with nonce added to URL query.
377
- *
378
- * Originally was using `wp_nonce_url()` but the new version
379
- * changed the return value to escaped URL, that's not the expected
380
- * behaviour.
381
- *
382
- * @author Vova Feldman (@svovaf)
383
- * @since ~1.1.3
384
- *
385
- * @param string $actionurl URL to add nonce action.
386
- * @param int|string $action Optional. Nonce action name. Default -1.
387
- * @param string $name Optional. Nonce name. Default '_wpnonce'.
388
- *
389
- * @return string Escaped URL with nonce action added.
390
- */
391
- function fs_nonce_url( $actionurl, $action = - 1, $name = '_wpnonce' ) {
392
- return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
393
- }
394
- }
395
-
396
- if ( ! function_exists( 'fs_starts_with' ) ) {
397
- /**
398
- * Check if string starts with.
399
- *
400
- * @author Vova Feldman (@svovaf)
401
- * @since 1.1.3
402
- *
403
- * @param string $haystack
404
- * @param string $needle
405
- *
406
- * @return bool
407
- */
408
- function fs_starts_with( $haystack, $needle ) {
409
- $length = strlen( $needle );
410
-
411
- return ( substr( $haystack, 0, $length ) === $needle );
412
- }
413
- }
414
-
415
- #region Url Canonization ------------------------------------------------------------------
416
-
417
- if ( ! function_exists( 'fs_canonize_url' ) ) {
418
- /**
419
- * @author Vova Feldman (@svovaf)
420
- * @since 1.1.3
421
- *
422
- * @param string $url
423
- * @param bool $omit_host
424
- * @param array $ignore_params
425
- *
426
- * @return string
427
- */
428
- function fs_canonize_url( $url, $omit_host = false, $ignore_params = array() ) {
429
- $parsed_url = parse_url( strtolower( $url ) );
430
-
431
- // if ( ! isset( $parsed_url['host'] ) ) {
432
- // return $url;
433
- // }
434
-
435
- $canonical = ( ( $omit_host || ! isset( $parsed_url['host'] ) ) ? '' : $parsed_url['host'] ) . $parsed_url['path'];
436
-
437
- if ( isset( $parsed_url['query'] ) ) {
438
- parse_str( $parsed_url['query'], $queryString );
439
- $canonical .= '?' . fs_canonize_query_string( $queryString, $ignore_params );
440
- }
441
-
442
- return $canonical;
443
- }
444
- }
445
-
446
- if ( ! function_exists( 'fs_canonize_query_string' ) ) {
447
- /**
448
- * @author Vova Feldman (@svovaf)
449
- * @since 1.1.3
450
- *
451
- * @param array $params
452
- * @param array $ignore_params
453
- * @param bool $params_prefix
454
- *
455
- * @return string
456
- */
457
- function fs_canonize_query_string( array $params, array &$ignore_params, $params_prefix = false ) {
458
- if ( ! is_array( $params ) || 0 === count( $params ) ) {
459
- return '';
460
- }
461
-
462
- // Url encode both keys and values
463
- $keys = fs_urlencode_rfc3986( array_keys( $params ) );
464
- $values = fs_urlencode_rfc3986( array_values( $params ) );
465
- $params = array_combine( $keys, $values );
466
-
467
- // Parameters are sorted by name, using lexicographical byte value ordering.
468
- // Ref: Spec: 9.1.1 (1)
469
- uksort( $params, 'strcmp' );
470
-
471
- $pairs = array();
472
- foreach ( $params as $parameter => $value ) {
473
- $lower_param = strtolower( $parameter );
474
-
475
- // Skip ignore params.
476
- if ( in_array( $lower_param, $ignore_params ) ||
477
- ( false !== $params_prefix && fs_starts_with( $lower_param, $params_prefix ) )
478
- ) {
479
- continue;
480
- }
481
-
482
- if ( is_array( $value ) ) {
483
- // If two or more parameters share the same name, they are sorted by their value
484
- // Ref: Spec: 9.1.1 (1)
485
- natsort( $value );
486
- foreach ( $value as $duplicate_value ) {
487
- $pairs[] = $lower_param . '=' . $duplicate_value;
488
- }
489
- } else {
490
- $pairs[] = $lower_param . '=' . $value;
491
- }
492
- }
493
-
494
- if ( 0 === count( $pairs ) ) {
495
- return '';
496
- }
497
-
498
- return implode( "&", $pairs );
499
- }
500
- }
501
-
502
- if ( ! function_exists( 'fs_urlencode_rfc3986' ) ) {
503
- /**
504
- * @author Vova Feldman (@svovaf)
505
- * @since 1.1.3
506
- *
507
- * @param string|string[] $input
508
- *
509
- * @return array|mixed|string
510
- */
511
- function fs_urlencode_rfc3986( $input ) {
512
- if ( is_array( $input ) ) {
513
- return array_map( 'fs_urlencode_rfc3986', $input );
514
- } else if ( is_scalar( $input ) ) {
515
- return str_replace( '+', ' ', str_replace( '%7E', '~', rawurlencode( $input ) ) );
516
- }
517
-
518
- return '';
519
- }
520
- }
521
-
522
- #endregion Url Canonization ------------------------------------------------------------------
523
-
524
- /**
525
- * @author Vova Feldman (@svovaf)
526
- *
527
- * @since 1.2.2 Changed to usage of WP_Filesystem_Direct.
528
- *
529
- * @param string $from URL
530
- * @param string $to File path.
531
- *
532
- * @return bool Is successfully downloaded.
533
- */
534
- function fs_download_image( $from, $to ) {
535
- $dir = dirname( $to );
536
-
537
- if ( 'direct' !== get_filesystem_method( array(), $dir ) ) {
538
- return false;
539
- }
540
-
541
- if ( ! class_exists( 'WP_Filesystem_Direct' ) ) {
542
- require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php';
543
- require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php';
544
- }
545
-
546
- $fs = new WP_Filesystem_Direct( '' );
547
- $tmpfile = download_url( $from );
548
-
549
- if ( $tmpfile instanceof WP_Error ) {
550
- // Issue downloading the file.
551
- return false;
552
- }
553
-
554
- $fs->copy( $tmpfile, $to );
555
- $fs->delete( $tmpfile );
556
-
557
- return true;
558
- }
559
-
560
- /* General Utilities
561
- --------------------------------------------------------------------------------------------*/
562
-
563
- /**
564
- * Sorts an array by the value of the priority key.
565
- *
566
- * @author Daniel Iser (@danieliser)
567
- * @since 1.1.7
568
- *
569
- * @param $a
570
- * @param $b
571
- *
572
- * @return int
573
- */
574
- function fs_sort_by_priority( $a, $b ) {
575
-
576
- // If b has a priority and a does not, b wins.
577
- if ( ! isset( $a['priority'] ) && isset( $b['priority'] ) ) {
578
- return 1;
579
- } // If b has a priority and a does not, b wins.
580
- elseif ( isset( $a['priority'] ) && ! isset( $b['priority'] ) ) {
581
- return - 1;
582
- } // If neither has a priority or both priorities are equal its a tie.
583
- elseif ( ( ! isset( $a['priority'] ) && ! isset( $b['priority'] ) ) || $a['priority'] === $b['priority'] ) {
584
- return 0;
585
- }
586
-
587
- // If both have priority return the winner.
588
- return ( $a['priority'] < $b['priority'] ) ? - 1 : 1;
589
- }
590
-
591
- #--------------------------------------------------------------------------------
592
- #region Localization
593
- #--------------------------------------------------------------------------------
594
-
595
- if ( ! function_exists( 'fs_text' ) ) {
596
- /**
597
- * Retrieve a translated text by key.
598
- *
599
- * @author Vova Feldman (@svovaf)
600
- * @since 1.2.1.7
601
- *
602
- * @param string $key
603
- * @param string $slug
604
- *
605
- * @return string
606
- *
607
- * @global $fs_text , $fs_text_overrides
608
- */
609
- function fs_text( $key, $slug = 'freemius' ) {
610
- return __fs( $key, $slug );
611
- }
612
-
613
- /**
614
- * Get a translatable text override if exists, or `false`.
615
- *
616
- * @author Vova Feldman (@svovaf)
617
- * @since 1.2.1.7
618
- *
619
- * @param string $text Translatable string.
620
- * @param string $key String key for overrides.
621
- * @param string $slug Module slug for overrides.
622
- *
623
- * @return string|false
624
- */
625
- function fs_text_override( $text, $key, $slug ) {
626
- global $fs_text_overrides;
627
-
628
- /**
629
- * Check if string is overridden.
630
- */
631
- if ( ! isset( $fs_text_overrides[ $slug ] ) ) {
632
- return false;
633
- }
634
-
635
- if ( empty( $key ) ) {
636
- $key = strtolower( str_replace( ' ', '-', $text ) );
637
- }
638
-
639
- if ( isset( $fs_text_overrides[ $slug ][ $key ] ) ) {
640
- return $fs_text_overrides[ $slug ][ $key ];
641
- }
642
-
643
- $lower_key = strtolower( $key );
644
- if ( isset( $fs_text_overrides[ $slug ][ $lower_key ] ) ) {
645
- return $fs_text_overrides[ $slug ][ $lower_key ];
646
- }
647
-
648
- return false;
649
- }
650
-
651
- /**
652
- * Get a translatable text and its text domain.
653
- *
654
- * When the text is overridden by the module, returns the overridden text and the text domain of the module. Otherwise, returns the original text and 'freemius' as the text domain.
655
- *
656
- * @author Vova Feldman (@svovaf)
657
- * @since 1.2.1.7
658
- *
659
- * @param string $text Translatable string.
660
- * @param string $key String key for overrides.
661
- * @param string $slug Module slug for overrides.
662
- *
663
- * @return string[]
664
- */
665
- function fs_text_and_domain( $text, $key, $slug ) {
666
- $override = fs_text_override( $text, $key, $slug );
667
-
668
- if ( false === $override ) {
669
- // No override, use FS text domain.
670
- $text_domain = 'freemius';
671
- } else {
672
- // Found an override.
673
- $text = $override;
674
- // Use the module's text domain.
675
- $text_domain = $slug;
676
- }
677
-
678
- return array( $text, $text_domain );
679
- }
680
-
681
- #region Private
682
-
683
- /**
684
- * Retrieve an inline translated text by key.
685
- *
686
- * @author Vova Feldman (@svovaf)
687
- * @since 1.2.3
688
- *
689
- * @param string $text Translatable string.
690
- * @param string $key String key for overrides.
691
- * @param string $slug Module slug for overrides.
692
- *
693
- * @return string
694
- *
695
- * @global $fs_text_overrides
696
- */
697
- function _fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
698
- list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
699
-
700
- // Avoid misleading Theme Check warning.
701
- $fn = 'translate';
702
-
703
- return $fn( $text, $text_domain );
704
- }
705
-
706
- /**
707
- * Retrieve an inline translated text by key with a context.
708
- *
709
- * @author Vova Feldman (@svovaf)
710
- * @since 1.2.3
711
- *
712
- * @param string $text Translatable string.
713
- * @param string $context Context information for the translators.
714
- * @param string $key String key for overrides.
715
- * @param string $slug Module slug for overrides.
716
- *
717
- * @return string
718
- *
719
- * @global $fs_text_overrides
720
- */
721
- function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
722
- list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
723
-
724
- // Avoid misleading Theme Check warning.
725
- $fn = 'translate_with_gettext_context';
726
-
727
- return $fn( $text, $context, $text_domain );
728
- }
729
-
730
- #endregion
731
-
732
- /**
733
- * Retrieve an inline translated text by key.
734
- *
735
- * @author Vova Feldman (@svovaf)
736
- * @since 1.2.3
737
- *
738
- * @param string $text Translatable string.
739
- * @param string $key String key for overrides.
740
- * @param string $slug Module slug for overrides.
741
- *
742
- * @return string
743
- *
744
- * @global $fs_text_overrides
745
- */
746
- function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
747
- return _fs_text_inline( $text, $key, $slug );
748
- }
749
-
750
- /**
751
- * Retrieve an inline translated text by key with a context.
752
- *
753
- * @author Vova Feldman (@svovaf)
754
- * @since 1.2.3
755
- *
756
- * @param string $text Translatable string.
757
- * @param string $context Context information for the translators.
758
- * @param string $key String key for overrides.
759
- * @param string $slug Module slug for overrides.
760
- *
761
- * @return string
762
- *
763
- * @global $fs_text_overrides
764
- */
765
- function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
766
- return _fs_text_x_inline( $text, $context, $key, $slug );
767
- }
768
-
769
- /**
770
- * Output a translated text by key.
771
- *
772
- * @author Vova Feldman (@svovaf)
773
- * @since 1.2.1.7
774
- *
775
- * @param string $key
776
- * @param string $slug
777
- */
778
- function fs_echo( $key, $slug = 'freemius' ) {
779
- echo fs_text( $key, $slug );
780
- }
781
-
782
- /**
783
- * Output an inline translated text.
784
- *
785
- * @author Vova Feldman (@svovaf)
786
- * @since 1.2.3
787
- *
788
- * @param string $text Translatable string.
789
- * @param string $key String key for overrides.
790
- * @param string $slug Module slug for overrides.
791
- */
792
- function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
793
- echo _fs_text_inline( $text, $key, $slug );
794
- }
795
-
796
- /**
797
- * Output an inline translated text with a context.
798
- *
799
- * @author Vova Feldman (@svovaf)
800
- * @since 1.2.3
801
- *
802
- * @param string $text Translatable string.
803
- * @param string $context Context information for the translators.
804
- * @param string $key String key for overrides.
805
- * @param string $slug Module slug for overrides.
806
- */
807
- function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
808
- echo _fs_text_x_inline( $text, $context, $key, $slug );
809
- }
810
- }
811
-
812
- /**
813
- * @author Vova Feldman
814
- * @since 1.2.1.6
815
- *
816
- * @param string $key
817
- * @param string $slug
818
- *
819
- * @return string
820
- */
821
- function fs_esc_attr( $key, $slug ) {
822
- return esc_attr( fs_text( $key, $slug ) );
823
- }
824
-
825
- /**
826
- * @author Vova Feldman (@svovaf)
827
- * @since 1.2.3
828
- *
829
- * @param string $text Translatable string.
830
- * @param string $key String key for overrides.
831
- * @param string $slug Module slug for overrides.
832
- *
833
- * @return string
834
- */
835
- function fs_esc_attr_inline( $text, $key = '', $slug = 'freemius' ) {
836
- return esc_attr( _fs_text_inline( $text, $key, $slug ) );
837
- }
838
-
839
- /**
840
- * @author Vova Feldman (@svovaf)
841
- * @since 1.2.3
842
- *
843
- * @param string $text Translatable string.
844
- * @param string $context Context information for the translators.
845
- * @param string $key String key for overrides.
846
- * @param string $slug Module slug for overrides.
847
- *
848
- * @return string
849
- */
850
- function fs_esc_attr_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
851
- return esc_attr( _fs_text_x_inline( $text, $context, $key, $slug ) );
852
- }
853
-
854
- /**
855
- * @author Vova Feldman
856
- * @since 1.2.1.6
857
- *
858
- * @param string $key
859
- * @param string $slug
860
- */
861
- function fs_esc_attr_echo( $key, $slug ) {
862
- echo esc_attr( fs_text( $key, $slug ) );
863
- }
864
-
865
- /**
866
- * @author Vova Feldman (@svovaf)
867
- * @since 1.2.3
868
- *
869
- * @param string $text Translatable string.
870
- * @param string $key String key for overrides.
871
- * @param string $slug Module slug for overrides.
872
- */
873
- function fs_esc_attr_echo_inline( $text, $key = '', $slug = 'freemius' ) {
874
- echo esc_attr( _fs_text_inline( $text, $key, $slug ) );
875
- }
876
-
877
- /**
878
- * @author Vova Feldman
879
- * @since 1.2.1.6
880
- *
881
- * @param string $key
882
- * @param string $slug
883
- *
884
- * @return string
885
- */
886
- function fs_esc_js( $key, $slug ) {
887
- return esc_js( fs_text( $key, $slug ) );
888
- }
889
-
890
- /**
891
- * @author Vova Feldman (@svovaf)
892
- * @since 1.2.3
893
- *
894
- * @param string $text Translatable string.
895
- * @param string $key String key for overrides.
896
- * @param string $slug Module slug for overrides.
897
- *
898
- * @return string
899
- */
900
- function fs_esc_js_inline( $text, $key = '', $slug = 'freemius' ) {
901
- return esc_js( _fs_text_inline( $text, $key, $slug ) );
902
- }
903
-
904
- /**
905
- * @author Vova Feldman (@svovaf)
906
- * @since 1.2.3
907
- *
908
- * @param string $text Translatable string.
909
- * @param string $context Context information for the translators.
910
- * @param string $key String key for overrides.
911
- * @param string $slug Module slug for overrides.
912
- *
913
- * @return string
914
- */
915
- function fs_esc_js_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
916
- return esc_js( _fs_text_x_inline( $text, $context, $key, $slug ) );
917
- }
918
-
919
- /**
920
- * @author Vova Feldman (@svovaf)
921
- * @since 1.2.3
922
- *
923
- * @param string $text Translatable string.
924
- * @param string $context Context information for the translators.
925
- * @param string $key String key for overrides.
926
- * @param string $slug Module slug for overrides.
927
- *
928
- * @return string
929
- */
930
- function fs_esc_js_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
931
- echo esc_js( _fs_text_x_inline( $text, $context, $key, $slug ) );
932
- }
933
-
934
- /**
935
- * @author Vova Feldman
936
- * @since 1.2.1.6
937
- *
938
- * @param string $key
939
- * @param string $slug
940
- */
941
- function fs_esc_js_echo( $key, $slug ) {
942
- echo esc_js( fs_text( $key, $slug ) );
943
- }
944
-
945
- /**
946
- * @author Vova Feldman (@svovaf)
947
- * @since 1.2.3
948
- *
949
- * @param string $text Translatable string.
950
- * @param string $key String key for overrides.
951
- * @param string $slug Module slug for overrides.
952
- */
953
- function fs_esc_js_echo_inline( $text, $key = '', $slug = 'freemius' ) {
954
- echo esc_js( _fs_text_inline( $text, $key, $slug ) );
955
- }
956
-
957
- /**
958
- * @author Vova Feldman
959
- * @since 1.2.1.6
960
- *
961
- * @param string $key
962
- * @param string $slug
963
- */
964
- function fs_json_encode_echo( $key, $slug ) {
965
- echo json_encode( fs_text( $key, $slug ) );
966
- }
967
-
968
- /**
969
- * @author Vova Feldman (@svovaf)
970
- * @since 1.2.3
971
- *
972
- * @param string $text Translatable string.
973
- * @param string $key String key for overrides.
974
- * @param string $slug Module slug for overrides.
975
- */
976
- function fs_json_encode_echo_inline( $text, $key = '', $slug = 'freemius' ) {
977
- echo json_encode( _fs_text_inline( $text, $key, $slug ) );
978
- }
979
-
980
- /**
981
- * @author Vova Feldman
982
- * @since 1.2.1.6
983
- *
984
- * @param string $key
985
- * @param string $slug
986
- *
987
- * @return string
988
- */
989
- function fs_esc_html( $key, $slug ) {
990
- return esc_html( fs_text( $key, $slug ) );
991
- }
992
-
993
- /**
994
- * @author Vova Feldman (@svovaf)
995
- * @since 1.2.3
996
- *
997
- * @param string $text Translatable string.
998
- * @param string $key String key for overrides.
999
- * @param string $slug Module slug for overrides.
1000
- *
1001
- * @return string
1002
- */
1003
- function fs_esc_html_inline( $text, $key = '', $slug = 'freemius' ) {
1004
- return esc_html( _fs_text_inline( $text, $key, $slug ) );
1005
- }
1006
-
1007
- /**
1008
- * @author Vova Feldman (@svovaf)
1009
- * @since 1.2.3
1010
- *
1011
- * @param string $text Translatable string.
1012
- * @param string $context Context information for the translators.
1013
- * @param string $key String key for overrides.
1014
- * @param string $slug Module slug for overrides.
1015
- *
1016
- * @return string
1017
- */
1018
- function fs_esc_html_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
1019
- return esc_html( _fs_text_x_inline( $text, $context, $key, $slug ) );
1020
- }
1021
-
1022
- /**
1023
- * @author Vova Feldman (@svovaf)
1024
- * @since 1.2.3
1025
- *
1026
- * @param string $text Translatable string.
1027
- * @param string $context Context information for the translators.
1028
- * @param string $key String key for overrides.
1029
- * @param string $slug Module slug for overrides.
1030
- */
1031
- function fs_esc_html_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
1032
- echo esc_html( _fs_text_x_inline( $text, $context, $key, $slug ) );
1033
- }
1034
-
1035
- /**
1036
- * @author Vova Feldman
1037
- * @since 1.2.1.6
1038
- *
1039
- * @param string $key
1040
- * @param string $slug
1041
- */
1042
- function fs_esc_html_echo( $key, $slug ) {
1043
- echo esc_html( fs_text( $key, $slug ) );
1044
- }
1045
-
1046
- /**
1047
- * @author Vova Feldman (@svovaf)
1048
- * @since 1.2.3
1049
- *
1050
- * @param string $text Translatable string.
1051
- * @param string $key String key for overrides.
1052
- * @param string $slug Module slug for overrides.
1053
- */
1054
- function fs_esc_html_echo_inline( $text, $key = '', $slug = 'freemius' ) {
1055
- echo esc_html( _fs_text_inline( $text, $key, $slug ) );
1056
- }
1057
-
1058
- #endregion
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Freemius
4
+ * @copyright Copyright (c) 2015, Freemius, Inc.
5
+ * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6
+ * @since 1.0.3
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ if ( ! function_exists( 'fs_dummy' ) ) {
14
+ function fs_dummy() {
15
+ }
16
+ }
17
+
18
+ /* Url.
19
+ --------------------------------------------------------------------------------------------*/
20
+ if ( ! function_exists( 'fs_get_url_daily_cache_killer' ) ) {
21
+ function fs_get_url_daily_cache_killer() {
22
+ return date( '\YY\Mm\Dd' );
23
+ }
24
+ }
25
+
26
+ /* Templates / Views.
27
+ --------------------------------------------------------------------------------------------*/
28
+ if ( ! function_exists( 'fs_get_template_path' ) ) {
29
+ function fs_get_template_path( $path ) {
30
+ return WP_FS__DIR_TEMPLATES . '/' . trim( $path, '/' );
31
+ }
32
+
33
+ function fs_include_template( $path, &$params = null ) {
34
+ $VARS = &$params;
35
+ include fs_get_template_path( $path );
36
+ }
37
+
38
+ function fs_include_once_template( $path, &$params = null ) {
39
+ $VARS = &$params;
40
+ include_once fs_get_template_path( $path );
41
+ }
42
+
43
+ function fs_require_template( $path, &$params = null ) {
44
+ $VARS = &$params;
45
+ require fs_get_template_path( $path );
46
+ }
47
+
48
+ function fs_require_once_template( $path, &$params = null ) {
49
+ $VARS = &$params;
50
+ require_once fs_get_template_path( $path );
51
+ }
52
+
53
+ function fs_get_template( $path, &$params = null ) {
54
+ ob_start();
55
+
56
+ $VARS = &$params;
57
+ require fs_get_template_path( $path );
58
+
59
+ return ob_get_clean();
60
+ }
61
+ }
62
+
63
+ /* Scripts and styles including.
64
+ --------------------------------------------------------------------------------------------*/
65
+
66
+ /**
67
+ * Generates an absolute URL to the given path. This function ensures that the URL will be correct whether the asset
68
+ * is inside a plugin's folder or a theme's folder.
69
+ *
70
+ * Examples:
71
+ * 1. "themes" folder
72
+ * Path: C:/xampp/htdocs/fswp/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css
73
+ * URL: http://fswp:8080/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css
74
+ *
75
+ * 2. "plugins" folder
76
+ * Path: C:/xampp/htdocs/fswp/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css
77
+ * URL: http://fswp:8080/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css
78
+ *
79
+ * @author Leo Fajardo (@leorw)
80
+ * @since 1.2.2
81
+ *
82
+ * @param string $asset_abs_path Asset's absolute path.
83
+ *
84
+ * @return string Asset's URL.
85
+ */
86
+ function fs_asset_url( $asset_abs_path ) {
87
+ $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR );
88
+ $asset_abs_path = fs_normalize_path( $asset_abs_path );
89
+ $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path );
90
+
91
+ $asset_url = content_url( fs_normalize_path( $asset_rel_path ) );
92
+
93
+ return $asset_url;
94
+ }
95
+
96
+ function fs_enqueue_local_style( $handle, $path, $deps = array(), $ver = false, $media = 'all' ) {
97
+ wp_enqueue_style( $handle, fs_asset_url( WP_FS__DIR_CSS . '/' . trim( $path, '/' ) ), $deps, $ver, $media );
98
+ }
99
+
100
+ function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = 'all' ) {
101
+ wp_enqueue_script( $handle, fs_asset_url( WP_FS__DIR_JS . '/' . trim( $path, '/' ) ), $deps, $ver, $in_footer );
102
+ }
103
+
104
+ function fs_img_url( $path, $img_dir = WP_FS__DIR_IMG ) {
105
+ return ( fs_asset_url( $img_dir . '/' . trim( $path, '/' ) ) );
106
+ }
107
+
108
+ #--------------------------------------------------------------------------------
109
+ #region Request handlers.
110
+ #--------------------------------------------------------------------------------
111
+
112
+ if ( ! function_exists( 'fs_request_get' ) ) {
113
+ /**
114
+ * @param string $key
115
+ * @param mixed $def
116
+ * @param string|bool $type Since 1.2.1.7 - when set to 'get' will look for the value passed via querystring, when
117
+ * set to 'post' will look for the value passed via the POST request's body, otherwise,
118
+ * will check if the parameter was passed in any of the two.
119
+ *
120
+ * @return mixed
121
+ */
122
+ function fs_request_get( $key, $def = false, $type = false ) {
123
+ if ( is_string( $type ) ) {
124
+ $type = strtolower( $type );
125
+ }
126
+
127
+ switch ( $type ) {
128
+ case 'post':
129
+ $value = isset( $_POST[ $key ] ) ? $_POST[ $key ] : $def;
130
+ break;
131
+ case 'get':
132
+ $value = isset( $_GET[ $key ] ) ? $_GET[ $key ] : $def;
133
+ break;
134
+ default:
135
+ $value = isset( $_REQUEST[ $key ] ) ? $_REQUEST[ $key ] : $def;
136
+ break;
137
+ }
138
+
139
+ return $value;
140
+ }
141
+ }
142
+
143
+ if ( ! function_exists( 'fs_request_has' ) ) {
144
+ function fs_request_has( $key ) {
145
+ return isset( $_REQUEST[ $key ] );
146
+ }
147
+ }
148
+
149
+ if ( ! function_exists( 'fs_request_get_bool' ) ) {
150
+ function fs_request_get_bool( $key, $def = false ) {
151
+ if ( ! isset( $_REQUEST[ $key ] ) ) {
152
+ return $def;
153
+ }
154
+
155
+ if ( 1 == $_REQUEST[ $key ] || 'true' === strtolower( $_REQUEST[ $key ] ) ) {
156
+ return true;
157
+ }
158
+
159
+ if ( 0 == $_REQUEST[ $key ] || 'false' === strtolower( $_REQUEST[ $key ] ) ) {
160
+ return false;
161
+ }
162
+
163
+ return $def;
164
+ }
165
+ }
166
+
167
+ if ( ! function_exists( 'fs_request_is_post' ) ) {
168
+ function fs_request_is_post() {
169
+ return ( 'post' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
170
+ }
171
+ }
172
+
173
+ if ( ! function_exists( 'fs_request_is_get' ) ) {
174
+ function fs_request_is_get() {
175
+ return ( 'get' === strtolower( $_SERVER['REQUEST_METHOD'] ) );
176
+ }
177
+ }
178
+
179
+ if ( ! function_exists( 'fs_get_action' ) ) {
180
+ function fs_get_action( $action_key = 'action' ) {
181
+ if ( ! empty( $_REQUEST[ $action_key ] ) && is_string( $_REQUEST[ $action_key ] ) ) {
182
+ return strtolower( $_REQUEST[ $action_key ] );
183
+ }
184
+
185
+ if ( 'action' == $action_key ) {
186
+ $action_key = 'fs_action';
187
+
188
+ if ( ! empty( $_REQUEST[ $action_key ] ) && is_string( $_REQUEST[ $action_key ] ) ) {
189
+ return strtolower( $_REQUEST[ $action_key ] );
190
+ }
191
+ }
192
+
193
+ return false;
194
+ }
195
+ }
196
+
197
+ if ( ! function_exists( 'fs_request_is_action' ) ) {
198
+ function fs_request_is_action( $action, $action_key = 'action' ) {
199
+ return ( strtolower( $action ) === fs_get_action( $action_key ) );
200
+ }
201
+ }
202
+
203
+ if ( ! function_exists( 'fs_request_is_action_secure' ) ) {
204
+ /**
205
+ * @author Vova Feldman (@svovaf)
206
+ * @since 1.0.0
207
+ *
208
+ * @since 1.2.1.5 Allow nonce verification.
209
+ *
210
+ * @param string $action
211
+ * @param string $action_key
212
+ * @param string $nonce_key
213
+ *
214
+ * @return bool
215
+ */
216
+ function fs_request_is_action_secure(
217
+ $action,
218
+ $action_key = 'action',
219
+ $nonce_key = 'nonce'
220
+ ) {
221
+ if ( strtolower( $action ) !== fs_get_action( $action_key ) ) {
222
+ return false;
223
+ }
224
+
225
+ $nonce = ! empty( $_REQUEST[ $nonce_key ] ) ?
226
+ $_REQUEST[ $nonce_key ] :
227
+ '';
228
+
229
+ if ( empty( $nonce ) ||
230
+ ( false === wp_verify_nonce( $nonce, $action ) )
231
+ ) {
232
+ return false;
233
+ }
234
+
235
+ return true;
236
+ }
237
+ }
238
+
239
+ #endregion
240
+
241
+ if ( ! function_exists( 'fs_is_plugin_page' ) ) {
242
+ function fs_is_plugin_page( $page_slug ) {
243
+ return ( is_admin() && $page_slug === fs_request_get( 'page' ) );
244
+ }
245
+ }
246
 
247
  if ( ! function_exists( 'fs_get_raw_referer' ) ) {
248
  /**
267
  return false;
268
  }
269
  }
270
+
271
+ /* Core UI.
272
+ --------------------------------------------------------------------------------------------*/
273
+ /**
274
+ * @param number $module_id
275
+ * @param string $page
276
+ * @param string $action
277
+ * @param string $title
278
+ * @param array $params
279
+ * @param bool $is_primary
280
+ * @param string|bool $icon_class Optional class for an icon (since 1.1.7).
281
+ * @param string|bool $confirmation Optional confirmation message before submit (since 1.1.7).
282
+ * @param string $method Since 1.1.7
283
+ *
284
+ * @uses fs_ui_get_action_button()
285
+ */
286
+ function fs_ui_action_button(
287
+ $module_id,
288
+ $page,
289
+ $action,
290
+ $title,
291
+ $params = array(),
292
+ $is_primary = true,
293
+ $icon_class = false,
294
+ $confirmation = false,
295
+ $method = 'GET'
296
+ ) {
297
+ echo fs_ui_get_action_button(
298
+ $module_id,
299
+ $page,
300
+ $action,
301
+ $title,
302
+ $params,
303
+ $is_primary,
304
+ $icon_class,
305
+ $confirmation,
306
+ $method
307
+ );
308
+ }
309
+
310
+ /**
311
+ * @author Vova Feldman (@svovaf)
312
+ * @since 1.1.7
313
+ *
314
+ * @param number $module_id
315
+ * @param string $page
316
+ * @param string $action
317
+ * @param string $title
318
+ * @param array $params
319
+ * @param bool $is_primary
320
+ * @param string|bool $icon_class Optional class for an icon.
321
+ * @param string|bool $confirmation Optional confirmation message before submit.
322
+ * @param string $method
323
+ *
324
+ * @return string
325
+ */
326
+ function fs_ui_get_action_button(
327
+ $module_id,
328
+ $page,
329
+ $action,
330
+ $title,
331
+ $params = array(),
332
+ $is_primary = true,
333
+ $icon_class = false,
334
+ $confirmation = false,
335
+ $method = 'GET'
336
+ ) {
337
+ // Prepend icon (if set).
338
+ $title = ( is_string( $icon_class ) ? '<i class="' . $icon_class . '"></i> ' : '' ) . $title;
339
+
340
+ if ( is_string( $confirmation ) ) {
341
+ return sprintf( '<form action="%s" method="%s"><input type="hidden" name="fs_action" value="%s">%s<a href="#" class="%s" onclick="if (confirm(\'%s\')) this.parentNode.submit(); return false;">%s</a></form>',
342
+ freemius( $module_id )->_get_admin_page_url( $page, $params ),
343
+ $method,
344
+ $action,
345
+ wp_nonce_field( $action, '_wpnonce', true, false ),
346
+ 'button' . ( $is_primary ? ' button-primary' : '' ),
347
+ $confirmation,
348
+ $title
349
+ );
350
+ } else if ( 'GET' !== strtoupper( $method ) ) {
351
+ return sprintf( '<form action="%s" method="%s"><input type="hidden" name="fs_action" value="%s">%s<a href="#" class="%s" onclick="this.parentNode.submit(); return false;">%s</a></form>',
352
+ freemius( $module_id )->_get_admin_page_url( $page, $params ),
353
+ $method,
354
+ $action,
355
+ wp_nonce_field( $action, '_wpnonce', true, false ),
356
+ 'button' . ( $is_primary ? ' button-primary' : '' ),
357
+ $title
358
+ );
359
+ } else {
360
+ return sprintf( '<a href="%s" class="%s">%s</a></form>',
361
+ wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ),
362
+ 'button' . ( $is_primary ? ' button-primary' : '' ),
363
+ $title
364
+ );
365
+ }
366
+ }
367
+
368
+ function fs_ui_action_link( $module_id, $page, $action, $title, $params = array() ) {
369
+ ?><a class=""
370
+ href="<?php echo wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ) ?>"><?php echo $title ?></a><?php
371
+ }
372
+
373
+ /*function fs_error_handler($errno, $errstr, $errfile, $errline)
374
+ {
375
+ if (false === strpos($errfile, 'freemius/'))
376
+ {
377
+ // @todo Dump Freemius errors to local log.
378
+ }
379
+
380
+ // switch ($errno) {
381
+ // case E_USER_ERROR:
382
+ // break;
383
+ // case E_WARNING:
384
+ // case E_USER_WARNING:
385
+ // break;
386
+ // case E_NOTICE:
387
+ // case E_USER_NOTICE:
388
+ // break;
389
+ // default:
390
+ // break;
391
+ // }
392
+ }
393
+
394
+ set_error_handler('fs_error_handler');*/
395
+
396
+ if ( ! function_exists( 'fs_nonce_url' ) ) {
397
+ /**
398
+ * Retrieve URL with nonce added to URL query.
399
+ *
400
+ * Originally was using `wp_nonce_url()` but the new version
401
+ * changed the return value to escaped URL, that's not the expected
402
+ * behaviour.
403
+ *
404
+ * @author Vova Feldman (@svovaf)
405
+ * @since ~1.1.3
406
+ *
407
+ * @param string $actionurl URL to add nonce action.
408
+ * @param int|string $action Optional. Nonce action name. Default -1.
409
+ * @param string $name Optional. Nonce name. Default '_wpnonce'.
410
+ *
411
+ * @return string Escaped URL with nonce action added.
412
+ */
413
+ function fs_nonce_url( $actionurl, $action = - 1, $name = '_wpnonce' ) {
414
+ return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
415
+ }
416
+ }
417
+
418
+ if ( ! function_exists( 'fs_starts_with' ) ) {
419
+ /**
420
+ * Check if string starts with.
421
+ *
422
+ * @author Vova Feldman (@svovaf)
423
+ * @since 1.1.3
424
+ *
425
+ * @param string $haystack
426
+ * @param string $needle
427
+ *
428
+ * @return bool
429
+ */
430
+ function fs_starts_with( $haystack, $needle ) {
431
+ $length = strlen( $needle );
432
+
433
+ return ( substr( $haystack, 0, $length ) === $needle );
434
+ }
435
+ }
436
+
437
+ #region Url Canonization ------------------------------------------------------------------
438
+
439
+ if ( ! function_exists( 'fs_canonize_url' ) ) {
440
+ /**
441
+ * @author Vova Feldman (@svovaf)
442
+ * @since 1.1.3
443
+ *
444
+ * @param string $url
445
+ * @param bool $omit_host
446
+ * @param array $ignore_params
447
+ *
448
+ * @return string
449
+ */
450
+ function fs_canonize_url( $url, $omit_host = false, $ignore_params = array() ) {
451
+ $parsed_url = parse_url( strtolower( $url ) );
452
+
453
+ // if ( ! isset( $parsed_url['host'] ) ) {
454
+ // return $url;
455
+ // }
456
+
457
+ $canonical = ( ( $omit_host || ! isset( $parsed_url['host'] ) ) ? '' : $parsed_url['host'] ) . $parsed_url['path'];
458
+
459
+ if ( isset( $parsed_url['query'] ) ) {
460
+ parse_str( $parsed_url['query'], $queryString );
461
+ $canonical .= '?' . fs_canonize_query_string( $queryString, $ignore_params );
462
+ }
463
+
464
+ return $canonical;
465
+ }
466
+ }
467
+
468
+ if ( ! function_exists( 'fs_canonize_query_string' ) ) {
469
+ /**
470
+ * @author Vova Feldman (@svovaf)
471
+ * @since 1.1.3
472
+ *
473
+ * @param array $params
474
+ * @param array $ignore_params
475
+ * @param bool $params_prefix
476
+ *
477
+ * @return string
478
+ */
479
+ function fs_canonize_query_string( array $params, array &$ignore_params, $params_prefix = false ) {
480
+ if ( ! is_array( $params ) || 0 === count( $params ) ) {
481
+ return '';
482
+ }
483
+
484
+ // Url encode both keys and values
485
+ $keys = fs_urlencode_rfc3986( array_keys( $params ) );
486
+ $values = fs_urlencode_rfc3986( array_values( $params ) );
487
+ $params = array_combine( $keys, $values );
488
+
489
+ // Parameters are sorted by name, using lexicographical byte value ordering.
490
+ // Ref: Spec: 9.1.1 (1)
491
+ uksort( $params, 'strcmp' );
492
+
493
+ $pairs = array();
494
+ foreach ( $params as $parameter => $value ) {
495
+ $lower_param = strtolower( $parameter );
496
+
497
+ // Skip ignore params.
498
+ if ( in_array( $lower_param, $ignore_params ) ||
499
+ ( false !== $params_prefix && fs_starts_with( $lower_param, $params_prefix ) )
500
+ ) {
501
+ continue;
502
+ }
503
+
504
+ if ( is_array( $value ) ) {
505
+ // If two or more parameters share the same name, they are sorted by their value
506
+ // Ref: Spec: 9.1.1 (1)
507
+ natsort( $value );
508
+ foreach ( $value as $duplicate_value ) {
509
+ $pairs[] = $lower_param . '=' . $duplicate_value;
510
+ }
511
+ } else {
512
+ $pairs[] = $lower_param . '=' . $value;
513
+ }
514
+ }
515
+
516
+ if ( 0 === count( $pairs ) ) {
517
+ return '';
518
+ }
519
+
520
+ return implode( "&", $pairs );
521
+ }
522
+ }
523
+
524
+ if ( ! function_exists( 'fs_urlencode_rfc3986' ) ) {
525
+ /**
526
+ * @author Vova Feldman (@svovaf)
527
+ * @since 1.1.3
528
+ *
529
+ * @param string|string[] $input
530
+ *
531
+ * @return array|mixed|string
532
+ */
533
+ function fs_urlencode_rfc3986( $input ) {
534
+ if ( is_array( $input ) ) {
535
+ return array_map( 'fs_urlencode_rfc3986', $input );
536
+ } else if ( is_scalar( $input ) ) {
537
+ return str_replace( '+', ' ', str_replace( '%7E', '~', rawurlencode( $input ) ) );
538
+ }
539
+
540
+ return '';
541
+ }
542
+ }
543
+
544
+ #endregion Url Canonization ------------------------------------------------------------------
545
+
546
+ /**
547
+ * @author Vova Feldman (@svovaf)
548
+ *
549
+ * @since 1.2.2 Changed to usage of WP_Filesystem_Direct.
550
+ *
551
+ * @param string $from URL
552
+ * @param string $to File path.
553
+ *
554
+ * @return bool Is successfully downloaded.
555
+ */
556
+ function fs_download_image( $from, $to ) {
557
+ $dir = dirname( $to );
558
+
559
+ if ( 'direct' !== get_filesystem_method( array(), $dir ) ) {
560
+ return false;
561
+ }
562
+
563
+ if ( ! class_exists( 'WP_Filesystem_Direct' ) ) {
564
+ require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php';
565
+ require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php';
566
+ }
567
+
568
+ $fs = new WP_Filesystem_Direct( '' );
569
+ $tmpfile = download_url( $from );
570
+
571
+ if ( $tmpfile instanceof WP_Error ) {
572
+ // Issue downloading the file.
573
+ return false;
574
+ }
575
+
576
+ $fs->copy( $tmpfile, $to );
577
+ $fs->delete( $tmpfile );
578
+
579
+ return true;
580
+ }
581
+
582
+ /* General Utilities
583
+ --------------------------------------------------------------------------------------------*/
584
+
585
+ /**
586
+ * Sorts an array by the value of the priority key.
587
+ *
588
+ * @author Daniel Iser (@danieliser)
589
+ * @since 1.1.7
590
+ *
591
+ * @param $a
592
+ * @param $b
593
+ *
594
+ * @return int
595
+ */
596
+ function fs_sort_by_priority( $a, $b ) {
597
+
598
+ // If b has a priority and a does not, b wins.
599
+ if ( ! isset( $a['priority'] ) && isset( $b['priority'] ) ) {
600
+ return 1;
601
+ } // If b has a priority and a does not, b wins.
602
+ elseif ( isset( $a['priority'] ) && ! isset( $b['priority'] ) ) {
603
+ return - 1;
604
+ } // If neither has a priority or both priorities are equal its a tie.
605
+ elseif ( ( ! isset( $a['priority'] ) && ! isset( $b['priority'] ) ) || $a['priority'] === $b['priority'] ) {
606
+ return 0;
607
+ }
608
+
609
+ // If both have priority return the winner.
610
+ return ( $a['priority'] < $b['priority'] ) ? - 1 : 1;
611
+ }
612
+
613
+ #--------------------------------------------------------------------------------
614
+ #region Localization
615
+ #--------------------------------------------------------------------------------
616
+
617
+ if ( ! function_exists( 'fs_text' ) ) {
618
+ /**
619
+ * Retrieve a translated text by key.
620
+ *
621
+ * @author Vova Feldman (@svovaf)
622
+ * @since 1.2.1.7
623
+ *
624
+ * @param string $key
625
+ * @param string $slug
626
+ *
627
+ * @return string
628
+ *
629
+ * @global $fs_text , $fs_text_overrides
630
+ */
631
+ function fs_text( $key, $slug = 'freemius' ) {
632
+ return __fs( $key, $slug );
633
+ }
634
+
635
+ /**
636
+ * Get a translatable text override if exists, or `false`.
637
+ *
638
+ * @author Vova Feldman (@svovaf)
639
+ * @since 1.2.1.7
640
+ *
641
+ * @param string $text Translatable string.
642
+ * @param string $key String key for overrides.
643
+ * @param string $slug Module slug for overrides.
644
+ *
645
+ * @return string|false
646
+ */
647
+ function fs_text_override( $text, $key, $slug ) {
648
+ global $fs_text_overrides;
649
+
650
+ /**
651
+ * Check if string is overridden.
652
+ */
653
+ if ( ! isset( $fs_text_overrides[ $slug ] ) ) {
654
+ return false;
655
+ }
656
+
657
+ if ( empty( $key ) ) {
658
+ $key = strtolower( str_replace( ' ', '-', $text ) );
659
+ }
660
+
661
+ if ( isset( $fs_text_overrides[ $slug ][ $key ] ) ) {
662
+ return $fs_text_overrides[ $slug ][ $key ];
663
+ }
664
+
665
+ $lower_key = strtolower( $key );
666
+ if ( isset( $fs_text_overrides[ $slug ][ $lower_key ] ) ) {
667
+ return $fs_text_overrides[ $slug ][ $lower_key ];
668
+ }
669
+
670
+ return false;
671
+ }
672
+
673
+ /**
674
+ * Get a translatable text and its text domain.
675
+ *
676
+ * When the text is overridden by the module, returns the overridden text and the text domain of the module. Otherwise, returns the original text and 'freemius' as the text domain.
677
+ *
678
+ * @author Vova Feldman (@svovaf)
679
+ * @since 1.2.1.7
680
+ *
681
+ * @param string $text Translatable string.
682
+ * @param string $key String key for overrides.
683
+ * @param string $slug Module slug for overrides.
684
+ *
685
+ * @return string[]
686
+ */
687
+ function fs_text_and_domain( $text, $key, $slug ) {
688
+ $override = fs_text_override( $text, $key, $slug );
689
+
690
+ if ( false === $override ) {
691
+ // No override, use FS text domain.
692
+ $text_domain = 'freemius';
693
+ } else {
694
+ // Found an override.
695
+ $text = $override;
696
+ // Use the module's text domain.
697
+ $text_domain = $slug;
698
+ }
699
+
700
+ return array( $text, $text_domain );
701
+ }
702
+
703
+ #region Private
704
+
705
+ /**
706
+ * Retrieve an inline translated text by key.
707
+ *
708
+ * @author Vova Feldman (@svovaf)
709
+ * @since 1.2.3
710
+ *
711
+ * @param string $text Translatable string.
712
+ * @param string $key String key for overrides.
713
+ * @param string $slug Module slug for overrides.
714
+ *
715
+ * @return string
716
+ *
717
+ * @global $fs_text_overrides
718
+ */
719
+ function _fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
720
+ list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
721
+
722
+ // Avoid misleading Theme Check warning.
723
+ $fn = 'translate';
724
+
725
+ return $fn( $text, $text_domain );
726
+ }
727
+
728
+ /**
729
+ * Retrieve an inline translated text by key with a context.
730
+ *
731
+ * @author Vova Feldman (@svovaf)
732
+ * @since 1.2.3
733
+ *
734
+ * @param string $text Translatable string.
735
+ * @param string $context Context information for the translators.
736
+ * @param string $key String key for overrides.
737
+ * @param string $slug Module slug for overrides.
738
+ *
739
+ * @return string
740
+ *
741
+ * @global $fs_text_overrides
742
+ */
743
+ function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
744
+ list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
745
+
746
+ // Avoid misleading Theme Check warning.
747
+ $fn = 'translate_with_gettext_context';
748
+
749
+ return $fn( $text, $context, $text_domain );
750
+ }
751
+
752
+ #endregion
753
+
754
+ /**
755
+ * Retrieve an inline translated text by key.
756
+ *
757
+ * @author Vova Feldman (@svovaf)
758
+ * @since 1.2.3
759
+ *
760
+ * @param string $text Translatable string.
761
+ * @param string $key String key for overrides.
762
+ * @param string $slug Module slug for overrides.
763
+ *
764
+ * @return string
765
+ *
766
+ * @global $fs_text_overrides
767
+ */
768
+ function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
769
+ return _fs_text_inline( $text, $key, $slug );
770
+ }
771
+
772
+ /**
773
+ * Retrieve an inline translated text by key with a context.
774
+ *
775
+ * @author Vova Feldman (@svovaf)
776
+ * @since 1.2.3
777
+ *
778
+ * @param string $text Translatable string.
779
+ * @param string $context Context information for the translators.
780
+ * @param string $key String key for overrides.
781
+ * @param string $slug Module slug for overrides.
782
+ *
783
+ * @return string
784
+ *
785
+ * @global $fs_text_overrides
786
+ */
787
+ function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
788
+ return _fs_text_x_inline( $text, $context, $key, $slug );
789
+ }
790
+
791
+ /**
792
+ * Output a translated text by key.
793
+ *
794
+ * @author Vova Feldman (@svovaf)
795
+ * @since 1.2.1.7
796
+ *
797
+ * @param string $key
798
+ * @param string $slug
799
+ */
800
+ function fs_echo( $key, $slug = 'freemius' ) {
801
+ echo fs_text( $key, $slug );
802
+ }
803
+
804
+ /**
805
+ * Output an inline translated text.
806
+ *
807
+ * @author Vova Feldman (@svovaf)
808
+ * @since 1.2.3
809
+ *
810
+ * @param string $text Translatable string.
811
+ * @param string $key String key for overrides.
812
+ * @param string $slug Module slug for overrides.
813
+ */
814
+ function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
815
+ echo _fs_text_inline( $text, $key, $slug );
816
+ }
817
+
818
+ /**
819
+ * Output an inline translated text with a context.
820
+ *
821
+ * @author Vova Feldman (@svovaf)
822
+ * @since 1.2.3
823
+ *
824
+ * @param string $text Translatable string.
825
+ * @param string $context Context information for the translators.
826
+ * @param string $key String key for overrides.
827
+ * @param string $slug Module slug for overrides.
828
+ */
829
+ function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
830
+ echo _fs_text_x_inline( $text, $context, $key, $slug );
831
+ }
832
+ }
833
+
834
+ if ( ! function_exists( 'fs_esc_attr' ) ) {
835
+ /**
836
+ * @author Vova Feldman
837
+ * @since 1.2.1.6
838
+ *
839
+ * @param string $key
840
+ * @param string $slug
841
+ *
842
+ * @return string
843
+ */
844
+ function fs_esc_attr( $key, $slug ) {
845
+ return esc_attr( fs_text( $key, $slug ) );
846
+ }
847
+ }
848
+
849
+ if ( ! function_exists( 'fs_esc_attr_inline' ) ) {
850
+ /**
851
+ * @author Vova Feldman (@svovaf)
852
+ * @since 1.2.3
853
+ *
854
+ * @param string $text Translatable string.
855
+ * @param string $key String key for overrides.
856
+ * @param string $slug Module slug for overrides.
857
+ *
858
+ * @return string
859
+ */
860
+ function fs_esc_attr_inline( $text, $key = '', $slug = 'freemius' ) {
861
+ return esc_attr( _fs_text_inline( $text, $key, $slug ) );
862
+ }
863
+ }
864
+
865
+ if ( ! function_exists( 'fs_esc_attr_x_inline' ) ) {
866
+ /**
867
+ * @author Vova Feldman (@svovaf)
868
+ * @since 1.2.3
869
+ *
870
+ * @param string $text Translatable string.
871
+ * @param string $context Context information for the translators.
872
+ * @param string $key String key for overrides.
873
+ * @param string $slug Module slug for overrides.
874
+ *
875
+ * @return string
876
+ */
877
+ function fs_esc_attr_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
878
+ return esc_attr( _fs_text_x_inline( $text, $context, $key, $slug ) );
879
+ }
880
+ }
881
+
882
+ if ( ! function_exists( 'fs_esc_attr_echo' ) ) {
883
+ /**
884
+ * @author Vova Feldman
885
+ * @since 1.2.1.6
886
+ *
887
+ * @param string $key
888
+ * @param string $slug
889
+ */
890
+ function fs_esc_attr_echo( $key, $slug ) {
891
+ echo esc_attr( fs_text( $key, $slug ) );
892
+ }
893
+ }
894
+
895
+ if ( ! function_exists( 'fs_esc_attr_echo_inline' ) ) {
896
+ /**
897
+ * @author Vova Feldman (@svovaf)
898
+ * @since 1.2.3
899
+ *
900
+ * @param string $text Translatable string.
901
+ * @param string $key String key for overrides.
902
+ * @param string $slug Module slug for overrides.
903
+ */
904
+ function fs_esc_attr_echo_inline( $text, $key = '', $slug = 'freemius' ) {
905
+ echo esc_attr( _fs_text_inline( $text, $key, $slug ) );
906
+ }
907
+ }
908
+
909
+ if ( ! function_exists( 'fs_esc_js' ) ) {
910
+ /**
911
+ * @author Vova Feldman
912
+ * @since 1.2.1.6
913
+ *
914
+ * @param string $key
915
+ * @param string $slug
916
+ *
917
+ * @return string
918
+ */
919
+ function fs_esc_js( $key, $slug ) {
920
+ return esc_js( fs_text( $key, $slug ) );
921
+ }
922
+ }
923
+
924
+ if ( ! function_exists( 'fs_esc_js_inline' ) ) {
925
+ /**
926
+ * @author Vova Feldman (@svovaf)
927
+ * @since 1.2.3
928
+ *
929
+ * @param string $text Translatable string.
930
+ * @param string $key String key for overrides.
931
+ * @param string $slug Module slug for overrides.
932
+ *
933
+ * @return string
934
+ */
935
+ function fs_esc_js_inline( $text, $key = '', $slug = 'freemius' ) {
936
+ return esc_js( _fs_text_inline( $text, $key, $slug ) );
937
+ }
938
+ }
939
+
940
+ if ( ! function_exists( 'fs_esc_js_x_inline' ) ) {
941
+ /**
942
+ * @author Vova Feldman (@svovaf)
943
+ * @since 1.2.3
944
+ *
945
+ * @param string $text Translatable string.
946
+ * @param string $context Context information for the translators.
947
+ * @param string $key String key for overrides.
948
+ * @param string $slug Module slug for overrides.
949
+ *
950
+ * @return string
951
+ */
952
+ function fs_esc_js_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
953
+ return esc_js( _fs_text_x_inline( $text, $context, $key, $slug ) );
954
+ }
955
+ }
956
+
957
+ if ( ! function_exists( 'fs_esc_js_echo_x_inline' ) ) {
958
+ /**
959
+ * @author Vova Feldman (@svovaf)
960
+ * @since 1.2.3
961
+ *
962
+ * @param string $text Translatable string.
963
+ * @param string $context Context information for the translators.
964
+ * @param string $key String key for overrides.
965
+ * @param string $slug Module slug for overrides.
966
+ *
967
+ * @return string
968
+ */
969
+ function fs_esc_js_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
970
+ echo esc_js( _fs_text_x_inline( $text, $context, $key, $slug ) );
971
+ }
972
+ }
973
+
974
+ if ( ! function_exists( 'fs_esc_js_echo' ) ) {
975
+ /**
976
+ * @author Vova Feldman
977
+ * @since 1.2.1.6
978
+ *
979
+ * @param string $key
980
+ * @param string $slug
981
+ */
982
+ function fs_esc_js_echo( $key, $slug ) {
983
+ echo esc_js( fs_text( $key, $slug ) );
984
+ }
985
+ }
986
+
987
+ if ( ! function_exists( 'fs_esc_js_echo_inline' ) ) {
988
+ /**
989
+ * @author Vova Feldman (@svovaf)
990
+ * @since 1.2.3
991
+ *
992
+ * @param string $text Translatable string.
993
+ * @param string $key String key for overrides.
994
+ * @param string $slug Module slug for overrides.
995
+ */
996
+ function fs_esc_js_echo_inline( $text, $key = '', $slug = 'freemius' ) {
997
+ echo esc_js( _fs_text_inline( $text, $key, $slug ) );
998
+ }
999
+ }
1000
+
1001
+ if ( ! function_exists( 'fs_json_encode_echo' ) ) {
1002
+ /**
1003
+ * @author Vova Feldman
1004
+ * @since 1.2.1.6
1005
+ *
1006
+ * @param string $key
1007
+ * @param string $slug
1008
+ */
1009
+ function fs_json_encode_echo( $key, $slug ) {
1010
+ echo json_encode( fs_text( $key, $slug ) );
1011
+ }
1012
+ }
1013
+
1014
+ if ( ! function_exists( 'fs_json_encode_echo_inline' ) ) {
1015
+ /**
1016
+ * @author Vova Feldman (@svovaf)
1017
+ * @since 1.2.3
1018
+ *
1019
+ * @param string $text Translatable string.
1020
+ * @param string $key String key for overrides.
1021
+ * @param string $slug Module slug for overrides.
1022
+ */
1023
+ function fs_json_encode_echo_inline( $text, $key = '', $slug = 'freemius' ) {
1024
+ echo json_encode( _fs_text_inline( $text, $key, $slug ) );
1025
+ }
1026
+ }
1027
+
1028
+ if ( ! function_exists( 'fs_esc_html' ) ) {
1029
+ /**
1030
+ * @author Vova Feldman
1031
+ * @since 1.2.1.6
1032
+ *
1033
+ * @param string $key
1034
+ * @param string $slug
1035
+ *
1036
+ * @return string
1037
+ */
1038
+ function fs_esc_html( $key, $slug ) {
1039
+ return esc_html( fs_text( $key, $slug ) );
1040
+ }
1041
+ }
1042
+
1043
+ if ( ! function_exists( 'fs_esc_html_inline' ) ) {
1044
+ /**
1045
+ * @author Vova Feldman (@svovaf)
1046
+ * @since 1.2.3
1047
+ *
1048
+ * @param string $text Translatable string.
1049
+ * @param string $key String key for overrides.
1050
+ * @param string $slug Module slug for overrides.
1051
+ *
1052
+ * @return string
1053
+ */
1054
+ function fs_esc_html_inline( $text, $key = '', $slug = 'freemius' ) {
1055
+ return esc_html( _fs_text_inline( $text, $key, $slug ) );
1056
+ }
1057
+ }
1058
+
1059
+ if ( ! function_exists( 'fs_esc_html_x_inline' ) ) {
1060
+ /**
1061
+ * @author Vova Feldman (@svovaf)
1062
+ * @since 1.2.3
1063
+ *
1064
+ * @param string $text Translatable string.
1065
+ * @param string $context Context information for the translators.
1066
+ * @param string $key String key for overrides.
1067
+ * @param string $slug Module slug for overrides.
1068
+ *
1069
+ * @return string
1070
+ */
1071
+ function fs_esc_html_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
1072
+ return esc_html( _fs_text_x_inline( $text, $context, $key, $slug ) );
1073
+ }
1074
+ }
1075
+
1076
+ if ( ! function_exists( 'fs_esc_html_echo_x_inline' ) ) {
1077
+ /**
1078
+ * @author Vova Feldman (@svovaf)
1079
+ * @since 1.2.3
1080
+ *
1081
+ * @param string $text Translatable string.
1082
+ * @param string $context Context information for the translators.
1083
+ * @param string $key String key for overrides.
1084
+ * @param string $slug Module slug for overrides.
1085
+ */
1086
+ function fs_esc_html_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
1087
+ echo esc_html( _fs_text_x_inline( $text, $context, $key, $slug ) );
1088
+ }
1089
+ }
1090
+
1091
+ if ( ! function_exists( 'fs_esc_html_echo' ) ) {
1092
+ /**
1093
+ * @author Vova Feldman
1094
+ * @since 1.2.1.6
1095
+ *
1096
+ * @param string $key
1097
+ * @param string $slug
1098
+ */
1099
+ function fs_esc_html_echo( $key, $slug ) {
1100
+ echo esc_html( fs_text( $key, $slug ) );
1101
+ }
1102
+ }
1103
+
1104
+ if ( ! function_exists( 'fs_esc_html_echo_inline' ) ) {
1105
+ /**
1106
+ * @author Vova Feldman (@svovaf)
1107
+ * @since 1.2.3
1108
+ *
1109
+ * @param string $text Translatable string.
1110
+ * @param string $key String key for overrides.
1111
+ * @param string $slug Module slug for overrides.
1112
+ */
1113
+ function fs_esc_html_echo_inline( $text, $key = '', $slug = 'freemius' ) {
1114
+ echo esc_html( _fs_text_inline( $text, $key, $slug ) );
1115
+ }
1116
+ }
1117
+
1118
+ #endregion
freemius/includes/sdk/FreemiusWordPress.php CHANGED
@@ -263,6 +263,8 @@
263
 
264
  /**
265
  * Get API request URL signed via query string.
 
 
266
  *
267
  * @param string $pPath
268
  *
@@ -270,20 +272,19 @@
270
  *
271
  * @return string
272
  */
273
- function GetSignedUrl( $pPath ) {
274
- $resource = explode( '?', $this->CanonizePath( $pPath ) );
275
- $pResourceUrl = $resource[0];
276
-
277
- $auth = $this->GenerateAuthorizationParams( $pResourceUrl );
278
-
279
- return Freemius_Api_WordPress::GetUrl(
280
- $pResourceUrl . '?' .
281
- ( 1 < count( $resource ) && ! empty( $resource[1] ) ? $resource[1] . '&' : '' ) .
282
- http_build_query( array(
283
- 'auth_date' => $auth['date'],
284
- 'authorization' => $auth['authorization']
285
- ) ), $this->_isSandbox );
286
- }
287
 
288
  /**
289
  * @author Vova Feldman
263
 
264
  /**
265
  * Get API request URL signed via query string.
266
+ *
267
+ * @since 1.2.3 Stopped using http_build_query(). Instead, use urlencode(). In some environments the encoding of http_build_query() can generate a URL that once used with a redirect, the `&` querystring separator is escaped to `&amp;` which breaks the URL (Added by @svovaf).
268
  *
269
  * @param string $pPath
270
  *
272
  *
273
  * @return string
274
  */
275
+ function GetSignedUrl( $pPath ) {
276
+ $resource = explode( '?', $this->CanonizePath( $pPath ) );
277
+ $pResourceUrl = $resource[0];
278
+
279
+ $auth = $this->GenerateAuthorizationParams( $pResourceUrl );
280
+
281
+ return Freemius_Api_WordPress::GetUrl(
282
+ $pResourceUrl . '?' .
283
+ ( 1 < count( $resource ) && ! empty( $resource[1] ) ? $resource[1] . '&' : '' ) .
284
+ 'authorization=' . urlencode( $auth['authorization'] ) .
285
+ '&auth_date=' . urlencode( $auth['date'] )
286
+ , $this->_isSandbox );
287
+ }
 
288
 
289
  /**
290
  * @author Vova Feldman
freemius/languages/freemius-en.mo CHANGED
Binary file
freemius/languages/freemius-en.po CHANGED
@@ -14,772 +14,1525 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "MIME-Version: 1.0\n"
16
  "X-Poedit-Basepath: ..\n"
17
- "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_text_x_inline:1,2c;fs_echo_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_html_x_inline:1,2c\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
- #: includes/class-freemius.php:1816
23
- msgid "freemius-debug"
24
- msgstr "freemius-debug"
25
 
26
- #: includes/class-freemius.php:13474, includes/fs-core-functions.php:728, includes/fs-core-functions.php:771, includes/fs-core-functions.php:809, includes/fs-core-functions.php:836, includes/fs-core-functions.php:859, includes/fs-core-functions.php:882, includes/fs-core-functions.php:909, includes/fs-core-functions.php:947
27
- msgid "$text"
28
- msgstr "$text"
29
 
30
- #: includes/class-freemius.php:13580
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid "Auto installation only works for opted-in users."
32
  msgstr "Auto installation only works for opted-in users."
33
 
34
- #: includes/class-freemius.php:13590, includes/class-freemius.php:13623, includes/class-fs-plugin-updater.php:490, includes/class-fs-plugin-updater.php:504
35
  msgid "Invalid module ID."
36
  msgstr "Invalid module ID."
37
 
38
- #: includes/class-freemius.php:13599, includes/class-fs-plugin-updater.php:524
39
  msgid "Premium version already active."
40
  msgstr "Premium version already active."
41
 
42
- #: includes/class-freemius.php:13606
43
  msgid "You do not have a valid license to access the premium version."
44
  msgstr "You do not have a valid license to access the premium version."
45
 
46
- #: includes/class-freemius.php:13613
47
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
48
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
49
 
50
- #: includes/class-freemius.php:13631, includes/class-fs-plugin-updater.php:523
51
  msgid "Premium add-on version already installed."
52
  msgstr "Premium add-on version already installed."
53
 
54
- #: includes/class-freemius.php:13976
55
  msgid "View paid features"
56
  msgstr "View paid features"
57
 
 
 
 
 
58
  #: includes/class-fs-plugin-updater.php:553
59
  msgid "Installing plugin: %s"
60
  msgstr "Installing plugin: %s"
61
 
 
 
 
 
62
  #: includes/class-fs-plugin-updater.php:700
63
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
64
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
65
 
66
- #: includes/fs-core-functions.php:743, includes/fs-core-functions.php:786, includes/fs-core-functions.php:924
67
- msgctxt "$context"
68
- msgid "$text"
69
- msgstr "$text"
70
-
71
- #: includes/fs-plugin-info-dialog.php:328
72
- msgid "purchase"
73
- msgstr "purchase"
74
 
75
- #: includes/fs-plugin-info-dialog.php:329
76
- msgid "start-free-x"
77
- msgstr "start-free-x"
78
 
79
- #: includes/fs-plugin-info-dialog.php:351, templates/account.php:643
80
- msgid "download-latest"
81
- msgstr "download-latest"
 
82
 
83
- #: includes/fs-plugin-info-dialog.php:354, templates/account.php:637, templates/auto-installation.php:107
84
- msgid "install-now"
85
- msgstr "install-now"
86
 
87
- #: includes/fs-plugin-info-dialog.php:360
88
- msgid "install-update-now"
89
- msgstr "install-update-now"
90
 
91
- #: includes/fs-plugin-info-dialog.php:364
92
  msgid "Newer Version (%s) Installed"
93
  msgstr "Newer Version (%s) Installed"
94
 
95
- #: includes/fs-plugin-info-dialog.php:367
96
  msgid "Latest Version Installed"
97
  msgstr "Latest Version Installed"
98
 
99
- #: includes/fs-plugin-info-dialog.php:480
100
- msgid "description"
101
- msgstr "description"
102
-
103
- #: includes/fs-plugin-info-dialog.php:481
104
- msgid "installation"
105
- msgstr "installation"
106
-
107
- #: includes/fs-plugin-info-dialog.php:482
108
- msgid "faq"
109
- msgstr "faq"
110
-
111
- #: includes/fs-plugin-info-dialog.php:483
112
- msgid "screenshots"
113
- msgstr "screenshots"
114
-
115
  #: includes/fs-plugin-info-dialog.php:484
116
- msgid "changelog"
117
- msgstr "changelog"
 
118
 
119
  #: includes/fs-plugin-info-dialog.php:485
120
- msgid "reviews"
121
- msgstr "reviews"
 
122
 
123
  #: includes/fs-plugin-info-dialog.php:486
124
- msgid "other_notes"
125
- msgstr "other_notes"
126
-
127
- #: includes/fs-plugin-info-dialog.php:501
128
- msgid "features-and-pricing"
129
- msgstr "features-and-pricing"
130
-
131
- #: includes/fs-plugin-info-dialog.php:511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  msgid "Plugin Install"
133
  msgstr "Plugin Install"
134
 
135
- #: includes/fs-plugin-info-dialog.php:583
136
- msgid "x-plan"
137
- msgstr "x-plan"
138
-
139
- #: includes/fs-plugin-info-dialog.php:608
140
- msgid "best"
141
- msgstr "best"
142
 
143
- #: includes/fs-plugin-info-dialog.php:610
144
- msgid "$cycle"
145
- msgstr "$cycle"
 
146
 
147
- #: includes/fs-plugin-info-dialog.php:621, includes/fs-plugin-info-dialog.php:623, includes/fs-plugin-info-dialog.php:625
148
- msgid "billed-x"
149
- msgstr "billed-x"
 
150
 
151
  #: includes/fs-plugin-info-dialog.php:621
152
- msgid "monthly"
153
- msgstr "monthly"
 
154
 
155
- #: includes/fs-plugin-info-dialog.php:623
156
- msgid "annually"
157
- msgstr "annually"
158
 
159
- #: includes/fs-plugin-info-dialog.php:625
160
- msgid "once"
161
- msgstr "once"
 
162
 
163
- #: includes/fs-plugin-info-dialog.php:631
164
- msgid "license-single-site"
165
- msgstr "license-single-site"
 
166
 
167
- #: includes/fs-plugin-info-dialog.php:633
168
- msgid "license-unlimited"
169
- msgstr "license-unlimited"
 
170
 
171
- #: includes/fs-plugin-info-dialog.php:635
172
- msgid "license-x-sites"
173
- msgstr "license-x-sites"
174
 
175
- #: includes/fs-plugin-info-dialog.php:645
 
 
 
 
 
 
 
 
 
176
  msgid "mo"
177
  msgstr "mo"
178
 
179
- #: includes/fs-plugin-info-dialog.php:652
 
180
  msgid "year"
181
  msgstr "year"
182
 
183
- #: includes/fs-plugin-info-dialog.php:704
184
- msgid "price"
185
- msgstr "price"
 
186
 
187
- #: includes/fs-plugin-info-dialog.php:750
188
  msgctxt "as a discount of $5 or 10%"
189
  msgid "Save %s"
190
  msgstr "Save %s"
191
 
192
- #: includes/fs-plugin-info-dialog.php:760
193
- msgid "no-commitment-x"
194
- msgstr "no-commitment-x"
195
 
196
- #: includes/fs-plugin-info-dialog.php:763
197
- msgid "after-x-pay-as-little-y"
198
- msgstr "after-x-pay-as-little-y"
199
 
200
- #: includes/fs-plugin-info-dialog.php:774
201
- msgid "details"
202
- msgstr "details"
203
 
204
- #: includes/fs-plugin-info-dialog.php:777, templates/account.php:204, templates/debug.php:180, templates/debug.php:217, templates/debug.php:345
205
- msgid "version"
206
- msgstr "version"
 
207
 
208
- #: includes/fs-plugin-info-dialog.php:783
209
  msgctxt "as the plugin author"
210
  msgid "Author"
211
  msgstr "Author"
212
 
213
- #: includes/fs-plugin-info-dialog.php:789
214
  msgid "Last Updated"
215
  msgstr "Last Updated"
216
 
217
- #: includes/fs-plugin-info-dialog.php:791, templates/debug/plugins-themes-sync.php:41, templates/debug/plugins-themes-sync.php:61, templates/debug/scheduled-crons.php:105, templates/debug/scheduled-crons.php:121
218
- msgid "x-ago"
219
- msgstr "x-ago"
 
220
 
221
- #: includes/fs-plugin-info-dialog.php:798
222
  msgid "Requires WordPress Version"
223
  msgstr "Requires WordPress Version"
224
 
225
- #: includes/fs-plugin-info-dialog.php:798
226
- msgid "x-or-higher"
227
- msgstr "x-or-higher"
228
 
229
- #: includes/fs-plugin-info-dialog.php:804
230
  msgid "Compatible up to"
231
  msgstr "Compatible up to"
232
 
233
- #: includes/fs-plugin-info-dialog.php:811
234
  msgid "Downloaded"
235
  msgstr "Downloaded"
236
 
237
- #: includes/fs-plugin-info-dialog.php:812, includes/fs-plugin-info-dialog.php:850, includes/fs-plugin-info-dialog.php:861, includes/fs-plugin-info-dialog.php:928, templates/account.php:118, templates/account.php:506, templates/account.php:655, templates/connect.php:433, templates/debug.php:211, templates/forms/license-activation.php:23
238
- #: includes/fs-plugin-info-dialog.php:821
 
 
 
 
 
 
 
239
  msgid "WordPress.org Plugin Page"
240
  msgstr "WordPress.org Plugin Page"
241
 
242
- #: includes/fs-plugin-info-dialog.php:828
243
  msgid "Plugin Homepage"
244
  msgstr "Plugin Homepage"
245
 
246
- #: includes/fs-plugin-info-dialog.php:835, includes/fs-plugin-info-dialog.php:901
247
  msgid "Donate to this plugin"
248
  msgstr "Donate to this plugin"
249
 
250
- #: includes/fs-plugin-info-dialog.php:841
251
  msgid "Average Rating"
252
  msgstr "Average Rating"
253
 
254
- #: includes/fs-plugin-info-dialog.php:848
255
  msgid "based on %s"
256
  msgstr "based on %s"
257
 
258
- #: includes/fs-plugin-info-dialog.php:869
259
- msgid "click-to-reviews"
260
- msgstr "click-to-reviews"
261
 
262
  #: includes/fs-plugin-info-dialog.php:880
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  msgid "Contributors"
264
  msgstr "Contributors"
265
 
266
- #: includes/fs-plugin-info-dialog.php:908, includes/fs-plugin-info-dialog.php:910
267
  msgid "Warning"
268
  msgstr "Warning"
269
 
270
- #: includes/fs-plugin-info-dialog.php:908
271
  msgid "This plugin has not been tested with your current version of WordPress."
272
  msgstr "This plugin has not been tested with your current version of WordPress."
273
 
274
- #: includes/fs-plugin-info-dialog.php:910
275
  msgid "This plugin has not been marked as compatible with your version of WordPress."
276
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
277
 
278
- #: templates/account.php:55, templates/debug.php:276
279
- msgid "account"
280
- msgstr "account"
281
 
282
- #: templates/account.php:58
283
- msgid "add-ons"
284
- msgstr "add-ons"
285
 
286
- #: templates/account.php:61
287
- msgid "upgrade"
288
- msgstr "upgrade"
289
 
290
- #: templates/account.php:63
291
- msgid "free-trial"
292
- msgstr "free-trial"
293
 
294
- #: templates/account.php:74
295
- msgid "account-details"
296
- msgstr "account-details"
297
-
298
- #: templates/account.php:84
299
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
300
- msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
301
 
302
- #: templates/account.php:86
303
- msgid "delete-account-confirm"
304
- msgstr "delete-account-confirm"
305
 
306
- #: templates/account.php:89
307
- msgid "delete-account"
308
- msgstr "delete-account"
 
309
 
310
- #: templates/account.php:100
311
- msgid "deactivate-license-confirm"
312
- msgstr "deactivate-license-confirm"
 
313
 
314
- #: templates/account.php:101, templates/account.php:553
315
- msgid "deactivate-license"
316
- msgstr "deactivate-license"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
 
318
- #: templates/account.php:114, templates/account.php:559
319
- msgid "downgrade-x-confirm"
320
- msgstr "downgrade-x-confirm"
321
 
322
- #: templates/account.php:115, templates/account.php:564
323
- msgid "after-downgrade-non-blocking"
324
- msgstr "after-downgrade-non-blocking"
325
 
326
- #: templates/account.php:117, templates/account.php:565
327
- msgid "after-downgrade-blocking"
328
- msgstr "after-downgrade-blocking"
329
 
330
- #: templates/account.php:118
331
- msgid "proceed-confirmation"
332
- msgstr "proceed-confirmation"
333
 
334
- #: templates/account.php:126
335
- msgid "change-plan"
336
- msgstr "change-plan"
337
 
338
- #: templates/account.php:136, templates/account.php:589
339
- msgid "cancel-trial-confirm"
340
- msgstr "cancel-trial-confirm"
341
 
342
- #: templates/account.php:137, templates/account.php:585
343
- msgid "cancel-trial"
344
- msgstr "cancel-trial"
 
345
 
346
- #: templates/account.php:147
347
- msgid "sync"
348
- msgstr "sync"
349
 
350
- #: templates/account.php:161, templates/debug.php:380
351
- msgid "name"
352
- msgstr "name"
353
 
354
- #: templates/account.php:167, templates/debug.php:381
355
- msgid "email"
356
- msgstr "email"
357
 
358
- #: templates/account.php:174, templates/debug.php:301, templates/debug.php:410
359
- msgid "user-id"
360
- msgstr "user-id"
361
 
362
- #: templates/account.php:181
363
- msgid "site-id"
364
- msgstr "site-id"
365
 
366
- #: templates/account.php:184
367
- msgid "no-id"
368
- msgstr "no-id"
369
 
370
- #: templates/account.php:189, templates/debug.php:222, templates/debug.php:303, templates/debug.php:346, templates/debug.php:383
371
- msgid "public-key"
372
- msgstr "public-key"
373
 
374
- #: templates/account.php:195, templates/debug.php:304, templates/debug.php:347, templates/debug.php:384
375
- msgid "secret-key"
376
- msgstr "secret-key"
 
377
 
378
- #: templates/account.php:198
379
- msgid "no-secret"
380
- msgstr "no-secret"
381
 
382
- #: templates/account.php:214, templates/account.php:222, templates/debug.php:302
383
- msgid "plan"
384
- msgstr "plan"
385
 
386
- #: templates/account.php:217, templates/account.php:503, templates/add-ons.php:130
387
- msgid "trial"
388
- msgstr "trial"
389
 
390
- #: templates/account.php:225, templates/add-ons.php:126
391
- msgid "free"
392
- msgstr "free"
393
 
394
- #: templates/account.php:232
395
- msgid "License Key"
396
- msgstr "License Key"
 
397
 
398
- #: templates/account.php:271, templates/account.php:276, templates/account.php:528
399
- msgid "expires-in"
400
- msgstr "expires-in"
401
 
402
- #: templates/account.php:273, templates/account.php:533
403
- msgid "renews-in"
404
- msgstr "renews-in"
405
 
406
- #: templates/account.php:289, templates/account.php:602
407
- msgid "activate-x-plan"
408
- msgstr "activate-x-plan"
409
 
410
- #: templates/account.php:292
411
- msgid "localhost"
412
- msgstr "localhost"
413
 
414
- #: templates/account.php:296
415
- msgid "x-left"
416
- msgstr "x-left"
417
 
418
- #: templates/account.php:297
419
- msgid "last-license"
420
- msgstr "last-license"
 
421
 
422
- #: templates/account.php:350
423
- msgid "download-x-version"
424
- msgstr "download-x-version"
425
 
426
- #: templates/account.php:375
427
- msgid "what-is-your-x"
428
- msgstr "what-is-your-x"
 
429
 
430
- #: templates/account.php:513
431
- msgid "cancelled"
432
- msgstr "cancelled"
 
433
 
434
- #: templates/account.php:518
435
- msgid "expired"
436
- msgstr "expired"
437
 
438
- #: templates/account.php:523
439
- msgid "no-expiration"
440
- msgstr "no-expiration"
 
441
 
442
- #: templates/account.php:572
443
- msgid "downgrade"
444
- msgstr "downgrade"
445
 
446
- #: templates/account.php:617
447
- msgid "sync-license"
448
- msgstr "sync-license"
449
 
450
- #: templates/account.php:630
451
- msgid "activate"
452
- msgstr "activate"
453
 
454
- #: templates/account.php:653, templates/add-ons.php:99
455
- msgid "more-information-about-x"
456
- msgstr "more-information-about-x"
457
 
458
- #: templates/account.php:704, templates/debug.php:327
459
- msgid "delete"
460
- msgstr "delete"
 
461
 
462
  #: templates/add-ons.php:36
463
- msgid "add-ons-for-x"
464
- msgstr "add-ons-for-x"
465
-
466
- #: templates/add-ons.php:43
467
- msgid "oops"
468
- msgstr "oops"
469
 
470
  #: templates/add-ons.php:44
471
- msgid "add-ons-missing"
472
- msgstr "add-ons-missing"
473
 
474
  #: templates/add-ons.php:135
475
  msgid "View details"
476
  msgstr "View details"
477
 
478
- #: templates/admin-notice.php:39, templates/admin-notice.php:39
479
- msgid "dismiss"
480
- msgstr "dismiss"
 
481
 
482
- #: templates/auto-installation.php:31
483
- msgid "addon"
484
- msgstr "addon"
485
 
486
- #: templates/auto-installation.php:42
487
- msgid "x-sec"
488
- msgstr "x-sec"
489
-
490
- #: templates/auto-installation.php:79
491
  msgid "Automatic Installation"
492
  msgstr "Automatic Installation"
493
 
494
- #: templates/auto-installation.php:89
495
  msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
496
  msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
497
 
498
- #: templates/auto-installation.php:100
499
  msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
500
  msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
501
 
502
- #: templates/auto-installation.php:105
503
  msgid "Cancel Installation"
504
  msgstr "Cancel Installation"
505
 
 
 
 
 
506
  #: templates/checkout.php:168
507
  msgid "PCI compliant"
508
  msgstr "PCI compliant"
509
 
510
- #: templates/connect.php:134
511
- msgid "thanks-x"
512
- msgstr "thanks-x"
 
 
 
 
513
 
514
  #: templates/connect.php:135
515
- msgid "pending-activation-message"
516
- msgstr "pending-activation-message"
517
 
518
- #: templates/connect.php:139
519
- msgid "complete-the-install"
520
- msgstr "complete-the-install"
521
 
522
- #: templates/connect.php:145, templates/connect.php:168
523
- msgid "hey-x"
524
- msgstr "hey-x"
 
525
 
526
- #: templates/connect.php:146
527
- msgid "thanks-for-purchasing"
528
- msgstr "thanks-for-purchasing"
529
 
530
- #: templates/connect.php:170
531
- msgid "$default_optin_message"
532
- msgstr "$default_optin_message"
533
 
534
- #: templates/connect.php:187, templates/debug.php:415, templates/forms/license-activation.php:44
535
- msgid "license-key"
536
- msgstr "license-key"
537
 
538
- #: templates/connect.php:190, templates/forms/license-activation.php:19
539
- msgid "cant-find-license-key"
540
- msgstr "cant-find-license-key"
541
 
542
- #: templates/connect.php:197, templates/forms/deactivation/retry-skip.php:20
543
- msgid "skip"
544
- msgstr "skip"
545
 
546
- #: templates/connect.php:206, templates/connect.php:217, templates/connect.php:408
547
- msgid "$button_label"
548
- msgstr "$button_label"
 
549
 
550
- #: templates/connect.php:282
551
- msgid "what-permissions"
552
- msgstr "what-permissions"
553
 
554
- #: templates/connect.php:303
555
- msgid "dont-have-license-key"
556
- msgstr "dont-have-license-key"
557
 
558
- #: templates/connect.php:304
559
- msgid "activate-free-version"
560
- msgstr "activate-free-version"
561
 
562
- #: templates/connect.php:306
563
- msgid "have-license-key"
564
- msgstr "have-license-key"
565
 
566
- #: templates/connect.php:307
567
- msgid "activate-license"
568
- msgstr "activate-license"
569
 
570
- #: templates/connect.php:314
571
- msgid "privacy-policy"
572
- msgstr "privacy-policy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
 
574
  #: templates/connect.php:316
575
- msgid "tos"
576
- msgstr "tos"
577
 
578
- #: templates/debug.php:17
579
- msgid "Freemius Debug"
580
- msgstr "Freemius Debug"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
 
582
  #: templates/debug.php:17
583
- msgid "SDK"
584
- msgstr "SDK"
 
585
 
586
- #: templates/debug.php:21
587
- msgid "debugging"
588
- msgstr "debugging"
 
589
 
590
- #: templates/debug.php:25, templates/debug.php:259
591
- msgid "on"
592
- msgstr "on"
593
 
594
- #: templates/debug.php:26, templates/debug.php:260
595
- msgid "off"
596
- msgstr "off"
 
597
 
598
- #: templates/debug.php:51, templates/debug.php:223, templates/debug.php:305
599
- msgid "actions"
600
- msgstr "actions"
601
 
602
- #: templates/debug.php:61
603
- msgid "delete-all-confirm"
604
- msgstr "delete-all-confirm"
605
 
606
- #: templates/debug.php:61
607
- msgid "delete-all-accounts"
608
- msgstr "delete-all-accounts"
609
 
610
- #: templates/debug.php:68
611
- msgid "clear-api-cache"
612
- msgstr "clear-api-cache"
613
 
614
- #: templates/debug.php:75
615
- msgid "sync-data-from-server"
616
- msgstr "sync-data-from-server"
617
 
618
- #: templates/debug.php:79
619
  msgid "Load DB Option"
620
  msgstr "Load DB Option"
621
 
622
- #: templates/debug.php:82
623
  msgid "Set DB Option"
624
  msgstr "Set DB Option"
625
 
626
- #: templates/debug.php:159
627
- msgid "key"
628
- msgstr "key"
629
 
630
- #: templates/debug.php:160
631
- msgid "value"
632
- msgstr "value"
633
 
634
- #: templates/debug.php:176
635
- msgid "sdk-versions"
636
- msgstr "sdk-versions"
 
637
 
638
- #: templates/debug.php:181
639
- msgid "sdk-path"
640
- msgstr "sdk-path"
641
 
642
- #: templates/debug.php:182, templates/debug.php:221
643
- msgid "plugin-path"
644
- msgstr "plugin-path"
645
 
646
- #: templates/debug.php:183
647
- msgid "is-active"
648
- msgstr "is-active"
649
 
650
- #: templates/debug.php:215, templates/debug.php:299, templates/debug.php:342, templates/debug.php:379, templates/debug.php:408, templates/debug.php:487, templates/account/payments.php:35, templates/debug/logger.php:21
651
- msgid "id"
652
- msgstr "id"
653
 
654
- #: templates/debug.php:216, templates/debug.php:300, templates/debug.php:344, templates/debug/scheduled-crons.php:79
655
- msgid "slug"
656
- msgstr "slug"
657
 
658
- #: templates/debug.php:218, templates/debug.php:343
659
- msgid "title"
660
- msgstr "title"
661
 
662
- #: templates/debug.php:219
663
- msgid "api"
664
- msgstr "api"
665
 
666
- #: templates/debug.php:220
667
- msgid "freemius-state"
668
- msgstr "freemius-state"
 
669
 
670
- #: templates/debug.php:252
671
- msgid "connected"
672
- msgstr "connected"
673
 
674
- #: templates/debug.php:253
675
- msgid "blocked"
676
- msgstr "blocked"
 
677
 
678
- #: templates/debug.php:272
 
 
 
 
 
679
  msgid "Simulate Trial"
680
  msgstr "Simulate Trial"
681
 
682
- #: templates/debug.php:295
683
- msgid "module-installs"
684
- msgstr "module-installs"
 
 
 
 
 
685
 
686
- #: templates/debug.php:295, templates/debug.php:404
687
- msgid "$module_type"
688
- msgstr "$module_type"
689
 
690
- #: templates/debug.php:295
691
- msgid "sites"
692
- msgstr "sites"
693
 
694
- #: templates/debug.php:338
695
- msgid "addons-of-x"
696
- msgstr "addons-of-x"
697
 
698
- #: templates/debug.php:375
699
- msgid "users"
700
- msgstr "users"
701
 
702
- #: templates/debug.php:382
703
- msgid "verified"
704
- msgstr "verified"
705
 
706
- #: templates/debug.php:404
707
- msgid "module-licenses"
708
- msgstr "module-licenses"
709
 
710
- #: templates/debug.php:409
711
- msgid "plugin-id"
712
- msgstr "plugin-id"
713
 
714
- #: templates/debug.php:411
715
- msgid "plan-id"
716
- msgstr "plan-id"
717
 
718
- #: templates/debug.php:412
719
- msgid "quota"
720
- msgstr "quota"
721
 
722
- #: templates/debug.php:413
723
- msgid "activated"
724
- msgstr "activated"
 
725
 
726
- #: templates/debug.php:414
727
- msgid "blocking"
728
- msgstr "blocking"
729
 
730
- #: templates/debug.php:416
731
- msgid "expiration"
732
- msgstr "expiration"
733
 
734
- #: templates/debug.php:445
735
- msgid "debug-log"
736
- msgstr "debug-log"
737
 
738
- #: templates/debug.php:449
739
- msgid "all-types"
740
- msgstr "all-types"
741
 
742
- #: templates/debug.php:456
743
- msgid "all-requests"
744
- msgstr "all-requests"
745
 
746
- #: templates/debug.php:461, templates/debug.php:490, templates/debug/logger.php:25
747
- msgid "file"
748
- msgstr "file"
749
 
750
- #: templates/debug.php:462, templates/debug.php:488, templates/debug/logger.php:23
751
- msgid "function"
752
- msgstr "function"
753
 
754
- #: templates/debug.php:463
755
- msgid "process-id"
756
- msgstr "process-id"
757
 
758
- #: templates/debug.php:464
759
- msgid "logger"
760
- msgstr "logger"
761
 
762
- #: templates/debug.php:465, templates/debug.php:489, templates/debug/logger.php:24
763
- msgid "message"
764
- msgstr "message"
765
 
766
- #: templates/debug.php:467
767
- msgid "filter"
768
- msgstr "filter"
769
 
770
- #: templates/debug.php:475
771
- msgid "download"
772
- msgstr "download"
773
 
774
- #: templates/debug.php:486, templates/debug/logger.php:22
775
- msgid "type"
776
- msgstr "type"
777
 
778
- #: templates/debug.php:491, templates/debug/logger.php:26
779
- msgid "timestamp"
780
- msgstr "timestamp"
781
 
782
- #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:84, templates/debug/api-calls.php:148, templates/debug/api-calls.php:149, templates/debug/logger.php:62
 
783
  msgid "ms"
784
  msgstr "ms"
785
 
@@ -791,107 +1544,105 @@ msgstr "Freemius API"
791
  msgid "Requests"
792
  msgstr "Requests"
793
 
794
- #: templates/account/billing.php:36
795
- msgid "billing"
796
- msgstr "billing"
 
 
 
 
 
797
 
798
- #: templates/account/billing.php:41, templates/account/billing.php:41
799
  msgid "Business name"
800
  msgstr "Business name"
801
 
802
- #: templates/account/billing.php:42, templates/account/billing.php:42
803
  msgid "Tax / VAT ID"
804
  msgstr "Tax / VAT ID"
805
 
806
- #: templates/account/billing.php:45, templates/account/billing.php:45, templates/account/billing.php:46, templates/account/billing.php:46
807
  msgid "Address Line %d"
808
  msgstr "Address Line %d"
809
 
810
- #: templates/account/billing.php:49, templates/account/billing.php:49
811
  msgid "City"
812
  msgstr "City"
813
 
814
- #: templates/account/billing.php:49, templates/account/billing.php:49
815
  msgid "Town"
816
  msgstr "Town"
817
 
818
- #: templates/account/billing.php:50, templates/account/billing.php:50
819
  msgid "ZIP / Postal Code"
820
  msgstr "ZIP / Postal Code"
821
 
822
- #: templates/account/billing.php:305
823
  msgid "Country"
824
  msgstr "Country"
825
 
826
- #: templates/account/billing.php:307
827
  msgid "Select Country"
828
  msgstr "Select Country"
829
 
830
- #: templates/account/billing.php:314, templates/account/billing.php:315
831
  msgid "State"
832
  msgstr "State"
833
 
834
- #: templates/account/billing.php:314, templates/account/billing.php:315
835
  msgid "Province"
836
  msgstr "Province"
837
 
838
- #: templates/account/billing.php:321, templates/account/billing.php:362, templates/account/billing.php:421
839
- msgid "edit"
840
- msgstr "edit"
841
-
842
- #: templates/account/billing.php:322, templates/account/billing.php:362, templates/account/billing.php:413
843
- msgid "update"
844
- msgstr "update"
845
-
846
  #: templates/account/payments.php:29
847
- msgid "payments"
848
- msgstr "payments"
849
 
850
  #: templates/account/payments.php:36
851
- msgid "date"
852
- msgstr "date"
853
 
854
  #: templates/account/payments.php:37
855
- msgid "amount"
856
- msgstr "amount"
857
 
858
  #: templates/account/payments.php:38, templates/account/payments.php:50
859
- msgid "invoice"
860
- msgstr "invoice"
861
 
862
- #: templates/debug/api-calls.php:54
863
  msgid "API"
864
  msgstr "API"
865
 
866
- #: templates/debug/api-calls.php:66
867
  msgid "Method"
868
  msgstr "Method"
869
 
870
- #: templates/debug/api-calls.php:67
871
  msgid "Code"
872
  msgstr "Code"
873
 
874
- #: templates/debug/api-calls.php:68
875
  msgid "Length"
876
  msgstr "Length"
877
 
878
- #: templates/debug/api-calls.php:69
 
879
  msgid "Path"
880
  msgstr "Path"
881
 
882
- #: templates/debug/api-calls.php:71
883
  msgid "Body"
884
  msgstr "Body"
885
 
886
- #: templates/debug/api-calls.php:73
887
  msgid "Result"
888
  msgstr "Result"
889
 
890
- #: templates/debug/api-calls.php:74
891
  msgid "Start"
892
  msgstr "Start"
893
 
894
- #: templates/debug/api-calls.php:75
895
  msgid "End"
896
  msgstr "End"
897
 
@@ -899,306 +1650,327 @@ msgstr "End"
899
  msgid "Log"
900
  msgstr "Log"
901
 
902
- #: templates/debug/plugins-themes-sync.php:17
903
- msgid "plugins-themes-sync"
904
- msgstr "plugins-themes-sync"
905
-
906
- #: templates/debug/plugins-themes-sync.php:22
907
- msgid "total"
908
- msgstr "total"
909
-
910
- #: templates/debug/plugins-themes-sync.php:23, templates/debug/scheduled-crons.php:83
911
- msgid "Last"
912
- msgstr "Last"
913
 
914
- #: templates/debug/plugins-themes-sync.php:29
915
- msgid "plugins"
916
- msgstr "plugins"
 
917
 
918
- #: templates/debug/plugins-themes-sync.php:35, templates/debug/plugins-themes-sync.php:55, templates/debug/scheduled-crons.php:99, templates/debug/scheduled-crons.php:115
 
919
  msgid "sec"
920
  msgstr "sec"
921
 
922
- #: templates/debug/plugins-themes-sync.php:39, templates/debug/plugins-themes-sync.php:59, templates/debug/scheduled-crons.php:103, templates/debug/scheduled-crons.php:119
923
- msgid "in-x"
924
- msgstr "in-x"
925
-
926
- #: templates/debug/plugins-themes-sync.php:49
927
- msgid "themes"
928
- msgstr "themes"
929
 
930
- #: templates/debug/scheduled-crons.php:75
931
- msgid "scheduled-crons"
932
- msgstr "scheduled-crons"
933
 
934
- #: templates/debug/scheduled-crons.php:80
935
- msgid "module"
936
- msgstr "module"
937
 
938
- #: templates/debug/scheduled-crons.php:81
939
- msgid "module-type"
940
- msgstr "module-type"
941
 
942
  #: templates/debug/scheduled-crons.php:82
943
- msgid "cron-type"
944
- msgstr "cron-type"
 
 
 
 
945
 
946
  #: templates/debug/scheduled-crons.php:84
 
 
 
 
947
  msgid "Next"
948
  msgstr "Next"
949
 
950
  #: templates/forms/affiliation.php:81
951
- msgid "non-expiring"
952
- msgstr "non-expiring"
 
 
 
 
 
 
 
 
953
 
954
- #: templates/forms/affiliation.php:101
955
- msgid "affiliate-application-accepted"
956
- msgstr "affiliate-application-accepted"
957
 
958
- #: templates/forms/affiliation.php:124
959
- msgid "$text_key"
960
- msgstr "$text_key"
961
 
962
- #: templates/forms/affiliation.php:132
963
- msgid "become-an-ambassador"
964
- msgstr "become-an-ambassador"
965
 
966
- #: templates/forms/affiliation.php:133
967
- msgid "refer-new-customers"
968
- msgstr "refer-new-customers"
969
 
970
  #: templates/forms/affiliation.php:136
971
- msgid "program-summary"
972
- msgstr "program-summary"
973
 
974
- #: templates/forms/affiliation.php:138
975
- msgid "commission-on-new-license-purchase"
976
- msgstr "commission-on-new-license-purchase"
977
 
978
  #: templates/forms/affiliation.php:140
979
- msgid "renewals-commission"
980
- msgstr "renewals-commission"
981
 
982
- #: templates/forms/affiliation.php:143
983
- msgid "affiliate-tracking"
984
- msgstr "affiliate-tracking"
985
 
986
- #: templates/forms/affiliation.php:146
987
- msgid "unlimited-commissions"
988
- msgstr "unlimited-commissions"
989
 
990
- #: templates/forms/affiliation.php:148
991
- msgid "minimum-payout-amount"
992
- msgstr "minimum-payout-amount"
993
-
994
- #: templates/forms/affiliation.php:149
995
- msgid "payouts-unit-and-processing"
996
- msgstr "payouts-unit-and-processing"
997
 
998
  #: templates/forms/affiliation.php:150
999
- msgid "commission-payment"
1000
- msgstr "commission-payment"
 
 
 
 
1001
 
1002
  #: templates/forms/affiliation.php:153
1003
- msgid "affiliate"
1004
- msgstr "affiliate"
1005
 
1006
- #: templates/forms/affiliation.php:156
1007
- msgid "email-address"
1008
- msgstr "email-address"
1009
 
1010
- #: templates/forms/affiliation.php:160
1011
- msgid "full-name"
1012
- msgstr "full-name"
 
 
 
 
1013
 
1014
  #: templates/forms/affiliation.php:164
1015
- msgid "paypal-account-email-address"
1016
- msgstr "paypal-account-email-address"
1017
 
1018
  #: templates/forms/affiliation.php:168
1019
- msgid "domain-field-label"
1020
- msgstr "domain-field-label"
1021
-
1022
- #: templates/forms/affiliation.php:170
1023
- msgid "domain-field-desc"
1024
- msgstr "domain-field-desc"
1025
 
1026
  #: templates/forms/affiliation.php:172
1027
- msgid "add-another-domain"
1028
- msgstr "add-another-domain"
 
 
 
 
1029
 
1030
  #: templates/forms/affiliation.php:176
1031
- msgid "extra-domain-fields-label"
1032
- msgstr "extra-domain-fields-label"
1033
 
1034
- #: templates/forms/affiliation.php:177
1035
- msgid "extra-domain-fields-desc"
1036
- msgstr "extra-domain-fields-desc"
1037
 
1038
- #: templates/forms/affiliation.php:187
1039
- msgid "promotion-methods"
1040
- msgstr "promotion-methods"
1041
 
1042
- #: templates/forms/affiliation.php:190
1043
- msgid "social-media"
1044
- msgstr "social-media"
1045
 
1046
  #: templates/forms/affiliation.php:194
1047
- msgid "mobile-apps"
1048
- msgstr "mobile-apps"
1049
 
1050
  #: templates/forms/affiliation.php:198
1051
- msgid "statistics-information-field-label"
1052
- msgstr "statistics-information-field-label"
1053
 
1054
- #: templates/forms/affiliation.php:201
1055
- msgid "statistics-information-field-desc"
1056
- msgstr "statistics-information-field-desc"
1057
 
1058
  #: templates/forms/affiliation.php:205
1059
- msgid "promotion-method-desc-field-label"
1060
- msgstr "promotion-method-desc-field-label"
1061
 
1062
- #: templates/forms/affiliation.php:208
1063
- msgid "promotion-method-desc-field-desc"
1064
- msgstr "promotion-method-desc-field-desc"
1065
 
1066
- #: templates/forms/affiliation.php:214, templates/forms/resend-key.php:22, templates/forms/deactivation/form.php:80
1067
- msgid "cancel"
1068
- msgstr "cancel"
1069
 
1070
- #: templates/forms/affiliation.php:215, templates/forms/affiliation.php:371
1071
- msgid "apply-to-become-an-affiliate"
1072
- msgstr "apply-to-become-an-affiliate"
1073
 
1074
- #: templates/forms/affiliation.php:216
1075
- msgid "become-an-affiliate"
1076
- msgstr "become-an-affiliate"
1077
 
1078
- #: templates/forms/affiliation.php:272
1079
- msgid "email-address-is-required"
1080
- msgstr "email-address-is-required"
1081
 
1082
- #: templates/forms/affiliation.php:278
1083
- msgid "paypal-email-address-is-required"
1084
- msgstr "paypal-email-address-is-required"
1085
 
1086
- #: templates/forms/affiliation.php:288
1087
- msgid "domain-is-required"
1088
- msgstr "domain-is-required"
1089
 
1090
- #: templates/forms/affiliation.php:291, templates/forms/affiliation.php:305
1091
- msgid "invalid-domain"
1092
- msgstr "invalid-domain"
1093
 
1094
- #: templates/forms/affiliation.php:361
1095
- msgid "processing"
1096
- msgstr "processing"
1097
 
1098
  #: templates/forms/license-activation.php:20
1099
- msgid "activate-license-message"
1100
- msgstr "activate-license-message"
1101
 
1102
- #: templates/forms/license-activation.php:36
1103
- msgid "license-sync-disclaimer"
1104
- msgstr "license-sync-disclaimer"
1105
-
1106
- #: templates/forms/license-activation.php:41
1107
- msgid "agree-activate-license"
1108
- msgstr "agree-activate-license"
1109
 
1110
  #: templates/forms/optout.php:30
1111
- msgid "opt-out"
1112
- msgstr "opt-out"
 
1113
 
1114
  #: templates/forms/optout.php:31
1115
- msgid "opt-out-message-appreciation"
1116
- msgstr "opt-out-message-appreciation"
 
1117
 
1118
  #: templates/forms/optout.php:32
1119
- msgid "opt-out-message-usage-tracking"
1120
- msgstr "opt-out-message-usage-tracking"
1121
 
1122
- #: templates/forms/optout.php:34
1123
- msgid "opt-out-message-clicking-opt-out"
1124
- msgstr "opt-out-message-clicking-opt-out"
1125
 
1126
- #: templates/forms/resend-key.php:21
1127
- msgid "send-license-key"
1128
- msgstr "send-license-key"
1129
 
1130
- #: templates/forms/resend-key.php:24
1131
- msgid "reason-other"
1132
- msgstr "reason-other"
1133
 
1134
  #: templates/forms/resend-key.php:57
1135
- msgid "ask-for-upgrade-email-address"
1136
- msgstr "ask-for-upgrade-email-address"
1137
 
1138
- #: templates/forms/trial-start.php:21
1139
- msgid "start-trial-prompt-header"
1140
- msgstr "start-trial-prompt-header"
1141
 
1142
- #: templates/forms/trial-start.php:26
1143
- msgid "start-trial-prompt-message"
1144
- msgstr "start-trial-prompt-message"
1145
 
1146
- #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
1147
- msgid "view-full-size-x"
1148
- msgstr "view-full-size-x"
1149
 
1150
- #: templates/plugin-info/features.php:43
1151
- msgid "Support"
1152
- msgstr "Support"
1153
 
1154
  #: templates/plugin-info/features.php:56
1155
- msgid "unlimited-updates"
1156
- msgstr "unlimited-updates"
1157
-
1158
- #: templates/forms/deactivation/contact.php:16
1159
- msgid "contact-support-before-deactivation"
1160
- msgstr "contact-support-before-deactivation"
1161
 
1162
  #: templates/forms/deactivation/contact.php:19
1163
- msgid "contact-support"
1164
- msgstr "contact-support"
 
 
 
 
1165
 
1166
  #: templates/forms/deactivation/form.php:56
1167
- msgid "anonymous-feedback"
1168
- msgstr "anonymous-feedback"
 
 
 
 
 
 
 
 
 
 
 
 
1169
 
1170
- #: templates/forms/deactivation/form.php:243
1171
- msgid "deactivation-modal-button-submit"
1172
- msgstr "deactivation-modal-button-submit"
1173
 
1174
- #: templates/forms/deactivation/form.php:245, templates/forms/deactivation/form.php:387, templates/forms/deactivation/form.php:394
1175
- msgid "deactivate"
1176
- msgstr "deactivate"
1177
 
1178
- #: templates/forms/deactivation/form.php:246, templates/forms/deactivation/form.php:388, templates/forms/deactivation/form.php:395
1179
- msgid "activate-x"
1180
- msgstr "activate-x"
1181
 
1182
- #: templates/forms/deactivation/form.php:246, templates/forms/deactivation/form.php:388, templates/forms/deactivation/form.php:395
1183
- msgid "theme"
1184
- msgstr "theme"
1185
 
1186
- #: templates/forms/deactivation/form.php:264
1187
- msgid "ask-for-reason-message"
1188
- msgstr "ask-for-reason-message"
1189
 
1190
- #: templates/forms/deactivation/form.php:385
1191
- msgid "deactivation-modal-button-confirm"
1192
- msgstr "deactivation-modal-button-confirm"
1193
 
1194
- #: templates/forms/deactivation/form.php:392
1195
- msgid "skip-and-x"
1196
- msgstr "skip-and-x"
1197
 
1198
  #: templates/forms/deactivation/retry-skip.php:21
1199
- msgid "click-here-to-use-plugin-anonymously"
1200
- msgstr "click-here-to-use-plugin-anonymously"
1201
 
1202
  #: templates/forms/deactivation/retry-skip.php:23
1203
- msgid "dont-have-to-share-any-data"
1204
- msgstr "dont-have-to-share-any-data"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "MIME-Version: 1.0\n"
16
  "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: *.js\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
21
 
22
+ #: includes/class-freemius.php:959
23
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
24
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
25
 
26
+ #: includes/class-freemius.php:961
27
+ msgid "Error"
28
+ msgstr "Error"
29
 
30
+ #: includes/class-freemius.php:1277
31
+ msgid "I found a better %s"
32
+ msgstr "I found a better %s"
33
+
34
+ #: includes/class-freemius.php:1279
35
+ msgid "What's the %s's name?"
36
+ msgstr "What's the %s's name?"
37
+
38
+ #: includes/class-freemius.php:1285
39
+ msgid "It's a temporary %s. I'm just debugging an issue."
40
+ msgstr "It's a temporary %s. I'm just debugging an issue."
41
+
42
+ #: includes/class-freemius.php:1287
43
+ msgid "Deactivation"
44
+ msgstr "Deactivation"
45
+
46
+ #: includes/class-freemius.php:1288
47
+ msgid "Theme Switch"
48
+ msgstr "Theme Switch"
49
+
50
+ #: includes/class-freemius.php:1297, templates/forms/resend-key.php:24
51
+ msgid "Other"
52
+ msgstr "Other"
53
+
54
+ #: includes/class-freemius.php:1305
55
+ msgid "I no longer need the %s"
56
+ msgstr "I no longer need the %s"
57
+
58
+ #: includes/class-freemius.php:1312
59
+ msgid "I only needed the %s for a short period"
60
+ msgstr "I only needed the %s for a short period"
61
+
62
+ #: includes/class-freemius.php:1318
63
+ msgid "The %s broke my site"
64
+ msgstr "The %s broke my site"
65
+
66
+ #: includes/class-freemius.php:1325
67
+ msgid "The %s suddenly stopped working"
68
+ msgstr "The %s suddenly stopped working"
69
+
70
+ #: includes/class-freemius.php:1335
71
+ msgid "I can't pay for it anymore"
72
+ msgstr "I can't pay for it anymore"
73
+
74
+ #: includes/class-freemius.php:1337
75
+ msgid "What price would you feel comfortable paying?"
76
+ msgstr "What price would you feel comfortable paying?"
77
+
78
+ #: includes/class-freemius.php:1343
79
+ msgid "I don't like to share my information with you"
80
+ msgstr "I don't like to share my information with you"
81
+
82
+ #: includes/class-freemius.php:1364
83
+ msgid "The %s didn't work"
84
+ msgstr "The %s didn't work"
85
+
86
+ #: includes/class-freemius.php:1374
87
+ msgid "I couldn't understand how to make it work"
88
+ msgstr "I couldn't understand how to make it work"
89
+
90
+ #: includes/class-freemius.php:1382
91
+ msgid "The %s is great, but I need specific feature that you don't support"
92
+ msgstr "The %s is great, but I need specific feature that you don't support"
93
+
94
+ #: includes/class-freemius.php:1384
95
+ msgid "What feature?"
96
+ msgstr "What feature?"
97
+
98
+ #: includes/class-freemius.php:1388
99
+ msgid "The %s is not working"
100
+ msgstr "The %s is not working"
101
+
102
+ #: includes/class-freemius.php:1390
103
+ msgid "Kindly share what didn't work so we can fix it for future users..."
104
+ msgstr "Kindly share what didn't work so we can fix it for future users..."
105
+
106
+ #: includes/class-freemius.php:1394
107
+ msgid "It's not what I was looking for"
108
+ msgstr "It's not what I was looking for"
109
+
110
+ #: includes/class-freemius.php:1396
111
+ msgid "What you've been looking for?"
112
+ msgstr "What you've been looking for?"
113
+
114
+ #: includes/class-freemius.php:1400
115
+ msgid "The %s didn't work as expected"
116
+ msgstr "The %s didn't work as expected"
117
+
118
+ #: includes/class-freemius.php:1402
119
+ msgid "What did you expect?"
120
+ msgstr "What did you expect?"
121
+
122
+ #: includes/class-freemius.php:1938, templates/debug.php:20
123
+ msgid "Freemius Debug"
124
+ msgstr "Freemius Debug"
125
+
126
+ #: includes/class-freemius.php:2508
127
+ msgid "I don't know what is cURL or how to install it, help me!"
128
+ msgstr "I don't know what is cURL or how to install it, help me!"
129
+
130
+ #: includes/class-freemius.php:2510
131
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
132
+ msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
133
+
134
+ #: includes/class-freemius.php:2517
135
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
136
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
137
+
138
+ #: includes/class-freemius.php:2619
139
+ msgid "Yes - do your thing"
140
+ msgstr "Yes - do your thing"
141
+
142
+ #: includes/class-freemius.php:2624
143
+ msgid "No - just deactivate"
144
+ msgstr "No - just deactivate"
145
+
146
+ #: includes/class-freemius.php:2669, includes/class-freemius.php:3134, includes/class-freemius.php:3988, includes/class-freemius.php:7270, includes/class-freemius.php:9137, includes/class-freemius.php:9193, includes/class-freemius.php:9254, includes/class-freemius.php:11154, includes/class-freemius.php:11165, includes/class-freemius.php:11614, includes/class-freemius.php:11632, includes/class-freemius.php:11730, includes/class-freemius.php:12405, templates/add-ons.php:43
147
+ msgctxt "exclamation"
148
+ msgid "Oops"
149
+ msgstr "Oops"
150
+
151
+ #: includes/class-freemius.php:2736
152
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
153
+ msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
154
+
155
+ #: includes/class-freemius.php:3131
156
+ msgctxt "addonX cannot run without pluginY"
157
+ msgid "%s cannot run without %s."
158
+ msgstr "%s cannot run without %s."
159
+
160
+ #: includes/class-freemius.php:3132
161
+ msgctxt "addonX cannot run..."
162
+ msgid "%s cannot run without the plugin."
163
+ msgstr "%s cannot run without the plugin."
164
+
165
+ #: includes/class-freemius.php:3253, includes/class-freemius.php:3278, includes/class-freemius.php:11703
166
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
167
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
168
+
169
+ #: includes/class-freemius.php:3686
170
+ msgid "Premium %s version was successfully activated."
171
+ msgstr "Premium %s version was successfully activated."
172
+
173
+ #: includes/class-freemius.php:3688, includes/class-freemius.php:4913
174
+ msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
175
+ msgid "W00t"
176
+ msgstr "W00t"
177
+
178
+ #: includes/class-freemius.php:3703
179
+ msgid "You have a %s license."
180
+ msgstr "You have a %s license."
181
+
182
+ #: includes/class-freemius.php:3707, includes/class-freemius.php:8841, includes/class-freemius.php:8850, includes/class-freemius.php:11105, includes/class-freemius.php:11318, includes/class-freemius.php:11380, includes/class-freemius.php:11492
183
+ msgctxt "interjection expressing joy or exuberance"
184
+ msgid "Yee-haw"
185
+ msgstr "Yee-haw"
186
+
187
+ #: includes/class-freemius.php:3971
188
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
189
+ msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
190
+
191
+ #: includes/class-freemius.php:3975
192
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
193
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
194
+
195
+ #: includes/class-freemius.php:3984, templates/account.php:692, templates/add-ons.php:99
196
+ msgid "More information about %s"
197
+ msgstr "More information about %s"
198
+
199
+ #: includes/class-freemius.php:3985
200
+ msgid "Purchase License"
201
+ msgstr "Purchase License"
202
+
203
+ #: includes/class-freemius.php:4422, templates/connect.php:136
204
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
205
+ msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
206
+
207
+ #: includes/class-freemius.php:4426
208
+ msgid "start the trial"
209
+ msgstr "start the trial"
210
+
211
+ #: includes/class-freemius.php:4427, templates/connect.php:140
212
+ msgid "complete the install"
213
+ msgstr "complete the install"
214
+
215
+ #: includes/class-freemius.php:4506
216
+ msgid "You are just one step away - %s"
217
+ msgstr "You are just one step away - %s"
218
+
219
+ #: includes/class-freemius.php:4509
220
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
221
+ msgid "Complete \"%s\" Activation Now"
222
+ msgstr "Complete \"%s\" Activation Now"
223
+
224
+ #: includes/class-freemius.php:4523
225
+ msgid "We made a few tweaks to the %s, %s"
226
+ msgstr "We made a few tweaks to the %s, %s"
227
+
228
+ #: includes/class-freemius.php:4527
229
+ msgid "Opt in to make \"%s\" Better!"
230
+ msgstr "Opt in to make \"%s\" Better!"
231
+
232
+ #: includes/class-freemius.php:4912
233
+ msgid "The upgrade of %s was successfully completed."
234
+ msgstr "The upgrade of %s was successfully completed."
235
+
236
+ #: includes/class-freemius.php:5997, includes/class-fs-plugin-updater.php:358, includes/class-fs-plugin-updater.php:510, includes/class-fs-plugin-updater.php:516, templates/auto-installation.php:31
237
+ msgid "Add-On"
238
+ msgstr "Add-On"
239
+
240
+ #: includes/class-freemius.php:5999, templates/debug.php:303, templates/debug.php:413
241
+ msgid "Plugin"
242
+ msgstr "Plugin"
243
+
244
+ #: includes/class-freemius.php:6000, templates/debug.php:303, templates/debug.php:413, templates/forms/deactivation/form.php:64
245
+ msgid "Theme"
246
+ msgstr "Theme"
247
+
248
+ #: includes/class-freemius.php:7257
249
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
250
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
251
+
252
+ #: includes/class-freemius.php:7259
253
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
254
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
255
+
256
+ #: includes/class-freemius.php:7468
257
+ msgid "Account is pending activation."
258
+ msgstr "Account is pending activation."
259
+
260
+ #: includes/class-freemius.php:8825
261
+ msgctxt "pluginX activation was successfully..."
262
+ msgid "%s activation was successfully completed."
263
+ msgstr "%s activation was successfully completed."
264
+
265
+ #: includes/class-freemius.php:8837
266
+ msgid "Your account was successfully activated with the %s plan."
267
+ msgstr "Your account was successfully activated with the %s plan."
268
+
269
+ #: includes/class-freemius.php:8846, includes/class-freemius.php:11376
270
+ msgid "Your trial has been successfully started."
271
+ msgstr "Your trial has been successfully started."
272
+
273
+ #: includes/class-freemius.php:9135, includes/class-freemius.php:9191, includes/class-freemius.php:9252
274
+ msgid "Couldn't activate %s."
275
+ msgstr "Couldn't activate %s."
276
+
277
+ #: includes/class-freemius.php:9136, includes/class-freemius.php:9192, includes/class-freemius.php:9253
278
+ msgid "Please contact us with the following message:"
279
+ msgstr "Please contact us with the following message:"
280
+
281
+ #: includes/class-freemius.php:9511, includes/class-freemius.php:13334
282
+ msgid "Upgrade"
283
+ msgstr "Upgrade"
284
+
285
+ #: includes/class-freemius.php:9517
286
+ msgid "Start Trial"
287
+ msgstr "Start Trial"
288
+
289
+ #: includes/class-freemius.php:9519
290
+ msgid "Pricing"
291
+ msgstr "Pricing"
292
+
293
+ #: includes/class-freemius.php:9559, includes/class-freemius.php:9561
294
+ msgid "Affiliation"
295
+ msgstr "Affiliation"
296
+
297
+ #: includes/class-freemius.php:9581, includes/class-freemius.php:9583, templates/account.php:79, templates/debug.php:281
298
+ msgid "Account"
299
+ msgstr "Account"
300
+
301
+ #: includes/class-freemius.php:9594, includes/class-freemius.php:9596, includes/customizer/class-fs-customizer-support-section.php:60
302
+ msgid "Contact Us"
303
+ msgstr "Contact Us"
304
+
305
+ #: includes/class-freemius.php:9606, includes/class-freemius.php:9608, includes/class-freemius.php:13344, templates/account.php:68
306
+ msgid "Add-Ons"
307
+ msgstr "Add-Ons"
308
+
309
+ #: includes/class-freemius.php:9639, templates/pricing.php:92
310
+ msgctxt "noun"
311
+ msgid "Pricing"
312
+ msgstr "Pricing"
313
+
314
+ #: includes/class-freemius.php:9819, includes/customizer/class-fs-customizer-support-section.php:67
315
+ msgid "Support Forum"
316
+ msgstr "Support Forum"
317
+
318
+ #: includes/class-freemius.php:10559
319
+ msgid "Your email has been successfully verified - you are AWESOME!"
320
+ msgstr "Your email has been successfully verified - you are AWESOME!"
321
+
322
+ #: includes/class-freemius.php:10560
323
+ msgctxt "a positive response"
324
+ msgid "Right on"
325
+ msgstr "Right on"
326
+
327
+ #: includes/class-freemius.php:11096
328
+ msgid "Your %s Add-on plan was successfully upgraded."
329
+ msgstr "Your %s Add-on plan was successfully upgraded."
330
+
331
+ #: includes/class-freemius.php:11098
332
+ msgid "%s Add-on was successfully purchased."
333
+ msgstr "%s Add-on was successfully purchased."
334
+
335
+ #: includes/class-freemius.php:11101
336
+ msgid "Download the latest version"
337
+ msgstr "Download the latest version"
338
+
339
+ #: includes/class-freemius.php:11150
340
+ msgctxt "%1s - plugin title, %2s - API domain"
341
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
342
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
343
+
344
+ #: includes/class-freemius.php:11153, includes/class-freemius.php:11463, includes/class-freemius.php:11528
345
+ msgid "Error received from the server:"
346
+ msgstr "Error received from the server:"
347
+
348
+ #: includes/class-freemius.php:11164
349
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
350
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
351
+
352
+ #: includes/class-freemius.php:11281, includes/class-freemius.php:11468, includes/class-freemius.php:11511
353
+ msgctxt "something somebody says when they are thinking about what you have just said."
354
+ msgid "Hmm"
355
+ msgstr "Hmm"
356
+
357
+ #: includes/class-freemius.php:11294
358
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
359
+ msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
360
+
361
+ #: includes/class-freemius.php:11295, templates/account.php:70, templates/add-ons.php:130
362
+ msgctxt "trial period"
363
+ msgid "Trial"
364
+ msgstr "Trial"
365
+
366
+ #: includes/class-freemius.php:11300
367
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
368
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
369
+
370
+ #: includes/class-freemius.php:11304, includes/class-freemius.php:11358
371
+ msgid "Please contact us here"
372
+ msgstr "Please contact us here"
373
+
374
+ #: includes/class-freemius.php:11314
375
+ msgid "Your plan was successfully upgraded."
376
+ msgstr "Your plan was successfully upgraded."
377
+
378
+ #: includes/class-freemius.php:11331
379
+ msgid "Your plan was successfully changed to %s."
380
+ msgstr "Your plan was successfully changed to %s."
381
+
382
+ #: includes/class-freemius.php:11346
383
+ msgid "Your license has expired. You can still continue using the free %s forever."
384
+ msgstr "Your license has expired. You can still continue using the free %s forever."
385
+
386
+ #: includes/class-freemius.php:11354
387
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
388
+ msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
389
+
390
+ #: includes/class-freemius.php:11367
391
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
392
+ msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
393
+
394
+ #: includes/class-freemius.php:11389
395
+ msgid "Your trial has expired. You can still continue using all our free features."
396
+ msgstr "Your trial has expired. You can still continue using all our free features."
397
+
398
+ #: includes/class-freemius.php:11459
399
+ msgid "It looks like the license could not be activated."
400
+ msgstr "It looks like the license could not be activated."
401
+
402
+ #: includes/class-freemius.php:11489
403
+ msgid "Your license was successfully activated."
404
+ msgstr "Your license was successfully activated."
405
+
406
+ #: includes/class-freemius.php:11515
407
+ msgid "It looks like your site currently doesn't have an active license."
408
+ msgstr "It looks like your site currently doesn't have an active license."
409
+
410
+ #: includes/class-freemius.php:11527
411
+ msgid "It looks like the license deactivation failed."
412
+ msgstr "It looks like the license deactivation failed."
413
+
414
+ #: includes/class-freemius.php:11554
415
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
416
+ msgstr "Your license was successfully deactivated, you are back to the %s plan."
417
+
418
+ #: includes/class-freemius.php:11555
419
+ msgid "O.K"
420
+ msgstr "O.K"
421
+
422
+ #: includes/class-freemius.php:11603
423
+ msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
424
+ msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
425
+
426
+ #: includes/class-freemius.php:11613
427
+ msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
428
+ msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
429
+
430
+ #: includes/class-freemius.php:11637
431
+ msgid "You are already running the %s in a trial mode."
432
+ msgstr "You are already running the %s in a trial mode."
433
+
434
+ #: includes/class-freemius.php:11648
435
+ msgid "You already utilized a trial before."
436
+ msgstr "You already utilized a trial before."
437
+
438
+ #: includes/class-freemius.php:11662
439
+ msgid "Plan %s do not exist, therefore, can't start a trial."
440
+ msgstr "Plan %s do not exist, therefore, can't start a trial."
441
+
442
+ #: includes/class-freemius.php:11673
443
+ msgid "Plan %s does not support a trial period."
444
+ msgstr "Plan %s does not support a trial period."
445
+
446
+ #: includes/class-freemius.php:11684
447
+ msgid "None of the %s's plans supports a trial period."
448
+ msgstr "None of the %s's plans supports a trial period."
449
+
450
+ #: includes/class-freemius.php:11734
451
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
452
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
453
+
454
+ #: includes/class-freemius.php:11785
455
+ msgid "Your %s free trial was successfully cancelled."
456
+ msgstr "Your %s free trial was successfully cancelled."
457
+
458
+ #: includes/class-freemius.php:11793
459
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
460
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
461
+
462
+ #: includes/class-freemius.php:12032
463
+ msgid "Version %s was released."
464
+ msgstr "Version %s was released."
465
+
466
+ #: includes/class-freemius.php:12032
467
+ msgid "Please download %s."
468
+ msgstr "Please download %s."
469
+
470
+ #: includes/class-freemius.php:12039
471
+ msgid "the latest %s version here"
472
+ msgstr "the latest %s version here"
473
+
474
+ #: includes/class-freemius.php:12044
475
+ msgid "New"
476
+ msgstr "New"
477
+
478
+ #: includes/class-freemius.php:12049
479
+ msgid "Seems like you got the latest release."
480
+ msgstr "Seems like you got the latest release."
481
+
482
+ #: includes/class-freemius.php:12050
483
+ msgid "You are all good!"
484
+ msgstr "You are all good!"
485
+
486
+ #: includes/class-freemius.php:12316
487
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
488
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
489
+
490
+ #: includes/class-freemius.php:12491
491
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
492
+ msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
493
+
494
+ #: includes/class-freemius.php:12497
495
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
496
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
497
+
498
+ #: includes/class-freemius.php:12502
499
+ msgid "%s is the new owner of the account."
500
+ msgstr "%s is the new owner of the account."
501
+
502
+ #: includes/class-freemius.php:12504
503
+ msgctxt "as congratulations"
504
+ msgid "Congrats"
505
+ msgstr "Congrats"
506
+
507
+ #: includes/class-freemius.php:12524
508
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
509
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
510
+
511
+ #: includes/class-freemius.php:12525
512
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
513
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
514
+
515
+ #: includes/class-freemius.php:12532
516
+ msgid "Change Ownership"
517
+ msgstr "Change Ownership"
518
+
519
+ #: includes/class-freemius.php:12540
520
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
521
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
522
+
523
+ #: includes/class-freemius.php:12552
524
+ msgid "Please provide your full name."
525
+ msgstr "Please provide your full name."
526
+
527
+ #: includes/class-freemius.php:12557
528
+ msgid "Your name was successfully updated."
529
+ msgstr "Your name was successfully updated."
530
+
531
+ #: includes/class-freemius.php:12618
532
+ msgid "You have successfully updated your %s."
533
+ msgstr "You have successfully updated your %s."
534
+
535
+ #: includes/class-freemius.php:12756
536
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
537
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
538
+
539
+ #: includes/class-freemius.php:12757
540
+ msgctxt "advance notice of something that will need attention."
541
+ msgid "Heads up"
542
+ msgstr "Heads up"
543
+
544
+ #: includes/class-freemius.php:13075
545
+ msgid "Awesome"
546
+ msgstr "Awesome"
547
+
548
+ #: includes/class-freemius.php:13115
549
+ msgctxt "exclamation"
550
+ msgid "Hey"
551
+ msgstr "Hey"
552
+
553
+ #: includes/class-freemius.php:13115
554
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
555
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
556
+
557
+ #: includes/class-freemius.php:13123
558
+ msgid "No commitment for %s days - cancel anytime!"
559
+ msgstr "No commitment for %s days - cancel anytime!"
560
+
561
+ #: includes/class-freemius.php:13124
562
+ msgid "No credit card required"
563
+ msgstr "No credit card required"
564
+
565
+ #: includes/class-freemius.php:13131, templates/forms/trial-start.php:53
566
+ msgctxt "call to action"
567
+ msgid "Start free trial"
568
+ msgstr "Start free trial"
569
+
570
+ #: includes/class-freemius.php:13208
571
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
572
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
573
+
574
+ #: includes/class-freemius.php:13217
575
+ msgid "Learn more"
576
+ msgstr "Learn more"
577
+
578
+ #: includes/class-freemius.php:13373, templates/account.php:330, templates/connect.php:309, templates/forms/license-activation.php:24
579
+ msgid "Activate License"
580
+ msgstr "Activate License"
581
+
582
+ #: includes/class-freemius.php:13374, templates/account.php:393
583
+ msgid "Change License"
584
+ msgstr "Change License"
585
+
586
+ #: includes/class-freemius.php:13435
587
+ msgid "Opt Out"
588
+ msgstr "Opt Out"
589
+
590
+ #: includes/class-freemius.php:13437, includes/class-freemius.php:13442
591
+ msgid "Opt In"
592
+ msgstr "Opt In"
593
+
594
+ #: includes/class-freemius.php:13630
595
+ msgid "Please follow these steps to complete the upgrade"
596
+ msgstr "Please follow these steps to complete the upgrade"
597
+
598
+ #: includes/class-freemius.php:13633
599
+ msgid "Download the latest %s version"
600
+ msgstr "Download the latest %s version"
601
+
602
+ #: includes/class-freemius.php:13637
603
+ msgid "Upload and activate the downloaded version"
604
+ msgstr "Upload and activate the downloaded version"
605
+
606
+ #: includes/class-freemius.php:13639
607
+ msgid "How to upload and activate?"
608
+ msgstr "How to upload and activate?"
609
+
610
+ #: includes/class-freemius.php:13798
611
  msgid "Auto installation only works for opted-in users."
612
  msgstr "Auto installation only works for opted-in users."
613
 
614
+ #: includes/class-freemius.php:13808, includes/class-freemius.php:13841, includes/class-fs-plugin-updater.php:490, includes/class-fs-plugin-updater.php:504
615
  msgid "Invalid module ID."
616
  msgstr "Invalid module ID."
617
 
618
+ #: includes/class-freemius.php:13817, includes/class-fs-plugin-updater.php:524
619
  msgid "Premium version already active."
620
  msgstr "Premium version already active."
621
 
622
+ #: includes/class-freemius.php:13824
623
  msgid "You do not have a valid license to access the premium version."
624
  msgstr "You do not have a valid license to access the premium version."
625
 
626
+ #: includes/class-freemius.php:13831
627
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
628
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
629
 
630
+ #: includes/class-freemius.php:13849, includes/class-fs-plugin-updater.php:523
631
  msgid "Premium add-on version already installed."
632
  msgstr "Premium add-on version already installed."
633
 
634
+ #: includes/class-freemius.php:14194
635
  msgid "View paid features"
636
  msgstr "View paid features"
637
 
638
+ #: includes/class-fs-plugin-updater.php:131
639
+ msgid "%sRenew your license now%s to access version %s features and support."
640
+ msgstr "%sRenew your license now%s to access version %s features and support."
641
+
642
  #: includes/class-fs-plugin-updater.php:553
643
  msgid "Installing plugin: %s"
644
  msgstr "Installing plugin: %s"
645
 
646
+ #: includes/class-fs-plugin-updater.php:594
647
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
648
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
649
+
650
  #: includes/class-fs-plugin-updater.php:700
651
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
652
  msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
653
 
654
+ #: includes/fs-plugin-info-dialog.php:328, templates/account.php:696
655
+ msgctxt "verb"
656
+ msgid "Purchase"
657
+ msgstr "Purchase"
 
 
 
 
658
 
659
+ #: includes/fs-plugin-info-dialog.php:331
660
+ msgid "Start my free %s"
661
+ msgstr "Start my free %s"
662
 
663
+ #: includes/fs-plugin-info-dialog.php:355, templates/account.php:52
664
+ msgctxt "as download latest version"
665
+ msgid "Download Latest"
666
+ msgstr "Download Latest"
667
 
668
+ #: includes/fs-plugin-info-dialog.php:358, templates/account.php:676, templates/account.php:729, templates/auto-installation.php:110
669
+ msgid "Install Now"
670
+ msgstr "Install Now"
671
 
672
+ #: includes/fs-plugin-info-dialog.php:364, templates/account.php:384
673
+ msgid "Install Update Now"
674
+ msgstr "Install Update Now"
675
 
676
+ #: includes/fs-plugin-info-dialog.php:368
677
  msgid "Newer Version (%s) Installed"
678
  msgstr "Newer Version (%s) Installed"
679
 
680
+ #: includes/fs-plugin-info-dialog.php:371
681
  msgid "Latest Version Installed"
682
  msgstr "Latest Version Installed"
683
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  #: includes/fs-plugin-info-dialog.php:484
685
+ msgctxt "Plugin installer section title"
686
+ msgid "Description"
687
+ msgstr "Description"
688
 
689
  #: includes/fs-plugin-info-dialog.php:485
690
+ msgctxt "Plugin installer section title"
691
+ msgid "Installation"
692
+ msgstr "Installation"
693
 
694
  #: includes/fs-plugin-info-dialog.php:486
695
+ msgctxt "Plugin installer section title"
696
+ msgid "FAQ"
697
+ msgstr "FAQ"
698
+
699
+ #: includes/fs-plugin-info-dialog.php:487, templates/plugin-info/description.php:55
700
+ msgid "Screenshots"
701
+ msgstr "Screenshots"
702
+
703
+ #: includes/fs-plugin-info-dialog.php:488
704
+ msgctxt "Plugin installer section title"
705
+ msgid "Changelog"
706
+ msgstr "Changelog"
707
+
708
+ #: includes/fs-plugin-info-dialog.php:489
709
+ msgctxt "Plugin installer section title"
710
+ msgid "Reviews"
711
+ msgstr "Reviews"
712
+
713
+ #: includes/fs-plugin-info-dialog.php:490
714
+ msgctxt "Plugin installer section title"
715
+ msgid "Other Notes"
716
+ msgstr "Other Notes"
717
+
718
+ #: includes/fs-plugin-info-dialog.php:505
719
+ msgctxt "Plugin installer section title"
720
+ msgid "Features & Pricing"
721
+ msgstr "Features & Pricing"
722
+
723
+ #: includes/fs-plugin-info-dialog.php:515
724
  msgid "Plugin Install"
725
  msgstr "Plugin Install"
726
 
727
+ #: includes/fs-plugin-info-dialog.php:587
728
+ msgctxt "e.g. Professional Plan"
729
+ msgid "%s Plan"
730
+ msgstr "%s Plan"
 
 
 
731
 
732
+ #: includes/fs-plugin-info-dialog.php:612
733
+ msgctxt "e.g. the best product"
734
+ msgid "Best"
735
+ msgstr "Best"
736
 
737
+ #: includes/fs-plugin-info-dialog.php:618, includes/fs-plugin-info-dialog.php:638
738
+ msgctxt "as every month"
739
+ msgid "Monthly"
740
+ msgstr "Monthly"
741
 
742
  #: includes/fs-plugin-info-dialog.php:621
743
+ msgctxt "as once a year"
744
+ msgid "Annual"
745
+ msgstr "Annual"
746
 
747
+ #: includes/fs-plugin-info-dialog.php:624
748
+ msgid "Lifetime"
749
+ msgstr "Lifetime"
750
 
751
+ #: includes/fs-plugin-info-dialog.php:638, includes/fs-plugin-info-dialog.php:640, includes/fs-plugin-info-dialog.php:642
752
+ msgctxt "e.g. billed monthly"
753
+ msgid "Billed %s"
754
+ msgstr "Billed %s"
755
 
756
+ #: includes/fs-plugin-info-dialog.php:640
757
+ msgctxt "as once a year"
758
+ msgid "Annually"
759
+ msgstr "Annually"
760
 
761
+ #: includes/fs-plugin-info-dialog.php:642
762
+ msgctxt "as once a year"
763
+ msgid "Once"
764
+ msgstr "Once"
765
 
766
+ #: includes/fs-plugin-info-dialog.php:648
767
+ msgid "Single Site License"
768
+ msgstr "Single Site License"
769
 
770
+ #: includes/fs-plugin-info-dialog.php:650
771
+ msgid "Unlimited Licenses"
772
+ msgstr "Unlimited Licenses"
773
+
774
+ #: includes/fs-plugin-info-dialog.php:652
775
+ msgid "Up to %s Sites"
776
+ msgstr "Up to %s Sites"
777
+
778
+ #: includes/fs-plugin-info-dialog.php:662, templates/plugin-info/features.php:82
779
+ msgctxt "as monthly period"
780
  msgid "mo"
781
  msgstr "mo"
782
 
783
+ #: includes/fs-plugin-info-dialog.php:669, templates/plugin-info/features.php:80
784
+ msgctxt "as annual period"
785
  msgid "year"
786
  msgstr "year"
787
 
788
+ #: includes/fs-plugin-info-dialog.php:721
789
+ msgctxt "noun"
790
+ msgid "Price"
791
+ msgstr "Price"
792
 
793
+ #: includes/fs-plugin-info-dialog.php:767
794
  msgctxt "as a discount of $5 or 10%"
795
  msgid "Save %s"
796
  msgstr "Save %s"
797
 
798
+ #: includes/fs-plugin-info-dialog.php:777
799
+ msgid "No commitment for %s - cancel anytime"
800
+ msgstr "No commitment for %s - cancel anytime"
801
 
802
+ #: includes/fs-plugin-info-dialog.php:780
803
+ msgid "After your free %s, pay as little as %s"
804
+ msgstr "After your free %s, pay as little as %s"
805
 
806
+ #: includes/fs-plugin-info-dialog.php:791
807
+ msgid "Details"
808
+ msgstr "Details"
809
 
810
+ #: includes/fs-plugin-info-dialog.php:794, templates/account.php:59, templates/debug.php:183, templates/debug.php:220, templates/debug.php:354
811
+ msgctxt "product version"
812
+ msgid "Version"
813
+ msgstr "Version"
814
 
815
+ #: includes/fs-plugin-info-dialog.php:800
816
  msgctxt "as the plugin author"
817
  msgid "Author"
818
  msgstr "Author"
819
 
820
+ #: includes/fs-plugin-info-dialog.php:806
821
  msgid "Last Updated"
822
  msgstr "Last Updated"
823
 
824
+ #: includes/fs-plugin-info-dialog.php:810
825
+ msgctxt "x-ago"
826
+ msgid "%s ago"
827
+ msgstr "%s ago"
828
 
829
+ #: includes/fs-plugin-info-dialog.php:819
830
  msgid "Requires WordPress Version"
831
  msgstr "Requires WordPress Version"
832
 
833
+ #: includes/fs-plugin-info-dialog.php:819
834
+ msgid "%s or higher"
835
+ msgstr "%s or higher"
836
 
837
+ #: includes/fs-plugin-info-dialog.php:825
838
  msgid "Compatible up to"
839
  msgstr "Compatible up to"
840
 
841
+ #: includes/fs-plugin-info-dialog.php:832
842
  msgid "Downloaded"
843
  msgstr "Downloaded"
844
 
845
+ #: includes/fs-plugin-info-dialog.php:835
846
+ msgid "%s time"
847
+ msgstr "%s time"
848
+
849
+ #: includes/fs-plugin-info-dialog.php:837
850
+ msgid "%s times"
851
+ msgstr "%s times"
852
+
853
+ #: includes/fs-plugin-info-dialog.php:847
854
  msgid "WordPress.org Plugin Page"
855
  msgstr "WordPress.org Plugin Page"
856
 
857
+ #: includes/fs-plugin-info-dialog.php:854
858
  msgid "Plugin Homepage"
859
  msgstr "Plugin Homepage"
860
 
861
+ #: includes/fs-plugin-info-dialog.php:861, includes/fs-plugin-info-dialog.php:941
862
  msgid "Donate to this plugin"
863
  msgstr "Donate to this plugin"
864
 
865
+ #: includes/fs-plugin-info-dialog.php:867
866
  msgid "Average Rating"
867
  msgstr "Average Rating"
868
 
869
+ #: includes/fs-plugin-info-dialog.php:874
870
  msgid "based on %s"
871
  msgstr "based on %s"
872
 
873
+ #: includes/fs-plugin-info-dialog.php:878
874
+ msgid "%s rating"
875
+ msgstr "%s rating"
876
 
877
  #: includes/fs-plugin-info-dialog.php:880
878
+ msgid "%s ratings"
879
+ msgstr "%s ratings"
880
+
881
+ #: includes/fs-plugin-info-dialog.php:894
882
+ msgid "%s star"
883
+ msgstr "%s star"
884
+
885
+ #: includes/fs-plugin-info-dialog.php:896
886
+ msgid "%s stars"
887
+ msgstr "%s stars"
888
+
889
+ #: includes/fs-plugin-info-dialog.php:907
890
+ msgid "Click to see reviews that provided a rating of %s"
891
+ msgstr "Click to see reviews that provided a rating of %s"
892
+
893
+ #: includes/fs-plugin-info-dialog.php:920
894
  msgid "Contributors"
895
  msgstr "Contributors"
896
 
897
+ #: includes/fs-plugin-info-dialog.php:948, includes/fs-plugin-info-dialog.php:950
898
  msgid "Warning"
899
  msgstr "Warning"
900
 
901
+ #: includes/fs-plugin-info-dialog.php:948
902
  msgid "This plugin has not been tested with your current version of WordPress."
903
  msgstr "This plugin has not been tested with your current version of WordPress."
904
 
905
+ #: includes/fs-plugin-info-dialog.php:950
906
  msgid "This plugin has not been marked as compatible with your version of WordPress."
907
  msgstr "This plugin has not been marked as compatible with your version of WordPress."
908
 
909
+ #: includes/fs-plugin-info-dialog.php:969
910
+ msgid "Paid add-on must be deployed to Freemius."
911
+ msgstr "Paid add-on must be deployed to Freemius."
912
 
913
+ #: includes/fs-plugin-info-dialog.php:970
914
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
915
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
916
 
917
+ #: templates/account.php:53
918
+ msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
919
+ msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
920
 
921
+ #: templates/account.php:54
922
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
923
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
924
 
925
+ #: templates/account.php:55
926
+ msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
927
+ msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
 
 
 
 
928
 
929
+ #: templates/account.php:56
930
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
931
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
932
 
933
+ #. translators: %s: Plan title (e.g. "Professional")
934
+ #: templates/account.php:58
935
+ msgid "Activate %s Plan"
936
+ msgstr "Activate %s Plan"
937
 
938
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
939
+ #: templates/account.php:61
940
+ msgid "Auto renews in %s"
941
+ msgstr "Auto renews in %s"
942
 
943
+ #. translators: %s: Time period (e.g. Expires in "2 months")
944
+ #: templates/account.php:63
945
+ msgid "Expires in %s"
946
+ msgstr "Expires in %s"
947
+
948
+ #: templates/account.php:64
949
+ msgctxt "as synchronize license"
950
+ msgid "Sync License"
951
+ msgstr "Sync License"
952
+
953
+ #: templates/account.php:65
954
+ msgid "Cancel Trial"
955
+ msgstr "Cancel Trial"
956
+
957
+ #: templates/account.php:66
958
+ msgid "Change Plan"
959
+ msgstr "Change Plan"
960
+
961
+ #: templates/account.php:67
962
+ msgctxt "verb"
963
+ msgid "Upgrade"
964
+ msgstr "Upgrade"
965
+
966
+ #: templates/account.php:69
967
+ msgctxt "verb"
968
+ msgid "Downgrade"
969
+ msgstr "Downgrade"
970
+
971
+ #: templates/account.php:71, templates/add-ons.php:126, templates/plugin-info/features.php:72
972
+ msgid "Free"
973
+ msgstr "Free"
974
+
975
+ #: templates/account.php:72
976
+ msgid "Activate"
977
+ msgstr "Activate"
978
+
979
+ #: templates/account.php:73, templates/debug.php:311, includes/customizer/class-fs-customizer-upsell-control.php:106
980
+ msgctxt "as product pricing plan"
981
+ msgid "Plan"
982
+ msgstr "Plan"
983
+
984
+ #: templates/account.php:87
985
+ msgid "Free Trial"
986
+ msgstr "Free Trial"
987
+
988
+ #: templates/account.php:98
989
+ msgid "Account Details"
990
+ msgstr "Account Details"
991
+
992
+ #: templates/account.php:108
993
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
994
+ msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
995
 
996
+ #: templates/account.php:110
997
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
998
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
999
 
1000
+ #: templates/account.php:113
1001
+ msgid "Delete Account"
1002
+ msgstr "Delete Account"
1003
 
1004
+ #: templates/account.php:124
1005
+ msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
1006
+ msgstr "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
1007
 
1008
+ #: templates/account.php:125, templates/account.php:590
1009
+ msgid "Deactivate License"
1010
+ msgstr "Deactivate License"
1011
 
1012
+ #: templates/account.php:142
1013
+ msgid "Are you sure you want to proceed?"
1014
+ msgstr "Are you sure you want to proceed?"
1015
 
1016
+ #: templates/account.php:142
1017
+ msgid "Cancel Subscription"
1018
+ msgstr "Cancel Subscription"
1019
 
1020
+ #: templates/account.php:171
1021
+ msgctxt "as synchronize"
1022
+ msgid "Sync"
1023
+ msgstr "Sync"
1024
 
1025
+ #: templates/account.php:185, templates/debug.php:389
1026
+ msgid "Name"
1027
+ msgstr "Name"
1028
 
1029
+ #: templates/account.php:191, templates/debug.php:390
1030
+ msgid "Email"
1031
+ msgstr "Email"
1032
 
1033
+ #: templates/account.php:198, templates/debug.php:310, templates/debug.php:419
1034
+ msgid "User ID"
1035
+ msgstr "User ID"
1036
 
1037
+ #: templates/account.php:205
1038
+ msgid "Site ID"
1039
+ msgstr "Site ID"
1040
 
1041
+ #: templates/account.php:208
1042
+ msgid "No ID"
1043
+ msgstr "No ID"
1044
 
1045
+ #: templates/account.php:213, templates/debug.php:225, templates/debug.php:312, templates/debug.php:355, templates/debug.php:392
1046
+ msgid "Public Key"
1047
+ msgstr "Public Key"
1048
 
1049
+ #: templates/account.php:219, templates/debug.php:313, templates/debug.php:356, templates/debug.php:393
1050
+ msgid "Secret Key"
1051
+ msgstr "Secret Key"
1052
 
1053
+ #: templates/account.php:222
1054
+ msgctxt "as secret encryption key missing"
1055
+ msgid "No Secret"
1056
+ msgstr "No Secret"
1057
 
1058
+ #: templates/account.php:241
1059
+ msgid "Trial"
1060
+ msgstr "Trial"
1061
 
1062
+ #: templates/account.php:257, templates/debug.php:424
1063
+ msgid "License Key"
1064
+ msgstr "License Key"
1065
 
1066
+ #: templates/account.php:287
1067
+ msgid "not verified"
1068
+ msgstr "not verified"
1069
 
1070
+ #: templates/account.php:317
1071
+ msgid "Localhost"
1072
+ msgstr "Localhost"
1073
 
1074
+ #: templates/account.php:321
1075
+ msgctxt "as 5 licenses left"
1076
+ msgid "%s left"
1077
+ msgstr "%s left"
1078
 
1079
+ #: templates/account.php:322
1080
+ msgid "Last license"
1081
+ msgstr "Last license"
1082
 
1083
+ #: templates/account.php:352
1084
+ msgid "Premium version"
1085
+ msgstr "Premium version"
1086
 
1087
+ #: templates/account.php:354
1088
+ msgid "Free version"
1089
+ msgstr "Free version"
1090
 
1091
+ #: templates/account.php:366
1092
+ msgid "Verify Email"
1093
+ msgstr "Verify Email"
1094
 
1095
+ #: templates/account.php:377
1096
+ msgid "Download %s Version"
1097
+ msgstr "Download %s Version"
1098
 
1099
+ #: templates/account.php:391, templates/account.php:442
1100
+ msgctxt "verb"
1101
+ msgid "Show"
1102
+ msgstr "Show"
1103
 
1104
+ #: templates/account.php:405
1105
+ msgid "What is your %s?"
1106
+ msgstr "What is your %s?"
1107
 
1108
+ #: templates/account.php:413, templates/account/billing.php:27
1109
+ msgctxt "verb"
1110
+ msgid "Edit"
1111
+ msgstr "Edit"
1112
 
1113
+ #: templates/account.php:436
1114
+ msgctxt "verb"
1115
+ msgid "Hide"
1116
+ msgstr "Hide"
1117
 
1118
+ #: templates/account.php:472, templates/debug.php:218, templates/debug.php:308, templates/debug.php:351, templates/debug.php:388, templates/debug.php:417, templates/debug.php:496, templates/account/payments.php:35, templates/debug/logger.php:21
1119
+ msgid "ID"
1120
+ msgstr "ID"
1121
 
1122
+ #: templates/account.php:475
1123
+ msgctxt "as software license"
1124
+ msgid "License"
1125
+ msgstr "License"
1126
 
1127
+ #: templates/account.php:550
1128
+ msgid "Cancelled"
1129
+ msgstr "Cancelled"
1130
 
1131
+ #: templates/account.php:555
1132
+ msgid "Expired"
1133
+ msgstr "Expired"
1134
 
1135
+ #: templates/account.php:560
1136
+ msgid "No expiration"
1137
+ msgstr "No expiration"
1138
 
1139
+ #: templates/account.php:668, templates/account.php:724
1140
+ msgid "Activate this add-on"
1141
+ msgstr "Activate this add-on"
1142
 
1143
+ #: templates/account.php:745, templates/debug.php:336
1144
+ msgctxt "verb"
1145
+ msgid "Delete"
1146
+ msgstr "Delete"
1147
 
1148
  #: templates/add-ons.php:36
1149
+ msgid "Add Ons for %s"
1150
+ msgstr "Add Ons for %s"
 
 
 
 
1151
 
1152
  #: templates/add-ons.php:44
1153
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1154
+ msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1155
 
1156
  #: templates/add-ons.php:135
1157
  msgid "View details"
1158
  msgstr "View details"
1159
 
1160
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:73, templates/forms/resend-key.php:77
1161
+ msgctxt "as close a window"
1162
+ msgid "Dismiss"
1163
+ msgstr "Dismiss"
1164
 
1165
+ #: templates/auto-installation.php:44
1166
+ msgid "%s sec"
1167
+ msgstr "%s sec"
1168
 
1169
+ #: templates/auto-installation.php:82
 
 
 
 
1170
  msgid "Automatic Installation"
1171
  msgstr "Automatic Installation"
1172
 
1173
+ #: templates/auto-installation.php:92
1174
  msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1175
  msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1176
 
1177
+ #: templates/auto-installation.php:103
1178
  msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1179
  msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1180
 
1181
+ #: templates/auto-installation.php:108
1182
  msgid "Cancel Installation"
1183
  msgstr "Cancel Installation"
1184
 
1185
+ #: templates/checkout.php:168
1186
+ msgid "Checkout"
1187
+ msgstr "Checkout"
1188
+
1189
  #: templates/checkout.php:168
1190
  msgid "PCI compliant"
1191
  msgstr "PCI compliant"
1192
 
1193
+ #: templates/connect.php:128
1194
+ msgid "Allow & Continue"
1195
+ msgstr "Allow & Continue"
1196
+
1197
+ #: templates/connect.php:131
1198
+ msgid "Re-send activation email"
1199
+ msgstr "Re-send activation email"
1200
 
1201
  #: templates/connect.php:135
1202
+ msgid "Thanks %s!"
1203
+ msgstr "Thanks %s!"
1204
 
1205
+ #: templates/connect.php:143, templates/forms/license-activation.php:43
1206
+ msgid "Agree & Activate License"
1207
+ msgstr "Agree & Activate License"
1208
 
1209
+ #: templates/connect.php:147, templates/connect.php:170
1210
+ msgctxt "greeting"
1211
+ msgid "Hey %s,"
1212
+ msgstr "Hey %s,"
1213
 
1214
+ #: templates/connect.php:148
1215
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1216
+ msgstr "Thanks for purchasing %s! To get started, please enter your license key:"
1217
 
1218
+ #: templates/connect.php:154
1219
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1220
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1221
 
1222
+ #: templates/connect.php:159
1223
+ msgid "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1224
+ msgstr "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1225
 
1226
+ #: templates/connect.php:189, templates/forms/license-activation.php:46
1227
+ msgid "License key"
1228
+ msgstr "License key"
1229
 
1230
+ #: templates/connect.php:192, templates/forms/license-activation.php:19
1231
+ msgid "Can't find your license key?"
1232
+ msgstr "Can't find your license key?"
1233
 
1234
+ #: templates/connect.php:199, templates/forms/deactivation/retry-skip.php:20
1235
+ msgctxt "verb"
1236
+ msgid "Skip"
1237
+ msgstr "Skip"
1238
 
1239
+ #: templates/connect.php:228
1240
+ msgid "Your Profile Overview"
1241
+ msgstr "Your Profile Overview"
1242
 
1243
+ #: templates/connect.php:229
1244
+ msgid "Name and email address"
1245
+ msgstr "Name and email address"
1246
 
1247
+ #: templates/connect.php:234
1248
+ msgid "Your Site Overview"
1249
+ msgstr "Your Site Overview"
1250
 
1251
+ #: templates/connect.php:235
1252
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1253
+ msgstr "Site URL, WP version, PHP info, plugins & themes"
1254
 
1255
+ #: templates/connect.php:240
1256
+ msgid "Admin Notices"
1257
+ msgstr "Admin Notices"
1258
 
1259
+ #: templates/connect.php:241, templates/connect.php:263
1260
+ msgid "Updates, announcements, marketing, no spam"
1261
+ msgstr "Updates, announcements, marketing, no spam"
1262
+
1263
+ #: templates/connect.php:246
1264
+ msgid "Current %s Events"
1265
+ msgstr "Current %s Events"
1266
+
1267
+ #: templates/connect.php:247
1268
+ msgid "Activation, deactivation and uninstall"
1269
+ msgstr "Activation, deactivation and uninstall"
1270
+
1271
+ #: templates/connect.php:262
1272
+ msgid "Newsletter"
1273
+ msgstr "Newsletter"
1274
+
1275
+ #: templates/connect.php:279, templates/forms/license-activation.php:38
1276
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1277
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1278
+
1279
+ #: templates/connect.php:284
1280
+ msgid "What permissions are being granted?"
1281
+ msgstr "What permissions are being granted?"
1282
+
1283
+ #: templates/connect.php:305
1284
+ msgid "Don't have a license key?"
1285
+ msgstr "Don't have a license key?"
1286
+
1287
+ #: templates/connect.php:306
1288
+ msgid "Activate Free Version"
1289
+ msgstr "Activate Free Version"
1290
+
1291
+ #: templates/connect.php:308
1292
+ msgid "Have a license key?"
1293
+ msgstr "Have a license key?"
1294
 
1295
  #: templates/connect.php:316
1296
+ msgid "Privacy Policy"
1297
+ msgstr "Privacy Policy"
1298
 
1299
+ #: templates/connect.php:318
1300
+ msgid "Terms of Service"
1301
+ msgstr "Terms of Service"
1302
+
1303
+ #: templates/connect.php:436
1304
+ msgctxt "as in the process of sending an email"
1305
+ msgid "Sending email"
1306
+ msgstr "Sending email"
1307
+
1308
+ #: templates/connect.php:437
1309
+ msgctxt "as activating plugin"
1310
+ msgid "Activating"
1311
+ msgstr "Activating"
1312
+
1313
+ #: templates/contact.php:74
1314
+ msgid "Contact"
1315
+ msgstr "Contact"
1316
 
1317
  #: templates/debug.php:17
1318
+ msgctxt "as turned off"
1319
+ msgid "Off"
1320
+ msgstr "Off"
1321
 
1322
+ #: templates/debug.php:18
1323
+ msgctxt "as turned on"
1324
+ msgid "On"
1325
+ msgstr "On"
1326
 
1327
+ #: templates/debug.php:20
1328
+ msgid "SDK"
1329
+ msgstr "SDK"
1330
 
1331
+ #: templates/debug.php:24
1332
+ msgctxt "as code debugging"
1333
+ msgid "Debugging"
1334
+ msgstr "Debugging"
1335
 
1336
+ #: templates/debug.php:54, templates/debug.php:226, templates/debug.php:314
1337
+ msgid "Actions"
1338
+ msgstr "Actions"
1339
 
1340
+ #: templates/debug.php:64
1341
+ msgid "Are you sure you want to delete all Freemius data?"
1342
+ msgstr "Are you sure you want to delete all Freemius data?"
1343
 
1344
+ #: templates/debug.php:64
1345
+ msgid "Delete All Accounts"
1346
+ msgstr "Delete All Accounts"
1347
 
1348
+ #: templates/debug.php:71
1349
+ msgid "Clear API Cache"
1350
+ msgstr "Clear API Cache"
1351
 
1352
+ #: templates/debug.php:78
1353
+ msgid "Sync Data From Server"
1354
+ msgstr "Sync Data From Server"
1355
 
1356
+ #: templates/debug.php:82
1357
  msgid "Load DB Option"
1358
  msgstr "Load DB Option"
1359
 
1360
+ #: templates/debug.php:85
1361
  msgid "Set DB Option"
1362
  msgstr "Set DB Option"
1363
 
1364
+ #: templates/debug.php:162
1365
+ msgid "Key"
1366
+ msgstr "Key"
1367
 
1368
+ #: templates/debug.php:163
1369
+ msgid "Value"
1370
+ msgstr "Value"
1371
 
1372
+ #: templates/debug.php:179
1373
+ msgctxt "as software development kit versions"
1374
+ msgid "SDK Versions"
1375
+ msgstr "SDK Versions"
1376
 
1377
+ #: templates/debug.php:184
1378
+ msgid "SDK Path"
1379
+ msgstr "SDK Path"
1380
 
1381
+ #: templates/debug.php:185, templates/debug.php:224
1382
+ msgid "Module Path"
1383
+ msgstr "Module Path"
1384
 
1385
+ #: templates/debug.php:186
1386
+ msgid "Is Active"
1387
+ msgstr "Is Active"
1388
 
1389
+ #: templates/debug.php:214, templates/debug/plugins-themes-sync.php:35
1390
+ msgid "Plugins"
1391
+ msgstr "Plugins"
1392
 
1393
+ #: templates/debug.php:214, templates/debug/plugins-themes-sync.php:56
1394
+ msgid "Themes"
1395
+ msgstr "Themes"
1396
 
1397
+ #: templates/debug.php:219, templates/debug.php:309, templates/debug.php:353, templates/debug/scheduled-crons.php:81
1398
+ msgid "Slug"
1399
+ msgstr "Slug"
1400
 
1401
+ #: templates/debug.php:221, templates/debug.php:352
1402
+ msgid "Title"
1403
+ msgstr "Title"
1404
 
1405
+ #: templates/debug.php:222
1406
+ msgctxt "as application program interface"
1407
+ msgid "API"
1408
+ msgstr "API"
1409
 
1410
+ #: templates/debug.php:223
1411
+ msgid "Freemius State"
1412
+ msgstr "Freemius State"
1413
 
1414
+ #: templates/debug.php:255
1415
+ msgctxt "as connection was successful"
1416
+ msgid "Connected"
1417
+ msgstr "Connected"
1418
 
1419
+ #: templates/debug.php:256
1420
+ msgctxt "as connection blocked"
1421
+ msgid "Blocked"
1422
+ msgstr "Blocked"
1423
+
1424
+ #: templates/debug.php:277
1425
  msgid "Simulate Trial"
1426
  msgstr "Simulate Trial"
1427
 
1428
+ #: templates/debug.php:302
1429
+ msgid "%s Installs"
1430
+ msgstr "%s Installs"
1431
+
1432
+ #: templates/debug.php:304
1433
+ msgctxt "like websites"
1434
+ msgid "Sites"
1435
+ msgstr "Sites"
1436
 
1437
+ #: templates/debug.php:347
1438
+ msgid "Add Ons of module %s"
1439
+ msgstr "Add Ons of module %s"
1440
 
1441
+ #: templates/debug.php:384
1442
+ msgid "Users"
1443
+ msgstr "Users"
1444
 
1445
+ #: templates/debug.php:391
1446
+ msgid "Verified"
1447
+ msgstr "Verified"
1448
 
1449
+ #: templates/debug.php:413
1450
+ msgid "%s Licenses"
1451
+ msgstr "%s Licenses"
1452
 
1453
+ #: templates/debug.php:418
1454
+ msgid "Plugin ID"
1455
+ msgstr "Plugin ID"
1456
 
1457
+ #: templates/debug.php:420
1458
+ msgid "Plan ID"
1459
+ msgstr "Plan ID"
1460
 
1461
+ #: templates/debug.php:421
1462
+ msgid "Quota"
1463
+ msgstr "Quota"
1464
 
1465
+ #: templates/debug.php:422
1466
+ msgid "Activated"
1467
+ msgstr "Activated"
1468
 
1469
+ #: templates/debug.php:423
1470
+ msgid "Blocking"
1471
+ msgstr "Blocking"
1472
 
1473
+ #: templates/debug.php:425
1474
+ msgctxt "as expiration date"
1475
+ msgid "Expiration"
1476
+ msgstr "Expiration"
1477
 
1478
+ #: templates/debug.php:454
1479
+ msgid "Debug Log"
1480
+ msgstr "Debug Log"
1481
 
1482
+ #: templates/debug.php:458
1483
+ msgid "All Types"
1484
+ msgstr "All Types"
1485
 
1486
+ #: templates/debug.php:465
1487
+ msgid "All Requests"
1488
+ msgstr "All Requests"
1489
 
1490
+ #: templates/debug.php:470, templates/debug.php:499, templates/debug/logger.php:25
1491
+ msgid "File"
1492
+ msgstr "File"
1493
 
1494
+ #: templates/debug.php:471, templates/debug.php:497, templates/debug/logger.php:23
1495
+ msgid "Function"
1496
+ msgstr "Function"
1497
 
1498
+ #: templates/debug.php:472
1499
+ msgid "Process ID"
1500
+ msgstr "Process ID"
1501
 
1502
+ #: templates/debug.php:473
1503
+ msgid "Logger"
1504
+ msgstr "Logger"
1505
 
1506
+ #: templates/debug.php:474, templates/debug.php:498, templates/debug/logger.php:24
1507
+ msgid "Message"
1508
+ msgstr "Message"
1509
 
1510
+ #: templates/debug.php:476
1511
+ msgid "Filter"
1512
+ msgstr "Filter"
1513
 
1514
+ #: templates/debug.php:484
1515
+ msgid "Download"
1516
+ msgstr "Download"
1517
 
1518
+ #: templates/debug.php:495, templates/debug/logger.php:22
1519
+ msgid "Type"
1520
+ msgstr "Type"
1521
 
1522
+ #: templates/debug.php:500, templates/debug/logger.php:26
1523
+ msgid "Timestamp"
1524
+ msgstr "Timestamp"
1525
 
1526
+ #: templates/secure-https-header.php:28
1527
+ msgid "Secure HTTPS %s page, running from an external domain"
1528
+ msgstr "Secure HTTPS %s page, running from an external domain"
1529
 
1530
+ #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
1531
+ msgid "Support"
1532
+ msgstr "Support"
1533
 
1534
+ #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
1535
+ msgctxt "milliseconds"
1536
  msgid "ms"
1537
  msgstr "ms"
1538
 
1544
  msgid "Requests"
1545
  msgstr "Requests"
1546
 
1547
+ #: templates/account/billing.php:28
1548
+ msgctxt "verb"
1549
+ msgid "Update"
1550
+ msgstr "Update"
1551
+
1552
+ #: templates/account/billing.php:39
1553
+ msgid "Billing"
1554
+ msgstr "Billing"
1555
 
1556
+ #: templates/account/billing.php:44, templates/account/billing.php:44
1557
  msgid "Business name"
1558
  msgstr "Business name"
1559
 
1560
+ #: templates/account/billing.php:45, templates/account/billing.php:45
1561
  msgid "Tax / VAT ID"
1562
  msgstr "Tax / VAT ID"
1563
 
1564
+ #: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49
1565
  msgid "Address Line %d"
1566
  msgstr "Address Line %d"
1567
 
1568
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1569
  msgid "City"
1570
  msgstr "City"
1571
 
1572
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1573
  msgid "Town"
1574
  msgstr "Town"
1575
 
1576
+ #: templates/account/billing.php:53, templates/account/billing.php:53
1577
  msgid "ZIP / Postal Code"
1578
  msgstr "ZIP / Postal Code"
1579
 
1580
+ #: templates/account/billing.php:308
1581
  msgid "Country"
1582
  msgstr "Country"
1583
 
1584
+ #: templates/account/billing.php:310
1585
  msgid "Select Country"
1586
  msgstr "Select Country"
1587
 
1588
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1589
  msgid "State"
1590
  msgstr "State"
1591
 
1592
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1593
  msgid "Province"
1594
  msgstr "Province"
1595
 
 
 
 
 
 
 
 
 
1596
  #: templates/account/payments.php:29
1597
+ msgid "Payments"
1598
+ msgstr "Payments"
1599
 
1600
  #: templates/account/payments.php:36
1601
+ msgid "Date"
1602
+ msgstr "Date"
1603
 
1604
  #: templates/account/payments.php:37
1605
+ msgid "Amount"
1606
+ msgstr "Amount"
1607
 
1608
  #: templates/account/payments.php:38, templates/account/payments.php:50
1609
+ msgid "Invoice"
1610
+ msgstr "Invoice"
1611
 
1612
+ #: templates/debug/api-calls.php:56
1613
  msgid "API"
1614
  msgstr "API"
1615
 
1616
+ #: templates/debug/api-calls.php:68
1617
  msgid "Method"
1618
  msgstr "Method"
1619
 
1620
+ #: templates/debug/api-calls.php:69
1621
  msgid "Code"
1622
  msgstr "Code"
1623
 
1624
+ #: templates/debug/api-calls.php:70
1625
  msgid "Length"
1626
  msgstr "Length"
1627
 
1628
+ #: templates/debug/api-calls.php:71
1629
+ msgctxt "as file/folder path"
1630
  msgid "Path"
1631
  msgstr "Path"
1632
 
1633
+ #: templates/debug/api-calls.php:73
1634
  msgid "Body"
1635
  msgstr "Body"
1636
 
1637
+ #: templates/debug/api-calls.php:75
1638
  msgid "Result"
1639
  msgstr "Result"
1640
 
1641
+ #: templates/debug/api-calls.php:76
1642
  msgid "Start"
1643
  msgstr "Start"
1644
 
1645
+ #: templates/debug/api-calls.php:77
1646
  msgid "End"
1647
  msgstr "End"
1648
 
1650
  msgid "Log"
1651
  msgstr "Log"
1652
 
1653
+ #. translators: %s: time period (e.g. In "2 hours")
1654
+ #: templates/debug/plugins-themes-sync.php:18, templates/debug/scheduled-crons.php:92
1655
+ msgid "In %s"
1656
+ msgstr "In %s"
 
 
 
 
 
 
 
1657
 
1658
+ #. translators: %s: time period (e.g. "2 hours" ago)
1659
+ #: templates/debug/plugins-themes-sync.php:20, templates/debug/scheduled-crons.php:94
1660
+ msgid "%s ago"
1661
+ msgstr "%s ago"
1662
 
1663
+ #: templates/debug/plugins-themes-sync.php:21, templates/debug/scheduled-crons.php:75
1664
+ msgctxt "seconds"
1665
  msgid "sec"
1666
  msgstr "sec"
1667
 
1668
+ #: templates/debug/plugins-themes-sync.php:23
1669
+ msgid "Plugins & Themes Sync"
1670
+ msgstr "Plugins & Themes Sync"
 
 
 
 
1671
 
1672
+ #: templates/debug/plugins-themes-sync.php:28
1673
+ msgid "Total"
1674
+ msgstr "Total"
1675
 
1676
+ #: templates/debug/plugins-themes-sync.php:29, templates/debug/scheduled-crons.php:85
1677
+ msgid "Last"
1678
+ msgstr "Last"
1679
 
1680
+ #: templates/debug/scheduled-crons.php:77
1681
+ msgid "Scheduled Crons"
1682
+ msgstr "Scheduled Crons"
1683
 
1684
  #: templates/debug/scheduled-crons.php:82
1685
+ msgid "Module"
1686
+ msgstr "Module"
1687
+
1688
+ #: templates/debug/scheduled-crons.php:83
1689
+ msgid "Module Type"
1690
+ msgstr "Module Type"
1691
 
1692
  #: templates/debug/scheduled-crons.php:84
1693
+ msgid "Cron Type"
1694
+ msgstr "Cron Type"
1695
+
1696
+ #: templates/debug/scheduled-crons.php:86
1697
  msgid "Next"
1698
  msgstr "Next"
1699
 
1700
  #: templates/forms/affiliation.php:81
1701
+ msgid "Non-expiring"
1702
+ msgstr "Non-expiring"
1703
+
1704
+ #: templates/forms/affiliation.php:84
1705
+ msgid "Apply to become an affiliate"
1706
+ msgstr "Apply to become an affiliate"
1707
+
1708
+ #: templates/forms/affiliation.php:103
1709
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1710
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1711
 
1712
+ #: templates/forms/affiliation.php:114
1713
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
1714
+ msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
1715
 
1716
+ #: templates/forms/affiliation.php:117
1717
+ msgid "Your affiliation account was temporarily suspended."
1718
+ msgstr "Your affiliation account was temporarily suspended."
1719
 
1720
+ #: templates/forms/affiliation.php:120
1721
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1722
+ msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1723
 
1724
+ #: templates/forms/affiliation.php:123
1725
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1726
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1727
 
1728
  #: templates/forms/affiliation.php:136
1729
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
1730
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
1731
 
1732
+ #: templates/forms/affiliation.php:137
1733
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1734
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1735
 
1736
  #: templates/forms/affiliation.php:140
1737
+ msgid "Program Summary"
1738
+ msgstr "Program Summary"
1739
 
1740
+ #: templates/forms/affiliation.php:142
1741
+ msgid "%s commission when a customer purchases a new license."
1742
+ msgstr "%s commission when a customer purchases a new license."
1743
 
1744
+ #: templates/forms/affiliation.php:144
1745
+ msgid "Get commission for automated subscription renewals."
1746
+ msgstr "Get commission for automated subscription renewals."
1747
 
1748
+ #: templates/forms/affiliation.php:147
1749
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
1750
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
 
 
 
 
1751
 
1752
  #: templates/forms/affiliation.php:150
1753
+ msgid "Unlimited commissions."
1754
+ msgstr "Unlimited commissions."
1755
+
1756
+ #: templates/forms/affiliation.php:152
1757
+ msgid "%s minimum payout amount."
1758
+ msgstr "%s minimum payout amount."
1759
 
1760
  #: templates/forms/affiliation.php:153
1761
+ msgid "Payouts are in USD and processed monthly via PayPal."
1762
+ msgstr "Payouts are in USD and processed monthly via PayPal."
1763
 
1764
+ #: templates/forms/affiliation.php:154
1765
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1766
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1767
 
1768
+ #: templates/forms/affiliation.php:157
1769
+ msgid "Affiliate"
1770
+ msgstr "Affiliate"
1771
+
1772
+ #: templates/forms/affiliation.php:160, templates/forms/resend-key.php:23
1773
+ msgid "Email address"
1774
+ msgstr "Email address"
1775
 
1776
  #: templates/forms/affiliation.php:164
1777
+ msgid "Full name"
1778
+ msgstr "Full name"
1779
 
1780
  #: templates/forms/affiliation.php:168
1781
+ msgid "PayPal account email address"
1782
+ msgstr "PayPal account email address"
 
 
 
 
1783
 
1784
  #: templates/forms/affiliation.php:172
1785
+ msgid "Where are you going to promote the %s?"
1786
+ msgstr "Where are you going to promote the %s?"
1787
+
1788
+ #: templates/forms/affiliation.php:174
1789
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
1790
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
1791
 
1792
  #: templates/forms/affiliation.php:176
1793
+ msgid "Add another domain"
1794
+ msgstr "Add another domain"
1795
 
1796
+ #: templates/forms/affiliation.php:180
1797
+ msgid "Extra Domains"
1798
+ msgstr "Extra Domains"
1799
 
1800
+ #: templates/forms/affiliation.php:181
1801
+ msgid "Extra domains where you will be marketing the product from."
1802
+ msgstr "Extra domains where you will be marketing the product from."
1803
 
1804
+ #: templates/forms/affiliation.php:191
1805
+ msgid "Promotion methods"
1806
+ msgstr "Promotion methods"
1807
 
1808
  #: templates/forms/affiliation.php:194
1809
+ msgid "Social media (Facebook, Twitter, etc.)"
1810
+ msgstr "Social media (Facebook, Twitter, etc.)"
1811
 
1812
  #: templates/forms/affiliation.php:198
1813
+ msgid "Mobile apps"
1814
+ msgstr "Mobile apps"
1815
 
1816
+ #: templates/forms/affiliation.php:202
1817
+ msgid "Website, email, and social media statistics (optional)"
1818
+ msgstr "Website, email, and social media statistics (optional)"
1819
 
1820
  #: templates/forms/affiliation.php:205
1821
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1822
+ msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1823
 
1824
+ #: templates/forms/affiliation.php:209
1825
+ msgid "How will you promote us?"
1826
+ msgstr "How will you promote us?"
1827
 
1828
+ #: templates/forms/affiliation.php:212
1829
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
1830
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
1831
 
1832
+ #: templates/forms/affiliation.php:218, templates/forms/resend-key.php:22
1833
+ msgid "Cancel"
1834
+ msgstr "Cancel"
1835
 
1836
+ #: templates/forms/affiliation.php:220
1837
+ msgid "Become an affiliate"
1838
+ msgstr "Become an affiliate"
1839
 
1840
+ #: templates/forms/affiliation.php:275
1841
+ msgid "Email address is required."
1842
+ msgstr "Email address is required."
1843
 
1844
+ #: templates/forms/affiliation.php:281
1845
+ msgid "PayPal email address is required."
1846
+ msgstr "PayPal email address is required."
1847
 
1848
+ #: templates/forms/affiliation.php:291
1849
+ msgid "Domain is required."
1850
+ msgstr "Domain is required."
1851
 
1852
+ #: templates/forms/affiliation.php:294, templates/forms/affiliation.php:308
1853
+ msgid "Invalid domain"
1854
+ msgstr "Invalid domain"
1855
 
1856
+ #: templates/forms/affiliation.php:364
1857
+ msgid "Processing"
1858
+ msgstr "Processing"
1859
 
1860
  #: templates/forms/license-activation.php:20
1861
+ msgid "Please enter the license key that you received in the email right after the purchase:"
1862
+ msgstr "Please enter the license key that you received in the email right after the purchase:"
1863
 
1864
+ #: templates/forms/license-activation.php:25
1865
+ msgid "Update License"
1866
+ msgstr "Update License"
 
 
 
 
1867
 
1868
  #: templates/forms/optout.php:30
1869
+ msgctxt "verb"
1870
+ msgid "Opt Out"
1871
+ msgstr "Opt Out"
1872
 
1873
  #: templates/forms/optout.php:31
1874
+ msgctxt "verb"
1875
+ msgid "Opt In"
1876
+ msgstr "Opt In"
1877
 
1878
  #: templates/forms/optout.php:32
1879
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
1880
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
1881
 
1882
+ #: templates/forms/optout.php:33
1883
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
1884
+ msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
1885
 
1886
+ #: templates/forms/optout.php:35
1887
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
1888
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
1889
 
1890
+ #: templates/forms/resend-key.php:21
1891
+ msgid "Send License Key"
1892
+ msgstr "Send License Key"
1893
 
1894
  #: templates/forms/resend-key.php:57
1895
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
1896
+ msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
1897
 
1898
+ #: templates/forms/trial-start.php:22
1899
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1900
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1901
 
1902
+ #: templates/forms/trial-start.php:28
1903
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1904
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1905
 
1906
+ #: templates/js/style-premium-theme.php:37
1907
+ msgid "Premium"
1908
+ msgstr "Premium"
1909
 
1910
+ #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
1911
+ msgid "Click to view full-size screenshot %d"
1912
+ msgstr "Click to view full-size screenshot %d"
1913
 
1914
  #: templates/plugin-info/features.php:56
1915
+ msgid "Unlimited Updates"
1916
+ msgstr "Unlimited Updates"
 
 
 
 
1917
 
1918
  #: templates/forms/deactivation/contact.php:19
1919
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1920
+ msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
1921
+
1922
+ #: templates/forms/deactivation/contact.php:22
1923
+ msgid "Contact Support"
1924
+ msgstr "Contact Support"
1925
 
1926
  #: templates/forms/deactivation/form.php:56
1927
+ msgid "Anonymous feedback"
1928
+ msgstr "Anonymous feedback"
1929
+
1930
+ #: templates/forms/deactivation/form.php:63
1931
+ msgid "Deactivate"
1932
+ msgstr "Deactivate"
1933
+
1934
+ #: templates/forms/deactivation/form.php:65
1935
+ msgid "Activate %s"
1936
+ msgstr "Activate %s"
1937
+
1938
+ #: templates/forms/deactivation/form.php:76
1939
+ msgid "Quick feedback"
1940
+ msgstr "Quick feedback"
1941
 
1942
+ #: templates/forms/deactivation/form.php:80
1943
+ msgid "If you have a moment, please let us know why you are %s"
1944
+ msgstr "If you have a moment, please let us know why you are %s"
1945
 
1946
+ #: templates/forms/deactivation/form.php:80
1947
+ msgid "deactivating"
1948
+ msgstr "deactivating"
1949
 
1950
+ #: templates/forms/deactivation/form.php:80
1951
+ msgid "switching"
1952
+ msgstr "switching"
1953
 
1954
+ #: templates/forms/deactivation/form.php:248
1955
+ msgid "Submit & %s"
1956
+ msgstr "Submit & %s"
1957
 
1958
+ #: templates/forms/deactivation/form.php:269
1959
+ msgid "Kindly tell us the reason so we can improve."
1960
+ msgstr "Kindly tell us the reason so we can improve."
1961
 
1962
+ #: templates/forms/deactivation/form.php:390
1963
+ msgid "Yes - %s"
1964
+ msgstr "Yes - %s"
1965
 
1966
+ #: templates/forms/deactivation/form.php:397
1967
+ msgid "Skip & %s"
1968
+ msgstr "Skip & %s"
1969
 
1970
  #: templates/forms/deactivation/retry-skip.php:21
1971
+ msgid "Click here to use the plugin anonymously"
1972
+ msgstr "Click here to use the plugin anonymously"
1973
 
1974
  #: templates/forms/deactivation/retry-skip.php:23
1975
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
1976
+ msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
freemius/languages/freemius-es_ES.mo CHANGED
Binary file
freemius/languages/freemius-es_ES.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
- "PO-Revision-Date: 2017-11-10 09:37+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: es_ES\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
@@ -21,646 +21,646 @@ msgstr ""
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
- #: includes/class-freemius.php:903
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
 
28
- #: includes/class-freemius.php:905
29
  msgid "Error"
30
  msgstr "Error"
31
 
32
- #: includes/class-freemius.php:1155
33
  msgid "I found a better %s"
34
  msgstr "He encontrado un mejor %s"
35
 
36
- #: includes/class-freemius.php:1157
37
  msgid "What's the %s's name?"
38
  msgstr "¿Cuál es el nombre de %s?"
39
 
40
- #: includes/class-freemius.php:1163
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Es temporal %s. Sólo estoy depurando un problema."
43
 
44
- #: includes/class-freemius.php:1165
45
  msgid "Deactivation"
46
  msgstr "Desactivación"
47
 
48
- #: includes/class-freemius.php:1166
49
  msgid "Theme Switch"
50
  msgstr "Cambiar Tema"
51
 
52
- #: includes/class-freemius.php1175, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Otra"
55
 
56
- #: includes/class-freemius.php:1183
57
  msgid "I no longer need the %s"
58
  msgstr "Ya no necesito el %s"
59
 
60
- #: includes/class-freemius.php:1190
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Sólo necesitaba la %s por un corto período"
63
 
64
- #: includes/class-freemius.php:1196
65
  msgid "The %s broke my site"
66
  msgstr "%s ha roto mi sitio"
67
 
68
- #: includes/class-freemius.php:1203
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s de repente ha dejado de funcionar"
71
 
72
- #: includes/class-freemius.php:1213
73
  msgid "I can't pay for it anymore"
74
  msgstr "No puedo pagarlo durante más tiempo"
75
 
76
- #: includes/class-freemius.php:1215
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "¿Qué precio te sentirías cómodo pagando?"
79
 
80
- #: includes/class-freemius.php:1221
81
  msgid "I don't like to share my information with you"
82
  msgstr "No me gusta compartir mi información contigo"
83
 
84
- #: includes/class-freemius.php:1242
85
  msgid "The %s didn't work"
86
  msgstr "%s no funcionaba"
87
 
88
- #: includes/class-freemius.php:1252
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "No entiendo cómo hacerlo funcionar"
91
 
92
- #: includes/class-freemius.php:1260
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s es genial, pero necesito una característica que no soportáis"
95
 
96
- #: includes/class-freemius.php:1262
97
  msgid "What feature?"
98
  msgstr "¿Qué característica?"
99
 
100
- #: includes/class-freemius.php:1266
101
  msgid "The %s is not working"
102
  msgstr "%s no funciona"
103
 
104
- #: includes/class-freemius.php:1268
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
 
108
- #: includes/class-freemius.php:1272
109
  msgid "It's not what I was looking for"
110
  msgstr "No es lo que estaba buscando"
111
 
112
- #: includes/class-freemius.php:1274
113
  msgid "What you've been looking for?"
114
  msgstr "¿Que has estado buscando?"
115
 
116
- #: includes/class-freemius.php:1278
117
  msgid "The %s didn't work as expected"
118
  msgstr "%s no funciona como esperaba"
119
 
120
- #: includes/class-freemius.php:1280
121
  msgid "What did you expect?"
122
  msgstr "¿Qué esperas?"
123
 
124
- #: includes/class-freemius.php1816, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Debug Freemius"
127
 
128
- #: includes/class-freemius.php:2379
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
 
132
- #: includes/class-freemius.php:2381
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
 
136
- #: includes/class-freemius.php:2388
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
 
140
- #: includes/class-freemius.php:2490
141
  msgid "Yes - do your thing"
142
  msgstr "Vamos, adelante"
143
 
144
- #: includes/class-freemius.php:2495
145
  msgid "No - just deactivate"
146
  msgstr "No - sólo desactivar"
147
 
148
- #: includes/class-freemius.php2540, includes/class-freemius.php3005,
149
- #: includes/class-freemius.php3859, includes/class-freemius.php7141,
150
- #: includes/class-freemius.php9000, includes/class-freemius.php9056,
151
- #: includes/class-freemius.php9117, includes/class-freemius.php11014,
152
- #: includes/class-freemius.php11025, includes/class-freemius.php11474,
153
- #: includes/class-freemius.php11492, includes/class-freemius.php11590,
154
- #: includes/class-freemius.php12265, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
- #: includes/class-freemius.php:2607
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
 
163
- #: includes/class-freemius.php:3002
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s no se puede ejecutar sin %s."
167
 
168
- #: includes/class-freemius.php:3003
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s no se puede ejecutar sin el plugin."
172
 
173
- #: includes/class-freemius.php3124, includes/class-freemius.php3149,
174
- #: includes/class-freemius.php:11563
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
 
178
- #: includes/class-freemius.php:3557
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La versión Premium %s ha sido activada con éxito."
181
 
182
- #: includes/class-freemius.php3559, includes/class-freemius.php:4784
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "W00t"
186
 
187
- #: includes/class-freemius.php:3574
188
  msgid "You have a %s license."
189
  msgstr "Tienes una licencia %s."
190
 
191
- #: includes/class-freemius.php3578, includes/class-freemius.php8704,
192
- #: includes/class-freemius.php8713, includes/class-freemius.php10965,
193
- #: includes/class-freemius.php11178, includes/class-freemius.php11240,
194
- #: includes/class-freemius.php:11352
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Vaya"
198
 
199
- #: includes/class-freemius.php:3842
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
 
203
- #: includes/class-freemius.php:3846
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
 
207
- #: includes/class-freemius.php3855, templates/account.php692,
208
  #: templates/add-ons.php:99
209
  msgid "More information about %s"
210
  msgstr "Más información sobre %s"
211
 
212
- #: includes/class-freemius.php:3856
213
  msgid "Purchase License"
214
  msgstr "Comprar Licencia"
215
 
216
- #: includes/class-freemius.php4293, templates/connect.php:136
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
 
220
- #: includes/class-freemius.php:4297
221
  msgid "start the trial"
222
  msgstr "comenzar el período de prueba"
223
 
224
- #: includes/class-freemius.php4298, templates/connect.php:140
225
  msgid "complete the install"
226
  msgstr "completar la instalación"
227
 
228
- #: includes/class-freemius.php:4377
229
  msgid "You are just one step away - %s"
230
  msgstr "Estás a sólo un paso - %s"
231
 
232
- #: includes/class-freemius.php:4380
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Completar la Activación de \"%s\" Ahora"
236
 
237
- #: includes/class-freemius.php:4394
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
 
241
- #: includes/class-freemius.php:4398
242
  msgid "Opt in to make \"%s\" Better!"
243
  msgstr "Opt in to make \"%s\" Better!"
244
 
245
- #: includes/class-freemius.php:4783
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La actualización de %s se completó con éxito."
248
 
249
- #: includes/class-freemius.php5868, includes/class-fs-plugin-updater.php358,
250
  #: includes/class-fs-plugin-updater.php510,
251
  #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
252
  msgid "Add-On"
253
  msgstr "Complemento"
254
 
255
- #: includes/class-freemius.php5870, templates/debug.php303,
256
  #: templates/debug.php:413
257
  msgid "Plugin"
258
  msgstr "Plugin"
259
 
260
- #: includes/class-freemius.php5871, templates/debug.php303,
261
  #: templates/debug.php413, templates/forms/deactivation/form.php:64
262
  msgid "Theme"
263
  msgstr "Tema"
264
 
265
- #: includes/class-freemius.php:7128
266
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
267
  msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
268
 
269
- #: includes/class-freemius.php:7130
270
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
271
  msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
272
 
273
- #: includes/class-freemius.php:7339
274
  msgid "Account is pending activation."
275
  msgstr "Account is pending activation."
276
 
277
- #: includes/class-freemius.php:8688
278
  msgctxt "pluginX activation was successfully..."
279
  msgid "%s activation was successfully completed."
280
  msgstr "%s activación se completó con éxito."
281
 
282
- #: includes/class-freemius.php:8700
283
  msgid "Your account was successfully activated with the %s plan."
284
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
285
 
286
- #: includes/class-freemius.php8709, includes/class-freemius.php:11236
287
  msgid "Your trial has been successfully started."
288
  msgstr "Tu versión de prueba se ha iniciado con éxito."
289
 
290
- #: includes/class-freemius.php8998, includes/class-freemius.php9054,
291
- #: includes/class-freemius.php:9115
292
  msgid "Couldn't activate %s."
293
  msgstr "No se puede activar %s."
294
 
295
- #: includes/class-freemius.php8999, includes/class-freemius.php9055,
296
- #: includes/class-freemius.php:9116
297
  msgid "Please contact us with the following message:"
298
  msgstr "Por favor contáctanos con el siguiente mensaje:"
299
 
300
- #: includes/class-freemius.php9374, includes/class-freemius.php:13194
301
  msgid "Upgrade"
302
  msgstr "Actualizar"
303
 
304
- #: includes/class-freemius.php:9380
305
  msgid "Start Trial"
306
  msgstr "Comenzar el Período de Prueba"
307
 
308
- #: includes/class-freemius.php:9382
309
  msgid "Pricing"
310
  msgstr "Precio"
311
 
312
- #: includes/class-freemius.php9422, includes/class-freemius.php:9424
313
  msgid "Affiliation"
314
  msgstr "Affiliation"
315
 
316
- #: includes/class-freemius.php9444, includes/class-freemius.php9446,
317
  #: templates/account.php79, templates/debug.php:281
318
  msgid "Account"
319
  msgstr "Cuenta"
320
 
321
- #: includes/class-freemius.php9457, includes/class-freemius.php9459,
322
  #: includes/customizer/class-fs-customizer-support-section.php:60
323
  msgid "Contact Us"
324
  msgstr "Contáctanos"
325
 
326
- #: includes/class-freemius.php9469, includes/class-freemius.php9471,
327
- #: includes/class-freemius.php13204, templates/account.php:68
328
  msgid "Add-Ons"
329
  msgstr "Complementos"
330
 
331
- #: includes/class-freemius.php9502, templates/pricing.php:92
332
  msgctxt "noun"
333
  msgid "Pricing"
334
  msgstr "Precio"
335
 
336
- #: includes/class-freemius.php9682,
337
  #: includes/customizer/class-fs-customizer-support-section.php:67
338
  msgid "Support Forum"
339
  msgstr "Foro de Soporte"
340
 
341
- #: includes/class-freemius.php:10422
342
  msgid "Your email has been successfully verified - you are AWESOME!"
343
  msgstr "Tu email ha sido verificado correctamente - eres IMPRESIONANTE!"
344
 
345
- #: includes/class-freemius.php:10423
346
  msgctxt "a positive response"
347
  msgid "Right on"
348
  msgstr "Bien hecho"
349
 
350
- #: includes/class-freemius.php:10956
351
  msgid "Your %s Add-on plan was successfully upgraded."
352
  msgstr "Tu complemento %s del plan se actualizó con éxito."
353
 
354
- #: includes/class-freemius.php:10958
355
  msgid "%s Add-on was successfully purchased."
356
  msgstr "El complemento %s ha sido comprado correctamente."
357
 
358
- #: includes/class-freemius.php:10961
359
  msgid "Download the latest version"
360
  msgstr "Descargar la última versión"
361
 
362
- #: includes/class-freemius.php:11010
363
  msgctxt "%1s - plugin title, %2s - API domain"
364
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
365
  msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
366
 
367
- #: includes/class-freemius.php11013, includes/class-freemius.php11323,
368
- #: includes/class-freemius.php:11388
369
  msgid "Error received from the server:"
370
  msgstr "Error recibido del servidor:"
371
 
372
- #: includes/class-freemius.php:11024
373
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
374
  msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu Clave Pública, Clave Secreta & ID de Usuario e inténtelo de nuevo."
375
 
376
- #: includes/class-freemius.php11141, includes/class-freemius.php11328,
377
- #: includes/class-freemius.php:11371
378
  msgctxt ""
379
  msgid "Hmm"
380
  msgstr "Hmm"
381
 
382
- #: includes/class-freemius.php:11154
383
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
  msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
385
 
386
- #: includes/class-freemius.php11155, templates/account.php70,
387
  #: templates/add-ons.php:130
388
  msgctxt "trial period"
389
  msgid "Trial"
390
  msgstr "Período de Prueba Gratuito"
391
 
392
- #: includes/class-freemius.php:11160
393
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
395
 
396
- #: includes/class-freemius.php11164, includes/class-freemius.php:11218
397
  msgid "Please contact us here"
398
  msgstr "Contacta aquí con nosotros"
399
 
400
- #: includes/class-freemius.php:11174
401
  msgid "Your plan was successfully upgraded."
402
  msgstr "Tu plan se actualizó con éxito."
403
 
404
- #: includes/class-freemius.php:11191
405
  msgid "Your plan was successfully changed to %s."
406
  msgstr "Tu plan se cambió correctamente a %s."
407
 
408
- #: includes/class-freemius.php:11206
409
  msgid "Your license has expired. You can still continue using the free %s forever."
410
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
411
 
412
- #: includes/class-freemius.php:11214
413
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
414
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
415
 
416
- #: includes/class-freemius.php:11227
417
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
418
  msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
419
 
420
- #: includes/class-freemius.php:11249
421
  msgid "Your trial has expired. You can still continue using all our free features."
422
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
423
 
424
- #: includes/class-freemius.php:11319
425
  msgid "It looks like the license could not be activated."
426
  msgstr "Parece que la licencia no se pudo activar."
427
 
428
- #: includes/class-freemius.php:11349
429
  msgid "Your license was successfully activated."
430
  msgstr "Tu licencia fue activada correctamente."
431
 
432
- #: includes/class-freemius.php:11375
433
  msgid "It looks like your site currently doesn't have an active license."
434
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
435
 
436
- #: includes/class-freemius.php:11387
437
  msgid "It looks like the license deactivation failed."
438
  msgstr "Parece que la desactivación de licencia ha fallado."
439
 
440
- #: includes/class-freemius.php:11414
441
  msgid "Your license was successfully deactivated, you are back to the %s plan."
442
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
443
 
444
- #: includes/class-freemius.php:11415
445
  msgid "O.K"
446
  msgstr "O.K"
447
 
448
- #: includes/class-freemius.php:11463
449
  msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
450
  msgstr "Tu plan fue degradado con éxito. Tu licencia %s plan caducará en %s."
451
 
452
- #: includes/class-freemius.php:11473
453
  msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
454
  msgstr "Parece que estamos teniendo algún problema temporal con tu degradación de plan. Vuelve a intentarlo en unos minutos."
455
 
456
- #: includes/class-freemius.php:11497
457
  msgid "You are already running the %s in a trial mode."
458
  msgstr "Estás ejecutando %s en modo de prueba."
459
 
460
- #: includes/class-freemius.php:11508
461
  msgid "You already utilized a trial before."
462
  msgstr "Ya utilizaste un período de prueba antes."
463
 
464
- #: includes/class-freemius.php:11522
465
  msgid "Plan %s do not exist, therefore, can't start a trial."
466
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
467
 
468
- #: includes/class-freemius.php:11533
469
  msgid "Plan %s does not support a trial period."
470
  msgstr "El plan %s no admite un período de prueba."
471
 
472
- #: includes/class-freemius.php:11544
473
  msgid "None of the %s's plans supports a trial period."
474
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
475
 
476
- #: includes/class-freemius.php:11594
477
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
478
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
479
 
480
- #: includes/class-freemius.php:11645
481
  msgid "Your %s free trial was successfully cancelled."
482
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
483
 
484
- #: includes/class-freemius.php:11653
485
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
486
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
487
 
488
- #: includes/class-freemius.php:11892
489
  msgid "Version %s was released."
490
  msgstr "La versión %s se ha lanzado."
491
 
492
- #: includes/class-freemius.php:11892
493
  msgid "Please download %s."
494
  msgstr "Por favor descarga %s."
495
 
496
- #: includes/class-freemius.php:11899
497
  msgid "the latest %s version here"
498
  msgstr "la última versión %s aquí"
499
 
500
- #: includes/class-freemius.php:11904
501
  msgid "New"
502
  msgstr "Nuevo"
503
 
504
- #: includes/class-freemius.php:11909
505
  msgid "Seems like you got the latest release."
506
  msgstr "Parece que tienes la última versión."
507
 
508
- #: includes/class-freemius.php:11910
509
  msgid "You are all good!"
510
  msgstr "¡Está todo listo!"
511
 
512
- #: includes/class-freemius.php:12176
513
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
514
  msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
515
 
516
- #: includes/class-freemius.php:12351
517
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
518
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
519
 
520
- #: includes/class-freemius.php:12357
521
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
522
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
523
 
524
- #: includes/class-freemius.php:12362
525
  msgid "%s is the new owner of the account."
526
  msgstr "%s es el nuevo dueño de la cuenta."
527
 
528
- #: includes/class-freemius.php:12364
529
  msgctxt "as congratulations"
530
  msgid "Congrats"
531
  msgstr "Felicidades"
532
 
533
- #: includes/class-freemius.php:12384
534
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
535
  msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
536
 
537
- #: includes/class-freemius.php:12385
538
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
539
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de Cambio de Titularidad."
540
 
541
- #: includes/class-freemius.php:12392
542
  msgid "Change Ownership"
543
  msgstr "Cambiar Propietario"
544
 
545
- #: includes/class-freemius.php:12400
546
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
547
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
548
 
549
- #: includes/class-freemius.php:12412
550
  msgid "Please provide your full name."
551
  msgstr "Por favor, dinos tu nombre completo."
552
 
553
- #: includes/class-freemius.php:12417
554
  msgid "Your name was successfully updated."
555
  msgstr "Tu nombre fue actualizado correctamente."
556
 
557
- #: includes/class-freemius.php:12478
558
  msgid "You have successfully updated your %s."
559
  msgstr "Has actualizado correctamente tu %s."
560
 
561
- #: includes/class-freemius.php:12616
562
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
563
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
564
 
565
- #: includes/class-freemius.php:12617
566
  msgctxt "advance notice of something that will need attention."
567
  msgid "Heads up"
568
  msgstr "Atención"
569
 
570
- #: includes/class-freemius.php:12935
571
  msgid "Awesome"
572
  msgstr "Increíble"
573
 
574
- #: includes/class-freemius.php:12975
575
  msgctxt "exclamation"
576
  msgid "Hey"
577
  msgstr "Hey"
578
 
579
- #: includes/class-freemius.php:12975
580
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
581
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
582
 
583
- #: includes/class-freemius.php:12983
584
  msgid "No commitment for %s days - cancel anytime!"
585
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
586
 
587
- #: includes/class-freemius.php:12984
588
  msgid "No credit card required"
589
  msgstr "No se necesita tarjeta de crédito"
590
 
591
- #: includes/class-freemius.php12991, templates/forms/trial-start.php:53
592
  msgctxt "call to action"
593
  msgid "Start free trial"
594
  msgstr "Comenzar el período de prueba gratuito"
595
 
596
- #: includes/class-freemius.php:13068
597
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
598
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
599
 
600
- #: includes/class-freemius.php:13077
601
  msgid "Learn more"
602
  msgstr "Learn more"
603
 
604
- #: includes/class-freemius.php13233, templates/account.php330,
605
  #: templates/connect.php309, templates/forms/license-activation.php:24
606
  msgid "Activate License"
607
  msgstr "Activar Licencia"
608
 
609
- #: includes/class-freemius.php13234, templates/account.php:393
610
  msgid "Change License"
611
  msgstr "Cambiar Licencia"
612
 
613
- #: includes/class-freemius.php:13295
614
  msgid "Opt Out"
615
  msgstr "Darse de baja"
616
 
617
- #: includes/class-freemius.php13297, includes/class-freemius.php:13302
618
  msgid "Opt In"
619
  msgstr "Inscribirse"
620
 
621
- #: includes/class-freemius.php:13490
622
  msgid "Please follow these steps to complete the upgrade"
623
  msgstr "Por favor, sigue estos pasos para completar la actualización"
624
 
625
- #: includes/class-freemius.php:13493
626
  msgid "Download the latest %s version"
627
  msgstr "Descargar la última versión %s"
628
 
629
- #: includes/class-freemius.php:13497
630
  msgid "Upload and activate the downloaded version"
631
  msgstr "Cargar y activar la versión descargada"
632
 
633
- #: includes/class-freemius.php:13499
634
  msgid "How to upload and activate?"
635
  msgstr "¿Cómo subirlo y activarlo?"
636
 
637
- #: includes/class-freemius.php:13658
638
  msgid "Auto installation only works for opted-in users."
639
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
640
 
641
- #: includes/class-freemius.php13668, includes/class-freemius.php13701,
642
  #: includes/class-fs-plugin-updater.php490,
643
  #: includes/class-fs-plugin-updater.php:504
644
  msgid "Invalid module ID."
645
  msgstr "Id de Módulo no válido."
646
 
647
- #: includes/class-freemius.php13677, includes/class-fs-plugin-updater.php:524
648
  msgid "Premium version already active."
649
  msgstr "Versión Premium ya activa."
650
 
651
- #: includes/class-freemius.php:13684
652
  msgid "You do not have a valid license to access the premium version."
653
  msgstr "No tienes una licencia válida para acceder a la versión premium."
654
 
655
- #: includes/class-freemius.php:13691
656
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
657
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
658
 
659
- #: includes/class-freemius.php13709, includes/class-fs-plugin-updater.php:523
660
  msgid "Premium add-on version already installed."
661
  msgstr "Versión del complemento Premium ya instalada."
662
 
663
- #: includes/class-freemius.php:14054
664
  msgid "View paid features"
665
  msgstr "Ver las funciones de pago"
666
 
@@ -813,7 +813,7 @@ msgstr "Hasta %s Sitios"
813
  #: templates/plugin-info/features.php:82
814
  msgctxt "as monthly period"
815
  msgid "mo"
816
- msgstr "men"
817
 
818
  #: includes/fs-plugin-info-dialog.php669,
819
  #: templates/plugin-info/features.php:80
@@ -852,7 +852,7 @@ msgstr "Versión"
852
  #: includes/fs-plugin-info-dialog.php:800
853
  msgctxt "as the plugin author"
854
  msgid "Author"
855
- msgstr "Author"
856
 
857
  #: includes/fs-plugin-info-dialog.php:806
858
  msgid "Last Updated"
@@ -865,7 +865,7 @@ msgstr "hace %s"
865
 
866
  #: includes/fs-plugin-info-dialog.php:819
867
  msgid "Requires WordPress Version"
868
- msgstr "Requires WordPress Version"
869
 
870
  #: includes/fs-plugin-info-dialog.php:819
871
  msgid "%s or higher"
@@ -873,11 +873,11 @@ msgstr "%s o mayor"
873
 
874
  #: includes/fs-plugin-info-dialog.php:825
875
  msgid "Compatible up to"
876
- msgstr "Compatible up to"
877
 
878
  #: includes/fs-plugin-info-dialog.php:832
879
  msgid "Downloaded"
880
- msgstr "Downloaded"
881
 
882
  #: includes/fs-plugin-info-dialog.php:835
883
  msgid "%s time"
@@ -935,7 +935,7 @@ msgstr "Colaboradores"
935
  #: includes/fs-plugin-info-dialog.php948,
936
  #: includes/fs-plugin-info-dialog.php:950
937
  msgid "Warning"
938
- msgstr "Warning"
939
 
940
  #: includes/fs-plugin-info-dialog.php:948
941
  msgid "This plugin has not been tested with your current version of WordPress."
@@ -1104,7 +1104,7 @@ msgstr "Período de Prueba Gratuito"
1104
 
1105
  #: templates/account.php257, templates/debug.php:424
1106
  msgid "License Key"
1107
- msgstr "License Key"
1108
 
1109
  #: templates/account.php:287
1110
  msgid "not verified"
@@ -1402,11 +1402,11 @@ msgstr "Sincronizar Datos Desde el Servidor"
1402
 
1403
  #: templates/debug.php:82
1404
  msgid "Load DB Option"
1405
- msgstr "Load DB Option"
1406
 
1407
  #: templates/debug.php:85
1408
  msgid "Set DB Option"
1409
- msgstr "Set DB Option"
1410
 
1411
  #: templates/debug.php:162
1412
  msgid "Key"
@@ -1471,7 +1471,7 @@ msgstr "Bloqueado"
1471
 
1472
  #: templates/debug.php:277
1473
  msgid "Simulate Trial"
1474
- msgstr "Simulate Trial"
1475
 
1476
  #: templates/debug.php:302
1477
  msgid "%s Installs"
@@ -1591,11 +1591,11 @@ msgstr "ms"
1591
 
1592
  #: includes/debug/debug-bar-start.php:41
1593
  msgid "Freemius API"
1594
- msgstr "Freemius API"
1595
 
1596
  #: includes/debug/debug-bar-start.php:42
1597
  msgid "Requests"
1598
- msgstr "Requests"
1599
 
1600
  #: templates/account/billing.php:28
1601
  msgctxt "verb"
@@ -1669,15 +1669,15 @@ msgstr "API"
1669
 
1670
  #: templates/debug/api-calls.php:68
1671
  msgid "Method"
1672
- msgstr "Method"
1673
 
1674
  #: templates/debug/api-calls.php:69
1675
  msgid "Code"
1676
- msgstr "Code"
1677
 
1678
  #: templates/debug/api-calls.php:70
1679
  msgid "Length"
1680
- msgstr "Length"
1681
 
1682
  #: templates/debug/api-calls.php:71
1683
  msgctxt "as file/folder path"
@@ -1686,19 +1686,19 @@ msgstr "Ruta"
1686
 
1687
  #: templates/debug/api-calls.php:73
1688
  msgid "Body"
1689
- msgstr "Body"
1690
 
1691
  #: templates/debug/api-calls.php:75
1692
  msgid "Result"
1693
- msgstr "Result"
1694
 
1695
  #: templates/debug/api-calls.php:76
1696
  msgid "Start"
1697
- msgstr "Start"
1698
 
1699
  #: templates/debug/api-calls.php:77
1700
  msgid "End"
1701
- msgstr "End"
1702
 
1703
  #: templates/debug/logger.php:15
1704
  msgid "Log"
@@ -1733,7 +1733,7 @@ msgstr "Total"
1733
  #: templates/debug/plugins-themes-sync.php29,
1734
  #: templates/debug/scheduled-crons.php:85
1735
  msgid "Last"
1736
- msgstr "Last"
1737
 
1738
  #: templates/debug/scheduled-crons.php:77
1739
  msgid "Scheduled Crons"
@@ -1753,7 +1753,7 @@ msgstr "Tipo de Cron"
1753
 
1754
  #: templates/debug/scheduled-crons.php:86
1755
  msgid "Next"
1756
- msgstr "Next"
1757
 
1758
  #: templates/forms/affiliation.php:81
1759
  msgid "Non-expiring"
7
  "Project-Id-Version: WordPress SDK\n"
8
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
9
  "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2017-12-04 15:57+0000\n"
11
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
  "Language: es_ES\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
  "X-Poedit-SourceCharset: UTF-8\n"
23
 
24
+ #: includes/class-freemius.php:959
25
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
26
  msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
27
 
28
+ #: includes/class-freemius.php:961
29
  msgid "Error"
30
  msgstr "Error"
31
 
32
+ #: includes/class-freemius.php:1277
33
  msgid "I found a better %s"
34
  msgstr "He encontrado un mejor %s"
35
 
36
+ #: includes/class-freemius.php:1279
37
  msgid "What's the %s's name?"
38
  msgstr "¿Cuál es el nombre de %s?"
39
 
40
+ #: includes/class-freemius.php:1285
41
  msgid "It's a temporary %s. I'm just debugging an issue."
42
  msgstr "Es temporal %s. Sólo estoy depurando un problema."
43
 
44
+ #: includes/class-freemius.php:1287
45
  msgid "Deactivation"
46
  msgstr "Desactivación"
47
 
48
+ #: includes/class-freemius.php:1288
49
  msgid "Theme Switch"
50
  msgstr "Cambiar Tema"
51
 
52
+ #: includes/class-freemius.php1297, templates/forms/resend-key.php:24
53
  msgid "Other"
54
  msgstr "Otra"
55
 
56
+ #: includes/class-freemius.php:1305
57
  msgid "I no longer need the %s"
58
  msgstr "Ya no necesito el %s"
59
 
60
+ #: includes/class-freemius.php:1312
61
  msgid "I only needed the %s for a short period"
62
  msgstr "Sólo necesitaba la %s por un corto período"
63
 
64
+ #: includes/class-freemius.php:1318
65
  msgid "The %s broke my site"
66
  msgstr "%s ha roto mi sitio"
67
 
68
+ #: includes/class-freemius.php:1325
69
  msgid "The %s suddenly stopped working"
70
  msgstr "%s de repente ha dejado de funcionar"
71
 
72
+ #: includes/class-freemius.php:1335
73
  msgid "I can't pay for it anymore"
74
  msgstr "No puedo pagarlo durante más tiempo"
75
 
76
+ #: includes/class-freemius.php:1337
77
  msgid "What price would you feel comfortable paying?"
78
  msgstr "¿Qué precio te sentirías cómodo pagando?"
79
 
80
+ #: includes/class-freemius.php:1343
81
  msgid "I don't like to share my information with you"
82
  msgstr "No me gusta compartir mi información contigo"
83
 
84
+ #: includes/class-freemius.php:1364
85
  msgid "The %s didn't work"
86
  msgstr "%s no funcionaba"
87
 
88
+ #: includes/class-freemius.php:1374
89
  msgid "I couldn't understand how to make it work"
90
  msgstr "No entiendo cómo hacerlo funcionar"
91
 
92
+ #: includes/class-freemius.php:1382
93
  msgid "The %s is great, but I need specific feature that you don't support"
94
  msgstr "%s es genial, pero necesito una característica que no soportáis"
95
 
96
+ #: includes/class-freemius.php:1384
97
  msgid "What feature?"
98
  msgstr "¿Qué característica?"
99
 
100
+ #: includes/class-freemius.php:1388
101
  msgid "The %s is not working"
102
  msgstr "%s no funciona"
103
 
104
+ #: includes/class-freemius.php:1390
105
  msgid "Kindly share what didn't work so we can fix it for future users..."
106
  msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
107
 
108
+ #: includes/class-freemius.php:1394
109
  msgid "It's not what I was looking for"
110
  msgstr "No es lo que estaba buscando"
111
 
112
+ #: includes/class-freemius.php:1396
113
  msgid "What you've been looking for?"
114
  msgstr "¿Que has estado buscando?"
115
 
116
+ #: includes/class-freemius.php:1400
117
  msgid "The %s didn't work as expected"
118
  msgstr "%s no funciona como esperaba"
119
 
120
+ #: includes/class-freemius.php:1402
121
  msgid "What did you expect?"
122
  msgstr "¿Qué esperas?"
123
 
124
+ #: includes/class-freemius.php1938, templates/debug.php:20
125
  msgid "Freemius Debug"
126
  msgstr "Debug Freemius"
127
 
128
+ #: includes/class-freemius.php:2508
129
  msgid "I don't know what is cURL or how to install it, help me!"
130
  msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
131
 
132
+ #: includes/class-freemius.php:2510
133
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
134
  msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización."
135
 
136
+ #: includes/class-freemius.php:2517
137
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
138
  msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo."
139
 
140
+ #: includes/class-freemius.php:2619
141
  msgid "Yes - do your thing"
142
  msgstr "Vamos, adelante"
143
 
144
+ #: includes/class-freemius.php:2624
145
  msgid "No - just deactivate"
146
  msgstr "No - sólo desactivar"
147
 
148
+ #: includes/class-freemius.php2669, includes/class-freemius.php3134,
149
+ #: includes/class-freemius.php3988, includes/class-freemius.php7270,
150
+ #: includes/class-freemius.php9137, includes/class-freemius.php9193,
151
+ #: includes/class-freemius.php9254, includes/class-freemius.php11154,
152
+ #: includes/class-freemius.php11165, includes/class-freemius.php11614,
153
+ #: includes/class-freemius.php11632, includes/class-freemius.php11730,
154
+ #: includes/class-freemius.php12405, templates/add-ons.php:43
155
  msgctxt "exclamation"
156
  msgid "Oops"
157
  msgstr "Oops"
158
 
159
+ #: includes/class-freemius.php:2736
160
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
161
  msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia."
162
 
163
+ #: includes/class-freemius.php:3131
164
  msgctxt "addonX cannot run without pluginY"
165
  msgid "%s cannot run without %s."
166
  msgstr "%s no se puede ejecutar sin %s."
167
 
168
+ #: includes/class-freemius.php:3132
169
  msgctxt "addonX cannot run..."
170
  msgid "%s cannot run without the plugin."
171
  msgstr "%s no se puede ejecutar sin el plugin."
172
 
173
+ #: includes/class-freemius.php3253, includes/class-freemius.php3278,
174
+ #: includes/class-freemius.php:11703
175
  msgid "Unexpected API error. Please contact the %s's author with the following error."
176
  msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
177
 
178
+ #: includes/class-freemius.php:3686
179
  msgid "Premium %s version was successfully activated."
180
  msgstr "La versión Premium %s ha sido activada con éxito."
181
 
182
+ #: includes/class-freemius.php3688, includes/class-freemius.php:4913
183
  msgctxt ""
184
  msgid "W00t"
185
  msgstr "W00t"
186
 
187
+ #: includes/class-freemius.php:3703
188
  msgid "You have a %s license."
189
  msgstr "Tienes una licencia %s."
190
 
191
+ #: includes/class-freemius.php3707, includes/class-freemius.php8841,
192
+ #: includes/class-freemius.php8850, includes/class-freemius.php11105,
193
+ #: includes/class-freemius.php11318, includes/class-freemius.php11380,
194
+ #: includes/class-freemius.php:11492
195
  msgctxt "interjection expressing joy or exuberance"
196
  msgid "Yee-haw"
197
  msgstr "Vaya"
198
 
199
+ #: includes/class-freemius.php:3971
200
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
201
  msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia."
202
 
203
+ #: includes/class-freemius.php:3975
204
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
205
  msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
206
 
207
+ #: includes/class-freemius.php3984, templates/account.php692,
208
  #: templates/add-ons.php:99
209
  msgid "More information about %s"
210
  msgstr "Más información sobre %s"
211
 
212
+ #: includes/class-freemius.php:3985
213
  msgid "Purchase License"
214
  msgstr "Comprar Licencia"
215
 
216
+ #: includes/class-freemius.php4422, templates/connect.php:136
217
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
218
  msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s."
219
 
220
+ #: includes/class-freemius.php:4426
221
  msgid "start the trial"
222
  msgstr "comenzar el período de prueba"
223
 
224
+ #: includes/class-freemius.php4427, templates/connect.php:140
225
  msgid "complete the install"
226
  msgstr "completar la instalación"
227
 
228
+ #: includes/class-freemius.php:4506
229
  msgid "You are just one step away - %s"
230
  msgstr "Estás a sólo un paso - %s"
231
 
232
+ #: includes/class-freemius.php:4509
233
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
234
  msgid "Complete \"%s\" Activation Now"
235
  msgstr "Completar la Activación de \"%s\" Ahora"
236
 
237
+ #: includes/class-freemius.php:4523
238
  msgid "We made a few tweaks to the %s, %s"
239
  msgstr "Hemos realizado algunas optimizaciones al %s, %s"
240
 
241
+ #: includes/class-freemius.php:4527
242
  msgid "Opt in to make \"%s\" Better!"
243
  msgstr "Opt in to make \"%s\" Better!"
244
 
245
+ #: includes/class-freemius.php:4912
246
  msgid "The upgrade of %s was successfully completed."
247
  msgstr "La actualización de %s se completó con éxito."
248
 
249
+ #: includes/class-freemius.php5997, includes/class-fs-plugin-updater.php358,
250
  #: includes/class-fs-plugin-updater.php510,
251
  #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
252
  msgid "Add-On"
253
  msgstr "Complemento"
254
 
255
+ #: includes/class-freemius.php5999, templates/debug.php303,
256
  #: templates/debug.php:413
257
  msgid "Plugin"
258
  msgstr "Plugin"
259
 
260
+ #: includes/class-freemius.php6000, templates/debug.php303,
261
  #: templates/debug.php413, templates/forms/deactivation/form.php:64
262
  msgid "Theme"
263
  msgstr "Tema"
264
 
265
+ #: includes/class-freemius.php:7257
266
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
267
  msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?"
268
 
269
+ #: includes/class-freemius.php:7259
270
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
271
  msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?"
272
 
273
+ #: includes/class-freemius.php:7468
274
  msgid "Account is pending activation."
275
  msgstr "Account is pending activation."
276
 
277
+ #: includes/class-freemius.php:8825
278
  msgctxt "pluginX activation was successfully..."
279
  msgid "%s activation was successfully completed."
280
  msgstr "%s activación se completó con éxito."
281
 
282
+ #: includes/class-freemius.php:8837
283
  msgid "Your account was successfully activated with the %s plan."
284
  msgstr "Tu cuenta se ha activado correctamente con el plan %s."
285
 
286
+ #: includes/class-freemius.php8846, includes/class-freemius.php:11376
287
  msgid "Your trial has been successfully started."
288
  msgstr "Tu versión de prueba se ha iniciado con éxito."
289
 
290
+ #: includes/class-freemius.php9135, includes/class-freemius.php9191,
291
+ #: includes/class-freemius.php:9252
292
  msgid "Couldn't activate %s."
293
  msgstr "No se puede activar %s."
294
 
295
+ #: includes/class-freemius.php9136, includes/class-freemius.php9192,
296
+ #: includes/class-freemius.php:9253
297
  msgid "Please contact us with the following message:"
298
  msgstr "Por favor contáctanos con el siguiente mensaje:"
299
 
300
+ #: includes/class-freemius.php9511, includes/class-freemius.php:13334
301
  msgid "Upgrade"
302
  msgstr "Actualizar"
303
 
304
+ #: includes/class-freemius.php:9517
305
  msgid "Start Trial"
306
  msgstr "Comenzar el Período de Prueba"
307
 
308
+ #: includes/class-freemius.php:9519
309
  msgid "Pricing"
310
  msgstr "Precio"
311
 
312
+ #: includes/class-freemius.php9559, includes/class-freemius.php:9561
313
  msgid "Affiliation"
314
  msgstr "Affiliation"
315
 
316
+ #: includes/class-freemius.php9581, includes/class-freemius.php9583,
317
  #: templates/account.php79, templates/debug.php:281
318
  msgid "Account"
319
  msgstr "Cuenta"
320
 
321
+ #: includes/class-freemius.php9594, includes/class-freemius.php9596,
322
  #: includes/customizer/class-fs-customizer-support-section.php:60
323
  msgid "Contact Us"
324
  msgstr "Contáctanos"
325
 
326
+ #: includes/class-freemius.php9606, includes/class-freemius.php9608,
327
+ #: includes/class-freemius.php13344, templates/account.php:68
328
  msgid "Add-Ons"
329
  msgstr "Complementos"
330
 
331
+ #: includes/class-freemius.php9639, templates/pricing.php:92
332
  msgctxt "noun"
333
  msgid "Pricing"
334
  msgstr "Precio"
335
 
336
+ #: includes/class-freemius.php9819,
337
  #: includes/customizer/class-fs-customizer-support-section.php:67
338
  msgid "Support Forum"
339
  msgstr "Foro de Soporte"
340
 
341
+ #: includes/class-freemius.php:10559
342
  msgid "Your email has been successfully verified - you are AWESOME!"
343
  msgstr "Tu email ha sido verificado correctamente - eres IMPRESIONANTE!"
344
 
345
+ #: includes/class-freemius.php:10560
346
  msgctxt "a positive response"
347
  msgid "Right on"
348
  msgstr "Bien hecho"
349
 
350
+ #: includes/class-freemius.php:11096
351
  msgid "Your %s Add-on plan was successfully upgraded."
352
  msgstr "Tu complemento %s del plan se actualizó con éxito."
353
 
354
+ #: includes/class-freemius.php:11098
355
  msgid "%s Add-on was successfully purchased."
356
  msgstr "El complemento %s ha sido comprado correctamente."
357
 
358
+ #: includes/class-freemius.php:11101
359
  msgid "Download the latest version"
360
  msgstr "Descargar la última versión"
361
 
362
+ #: includes/class-freemius.php:11150
363
  msgctxt "%1s - plugin title, %2s - API domain"
364
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
365
  msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s"
366
 
367
+ #: includes/class-freemius.php11153, includes/class-freemius.php11463,
368
+ #: includes/class-freemius.php:11528
369
  msgid "Error received from the server:"
370
  msgstr "Error recibido del servidor:"
371
 
372
+ #: includes/class-freemius.php:11164
373
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
374
  msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu Clave Pública, Clave Secreta & ID de Usuario e inténtelo de nuevo."
375
 
376
+ #: includes/class-freemius.php11281, includes/class-freemius.php11468,
377
+ #: includes/class-freemius.php:11511
378
  msgctxt ""
379
  msgid "Hmm"
380
  msgstr "Hmm"
381
 
382
+ #: includes/class-freemius.php:11294
383
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
384
  msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos."
385
 
386
+ #: includes/class-freemius.php11295, templates/account.php70,
387
  #: templates/add-ons.php:130
388
  msgctxt "trial period"
389
  msgid "Trial"
390
  msgstr "Período de Prueba Gratuito"
391
 
392
+ #: includes/class-freemius.php:11300
393
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
394
  msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
395
 
396
+ #: includes/class-freemius.php11304, includes/class-freemius.php:11358
397
  msgid "Please contact us here"
398
  msgstr "Contacta aquí con nosotros"
399
 
400
+ #: includes/class-freemius.php:11314
401
  msgid "Your plan was successfully upgraded."
402
  msgstr "Tu plan se actualizó con éxito."
403
 
404
+ #: includes/class-freemius.php:11331
405
  msgid "Your plan was successfully changed to %s."
406
  msgstr "Tu plan se cambió correctamente a %s."
407
 
408
+ #: includes/class-freemius.php:11346
409
  msgid "Your license has expired. You can still continue using the free %s forever."
410
  msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
411
 
412
+ #: includes/class-freemius.php:11354
413
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
414
  msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
415
 
416
+ #: includes/class-freemius.php:11367
417
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
418
  msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte."
419
 
420
+ #: includes/class-freemius.php:11389
421
  msgid "Your trial has expired. You can still continue using all our free features."
422
  msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
423
 
424
+ #: includes/class-freemius.php:11459
425
  msgid "It looks like the license could not be activated."
426
  msgstr "Parece que la licencia no se pudo activar."
427
 
428
+ #: includes/class-freemius.php:11489
429
  msgid "Your license was successfully activated."
430
  msgstr "Tu licencia fue activada correctamente."
431
 
432
+ #: includes/class-freemius.php:11515
433
  msgid "It looks like your site currently doesn't have an active license."
434
  msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
435
 
436
+ #: includes/class-freemius.php:11527
437
  msgid "It looks like the license deactivation failed."
438
  msgstr "Parece que la desactivación de licencia ha fallado."
439
 
440
+ #: includes/class-freemius.php:11554
441
  msgid "Your license was successfully deactivated, you are back to the %s plan."
442
  msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
443
 
444
+ #: includes/class-freemius.php:11555
445
  msgid "O.K"
446
  msgstr "O.K"
447
 
448
+ #: includes/class-freemius.php:11603
449
  msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
450
  msgstr "Tu plan fue degradado con éxito. Tu licencia %s plan caducará en %s."
451
 
452
+ #: includes/class-freemius.php:11613
453
  msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
454
  msgstr "Parece que estamos teniendo algún problema temporal con tu degradación de plan. Vuelve a intentarlo en unos minutos."
455
 
456
+ #: includes/class-freemius.php:11637
457
  msgid "You are already running the %s in a trial mode."
458
  msgstr "Estás ejecutando %s en modo de prueba."
459
 
460
+ #: includes/class-freemius.php:11648
461
  msgid "You already utilized a trial before."
462
  msgstr "Ya utilizaste un período de prueba antes."
463
 
464
+ #: includes/class-freemius.php:11662
465
  msgid "Plan %s do not exist, therefore, can't start a trial."
466
  msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
467
 
468
+ #: includes/class-freemius.php:11673
469
  msgid "Plan %s does not support a trial period."
470
  msgstr "El plan %s no admite un período de prueba."
471
 
472
+ #: includes/class-freemius.php:11684
473
  msgid "None of the %s's plans supports a trial period."
474
  msgstr "Ninguno de los planes de %s soportan un período de prueba."
475
 
476
+ #: includes/class-freemius.php:11734
477
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
478
  msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
479
 
480
+ #: includes/class-freemius.php:11785
481
  msgid "Your %s free trial was successfully cancelled."
482
  msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
483
 
484
+ #: includes/class-freemius.php:11793
485
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
486
  msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
487
 
488
+ #: includes/class-freemius.php:12032
489
  msgid "Version %s was released."
490
  msgstr "La versión %s se ha lanzado."
491
 
492
+ #: includes/class-freemius.php:12032
493
  msgid "Please download %s."
494
  msgstr "Por favor descarga %s."
495
 
496
+ #: includes/class-freemius.php:12039
497
  msgid "the latest %s version here"
498
  msgstr "la última versión %s aquí"
499
 
500
+ #: includes/class-freemius.php:12044
501
  msgid "New"
502
  msgstr "Nuevo"
503
 
504
+ #: includes/class-freemius.php:12049
505
  msgid "Seems like you got the latest release."
506
  msgstr "Parece que tienes la última versión."
507
 
508
+ #: includes/class-freemius.php:12050
509
  msgid "You are all good!"
510
  msgstr "¡Está todo listo!"
511
 
512
+ #: includes/class-freemius.php:12316
513
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
514
  msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam."
515
 
516
+ #: includes/class-freemius.php:12491
517
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
518
  msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado."
519
 
520
+ #: includes/class-freemius.php:12497
521
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
522
  msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
523
 
524
+ #: includes/class-freemius.php:12502
525
  msgid "%s is the new owner of the account."
526
  msgstr "%s es el nuevo dueño de la cuenta."
527
 
528
+ #: includes/class-freemius.php:12504
529
  msgctxt "as congratulations"
530
  msgid "Congrats"
531
  msgstr "Felicidades"
532
 
533
+ #: includes/class-freemius.php:12524
534
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
535
  msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico."
536
 
537
+ #: includes/class-freemius.php:12525
538
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
539
  msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de Cambio de Titularidad."
540
 
541
+ #: includes/class-freemius.php:12532
542
  msgid "Change Ownership"
543
  msgstr "Cambiar Propietario"
544
 
545
+ #: includes/class-freemius.php:12540
546
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
547
  msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
548
 
549
+ #: includes/class-freemius.php:12552
550
  msgid "Please provide your full name."
551
  msgstr "Por favor, dinos tu nombre completo."
552
 
553
+ #: includes/class-freemius.php:12557
554
  msgid "Your name was successfully updated."
555
  msgstr "Tu nombre fue actualizado correctamente."
556
 
557
+ #: includes/class-freemius.php:12618
558
  msgid "You have successfully updated your %s."
559
  msgstr "Has actualizado correctamente tu %s."
560
 
561
+ #: includes/class-freemius.php:12756
562
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
563
  msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
564
 
565
+ #: includes/class-freemius.php:12757
566
  msgctxt "advance notice of something that will need attention."
567
  msgid "Heads up"
568
  msgstr "Atención"
569
 
570
+ #: includes/class-freemius.php:13075
571
  msgid "Awesome"
572
  msgstr "Increíble"
573
 
574
+ #: includes/class-freemius.php:13115
575
  msgctxt "exclamation"
576
  msgid "Hey"
577
  msgstr "Hey"
578
 
579
+ #: includes/class-freemius.php:13115
580
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
581
  msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
582
 
583
+ #: includes/class-freemius.php:13123
584
  msgid "No commitment for %s days - cancel anytime!"
585
  msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
586
 
587
+ #: includes/class-freemius.php:13124
588
  msgid "No credit card required"
589
  msgstr "No se necesita tarjeta de crédito"
590
 
591
+ #: includes/class-freemius.php13131, templates/forms/trial-start.php:53
592
  msgctxt "call to action"
593
  msgid "Start free trial"
594
  msgstr "Comenzar el período de prueba gratuito"
595
 
596
+ #: includes/class-freemius.php:13208
597
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
598
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
599
 
600
+ #: includes/class-freemius.php:13217
601
  msgid "Learn more"
602
  msgstr "Learn more"
603
 
604
+ #: includes/class-freemius.php13373, templates/account.php330,
605
  #: templates/connect.php309, templates/forms/license-activation.php:24
606
  msgid "Activate License"
607
  msgstr "Activar Licencia"
608
 
609
+ #: includes/class-freemius.php13374, templates/account.php:393
610
  msgid "Change License"
611
  msgstr "Cambiar Licencia"
612
 
613
+ #: includes/class-freemius.php:13435
614
  msgid "Opt Out"
615
  msgstr "Darse de baja"
616
 
617
+ #: includes/class-freemius.php13437, includes/class-freemius.php:13442
618
  msgid "Opt In"
619
  msgstr "Inscribirse"
620
 
621
+ #: includes/class-freemius.php:13630
622
  msgid "Please follow these steps to complete the upgrade"
623
  msgstr "Por favor, sigue estos pasos para completar la actualización"
624
 
625
+ #: includes/class-freemius.php:13633
626
  msgid "Download the latest %s version"
627
  msgstr "Descargar la última versión %s"
628
 
629
+ #: includes/class-freemius.php:13637
630
  msgid "Upload and activate the downloaded version"
631
  msgstr "Cargar y activar la versión descargada"
632
 
633
+ #: includes/class-freemius.php:13639
634
  msgid "How to upload and activate?"
635
  msgstr "¿Cómo subirlo y activarlo?"
636
 
637
+ #: includes/class-freemius.php:13798
638
  msgid "Auto installation only works for opted-in users."
639
  msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
640
 
641
+ #: includes/class-freemius.php13808, includes/class-freemius.php13841,
642
  #: includes/class-fs-plugin-updater.php490,
643
  #: includes/class-fs-plugin-updater.php:504
644
  msgid "Invalid module ID."
645
  msgstr "Id de Módulo no válido."
646
 
647
+ #: includes/class-freemius.php13817, includes/class-fs-plugin-updater.php:524
648
  msgid "Premium version already active."
649
  msgstr "Versión Premium ya activa."
650
 
651
+ #: includes/class-freemius.php:13824
652
  msgid "You do not have a valid license to access the premium version."
653
  msgstr "No tienes una licencia válida para acceder a la versión premium."
654
 
655
+ #: includes/class-freemius.php:13831
656
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
657
  msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
658
 
659
+ #: includes/class-freemius.php13849, includes/class-fs-plugin-updater.php:523
660
  msgid "Premium add-on version already installed."
661
  msgstr "Versión del complemento Premium ya instalada."
662
 
663
+ #: includes/class-freemius.php:14194
664
  msgid "View paid features"
665
  msgstr "Ver las funciones de pago"
666
 
813
  #: templates/plugin-info/features.php:82
814
  msgctxt "as monthly period"
815
  msgid "mo"
816
+ msgstr "me"
817
 
818
  #: includes/fs-plugin-info-dialog.php669,
819
  #: templates/plugin-info/features.php:80
852
  #: includes/fs-plugin-info-dialog.php:800
853
  msgctxt "as the plugin author"
854
  msgid "Author"
855
+ msgstr "Autor"
856
 
857
  #: includes/fs-plugin-info-dialog.php:806
858
  msgid "Last Updated"
865
 
866
  #: includes/fs-plugin-info-dialog.php:819
867
  msgid "Requires WordPress Version"
868
+ msgstr "Necesita la versión de WordPress"
869
 
870
  #: includes/fs-plugin-info-dialog.php:819
871
  msgid "%s or higher"
873
 
874
  #: includes/fs-plugin-info-dialog.php:825
875
  msgid "Compatible up to"
876
+ msgstr "Compatible hasta"
877
 
878
  #: includes/fs-plugin-info-dialog.php:832
879
  msgid "Downloaded"
880
+ msgstr "Descargado"
881
 
882
  #: includes/fs-plugin-info-dialog.php:835
883
  msgid "%s time"
935
  #: includes/fs-plugin-info-dialog.php948,
936
  #: includes/fs-plugin-info-dialog.php:950
937
  msgid "Warning"
938
+ msgstr "Atencion"
939
 
940
  #: includes/fs-plugin-info-dialog.php:948
941
  msgid "This plugin has not been tested with your current version of WordPress."
1104
 
1105
  #: templates/account.php257, templates/debug.php:424
1106
  msgid "License Key"
1107
+ msgstr "Clave de licencia"
1108
 
1109
  #: templates/account.php:287
1110
  msgid "not verified"
1402
 
1403
  #: templates/debug.php:82
1404
  msgid "Load DB Option"
1405
+ msgstr "Cargar opción de BD"
1406
 
1407
  #: templates/debug.php:85
1408
  msgid "Set DB Option"
1409
+ msgstr "Guardar opción en BD"
1410
 
1411
  #: templates/debug.php:162
1412
  msgid "Key"
1471
 
1472
  #: templates/debug.php:277
1473
  msgid "Simulate Trial"
1474
+ msgstr "Simular período de prueba"
1475
 
1476
  #: templates/debug.php:302
1477
  msgid "%s Installs"
1591
 
1592
  #: includes/debug/debug-bar-start.php:41
1593
  msgid "Freemius API"
1594
+ msgstr "API Freemius"
1595
 
1596
  #: includes/debug/debug-bar-start.php:42
1597
  msgid "Requests"
1598
+ msgstr "Peticiones"
1599
 
1600
  #: templates/account/billing.php:28
1601
  msgctxt "verb"
1669
 
1670
  #: templates/debug/api-calls.php:68
1671
  msgid "Method"
1672
+ msgstr "Método"
1673
 
1674
  #: templates/debug/api-calls.php:69
1675
  msgid "Code"
1676
+ msgstr "Código"
1677
 
1678
  #: templates/debug/api-calls.php:70
1679
  msgid "Length"
1680
+ msgstr "Longitud"
1681
 
1682
  #: templates/debug/api-calls.php:71
1683
  msgctxt "as file/folder path"
1686
 
1687
  #: templates/debug/api-calls.php:73
1688
  msgid "Body"
1689
+ msgstr "Cuerpo"
1690
 
1691
  #: templates/debug/api-calls.php:75
1692
  msgid "Result"
1693
+ msgstr "Resultado"
1694
 
1695
  #: templates/debug/api-calls.php:76
1696
  msgid "Start"
1697
+ msgstr "Inicio"
1698
 
1699
  #: templates/debug/api-calls.php:77
1700
  msgid "End"
1701
+ msgstr "Fin"
1702
 
1703
  #: templates/debug/logger.php:15
1704
  msgid "Log"
1733
  #: templates/debug/plugins-themes-sync.php29,
1734
  #: templates/debug/scheduled-crons.php:85
1735
  msgid "Last"
1736
+ msgstr "Último"
1737
 
1738
  #: templates/debug/scheduled-crons.php:77
1739
  msgid "Scheduled Crons"
1753
 
1754
  #: templates/debug/scheduled-crons.php:86
1755
  msgid "Next"
1756
+ msgstr "Siguiente"
1757
 
1758
  #: templates/forms/affiliation.php:81
1759
  msgid "Non-expiring"
freemius/languages/freemius-he_IL.mo CHANGED
Binary file
freemius/languages/freemius-he_IL.po CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2017-11-10 10:28+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: he_IL\n"
14
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
@@ -22,646 +22,646 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/class-freemius.php:903
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
- #: includes/class-freemius.php:905
30
  msgid "Error"
31
  msgstr "שגיאה"
32
 
33
- #: includes/class-freemius.php:1155
34
  msgid "I found a better %s"
35
  msgstr "I found a better %s"
36
 
37
- #: includes/class-freemius.php:1157
38
  msgid "What's the %s's name?"
39
  msgstr "What's the %s's name?"
40
 
41
- #: includes/class-freemius.php:1163
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
- #: includes/class-freemius.php:1165
46
  msgid "Deactivation"
47
  msgstr "דיאקטיבציה"
48
 
49
- #: includes/class-freemius.php:1166
50
  msgid "Theme Switch"
51
  msgstr "החלפת תֵמָה"
52
 
53
- #: includes/class-freemius.php1175, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "אחר"
56
 
57
- #: includes/class-freemius.php:1183
58
  msgid "I no longer need the %s"
59
  msgstr "I no longer need the %s"
60
 
61
- #: includes/class-freemius.php:1190
62
  msgid "I only needed the %s for a short period"
63
  msgstr "I only needed the %s for a short period"
64
 
65
- #: includes/class-freemius.php:1196
66
  msgid "The %s broke my site"
67
  msgstr "ה%s הרס לי את האתר"
68
 
69
- #: includes/class-freemius.php:1203
70
  msgid "The %s suddenly stopped working"
71
  msgstr "ה%s הפסיק פתאום לעבוד"
72
 
73
- #: includes/class-freemius.php:1213
74
  msgid "I can't pay for it anymore"
75
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
 
77
- #: includes/class-freemius.php:1215
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
 
81
- #: includes/class-freemius.php:1221
82
  msgid "I don't like to share my information with you"
83
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
 
85
- #: includes/class-freemius.php:1242
86
  msgid "The %s didn't work"
87
  msgstr "ה%s לא עבד"
88
 
89
- #: includes/class-freemius.php:1252
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
 
93
- #: includes/class-freemius.php:1260
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
- #: includes/class-freemius.php:1262
98
  msgid "What feature?"
99
  msgstr "איזה פיטצ'ר?"
100
 
101
- #: includes/class-freemius.php:1266
102
  msgid "The %s is not working"
103
  msgstr "ה%s לא עובד"
104
 
105
- #: includes/class-freemius.php:1268
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
 
109
- #: includes/class-freemius.php:1272
110
  msgid "It's not what I was looking for"
111
  msgstr "חיפשתי משהו אחר"
112
 
113
- #: includes/class-freemius.php:1274
114
  msgid "What you've been looking for?"
115
  msgstr "מה חיפשת?"
116
 
117
- #: includes/class-freemius.php:1278
118
  msgid "The %s didn't work as expected"
119
  msgstr "ה%s לא עבד כמצופה"
120
 
121
- #: includes/class-freemius.php:1280
122
  msgid "What did you expect?"
123
  msgstr "למה ציפית?"
124
 
125
- #: includes/class-freemius.php1816, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "ניפוי תקלות פרימיוס"
128
 
129
- #: includes/class-freemius.php:2379
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
 
133
- #: includes/class-freemius.php:2381
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
 
137
- #: includes/class-freemius.php:2388
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
- #: includes/class-freemius.php:2490
142
  msgid "Yes - do your thing"
143
  msgstr "כן - בצעו את מה שצריך"
144
 
145
- #: includes/class-freemius.php:2495
146
  msgid "No - just deactivate"
147
  msgstr "לא - פשוט כבה"
148
 
149
- #: includes/class-freemius.php2540, includes/class-freemius.php3005,
150
- #: includes/class-freemius.php3859, includes/class-freemius.php7141,
151
- #: includes/class-freemius.php9000, includes/class-freemius.php9056,
152
- #: includes/class-freemius.php9117, includes/class-freemius.php11014,
153
- #: includes/class-freemius.php11025, includes/class-freemius.php11474,
154
- #: includes/class-freemius.php11492, includes/class-freemius.php11590,
155
- #: includes/class-freemius.php12265, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "אופס"
159
 
160
- #: includes/class-freemius.php:2607
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
 
164
- #: includes/class-freemius.php:3002
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s לא יכול לעבוד ללא %s."
168
 
169
- #: includes/class-freemius.php:3003
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
 
174
- #: includes/class-freemius.php3124, includes/class-freemius.php3149,
175
- #: includes/class-freemius.php:11563
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
- #: includes/class-freemius.php:3557
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s version was successfully activated."
182
 
183
- #: includes/class-freemius.php3559, includes/class-freemius.php:4784
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
- #: includes/class-freemius.php:3574
189
  msgid "You have a %s license."
190
  msgstr "יש לך רישיון %s."
191
 
192
- #: includes/class-freemius.php3578, includes/class-freemius.php8704,
193
- #: includes/class-freemius.php8713, includes/class-freemius.php10965,
194
- #: includes/class-freemius.php11178, includes/class-freemius.php11240,
195
- #: includes/class-freemius.php:11352
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "יששש"
199
 
200
- #: includes/class-freemius.php:3842
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
- #: includes/class-freemius.php:3846
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
- #: includes/class-freemius.php3855, templates/account.php692,
209
  #: templates/add-ons.php:99
210
  msgid "More information about %s"
211
  msgstr "מידע נוסף אודות %s"
212
 
213
- #: includes/class-freemius.php:3856
214
  msgid "Purchase License"
215
  msgstr "קניית רישיון"
216
 
217
- #: includes/class-freemius.php4293, templates/connect.php:136
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
- #: includes/class-freemius.php:4297
222
  msgid "start the trial"
223
  msgstr "התחל תקופת ניסיון"
224
 
225
- #: includes/class-freemius.php4298, templates/connect.php:140
226
  msgid "complete the install"
227
  msgstr "השלם התקנה"
228
 
229
- #: includes/class-freemius.php:4377
230
  msgid "You are just one step away - %s"
231
  msgstr "You are just one step away - %s"
232
 
233
- #: includes/class-freemius.php:4380
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "השלם הפעלת \"%s\" עכשיו"
237
 
238
- #: includes/class-freemius.php:4394
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
- #: includes/class-freemius.php:4398
243
  msgid "Opt in to make \"%s\" Better!"
244
  msgstr "Opt in to make \"%s\" Better!"
245
 
246
- #: includes/class-freemius.php:4783
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "The upgrade of %s was successfully completed."
249
 
250
- #: includes/class-freemius.php5868, includes/class-fs-plugin-updater.php358,
251
  #: includes/class-fs-plugin-updater.php510,
252
  #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
253
  msgid "Add-On"
254
  msgstr "Add-On"
255
 
256
- #: includes/class-freemius.php5870, templates/debug.php303,
257
  #: templates/debug.php:413
258
  msgid "Plugin"
259
  msgstr "תוסף"
260
 
261
- #: includes/class-freemius.php5871, templates/debug.php303,
262
  #: templates/debug.php413, templates/forms/deactivation/form.php:64
263
  msgid "Theme"
264
  msgstr "תבנית"
265
 
266
- #: includes/class-freemius.php:7128
267
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
268
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
269
 
270
- #: includes/class-freemius.php:7130
271
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
272
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
273
 
274
- #: includes/class-freemius.php:7339
275
  msgid "Account is pending activation."
276
  msgstr "Account is pending activation."
277
 
278
- #: includes/class-freemius.php:8688
279
  msgctxt "pluginX activation was successfully..."
280
  msgid "%s activation was successfully completed."
281
  msgstr "הפעלת %s הושלמה בהצלחה."
282
 
283
- #: includes/class-freemius.php:8700
284
  msgid "Your account was successfully activated with the %s plan."
285
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
286
 
287
- #: includes/class-freemius.php8709, includes/class-freemius.php:11236
288
  msgid "Your trial has been successfully started."
289
  msgstr "הניסיון שלך הופעל בהצלחה."
290
 
291
- #: includes/class-freemius.php8998, includes/class-freemius.php9054,
292
- #: includes/class-freemius.php:9115
293
  msgid "Couldn't activate %s."
294
  msgstr "לא ניתן להפעיל את %s."
295
 
296
- #: includes/class-freemius.php8999, includes/class-freemius.php9055,
297
- #: includes/class-freemius.php:9116
298
  msgid "Please contact us with the following message:"
299
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
300
 
301
- #: includes/class-freemius.php9374, includes/class-freemius.php:13194
302
  msgid "Upgrade"
303
  msgstr "שדרג"
304
 
305
- #: includes/class-freemius.php:9380
306
  msgid "Start Trial"
307
  msgstr "התחל תקופת ניסיון"
308
 
309
- #: includes/class-freemius.php:9382
310
  msgid "Pricing"
311
  msgstr "מחירון"
312
 
313
- #: includes/class-freemius.php9422, includes/class-freemius.php:9424
314
  msgid "Affiliation"
315
  msgstr "אפיליאציה"
316
 
317
- #: includes/class-freemius.php9444, includes/class-freemius.php9446,
318
  #: templates/account.php79, templates/debug.php:281
319
  msgid "Account"
320
  msgstr "חשבון"
321
 
322
- #: includes/class-freemius.php9457, includes/class-freemius.php9459,
323
  #: includes/customizer/class-fs-customizer-support-section.php:60
324
  msgid "Contact Us"
325
  msgstr "יצירת קשר"
326
 
327
- #: includes/class-freemius.php9469, includes/class-freemius.php9471,
328
- #: includes/class-freemius.php13204, templates/account.php:68
329
  msgid "Add-Ons"
330
  msgstr "Add-Ons"
331
 
332
- #: includes/class-freemius.php9502, templates/pricing.php:92
333
  msgctxt "noun"
334
  msgid "Pricing"
335
  msgstr "מחירון"
336
 
337
- #: includes/class-freemius.php9682,
338
  #: includes/customizer/class-fs-customizer-support-section.php:67
339
  msgid "Support Forum"
340
  msgstr "פורום תמיכה"
341
 
342
- #: includes/class-freemius.php:10422
343
  msgid "Your email has been successfully verified - you are AWESOME!"
344
  msgstr "Your email has been successfully verified - you are AWESOME!"
345
 
346
- #: includes/class-freemius.php:10423
347
  msgctxt "a positive response"
348
  msgid "Right on"
349
  msgstr "מעולה"
350
 
351
- #: includes/class-freemius.php:10956
352
  msgid "Your %s Add-on plan was successfully upgraded."
353
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
354
 
355
- #: includes/class-freemius.php:10958
356
  msgid "%s Add-on was successfully purchased."
357
  msgstr "ההרחבה %s נרכשה בהצלחה."
358
 
359
- #: includes/class-freemius.php:10961
360
  msgid "Download the latest version"
361
  msgstr "הורד את הגרסה האחרונה"
362
 
363
- #: includes/class-freemius.php:11010
364
  msgctxt "%1s - plugin title, %2s - API domain"
365
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
366
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
 
368
- #: includes/class-freemius.php11013, includes/class-freemius.php11323,
369
- #: includes/class-freemius.php:11388
370
  msgid "Error received from the server:"
371
  msgstr "הוחזרה שגיאה מהשרת:"
372
 
373
- #: includes/class-freemius.php:11024
374
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
 
377
- #: includes/class-freemius.php11141, includes/class-freemius.php11328,
378
- #: includes/class-freemius.php:11371
379
  msgctxt ""
380
  msgid "Hmm"
381
  msgstr "Hmm"
382
 
383
- #: includes/class-freemius.php:11154
384
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
386
 
387
- #: includes/class-freemius.php11155, templates/account.php70,
388
  #: templates/add-ons.php:130
389
  msgctxt "trial period"
390
  msgid "Trial"
391
  msgstr "ניסיון"
392
 
393
- #: includes/class-freemius.php:11160
394
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
395
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
396
 
397
- #: includes/class-freemius.php11164, includes/class-freemius.php:11218
398
  msgid "Please contact us here"
399
  msgstr "אנא צור איתנו קשר כאן"
400
 
401
- #: includes/class-freemius.php:11174
402
  msgid "Your plan was successfully upgraded."
403
  msgstr "החבילה שודרגה בהצלחה."
404
 
405
- #: includes/class-freemius.php:11191
406
  msgid "Your plan was successfully changed to %s."
407
  msgstr "החבילה עודכנה בהצלחה אל %s."
408
 
409
- #: includes/class-freemius.php:11206
410
  msgid "Your license has expired. You can still continue using the free %s forever."
411
  msgstr "Your license has expired. You can still continue using the free %s forever."
412
 
413
- #: includes/class-freemius.php:11214
414
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
415
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
416
 
417
- #: includes/class-freemius.php:11227
418
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
419
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
420
 
421
- #: includes/class-freemius.php:11249
422
  msgid "Your trial has expired. You can still continue using all our free features."
423
  msgstr "תקופת הניסיון נגמרה. ביכולתך להמשיך להשתמש בכל הפיטצ'רים החינאמיים."
424
 
425
- #: includes/class-freemius.php:11319
426
  msgid "It looks like the license could not be activated."
427
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
428
 
429
- #: includes/class-freemius.php:11349
430
  msgid "Your license was successfully activated."
431
  msgstr "הרישיון הופעל בהצלחה."
432
 
433
- #: includes/class-freemius.php:11375
434
  msgid "It looks like your site currently doesn't have an active license."
435
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
436
 
437
- #: includes/class-freemius.php:11387
438
  msgid "It looks like the license deactivation failed."
439
  msgstr "נראה שניתוק הרישיון נכשל."
440
 
441
- #: includes/class-freemius.php:11414
442
  msgid "Your license was successfully deactivated, you are back to the %s plan."
443
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
444
 
445
- #: includes/class-freemius.php:11415
446
  msgid "O.K"
447
  msgstr "אוקיי"
448
 
449
- #: includes/class-freemius.php:11463
450
  msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
451
  msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
452
 
453
- #: includes/class-freemius.php:11473
454
  msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
455
  msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
456
 
457
- #: includes/class-freemius.php:11497
458
  msgid "You are already running the %s in a trial mode."
459
  msgstr "You are already running the %s in a trial mode."
460
 
461
- #: includes/class-freemius.php:11508
462
  msgid "You already utilized a trial before."
463
  msgstr "הניסיון כבר נוצל בעבר."
464
 
465
- #: includes/class-freemius.php:11522
466
  msgid "Plan %s do not exist, therefore, can't start a trial."
467
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
468
 
469
- #: includes/class-freemius.php:11533
470
  msgid "Plan %s does not support a trial period."
471
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
472
 
473
- #: includes/class-freemius.php:11544
474
  msgid "None of the %s's plans supports a trial period."
475
  msgstr "None of the %s's plans supports a trial period."
476
 
477
- #: includes/class-freemius.php:11594
478
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
479
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
480
 
481
- #: includes/class-freemius.php:11645
482
  msgid "Your %s free trial was successfully cancelled."
483
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
484
 
485
- #: includes/class-freemius.php:11653
486
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
487
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
488
 
489
- #: includes/class-freemius.php:11892
490
  msgid "Version %s was released."
491
  msgstr "גרסה %s הושקה."
492
 
493
- #: includes/class-freemius.php:11892
494
  msgid "Please download %s."
495
  msgstr "נא להוריד את %s."
496
 
497
- #: includes/class-freemius.php:11899
498
  msgid "the latest %s version here"
499
  msgstr "גרסת ה-%s האחרונה כאן"
500
 
501
- #: includes/class-freemius.php:11904
502
  msgid "New"
503
  msgstr "חדש"
504
 
505
- #: includes/class-freemius.php:11909
506
  msgid "Seems like you got the latest release."
507
  msgstr "נראה שיש לך את הגרסה האחרונה."
508
 
509
- #: includes/class-freemius.php:11910
510
  msgid "You are all good!"
511
  msgstr "את\\ה מסודר!"
512
 
513
- #: includes/class-freemius.php:12176
514
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
515
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
516
 
517
- #: includes/class-freemius.php:12351
518
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
519
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
520
 
521
- #: includes/class-freemius.php:12357
522
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
523
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
524
 
525
- #: includes/class-freemius.php:12362
526
  msgid "%s is the new owner of the account."
527
  msgstr "%s הינו הבעלים החד של חשבון זה."
528
 
529
- #: includes/class-freemius.php:12364
530
  msgctxt "as congratulations"
531
  msgid "Congrats"
532
  msgstr "מזל טוב"
533
 
534
- #: includes/class-freemius.php:12384
535
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
536
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
537
 
538
- #: includes/class-freemius.php:12385
539
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
540
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
541
 
542
- #: includes/class-freemius.php:12392
543
  msgid "Change Ownership"
544
  msgstr "עדכון בעלות"
545
 
546
- #: includes/class-freemius.php:12400
547
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
548
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
549
 
550
- #: includes/class-freemius.php:12412
551
  msgid "Please provide your full name."
552
  msgstr "נא למלא את שמך המלא."
553
 
554
- #: includes/class-freemius.php:12417
555
  msgid "Your name was successfully updated."
556
  msgstr "שמך עודכן בהצלחה."
557
 
558
- #: includes/class-freemius.php:12478
559
  msgid "You have successfully updated your %s."
560
  msgstr "עידכנת בהצלחה את ה%s."
561
 
562
- #: includes/class-freemius.php:12616
563
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
564
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
565
 
566
- #: includes/class-freemius.php:12617
567
  msgctxt "advance notice of something that will need attention."
568
  msgid "Heads up"
569
  msgstr "לתשמות לבך"
570
 
571
- #: includes/class-freemius.php:12935
572
  msgid "Awesome"
573
  msgstr "אדיר"
574
 
575
- #: includes/class-freemius.php:12975
576
  msgctxt "exclamation"
577
  msgid "Hey"
578
  msgstr "היי"
579
 
580
- #: includes/class-freemius.php:12975
581
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
582
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
583
 
584
- #: includes/class-freemius.php:12983
585
  msgid "No commitment for %s days - cancel anytime!"
586
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
587
 
588
- #: includes/class-freemius.php:12984
589
  msgid "No credit card required"
590
  msgstr "לא נדרש כרטיס אשראי"
591
 
592
- #: includes/class-freemius.php12991, templates/forms/trial-start.php:53
593
  msgctxt "call to action"
594
  msgid "Start free trial"
595
  msgstr "התחלת ניסיון חינם"
596
 
597
- #: includes/class-freemius.php:13068
598
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
599
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
600
 
601
- #: includes/class-freemius.php:13077
602
  msgid "Learn more"
603
  msgstr "Learn more"
604
 
605
- #: includes/class-freemius.php13233, templates/account.php330,
606
  #: templates/connect.php309, templates/forms/license-activation.php:24
607
  msgid "Activate License"
608
  msgstr "הפעלת רישיון"
609
 
610
- #: includes/class-freemius.php13234, templates/account.php:393
611
  msgid "Change License"
612
  msgstr "שינוי רישיון"
613
 
614
- #: includes/class-freemius.php:13295
615
  msgid "Opt Out"
616
  msgstr "Opt Out"
617
 
618
- #: includes/class-freemius.php13297, includes/class-freemius.php:13302
619
  msgid "Opt In"
620
  msgstr "Opt In"
621
 
622
- #: includes/class-freemius.php:13490
623
  msgid "Please follow these steps to complete the upgrade"
624
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
625
 
626
- #: includes/class-freemius.php:13493
627
  msgid "Download the latest %s version"
628
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
629
 
630
- #: includes/class-freemius.php:13497
631
  msgid "Upload and activate the downloaded version"
632
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
633
 
634
- #: includes/class-freemius.php:13499
635
  msgid "How to upload and activate?"
636
  msgstr "איך להעלות ולהפעיל?"
637
 
638
- #: includes/class-freemius.php:13658
639
  msgid "Auto installation only works for opted-in users."
640
  msgstr "Auto installation only works for opted-in users."
641
 
642
- #: includes/class-freemius.php13668, includes/class-freemius.php13701,
643
  #: includes/class-fs-plugin-updater.php490,
644
  #: includes/class-fs-plugin-updater.php:504
645
  msgid "Invalid module ID."
646
  msgstr "Invalid module ID."
647
 
648
- #: includes/class-freemius.php13677, includes/class-fs-plugin-updater.php:524
649
  msgid "Premium version already active."
650
  msgstr "Premium version already active."
651
 
652
- #: includes/class-freemius.php:13684
653
  msgid "You do not have a valid license to access the premium version."
654
  msgstr "You do not have a valid license to access the premium version."
655
 
656
- #: includes/class-freemius.php:13691
657
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
658
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
659
 
660
- #: includes/class-freemius.php13709, includes/class-fs-plugin-updater.php:523
661
  msgid "Premium add-on version already installed."
662
  msgstr "Premium add-on version already installed."
663
 
664
- #: includes/class-freemius.php:14054
665
  msgid "View paid features"
666
  msgstr "View paid features"
667
 
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2017-12-04 15:57+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: he_IL\n"
14
  "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php:959
26
  msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
  msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
28
 
29
+ #: includes/class-freemius.php:961
30
  msgid "Error"
31
  msgstr "שגיאה"
32
 
33
+ #: includes/class-freemius.php:1277
34
  msgid "I found a better %s"
35
  msgstr "I found a better %s"
36
 
37
+ #: includes/class-freemius.php:1279
38
  msgid "What's the %s's name?"
39
  msgstr "What's the %s's name?"
40
 
41
+ #: includes/class-freemius.php:1285
42
  msgid "It's a temporary %s. I'm just debugging an issue."
43
  msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
+ #: includes/class-freemius.php:1287
46
  msgid "Deactivation"
47
  msgstr "דיאקטיבציה"
48
 
49
+ #: includes/class-freemius.php:1288
50
  msgid "Theme Switch"
51
  msgstr "החלפת תֵמָה"
52
 
53
+ #: includes/class-freemius.php1297, templates/forms/resend-key.php:24
54
  msgid "Other"
55
  msgstr "אחר"
56
 
57
+ #: includes/class-freemius.php:1305
58
  msgid "I no longer need the %s"
59
  msgstr "I no longer need the %s"
60
 
61
+ #: includes/class-freemius.php:1312
62
  msgid "I only needed the %s for a short period"
63
  msgstr "I only needed the %s for a short period"
64
 
65
+ #: includes/class-freemius.php:1318
66
  msgid "The %s broke my site"
67
  msgstr "ה%s הרס לי את האתר"
68
 
69
+ #: includes/class-freemius.php:1325
70
  msgid "The %s suddenly stopped working"
71
  msgstr "ה%s הפסיק פתאום לעבוד"
72
 
73
+ #: includes/class-freemius.php:1335
74
  msgid "I can't pay for it anymore"
75
  msgstr "אני לא יכול/ה להמשיך לשלם על זה"
76
 
77
+ #: includes/class-freemius.php:1337
78
  msgid "What price would you feel comfortable paying?"
79
  msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
80
 
81
+ #: includes/class-freemius.php:1343
82
  msgid "I don't like to share my information with you"
83
  msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
84
 
85
+ #: includes/class-freemius.php:1364
86
  msgid "The %s didn't work"
87
  msgstr "ה%s לא עבד"
88
 
89
+ #: includes/class-freemius.php:1374
90
  msgid "I couldn't understand how to make it work"
91
  msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
92
 
93
+ #: includes/class-freemius.php:1382
94
  msgid "The %s is great, but I need specific feature that you don't support"
95
  msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
+ #: includes/class-freemius.php:1384
98
  msgid "What feature?"
99
  msgstr "איזה פיטצ'ר?"
100
 
101
+ #: includes/class-freemius.php:1388
102
  msgid "The %s is not working"
103
  msgstr "ה%s לא עובד"
104
 
105
+ #: includes/class-freemius.php:1390
106
  msgid "Kindly share what didn't work so we can fix it for future users..."
107
  msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
108
 
109
+ #: includes/class-freemius.php:1394
110
  msgid "It's not what I was looking for"
111
  msgstr "חיפשתי משהו אחר"
112
 
113
+ #: includes/class-freemius.php:1396
114
  msgid "What you've been looking for?"
115
  msgstr "מה חיפשת?"
116
 
117
+ #: includes/class-freemius.php:1400
118
  msgid "The %s didn't work as expected"
119
  msgstr "ה%s לא עבד כמצופה"
120
 
121
+ #: includes/class-freemius.php:1402
122
  msgid "What did you expect?"
123
  msgstr "למה ציפית?"
124
 
125
+ #: includes/class-freemius.php1938, templates/debug.php:20
126
  msgid "Freemius Debug"
127
  msgstr "ניפוי תקלות פרימיוס"
128
 
129
+ #: includes/class-freemius.php:2508
130
  msgid "I don't know what is cURL or how to install it, help me!"
131
  msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
132
 
133
+ #: includes/class-freemius.php:2510
134
  msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
  msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
136
 
137
+ #: includes/class-freemius.php:2517
138
  msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
  msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
+ #: includes/class-freemius.php:2619
142
  msgid "Yes - do your thing"
143
  msgstr "כן - בצעו את מה שצריך"
144
 
145
+ #: includes/class-freemius.php:2624
146
  msgid "No - just deactivate"
147
  msgstr "לא - פשוט כבה"
148
 
149
+ #: includes/class-freemius.php2669, includes/class-freemius.php3134,
150
+ #: includes/class-freemius.php3988, includes/class-freemius.php7270,
151
+ #: includes/class-freemius.php9137, includes/class-freemius.php9193,
152
+ #: includes/class-freemius.php9254, includes/class-freemius.php11154,
153
+ #: includes/class-freemius.php11165, includes/class-freemius.php11614,
154
+ #: includes/class-freemius.php11632, includes/class-freemius.php11730,
155
+ #: includes/class-freemius.php12405, templates/add-ons.php:43
156
  msgctxt "exclamation"
157
  msgid "Oops"
158
  msgstr "אופס"
159
 
160
+ #: includes/class-freemius.php:2736
161
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
  msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
163
 
164
+ #: includes/class-freemius.php:3131
165
  msgctxt "addonX cannot run without pluginY"
166
  msgid "%s cannot run without %s."
167
  msgstr "%s לא יכול לעבוד ללא %s."
168
 
169
+ #: includes/class-freemius.php:3132
170
  msgctxt "addonX cannot run..."
171
  msgid "%s cannot run without the plugin."
172
  msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
173
 
174
+ #: includes/class-freemius.php3253, includes/class-freemius.php3278,
175
+ #: includes/class-freemius.php:11703
176
  msgid "Unexpected API error. Please contact the %s's author with the following error."
177
  msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
+ #: includes/class-freemius.php:3686
180
  msgid "Premium %s version was successfully activated."
181
  msgstr "Premium %s version was successfully activated."
182
 
183
+ #: includes/class-freemius.php3688, includes/class-freemius.php:4913
184
  msgctxt ""
185
  msgid "W00t"
186
  msgstr "W00t"
187
 
188
+ #: includes/class-freemius.php:3703
189
  msgid "You have a %s license."
190
  msgstr "יש לך רישיון %s."
191
 
192
+ #: includes/class-freemius.php3707, includes/class-freemius.php8841,
193
+ #: includes/class-freemius.php8850, includes/class-freemius.php11105,
194
+ #: includes/class-freemius.php11318, includes/class-freemius.php11380,
195
+ #: includes/class-freemius.php:11492
196
  msgctxt "interjection expressing joy or exuberance"
197
  msgid "Yee-haw"
198
  msgstr "יששש"
199
 
200
+ #: includes/class-freemius.php:3971
201
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
  msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
203
 
204
+ #: includes/class-freemius.php:3975
205
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
  msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
207
 
208
+ #: includes/class-freemius.php3984, templates/account.php692,
209
  #: templates/add-ons.php:99
210
  msgid "More information about %s"
211
  msgstr "מידע נוסף אודות %s"
212
 
213
+ #: includes/class-freemius.php:3985
214
  msgid "Purchase License"
215
  msgstr "קניית רישיון"
216
 
217
+ #: includes/class-freemius.php4422, templates/connect.php:136
218
  msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
  msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
220
 
221
+ #: includes/class-freemius.php:4426
222
  msgid "start the trial"
223
  msgstr "התחל תקופת ניסיון"
224
 
225
+ #: includes/class-freemius.php4427, templates/connect.php:140
226
  msgid "complete the install"
227
  msgstr "השלם התקנה"
228
 
229
+ #: includes/class-freemius.php:4506
230
  msgid "You are just one step away - %s"
231
  msgstr "You are just one step away - %s"
232
 
233
+ #: includes/class-freemius.php:4509
234
  msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "השלם הפעלת \"%s\" עכשיו"
237
 
238
+ #: includes/class-freemius.php:4523
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
+ #: includes/class-freemius.php:4527
243
  msgid "Opt in to make \"%s\" Better!"
244
  msgstr "Opt in to make \"%s\" Better!"
245
 
246
+ #: includes/class-freemius.php:4912
247
  msgid "The upgrade of %s was successfully completed."
248
  msgstr "The upgrade of %s was successfully completed."
249
 
250
+ #: includes/class-freemius.php5997, includes/class-fs-plugin-updater.php358,
251
  #: includes/class-fs-plugin-updater.php510,
252
  #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
253
  msgid "Add-On"
254
  msgstr "Add-On"
255
 
256
+ #: includes/class-freemius.php5999, templates/debug.php303,
257
  #: templates/debug.php:413
258
  msgid "Plugin"
259
  msgstr "תוסף"
260
 
261
+ #: includes/class-freemius.php6000, templates/debug.php303,
262
  #: templates/debug.php413, templates/forms/deactivation/form.php:64
263
  msgid "Theme"
264
  msgstr "תבנית"
265
 
266
+ #: includes/class-freemius.php:7257
267
  msgid "We couldn't find your email address in the system, are you sure it's the right address?"
268
  msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
269
 
270
+ #: includes/class-freemius.php:7259
271
  msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
272
  msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
273
 
274
+ #: includes/class-freemius.php:7468
275
  msgid "Account is pending activation."
276
  msgstr "Account is pending activation."
277
 
278
+ #: includes/class-freemius.php:8825
279
  msgctxt "pluginX activation was successfully..."
280
  msgid "%s activation was successfully completed."
281
  msgstr "הפעלת %s הושלמה בהצלחה."
282
 
283
+ #: includes/class-freemius.php:8837
284
  msgid "Your account was successfully activated with the %s plan."
285
  msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
286
 
287
+ #: includes/class-freemius.php8846, includes/class-freemius.php:11376
288
  msgid "Your trial has been successfully started."
289
  msgstr "הניסיון שלך הופעל בהצלחה."
290
 
291
+ #: includes/class-freemius.php9135, includes/class-freemius.php9191,
292
+ #: includes/class-freemius.php:9252
293
  msgid "Couldn't activate %s."
294
  msgstr "לא ניתן להפעיל את %s."
295
 
296
+ #: includes/class-freemius.php9136, includes/class-freemius.php9192,
297
+ #: includes/class-freemius.php:9253
298
  msgid "Please contact us with the following message:"
299
  msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
300
 
301
+ #: includes/class-freemius.php9511, includes/class-freemius.php:13334
302
  msgid "Upgrade"
303
  msgstr "שדרג"
304
 
305
+ #: includes/class-freemius.php:9517
306
  msgid "Start Trial"
307
  msgstr "התחל תקופת ניסיון"
308
 
309
+ #: includes/class-freemius.php:9519
310
  msgid "Pricing"
311
  msgstr "מחירון"
312
 
313
+ #: includes/class-freemius.php9559, includes/class-freemius.php:9561
314
  msgid "Affiliation"
315
  msgstr "אפיליאציה"
316
 
317
+ #: includes/class-freemius.php9581, includes/class-freemius.php9583,
318
  #: templates/account.php79, templates/debug.php:281
319
  msgid "Account"
320
  msgstr "חשבון"
321
 
322
+ #: includes/class-freemius.php9594, includes/class-freemius.php9596,
323
  #: includes/customizer/class-fs-customizer-support-section.php:60
324
  msgid "Contact Us"
325
  msgstr "יצירת קשר"
326
 
327
+ #: includes/class-freemius.php9606, includes/class-freemius.php9608,
328
+ #: includes/class-freemius.php13344, templates/account.php:68
329
  msgid "Add-Ons"
330
  msgstr "Add-Ons"
331
 
332
+ #: includes/class-freemius.php9639, templates/pricing.php:92
333
  msgctxt "noun"
334
  msgid "Pricing"
335
  msgstr "מחירון"
336
 
337
+ #: includes/class-freemius.php9819,
338
  #: includes/customizer/class-fs-customizer-support-section.php:67
339
  msgid "Support Forum"
340
  msgstr "פורום תמיכה"
341
 
342
+ #: includes/class-freemius.php:10559
343
  msgid "Your email has been successfully verified - you are AWESOME!"
344
  msgstr "Your email has been successfully verified - you are AWESOME!"
345
 
346
+ #: includes/class-freemius.php:10560
347
  msgctxt "a positive response"
348
  msgid "Right on"
349
  msgstr "מעולה"
350
 
351
+ #: includes/class-freemius.php:11096
352
  msgid "Your %s Add-on plan was successfully upgraded."
353
  msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
354
 
355
+ #: includes/class-freemius.php:11098
356
  msgid "%s Add-on was successfully purchased."
357
  msgstr "ההרחבה %s נרכשה בהצלחה."
358
 
359
+ #: includes/class-freemius.php:11101
360
  msgid "Download the latest version"
361
  msgstr "הורד את הגרסה האחרונה"
362
 
363
+ #: includes/class-freemius.php:11150
364
  msgctxt "%1s - plugin title, %2s - API domain"
365
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
366
  msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
367
 
368
+ #: includes/class-freemius.php11153, includes/class-freemius.php11463,
369
+ #: includes/class-freemius.php:11528
370
  msgid "Error received from the server:"
371
  msgstr "הוחזרה שגיאה מהשרת:"
372
 
373
+ #: includes/class-freemius.php:11164
374
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
  msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
376
 
377
+ #: includes/class-freemius.php11281, includes/class-freemius.php11468,
378
+ #: includes/class-freemius.php:11511
379
  msgctxt ""
380
  msgid "Hmm"
381
  msgstr "Hmm"
382
 
383
+ #: includes/class-freemius.php:11294
384
  msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
  msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
386
 
387
+ #: includes/class-freemius.php11295, templates/account.php70,
388
  #: templates/add-ons.php:130
389
  msgctxt "trial period"
390
  msgid "Trial"
391
  msgstr "ניסיון"
392
 
393
+ #: includes/class-freemius.php:11300
394
  msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
395
  msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
396
 
397
+ #: includes/class-freemius.php11304, includes/class-freemius.php:11358
398
  msgid "Please contact us here"
399
  msgstr "אנא צור איתנו קשר כאן"
400
 
401
+ #: includes/class-freemius.php:11314
402
  msgid "Your plan was successfully upgraded."
403
  msgstr "החבילה שודרגה בהצלחה."
404
 
405
+ #: includes/class-freemius.php:11331
406
  msgid "Your plan was successfully changed to %s."
407
  msgstr "החבילה עודכנה בהצלחה אל %s."
408
 
409
+ #: includes/class-freemius.php:11346
410
  msgid "Your license has expired. You can still continue using the free %s forever."
411
  msgstr "Your license has expired. You can still continue using the free %s forever."
412
 
413
+ #: includes/class-freemius.php:11354
414
  msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
415
  msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
416
 
417
+ #: includes/class-freemius.php:11367
418
  msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
419
  msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
420
 
421
+ #: includes/class-freemius.php:11389
422
  msgid "Your trial has expired. You can still continue using all our free features."
423
  msgstr "תקופת הניסיון נגמרה. ביכולתך להמשיך להשתמש בכל הפיטצ'רים החינאמיים."
424
 
425
+ #: includes/class-freemius.php:11459
426
  msgid "It looks like the license could not be activated."
427
  msgstr "נראה שלא ניתן להפעיל את הרישיון."
428
 
429
+ #: includes/class-freemius.php:11489
430
  msgid "Your license was successfully activated."
431
  msgstr "הרישיון הופעל בהצלחה."
432
 
433
+ #: includes/class-freemius.php:11515
434
  msgid "It looks like your site currently doesn't have an active license."
435
  msgstr "נראה לאתר עדיין אין רישיון פעיל."
436
 
437
+ #: includes/class-freemius.php:11527
438
  msgid "It looks like the license deactivation failed."
439
  msgstr "נראה שניתוק הרישיון נכשל."
440
 
441
+ #: includes/class-freemius.php:11554
442
  msgid "Your license was successfully deactivated, you are back to the %s plan."
443
  msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
444
 
445
+ #: includes/class-freemius.php:11555
446
  msgid "O.K"
447
  msgstr "אוקיי"
448
 
449
+ #: includes/class-freemius.php:11603
450
  msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
451
  msgstr "Your plan was successfully downgraded. Your %s plan license will expire in %s."
452
 
453
+ #: includes/class-freemius.php:11613
454
  msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
455
  msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
456
 
457
+ #: includes/class-freemius.php:11637
458
  msgid "You are already running the %s in a trial mode."
459
  msgstr "You are already running the %s in a trial mode."
460
 
461
+ #: includes/class-freemius.php:11648
462
  msgid "You already utilized a trial before."
463
  msgstr "הניסיון כבר נוצל בעבר."
464
 
465
+ #: includes/class-freemius.php:11662
466
  msgid "Plan %s do not exist, therefore, can't start a trial."
467
  msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
468
 
469
+ #: includes/class-freemius.php:11673
470
  msgid "Plan %s does not support a trial period."
471
  msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
472
 
473
+ #: includes/class-freemius.php:11684
474
  msgid "None of the %s's plans supports a trial period."
475
  msgstr "None of the %s's plans supports a trial period."
476
 
477
+ #: includes/class-freemius.php:11734
478
  msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
479
  msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
480
 
481
+ #: includes/class-freemius.php:11785
482
  msgid "Your %s free trial was successfully cancelled."
483
  msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
484
 
485
+ #: includes/class-freemius.php:11793
486
  msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
487
  msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
488
 
489
+ #: includes/class-freemius.php:12032
490
  msgid "Version %s was released."
491
  msgstr "גרסה %s הושקה."
492
 
493
+ #: includes/class-freemius.php:12032
494
  msgid "Please download %s."
495
  msgstr "נא להוריד את %s."
496
 
497
+ #: includes/class-freemius.php:12039
498
  msgid "the latest %s version here"
499
  msgstr "גרסת ה-%s האחרונה כאן"
500
 
501
+ #: includes/class-freemius.php:12044
502
  msgid "New"
503
  msgstr "חדש"
504
 
505
+ #: includes/class-freemius.php:12049
506
  msgid "Seems like you got the latest release."
507
  msgstr "נראה שיש לך את הגרסה האחרונה."
508
 
509
+ #: includes/class-freemius.php:12050
510
  msgid "You are all good!"
511
  msgstr "את\\ה מסודר!"
512
 
513
+ #: includes/class-freemius.php:12316
514
  msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
515
  msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
516
 
517
+ #: includes/class-freemius.php:12491
518
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
519
  msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
520
 
521
+ #: includes/class-freemius.php:12497
522
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
523
  msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
524
 
525
+ #: includes/class-freemius.php:12502
526
  msgid "%s is the new owner of the account."
527
  msgstr "%s הינו הבעלים החד של חשבון זה."
528
 
529
+ #: includes/class-freemius.php:12504
530
  msgctxt "as congratulations"
531
  msgid "Congrats"
532
  msgstr "מזל טוב"
533
 
534
+ #: includes/class-freemius.php:12524
535
  msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
536
  msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
537
 
538
+ #: includes/class-freemius.php:12525
539
  msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
540
  msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
541
 
542
+ #: includes/class-freemius.php:12532
543
  msgid "Change Ownership"
544
  msgstr "עדכון בעלות"
545
 
546
+ #: includes/class-freemius.php:12540
547
  msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
548
  msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
549
 
550
+ #: includes/class-freemius.php:12552
551
  msgid "Please provide your full name."
552
  msgstr "נא למלא את שמך המלא."
553
 
554
+ #: includes/class-freemius.php:12557
555
  msgid "Your name was successfully updated."
556
  msgstr "שמך עודכן בהצלחה."
557
 
558
+ #: includes/class-freemius.php:12618
559
  msgid "You have successfully updated your %s."
560
  msgstr "עידכנת בהצלחה את ה%s."
561
 
562
+ #: includes/class-freemius.php:12756
563
  msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
564
  msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
565
 
566
+ #: includes/class-freemius.php:12757
567
  msgctxt "advance notice of something that will need attention."
568
  msgid "Heads up"
569
  msgstr "לתשמות לבך"
570
 
571
+ #: includes/class-freemius.php:13075
572
  msgid "Awesome"
573
  msgstr "אדיר"
574
 
575
+ #: includes/class-freemius.php:13115
576
  msgctxt "exclamation"
577
  msgid "Hey"
578
  msgstr "היי"
579
 
580
+ #: includes/class-freemius.php:13115
581
  msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
582
  msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
583
 
584
+ #: includes/class-freemius.php:13123
585
  msgid "No commitment for %s days - cancel anytime!"
586
  msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
587
 
588
+ #: includes/class-freemius.php:13124
589
  msgid "No credit card required"
590
  msgstr "לא נדרש כרטיס אשראי"
591
 
592
+ #: includes/class-freemius.php13131, templates/forms/trial-start.php:53
593
  msgctxt "call to action"
594
  msgid "Start free trial"
595
  msgstr "התחלת ניסיון חינם"
596
 
597
+ #: includes/class-freemius.php:13208
598
  msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
599
  msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
600
 
601
+ #: includes/class-freemius.php:13217
602
  msgid "Learn more"
603
  msgstr "Learn more"
604
 
605
+ #: includes/class-freemius.php13373, templates/account.php330,
606
  #: templates/connect.php309, templates/forms/license-activation.php:24
607
  msgid "Activate License"
608
  msgstr "הפעלת רישיון"
609
 
610
+ #: includes/class-freemius.php13374, templates/account.php:393
611
  msgid "Change License"
612
  msgstr "שינוי רישיון"
613
 
614
+ #: includes/class-freemius.php:13435
615
  msgid "Opt Out"
616
  msgstr "Opt Out"
617
 
618
+ #: includes/class-freemius.php13437, includes/class-freemius.php:13442
619
  msgid "Opt In"
620
  msgstr "Opt In"
621
 
622
+ #: includes/class-freemius.php:13630
623
  msgid "Please follow these steps to complete the upgrade"
624
  msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
625
 
626
+ #: includes/class-freemius.php:13633
627
  msgid "Download the latest %s version"
628
  msgstr "הורד\\י את גרסת ה-%s העדכנית"
629
 
630
+ #: includes/class-freemius.php:13637
631
  msgid "Upload and activate the downloaded version"
632
  msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
633
 
634
+ #: includes/class-freemius.php:13639
635
  msgid "How to upload and activate?"
636
  msgstr "איך להעלות ולהפעיל?"
637
 
638
+ #: includes/class-freemius.php:13798
639
  msgid "Auto installation only works for opted-in users."
640
  msgstr "Auto installation only works for opted-in users."
641
 
642
+ #: includes/class-freemius.php13808, includes/class-freemius.php13841,
643
  #: includes/class-fs-plugin-updater.php490,
644
  #: includes/class-fs-plugin-updater.php:504
645
  msgid "Invalid module ID."
646
  msgstr "Invalid module ID."
647
 
648
+ #: includes/class-freemius.php13817, includes/class-fs-plugin-updater.php:524
649
  msgid "Premium version already active."
650
  msgstr "Premium version already active."
651
 
652
+ #: includes/class-freemius.php:13824
653
  msgid "You do not have a valid license to access the premium version."
654
  msgstr "You do not have a valid license to access the premium version."
655
 
656
+ #: includes/class-freemius.php:13831
657
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
658
  msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
659
 
660
+ #: includes/class-freemius.php13849, includes/class-fs-plugin-updater.php:523
661
  msgid "Premium add-on version already installed."
662
  msgstr "Premium add-on version already installed."
663
 
664
+ #: includes/class-freemius.php:14194
665
  msgid "View paid features"
666
  msgstr "View paid features"
667
 
freemius/languages/freemius-it_IT.mo CHANGED
Binary file
freemius/languages/freemius-it_IT.po CHANGED
@@ -10,7 +10,7 @@ msgstr ""
10
  "Project-Id-Version: WordPress SDK\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "POT-Creation-Date: \n"
13
- "PO-Revision-Date: 2017-08-24 12:32+0000\n"
14
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
15
  "Language: it_IT\n"
16
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
@@ -19,1811 +19,2020 @@ msgstr ""
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "MIME-Version: 1.0\n"
21
  "X-Poedit-Basepath: ..\n"
22
- "X-Poedit-KeywordsList: _fs_text;_fs_echo;_fs_esc_attr;_fs_esc_attr_echo;_fs_esc_html;_fs_esc_html_echo;_fs_x:1,2c;_fs_ex:1,2c;_fs_esc_attr_x:1,2c;_fs_esc_html_x:1,2c;_fs_n:1,2;_fs_n_noop:1,2;_fs_nx:1,2,4c;_fs_nx_noop:1,2,3c\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
- #: includes/i18n.php:37
28
- msgid "Account"
29
- msgstr "Account"
30
-
31
- #: includes/i18n.php:38
32
- msgid "Add-On"
33
- msgstr "Add-On"
34
 
35
- #: includes/i18n.php:39
36
- msgid "Contact Us"
37
- msgstr "Contattaci"
38
 
39
- #: includes/i18n.php:40
40
- msgid "Contact Support"
41
- msgstr "Contatta il supporto"
42
 
43
- #: includes/i18n.php:41
44
- msgid "Change Ownership"
45
- msgstr "Cambia Proprietario"
46
 
47
- #: includes/i18n.php:42
48
- msgid "Support"
49
- msgstr "Supporto"
50
 
51
- #: includes/i18n.php:43
52
- msgid "Support Forum"
53
- msgstr "Forum di supporto"
54
 
55
- #: includes/i18n.php:44
56
- msgid "Add-Ons"
57
- msgstr "Add-Ons"
58
 
59
- #: includes/i18n.php:45
60
- msgctxt "verb"
61
- msgid "Upgrade"
62
- msgstr "Aggiornamento"
63
 
64
- #: includes/i18n.php:46
65
- msgid "Awesome"
66
- msgstr "Fantastico"
67
 
68
- #: includes/i18n.php:47
69
- msgctxt "noun"
70
- msgid "Pricing"
71
- msgstr "Prezzi"
72
 
73
- #: includes/i18n.php:48
74
- msgctxt "noun"
75
- msgid "Price"
76
- msgstr "Prezzo"
77
 
78
- #: includes/i18n.php:49
79
- msgid "Unlimited Updates"
80
- msgstr "Aggiornamenti Illimitati"
81
 
82
- #: includes/i18n.php:50
83
- msgctxt "verb"
84
- msgid "Downgrade"
85
- msgstr "Downgrade"
86
 
87
- #: includes/i18n.php:51
88
- msgctxt "verb"
89
- msgid "Cancel Subscription"
90
- msgstr "Annulla sottoscrizione"
91
 
92
- #: includes/i18n.php:52
93
- msgid "Cancel Trial"
94
- msgstr "Annulla prova gratuita"
95
 
96
- #: includes/i18n.php:53
97
- msgid "Free Trial"
98
- msgstr "Prova gratuita"
99
 
100
- #: includes/i18n.php:54
101
- msgid "Start my free %s"
102
- msgstr "Inizia la mia %s"
103
 
104
- #: includes/i18n.php:55
105
- msgid "No commitment for %s - cancel anytime"
106
- msgstr "Nessun impegno con %s - cancella quando vuoi"
107
 
108
- #: includes/i18n.php:56
109
- msgid "After your free %s, pay as little as %s"
110
- msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
111
 
112
- #: includes/i18n.php:57
113
- msgid "Details"
114
- msgstr "Dettagli"
115
 
116
- #: includes/i18n.php:58
117
- msgid "Account Details"
118
- msgstr "Dettagli dell'account"
119
 
120
- #: includes/i18n.php:59
121
- msgctxt "verb"
122
- msgid "Delete"
123
- msgstr "Elimina"
124
 
125
- #: includes/i18n.php:60
126
- msgctxt "verb"
127
- msgid "Show"
128
- msgstr "Mostra"
129
 
130
- #: includes/i18n.php:61
131
- msgctxt "verb"
132
- msgid "Hide"
133
- msgstr "Nascondi"
134
 
135
- #: includes/i18n.php:62
136
- msgctxt "verb"
137
- msgid "Edit"
138
- msgstr "Modifica"
139
 
140
- #: includes/i18n.php:63
141
- msgctxt "verb"
142
- msgid "Update"
143
- msgstr "Aggiorna"
144
 
145
- #: includes/i18n.php:64
146
- msgid "Date"
147
- msgstr "Data"
148
 
149
- #: includes/i18n.php:65
150
- msgid "Amount"
151
- msgstr "Importo"
152
 
153
- #: includes/i18n.php:66
154
- msgid "Invoice"
155
- msgstr "Fattura"
156
 
157
- #: includes/i18n.php:67
158
- msgid "Billing"
159
- msgstr "Fatturazione"
160
 
161
- #: includes/i18n.php:68
162
- msgid "Payments"
163
- msgstr "Pagamenti"
164
 
165
- #: includes/i18n.php:69
166
- msgid "Delete Account"
167
- msgstr "Elimina Account"
 
 
 
 
 
 
 
168
 
169
- #: includes/i18n.php:70
170
- msgctxt "as close a window"
171
- msgid "Dismiss"
172
- msgstr "Chiudi"
173
 
174
- #: includes/i18n.php:71
175
- msgctxt "as product pricing plan"
176
- msgid "Plan"
177
- msgstr "Piano"
178
 
179
- #: includes/i18n.php:72
180
- msgid "Change Plan"
181
- msgstr "Cambia piano"
 
182
 
183
- #: includes/i18n.php:73
184
- msgctxt "as download professional version"
185
- msgid "Download %s Version"
186
- msgstr "Scarica la versione %s"
187
 
188
- #: includes/i18n.php:74
189
- msgctxt "as download professional version now"
190
- msgid "Download %s version now"
191
- msgstr "Scarica la versione %s ora"
192
 
193
- #: includes/i18n.php:75
194
- msgctxt "as download latest version"
195
- msgid "Download Latest"
196
- msgstr "Scarica l'ultima versione"
197
 
198
- #: includes/i18n.php:76
199
- msgctxt "E.g. you have a professional license."
200
  msgid "You have a %s license."
201
  msgstr "Hai la licenza %s."
202
 
203
- #: includes/i18n.php:77
204
- msgid "New"
205
- msgstr "Nuovo"
206
-
207
- #: includes/i18n.php:78
208
- msgid "Free"
209
- msgstr "Gratuito"
210
 
211
- #: includes/i18n.php:79
212
- msgctxt "as trial plan"
213
- msgid "Trial"
214
- msgstr "Prova gratuita"
215
 
216
- #: includes/i18n.php:80
217
- msgctxt "as starting a trial plan"
218
- msgid "Start Trial"
219
- msgstr "Inizia il periodo di prova gratuito"
220
 
221
- #: includes/i18n.php:81
222
- msgctxt "verb"
223
- msgid "Purchase"
224
- msgstr "Acquisto"
225
 
226
- #: includes/i18n.php:82
227
  msgid "Purchase License"
228
  msgstr "Acquista licenza"
229
 
230
- #: includes/i18n.php:83
231
- msgctxt "verb"
232
- msgid "Buy"
233
- msgstr "Compra"
234
-
235
- #: includes/i18n.php:84
236
- msgid "Buy License"
237
- msgstr "Compra licenza"
238
-
239
- #: includes/i18n.php:85
240
- msgid "Single Site License"
241
- msgstr "Licenza per sito singolo"
242
-
243
- #: includes/i18n.php:86
244
- msgid "Unlimited Licenses"
245
- msgstr "Licenze illimitate"
246
-
247
- #: includes/i18n.php:87
248
- msgid "Up to %s Sites"
249
- msgstr "Fino a %s siti"
250
-
251
- #: includes/i18n.php:88
252
- msgid "%sRenew your license now%s to access version %s features and support."
253
- msgstr "%sRinnova la tua licenza ora%s per accedere a funzionalità e supporto della versione %s."
254
 
255
- #: includes/i18n.php:89
256
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
257
- msgstr "Inserisci qui sotto l'indirizzo email che hai usato per registrare l'aggiornamento e ti invieremo di nuovo la chiave di licenza."
258
 
259
- #: includes/i18n.php:90
260
- msgctxt "e.g. Professional Plan"
261
- msgid "%s Plan"
262
- msgstr "Piano %s"
263
 
264
- #: includes/i18n.php:91
265
  msgid "You are just one step away - %s"
266
  msgstr "Sei a un passo dalla fine - %s"
267
 
268
- #: includes/i18n.php:92
269
- msgctxt "%s - plugin name. As complete \"Jetpack\" activation now"
270
  msgid "Complete \"%s\" Activation Now"
271
  msgstr "Completa l'attivazione di \"%s\" ora"
272
 
273
- #: includes/i18n.php:94
274
  msgid "We made a few tweaks to the %s, %s"
275
  msgstr "We made a few tweaks to the %s, %s"
276
 
277
- #: includes/i18n.php:95
278
- msgid "Opt-in to make \"%s\" Better!"
279
- msgstr "Contribuisci a rendere \"%s\" migliore!"
280
 
281
- #: includes/i18n.php:96
282
- msgid "Error"
283
- msgstr "Errore"
284
 
285
- #: includes/i18n.php:97
286
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
287
- msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
 
 
288
 
289
- #: includes/i18n.php:100
290
- msgctxt "as expiration date"
291
- msgid "Expiration"
292
- msgstr "Scadenza"
293
 
294
- #: includes/i18n.php:101
295
- msgctxt "as software license"
296
- msgid "License"
297
- msgstr "Licenza"
298
 
299
- #: includes/i18n.php:102
300
- msgid "not verified"
301
- msgstr "non verificato"
302
 
303
- #: includes/i18n.php:103
304
- msgid "Verify Email"
305
- msgstr "Verifica email"
306
 
307
- #: includes/i18n.php:104
308
- msgctxt "e.g. expires in 2 months"
309
- msgid "Expires in %s"
310
- msgstr "Scade in %s"
311
 
312
- #: includes/i18n.php:105
313
- msgctxt "e.g. auto renews in 2 months"
314
- msgid "Auto renews in %s"
315
- msgstr "Rinnovo automatico in %s"
316
 
317
- #: includes/i18n.php:106
318
- msgid "No expiration"
319
- msgstr "Nessuna scadenza"
320
 
321
- #: includes/i18n.php:107
322
- msgid "Expired"
323
- msgstr "Scaduto"
324
 
325
- #: includes/i18n.php:108
326
- msgid "Cancelled"
327
- msgstr "Annullato"
 
328
 
329
- #: includes/i18n.php:109
330
- msgctxt "e.g. In 2 hours"
331
- msgid "In %s"
332
- msgstr "In %s"
333
 
334
- #: includes/i18n.php:110
335
- msgctxt "e.g. 2 min ago"
336
- msgid "%s ago"
337
- msgstr "%s fa"
338
 
339
- #: includes/i18n.php:112
340
- msgid "%s or higher"
341
- msgstr "%s o superiore"
342
 
343
- #: includes/i18n.php:113
344
- msgctxt "as plugin version"
345
- msgid "Version"
346
- msgstr "Versione"
347
 
348
- #: includes/i18n.php:114
349
- msgid "Name"
350
- msgstr "Nome"
351
 
352
- #: includes/i18n.php:115
353
- msgid "Email"
354
- msgstr "Email"
 
355
 
356
- #: includes/i18n.php:116
357
- msgid "Email address"
358
- msgstr "Indirizzo email"
 
359
 
360
- #: includes/i18n.php:117
361
- msgid "Verified"
362
- msgstr "Verificato"
 
363
 
364
- #: includes/i18n.php:118
365
- msgid "Module"
366
- msgstr "Modulo"
 
367
 
368
- #: includes/i18n.php:119
369
- msgid "Module Type"
370
- msgstr "Tipo di modulo"
 
371
 
372
- #: includes/i18n.php:120
373
- msgid "Plugin"
374
- msgstr "Plugin"
375
 
376
- #: includes/i18n.php:121
377
- msgid "Plugins"
378
- msgstr "Plugin"
 
379
 
380
- #: includes/i18n.php:122
381
- msgid "Theme"
382
- msgstr "Tema"
383
 
384
- #: includes/i18n.php:123
385
- msgid "Themes"
386
- msgstr "Temi"
387
 
388
- #: includes/i18n.php:124
389
- msgctxt "as file/folder path"
390
- msgid "Path"
391
- msgstr "Percorso"
392
 
393
- #: includes/i18n.php:125
394
- msgid "Title"
395
- msgstr "Titolo"
 
396
 
397
- #: includes/i18n.php:126
398
- msgid "Free version"
399
- msgstr "Versione gratuita"
 
400
 
401
- #: includes/i18n.php:127
402
- msgid "Premium version"
403
- msgstr "Versione premium"
404
 
405
- #: includes/i18n.php:128
406
- msgctxt "as WP plugin slug"
407
- msgid "Slug"
408
- msgstr "Slug"
 
409
 
410
- #: includes/i18n.php:129
411
- msgid "ID"
412
- msgstr "ID"
413
 
414
- #: includes/i18n.php:130
415
- msgid "Users"
416
- msgstr "Utenti"
 
 
417
 
418
- #: includes/i18n.php:131
419
- msgid "%s Installs"
420
- msgstr "%s Installazioni"
421
 
422
- #: includes/i18n.php:132
423
- msgctxt "like websites"
424
- msgid "Sites"
425
- msgstr "Siti"
426
 
427
- #: includes/i18n.php:133
428
- msgid "User ID"
429
- msgstr "ID utente"
430
 
431
- #: includes/i18n.php:134
432
- msgid "Site ID"
433
- msgstr "ID del sito"
434
 
435
- #: includes/i18n.php:135
436
- msgid "Public Key"
437
- msgstr "Chiave pubblica"
438
 
439
- #: includes/i18n.php:136
440
- msgid "Secret Key"
441
- msgstr "Chiave segreta"
442
 
443
- #: includes/i18n.php:137
444
- msgctxt "as secret encryption key missing"
445
- msgid "No Secret"
446
- msgstr "Nessuna chiave"
447
 
448
- #: includes/i18n.php:138
449
- msgid "No ID"
450
- msgstr "Nessun ID"
451
 
452
- #: includes/i18n.php:139
453
- msgctxt "as synchronize license"
454
- msgid "Sync License"
455
- msgstr "Sincronizza la licenza"
456
 
457
- #: includes/i18n.php:140
458
- msgctxt "as synchronize"
459
- msgid "Sync"
460
- msgstr "Sincronizza"
461
 
462
- #: includes/i18n.php:141
463
- msgid "Activate License"
464
- msgstr "Attiva licenza"
465
 
466
- #: includes/i18n.php:142
467
- msgid "Activate Free Version"
468
- msgstr "Attiva versione gratuita"
469
 
470
- #: includes/i18n.php:143
471
- msgid "Please enter the license key that you received in the email right after the purchase:"
472
- msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
 
474
- #: includes/i18n.php:144
475
- msgid "Activating license..."
476
- msgstr "Sto attivando la licenza..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
477
 
478
- #: includes/i18n.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid "Change License"
480
  msgstr "Cambia licenza"
481
 
482
- #: includes/i18n.php:146
483
- msgid "Update License"
484
- msgstr "Aggiorna licenza"
485
 
486
- #: includes/i18n.php:147
487
- msgid "Deactivate License"
488
- msgstr "Disattiva licenza"
489
 
490
- #: includes/i18n.php:148
491
- msgid "Activate"
492
- msgstr "Attiva"
493
 
494
- #: includes/i18n.php:149
495
- msgid "Deactivate"
496
- msgstr "Disattiva"
497
 
498
- #: includes/i18n.php:150
499
- msgid "Skip & Deactivate"
500
- msgstr "Salta e disattiva"
501
 
502
- #: includes/i18n.php:151
503
- msgid "Skip & %s"
504
- msgstr "Salta & %s"
505
 
506
- #: includes/i18n.php:152
507
- msgid "No - just deactivate"
508
- msgstr "No - disattiva e basta"
509
 
510
- #: includes/i18n.php:153
511
- msgid "Yes - do your thing"
512
- msgstr "Sì - fai pure"
 
 
513
 
514
- #: includes/i18n.php:154
515
- msgctxt "active mode"
516
- msgid "Active"
517
- msgstr "Attiva"
518
 
519
- #: includes/i18n.php:155
520
- msgctxt "is active mode?"
521
- msgid "Is Active"
522
- msgstr "è attiva"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
 
524
- #: includes/i18n.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
525
  msgid "Install Now"
526
  msgstr "Installa ora"
527
 
528
- #: includes/i18n.php:157
529
  msgid "Install Update Now"
530
  msgstr "Installa l'aggiornamento ora"
531
 
532
- #: includes/i18n.php:158
533
- msgid "More information about %s"
534
- msgstr "Ulteriori informazioni su %s"
535
-
536
- #: includes/i18n.php:159
537
- msgid "Localhost"
538
- msgstr "Localhost"
539
 
540
- #: includes/i18n.php:160
541
- msgctxt "as activate Professional plan"
542
- msgid "Activate %s Plan"
543
- msgstr "Attivare il piano %s"
544
 
545
- #: includes/i18n.php:161
546
- msgctxt "as 5 licenses left"
547
- msgid "%s left"
548
- msgstr "%s rimanenti"
549
 
550
- #: includes/i18n.php:162
551
- msgid "Last license"
552
- msgstr "Ultima licenza"
 
553
 
554
- #: includes/i18n.php:163
555
- msgid "What is your %s?"
556
- msgstr "Qual è il tuo %s?"
 
557
 
558
- #: includes/i18n.php:164
559
- msgid "Activate this add-on"
560
- msgstr "Attivare questo addon"
 
561
 
562
- #: includes/i18n.php:165
563
- msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
564
- msgstr "La disattivazione della licenza bloccherà tutte le funzionalità premium, ma vi permetterà di attivare la licenza su un altro sito. Sei sicuro di voler procedere?"
 
565
 
566
- #: includes/i18n.php:166
567
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
568
- msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
 
569
 
570
- #: includes/i18n.php:167
571
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
572
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
 
573
 
574
- #: includes/i18n.php:168
575
- msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
576
- msgstr "Effettuare il downgrade del piano interromperà immediatamente tutti i futuri pagamenti ricorrenti e la licenza del piano %s scadrà in %s."
 
577
 
578
- #: includes/i18n.php:169
579
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
580
- msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
581
 
582
- #: includes/i18n.php:170
583
- msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
584
- msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
 
585
 
586
- #: includes/i18n.php:171
587
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
588
- msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
 
589
 
590
- #: includes/i18n.php:172
591
- msgid "Are you sure you want to proceed?"
592
- msgstr "Sei sicuro di voler procedere?"
 
 
593
 
594
- #: includes/i18n.php:175
595
- msgid "Add Ons for %s"
596
- msgstr "Add-on per %s"
 
597
 
598
- #: includes/i18n.php:176
599
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
600
- msgstr "Non siamo riusciti a caricare la lista degli add-on. Si tratta probabilmente di un problema nel nostro sistema, per favore riprova tra qualche minuto."
601
 
602
- #: includes/i18n.php:178
603
- msgid "Anonymous feedback"
604
- msgstr "Feedback anonimo"
 
 
 
605
 
606
- #: includes/i18n.php:179
607
- msgid "Quick feedback"
608
- msgstr "Feedback veloce"
 
609
 
610
- #: includes/i18n.php:180
611
- msgid "If you have a moment, please let us know why you are %s"
612
- msgstr "If you have a moment, please let us know why you are %s"
 
613
 
614
- #: includes/i18n.php:181
615
- msgid "deactivating"
616
- msgstr "deactivating"
617
 
618
- #: includes/i18n.php:182
619
- msgid "Deactivation"
620
- msgstr "Deactivation"
621
 
622
- #: includes/i18n.php:183
623
- msgid "Theme Switch"
624
- msgstr "Theme Switch"
625
 
626
- #: includes/i18n.php:184
627
- msgid "switching"
628
- msgstr "switching"
 
 
629
 
630
- #: includes/i18n.php:185
631
- msgid "Switch"
632
- msgstr "Switch"
 
 
633
 
634
- #: includes/i18n.php:186
635
- msgid "Activate %s"
636
- msgstr "Activate %s"
 
637
 
638
- #: includes/i18n.php:187
639
- msgid "Yes - %s"
640
- msgstr "Yes - %s"
 
641
 
642
- #: includes/i18n.php:188
643
- msgid "Submit & %s"
644
- msgstr "Submit & %s"
645
 
646
- #: includes/i18n.php:189
647
- msgid "Cancel"
648
- msgstr "Annulla"
649
 
650
- #: includes/i18n.php:190
651
- msgid "I no longer need the %s"
652
- msgstr "I no longer need the %s"
653
 
654
- #: includes/i18n.php:191
655
- msgid "I found a better %s"
656
- msgstr "I found a better %s"
 
 
657
 
658
- #: includes/i18n.php:192
659
- msgid "I only needed the %s for a short period"
660
- msgstr "I only needed the %s for a short period"
 
661
 
662
- #: includes/i18n.php:193
663
- msgid "The %s broke my site"
664
- msgstr "The %s broke my site"
665
 
666
- #: includes/i18n.php:194
667
- msgid "The %s suddenly stopped working"
668
- msgstr "The %s suddenly stopped working"
 
669
 
670
- #: includes/i18n.php:195
671
- msgid "I can't pay for it anymore"
672
- msgstr "Non posso piú pagarlo"
673
 
674
- #: includes/i18n.php:196
675
- msgid "It's a temporary deactivation. I'm just debugging an issue."
676
- msgstr "È una disattivazione temporanea. Sto solo cercando di risolvere un problema."
677
 
678
- #: includes/i18n.php:197
679
- msgid "It's a temporary %s. I'm just debugging an issue."
680
- msgstr "It's a temporary %s. I'm just debugging an issue."
681
 
682
- #: includes/i18n.php:198
683
- msgctxt ""
684
- msgid "Other"
685
- msgstr "Other"
686
 
687
- #: includes/i18n.php:200
688
- msgid "Kindly tell us the reason so we can improve."
689
- msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
690
 
691
- #: includes/i18n.php:201
692
- msgid "What's the %s's name?"
693
- msgstr "What's the %s's name?"
694
 
695
- #: includes/i18n.php:202
696
- msgid "What price would you feel comfortable paying?"
697
- msgstr "Che prezzo ritieni opportuno pagare?"
698
 
699
- #: includes/i18n.php:203
700
- msgid "I couldn't understand how to make it work"
701
- msgstr "Non capisco come farlo funzionare"
702
 
703
- #: includes/i18n.php:204
704
- msgid "The %s is great, but I need specific feature that you don't support"
705
- msgstr "The %s is great, but I need specific feature that you don't support"
 
706
 
707
- #: includes/i18n.php:205
708
- msgid "The %s is not working"
709
- msgstr "The %s is not working"
710
 
711
- #: includes/i18n.php:206
712
- msgid "It's not what I was looking for"
713
- msgstr "Non é quello che stavo cercando"
714
 
715
- #: includes/i18n.php:207
716
- msgid "The %s didn't work as expected"
717
- msgstr "The %s didn't work as expected"
718
 
719
- #: includes/i18n.php:208
720
- msgid "What feature?"
721
- msgstr "Quale funzionalitá?"
722
 
723
- #: includes/i18n.php:209
724
- msgid "Kindly share what didn't work so we can fix it for future users..."
725
- msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
726
 
727
- #: includes/i18n.php:210
728
- msgid "What you've been looking for?"
729
- msgstr "Che cosa stai cercando?"
730
 
731
- #: includes/i18n.php:211
732
- msgid "What did you expect?"
733
- msgstr "Che cosa ti aspettavi?"
734
 
735
- #: includes/i18n.php:212
736
- msgid "The %s didn't work"
737
- msgstr "The %s didn't work"
738
 
739
- #: includes/i18n.php:213
740
- msgid "I don't like to share my information with you"
741
- msgstr "Non voglio condividere i miei dati con te"
 
742
 
743
- #: includes/i18n.php:214
744
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
745
- msgstr "Potresti non averci fatto caso, ma non sei obbligato a condividere i tuoi dati e puoi semplicemente %s la tua partecipazione."
746
 
747
- #: includes/i18n.php:218
748
- msgctxt "greeting"
749
- msgid "Hey %s,"
750
- msgstr "Hey %s,"
751
 
752
- #: includes/i18n.php:219
753
- msgctxt "a greeting. E.g. Thanks John!"
754
- msgid "Thanks %s!"
755
- msgstr "Grazie %s!"
756
 
757
- #: includes/i18n.php:220
758
- msgid "Never miss an important update - opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
759
- msgstr "Non perdere nessun aggiornamento importante - iscriviti per ricevere notifiche su aggiornamenti relativi alla sicurezza e nuove versioni, oltre al tracciamento di diagnostica non sensibile con %4$s."
760
 
761
- #: includes/i18n.php:221
762
- msgid "Please help us improve %1$s! If you opt-in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
763
- msgstr "Aiutaci a migliorare %1$s! Se ti iscrivi, alcuni dati riguardanti il tuo utilizzo di %1$s verranno inviati a %4$s. Se salti questo passaggio, non c'è problema! %1$s funzionerà ugualmente."
764
 
765
- #: includes/i18n.php:222
766
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
767
- msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
768
 
769
- #: includes/i18n.php:223
770
- msgid "complete the install"
771
- msgstr "completa l'installazione"
772
 
773
- #: includes/i18n.php:224
774
- msgid "start the trial"
775
- msgstr "Inizia il periodo di prova gratuito"
776
 
777
- #: includes/i18n.php:225
778
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
779
- msgstr "Grazie per aver acquistato %s! Per iniziare, per favore inserisci la tua chiave di licenza:"
 
780
 
781
- #: includes/i18n.php:226
782
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
783
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
 
784
 
785
- #: includes/i18n.php:227
786
- msgid "What permissions are being granted?"
787
- msgstr "Quali autorizzazioni vengono concesse?"
 
788
 
789
- #: includes/i18n.php:228
790
- msgid "Your Profile Overview"
791
- msgstr "Panoramica del tuo profilo"
 
792
 
793
- #: includes/i18n.php:229
794
- msgid "Name and email address"
795
- msgstr "Nome ed indirizzo email"
796
 
797
- #: includes/i18n.php:230
798
- msgid "Your Site Overview"
799
- msgstr "Panoramica del tuo sito"
800
 
801
- #: includes/i18n.php:231
802
- msgid "Site URL, WP version, PHP info, plugins & themes"
803
- msgstr "URL del sito, versione di WP, informazioni PHP, plugin e temi"
 
804
 
805
- #: includes/i18n.php:232
806
- msgid "Current %s Events"
807
- msgstr "Current %s Events"
 
808
 
809
- #: includes/i18n.php:233
810
- msgid "Activation, deactivation and uninstall"
811
- msgstr "Attiva, disattivazione e disinstallazione"
 
812
 
813
- #: includes/i18n.php:234
814
- msgid "Plugins & Themes"
815
- msgstr "Plugin e temi"
816
 
817
- #: includes/i18n.php:235
818
- msgid "Titles, versions and state."
819
- msgstr "Titoli, versioni e stato."
 
 
820
 
821
- #: includes/i18n.php:236
822
- msgid "Admin Notices"
823
- msgstr "Avvisi amministratore"
824
 
825
- #: includes/i18n.php:237
826
- msgid "Newsletter"
827
- msgstr "Newsletter"
828
 
829
- #: includes/i18n.php:238
830
- msgid "Updates, announcements, marketing, no spam"
831
- msgstr "Aggiornamenti, annunci, marketing, no spam"
832
 
833
- #: includes/i18n.php:239
834
- msgid "Privacy Policy"
835
- msgstr "Politica sulla privacy"
836
 
837
- #: includes/i18n.php:240
838
- msgid "Terms of Service"
839
- msgstr "Termini del Servizio"
840
 
841
- #: includes/i18n.php:241
842
- msgctxt "as activating plugin"
843
- msgid "Activating"
844
- msgstr "Attivazione"
845
 
846
- #: includes/i18n.php:242
847
- msgctxt "as in the process of sending an email"
848
- msgid "Sending email"
849
- msgstr "Invio email"
850
 
851
- #: includes/i18n.php:243
852
- msgctxt "button label"
853
- msgid "Allow & Continue"
854
- msgstr "Consenti & Continua"
855
 
856
- #: includes/i18n.php:244
857
- msgctxt "button label"
858
- msgid "Agree & Activate License"
859
- msgstr "Accetta e attiva la licenza"
860
 
861
- #: includes/i18n.php:245
862
- msgctxt "verb"
863
- msgid "Skip"
864
- msgstr "Salta"
865
 
866
- #: includes/i18n.php:246
867
- msgid "Click here to use the plugin anonymously"
868
- msgstr "Fai clic qui per usare il plugin anonimamente"
869
 
870
- #: includes/i18n.php:247
871
- msgid "Re-send activation email"
872
- msgstr "Invia nuovamente l'email di attivazione"
873
 
874
- #: includes/i18n.php:248
875
- msgid "License key"
876
- msgstr "Chiave di licenza"
877
 
878
- #: includes/i18n.php:249
879
- msgid "Send License Key"
880
- msgstr "Invia chiave di licenza"
881
 
882
- #: includes/i18n.php:250
883
- msgid "Sending license key"
884
- msgstr "Invio chiave di licenza"
885
 
886
- #: includes/i18n.php:251
887
- msgid "Have a license key?"
888
- msgstr "Hai una chiave di licenza?"
 
889
 
890
- #: includes/i18n.php:252
891
- msgid "Don't have a license key?"
892
- msgstr "Non hai una chiave di licenza?"
 
893
 
894
- #: includes/i18n.php:253
895
- msgid "Can't find your license key?"
896
- msgstr "Non trovi la tua chiave di licenza?"
 
897
 
898
- #: includes/i18n.php:254
899
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
900
- msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
901
 
902
- #: includes/i18n.php:255
903
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
904
- msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
905
 
906
- #: includes/i18n.php:256
907
- msgid "Opt In"
908
- msgstr "Iscriviti"
909
 
910
- #: includes/i18n.php:257
911
- msgid "Opt Out"
912
- msgstr "Cancella iscrizione"
913
 
914
- #: includes/i18n.php:258
915
- msgid "On second thought - I want to continue helping"
916
- msgstr "Ci ho ripensato, voglio continuare a fornire il mio aiuto"
 
917
 
918
- #: includes/i18n.php:259
919
- msgid "Opting out..."
920
- msgstr "Cancellamento dell'iscrizione..."
921
 
922
- #: includes/i18n.php:260
923
- msgid "Opting in..."
924
- msgstr "Iscrizione in corso..."
925
 
926
- #: includes/i18n.php:261
927
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
928
- msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s"
929
 
930
- #: includes/i18n.php:262
931
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
932
- msgstr "Tracciamo l'utilizzo esclusivamente per rendere %s migliore, creando una migliore esperienza utente e dando priorità a nuove funzionalità, oltre a molte altre buone cose. Saremmo veramente felici di vederti cambiare idea e lasciarci continuare con il tracciamento."
933
 
934
- #: includes/i18n.php:263
935
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
936
- msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informazione da %s a %s."
937
 
938
- #: includes/i18n.php:267
939
- msgid "Screenshots"
940
- msgstr "Screenshots"
 
941
 
942
- #: includes/i18n.php:268
943
- msgid "Click to view full-size screenshot %d"
944
- msgstr "Fare clic per visualizzare lo screenshot in grandi dimensioni %d"
945
 
946
- #: includes/i18n.php:272
947
- msgid "Freemius Debug"
948
- msgstr "Debug Freemius"
 
949
 
950
- #: includes/i18n.php:273
951
- msgctxt "as turned on"
952
- msgid "On"
953
- msgstr "Attivo"
954
 
955
- #: includes/i18n.php:274
956
- msgctxt "as turned off"
957
- msgid "Off"
958
- msgstr "Non attivo"
 
 
959
 
960
- #: includes/i18n.php:275
961
- msgctxt "as code debugging"
962
- msgid "Debugging"
963
- msgstr "Debugging"
964
 
965
- #: includes/i18n.php:276
966
- msgid "Freemius State"
967
- msgstr "Stato di Freemius"
968
 
969
- #: includes/i18n.php:277
970
- msgctxt "as connection was successful"
971
- msgid "Connected"
972
- msgstr "Connesso"
973
 
974
- #: includes/i18n.php:278
975
- msgctxt "as connection blocked"
976
- msgid "Blocked"
977
- msgstr "Bloccato"
978
 
979
- #: includes/i18n.php:279
980
- msgctxt "as application program interface"
981
- msgid "API"
982
- msgstr "API"
983
 
984
- #: includes/i18n.php:280
985
- msgctxt "as software development kit versions"
986
- msgid "SDK"
987
- msgstr "SDK"
988
 
989
- #: includes/i18n.php:281
990
- msgctxt "as software development kit versions"
991
- msgid "SDK Versions"
992
- msgstr "Versioni SDK"
993
 
994
- #: includes/i18n.php:282
995
- msgctxt "as plugin folder path"
996
- msgid "Plugin Path"
997
- msgstr "Percorso del plugin"
998
 
999
- #: includes/i18n.php:283
1000
- msgctxt "as sdk path"
1001
- msgid "SDK Path"
1002
- msgstr "Percorso SDK"
1003
 
1004
- #: includes/i18n.php:284
1005
- msgid "Add Ons of Plugin %s"
1006
- msgstr "Add-on del Plugin %s"
 
 
1007
 
1008
- #: includes/i18n.php:285
1009
- msgid "Are you sure you want to delete all Freemius data?"
1010
- msgstr "Sei sicuro di voler eliminare tutti i dati di Freemius?"
1011
 
1012
- #: includes/i18n.php:286
1013
- msgid "Actions"
1014
- msgstr "Azioni"
1015
 
1016
- #: includes/i18n.php:287
1017
- msgid "Delete All Accounts"
1018
- msgstr "Eliminare tutti gli account"
1019
 
1020
- #: includes/i18n.php:288
1021
- msgid "Start Fresh"
1022
- msgstr "Inizia da capo"
1023
 
1024
- #: includes/i18n.php:289
1025
- msgid "Clear API Cache"
1026
- msgstr "Elimina cache API"
1027
 
1028
- #: includes/i18n.php:290
1029
- msgid "Sync Data From Server"
1030
- msgstr "Sincronizza i dati dal server"
1031
 
1032
- #: includes/i18n.php:291
1033
- msgid "Scheduled Crons"
1034
- msgstr "Azioni programmate"
1035
 
1036
- #: includes/i18n.php:292
1037
- msgid "Cron Type"
1038
- msgstr "Tipo di Cron"
1039
 
1040
- #: includes/i18n.php:293
1041
- msgid "Plugins & Themes Sync"
1042
- msgstr "Sincronizzazione plugin e temi"
1043
 
1044
- #: includes/i18n.php:294
1045
- msgid "%s Licenses"
1046
- msgstr "%s Licenses"
1047
 
1048
- #: includes/i18n.php:295
1049
- msgid "Debug Log"
1050
- msgstr "Debug Log"
1051
 
1052
- #: includes/i18n.php:296
1053
- msgid "All"
1054
- msgstr "Tutto"
 
1055
 
1056
- #: includes/i18n.php:297
1057
- msgid "File"
1058
- msgstr "File"
1059
 
1060
- #: includes/i18n.php:298
1061
- msgid "Function"
1062
- msgstr "Funzione"
1063
 
1064
- #: includes/i18n.php:299
1065
- msgid "Process ID"
1066
- msgstr "ID processo"
1067
 
1068
- #: includes/i18n.php:300
1069
- msgid "Logger"
1070
- msgstr "Logger"
1071
 
1072
- #: includes/i18n.php:301
1073
- msgid "Message"
1074
- msgstr "Messaggio"
1075
 
1076
- #: includes/i18n.php:302
1077
- msgid "Download"
1078
- msgstr "Download"
 
1079
 
1080
- #: includes/i18n.php:303
1081
- msgid "Filter"
1082
- msgstr "Filtro"
1083
 
1084
- #: includes/i18n.php:304
1085
- msgid "Type"
1086
- msgstr "Tipo"
1087
 
1088
- #: includes/i18n.php:305
1089
- msgid "All Types"
1090
- msgstr "Tutti i tipi"
1091
 
1092
- #: includes/i18n.php:306
1093
- msgid "All Requests"
1094
- msgstr "Tutte le richieste"
1095
 
1096
- #: includes/i18n.php:310
1097
- msgctxt "as congratulations"
1098
- msgid "Congrats"
1099
- msgstr "Congratulazioni"
1100
 
1101
- #: includes/i18n.php:311
1102
- msgctxt "exclamation"
1103
- msgid "Oops"
1104
- msgstr "Ops"
1105
 
1106
- #: includes/i18n.php:312
1107
- msgctxt "interjection expressing joy or exuberance"
1108
- msgid "Yee-haw"
1109
- msgstr "Evvai"
1110
 
1111
- #: includes/i18n.php:313
1112
- msgctxt ""
1113
- msgid "W00t"
1114
- msgstr "Forte"
1115
 
1116
- #: includes/i18n.php:315
1117
- msgctxt "a positive response"
1118
- msgid "Right on"
1119
- msgstr "Sì"
1120
 
1121
- #: includes/i18n.php:316
1122
- msgctxt ""
1123
- msgid "Hmm"
1124
- msgstr "Uhm"
1125
 
1126
- #: includes/i18n.php:318
1127
- msgid "O.K"
1128
- msgstr "OK"
1129
 
1130
- #: includes/i18n.php:319
1131
- msgctxt "exclamation"
1132
- msgid "Hey"
1133
- msgstr "Hey"
1134
 
1135
- #: includes/i18n.php:320
1136
- msgctxt "advance notice of something that will need attention."
1137
- msgid "Heads up"
1138
- msgstr "Attenzione"
1139
 
1140
- #: includes/i18n.php:325
1141
- msgid "Seems like you got the latest release."
1142
- msgstr "Sembra che tu abbia la versione più recente."
1143
 
1144
- #: includes/i18n.php:326
1145
- msgid "You are all good!"
1146
- msgstr "Sei fantastico!"
1147
 
1148
- #: includes/i18n.php:327
1149
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
1150
- msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
1151
 
1152
- #: includes/i18n.php:328
1153
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
1154
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
 
1155
 
1156
- #: includes/i18n.php:329
1157
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
1158
- msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
 
1159
 
1160
- #: includes/i18n.php:330
1161
- msgid "Your name was successfully updated."
1162
- msgstr "Il tuo nome è stato aggiornato correttamente."
1163
 
1164
- #: includes/i18n.php:331
1165
- msgid "You have successfully updated your %s."
1166
- msgstr "Hai aggiornato con successo il tuo %s."
 
1167
 
1168
- #: includes/i18n.php:332
1169
- msgid "Please provide your full name."
1170
- msgstr "Per favore inserisci il tuo nome completo."
 
1171
 
1172
- #: includes/i18n.php:333
1173
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
1174
- msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata."
1175
 
1176
- #: includes/i18n.php:334
1177
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
1178
- msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
 
1179
 
1180
- #: includes/i18n.php:335
1181
- msgid "No credit card required"
1182
- msgstr "Nessuna carta di credito richiesta"
1183
 
1184
- #: includes/i18n.php:336
1185
- msgid "Premium %s version was successfully activated."
1186
- msgstr "Premium %s version was successfully activated."
1187
 
1188
- #: includes/i18n.php:337
1189
- msgid "The upgrade of %s was successfully completed."
1190
- msgstr "L'aggiornamento di %s è stato completato con successo."
1191
 
1192
- #: includes/i18n.php:338
1193
- msgid "Your account was successfully activated with the %s plan."
1194
- msgstr "Il tuo account è stato attivato correttamente con il piano %s."
1195
 
1196
- #: includes/i18n.php:339
1197
- msgid "Download the latest %s version now"
1198
- msgstr "Scarica l'ultima versione di %s"
1199
 
1200
- #: includes/i18n.php:340
1201
- msgid "Please follow these steps to complete the upgrade"
1202
- msgstr "Segui i passi seguenti per completare l'aggiornamento"
1203
 
1204
- #: includes/i18n.php:341
1205
- msgid "Download the latest %s version"
1206
- msgstr "Scarica l'ultima versione di %s"
1207
 
1208
- #: includes/i18n.php:342
1209
- msgid "Download the latest version"
1210
- msgstr "Scarica l'ultima versione"
1211
 
1212
- #: includes/i18n.php:343
1213
- msgid "Deactivate the free version"
1214
- msgstr "Disattiva la versione gratuita"
1215
 
1216
- #: includes/i18n.php:344
1217
- msgid "Upload and activate the downloaded version"
1218
- msgstr "Carica e attiva la versione scaricata"
 
1219
 
1220
- #: includes/i18n.php:345
1221
- msgid "How to upload and activate?"
1222
- msgstr "Come faccio a caricare ed attivare?"
1223
 
1224
- #: includes/i18n.php:346
1225
- msgctxt "%s - product name, e.g. Facebook add-on was successfully..."
1226
- msgid "%s Add-on was successfully purchased."
1227
- msgstr "L' add-on %s è stato acquistato con successo."
1228
 
1229
- #: includes/i18n.php:348
1230
- msgid "Your %s Add-on plan was successfully upgraded."
1231
- msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
1232
 
1233
- #: includes/i18n.php:349
1234
- msgid "Your email has been successfully verified - you are AWESOME!"
1235
- msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
1236
 
1237
- #: includes/i18n.php:350
1238
- msgid "Your plan was successfully upgraded."
1239
- msgstr "Il piano è stato aggiornato con successo."
1240
 
1241
- #: includes/i18n.php:351
1242
- msgid "Your plan was successfully changed to %s."
1243
- msgstr "Il piano è stato cambiato con successo a %s."
 
1244
 
1245
- #: includes/i18n.php:352
1246
- msgid "Your license has expired. You can still continue using the free %s forever."
1247
- msgstr "Your license has expired. You can still continue using the free %s forever."
1248
 
1249
- #: includes/i18n.php:353
1250
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
1251
- msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
 
1252
 
1253
- #: includes/i18n.php:354
1254
- msgid "Your trial has been successfully started."
1255
- msgstr "La versione di prova è stata avviata correttamente."
1256
 
1257
- #: includes/i18n.php:355
1258
- msgid "Your license was successfully activated."
1259
- msgstr "La tua licenza è stata attivata correttamente."
 
1260
 
1261
- #: includes/i18n.php:356
1262
- msgid "It looks like your site currently doesn't have an active license."
1263
- msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
 
1264
 
1265
- #: includes/i18n.php:357
1266
- msgid "Your license was successfully deactivated, you are back to the %s plan."
1267
- msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
1268
 
1269
- #: includes/i18n.php:358
1270
- msgid "It looks like the license deactivation failed."
1271
- msgstr "Sembra che la disattivazione della licenza non sia riuscita."
1272
 
1273
- #: includes/i18n.php:359
1274
- msgid "It looks like the license could not be activated."
1275
- msgstr "Sembra che la licenza non possa essere attivata."
 
1276
 
1277
- #: includes/i18n.php:360
1278
- msgid "Error received from the server:"
1279
- msgstr "Errore ricevuto dal server:"
1280
 
1281
- #: includes/i18n.php:361
1282
- msgid "Your trial has expired. You can still continue using all our free features."
1283
- msgstr "La versione di prova è scaduta. Si può comunque continuare a utilizzare tutte le nostre funzioni gratuite."
1284
 
1285
- #: includes/i18n.php:362
1286
- msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
1287
- msgstr "Il tuo piano è stato declassato con successo. La licenza del piano %s scadrà in %s."
1288
 
1289
- #: includes/i18n.php:363
1290
- msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
1291
- msgstr "Stiamo avendo qualche problema temporaneo con il downgrade del piano. Riprova tra qualche minuto."
1292
 
1293
- #: includes/i18n.php:364
1294
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
1295
- msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
1296
 
1297
- #: includes/i18n.php:365
1298
- msgid "Your %s free trial was successfully cancelled."
1299
- msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
1300
 
1301
- #: includes/i18n.php:366
1302
- msgctxt "%s - numeric version number"
1303
- msgid "Version %s was released."
1304
- msgstr "La versione %s é stata rilasciata."
1305
 
1306
- #: includes/i18n.php:367
1307
- msgid "Please download %s."
1308
- msgstr "Scarica %s."
1309
 
1310
- #: includes/i18n.php:368
1311
- msgctxt "%s - plan name, as the latest professional version here"
1312
- msgid "the latest %s version here"
1313
- msgstr "l'ultima versione %s é quì"
1314
 
1315
- #: includes/i18n.php:370
1316
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
1317
- msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
 
1318
 
1319
- #: includes/i18n.php:371
1320
- msgctxt "call to action"
1321
- msgid "Start free trial"
1322
- msgstr "Inizia il periodo di prova gratuito"
1323
 
1324
- #: includes/i18n.php:372
1325
- msgid "Starting trial"
1326
- msgstr "Inizio del periodo di prova gratuito"
1327
 
1328
- #: includes/i18n.php:373
1329
- msgid "Please wait"
1330
- msgstr "Attendere"
1331
 
1332
- #: includes/i18n.php:374
1333
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
1334
- msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
 
1335
 
1336
- #: includes/i18n.php:375
1337
- msgid "You already utilized a trial before."
1338
- msgstr "Hai già utilizzato una prova gratuita in passato."
 
1339
 
1340
- #: includes/i18n.php:376
1341
- msgid "You are already running the %s in a trial mode."
1342
- msgstr "You are already running the %s in a trial mode."
1343
 
1344
- #: includes/i18n.php:377
1345
- msgid "Plan %s do not exist, therefore, can't start a trial."
1346
- msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
1347
 
1348
- #: includes/i18n.php:378
1349
- msgid "Plan %s does not support a trial period."
1350
- msgstr "Il piano %s non supporta il periodo di prova."
 
1351
 
1352
- #: includes/i18n.php:379
1353
- msgid "None of the %s's plans supports a trial period."
1354
- msgstr "None of the %s's plans supports a trial period."
1355
 
1356
- #: includes/i18n.php:380
1357
- msgid "Unexpected API error. Please contact the %s's author with the following error."
1358
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
1359
 
1360
- #: includes/i18n.php:381
1361
- msgid "No commitment for %s days - cancel anytime!"
1362
- msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
1363
 
1364
- #: includes/i18n.php:382
1365
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
1366
- msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto."
1367
 
1368
- #: includes/i18n.php:383
1369
- msgid "Couldn't activate %s."
1370
- msgstr "Non é stato possibile attivare %s."
1371
 
1372
- #: includes/i18n.php:384
1373
- msgid "Please contact us with the following message:"
1374
- msgstr "Contattaci con il seguente messaggio:"
 
1375
 
1376
- #: includes/i18n.php:385
1377
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
1378
- msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi."
 
 
1379
 
1380
- #: includes/i18n.php:386
1381
- msgid "Please contact us here"
1382
- msgstr "Contattaci qui"
1383
 
1384
- #: includes/i18n.php:387
1385
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
1386
- msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
1387
 
1388
- #: includes/i18n.php:390
1389
- msgid "From unknown reason, the API connectivity test failed."
1390
- msgstr "Il test di connettività dell'API ha fallito per motivi sconosciuti."
 
 
 
 
 
1391
 
1392
- #: includes/i18n.php:391
1393
- msgid "It's probably a temporary issue on our end. Just to be sure, with your permission, would it be o.k to run another connectivity test?"
1394
- msgstr "Si tratta probabilmente di un problema nei nostri sistemi. Per esserne sicuri, potresti darci il permesso di effettuare un ulteriore test della connettività? "
1395
 
1396
- #: includes/i18n.php:392
1397
- msgid "We use PHP cURL library for the API calls, which is a very common library and usually installed and activated out of the box. Unfortunately, cURL is not activated (or disabled) on your server."
1398
- msgstr "Per le chiamate API usiamo la libreria PHP cURL, una libreria molto comune. Purtroppo, questa libreria non è attiva (o è disabilitata) sul tuo server."
1399
 
1400
- #: includes/i18n.php:393
1401
- msgid "Disabled method(s):"
1402
- msgstr "Disattiva metodo(i)"
 
1403
 
1404
- #: includes/i18n.php:394
1405
- msgid "From unknown reason, CloudFlare, the firewall we use, blocks the connection."
1406
- msgstr "Per un motivo sconosciuto, CloudFlare, il firewall che utilizziamo, blocca la connessione."
1407
 
1408
- #: includes/i18n.php:395
1409
- msgctxt "as pluginX requires an access to our API"
1410
- msgid "%s requires an access to our API."
1411
- msgstr "%s richiede un accesso alla nostra API."
1412
 
1413
- #: includes/i18n.php:397
1414
- msgid "It looks like your server is using Squid ACL (access control lists), which blocks the connection."
1415
- msgstr "Sembra che il tuo server stia usando Squid ACL (lista per il controllo degli accessi) il quale blocca la connessione."
1416
 
1417
- #: includes/i18n.php:398
1418
- msgid "I don't know what is Squid or ACL, help me!"
1419
- msgstr "Non ho idea di cosa sia Squid o ACL, aiutami!"
1420
 
1421
- #: includes/i18n.php399, includes/i18n.php:403
1422
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
1423
- msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
1424
 
1425
- #: includes/i18n.php:400
1426
- msgid "I'm a system administrator"
1427
- msgstr "Sono un sistemista"
1428
 
1429
- #: includes/i18n.php:401
1430
- msgid "Great, please whitelist the following domains: %s. Once you are done, deactivate the %s and activate it again."
1431
- msgstr "Great, please whitelist the following domains: %s. Once you are done, deactivate the %s and activate it again."
1432
 
1433
- #: includes/i18n.php:402
1434
- msgid "I don't know what is cURL or how to install it, help me!"
1435
- msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
1436
 
1437
- #: includes/i18n.php:404
1438
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
1439
- msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
1440
 
1441
- #: includes/i18n.php:405
1442
- msgid "We are sure it's an issue on our side and more than happy to resolve it for you ASAP if you give us a chance."
1443
- msgstr "Siamo sicuri che sia un nostro problema e siamo più che felici di risolverlo per te al più presto. Per poter procedere abbiamo bisogno del tuo consenso."
1444
 
1445
- #: includes/i18n.php:406
1446
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1447
- msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo permesso."
1448
 
1449
- #: includes/i18n.php:407
1450
- msgid "Yes - I'm giving you a chance to fix it"
1451
- msgstr "Sì - sto dandovi la possibilità di risolvere il problema"
1452
 
1453
- #: includes/i18n.php:408
1454
- msgid "We will do our best to whitelist your server and resolve this issue ASAP. You will get a follow-up email to %s once we have an update."
1455
- msgstr "Faremo del nostro meglio per mettere il server in whitelist e risolvere il problema il prima possibile. Avrai un aggiornamento dello stato tramite email all'indirizzo %s."
1456
 
1457
- #: includes/i18n.php:409
1458
- msgid "Let's try your previous version"
1459
- msgstr "Proviamo con la versione precedente"
1460
 
1461
- #: includes/i18n.php:410
1462
- msgid "Uninstall this version and install the previous one."
1463
- msgstr "Disinstalla questa versione e installa quella precedente."
1464
 
1465
- #: includes/i18n.php:411
1466
- msgid "That's exhausting, please deactivate"
1467
- msgstr "È estenuante, disattivalo"
 
1468
 
1469
- #: includes/i18n.php:412
1470
- msgid "We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future."
1471
- msgstr "Capiamo la tua frustrazione e ci scusiamo per l'inconveniente. Speriamo di rivederti nuovamente in futuro."
1472
 
1473
- #: includes/i18n.php:413
1474
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
1475
- msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
1476
 
1477
- #: includes/i18n.php:414
1478
- msgctxt "%1s - plugin title, %2s - API domain"
1479
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
1480
- msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist."
1481
 
1482
- #: includes/i18n.php:416
1483
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
1484
- msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
1485
 
1486
- #: includes/i18n.php:419
1487
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
1488
- msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
1489
 
1490
- #: includes/i18n.php:420
1491
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
1492
- msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
 
 
1493
 
1494
- #: includes/i18n.php:421
1495
- msgid "%s is the new owner of the account."
1496
- msgstr "%s è il nuovo proprietario dell'account."
 
 
1497
 
1498
- #: includes/i18n.php:423
1499
- msgctxt "addonX cannot run without pluginY"
1500
- msgid "%s cannot run without %s."
1501
- msgstr "%s non può funzionare senza %s."
 
1502
 
1503
- #: includes/i18n.php:425
1504
- msgctxt "addonX cannot run..."
1505
- msgid "%s cannot run without the plugin."
1506
- msgstr "%s non può funzionare senza il plugin."
1507
 
1508
- #: includes/i18n.php:426
1509
- msgctxt "pluginX activation was successfully..."
1510
- msgid "%s activation was successfully completed."
1511
- msgstr "%s è stato attivato con successo."
1512
 
1513
- #: includes/i18n.php:428
1514
- msgctxt "Plugin installer section title"
1515
- msgid "Features & Pricing"
1516
- msgstr "Caratteristiche & prezzi"
1517
 
1518
- #: includes/i18n.php:429
1519
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1520
- msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1521
 
1522
- #: includes/i18n.php:430
1523
- msgid "Paid add-on must be deployed to Freemius."
1524
- msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1525
 
1526
- #: includes/i18n.php:434
1527
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
1528
- msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
1529
 
1530
- #: includes/i18n.php:435
1531
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
1532
- msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza."
1533
 
1534
- #: includes/i18n.php:440
1535
- msgctxt "as every month"
1536
- msgid "Monthly"
1537
- msgstr "Mensilmente"
1538
 
1539
- #: includes/i18n.php:441
1540
- msgctxt "as monthly period"
1541
- msgid "mo"
1542
- msgstr "mese"
1543
 
1544
- #: includes/i18n.php:442
1545
- msgctxt "as once a year"
1546
- msgid "Annual"
1547
- msgstr "Annuale"
1548
 
1549
- #: includes/i18n.php:443
1550
- msgctxt "as once a year"
1551
- msgid "Annually"
1552
- msgstr "Annualmente"
1553
 
1554
- #: includes/i18n.php:444
1555
- msgctxt "as once a year"
1556
- msgid "Once"
1557
- msgstr "Una volta"
1558
 
1559
- #: includes/i18n.php:445
1560
- msgctxt "as annual period"
1561
- msgid "year"
1562
- msgstr "anno"
1563
 
1564
- #: includes/i18n.php:446
1565
- msgid "Lifetime"
1566
- msgstr "Tutta la vita"
1567
 
1568
- #: includes/i18n.php:447
1569
- msgctxt "e.g. the best product"
1570
- msgid "Best"
1571
- msgstr "Migliore"
1572
 
1573
- #: includes/i18n.php:448
1574
- msgctxt "e.g. billed monthly"
1575
- msgid "Billed %s"
1576
- msgstr "Fatturato %s"
1577
 
1578
- #: includes/i18n.php:449
1579
- msgctxt "as a discount of $5 or 10%"
1580
- msgid "Save %s"
1581
- msgstr "Risparmia %s"
1582
 
1583
- #: includes/i18n.php:451
1584
- msgid "View details"
1585
- msgstr "Visualizza dettagli"
1586
 
1587
- #: includes/i18n.php:455
1588
- msgctxt "button label"
1589
- msgid "Approve & Start Trial"
1590
- msgstr "Approva e inizia il periodo di prova gratuito"
1591
 
1592
- #: includes/i18n.php:457
1593
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1594
- msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito di %1$s giorni per il piano %2$s."
1595
 
1596
- #: includes/i18n.php:459
1597
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt-in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1598
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt-in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1599
 
1600
- #: includes/i18n.php:465
1601
- msgid "Business name"
1602
- msgstr "Nome della compagnia"
1603
 
1604
- #: includes/i18n.php:466
1605
- msgid "Tax / VAT ID"
1606
- msgstr "Numero Partita Iva o VAT"
1607
 
1608
- #: includes/i18n.php:467
1609
- msgid "Address Line %d"
1610
- msgstr "Riga indirizzo %d"
1611
 
1612
- #: includes/i18n.php:468
1613
- msgid "Country"
1614
- msgstr "Nazione"
1615
 
1616
- #: includes/i18n.php:469
1617
- msgid "Select Country"
1618
- msgstr "Seleziona Nazione"
1619
 
1620
- #: includes/i18n.php:470
1621
- msgid "City"
1622
- msgstr "Città"
1623
 
1624
- #: includes/i18n.php:471
1625
- msgid "Town"
1626
- msgstr "Cittadina"
1627
 
1628
- #: includes/i18n.php:472
1629
- msgid "State"
1630
- msgstr "Stato"
1631
 
1632
- #: includes/i18n.php:473
1633
- msgid "Province"
1634
- msgstr "Provincia"
1635
 
1636
- #: includes/i18n.php:474
1637
- msgid "ZIP / Postal Code"
1638
- msgstr "CAP"
1639
 
1640
- #: includes/i18n.php:479
1641
- msgid "Installing plugin: %s"
1642
- msgstr "Installazione plugin: %s"
1643
 
1644
- #: includes/i18n.php:480
1645
- msgid "Automatic Installation"
1646
- msgstr "Installazione automatica"
1647
 
1648
- #: includes/i18n.php:482
1649
- msgid "%s sec"
1650
- msgstr "%s sec"
1651
 
1652
- #: includes/i18n.php:483
1653
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1654
- msgstr "Un download con installazione automatica di %s (versione a pagamento) da %s inizierà in %s. Se preferisci farlo manualmente, fai clic sul pulsante per annullare."
1655
 
1656
- #: includes/i18n.php:484
1657
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1658
- msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minuti per completarsi. Attendi finchè non ha finito, assicurandoti di non ricaricare questa pagina."
1659
 
1660
- #: includes/i18n.php:485
1661
- msgid "Cancel Installation"
1662
- msgstr "Annulla installazione"
1663
 
1664
- #: includes/i18n.php:486
1665
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
1666
- msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
1667
 
1668
- #: includes/i18n.php:487
1669
- msgid "Invalid module ID."
1670
- msgstr "ID modulo non valida."
1671
 
1672
- #: includes/i18n.php:488
1673
- msgid "Auto installation only works for opted-in users."
1674
- msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
1675
 
1676
- #: includes/i18n.php:489
1677
- msgid "Premium version already active."
1678
- msgstr "Versione Premium già attiva."
1679
 
1680
- #: includes/i18n.php:490
1681
- msgid "Premium add-on version already installed."
1682
- msgstr "Versione Premium dell'add-on già installata."
1683
 
1684
- #: includes/i18n.php:491
1685
- msgid "You do not have a valid license to access the premium version."
1686
- msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
1687
 
1688
- #: includes/i18n.php:492
1689
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
1690
- msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
1691
 
1692
- #: includes/i18n.php:496
1693
- msgid "Secure HTTPS %s page, running from an external domain"
1694
- msgstr "Secure HTTPS %s page, running from an external domain"
1695
 
1696
- #: includes/i18n.php:497
1697
- msgid "PCI compliant"
1698
- msgstr "PCI compliant"
1699
 
1700
- #: includes/i18n.php:498
1701
- msgid "View paid features"
1702
- msgstr "View paid features"
1703
 
1704
- #: includes/i18n.php:512
1705
- msgctxt "Plugin installer section title"
1706
- msgid "Description"
1707
- msgstr "Descrizione"
1708
 
1709
- #: includes/i18n.php:513
1710
- msgctxt "Plugin installer section title"
1711
- msgid "Installation"
1712
- msgstr "Installazione"
1713
 
1714
- #: includes/i18n.php:514
1715
- msgctxt "Plugin installer section title"
1716
- msgid "FAQ"
1717
- msgstr "FAQ"
1718
 
1719
- #: includes/i18n.php:515
1720
- msgctxt "Plugin installer section title"
1721
- msgid "Changelog"
1722
- msgstr "Changelog"
1723
 
1724
- #: includes/i18n.php:516
1725
- msgctxt "Plugin installer section title"
1726
- msgid "Reviews"
1727
- msgstr "Recensioni"
1728
 
1729
- #: includes/i18n.php:517
1730
- msgctxt "Plugin installer section title"
1731
- msgid "Other Notes"
1732
- msgstr "Altre note"
1733
 
1734
- #: includes/i18n.php:519
1735
- msgid "%s star"
1736
- msgstr "%s stella"
1737
 
1738
- #: includes/i18n.php:521
1739
- msgid "%s stars"
1740
- msgstr "%s stelle"
1741
 
1742
- #: includes/i18n.php:523
1743
- msgid "%s rating"
1744
- msgstr "%s valutazione"
1745
 
1746
- #: includes/i18n.php:525
1747
- msgid "%s ratings"
1748
- msgstr "%s valutazioni"
1749
 
1750
- #: includes/i18n.php:527
1751
- msgid "%s time"
1752
- msgstr "% volta"
1753
 
1754
- #: includes/i18n.php:529
1755
- msgid "%s times"
1756
- msgstr "%s volte"
1757
 
1758
- #: includes/i18n.php:531
1759
- msgid "Click to see reviews that provided a rating of %s"
1760
- msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1761
 
1762
- #: includes/i18n.php:532
1763
- msgid "Last Updated"
1764
- msgstr "Ultimo aggiornamento"
 
1765
 
1766
- #: includes/i18n.php:533
1767
- msgid "Requires WordPress Version:"
1768
- msgstr "Richiede la versione di WordPress:"
1769
 
1770
- #: includes/i18n.php:534
1771
- msgctxt "as the plugin author"
1772
- msgid "Author:"
1773
- msgstr "Autore:"
1774
 
1775
- #: includes/i18n.php:535
1776
- msgid "Compatible up to:"
1777
- msgstr "Compatibile fino a:"
1778
 
1779
- #: includes/i18n.php:536
1780
- msgid "Downloaded:"
1781
- msgstr "Scaricato:"
1782
 
1783
- #: includes/i18n.php:537
1784
- msgid "WordPress.org Plugin Page"
1785
- msgstr "Pagina dei plugin di WordPress.org"
1786
 
1787
- #: includes/i18n.php:538
1788
- msgid "Plugin Homepage"
1789
- msgstr "Homepage del plugin"
1790
 
1791
- #: includes/i18n.php:539
1792
- msgid "Donate to this plugin"
1793
- msgstr "Fai una donazione a questo plugin"
1794
 
1795
- #: includes/i18n.php:540
1796
- msgid "Average Rating"
1797
- msgstr "Valutazione media"
1798
 
1799
- #: includes/i18n.php:541
1800
- msgid "based on %s"
1801
- msgstr "basato su %s"
1802
 
1803
- #: includes/i18n.php:542
1804
- msgid "Warning:"
1805
- msgstr "Avviso:"
1806
 
1807
- #: includes/i18n.php:543
1808
- msgid "Contributors"
1809
- msgstr "Contributori"
1810
 
1811
- #: includes/i18n.php:544
1812
- msgid "Plugin Install"
1813
- msgstr "Installazione del plugin"
1814
 
1815
- #: includes/i18n.php:545
1816
- msgid "This plugin has not been tested with your current version of WordPress."
1817
- msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1818
 
1819
- #: includes/i18n.php:546
1820
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1821
- msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1822
 
1823
- #: includes/i18n.php:547
1824
- msgid "Newer Version (%s) Installed"
1825
- msgstr "Versione più recente (%s) installata"
1826
 
1827
- #: includes/i18n.php:548
1828
- msgid "Latest Version Installed"
1829
- msgstr "Versione più recente installata"
10
  "Project-Id-Version: WordPress SDK\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "POT-Creation-Date: \n"
13
+ "PO-Revision-Date: 2017-12-04 15:57+0000\n"
14
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
15
  "Language: it_IT\n"
16
  "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
  "MIME-Version: 1.0\n"
21
  "X-Poedit-Basepath: ..\n"
22
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js\n"
25
  "X-Poedit-SourceCharset: UTF-8\n"
26
 
27
+ #: includes/class-freemius.php:959
28
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
29
+ msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
 
 
 
 
30
 
31
+ #: includes/class-freemius.php:961
32
+ msgid "Error"
33
+ msgstr "Errore"
34
 
35
+ #: includes/class-freemius.php:1277
36
+ msgid "I found a better %s"
37
+ msgstr "I found a better %s"
38
 
39
+ #: includes/class-freemius.php:1279
40
+ msgid "What's the %s's name?"
41
+ msgstr "What's the %s's name?"
42
 
43
+ #: includes/class-freemius.php:1285
44
+ msgid "It's a temporary %s. I'm just debugging an issue."
45
+ msgstr "It's a temporary %s. I'm just debugging an issue."
46
 
47
+ #: includes/class-freemius.php:1287
48
+ msgid "Deactivation"
49
+ msgstr "Deactivation"
50
 
51
+ #: includes/class-freemius.php:1288
52
+ msgid "Theme Switch"
53
+ msgstr "Theme Switch"
54
 
55
+ #: includes/class-freemius.php1297, templates/forms/resend-key.php:24
56
+ msgid "Other"
57
+ msgstr "Altro"
 
58
 
59
+ #: includes/class-freemius.php:1305
60
+ msgid "I no longer need the %s"
61
+ msgstr "I no longer need the %s"
62
 
63
+ #: includes/class-freemius.php:1312
64
+ msgid "I only needed the %s for a short period"
65
+ msgstr "I only needed the %s for a short period"
 
66
 
67
+ #: includes/class-freemius.php:1318
68
+ msgid "The %s broke my site"
69
+ msgstr "The %s broke my site"
 
70
 
71
+ #: includes/class-freemius.php:1325
72
+ msgid "The %s suddenly stopped working"
73
+ msgstr "The %s suddenly stopped working"
74
 
75
+ #: includes/class-freemius.php:1335
76
+ msgid "I can't pay for it anymore"
77
+ msgstr "Non posso piú pagarlo"
 
78
 
79
+ #: includes/class-freemius.php:1337
80
+ msgid "What price would you feel comfortable paying?"
81
+ msgstr "Che prezzo ritieni opportuno pagare?"
 
82
 
83
+ #: includes/class-freemius.php:1343
84
+ msgid "I don't like to share my information with you"
85
+ msgstr "Non voglio condividere i miei dati con te"
86
 
87
+ #: includes/class-freemius.php:1364
88
+ msgid "The %s didn't work"
89
+ msgstr "The %s didn't work"
90
 
91
+ #: includes/class-freemius.php:1374
92
+ msgid "I couldn't understand how to make it work"
93
+ msgstr "Non capisco come farlo funzionare"
94
 
95
+ #: includes/class-freemius.php:1382
96
+ msgid "The %s is great, but I need specific feature that you don't support"
97
+ msgstr "The %s is great, but I need specific feature that you don't support"
98
 
99
+ #: includes/class-freemius.php:1384
100
+ msgid "What feature?"
101
+ msgstr "Quale funzionalitá?"
102
 
103
+ #: includes/class-freemius.php:1388
104
+ msgid "The %s is not working"
105
+ msgstr "The %s is not working"
106
 
107
+ #: includes/class-freemius.php:1390
108
+ msgid "Kindly share what didn't work so we can fix it for future users..."
109
+ msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
110
 
111
+ #: includes/class-freemius.php:1394
112
+ msgid "It's not what I was looking for"
113
+ msgstr "Non é quello che stavo cercando"
 
114
 
115
+ #: includes/class-freemius.php:1396
116
+ msgid "What you've been looking for?"
117
+ msgstr "Che cosa stai cercando?"
 
118
 
119
+ #: includes/class-freemius.php:1400
120
+ msgid "The %s didn't work as expected"
121
+ msgstr "The %s didn't work as expected"
 
122
 
123
+ #: includes/class-freemius.php:1402
124
+ msgid "What did you expect?"
125
+ msgstr "Che cosa ti aspettavi?"
 
126
 
127
+ #: includes/class-freemius.php1938, templates/debug.php:20
128
+ msgid "Freemius Debug"
129
+ msgstr "Debug Freemius"
 
130
 
131
+ #: includes/class-freemius.php:2508
132
+ msgid "I don't know what is cURL or how to install it, help me!"
133
+ msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
134
 
135
+ #: includes/class-freemius.php:2510
136
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
137
+ msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
138
 
139
+ #: includes/class-freemius.php:2517
140
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
141
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
142
 
143
+ #: includes/class-freemius.php:2619
144
+ msgid "Yes - do your thing"
145
+ msgstr "Sì - fai pure"
146
 
147
+ #: includes/class-freemius.php:2624
148
+ msgid "No - just deactivate"
149
+ msgstr "No - disattiva e basta"
150
 
151
+ #: includes/class-freemius.php2669, includes/class-freemius.php3134,
152
+ #: includes/class-freemius.php3988, includes/class-freemius.php7270,
153
+ #: includes/class-freemius.php9137, includes/class-freemius.php9193,
154
+ #: includes/class-freemius.php9254, includes/class-freemius.php11154,
155
+ #: includes/class-freemius.php11165, includes/class-freemius.php11614,
156
+ #: includes/class-freemius.php11632, includes/class-freemius.php11730,
157
+ #: includes/class-freemius.php12405, templates/add-ons.php:43
158
+ msgctxt "exclamation"
159
+ msgid "Oops"
160
+ msgstr "Ops"
161
 
162
+ #: includes/class-freemius.php:2736
163
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
164
+ msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza."
 
165
 
166
+ #: includes/class-freemius.php:3131
167
+ msgctxt "addonX cannot run without pluginY"
168
+ msgid "%s cannot run without %s."
169
+ msgstr "%s non può funzionare senza %s."
170
 
171
+ #: includes/class-freemius.php:3132
172
+ msgctxt "addonX cannot run..."
173
+ msgid "%s cannot run without the plugin."
174
+ msgstr "%s non può funzionare senza il plugin."
175
 
176
+ #: includes/class-freemius.php3253, includes/class-freemius.php3278,
177
+ #: includes/class-freemius.php:11703
178
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
179
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
180
 
181
+ #: includes/class-freemius.php:3686
182
+ msgid "Premium %s version was successfully activated."
183
+ msgstr "Premium %s version was successfully activated."
 
184
 
185
+ #: includes/class-freemius.php3688, includes/class-freemius.php:4913
186
+ msgctxt ""
187
+ msgid "W00t"
188
+ msgstr "Forte"
189
 
190
+ #: includes/class-freemius.php:3703
 
191
  msgid "You have a %s license."
192
  msgstr "Hai la licenza %s."
193
 
194
+ #: includes/class-freemius.php3707, includes/class-freemius.php8841,
195
+ #: includes/class-freemius.php8850, includes/class-freemius.php11105,
196
+ #: includes/class-freemius.php11318, includes/class-freemius.php11380,
197
+ #: includes/class-freemius.php:11492
198
+ msgctxt "interjection expressing joy or exuberance"
199
+ msgid "Yee-haw"
200
+ msgstr "Evvai"
201
 
202
+ #: includes/class-freemius.php:3971
203
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
204
+ msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza."
 
205
 
206
+ #: includes/class-freemius.php:3975
207
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
208
+ msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
 
209
 
210
+ #: includes/class-freemius.php3984, templates/account.php692,
211
+ #: templates/add-ons.php:99
212
+ msgid "More information about %s"
213
+ msgstr "Ulteriori informazioni su %s"
214
 
215
+ #: includes/class-freemius.php:3985
216
  msgid "Purchase License"
217
  msgstr "Acquista licenza"
218
 
219
+ #: includes/class-freemius.php4422, templates/connect.php:136
220
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
221
+ msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
 
223
+ #: includes/class-freemius.php:4426
224
+ msgid "start the trial"
225
+ msgstr "Inizia il periodo di prova gratuito"
226
 
227
+ #: includes/class-freemius.php4427, templates/connect.php:140
228
+ msgid "complete the install"
229
+ msgstr "completa l'installazione"
 
230
 
231
+ #: includes/class-freemius.php:4506
232
  msgid "You are just one step away - %s"
233
  msgstr "Sei a un passo dalla fine - %s"
234
 
235
+ #: includes/class-freemius.php:4509
236
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
237
  msgid "Complete \"%s\" Activation Now"
238
  msgstr "Completa l'attivazione di \"%s\" ora"
239
 
240
+ #: includes/class-freemius.php:4523
241
  msgid "We made a few tweaks to the %s, %s"
242
  msgstr "We made a few tweaks to the %s, %s"
243
 
244
+ #: includes/class-freemius.php:4527
245
+ msgid "Opt in to make \"%s\" Better!"
246
+ msgstr "Opt in to make \"%s\" Better!"
247
 
248
+ #: includes/class-freemius.php:4912
249
+ msgid "The upgrade of %s was successfully completed."
250
+ msgstr "L'aggiornamento di %s è stato completato con successo."
251
 
252
+ #: includes/class-freemius.php5997, includes/class-fs-plugin-updater.php358,
253
+ #: includes/class-fs-plugin-updater.php510,
254
+ #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
255
+ msgid "Add-On"
256
+ msgstr "Add-On"
257
 
258
+ #: includes/class-freemius.php5999, templates/debug.php303,
259
+ #: templates/debug.php:413
260
+ msgid "Plugin"
261
+ msgstr "Plugin"
262
 
263
+ #: includes/class-freemius.php6000, templates/debug.php303,
264
+ #: templates/debug.php413, templates/forms/deactivation/form.php:64
265
+ msgid "Theme"
266
+ msgstr "Tema"
267
 
268
+ #: includes/class-freemius.php:7257
269
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
270
+ msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
271
 
272
+ #: includes/class-freemius.php:7259
273
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
274
+ msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
275
 
276
+ #: includes/class-freemius.php:7468
277
+ msgid "Account is pending activation."
278
+ msgstr "Account is pending activation."
 
279
 
280
+ #: includes/class-freemius.php:8825
281
+ msgctxt "pluginX activation was successfully..."
282
+ msgid "%s activation was successfully completed."
283
+ msgstr "%s è stato attivato con successo."
284
 
285
+ #: includes/class-freemius.php:8837
286
+ msgid "Your account was successfully activated with the %s plan."
287
+ msgstr "Il tuo account è stato attivato correttamente con il piano %s."
288
 
289
+ #: includes/class-freemius.php8846, includes/class-freemius.php:11376
290
+ msgid "Your trial has been successfully started."
291
+ msgstr "La versione di prova è stata avviata correttamente."
292
 
293
+ #: includes/class-freemius.php9135, includes/class-freemius.php9191,
294
+ #: includes/class-freemius.php:9252
295
+ msgid "Couldn't activate %s."
296
+ msgstr "Non é stato possibile attivare %s."
297
 
298
+ #: includes/class-freemius.php9136, includes/class-freemius.php9192,
299
+ #: includes/class-freemius.php:9253
300
+ msgid "Please contact us with the following message:"
301
+ msgstr "Contattaci con il seguente messaggio:"
302
 
303
+ #: includes/class-freemius.php9511, includes/class-freemius.php:13334
304
+ msgid "Upgrade"
305
+ msgstr "Aggiornamento"
 
306
 
307
+ #: includes/class-freemius.php:9517
308
+ msgid "Start Trial"
309
+ msgstr "Inizia il periodo di prova gratuito"
310
 
311
+ #: includes/class-freemius.php:9519
312
+ msgid "Pricing"
313
+ msgstr "Prezzi"
 
314
 
315
+ #: includes/class-freemius.php9559, includes/class-freemius.php:9561
316
+ msgid "Affiliation"
317
+ msgstr "Affiliation"
318
 
319
+ #: includes/class-freemius.php9581, includes/class-freemius.php9583,
320
+ #: templates/account.php79, templates/debug.php:281
321
+ msgid "Account"
322
+ msgstr "Account"
323
 
324
+ #: includes/class-freemius.php9594, includes/class-freemius.php9596,
325
+ #: includes/customizer/class-fs-customizer-support-section.php:60
326
+ msgid "Contact Us"
327
+ msgstr "Contattaci"
328
 
329
+ #: includes/class-freemius.php9606, includes/class-freemius.php9608,
330
+ #: includes/class-freemius.php13344, templates/account.php:68
331
+ msgid "Add-Ons"
332
+ msgstr "Addon"
333
 
334
+ #: includes/class-freemius.php9639, templates/pricing.php:92
335
+ msgctxt "noun"
336
+ msgid "Pricing"
337
+ msgstr "Prezzi"
338
 
339
+ #: includes/class-freemius.php9819,
340
+ #: includes/customizer/class-fs-customizer-support-section.php:67
341
+ msgid "Support Forum"
342
+ msgstr "Forum di supporto"
343
 
344
+ #: includes/class-freemius.php:10559
345
+ msgid "Your email has been successfully verified - you are AWESOME!"
346
+ msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
347
 
348
+ #: includes/class-freemius.php:10560
349
+ msgctxt "a positive response"
350
+ msgid "Right on"
351
+ msgstr "Sì"
352
 
353
+ #: includes/class-freemius.php:11096
354
+ msgid "Your %s Add-on plan was successfully upgraded."
355
+ msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
356
 
357
+ #: includes/class-freemius.php:11098
358
+ msgid "%s Add-on was successfully purchased."
359
+ msgstr "L' add-on %s è stato acquistato con successo."
360
 
361
+ #: includes/class-freemius.php:11101
362
+ msgid "Download the latest version"
363
+ msgstr "Scarica l'ultima versione"
 
364
 
365
+ #: includes/class-freemius.php:11150
366
+ msgctxt "%1s - plugin title, %2s - API domain"
367
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
368
+ msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist."
369
 
370
+ #: includes/class-freemius.php11153, includes/class-freemius.php11463,
371
+ #: includes/class-freemius.php:11528
372
+ msgid "Error received from the server:"
373
+ msgstr "Errore ricevuto dal server:"
374
 
375
+ #: includes/class-freemius.php:11164
376
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
377
+ msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
378
 
379
+ #: includes/class-freemius.php11281, includes/class-freemius.php11468,
380
+ #: includes/class-freemius.php:11511
381
+ msgctxt ""
382
+ msgid "Hmm"
383
+ msgstr "Uhm"
384
 
385
+ #: includes/class-freemius.php:11294
386
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
387
+ msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi."
388
 
389
+ #: includes/class-freemius.php11295, templates/account.php70,
390
+ #: templates/add-ons.php:130
391
+ msgctxt "trial period"
392
+ msgid "Trial"
393
+ msgstr "Prova gratuita"
394
 
395
+ #: includes/class-freemius.php:11300
396
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
397
+ msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
398
 
399
+ #: includes/class-freemius.php11304, includes/class-freemius.php:11358
400
+ msgid "Please contact us here"
401
+ msgstr "Contattaci qui"
 
402
 
403
+ #: includes/class-freemius.php:11314
404
+ msgid "Your plan was successfully upgraded."
405
+ msgstr "Il piano è stato aggiornato con successo."
406
 
407
+ #: includes/class-freemius.php:11331
408
+ msgid "Your plan was successfully changed to %s."
409
+ msgstr "Il piano è stato cambiato con successo a %s."
410
 
411
+ #: includes/class-freemius.php:11346
412
+ msgid "Your license has expired. You can still continue using the free %s forever."
413
+ msgstr "Your license has expired. You can still continue using the free %s forever."
414
 
415
+ #: includes/class-freemius.php:11354
416
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
417
+ msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
418
 
419
+ #: includes/class-freemius.php:11367
420
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
421
+ msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto."
 
422
 
423
+ #: includes/class-freemius.php:11389
424
+ msgid "Your trial has expired. You can still continue using all our free features."
425
+ msgstr "La versione di prova è scaduta. Si può comunque continuare a utilizzare tutte le nostre funzioni gratuite."
426
 
427
+ #: includes/class-freemius.php:11459
428
+ msgid "It looks like the license could not be activated."
429
+ msgstr "Sembra che la licenza non possa essere attivata."
 
430
 
431
+ #: includes/class-freemius.php:11489
432
+ msgid "Your license was successfully activated."
433
+ msgstr "La tua licenza è stata attivata correttamente."
 
434
 
435
+ #: includes/class-freemius.php:11515
436
+ msgid "It looks like your site currently doesn't have an active license."
437
+ msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
438
 
439
+ #: includes/class-freemius.php:11527
440
+ msgid "It looks like the license deactivation failed."
441
+ msgstr "Sembra che la disattivazione della licenza non sia riuscita."
442
 
443
+ #: includes/class-freemius.php:11554
444
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
445
+ msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
446
+
447
+ #: includes/class-freemius.php:11555
448
+ msgid "O.K"
449
+ msgstr "OK"
450
+
451
+ #: includes/class-freemius.php:11603
452
+ msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
453
+ msgstr "Il tuo piano è stato declassato con successo. La licenza del piano %s scadrà in %s."
454
+
455
+ #: includes/class-freemius.php:11613
456
+ msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
457
+ msgstr "Stiamo avendo qualche problema temporaneo con il downgrade del piano. Riprova tra qualche minuto."
458
+
459
+ #: includes/class-freemius.php:11637
460
+ msgid "You are already running the %s in a trial mode."
461
+ msgstr "You are already running the %s in a trial mode."
462
+
463
+ #: includes/class-freemius.php:11648
464
+ msgid "You already utilized a trial before."
465
+ msgstr "Hai già utilizzato una prova gratuita in passato."
466
+
467
+ #: includes/class-freemius.php:11662
468
+ msgid "Plan %s do not exist, therefore, can't start a trial."
469
+ msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
470
+
471
+ #: includes/class-freemius.php:11673
472
+ msgid "Plan %s does not support a trial period."
473
+ msgstr "Il piano %s non supporta il periodo di prova."
474
+
475
+ #: includes/class-freemius.php:11684
476
+ msgid "None of the %s's plans supports a trial period."
477
+ msgstr "None of the %s's plans supports a trial period."
478
+
479
+ #: includes/class-freemius.php:11734
480
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
481
+ msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
482
+
483
+ #: includes/class-freemius.php:11785
484
+ msgid "Your %s free trial was successfully cancelled."
485
+ msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
486
+
487
+ #: includes/class-freemius.php:11793
488
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
489
+ msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
490
+
491
+ #: includes/class-freemius.php:12032
492
+ msgid "Version %s was released."
493
+ msgstr "La versione %s é stata rilasciata."
494
+
495
+ #: includes/class-freemius.php:12032
496
+ msgid "Please download %s."
497
+ msgstr "Scarica %s."
498
+
499
+ #: includes/class-freemius.php:12039
500
+ msgid "the latest %s version here"
501
+ msgstr "l'ultima versione %s é quì"
502
+
503
+ #: includes/class-freemius.php:12044
504
+ msgid "New"
505
+ msgstr "Nuovo"
506
+
507
+ #: includes/class-freemius.php:12049
508
+ msgid "Seems like you got the latest release."
509
+ msgstr "Sembra che tu abbia la versione più recente."
510
+
511
+ #: includes/class-freemius.php:12050
512
+ msgid "You are all good!"
513
+ msgstr "Sei fantastico!"
514
+
515
+ #: includes/class-freemius.php:12316
516
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
517
+ msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata."
518
+
519
+ #: includes/class-freemius.php:12491
520
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
521
+ msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata."
522
 
523
+ #: includes/class-freemius.php:12497
524
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
525
+ msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
526
+
527
+ #: includes/class-freemius.php:12502
528
+ msgid "%s is the new owner of the account."
529
+ msgstr "%s è il nuovo proprietario dell'account."
530
+
531
+ #: includes/class-freemius.php:12504
532
+ msgctxt "as congratulations"
533
+ msgid "Congrats"
534
+ msgstr "Congratulazioni"
535
+
536
+ #: includes/class-freemius.php:12524
537
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
538
+ msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
539
+
540
+ #: includes/class-freemius.php:12525
541
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
542
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
543
 
544
+ #: includes/class-freemius.php:12532
545
+ msgid "Change Ownership"
546
+ msgstr "Cambia Proprietario"
547
+
548
+ #: includes/class-freemius.php:12540
549
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
550
+ msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
551
+
552
+ #: includes/class-freemius.php:12552
553
+ msgid "Please provide your full name."
554
+ msgstr "Per favore inserisci il tuo nome completo."
555
+
556
+ #: includes/class-freemius.php:12557
557
+ msgid "Your name was successfully updated."
558
+ msgstr "Il tuo nome è stato aggiornato correttamente."
559
+
560
+ #: includes/class-freemius.php:12618
561
+ msgid "You have successfully updated your %s."
562
+ msgstr "Hai aggiornato con successo il tuo %s."
563
+
564
+ #: includes/class-freemius.php:12756
565
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
566
+ msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
567
+
568
+ #: includes/class-freemius.php:12757
569
+ msgctxt "advance notice of something that will need attention."
570
+ msgid "Heads up"
571
+ msgstr "Attenzione"
572
+
573
+ #: includes/class-freemius.php:13075
574
+ msgid "Awesome"
575
+ msgstr "Fantastico"
576
+
577
+ #: includes/class-freemius.php:13115
578
+ msgctxt "exclamation"
579
+ msgid "Hey"
580
+ msgstr "Hey"
581
+
582
+ #: includes/class-freemius.php:13115
583
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
584
+ msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
585
+
586
+ #: includes/class-freemius.php:13123
587
+ msgid "No commitment for %s days - cancel anytime!"
588
+ msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
589
+
590
+ #: includes/class-freemius.php:13124
591
+ msgid "No credit card required"
592
+ msgstr "Nessuna carta di credito richiesta"
593
+
594
+ #: includes/class-freemius.php13131, templates/forms/trial-start.php:53
595
+ msgctxt "call to action"
596
+ msgid "Start free trial"
597
+ msgstr "Inizia il periodo di prova gratuito"
598
+
599
+ #: includes/class-freemius.php:13208
600
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
601
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
602
+
603
+ #: includes/class-freemius.php:13217
604
+ msgid "Learn more"
605
+ msgstr "Learn more"
606
+
607
+ #: includes/class-freemius.php13373, templates/account.php330,
608
+ #: templates/connect.php309, templates/forms/license-activation.php:24
609
+ msgid "Activate License"
610
+ msgstr "Attiva licenza"
611
+
612
+ #: includes/class-freemius.php13374, templates/account.php:393
613
  msgid "Change License"
614
  msgstr "Cambia licenza"
615
 
616
+ #: includes/class-freemius.php:13435
617
+ msgid "Opt Out"
618
+ msgstr "Cancella iscrizione"
619
 
620
+ #: includes/class-freemius.php13437, includes/class-freemius.php:13442
621
+ msgid "Opt In"
622
+ msgstr "Iscriviti"
623
 
624
+ #: includes/class-freemius.php:13630
625
+ msgid "Please follow these steps to complete the upgrade"
626
+ msgstr "Segui i passi seguenti per completare l'aggiornamento"
627
 
628
+ #: includes/class-freemius.php:13633
629
+ msgid "Download the latest %s version"
630
+ msgstr "Scarica l'ultima versione di %s"
631
 
632
+ #: includes/class-freemius.php:13637
633
+ msgid "Upload and activate the downloaded version"
634
+ msgstr "Carica e attiva la versione scaricata"
635
 
636
+ #: includes/class-freemius.php:13639
637
+ msgid "How to upload and activate?"
638
+ msgstr "Come faccio a caricare ed attivare?"
639
 
640
+ #: includes/class-freemius.php:13798
641
+ msgid "Auto installation only works for opted-in users."
642
+ msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
643
 
644
+ #: includes/class-freemius.php13808, includes/class-freemius.php13841,
645
+ #: includes/class-fs-plugin-updater.php490,
646
+ #: includes/class-fs-plugin-updater.php:504
647
+ msgid "Invalid module ID."
648
+ msgstr "ID modulo non valida."
649
 
650
+ #: includes/class-freemius.php13817, includes/class-fs-plugin-updater.php:524
651
+ msgid "Premium version already active."
652
+ msgstr "Versione Premium già attiva."
 
653
 
654
+ #: includes/class-freemius.php:13824
655
+ msgid "You do not have a valid license to access the premium version."
656
+ msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
657
+
658
+ #: includes/class-freemius.php:13831
659
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
660
+ msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
661
+
662
+ #: includes/class-freemius.php13849, includes/class-fs-plugin-updater.php:523
663
+ msgid "Premium add-on version already installed."
664
+ msgstr "Versione Premium dell'add-on già installata."
665
+
666
+ #: includes/class-freemius.php:14194
667
+ msgid "View paid features"
668
+ msgstr "View paid features"
669
+
670
+ #: includes/class-fs-plugin-updater.php:131
671
+ msgid "%sRenew your license now%s to access version %s features and support."
672
+ msgstr "%sRinnova la tua licenza ora%s per accedere a funzionalità e supporto della versione %s."
673
+
674
+ #: includes/class-fs-plugin-updater.php:553
675
+ msgid "Installing plugin: %s"
676
+ msgstr "Installazione plugin: %s"
677
 
678
+ #: includes/class-fs-plugin-updater.php:594
679
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
680
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
681
+
682
+ #: includes/class-fs-plugin-updater.php:700
683
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
684
+ msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
685
+
686
+ #: includes/fs-plugin-info-dialog.php328, templates/account.php:696
687
+ msgctxt "verb"
688
+ msgid "Purchase"
689
+ msgstr "Acquisto"
690
+
691
+ #: includes/fs-plugin-info-dialog.php:331
692
+ msgid "Start my free %s"
693
+ msgstr "Inizia la mia %s"
694
+
695
+ #: includes/fs-plugin-info-dialog.php355, templates/account.php:52
696
+ msgctxt "as download latest version"
697
+ msgid "Download Latest"
698
+ msgstr "Scarica l'ultima versione"
699
+
700
+ #: includes/fs-plugin-info-dialog.php358, templates/account.php676,
701
+ #: templates/account.php729, templates/auto-installation.php:110
702
  msgid "Install Now"
703
  msgstr "Installa ora"
704
 
705
+ #: includes/fs-plugin-info-dialog.php364, templates/account.php:384
706
  msgid "Install Update Now"
707
  msgstr "Installa l'aggiornamento ora"
708
 
709
+ #: includes/fs-plugin-info-dialog.php:368
710
+ msgid "Newer Version (%s) Installed"
711
+ msgstr "Versione più recente (%s) installata"
 
 
 
 
712
 
713
+ #: includes/fs-plugin-info-dialog.php:371
714
+ msgid "Latest Version Installed"
715
+ msgstr "Versione più recente installata"
 
716
 
717
+ #: includes/fs-plugin-info-dialog.php:484
718
+ msgctxt "Plugin installer section title"
719
+ msgid "Description"
720
+ msgstr "Descrizione"
721
 
722
+ #: includes/fs-plugin-info-dialog.php:485
723
+ msgctxt "Plugin installer section title"
724
+ msgid "Installation"
725
+ msgstr "Installazione"
726
 
727
+ #: includes/fs-plugin-info-dialog.php:486
728
+ msgctxt "Plugin installer section title"
729
+ msgid "FAQ"
730
+ msgstr "FAQ"
731
 
732
+ #: includes/fs-plugin-info-dialog.php487,
733
+ #: templates/plugin-info/description.php:55
734
+ msgid "Screenshots"
735
+ msgstr "Screenshot"
736
 
737
+ #: includes/fs-plugin-info-dialog.php:488
738
+ msgctxt "Plugin installer section title"
739
+ msgid "Changelog"
740
+ msgstr "Changelog"
741
 
742
+ #: includes/fs-plugin-info-dialog.php:489
743
+ msgctxt "Plugin installer section title"
744
+ msgid "Reviews"
745
+ msgstr "Recensioni"
746
 
747
+ #: includes/fs-plugin-info-dialog.php:490
748
+ msgctxt "Plugin installer section title"
749
+ msgid "Other Notes"
750
+ msgstr "Altre note"
751
 
752
+ #: includes/fs-plugin-info-dialog.php:505
753
+ msgctxt "Plugin installer section title"
754
+ msgid "Features & Pricing"
755
+ msgstr "Caratteristiche & prezzi"
756
 
757
+ #: includes/fs-plugin-info-dialog.php:515
758
+ msgid "Plugin Install"
759
+ msgstr "Installazione del plugin"
760
 
761
+ #: includes/fs-plugin-info-dialog.php:587
762
+ msgctxt "e.g. Professional Plan"
763
+ msgid "%s Plan"
764
+ msgstr "Piano %s"
765
 
766
+ #: includes/fs-plugin-info-dialog.php:612
767
+ msgctxt "e.g. the best product"
768
+ msgid "Best"
769
+ msgstr "Migliore"
770
 
771
+ #: includes/fs-plugin-info-dialog.php618,
772
+ #: includes/fs-plugin-info-dialog.php:638
773
+ msgctxt "as every month"
774
+ msgid "Monthly"
775
+ msgstr "Mensilmente"
776
 
777
+ #: includes/fs-plugin-info-dialog.php:621
778
+ msgctxt "as once a year"
779
+ msgid "Annual"
780
+ msgstr "Annuale"
781
 
782
+ #: includes/fs-plugin-info-dialog.php:624
783
+ msgid "Lifetime"
784
+ msgstr "Tutta la vita"
785
 
786
+ #: includes/fs-plugin-info-dialog.php638,
787
+ #: includes/fs-plugin-info-dialog.php640,
788
+ #: includes/fs-plugin-info-dialog.php:642
789
+ msgctxt "e.g. billed monthly"
790
+ msgid "Billed %s"
791
+ msgstr "Fatturato %s"
792
 
793
+ #: includes/fs-plugin-info-dialog.php:640
794
+ msgctxt "as once a year"
795
+ msgid "Annually"
796
+ msgstr "Annualmente"
797
 
798
+ #: includes/fs-plugin-info-dialog.php:642
799
+ msgctxt "as once a year"
800
+ msgid "Once"
801
+ msgstr "Una volta"
802
 
803
+ #: includes/fs-plugin-info-dialog.php:648
804
+ msgid "Single Site License"
805
+ msgstr "Licenza per sito singolo"
806
 
807
+ #: includes/fs-plugin-info-dialog.php:650
808
+ msgid "Unlimited Licenses"
809
+ msgstr "Licenze illimitate"
810
 
811
+ #: includes/fs-plugin-info-dialog.php:652
812
+ msgid "Up to %s Sites"
813
+ msgstr "Fino a %s siti"
814
 
815
+ #: includes/fs-plugin-info-dialog.php662,
816
+ #: templates/plugin-info/features.php:82
817
+ msgctxt "as monthly period"
818
+ msgid "mo"
819
+ msgstr "mese"
820
 
821
+ #: includes/fs-plugin-info-dialog.php669,
822
+ #: templates/plugin-info/features.php:80
823
+ msgctxt "as annual period"
824
+ msgid "year"
825
+ msgstr "anno"
826
 
827
+ #: includes/fs-plugin-info-dialog.php:721
828
+ msgctxt "noun"
829
+ msgid "Price"
830
+ msgstr "Prezzo"
831
 
832
+ #: includes/fs-plugin-info-dialog.php:767
833
+ msgctxt "as a discount of $5 or 10%"
834
+ msgid "Save %s"
835
+ msgstr "Risparmia %s"
836
 
837
+ #: includes/fs-plugin-info-dialog.php:777
838
+ msgid "No commitment for %s - cancel anytime"
839
+ msgstr "Nessun impegno con %s - cancella quando vuoi"
840
 
841
+ #: includes/fs-plugin-info-dialog.php:780
842
+ msgid "After your free %s, pay as little as %s"
843
+ msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
844
 
845
+ #: includes/fs-plugin-info-dialog.php:791
846
+ msgid "Details"
847
+ msgstr "Dettagli"
848
 
849
+ #: includes/fs-plugin-info-dialog.php794, templates/account.php59,
850
+ #: templates/debug.php183, templates/debug.php220, templates/debug.php:354
851
+ msgctxt "product version"
852
+ msgid "Version"
853
+ msgstr "Versione"
854
 
855
+ #: includes/fs-plugin-info-dialog.php:800
856
+ msgctxt "as the plugin author"
857
+ msgid "Author"
858
+ msgstr "Author"
859
 
860
+ #: includes/fs-plugin-info-dialog.php:806
861
+ msgid "Last Updated"
862
+ msgstr "Ultimo aggiornamento"
863
 
864
+ #: includes/fs-plugin-info-dialog.php:810
865
+ msgctxt "x-ago"
866
+ msgid "%s ago"
867
+ msgstr "%s fa"
868
 
869
+ #: includes/fs-plugin-info-dialog.php:819
870
+ msgid "Requires WordPress Version"
871
+ msgstr "Requires WordPress Version"
872
 
873
+ #: includes/fs-plugin-info-dialog.php:819
874
+ msgid "%s or higher"
875
+ msgstr "%s o superiore"
876
 
877
+ #: includes/fs-plugin-info-dialog.php:825
878
+ msgid "Compatible up to"
879
+ msgstr "Compatible up to"
880
 
881
+ #: includes/fs-plugin-info-dialog.php:832
882
+ msgid "Downloaded"
883
+ msgstr "Downloaded"
 
884
 
885
+ #: includes/fs-plugin-info-dialog.php:835
886
+ msgid "%s time"
887
+ msgstr "% volta"
888
 
889
+ #: includes/fs-plugin-info-dialog.php:837
890
+ msgid "%s times"
891
+ msgstr "%s volte"
892
 
893
+ #: includes/fs-plugin-info-dialog.php:847
894
+ msgid "WordPress.org Plugin Page"
895
+ msgstr "Pagina dei plugin di WordPress.org"
896
 
897
+ #: includes/fs-plugin-info-dialog.php:854
898
+ msgid "Plugin Homepage"
899
+ msgstr "Homepage del plugin"
900
 
901
+ #: includes/fs-plugin-info-dialog.php861,
902
+ #: includes/fs-plugin-info-dialog.php:941
903
+ msgid "Donate to this plugin"
904
+ msgstr "Fai una donazione a questo plugin"
905
 
906
+ #: includes/fs-plugin-info-dialog.php:867
907
+ msgid "Average Rating"
908
+ msgstr "Valutazione media"
909
 
910
+ #: includes/fs-plugin-info-dialog.php:874
911
+ msgid "based on %s"
912
+ msgstr "basato su %s"
913
 
914
+ #: includes/fs-plugin-info-dialog.php:878
915
+ msgid "%s rating"
916
+ msgstr "%s valutazione"
917
 
918
+ #: includes/fs-plugin-info-dialog.php:880
919
+ msgid "%s ratings"
920
+ msgstr "%s valutazioni"
921
 
922
+ #: includes/fs-plugin-info-dialog.php:894
923
+ msgid "%s star"
924
+ msgstr "%s stella"
925
 
926
+ #: includes/fs-plugin-info-dialog.php:896
927
+ msgid "%s stars"
928
+ msgstr "%s stelle"
929
 
930
+ #: includes/fs-plugin-info-dialog.php:907
931
+ msgid "Click to see reviews that provided a rating of %s"
932
+ msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
933
 
934
+ #: includes/fs-plugin-info-dialog.php:920
935
+ msgid "Contributors"
936
+ msgstr "Contributori"
937
 
938
+ #: includes/fs-plugin-info-dialog.php948,
939
+ #: includes/fs-plugin-info-dialog.php:950
940
+ msgid "Warning"
941
+ msgstr "Warning"
942
 
943
+ #: includes/fs-plugin-info-dialog.php:948
944
+ msgid "This plugin has not been tested with your current version of WordPress."
945
+ msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
946
 
947
+ #: includes/fs-plugin-info-dialog.php:950
948
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
949
+ msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
 
950
 
951
+ #: includes/fs-plugin-info-dialog.php:969
952
+ msgid "Paid add-on must be deployed to Freemius."
953
+ msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
 
954
 
955
+ #: includes/fs-plugin-info-dialog.php:970
956
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
957
+ msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
958
 
959
+ #: templates/account.php:53
960
+ msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
961
+ msgstr "Effettuare il downgrade del piano interromperà immediatamente tutti i futuri pagamenti ricorrenti e la licenza del piano %s scadrà in %s."
962
 
963
+ #: templates/account.php:54
964
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
965
+ msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
966
 
967
+ #: templates/account.php:55
968
+ msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
969
+ msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
970
 
971
+ #: templates/account.php:56
972
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
973
+ msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
974
 
975
+ #. translators: %s: Plan title (e.g. "Professional")
976
+ #: templates/account.php:58
977
+ msgid "Activate %s Plan"
978
+ msgstr "Attivare il piano %s"
979
 
980
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
981
+ #: templates/account.php:61
982
+ msgid "Auto renews in %s"
983
+ msgstr "Rinnovo automatico in %s"
984
 
985
+ #. translators: %s: Time period (e.g. Expires in "2 months")
986
+ #: templates/account.php:63
987
+ msgid "Expires in %s"
988
+ msgstr "Scade in %s"
989
 
990
+ #: templates/account.php:64
991
+ msgctxt "as synchronize license"
992
+ msgid "Sync License"
993
+ msgstr "Sincronizza la licenza"
994
 
995
+ #: templates/account.php:65
996
+ msgid "Cancel Trial"
997
+ msgstr "Annulla prova gratuita"
998
 
999
+ #: templates/account.php:66
1000
+ msgid "Change Plan"
1001
+ msgstr "Cambia piano"
1002
 
1003
+ #: templates/account.php:67
1004
+ msgctxt "verb"
1005
+ msgid "Upgrade"
1006
+ msgstr "Aggiornamento"
1007
 
1008
+ #: templates/account.php:69
1009
+ msgctxt "verb"
1010
+ msgid "Downgrade"
1011
+ msgstr "Downgrade"
1012
 
1013
+ #: templates/account.php71, templates/add-ons.php126,
1014
+ #: templates/plugin-info/features.php:72
1015
+ msgid "Free"
1016
+ msgstr "Gratuito"
1017
 
1018
+ #: templates/account.php:72
1019
+ msgid "Activate"
1020
+ msgstr "Attiva"
1021
 
1022
+ #: templates/account.php73, templates/debug.php311,
1023
+ #: includes/customizer/class-fs-customizer-upsell-control.php:106
1024
+ msgctxt "as product pricing plan"
1025
+ msgid "Plan"
1026
+ msgstr "Piano"
1027
 
1028
+ #: templates/account.php:87
1029
+ msgid "Free Trial"
1030
+ msgstr "Prova gratuita"
1031
 
1032
+ #: templates/account.php:98
1033
+ msgid "Account Details"
1034
+ msgstr "Dettagli dell'account"
1035
 
1036
+ #: templates/account.php:108
1037
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1038
+ msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
1039
 
1040
+ #: templates/account.php:110
1041
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1042
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1043
 
1044
+ #: templates/account.php:113
1045
+ msgid "Delete Account"
1046
+ msgstr "Elimina Account"
1047
 
1048
+ #: templates/account.php:124
1049
+ msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
1050
+ msgstr "La disattivazione della licenza bloccherà tutte le funzionalità premium, ma vi permetterà di attivare la licenza su un altro sito. Sei sicuro di voler procedere?"
 
1051
 
1052
+ #: templates/account.php125, templates/account.php:590
1053
+ msgid "Deactivate License"
1054
+ msgstr "Disattiva licenza"
 
1055
 
1056
+ #: templates/account.php:142
1057
+ msgid "Are you sure you want to proceed?"
1058
+ msgstr "Sei sicuro di voler procedere?"
 
1059
 
1060
+ #: templates/account.php:142
1061
+ msgid "Cancel Subscription"
1062
+ msgstr "Annulla sottoscrizione"
 
1063
 
1064
+ #: templates/account.php:171
1065
+ msgctxt "as synchronize"
1066
+ msgid "Sync"
1067
+ msgstr "Sincronizza"
1068
 
1069
+ #: templates/account.php185, templates/debug.php:389
1070
+ msgid "Name"
1071
+ msgstr "Nome"
1072
 
1073
+ #: templates/account.php191, templates/debug.php:390
1074
+ msgid "Email"
1075
+ msgstr "Email"
1076
 
1077
+ #: templates/account.php198, templates/debug.php310, templates/debug.php:419
1078
+ msgid "User ID"
1079
+ msgstr "ID utente"
1080
 
1081
+ #: templates/account.php:205
1082
+ msgid "Site ID"
1083
+ msgstr "ID del sito"
1084
 
1085
+ #: templates/account.php:208
1086
+ msgid "No ID"
1087
+ msgstr "Nessun ID"
1088
 
1089
+ #: templates/account.php213, templates/debug.php225, templates/debug.php312,
1090
+ #: templates/debug.php355, templates/debug.php:392
1091
+ msgid "Public Key"
1092
+ msgstr "Chiave pubblica"
1093
 
1094
+ #: templates/account.php219, templates/debug.php313, templates/debug.php356,
1095
+ #: templates/debug.php:393
1096
+ msgid "Secret Key"
1097
+ msgstr "Chiave segreta"
1098
 
1099
+ #: templates/account.php:222
1100
+ msgctxt "as secret encryption key missing"
1101
+ msgid "No Secret"
1102
+ msgstr "Nessuna chiave"
1103
 
1104
+ #: templates/account.php:241
1105
+ msgid "Trial"
1106
+ msgstr "Prova gratuita"
1107
 
1108
+ #: templates/account.php257, templates/debug.php:424
1109
+ msgid "License Key"
1110
+ msgstr "License Key"
1111
 
1112
+ #: templates/account.php:287
1113
+ msgid "not verified"
1114
+ msgstr "non verificato"
1115
 
1116
+ #: templates/account.php:317
1117
+ msgid "Localhost"
1118
+ msgstr "Localhost"
1119
 
1120
+ #: templates/account.php:321
1121
+ msgctxt "as 5 licenses left"
1122
+ msgid "%s left"
1123
+ msgstr "%s rimanenti"
1124
 
1125
+ #: templates/account.php:322
1126
+ msgid "Last license"
1127
+ msgstr "Ultima licenza"
1128
 
1129
+ #: templates/account.php:352
1130
+ msgid "Premium version"
1131
+ msgstr "Versione premium"
1132
 
1133
+ #: templates/account.php:354
1134
+ msgid "Free version"
1135
+ msgstr "Versione gratuita"
1136
 
1137
+ #: templates/account.php:366
1138
+ msgid "Verify Email"
1139
+ msgstr "Verifica email"
1140
 
1141
+ #: templates/account.php:377
1142
+ msgid "Download %s Version"
1143
+ msgstr "Scarica la versione %s"
1144
 
1145
+ #: templates/account.php391, templates/account.php:442
1146
+ msgctxt "verb"
1147
+ msgid "Show"
1148
+ msgstr "Mostra"
1149
 
1150
+ #: templates/account.php:405
1151
+ msgid "What is your %s?"
1152
+ msgstr "Qual è il tuo %s?"
1153
 
1154
+ #: templates/account.php413, templates/account/billing.php:27
1155
+ msgctxt "verb"
1156
+ msgid "Edit"
1157
+ msgstr "Modifica"
1158
 
1159
+ #: templates/account.php:436
1160
+ msgctxt "verb"
1161
+ msgid "Hide"
1162
+ msgstr "Nascondi"
1163
 
1164
+ #: templates/account.php472, templates/debug.php218, templates/debug.php308,
1165
+ #: templates/debug.php351, templates/debug.php388, templates/debug.php417,
1166
+ #: templates/debug.php496, templates/account/payments.php35,
1167
+ #: templates/debug/logger.php:21
1168
+ msgid "ID"
1169
+ msgstr "ID"
1170
 
1171
+ #: templates/account.php:475
1172
+ msgctxt "as software license"
1173
+ msgid "License"
1174
+ msgstr "Licenza"
1175
 
1176
+ #: templates/account.php:550
1177
+ msgid "Cancelled"
1178
+ msgstr "Annullato"
1179
 
1180
+ #: templates/account.php:555
1181
+ msgid "Expired"
1182
+ msgstr "Scaduto"
 
1183
 
1184
+ #: templates/account.php:560
1185
+ msgid "No expiration"
1186
+ msgstr "Nessuna scadenza"
 
1187
 
1188
+ #: templates/account.php668, templates/account.php:724
1189
+ msgid "Activate this add-on"
1190
+ msgstr "Attivare questo addon"
 
1191
 
1192
+ #: templates/account.php745, templates/debug.php:336
1193
+ msgctxt "verb"
1194
+ msgid "Delete"
1195
+ msgstr "Elimina"
1196
 
1197
+ #: templates/add-ons.php:36
1198
+ msgid "Add Ons for %s"
1199
+ msgstr "Add-on per %s"
 
1200
 
1201
+ #: templates/add-ons.php:44
1202
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1203
+ msgstr "Non siamo riusciti a caricare la lista degli add-on. Si tratta probabilmente di un problema nel nostro sistema, per favore riprova tra qualche minuto."
 
1204
 
1205
+ #: templates/add-ons.php:135
1206
+ msgid "View details"
1207
+ msgstr "Visualizza dettagli"
 
1208
 
1209
+ #: templates/admin-notice.php13, templates/forms/license-activation.php73,
1210
+ #: templates/forms/resend-key.php:77
1211
+ msgctxt "as close a window"
1212
+ msgid "Dismiss"
1213
+ msgstr "Chiudi"
1214
 
1215
+ #: templates/auto-installation.php:44
1216
+ msgid "%s sec"
1217
+ msgstr "%s sec"
1218
 
1219
+ #: templates/auto-installation.php:82
1220
+ msgid "Automatic Installation"
1221
+ msgstr "Installazione automatica"
1222
 
1223
+ #: templates/auto-installation.php:92
1224
+ msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1225
+ msgstr "Un download con installazione automatica di %s (versione a pagamento) da %s inizierà in %s. Se preferisci farlo manualmente, fai clic sul pulsante per annullare."
1226
 
1227
+ #: templates/auto-installation.php:103
1228
+ msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1229
+ msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minuti per completarsi. Attendi finchè non ha finito, assicurandoti di non ricaricare questa pagina."
1230
 
1231
+ #: templates/auto-installation.php:108
1232
+ msgid "Cancel Installation"
1233
+ msgstr "Annulla installazione"
1234
 
1235
+ #: templates/checkout.php:168
1236
+ msgid "Checkout"
1237
+ msgstr "Checkout"
1238
 
1239
+ #: templates/checkout.php:168
1240
+ msgid "PCI compliant"
1241
+ msgstr "PCI compliant"
1242
 
1243
+ #: templates/connect.php:128
1244
+ msgid "Allow & Continue"
1245
+ msgstr "Consenti & Continua"
1246
 
1247
+ #: templates/connect.php:131
1248
+ msgid "Re-send activation email"
1249
+ msgstr "Invia nuovamente l'email di attivazione"
1250
 
1251
+ #: templates/connect.php:135
1252
+ msgid "Thanks %s!"
1253
+ msgstr "Grazie %s!"
1254
 
1255
+ #: templates/connect.php143, templates/forms/license-activation.php:43
1256
+ msgid "Agree & Activate License"
1257
+ msgstr "Accetta e attiva la licenza"
1258
 
1259
+ #: templates/connect.php147, templates/connect.php:170
1260
+ msgctxt "greeting"
1261
+ msgid "Hey %s,"
1262
+ msgstr "Hey %s,"
1263
 
1264
+ #: templates/connect.php:148
1265
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1266
+ msgstr "Grazie per aver acquistato %s! Per iniziare, per favore inserisci la tua chiave di licenza:"
1267
 
1268
+ #: templates/connect.php:154
1269
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1270
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1271
 
1272
+ #: templates/connect.php:159
1273
+ msgid "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1274
+ msgstr "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1275
 
1276
+ #: templates/connect.php189, templates/forms/license-activation.php:46
1277
+ msgid "License key"
1278
+ msgstr "Chiave di licenza"
1279
 
1280
+ #: templates/connect.php192, templates/forms/license-activation.php:19
1281
+ msgid "Can't find your license key?"
1282
+ msgstr "Non trovi la tua chiave di licenza?"
1283
 
1284
+ #: templates/connect.php199, templates/forms/deactivation/retry-skip.php:20
1285
+ msgctxt "verb"
1286
+ msgid "Skip"
1287
+ msgstr "Salta"
1288
 
1289
+ #: templates/connect.php:228
1290
+ msgid "Your Profile Overview"
1291
+ msgstr "Panoramica del tuo profilo"
1292
 
1293
+ #: templates/connect.php:229
1294
+ msgid "Name and email address"
1295
+ msgstr "Nome ed indirizzo email"
1296
 
1297
+ #: templates/connect.php:234
1298
+ msgid "Your Site Overview"
1299
+ msgstr "Panoramica del tuo sito"
1300
 
1301
+ #: templates/connect.php:235
1302
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1303
+ msgstr "URL del sito, versione di WP, informazioni PHP, plugin e temi"
1304
 
1305
+ #: templates/connect.php:240
1306
+ msgid "Admin Notices"
1307
+ msgstr "Avvisi amministratore"
 
1308
 
1309
+ #: templates/connect.php241, templates/connect.php:263
1310
+ msgid "Updates, announcements, marketing, no spam"
1311
+ msgstr "Aggiornamenti, annunci, marketing, no spam"
 
1312
 
1313
+ #: templates/connect.php:246
1314
+ msgid "Current %s Events"
1315
+ msgstr "Current %s Events"
 
1316
 
1317
+ #: templates/connect.php:247
1318
+ msgid "Activation, deactivation and uninstall"
1319
+ msgstr "Attiva, disattivazione e disinstallazione"
 
1320
 
1321
+ #: templates/connect.php:262
1322
+ msgid "Newsletter"
1323
+ msgstr "Newsletter"
 
1324
 
1325
+ #: templates/connect.php279, templates/forms/license-activation.php:38
1326
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1327
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
 
1328
 
1329
+ #: templates/connect.php:284
1330
+ msgid "What permissions are being granted?"
1331
+ msgstr "Quali autorizzazioni vengono concesse?"
1332
 
1333
+ #: templates/connect.php:305
1334
+ msgid "Don't have a license key?"
1335
+ msgstr "Non hai una chiave di licenza?"
 
1336
 
1337
+ #: templates/connect.php:306
1338
+ msgid "Activate Free Version"
1339
+ msgstr "Attiva versione gratuita"
 
1340
 
1341
+ #: templates/connect.php:308
1342
+ msgid "Have a license key?"
1343
+ msgstr "Hai una chiave di licenza?"
1344
 
1345
+ #: templates/connect.php:316
1346
+ msgid "Privacy Policy"
1347
+ msgstr "Politica sulla privacy"
1348
 
1349
+ #: templates/connect.php:318
1350
+ msgid "Terms of Service"
1351
+ msgstr "Termini del Servizio"
1352
 
1353
+ #: templates/connect.php:436
1354
+ msgctxt "as in the process of sending an email"
1355
+ msgid "Sending email"
1356
+ msgstr "Invio email"
1357
 
1358
+ #: templates/connect.php:437
1359
+ msgctxt "as activating plugin"
1360
+ msgid "Activating"
1361
+ msgstr "Attivazione"
1362
 
1363
+ #: templates/contact.php:74
1364
+ msgid "Contact"
1365
+ msgstr "Contact"
1366
 
1367
+ #: templates/debug.php:17
1368
+ msgctxt "as turned off"
1369
+ msgid "Off"
1370
+ msgstr "Non attivo"
1371
 
1372
+ #: templates/debug.php:18
1373
+ msgctxt "as turned on"
1374
+ msgid "On"
1375
+ msgstr "Attivo"
1376
 
1377
+ #: templates/debug.php:20
1378
+ msgid "SDK"
1379
+ msgstr "SDK"
1380
 
1381
+ #: templates/debug.php:24
1382
+ msgctxt "as code debugging"
1383
+ msgid "Debugging"
1384
+ msgstr "Debugging"
1385
 
1386
+ #: templates/debug.php54, templates/debug.php226, templates/debug.php:314
1387
+ msgid "Actions"
1388
+ msgstr "Azioni"
1389
 
1390
+ #: templates/debug.php:64
1391
+ msgid "Are you sure you want to delete all Freemius data?"
1392
+ msgstr "Sei sicuro di voler eliminare tutti i dati di Freemius?"
1393
 
1394
+ #: templates/debug.php:64
1395
+ msgid "Delete All Accounts"
1396
+ msgstr "Eliminare tutti gli account"
1397
 
1398
+ #: templates/debug.php:71
1399
+ msgid "Clear API Cache"
1400
+ msgstr "Elimina cache API"
1401
 
1402
+ #: templates/debug.php:78
1403
+ msgid "Sync Data From Server"
1404
+ msgstr "Sincronizza i dati dal server"
1405
 
1406
+ #: templates/debug.php:82
1407
+ msgid "Load DB Option"
1408
+ msgstr "Load DB Option"
1409
 
1410
+ #: templates/debug.php:85
1411
+ msgid "Set DB Option"
1412
+ msgstr "Set DB Option"
1413
 
1414
+ #: templates/debug.php:162
1415
+ msgid "Key"
1416
+ msgstr "Key"
1417
 
1418
+ #: templates/debug.php:163
1419
+ msgid "Value"
1420
+ msgstr "Value"
1421
 
1422
+ #: templates/debug.php:179
1423
+ msgctxt "as software development kit versions"
1424
+ msgid "SDK Versions"
1425
+ msgstr "Versioni SDK"
1426
 
1427
+ #: templates/debug.php:184
1428
+ msgid "SDK Path"
1429
+ msgstr "Percorso SDK"
1430
 
1431
+ #: templates/debug.php185, templates/debug.php:224
1432
+ msgid "Module Path"
1433
+ msgstr "Module Path"
 
1434
 
1435
+ #: templates/debug.php:186
1436
+ msgid "Is Active"
1437
+ msgstr "è attiva"
1438
 
1439
+ #: templates/debug.php214, templates/debug/plugins-themes-sync.php:35
1440
+ msgid "Plugins"
1441
+ msgstr "Plugin"
1442
 
1443
+ #: templates/debug.php214, templates/debug/plugins-themes-sync.php:56
1444
+ msgid "Themes"
1445
+ msgstr "Temi"
1446
 
1447
+ #: templates/debug.php219, templates/debug.php309, templates/debug.php353,
1448
+ #: templates/debug/scheduled-crons.php:81
1449
+ msgid "Slug"
1450
+ msgstr "Slug"
1451
 
1452
+ #: templates/debug.php221, templates/debug.php:352
1453
+ msgid "Title"
1454
+ msgstr "Titolo"
1455
 
1456
+ #: templates/debug.php:222
1457
+ msgctxt "as application program interface"
1458
+ msgid "API"
1459
+ msgstr "API"
1460
 
1461
+ #: templates/debug.php:223
1462
+ msgid "Freemius State"
1463
+ msgstr "Stato di Freemius"
1464
 
1465
+ #: templates/debug.php:255
1466
+ msgctxt "as connection was successful"
1467
+ msgid "Connected"
1468
+ msgstr "Connesso"
1469
 
1470
+ #: templates/debug.php:256
1471
+ msgctxt "as connection blocked"
1472
+ msgid "Blocked"
1473
+ msgstr "Bloccato"
1474
 
1475
+ #: templates/debug.php:277
1476
+ msgid "Simulate Trial"
1477
+ msgstr "Simulate Trial"
1478
 
1479
+ #: templates/debug.php:302
1480
+ msgid "%s Installs"
1481
+ msgstr "%s Installazioni"
1482
 
1483
+ #: templates/debug.php:304
1484
+ msgctxt "like websites"
1485
+ msgid "Sites"
1486
+ msgstr "Siti"
1487
 
1488
+ #: templates/debug.php:347
1489
+ msgid "Add Ons of module %s"
1490
+ msgstr "Add Ons of module %s"
1491
 
1492
+ #: templates/debug.php:384
1493
+ msgid "Users"
1494
+ msgstr "Utenti"
1495
 
1496
+ #: templates/debug.php:391
1497
+ msgid "Verified"
1498
+ msgstr "Verificato"
1499
 
1500
+ #: templates/debug.php:413
1501
+ msgid "%s Licenses"
1502
+ msgstr "%s Licenses"
1503
 
1504
+ #: templates/debug.php:418
1505
+ msgid "Plugin ID"
1506
+ msgstr "Plugin ID"
1507
 
1508
+ #: templates/debug.php:420
1509
+ msgid "Plan ID"
1510
+ msgstr "Plan ID"
1511
 
1512
+ #: templates/debug.php:421
1513
+ msgid "Quota"
1514
+ msgstr "Quota"
 
1515
 
1516
+ #: templates/debug.php:422
1517
+ msgid "Activated"
1518
+ msgstr "Activated"
1519
 
1520
+ #: templates/debug.php:423
1521
+ msgid "Blocking"
1522
+ msgstr "Blocking"
 
1523
 
1524
+ #: templates/debug.php:425
1525
+ msgctxt "as expiration date"
1526
+ msgid "Expiration"
1527
+ msgstr "Scadenza"
1528
 
1529
+ #: templates/debug.php:454
1530
+ msgid "Debug Log"
1531
+ msgstr "Debug Log"
 
1532
 
1533
+ #: templates/debug.php:458
1534
+ msgid "All Types"
1535
+ msgstr "Tutti i tipi"
1536
 
1537
+ #: templates/debug.php:465
1538
+ msgid "All Requests"
1539
+ msgstr "Tutte le richieste"
1540
 
1541
+ #: templates/debug.php470, templates/debug.php499,
1542
+ #: templates/debug/logger.php:25
1543
+ msgid "File"
1544
+ msgstr "File"
1545
 
1546
+ #: templates/debug.php471, templates/debug.php497,
1547
+ #: templates/debug/logger.php:23
1548
+ msgid "Function"
1549
+ msgstr "Funzione"
1550
 
1551
+ #: templates/debug.php:472
1552
+ msgid "Process ID"
1553
+ msgstr "ID processo"
1554
 
1555
+ #: templates/debug.php:473
1556
+ msgid "Logger"
1557
+ msgstr "Logger"
1558
 
1559
+ #: templates/debug.php474, templates/debug.php498,
1560
+ #: templates/debug/logger.php:24
1561
+ msgid "Message"
1562
+ msgstr "Messaggio"
1563
 
1564
+ #: templates/debug.php:476
1565
+ msgid "Filter"
1566
+ msgstr "Filtro"
1567
 
1568
+ #: templates/debug.php:484
1569
+ msgid "Download"
1570
+ msgstr "Download"
1571
 
1572
+ #: templates/debug.php495, templates/debug/logger.php:22
1573
+ msgid "Type"
1574
+ msgstr "Tipo"
1575
 
1576
+ #: templates/debug.php500, templates/debug/logger.php:26
1577
+ msgid "Timestamp"
1578
+ msgstr "Timestamp"
1579
 
1580
+ #: templates/secure-https-header.php:28
1581
+ msgid "Secure HTTPS %s page, running from an external domain"
1582
+ msgstr "Secure HTTPS %s page, running from an external domain"
1583
 
1584
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1585
+ #: templates/plugin-info/features.php:43
1586
+ msgid "Support"
1587
+ msgstr "Supporto"
1588
 
1589
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1590
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1591
+ msgctxt "milliseconds"
1592
+ msgid "ms"
1593
+ msgstr "ms"
1594
 
1595
+ #: includes/debug/debug-bar-start.php:41
1596
+ msgid "Freemius API"
1597
+ msgstr "Freemius API"
1598
 
1599
+ #: includes/debug/debug-bar-start.php:42
1600
+ msgid "Requests"
1601
+ msgstr "Requests"
1602
 
1603
+ #: templates/account/billing.php:28
1604
+ msgctxt "verb"
1605
+ msgid "Update"
1606
+ msgstr "Aggiorna"
1607
+
1608
+ #: templates/account/billing.php:39
1609
+ msgid "Billing"
1610
+ msgstr "Fatturazione"
1611
 
1612
+ #: templates/account/billing.php44, templates/account/billing.php:44
1613
+ msgid "Business name"
1614
+ msgstr "Nome della compagnia"
1615
 
1616
+ #: templates/account/billing.php45, templates/account/billing.php:45
1617
+ msgid "Tax / VAT ID"
1618
+ msgstr "Numero Partita Iva o VAT"
1619
 
1620
+ #: templates/account/billing.php48, templates/account/billing.php48,
1621
+ #: templates/account/billing.php49, templates/account/billing.php:49
1622
+ msgid "Address Line %d"
1623
+ msgstr "Riga indirizzo %d"
1624
 
1625
+ #: templates/account/billing.php52, templates/account/billing.php:52
1626
+ msgid "City"
1627
+ msgstr "Città"
1628
 
1629
+ #: templates/account/billing.php52, templates/account/billing.php:52
1630
+ msgid "Town"
1631
+ msgstr "Cittadina"
 
1632
 
1633
+ #: templates/account/billing.php53, templates/account/billing.php:53
1634
+ msgid "ZIP / Postal Code"
1635
+ msgstr "CAP"
1636
 
1637
+ #: templates/account/billing.php:308
1638
+ msgid "Country"
1639
+ msgstr "Nazione"
1640
 
1641
+ #: templates/account/billing.php:310
1642
+ msgid "Select Country"
1643
+ msgstr "Seleziona Nazione"
1644
 
1645
+ #: templates/account/billing.php317, templates/account/billing.php:318
1646
+ msgid "State"
1647
+ msgstr "Stato"
1648
 
1649
+ #: templates/account/billing.php317, templates/account/billing.php:318
1650
+ msgid "Province"
1651
+ msgstr "Provincia"
1652
 
1653
+ #: templates/account/payments.php:29
1654
+ msgid "Payments"
1655
+ msgstr "Pagamenti"
1656
 
1657
+ #: templates/account/payments.php:36
1658
+ msgid "Date"
1659
+ msgstr "Data"
1660
 
1661
+ #: templates/account/payments.php:37
1662
+ msgid "Amount"
1663
+ msgstr "Importo"
1664
 
1665
+ #: templates/account/payments.php38, templates/account/payments.php:50
1666
+ msgid "Invoice"
1667
+ msgstr "Fattura"
1668
 
1669
+ #: templates/debug/api-calls.php:56
1670
+ msgid "API"
1671
+ msgstr "API"
1672
 
1673
+ #: templates/debug/api-calls.php:68
1674
+ msgid "Method"
1675
+ msgstr "Method"
1676
 
1677
+ #: templates/debug/api-calls.php:69
1678
+ msgid "Code"
1679
+ msgstr "Code"
1680
 
1681
+ #: templates/debug/api-calls.php:70
1682
+ msgid "Length"
1683
+ msgstr "Length"
1684
 
1685
+ #: templates/debug/api-calls.php:71
1686
+ msgctxt "as file/folder path"
1687
+ msgid "Path"
1688
+ msgstr "Percorso"
1689
 
1690
+ #: templates/debug/api-calls.php:73
1691
+ msgid "Body"
1692
+ msgstr "Body"
1693
 
1694
+ #: templates/debug/api-calls.php:75
1695
+ msgid "Result"
1696
+ msgstr "Result"
1697
 
1698
+ #: templates/debug/api-calls.php:76
1699
+ msgid "Start"
1700
+ msgstr "Start"
 
1701
 
1702
+ #: templates/debug/api-calls.php:77
1703
+ msgid "End"
1704
+ msgstr "End"
1705
 
1706
+ #: templates/debug/logger.php:15
1707
+ msgid "Log"
1708
+ msgstr "Log"
1709
 
1710
+ #. translators: %s: time period (e.g. In "2 hours")
1711
+ #: templates/debug/plugins-themes-sync.php18,
1712
+ #: templates/debug/scheduled-crons.php:92
1713
+ msgid "In %s"
1714
+ msgstr "In %s"
1715
 
1716
+ #. translators: %s: time period (e.g. "2 hours" ago)
1717
+ #: templates/debug/plugins-themes-sync.php20,
1718
+ #: templates/debug/scheduled-crons.php:94
1719
+ msgid "%s ago"
1720
+ msgstr "%s fa"
1721
 
1722
+ #: templates/debug/plugins-themes-sync.php21,
1723
+ #: templates/debug/scheduled-crons.php:75
1724
+ msgctxt "seconds"
1725
+ msgid "sec"
1726
+ msgstr "sec"
1727
 
1728
+ #: templates/debug/plugins-themes-sync.php:23
1729
+ msgid "Plugins & Themes Sync"
1730
+ msgstr "Sincronizzazione plugin e temi"
 
1731
 
1732
+ #: templates/debug/plugins-themes-sync.php:28
1733
+ msgid "Total"
1734
+ msgstr "Total"
 
1735
 
1736
+ #: templates/debug/plugins-themes-sync.php29,
1737
+ #: templates/debug/scheduled-crons.php:85
1738
+ msgid "Last"
1739
+ msgstr "Last"
1740
 
1741
+ #: templates/debug/scheduled-crons.php:77
1742
+ msgid "Scheduled Crons"
1743
+ msgstr "Azioni programmate"
1744
 
1745
+ #: templates/debug/scheduled-crons.php:82
1746
+ msgid "Module"
1747
+ msgstr "Modulo"
1748
 
1749
+ #: templates/debug/scheduled-crons.php:83
1750
+ msgid "Module Type"
1751
+ msgstr "Tipo di modulo"
1752
 
1753
+ #: templates/debug/scheduled-crons.php:84
1754
+ msgid "Cron Type"
1755
+ msgstr "Tipo di Cron"
1756
 
1757
+ #: templates/debug/scheduled-crons.php:86
1758
+ msgid "Next"
1759
+ msgstr "Next"
 
1760
 
1761
+ #: templates/forms/affiliation.php:81
1762
+ msgid "Non-expiring"
1763
+ msgstr "Non-expiring"
 
1764
 
1765
+ #: templates/forms/affiliation.php:84
1766
+ msgid "Apply to become an affiliate"
1767
+ msgstr "Apply to become an affiliate"
 
1768
 
1769
+ #: templates/forms/affiliation.php:103
1770
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1771
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
 
1772
 
1773
+ #: templates/forms/affiliation.php:114
1774
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
1775
+ msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
 
1776
 
1777
+ #: templates/forms/affiliation.php:117
1778
+ msgid "Your affiliation account was temporarily suspended."
1779
+ msgstr "Your affiliation account was temporarily suspended."
 
1780
 
1781
+ #: templates/forms/affiliation.php:120
1782
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1783
+ msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1784
 
1785
+ #: templates/forms/affiliation.php:123
1786
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1787
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
 
1788
 
1789
+ #: templates/forms/affiliation.php:136
1790
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
1791
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
 
1792
 
1793
+ #: templates/forms/affiliation.php:137
1794
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1795
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
 
1796
 
1797
+ #: templates/forms/affiliation.php:140
1798
+ msgid "Program Summary"
1799
+ msgstr "Program Summary"
1800
 
1801
+ #: templates/forms/affiliation.php:142
1802
+ msgid "%s commission when a customer purchases a new license."
1803
+ msgstr "%s commission when a customer purchases a new license."
 
1804
 
1805
+ #: templates/forms/affiliation.php:144
1806
+ msgid "Get commission for automated subscription renewals."
1807
+ msgstr "Get commission for automated subscription renewals."
1808
 
1809
+ #: templates/forms/affiliation.php:147
1810
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
1811
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
1812
 
1813
+ #: templates/forms/affiliation.php:150
1814
+ msgid "Unlimited commissions."
1815
+ msgstr "Unlimited commissions."
1816
 
1817
+ #: templates/forms/affiliation.php:152
1818
+ msgid "%s minimum payout amount."
1819
+ msgstr "%s minimum payout amount."
1820
 
1821
+ #: templates/forms/affiliation.php:153
1822
+ msgid "Payouts are in USD and processed monthly via PayPal."
1823
+ msgstr "Payouts are in USD and processed monthly via PayPal."
1824
 
1825
+ #: templates/forms/affiliation.php:154
1826
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1827
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1828
 
1829
+ #: templates/forms/affiliation.php:157
1830
+ msgid "Affiliate"
1831
+ msgstr "Affiliate"
1832
 
1833
+ #: templates/forms/affiliation.php160, templates/forms/resend-key.php:23
1834
+ msgid "Email address"
1835
+ msgstr "Indirizzo email"
1836
 
1837
+ #: templates/forms/affiliation.php:164
1838
+ msgid "Full name"
1839
+ msgstr "Full name"
1840
 
1841
+ #: templates/forms/affiliation.php:168
1842
+ msgid "PayPal account email address"
1843
+ msgstr "PayPal account email address"
1844
 
1845
+ #: templates/forms/affiliation.php:172
1846
+ msgid "Where are you going to promote the %s?"
1847
+ msgstr "Where are you going to promote the %s?"
1848
 
1849
+ #: templates/forms/affiliation.php:174
1850
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
1851
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
1852
 
1853
+ #: templates/forms/affiliation.php:176
1854
+ msgid "Add another domain"
1855
+ msgstr "Add another domain"
1856
 
1857
+ #: templates/forms/affiliation.php:180
1858
+ msgid "Extra Domains"
1859
+ msgstr "Extra Domains"
1860
 
1861
+ #: templates/forms/affiliation.php:181
1862
+ msgid "Extra domains where you will be marketing the product from."
1863
+ msgstr "Extra domains where you will be marketing the product from."
1864
 
1865
+ #: templates/forms/affiliation.php:191
1866
+ msgid "Promotion methods"
1867
+ msgstr "Promotion methods"
1868
 
1869
+ #: templates/forms/affiliation.php:194
1870
+ msgid "Social media (Facebook, Twitter, etc.)"
1871
+ msgstr "Social media (Facebook, Twitter, etc.)"
1872
 
1873
+ #: templates/forms/affiliation.php:198
1874
+ msgid "Mobile apps"
1875
+ msgstr "Mobile apps"
1876
 
1877
+ #: templates/forms/affiliation.php:202
1878
+ msgid "Website, email, and social media statistics (optional)"
1879
+ msgstr "Website, email, and social media statistics (optional)"
1880
 
1881
+ #: templates/forms/affiliation.php:205
1882
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1883
+ msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1884
 
1885
+ #: templates/forms/affiliation.php:209
1886
+ msgid "How will you promote us?"
1887
+ msgstr "How will you promote us?"
1888
 
1889
+ #: templates/forms/affiliation.php:212
1890
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
1891
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
1892
 
1893
+ #: templates/forms/affiliation.php218, templates/forms/resend-key.php:22
1894
+ msgid "Cancel"
1895
+ msgstr "Annulla"
1896
 
1897
+ #: templates/forms/affiliation.php:220
1898
+ msgid "Become an affiliate"
1899
+ msgstr "Become an affiliate"
1900
 
1901
+ #: templates/forms/affiliation.php:275
1902
+ msgid "Email address is required."
1903
+ msgstr "Email address is required."
1904
 
1905
+ #: templates/forms/affiliation.php:281
1906
+ msgid "PayPal email address is required."
1907
+ msgstr "PayPal email address is required."
1908
 
1909
+ #: templates/forms/affiliation.php:291
1910
+ msgid "Domain is required."
1911
+ msgstr "Domain is required."
1912
 
1913
+ #: templates/forms/affiliation.php294, templates/forms/affiliation.php:308
1914
+ msgid "Invalid domain"
1915
+ msgstr "Invalid domain"
1916
 
1917
+ #: templates/forms/affiliation.php:364
1918
+ msgid "Processing"
1919
+ msgstr "Processing"
 
1920
 
1921
+ #: templates/forms/license-activation.php:20
1922
+ msgid "Please enter the license key that you received in the email right after the purchase:"
1923
+ msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:"
 
1924
 
1925
+ #: templates/forms/license-activation.php:25
1926
+ msgid "Update License"
1927
+ msgstr "Aggiorna licenza"
 
1928
 
1929
+ #: templates/forms/optout.php:30
1930
+ msgctxt "verb"
1931
+ msgid "Opt Out"
1932
+ msgstr "Cancella iscrizione"
1933
 
1934
+ #: templates/forms/optout.php:31
1935
+ msgctxt "verb"
1936
+ msgid "Opt In"
1937
+ msgstr "Iscriviti"
1938
 
1939
+ #: templates/forms/optout.php:32
1940
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
1941
+ msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s"
 
1942
 
1943
+ #: templates/forms/optout.php:33
1944
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
1945
+ msgstr "Tracciamo l'utilizzo esclusivamente per rendere %s migliore, creando una migliore esperienza utente e dando priorità a nuove funzionalità, oltre a molte altre buone cose. Saremmo veramente felici di vederti cambiare idea e lasciarci continuare con il tracciamento."
1946
 
1947
+ #: templates/forms/optout.php:35
1948
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
1949
+ msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informazione da %s a %s."
1950
 
1951
+ #: templates/forms/resend-key.php:21
1952
+ msgid "Send License Key"
1953
+ msgstr "Invia chiave di licenza"
1954
 
1955
+ #: templates/forms/resend-key.php:57
1956
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
1957
+ msgstr "Inserisci qui sotto l'indirizzo email che hai usato per registrare l'aggiornamento e ti invieremo di nuovo la chiave di licenza."
1958
 
1959
+ #: templates/forms/trial-start.php:22
1960
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1961
+ msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito di %1$s giorni per il piano %2$s."
1962
 
1963
+ #: templates/forms/trial-start.php:28
1964
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1965
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1966
 
1967
+ #: templates/js/style-premium-theme.php:37
1968
+ msgid "Premium"
1969
+ msgstr "Premium"
1970
 
1971
+ #: templates/plugin-info/description.php72,
1972
+ #: templates/plugin-info/screenshots.php:31
1973
+ msgid "Click to view full-size screenshot %d"
1974
+ msgstr "Fare clic per visualizzare lo screenshot in grandi dimensioni %d"
1975
 
1976
+ #: templates/plugin-info/features.php:56
1977
+ msgid "Unlimited Updates"
1978
+ msgstr "Aggiornamenti Illimitati"
1979
 
1980
+ #: templates/forms/deactivation/contact.php:19
1981
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1982
+ msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo permesso."
 
1983
 
1984
+ #: templates/forms/deactivation/contact.php:22
1985
+ msgid "Contact Support"
1986
+ msgstr "Contatta il supporto"
1987
 
1988
+ #: templates/forms/deactivation/form.php:56
1989
+ msgid "Anonymous feedback"
1990
+ msgstr "Feedback anonimo"
1991
 
1992
+ #: templates/forms/deactivation/form.php:63
1993
+ msgid "Deactivate"
1994
+ msgstr "Disattiva"
1995
 
1996
+ #: templates/forms/deactivation/form.php:65
1997
+ msgid "Activate %s"
1998
+ msgstr "Activate %s"
1999
 
2000
+ #: templates/forms/deactivation/form.php:76
2001
+ msgid "Quick feedback"
2002
+ msgstr "Feedback veloce"
2003
 
2004
+ #: templates/forms/deactivation/form.php:80
2005
+ msgid "If you have a moment, please let us know why you are %s"
2006
+ msgstr "If you have a moment, please let us know why you are %s"
2007
 
2008
+ #: templates/forms/deactivation/form.php:80
2009
+ msgid "deactivating"
2010
+ msgstr "deactivating"
2011
 
2012
+ #: templates/forms/deactivation/form.php:80
2013
+ msgid "switching"
2014
+ msgstr "switching"
2015
 
2016
+ #: templates/forms/deactivation/form.php:248
2017
+ msgid "Submit & %s"
2018
+ msgstr "Submit & %s"
2019
 
2020
+ #: templates/forms/deactivation/form.php:269
2021
+ msgid "Kindly tell us the reason so we can improve."
2022
+ msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2023
 
2024
+ #: templates/forms/deactivation/form.php:390
2025
+ msgid "Yes - %s"
2026
+ msgstr "Yes - %s"
2027
 
2028
+ #: templates/forms/deactivation/form.php:397
2029
+ msgid "Skip & %s"
2030
+ msgstr "Salta & %s"
2031
 
2032
+ #: templates/forms/deactivation/retry-skip.php:21
2033
+ msgid "Click here to use the plugin anonymously"
2034
+ msgstr "Fai clic qui per usare il plugin anonimamente"
2035
 
2036
+ #: templates/forms/deactivation/retry-skip.php:23
2037
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2038
+ msgstr "Potresti non averci fatto caso, ma non sei obbligato a condividere i tuoi dati e puoi semplicemente %s la tua partecipazione."
freemius/languages/freemius-ja_JP.mo CHANGED
Binary file
freemius/languages/freemius-ja_JP.po CHANGED
@@ -8,7 +8,7 @@ msgstr ""
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2017-08-24 12:32+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: ja_JP\n"
14
  "Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
@@ -17,1811 +17,2020 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "MIME-Version: 1.0\n"
19
  "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-KeywordsList: _fs_text;_fs_echo;_fs_esc_attr;_fs_esc_attr_echo;_fs_esc_html;_fs_esc_html_echo;_fs_x:1,2c;_fs_ex:1,2c;_fs_esc_attr_x:1,2c;_fs_esc_html_x:1,2c;_fs_n:1,2;_fs_n_noop:1,2;_fs_nx:1,2,4c;_fs_nx_noop:1,2,3c\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
- #: includes/i18n.php:37
26
- msgid "Account"
27
- msgstr "アカウント"
28
-
29
- #: includes/i18n.php:38
30
- msgid "Add-On"
31
- msgstr "Add-On"
32
 
33
- #: includes/i18n.php:39
34
- msgid "Contact Us"
35
- msgstr "連絡"
36
 
37
- #: includes/i18n.php:40
38
- msgid "Contact Support"
39
- msgstr "サポートに連絡"
40
 
41
- #: includes/i18n.php:41
42
- msgid "Change Ownership"
43
- msgstr "オーナーを変更"
44
 
45
- #: includes/i18n.php:42
46
- msgid "Support"
47
- msgstr "サポート"
48
 
49
- #: includes/i18n.php:43
50
- msgid "Support Forum"
51
- msgstr "サポートフォーラム"
52
 
53
- #: includes/i18n.php:44
54
- msgid "Add-Ons"
55
- msgstr "Add-Ons"
56
 
57
- #: includes/i18n.php:45
58
- msgctxt "verb"
59
- msgid "Upgrade"
60
- msgstr "アップグレード"
61
 
62
- #: includes/i18n.php:46
63
- msgid "Awesome"
64
- msgstr "すごい!"
65
 
66
- #: includes/i18n.php:47
67
- msgctxt "noun"
68
- msgid "Pricing"
69
- msgstr "料金表"
70
 
71
- #: includes/i18n.php:48
72
- msgctxt "noun"
73
- msgid "Price"
74
- msgstr "料金"
75
 
76
- #: includes/i18n.php:49
77
- msgid "Unlimited Updates"
78
- msgstr "無制限のアップデート"
79
 
80
- #: includes/i18n.php:50
81
- msgctxt "verb"
82
- msgid "Downgrade"
83
- msgstr "ダウングレード"
84
 
85
- #: includes/i18n.php:51
86
- msgctxt "verb"
87
- msgid "Cancel Subscription"
88
- msgstr "Cancel Subscription"
89
 
90
- #: includes/i18n.php:52
91
- msgid "Cancel Trial"
92
- msgstr "トライアルをキャンセル"
93
 
94
- #: includes/i18n.php:53
95
- msgid "Free Trial"
96
- msgstr "フリートライアル"
97
 
98
- #: includes/i18n.php:54
99
- msgid "Start my free %s"
100
- msgstr "無料の %s を開始"
101
 
102
- #: includes/i18n.php:55
103
- msgid "No commitment for %s - cancel anytime"
104
- msgstr "%s の拘束はありません。いつでもキャンセルできます。"
105
 
106
- #: includes/i18n.php:56
107
- msgid "After your free %s, pay as little as %s"
108
- msgstr "無料の %s の後は、わずか %s だけお支払ください。"
109
 
110
- #: includes/i18n.php:57
111
- msgid "Details"
112
- msgstr "詳細"
113
 
114
- #: includes/i18n.php:58
115
- msgid "Account Details"
116
- msgstr "アカウント詳細"
117
 
118
- #: includes/i18n.php:59
119
- msgctxt "verb"
120
- msgid "Delete"
121
- msgstr "削除"
122
 
123
- #: includes/i18n.php:60
124
- msgctxt "verb"
125
- msgid "Show"
126
- msgstr "表示"
127
 
128
- #: includes/i18n.php:61
129
- msgctxt "verb"
130
- msgid "Hide"
131
- msgstr "非表示"
132
 
133
- #: includes/i18n.php:62
134
- msgctxt "verb"
135
- msgid "Edit"
136
- msgstr "編集"
137
 
138
- #: includes/i18n.php:63
139
- msgctxt "verb"
140
- msgid "Update"
141
- msgstr "更新"
142
 
143
- #: includes/i18n.php:64
144
- msgid "Date"
145
- msgstr "日付"
146
 
147
- #: includes/i18n.php:65
148
- msgid "Amount"
149
- msgstr "総額"
150
 
151
- #: includes/i18n.php:66
152
- msgid "Invoice"
153
- msgstr "請求書"
154
 
155
- #: includes/i18n.php:67
156
- msgid "Billing"
157
- msgstr "請求書"
158
 
159
- #: includes/i18n.php:68
160
- msgid "Payments"
161
- msgstr "支払い"
162
 
163
- #: includes/i18n.php:69
164
- msgid "Delete Account"
165
- msgstr "アカウントを削除"
 
 
 
 
 
 
 
166
 
167
- #: includes/i18n.php:70
168
- msgctxt "as close a window"
169
- msgid "Dismiss"
170
- msgstr "却下"
171
 
172
- #: includes/i18n.php:71
173
- msgctxt "as product pricing plan"
174
- msgid "Plan"
175
- msgstr "プラン"
176
 
177
- #: includes/i18n.php:72
178
- msgid "Change Plan"
179
- msgstr "プラン変更"
 
180
 
181
- #: includes/i18n.php:73
182
- msgctxt "as download professional version"
183
- msgid "Download %s Version"
184
- msgstr "%s バージョンをダウンロード"
185
 
186
- #: includes/i18n.php:74
187
- msgctxt "as download professional version now"
188
- msgid "Download %s version now"
189
- msgstr "%s バージョンを今すぐダウンロード"
190
 
191
- #: includes/i18n.php:75
192
- msgctxt "as download latest version"
193
- msgid "Download Latest"
194
- msgstr "最新版をダウンロード"
195
 
196
- #: includes/i18n.php:76
197
- msgctxt "E.g. you have a professional license."
198
  msgid "You have a %s license."
199
  msgstr "%s ライセンスを持っています。"
200
 
201
- #: includes/i18n.php:77
202
- msgid "New"
203
- msgstr "新規"
204
-
205
- #: includes/i18n.php:78
206
- msgid "Free"
207
- msgstr "無料"
208
 
209
- #: includes/i18n.php:79
210
- msgctxt "as trial plan"
211
- msgid "Trial"
212
- msgstr "トライアル"
213
 
214
- #: includes/i18n.php:80
215
- msgctxt "as starting a trial plan"
216
- msgid "Start Trial"
217
- msgstr "トライアルを開始"
218
 
219
- #: includes/i18n.php:81
220
- msgctxt "verb"
221
- msgid "Purchase"
222
- msgstr "購入"
223
 
224
- #: includes/i18n.php:82
225
  msgid "Purchase License"
226
  msgstr "ライセンスを購入"
227
 
228
- #: includes/i18n.php:83
229
- msgctxt "verb"
230
- msgid "Buy"
231
- msgstr "買う"
232
-
233
- #: includes/i18n.php:84
234
- msgid "Buy License"
235
- msgstr "ライセンスを買う"
236
-
237
- #: includes/i18n.php:85
238
- msgid "Single Site License"
239
- msgstr "シングルサイトライセンス"
240
-
241
- #: includes/i18n.php:86
242
- msgid "Unlimited Licenses"
243
- msgstr "無制限ライセンス"
244
-
245
- #: includes/i18n.php:87
246
- msgid "Up to %s Sites"
247
- msgstr "%sサイトまで"
248
-
249
- #: includes/i18n.php:88
250
- msgid "%sRenew your license now%s to access version %s features and support."
251
- msgstr "%sいますぐライセンスを更新して%s バージョン %s の機能とサポートにアクセスする"
252
 
253
- #: includes/i18n.php:89
254
- msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
255
- msgstr "アップグレードに使用したメールアドレスを下に入力してください。そうすれば、ライセンスキーをお送りします。"
256
 
257
- #: includes/i18n.php:90
258
- msgctxt "e.g. Professional Plan"
259
- msgid "%s Plan"
260
- msgstr "%s プラン"
261
 
262
- #: includes/i18n.php:91
263
  msgid "You are just one step away - %s"
264
  msgstr "もうあとわずかです - %s"
265
 
266
- #: includes/i18n.php:92
267
- msgctxt "%s - plugin name. As complete \"Jetpack\" activation now"
268
  msgid "Complete \"%s\" Activation Now"
269
  msgstr "すぐに \"%s\" 有効化を完了してください"
270
 
271
- #: includes/i18n.php:94
272
  msgid "We made a few tweaks to the %s, %s"
273
  msgstr "We made a few tweaks to the %s, %s"
274
 
275
- #: includes/i18n.php:95
276
- msgid "Opt-in to make \"%s\" Better!"
277
- msgstr "\"%s\" をより良くするためにオプトインしてください!"
278
 
279
- #: includes/i18n.php:96
280
- msgid "Error"
281
- msgstr "エラー"
282
 
283
- #: includes/i18n.php:97
284
- msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
285
- msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
 
 
286
 
287
- #: includes/i18n.php:100
288
- msgctxt "as expiration date"
289
- msgid "Expiration"
290
- msgstr "期限切れ"
291
 
292
- #: includes/i18n.php:101
293
- msgctxt "as software license"
294
- msgid "License"
295
- msgstr "ライセンス"
296
 
297
- #: includes/i18n.php:102
298
- msgid "not verified"
299
- msgstr "未認証"
300
 
301
- #: includes/i18n.php:103
302
- msgid "Verify Email"
303
- msgstr "認証メール"
304
 
305
- #: includes/i18n.php:104
306
- msgctxt "e.g. expires in 2 months"
307
- msgid "Expires in %s"
308
- msgstr "%s で期間終了"
309
 
310
- #: includes/i18n.php:105
311
- msgctxt "e.g. auto renews in 2 months"
312
- msgid "Auto renews in %s"
313
- msgstr "%s に自動更新"
314
 
315
- #: includes/i18n.php:106
316
- msgid "No expiration"
317
- msgstr "有効期限なし"
318
 
319
- #: includes/i18n.php:107
320
- msgid "Expired"
321
- msgstr "期限切れ"
322
 
323
- #: includes/i18n.php:108
324
- msgid "Cancelled"
325
- msgstr "キャンセル"
 
326
 
327
- #: includes/i18n.php:109
328
- msgctxt "e.g. In 2 hours"
329
- msgid "In %s"
330
- msgstr "%s 内"
331
 
332
- #: includes/i18n.php:110
333
- msgctxt "e.g. 2 min ago"
334
- msgid "%s ago"
335
- msgstr "%s 前"
336
 
337
- #: includes/i18n.php:112
338
- msgid "%s or higher"
339
- msgstr "%s or higher"
340
 
341
- #: includes/i18n.php:113
342
- msgctxt "as plugin version"
343
- msgid "Version"
344
- msgstr "バージョン"
345
 
346
- #: includes/i18n.php:114
347
- msgid "Name"
348
- msgstr "名前"
349
 
350
- #: includes/i18n.php:115
351
- msgid "Email"
352
- msgstr "Email"
 
353
 
354
- #: includes/i18n.php:116
355
- msgid "Email address"
356
- msgstr "メールアドレス"
 
357
 
358
- #: includes/i18n.php:117
359
- msgid "Verified"
360
- msgstr "認証済み"
 
361
 
362
- #: includes/i18n.php:118
363
- msgid "Module"
364
- msgstr "Module"
 
365
 
366
- #: includes/i18n.php:119
367
- msgid "Module Type"
368
- msgstr "Module Type"
 
369
 
370
- #: includes/i18n.php:120
371
- msgid "Plugin"
372
- msgstr "プラグイン"
373
 
374
- #: includes/i18n.php:121
375
- msgid "Plugins"
376
- msgstr "プラグイン"
 
377
 
378
- #: includes/i18n.php:122
379
- msgid "Theme"
380
- msgstr "Theme"
381
 
382
- #: includes/i18n.php:123
383
- msgid "Themes"
384
- msgstr "テーマ"
385
 
386
- #: includes/i18n.php:124
387
- msgctxt "as file/folder path"
388
- msgid "Path"
389
- msgstr "パス"
390
 
391
- #: includes/i18n.php:125
392
- msgid "Title"
393
- msgstr "タイトル"
 
394
 
395
- #: includes/i18n.php:126
396
- msgid "Free version"
397
- msgstr "フリーバージョン"
 
398
 
399
- #: includes/i18n.php:127
400
- msgid "Premium version"
401
- msgstr "プレミアムバージョン"
402
 
403
- #: includes/i18n.php:128
404
- msgctxt "as WP plugin slug"
405
- msgid "Slug"
406
- msgstr "スラッグ"
 
407
 
408
- #: includes/i18n.php:129
409
- msgid "ID"
410
- msgstr "ID"
411
 
412
- #: includes/i18n.php:130
413
- msgid "Users"
414
- msgstr "ユーザー"
 
 
415
 
416
- #: includes/i18n.php:131
417
- msgid "%s Installs"
418
- msgstr "%s Installs"
419
 
420
- #: includes/i18n.php:132
421
- msgctxt "like websites"
422
- msgid "Sites"
423
- msgstr "サイト数"
424
 
425
- #: includes/i18n.php:133
426
- msgid "User ID"
427
- msgstr "ユーザー ID"
428
 
429
- #: includes/i18n.php:134
430
- msgid "Site ID"
431
- msgstr "サイト ID"
432
 
433
- #: includes/i18n.php:135
434
- msgid "Public Key"
435
- msgstr "公開鍵"
436
 
437
- #: includes/i18n.php:136
438
- msgid "Secret Key"
439
- msgstr "秘密鍵"
440
 
441
- #: includes/i18n.php:137
442
- msgctxt "as secret encryption key missing"
443
- msgid "No Secret"
444
- msgstr "秘密鍵がありません"
445
 
446
- #: includes/i18n.php:138
447
- msgid "No ID"
448
- msgstr "ID がありません"
449
 
450
- #: includes/i18n.php:139
451
- msgctxt "as synchronize license"
452
- msgid "Sync License"
453
- msgstr "ライセンスを同期"
454
 
455
- #: includes/i18n.php:140
456
- msgctxt "as synchronize"
457
- msgid "Sync"
458
- msgstr "同期"
459
 
460
- #: includes/i18n.php:141
461
- msgid "Activate License"
462
- msgstr "ライセンスを有効化"
463
 
464
- #: includes/i18n.php:142
465
- msgid "Activate Free Version"
466
- msgstr "フリーバージョンを有効化"
467
 
468
- #: includes/i18n.php:143
469
- msgid "Please enter the license key that you received in the email right after the purchase:"
470
- msgstr "購入後すぐにメールで受け取ったライセンスキーを入力してください:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
 
472
- #: includes/i18n.php:144
473
- msgid "Activating license..."
474
- msgstr "ライセンスを有効化中…"
 
 
 
 
 
 
 
 
 
 
 
 
 
475
 
476
- #: includes/i18n.php:145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Change License"
478
  msgstr "ライセンスを変更"
479
 
480
- #: includes/i18n.php:146
481
- msgid "Update License"
482
- msgstr "ライセンスを更新"
483
 
484
- #: includes/i18n.php:147
485
- msgid "Deactivate License"
486
- msgstr "ライセンスを無効化"
487
 
488
- #: includes/i18n.php:148
489
- msgid "Activate"
490
- msgstr "有効化"
491
 
492
- #: includes/i18n.php:149
493
- msgid "Deactivate"
494
- msgstr "無効化"
495
 
496
- #: includes/i18n.php:150
497
- msgid "Skip & Deactivate"
498
- msgstr "スキップし、無効化"
499
 
500
- #: includes/i18n.php:151
501
- msgid "Skip & %s"
502
- msgstr "Skip & %s"
503
 
504
- #: includes/i18n.php:152
505
- msgid "No - just deactivate"
506
- msgstr "いいえ - すぐに無効化"
507
 
508
- #: includes/i18n.php:153
509
- msgid "Yes - do your thing"
510
- msgstr "はい - お構いなく"
 
 
511
 
512
- #: includes/i18n.php:154
513
- msgctxt "active mode"
514
- msgid "Active"
515
- msgstr "有効"
516
 
517
- #: includes/i18n.php:155
518
- msgctxt "is active mode?"
519
- msgid "Is Active"
520
- msgstr "有効"
 
 
 
521
 
522
- #: includes/i18n.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  msgid "Install Now"
524
  msgstr "今すぐインストール"
525
 
526
- #: includes/i18n.php:157
527
  msgid "Install Update Now"
528
  msgstr "今すぐ更新をインストール"
529
 
530
- #: includes/i18n.php:158
531
- msgid "More information about %s"
532
- msgstr "%s に関する詳細情報"
533
-
534
- #: includes/i18n.php:159
535
- msgid "Localhost"
536
- msgstr "localhost"
537
-
538
- #: includes/i18n.php:160
539
- msgctxt "as activate Professional plan"
540
- msgid "Activate %s Plan"
541
- msgstr "%s プランを有効化"
542
 
543
- #: includes/i18n.php:161
544
- msgctxt "as 5 licenses left"
545
- msgid "%s left"
546
- msgstr "あと %s"
547
 
548
- #: includes/i18n.php:162
549
- msgid "Last license"
550
- msgstr "最新のライセンス"
 
551
 
552
- #: includes/i18n.php:163
553
- msgid "What is your %s?"
554
- msgstr "自分の %s はなんですか?"
 
555
 
556
- #: includes/i18n.php:164
557
- msgid "Activate this add-on"
558
- msgstr "このアドオンを有効化"
 
559
 
560
- #: includes/i18n.php:165
561
- msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
562
- msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
 
563
 
564
- #: includes/i18n.php:166
565
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
566
- msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
 
567
 
568
- #: includes/i18n.php:167
569
- msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
570
- msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
 
571
 
572
- #: includes/i18n.php:168
573
- msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
574
- msgstr "プランをダウングレードするとすぐに将来の定期の支払いはすべて停止し、%s プランライセンスは %s で期限切れとなります。"
 
575
 
576
- #: includes/i18n.php:169
577
- msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
578
- msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
 
579
 
580
- #: includes/i18n.php:170
581
- msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
582
- msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
583
 
584
- #: includes/i18n.php:171
585
- msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
586
- msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
 
587
 
588
- #: includes/i18n.php:172
589
- msgid "Are you sure you want to proceed?"
590
- msgstr "本当に続行していいですか?"
 
591
 
592
- #: includes/i18n.php:175
593
- msgid "Add Ons for %s"
594
- msgstr "%s のアドオン"
 
 
595
 
596
- #: includes/i18n.php:176
597
- msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
598
- msgstr "アドオンリストを読み込むことができませんでした。おそらく運営側の問題になりますので、しばらくしてからお試しください。"
 
599
 
600
- #: includes/i18n.php:178
601
- msgid "Anonymous feedback"
602
- msgstr "匿名のフィードバック"
603
 
604
- #: includes/i18n.php:179
605
- msgid "Quick feedback"
606
- msgstr "クイックフィードバック"
 
 
 
607
 
608
- #: includes/i18n.php:180
609
- msgid "If you have a moment, please let us know why you are %s"
610
- msgstr "If you have a moment, please let us know why you are %s"
 
611
 
612
- #: includes/i18n.php:181
613
- msgid "deactivating"
614
- msgstr "deactivating"
 
615
 
616
- #: includes/i18n.php:182
617
- msgid "Deactivation"
618
- msgstr "Deactivation"
619
 
620
- #: includes/i18n.php:183
621
- msgid "Theme Switch"
622
- msgstr "Theme Switch"
623
 
624
- #: includes/i18n.php:184
625
- msgid "switching"
626
- msgstr "switching"
627
 
628
- #: includes/i18n.php:185
629
- msgid "Switch"
630
- msgstr "Switch"
 
 
631
 
632
- #: includes/i18n.php:186
633
- msgid "Activate %s"
634
- msgstr "Activate %s"
 
 
635
 
636
- #: includes/i18n.php:187
637
- msgid "Yes - %s"
638
- msgstr "Yes - %s"
 
639
 
640
- #: includes/i18n.php:188
641
- msgid "Submit & %s"
642
- msgstr "Submit & %s"
 
643
 
644
- #: includes/i18n.php:189
645
- msgid "Cancel"
646
- msgstr "キャンセル"
647
 
648
- #: includes/i18n.php:190
649
- msgid "I no longer need the %s"
650
- msgstr "I no longer need the %s"
651
 
652
- #: includes/i18n.php:191
653
- msgid "I found a better %s"
654
- msgstr "I found a better %s"
655
 
656
- #: includes/i18n.php:192
657
- msgid "I only needed the %s for a short period"
658
- msgstr "I only needed the %s for a short period"
 
 
659
 
660
- #: includes/i18n.php:193
661
- msgid "The %s broke my site"
662
- msgstr "The %s broke my site"
 
663
 
664
- #: includes/i18n.php:194
665
- msgid "The %s suddenly stopped working"
666
- msgstr "The %s suddenly stopped working"
667
 
668
- #: includes/i18n.php:195
669
- msgid "I can't pay for it anymore"
670
- msgstr "もう払うことができません"
 
671
 
672
- #: includes/i18n.php:196
673
- msgid "It's a temporary deactivation. I'm just debugging an issue."
674
- msgstr "一時的な無効化です。問題をデバッグしているだけです。"
675
 
676
- #: includes/i18n.php:197
677
- msgid "It's a temporary %s. I'm just debugging an issue."
678
- msgstr "It's a temporary %s. I'm just debugging an issue."
679
 
680
- #: includes/i18n.php:198
681
- msgctxt ""
682
- msgid "Other"
683
- msgstr "Other"
684
 
685
- #: includes/i18n.php:200
686
- msgid "Kindly tell us the reason so we can improve."
687
- msgstr "改善できるよう、どうか理由を教えてください。"
688
 
689
- #: includes/i18n.php:201
690
- msgid "What's the %s's name?"
691
- msgstr "What's the %s's name?"
692
 
693
- #: includes/i18n.php:202
694
- msgid "What price would you feel comfortable paying?"
695
- msgstr " 支払ってもよいと思う価格はいくらですか?"
696
 
697
- #: includes/i18n.php:203
698
- msgid "I couldn't understand how to make it work"
699
- msgstr "どうしたら動作するか分かりませんでした。"
700
 
701
- #: includes/i18n.php:204
702
- msgid "The %s is great, but I need specific feature that you don't support"
703
- msgstr "The %s is great, but I need specific feature that you don't support"
704
 
705
- #: includes/i18n.php:205
706
- msgid "The %s is not working"
707
- msgstr "The %s is not working"
 
708
 
709
- #: includes/i18n.php:206
710
- msgid "It's not what I was looking for"
711
- msgstr "探していたものではありません"
712
 
713
- #: includes/i18n.php:207
714
- msgid "The %s didn't work as expected"
715
- msgstr "The %s didn't work as expected"
716
 
717
- #: includes/i18n.php:208
718
- msgid "What feature?"
719
- msgstr "何の機能ですか?"
720
 
721
- #: includes/i18n.php:209
722
- msgid "Kindly share what didn't work so we can fix it for future users..."
723
- msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
724
 
725
- #: includes/i18n.php:210
726
- msgid "What you've been looking for?"
727
- msgstr "探していたのは何ですか?"
728
 
729
- #: includes/i18n.php:211
730
- msgid "What did you expect?"
731
- msgstr "何を期待していましたか?"
732
 
733
- #: includes/i18n.php:212
734
- msgid "The %s didn't work"
735
- msgstr "The %s didn't work"
736
 
737
- #: includes/i18n.php:213
738
- msgid "I don't like to share my information with you"
739
- msgstr "自分の情報を共有したくありません"
740
 
741
- #: includes/i18n.php:214
742
- msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
743
- msgstr "見逃していたかもしれませんが、どんな情報も共有する必要はなく、オプトインを $s することができます。 "
 
744
 
745
- #: includes/i18n.php:218
746
- msgctxt "greeting"
747
- msgid "Hey %s,"
748
- msgstr "おおい %s さん、"
749
 
750
- #: includes/i18n.php:219
751
- msgctxt "a greeting. E.g. Thanks John!"
752
- msgid "Thanks %s!"
753
- msgstr "ありがとう $s さん!"
754
 
755
- #: includes/i18n.php:220
756
- msgid "Never miss an important update - opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
757
- msgstr "重要な更新を逃さないように - セキュリティとおすすめの更新通知、%4$s とセンシティブではない診断トラッキングをオプトイン"
758
 
759
- #: includes/i18n.php:221
760
- msgid "Please help us improve %1$s! If you opt-in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
761
- msgstr "%1$s を改善するのを手伝ってください。オプトインすれば、あなたの %1$s の使用に関するデータが %4$s へと送られます。これをスキップしても大丈夫です! %1$s は今でも素晴らしいでしょう。"
762
 
763
- #: includes/i18n.php:222
764
- msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
765
- msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
766
 
767
- #: includes/i18n.php:223
768
- msgid "complete the install"
769
- msgstr "インストールを完了"
770
 
771
- #: includes/i18n.php:224
772
- msgid "start the trial"
773
- msgstr "トライアルを開始"
774
 
775
- #: includes/i18n.php:225
776
- msgid "Thanks for purchasing %s! To get started, please enter your license key:"
777
- msgstr "%s を購入いただきありがとうございます。はじめにライセンスキーを入力してください:"
778
 
779
- #: includes/i18n.php:226
780
- msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
781
- msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
 
782
 
783
- #: includes/i18n.php:227
784
- msgid "What permissions are being granted?"
785
- msgstr "付与されているパーミッションは何ですか?"
 
786
 
787
- #: includes/i18n.php:228
788
- msgid "Your Profile Overview"
789
- msgstr "プロフィール概要"
 
790
 
791
- #: includes/i18n.php:229
792
- msgid "Name and email address"
793
- msgstr "名前とメールアドレス"
 
794
 
795
- #: includes/i18n.php:230
796
- msgid "Your Site Overview"
797
- msgstr "サイト概要"
798
 
799
- #: includes/i18n.php:231
800
- msgid "Site URL, WP version, PHP info, plugins & themes"
801
- msgstr "サイト URL、WP バージョン、PHP info、プラグインとテーマ"
802
 
803
- #: includes/i18n.php:232
804
- msgid "Current %s Events"
805
- msgstr "Current %s Events"
 
806
 
807
- #: includes/i18n.php:233
808
- msgid "Activation, deactivation and uninstall"
809
- msgstr "有効化、無効化、アンインストール"
 
810
 
811
- #: includes/i18n.php:234
812
- msgid "Plugins & Themes"
813
- msgstr "プラグインとテーマ"
 
814
 
815
- #: includes/i18n.php:235
816
- msgid "Titles, versions and state."
817
- msgstr "タイトル、バージョン、状態"
818
 
819
- #: includes/i18n.php:236
820
- msgid "Admin Notices"
821
- msgstr "管理者通知"
 
 
822
 
823
- #: includes/i18n.php:237
824
- msgid "Newsletter"
825
- msgstr "ニュースレター"
826
 
827
- #: includes/i18n.php:238
828
- msgid "Updates, announcements, marketing, no spam"
829
- msgstr "更新、発表、マーケティング、スパムなし"
830
 
831
- #: includes/i18n.php:239
832
- msgid "Privacy Policy"
833
- msgstr "プライバシーポリシー"
834
 
835
- #: includes/i18n.php:240
836
- msgid "Terms of Service"
837
- msgstr "利用規約"
838
 
839
- #: includes/i18n.php:241
840
- msgctxt "as activating plugin"
841
- msgid "Activating"
842
- msgstr "有効化中"
843
 
844
- #: includes/i18n.php:242
845
- msgctxt "as in the process of sending an email"
846
- msgid "Sending email"
847
- msgstr "メール送信中"
848
 
849
- #: includes/i18n.php:243
850
- msgctxt "button label"
851
- msgid "Allow & Continue"
852
- msgstr "許可して続ける"
853
 
854
- #: includes/i18n.php:244
855
- msgctxt "button label"
856
- msgid "Agree & Activate License"
857
- msgstr "同意してライセンスを有効化"
858
 
859
- #: includes/i18n.php:245
860
- msgctxt "verb"
861
- msgid "Skip"
862
- msgstr "スキップ"
863
 
864
- #: includes/i18n.php:246
865
- msgid "Click here to use the plugin anonymously"
866
- msgstr "匿名でプラグインを使用するにはこちらをクリック"
 
867
 
868
- #: includes/i18n.php:247
869
- msgid "Re-send activation email"
870
- msgstr "有効化メールを再送信"
871
 
872
- #: includes/i18n.php:248
873
- msgid "License key"
874
- msgstr "ライセンスキー"
875
 
876
- #: includes/i18n.php:249
877
- msgid "Send License Key"
878
- msgstr "ライセンスキーを送信"
879
 
880
- #: includes/i18n.php:250
881
- msgid "Sending license key"
882
- msgstr "ライセンスキーを送信中"
883
 
884
- #: includes/i18n.php:251
885
- msgid "Have a license key?"
886
- msgstr "ライセンスキーはお持ちですか?"
887
 
888
- #: includes/i18n.php:252
889
- msgid "Don't have a license key?"
890
- msgstr "ライセンスキーをお持ちではありませんか?"
 
891
 
892
- #: includes/i18n.php:253
893
- msgid "Can't find your license key?"
894
- msgstr "ライセンスキーは見つかりませんか?"
 
895
 
896
- #: includes/i18n.php:254
897
- msgid "We couldn't find your email address in the system, are you sure it's the right address?"
898
- msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
 
899
 
900
- #: includes/i18n.php:255
901
- msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
902
- msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
903
 
904
- #: includes/i18n.php:256
905
- msgid "Opt In"
906
- msgstr "オプトイン"
907
 
908
- #: includes/i18n.php:257
909
- msgid "Opt Out"
910
- msgstr "オプトアウト"
911
 
912
- #: includes/i18n.php:258
913
- msgid "On second thought - I want to continue helping"
914
- msgstr "第二の考えで - 手伝い続けたいです"
915
 
916
- #: includes/i18n.php:259
917
- msgid "Opting out..."
918
- msgstr "オプトアウト中…"
 
919
 
920
- #: includes/i18n.php:260
921
- msgid "Opting in..."
922
- msgstr "オプトイン中…"
923
 
924
- #: includes/i18n.php:261
925
- msgid "We appreciate your help in making the %s better by letting us track some usage data."
926
- msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
927
 
928
- #: includes/i18n.php:262
929
- msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
930
- msgstr "使用の追跡は %s をより良くする名目の下に行われています。ユーザー体験をより良くし、新機能に優先順位をつけるためなどに使います。追跡を続けてもよいと再考してくれるなら本当に感謝致します。"
931
 
932
- #: includes/i18n.php:263
933
- msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
934
- msgstr "\"オプトアウト\"をクリックすることで、もう %s から %s へのデータの送信は行いません。"
935
 
936
- #: includes/i18n.php:267
937
- msgid "Screenshots"
938
- msgstr "スクリーンショット"
939
 
940
- #: includes/i18n.php:268
941
- msgid "Click to view full-size screenshot %d"
942
- msgstr "クリックしてフルサイズのスクリーンショットを見る %d"
 
943
 
944
- #: includes/i18n.php:272
945
- msgid "Freemius Debug"
946
- msgstr "Freemius デバッグ"
947
 
948
- #: includes/i18n.php:273
949
- msgctxt "as turned on"
950
- msgid "On"
951
- msgstr "オン"
952
 
953
- #: includes/i18n.php:274
954
- msgctxt "as turned off"
955
- msgid "Off"
956
- msgstr "オフ"
957
 
958
- #: includes/i18n.php:275
959
- msgctxt "as code debugging"
960
- msgid "Debugging"
961
- msgstr "デバッグ"
 
 
962
 
963
- #: includes/i18n.php:276
964
- msgid "Freemius State"
965
- msgstr "Freemius ステータス"
 
966
 
967
- #: includes/i18n.php:277
968
- msgctxt "as connection was successful"
969
- msgid "Connected"
970
- msgstr "接続"
971
 
972
- #: includes/i18n.php:278
973
- msgctxt "as connection blocked"
974
- msgid "Blocked"
975
- msgstr "ブロック"
976
 
977
- #: includes/i18n.php:279
978
- msgctxt "as application program interface"
979
- msgid "API"
980
- msgstr "API"
981
 
982
- #: includes/i18n.php:280
983
- msgctxt "as software development kit versions"
984
- msgid "SDK"
985
- msgstr "SDK"
986
 
987
- #: includes/i18n.php:281
988
- msgctxt "as software development kit versions"
989
- msgid "SDK Versions"
990
- msgstr "SDK バージョン"
991
 
992
- #: includes/i18n.php:282
993
- msgctxt "as plugin folder path"
994
- msgid "Plugin Path"
995
- msgstr "プラグインのパス"
996
 
997
- #: includes/i18n.php:283
998
- msgctxt "as sdk path"
999
- msgid "SDK Path"
1000
- msgstr "SDK のパス"
 
 
 
1001
 
1002
- #: includes/i18n.php:284
1003
- msgid "Add Ons of Plugin %s"
1004
- msgstr "プラグインのアドオン %s"
 
 
1005
 
1006
- #: includes/i18n.php:285
1007
- msgid "Are you sure you want to delete all Freemius data?"
1008
- msgstr "ほんとうに全ての Freemius データを削除しますか?"
1009
 
1010
- #: includes/i18n.php:286
1011
- msgid "Actions"
1012
- msgstr "アクション"
1013
 
1014
- #: includes/i18n.php:287
1015
- msgid "Delete All Accounts"
1016
- msgstr "全てのアカウントを削除"
1017
 
1018
- #: includes/i18n.php:288
1019
- msgid "Start Fresh"
1020
- msgstr "初期化を開始"
1021
 
1022
- #: includes/i18n.php:289
1023
- msgid "Clear API Cache"
1024
- msgstr "API キャッシュをクリア"
1025
 
1026
- #: includes/i18n.php:290
1027
- msgid "Sync Data From Server"
1028
- msgstr "サーバーからのデータを同期"
1029
 
1030
- #: includes/i18n.php:291
1031
- msgid "Scheduled Crons"
1032
- msgstr "スケジュール Cron"
1033
 
1034
- #: includes/i18n.php:292
1035
- msgid "Cron Type"
1036
- msgstr "Cron Type"
1037
 
1038
- #: includes/i18n.php:293
1039
- msgid "Plugins & Themes Sync"
1040
- msgstr "プラグインとテーマを同期"
1041
 
1042
- #: includes/i18n.php:294
1043
- msgid "%s Licenses"
1044
- msgstr "%s Licenses"
1045
 
1046
- #: includes/i18n.php:295
1047
- msgid "Debug Log"
1048
- msgstr "Debug Log"
1049
 
1050
- #: includes/i18n.php:296
1051
- msgid "All"
1052
- msgstr "All"
 
1053
 
1054
- #: includes/i18n.php:297
1055
- msgid "File"
1056
- msgstr "File"
1057
 
1058
- #: includes/i18n.php:298
1059
- msgid "Function"
1060
- msgstr "Function"
1061
 
1062
- #: includes/i18n.php:299
1063
- msgid "Process ID"
1064
- msgstr "Process ID"
1065
 
1066
- #: includes/i18n.php:300
1067
- msgid "Logger"
1068
- msgstr "Logger"
1069
 
1070
- #: includes/i18n.php:301
1071
- msgid "Message"
1072
- msgstr "Message"
1073
 
1074
- #: includes/i18n.php:302
1075
- msgid "Download"
1076
- msgstr "Download"
 
1077
 
1078
- #: includes/i18n.php:303
1079
- msgid "Filter"
1080
- msgstr "Filter"
1081
 
1082
- #: includes/i18n.php:304
1083
- msgid "Type"
1084
- msgstr "Type"
1085
 
1086
- #: includes/i18n.php:305
1087
- msgid "All Types"
1088
- msgstr "All Types"
1089
 
1090
- #: includes/i18n.php:306
1091
- msgid "All Requests"
1092
- msgstr "All Requests"
1093
 
1094
- #: includes/i18n.php:310
1095
- msgctxt "as congratulations"
1096
- msgid "Congrats"
1097
- msgstr "おめでとう"
1098
 
1099
- #: includes/i18n.php:311
1100
- msgctxt "exclamation"
1101
- msgid "Oops"
1102
- msgstr "おっと"
1103
 
1104
- #: includes/i18n.php:312
1105
- msgctxt "interjection expressing joy or exuberance"
1106
- msgid "Yee-haw"
1107
- msgstr "ヤッホー"
1108
 
1109
- #: includes/i18n.php:313
1110
- msgctxt ""
1111
- msgid "W00t"
1112
- msgstr "やったー"
1113
 
1114
- #: includes/i18n.php:315
1115
- msgctxt "a positive response"
1116
- msgid "Right on"
1117
- msgstr "そうだ"
1118
 
1119
- #: includes/i18n.php:316
1120
- msgctxt ""
1121
- msgid "Hmm"
1122
- msgstr "ふむ"
1123
 
1124
- #: includes/i18n.php:318
1125
- msgid "O.K"
1126
- msgstr "O.K"
1127
 
1128
- #: includes/i18n.php:319
1129
- msgctxt "exclamation"
1130
- msgid "Hey"
1131
- msgstr "ヘイ"
1132
 
1133
- #: includes/i18n.php:320
1134
- msgctxt "advance notice of something that will need attention."
1135
- msgid "Heads up"
1136
- msgstr "警告"
1137
 
1138
- #: includes/i18n.php:325
1139
- msgid "Seems like you got the latest release."
1140
- msgstr "最新版を取得できました。"
1141
 
1142
- #: includes/i18n.php:326
1143
- msgid "You are all good!"
1144
- msgstr "すべて完璧です!"
1145
 
1146
- #: includes/i18n.php:327
1147
- msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
1148
- msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
1149
 
1150
- #: includes/i18n.php:328
1151
- msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
1152
- msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
 
1153
 
1154
- #: includes/i18n.php:329
1155
- msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
1156
- msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
 
1157
 
1158
- #: includes/i18n.php:330
1159
- msgid "Your name was successfully updated."
1160
- msgstr "名前のアップデートが成功しました。"
1161
 
1162
- #: includes/i18n.php:331
1163
- msgid "You have successfully updated your %s."
1164
- msgstr "%s のアップデートが成功しました。"
 
1165
 
1166
- #: includes/i18n.php:332
1167
- msgid "Please provide your full name."
1168
- msgstr "フルネームを入力してください。"
 
1169
 
1170
- #: includes/i18n.php:333
1171
- msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
1172
- msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
1173
 
1174
- #: includes/i18n.php:334
1175
- msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
1176
- msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
 
1177
 
1178
- #: includes/i18n.php:335
1179
- msgid "No credit card required"
1180
- msgstr "クレジットカードは必要ありません。"
1181
 
1182
- #: includes/i18n.php:336
1183
- msgid "Premium %s version was successfully activated."
1184
- msgstr "Premium %s version was successfully activated."
1185
 
1186
- #: includes/i18n.php:337
1187
- msgid "The upgrade of %s was successfully completed."
1188
- msgstr "%s のアップグレードが完了しました。"
1189
 
1190
- #: includes/i18n.php:338
1191
- msgid "Your account was successfully activated with the %s plan."
1192
- msgstr "アカウントが %s プランで有効化できました。"
1193
 
1194
- #: includes/i18n.php:339
1195
- msgid "Download the latest %s version now"
1196
- msgstr "%s の最新版をダウンロードする"
1197
 
1198
- #: includes/i18n.php:340
1199
- msgid "Please follow these steps to complete the upgrade"
1200
- msgstr "アップグレードを完了するには以下の手順を完了させてください。"
1201
 
1202
- #: includes/i18n.php:341
1203
- msgid "Download the latest %s version"
1204
- msgstr "最新の %s をダウンロード"
1205
 
1206
- #: includes/i18n.php:342
1207
- msgid "Download the latest version"
1208
- msgstr "最新版をダウンロード"
1209
 
1210
- #: includes/i18n.php:343
1211
- msgid "Deactivate the free version"
1212
- msgstr "無料バージョンを無効化"
1213
 
1214
- #: includes/i18n.php:344
1215
- msgid "Upload and activate the downloaded version"
1216
- msgstr "ダウンロードしたバージョンをアップロードして有効化"
 
1217
 
1218
- #: includes/i18n.php:345
1219
- msgid "How to upload and activate?"
1220
- msgstr "アップロードと有効化の方法"
1221
 
1222
- #: includes/i18n.php:346
1223
- msgctxt "%s - product name, e.g. Facebook add-on was successfully..."
1224
- msgid "%s Add-on was successfully purchased."
1225
- msgstr "%s のアドオンの支払いが完了しました。"
1226
 
1227
- #: includes/i18n.php:348
1228
- msgid "Your %s Add-on plan was successfully upgraded."
1229
- msgstr "%s のアドオンのプランのアップグレードが完了しました。"
1230
 
1231
- #: includes/i18n.php:349
1232
- msgid "Your email has been successfully verified - you are AWESOME!"
1233
- msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
1234
 
1235
- #: includes/i18n.php:350
1236
- msgid "Your plan was successfully upgraded."
1237
- msgstr "プランのアップグレードが成功しました。"
1238
 
1239
- #: includes/i18n.php:351
1240
- msgid "Your plan was successfully changed to %s."
1241
- msgstr "プランの %s への変更が成功しました。"
 
1242
 
1243
- #: includes/i18n.php:352
1244
- msgid "Your license has expired. You can still continue using the free %s forever."
1245
- msgstr "Your license has expired. You can still continue using the free %s forever."
1246
 
1247
- #: includes/i18n.php:353
1248
- msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
1249
- msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
 
1250
 
1251
- #: includes/i18n.php:354
1252
- msgid "Your trial has been successfully started."
1253
- msgstr "トライアル版の利用を開始しました。"
1254
 
1255
- #: includes/i18n.php:355
1256
- msgid "Your license was successfully activated."
1257
- msgstr "ライセンスの有効化が成功しました。"
 
1258
 
1259
- #: includes/i18n.php:356
1260
- msgid "It looks like your site currently doesn't have an active license."
1261
- msgstr "サイトは有効なライセンスを持っていないようです。"
 
1262
 
1263
- #: includes/i18n.php:357
1264
- msgid "Your license was successfully deactivated, you are back to the %s plan."
1265
- msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
1266
 
1267
- #: includes/i18n.php:358
1268
- msgid "It looks like the license deactivation failed."
1269
- msgstr "ライセンスの無効化ができませんでした。"
1270
 
1271
- #: includes/i18n.php:359
1272
- msgid "It looks like the license could not be activated."
1273
- msgstr "ライセンスの有効化ができませんでした。"
 
1274
 
1275
- #: includes/i18n.php:360
1276
- msgid "Error received from the server:"
1277
- msgstr "サーバーからエラーを受信しました。"
1278
 
1279
- #: includes/i18n.php:361
1280
- msgid "Your trial has expired. You can still continue using all our free features."
1281
- msgstr "トライアルの有効期限が切れました。引き続き無料の機能の利用を続けることができます。"
1282
 
1283
- #: includes/i18n.php:362
1284
- msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
1285
- msgstr "プランのダウングレードが完了しました。%s プランは %s に有効期限が切れます。"
1286
 
1287
- #: includes/i18n.php:363
1288
- msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
1289
- msgstr "プランのダウングレードの際に一時的な問題が発生したようです。数分後に再度操作してください。"
1290
 
1291
- #: includes/i18n.php:364
1292
- msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
1293
- msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
1294
 
1295
- #: includes/i18n.php:365
1296
- msgid "Your %s free trial was successfully cancelled."
1297
- msgstr "%s のフリートライアルはキャンセルされました。"
1298
 
1299
- #: includes/i18n.php:366
1300
- msgctxt "%s - numeric version number"
1301
- msgid "Version %s was released."
1302
- msgstr "バージョン %s をリリースしました。"
1303
 
1304
- #: includes/i18n.php:367
1305
- msgid "Please download %s."
1306
- msgstr "%s をダウンロードしてください。"
1307
 
1308
- #: includes/i18n.php:368
1309
- msgctxt "%s - plan name, as the latest professional version here"
1310
- msgid "the latest %s version here"
1311
- msgstr "最新の %s バージョンはこちらです。"
1312
 
1313
- #: includes/i18n.php:370
1314
- msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
1315
- msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
 
1316
 
1317
- #: includes/i18n.php:371
1318
- msgctxt "call to action"
1319
- msgid "Start free trial"
1320
- msgstr "フリートライアルを開始"
1321
 
1322
- #: includes/i18n.php:372
1323
- msgid "Starting trial"
1324
- msgstr "トライアルを開始"
1325
 
1326
- #: includes/i18n.php:373
1327
- msgid "Please wait"
1328
- msgstr "お待ちください"
1329
 
1330
- #: includes/i18n.php:374
1331
- msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
1332
- msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
 
1333
 
1334
- #: includes/i18n.php:375
1335
- msgid "You already utilized a trial before."
1336
- msgstr "以前すでに試用版を利用しました。"
 
1337
 
1338
- #: includes/i18n.php:376
1339
- msgid "You are already running the %s in a trial mode."
1340
- msgstr "You are already running the %s in a trial mode."
1341
 
1342
- #: includes/i18n.php:377
1343
- msgid "Plan %s do not exist, therefore, can't start a trial."
1344
- msgstr "%s プランは存在しないため、試用を開始できません。"
1345
 
1346
- #: includes/i18n.php:378
1347
- msgid "Plan %s does not support a trial period."
1348
- msgstr "%s プランにはトライアル期間はありません。"
 
1349
 
1350
- #: includes/i18n.php:379
1351
- msgid "None of the %s's plans supports a trial period."
1352
- msgstr "None of the %s's plans supports a trial period."
1353
 
1354
- #: includes/i18n.php:380
1355
- msgid "Unexpected API error. Please contact the %s's author with the following error."
1356
- msgstr "Unexpected API error. Please contact the %s's author with the following error."
1357
 
1358
- #: includes/i18n.php:381
1359
- msgid "No commitment for %s days - cancel anytime!"
1360
- msgstr "%s 日以内であればいつでもキャンセルできます。"
1361
 
1362
- #: includes/i18n.php:382
1363
- msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
1364
- msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
1365
 
1366
- #: includes/i18n.php:383
1367
- msgid "Couldn't activate %s."
1368
- msgstr "%s を有効化できません。"
1369
 
1370
- #: includes/i18n.php:384
1371
- msgid "Please contact us with the following message:"
1372
- msgstr "以下のメッセージとともに私たちに連絡をください。"
 
1373
 
1374
- #: includes/i18n.php:385
1375
- msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
1376
- msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
 
 
1377
 
1378
- #: includes/i18n.php:386
1379
- msgid "Please contact us here"
1380
- msgstr "こちらで私たちに連絡をとってください。"
1381
 
1382
- #: includes/i18n.php:387
1383
- msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
1384
- msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
1385
 
1386
- #: includes/i18n.php:390
1387
- msgid "From unknown reason, the API connectivity test failed."
1388
- msgstr "不明のエラーにより、API 接続ができませんでした。"
 
 
 
 
 
1389
 
1390
- #: includes/i18n.php:391
1391
- msgid "It's probably a temporary issue on our end. Just to be sure, with your permission, would it be o.k to run another connectivity test?"
1392
- msgstr "それは私たちの一時的な問題のようです。もし許可していただけるなら他の接続テストをしてもよいですか?"
1393
 
1394
- #: includes/i18n.php:392
1395
- msgid "We use PHP cURL library for the API calls, which is a very common library and usually installed and activated out of the box. Unfortunately, cURL is not activated (or disabled) on your server."
1396
- msgstr "We use PHP cURL library for the API calls, which is a very common library and usually installed and activated out of the box. Unfortunately, cURL is not activated (or disabled) on your server."
1397
 
1398
- #: includes/i18n.php:393
1399
- msgid "Disabled method(s):"
1400
- msgstr "Disabled method(s):"
 
1401
 
1402
- #: includes/i18n.php:394
1403
- msgid "From unknown reason, CloudFlare, the firewall we use, blocks the connection."
1404
- msgstr "不明のエラーにより私たちが使用している CloudFlare のファイヤーウォールが接続を拒否したようです。"
1405
 
1406
- #: includes/i18n.php:395
1407
- msgctxt "as pluginX requires an access to our API"
1408
- msgid "%s requires an access to our API."
1409
- msgstr "%s は、私たちの API への接続が必要です。"
1410
 
1411
- #: includes/i18n.php:397
1412
- msgid "It looks like your server is using Squid ACL (access control lists), which blocks the connection."
1413
- msgstr "サーバーは Squid ACL(Access control lists) を使用しているらしく、それが接続をブロックしています。"
1414
 
1415
- #: includes/i18n.php:398
1416
- msgid "I don't know what is Squid or ACL, help me!"
1417
- msgstr "Squid ACL について知りません。助けてください!"
1418
 
1419
- #: includes/i18n.php399, includes/i18n.php:403
1420
- msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
1421
- msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
1422
 
1423
- #: includes/i18n.php:400
1424
- msgid "I'm a system administrator"
1425
- msgstr "私はシステム管理者です"
1426
 
1427
- #: includes/i18n.php:401
1428
- msgid "Great, please whitelist the following domains: %s. Once you are done, deactivate the %s and activate it again."
1429
- msgstr "Great, please whitelist the following domains: %s. Once you are done, deactivate the %s and activate it again."
1430
 
1431
- #: includes/i18n.php:402
1432
- msgid "I don't know what is cURL or how to install it, help me!"
1433
- msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
1434
 
1435
- #: includes/i18n.php:404
1436
- msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
1437
- msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
1438
 
1439
- #: includes/i18n.php:405
1440
- msgid "We are sure it's an issue on our side and more than happy to resolve it for you ASAP if you give us a chance."
1441
- msgstr "それは私たちの側の問題だと確信しています。もし機会をくれるなら私たちはそれを一刻でも早く修正します。"
1442
 
1443
- #: includes/i18n.php:406
1444
- msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1445
- msgstr "ご迷惑をおかけしてすいません。もし機会をいただけたらお手伝いをします。"
1446
 
1447
- #: includes/i18n.php:407
1448
- msgid "Yes - I'm giving you a chance to fix it"
1449
- msgstr "はい、修正をお願いします。"
1450
 
1451
- #: includes/i18n.php:408
1452
- msgid "We will do our best to whitelist your server and resolve this issue ASAP. You will get a follow-up email to %s once we have an update."
1453
- msgstr "私たちは、少しでも早くサーバーをホワイトリストに登録して問題を修正します。アップデートを行ったら、%s あてに報告を送信します。"
1454
 
1455
- #: includes/i18n.php:409
1456
- msgid "Let's try your previous version"
1457
- msgstr "以前のバージョンでお試しください。"
1458
 
1459
- #: includes/i18n.php:410
1460
- msgid "Uninstall this version and install the previous one."
1461
- msgstr "このバージョンをアンインストールして、以前のバージョンをインストールする。"
1462
 
1463
- #: includes/i18n.php:411
1464
- msgid "That's exhausting, please deactivate"
1465
- msgstr "それは、使用できません。無効化してください。"
 
1466
 
1467
- #: includes/i18n.php:412
1468
- msgid "We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future."
1469
- msgstr "ご迷惑をおかけして心からお詫び申し上げます。将来ふたたびお会いできることを楽しみにしています。"
1470
 
1471
- #: includes/i18n.php:413
1472
- msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
1473
- msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
1474
 
1475
- #: includes/i18n.php:414
1476
- msgctxt "%1s - plugin title, %2s - API domain"
1477
- msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
1478
- msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
1479
 
1480
- #: includes/i18n.php:416
1481
- msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
1482
- msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
1483
 
1484
- #: includes/i18n.php:419
1485
- msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
1486
- msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
1487
 
1488
- #: includes/i18n.php:420
1489
- msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
1490
- msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
 
 
1491
 
1492
- #: includes/i18n.php:421
1493
- msgid "%s is the new owner of the account."
1494
- msgstr "%s は新しいオーナーです。"
 
 
1495
 
1496
- #: includes/i18n.php:423
1497
- msgctxt "addonX cannot run without pluginY"
1498
- msgid "%s cannot run without %s."
1499
- msgstr "%s は、%s が無いと実行することができません。"
 
1500
 
1501
- #: includes/i18n.php:425
1502
- msgctxt "addonX cannot run..."
1503
- msgid "%s cannot run without the plugin."
1504
- msgstr "%s は、プラグインが無いと実行することができません。"
1505
 
1506
- #: includes/i18n.php:426
1507
- msgctxt "pluginX activation was successfully..."
1508
- msgid "%s activation was successfully completed."
1509
- msgstr "%s の有効化が成功しました。"
1510
 
1511
- #: includes/i18n.php:428
1512
- msgctxt "Plugin installer section title"
1513
- msgid "Features & Pricing"
1514
- msgstr "機能 & 料金"
1515
 
1516
- #: includes/i18n.php:429
1517
- msgid "Add-on must be deployed to WordPress.org or Freemius."
1518
- msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1519
 
1520
- #: includes/i18n.php:430
1521
- msgid "Paid add-on must be deployed to Freemius."
1522
- msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1523
 
1524
- #: includes/i18n.php:434
1525
- msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
1526
- msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
1527
 
1528
- #: includes/i18n.php:435
1529
- msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
1530
- msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
1531
 
1532
- #: includes/i18n.php:440
1533
- msgctxt "as every month"
1534
- msgid "Monthly"
1535
- msgstr "月"
1536
 
1537
- #: includes/i18n.php:441
1538
- msgctxt "as monthly period"
1539
- msgid "mo"
1540
- msgstr "月"
1541
 
1542
- #: includes/i18n.php:442
1543
- msgctxt "as once a year"
1544
- msgid "Annual"
1545
- msgstr "年次"
1546
 
1547
- #: includes/i18n.php:443
1548
- msgctxt "as once a year"
1549
- msgid "Annually"
1550
- msgstr "毎年"
1551
 
1552
- #: includes/i18n.php:444
1553
- msgctxt "as once a year"
1554
- msgid "Once"
1555
- msgstr "一度"
1556
 
1557
- #: includes/i18n.php:445
1558
- msgctxt "as annual period"
1559
- msgid "year"
1560
- msgstr "年"
1561
 
1562
- #: includes/i18n.php:446
1563
- msgid "Lifetime"
1564
- msgstr "ライフタイム"
1565
 
1566
- #: includes/i18n.php:447
1567
- msgctxt "e.g. the best product"
1568
- msgid "Best"
1569
- msgstr "ベスト"
1570
 
1571
- #: includes/i18n.php:448
1572
- msgctxt "e.g. billed monthly"
1573
- msgid "Billed %s"
1574
- msgstr "%s への請求"
1575
 
1576
- #: includes/i18n.php:449
1577
- msgctxt "as a discount of $5 or 10%"
1578
- msgid "Save %s"
1579
- msgstr "%s を保存"
1580
 
1581
- #: includes/i18n.php:451
1582
- msgid "View details"
1583
- msgstr "詳細を表示"
1584
 
1585
- #: includes/i18n.php:455
1586
- msgctxt "button label"
1587
- msgid "Approve & Start Trial"
1588
- msgstr "気に入ったのでトライアルを開始"
1589
 
1590
- #: includes/i18n.php:457
1591
- msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1592
- msgstr "%2$s プランの%1$s日間のフリートライアルを開始するまであとワンクリックです。"
1593
 
1594
- #: includes/i18n.php:459
1595
- msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt-in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1596
- msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt-in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1597
 
1598
- #: includes/i18n.php:465
1599
- msgid "Business name"
1600
- msgstr "商号"
1601
 
1602
- #: includes/i18n.php:466
1603
- msgid "Tax / VAT ID"
1604
- msgstr "税金 / VAT ID"
1605
 
1606
- #: includes/i18n.php:467
1607
- msgid "Address Line %d"
1608
- msgstr "住所欄 %d"
1609
 
1610
- #: includes/i18n.php:468
1611
- msgid "Country"
1612
- msgstr ""
1613
 
1614
- #: includes/i18n.php:469
1615
- msgid "Select Country"
1616
- msgstr "国を選択"
1617
 
1618
- #: includes/i18n.php:470
1619
- msgid "City"
1620
- msgstr ""
1621
 
1622
- #: includes/i18n.php:471
1623
- msgid "Town"
1624
- msgstr ""
1625
 
1626
- #: includes/i18n.php:472
1627
- msgid "State"
1628
- msgstr ""
1629
 
1630
- #: includes/i18n.php:473
1631
- msgid "Province"
1632
- msgstr "県・州・省"
1633
 
1634
- #: includes/i18n.php:474
1635
- msgid "ZIP / Postal Code"
1636
- msgstr "ZIP / 郵便番号"
1637
 
1638
- #: includes/i18n.php:479
1639
- msgid "Installing plugin: %s"
1640
- msgstr "Installing plugin: %s"
1641
 
1642
- #: includes/i18n.php:480
1643
- msgid "Automatic Installation"
1644
- msgstr "Automatic Installation"
1645
 
1646
- #: includes/i18n.php:482
1647
- msgid "%s sec"
1648
- msgstr "%s sec"
1649
 
1650
- #: includes/i18n.php:483
1651
- msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1652
- msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1653
 
1654
- #: includes/i18n.php:484
1655
- msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1656
- msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1657
 
1658
- #: includes/i18n.php:485
1659
- msgid "Cancel Installation"
1660
- msgstr "Cancel Installation"
1661
 
1662
- #: includes/i18n.php:486
1663
- msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
1664
- msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
1665
 
1666
- #: includes/i18n.php:487
1667
- msgid "Invalid module ID."
1668
- msgstr "Invalid module ID."
1669
 
1670
- #: includes/i18n.php:488
1671
- msgid "Auto installation only works for opted-in users."
1672
- msgstr "Auto installation only works for opted-in users."
1673
 
1674
- #: includes/i18n.php:489
1675
- msgid "Premium version already active."
1676
- msgstr "Premium version already active."
1677
 
1678
- #: includes/i18n.php:490
1679
- msgid "Premium add-on version already installed."
1680
- msgstr "Premium add-on version already installed."
1681
 
1682
- #: includes/i18n.php:491
1683
- msgid "You do not have a valid license to access the premium version."
1684
- msgstr "You do not have a valid license to access the premium version."
1685
 
1686
- #: includes/i18n.php:492
1687
- msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
1688
- msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
1689
 
1690
- #: includes/i18n.php:496
1691
- msgid "Secure HTTPS %s page, running from an external domain"
1692
- msgstr "Secure HTTPS %s page, running from an external domain"
1693
 
1694
- #: includes/i18n.php:497
1695
- msgid "PCI compliant"
1696
- msgstr "PCI compliant"
1697
 
1698
- #: includes/i18n.php:498
1699
- msgid "View paid features"
1700
- msgstr "View paid features"
1701
 
1702
- #: includes/i18n.php:512
1703
- msgctxt "Plugin installer section title"
1704
- msgid "Description"
1705
- msgstr "Description"
1706
 
1707
- #: includes/i18n.php:513
1708
- msgctxt "Plugin installer section title"
1709
- msgid "Installation"
1710
- msgstr "Installation"
1711
 
1712
- #: includes/i18n.php:514
1713
- msgctxt "Plugin installer section title"
1714
- msgid "FAQ"
1715
- msgstr "FAQ"
1716
 
1717
- #: includes/i18n.php:515
1718
- msgctxt "Plugin installer section title"
1719
- msgid "Changelog"
1720
- msgstr "Changelog"
1721
 
1722
- #: includes/i18n.php:516
1723
- msgctxt "Plugin installer section title"
1724
- msgid "Reviews"
1725
- msgstr "Reviews"
1726
 
1727
- #: includes/i18n.php:517
1728
- msgctxt "Plugin installer section title"
1729
- msgid "Other Notes"
1730
- msgstr "Other Notes"
1731
 
1732
- #: includes/i18n.php:519
1733
- msgid "%s star"
1734
- msgstr "%s star"
1735
 
1736
- #: includes/i18n.php:521
1737
- msgid "%s stars"
1738
- msgstr "%s stars"
1739
 
1740
- #: includes/i18n.php:523
1741
- msgid "%s rating"
1742
- msgstr "%s rating"
1743
 
1744
- #: includes/i18n.php:525
1745
- msgid "%s ratings"
1746
- msgstr "%s ratings"
1747
 
1748
- #: includes/i18n.php:527
1749
- msgid "%s time"
1750
- msgstr "%s time"
1751
 
1752
- #: includes/i18n.php:529
1753
- msgid "%s times"
1754
- msgstr "%s times"
1755
 
1756
- #: includes/i18n.php:531
1757
- msgid "Click to see reviews that provided a rating of %s"
1758
- msgstr "Click to see reviews that provided a rating of %s"
1759
 
1760
- #: includes/i18n.php:532
1761
- msgid "Last Updated"
1762
- msgstr "Last Updated"
 
1763
 
1764
- #: includes/i18n.php:533
1765
- msgid "Requires WordPress Version:"
1766
- msgstr "Requires WordPress Version:"
1767
 
1768
- #: includes/i18n.php:534
1769
- msgctxt "as the plugin author"
1770
- msgid "Author:"
1771
- msgstr "Author:"
1772
 
1773
- #: includes/i18n.php:535
1774
- msgid "Compatible up to:"
1775
- msgstr "Compatible up to:"
1776
 
1777
- #: includes/i18n.php:536
1778
- msgid "Downloaded:"
1779
- msgstr "Downloaded:"
1780
 
1781
- #: includes/i18n.php:537
1782
- msgid "WordPress.org Plugin Page"
1783
- msgstr "WordPress.org Plugin Page"
1784
 
1785
- #: includes/i18n.php:538
1786
- msgid "Plugin Homepage"
1787
- msgstr "Plugin Homepage"
1788
 
1789
- #: includes/i18n.php:539
1790
- msgid "Donate to this plugin"
1791
- msgstr "Donate to this plugin"
1792
 
1793
- #: includes/i18n.php:540
1794
- msgid "Average Rating"
1795
- msgstr "Average Rating"
1796
 
1797
- #: includes/i18n.php:541
1798
- msgid "based on %s"
1799
- msgstr "based on %s"
1800
 
1801
- #: includes/i18n.php:542
1802
- msgid "Warning:"
1803
- msgstr "Warning:"
1804
 
1805
- #: includes/i18n.php:543
1806
- msgid "Contributors"
1807
- msgstr "Contributors"
1808
 
1809
- #: includes/i18n.php:544
1810
- msgid "Plugin Install"
1811
- msgstr "Plugin Install"
1812
 
1813
- #: includes/i18n.php:545
1814
- msgid "This plugin has not been tested with your current version of WordPress."
1815
- msgstr "This plugin has not been tested with your current version of WordPress."
1816
 
1817
- #: includes/i18n.php:546
1818
- msgid "This plugin has not been marked as compatible with your version of WordPress."
1819
- msgstr "This plugin has not been marked as compatible with your version of WordPress."
1820
 
1821
- #: includes/i18n.php:547
1822
- msgid "Newer Version (%s) Installed"
1823
- msgstr "Newer Version (%s) Installed"
1824
 
1825
- #: includes/i18n.php:548
1826
- msgid "Latest Version Installed"
1827
- msgstr "Latest Version Installed"
8
  "Project-Id-Version: WordPress SDK\n"
9
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
  "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2017-12-04 15:57+0000\n"
12
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
  "Language: ja_JP\n"
14
  "Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "MIME-Version: 1.0\n"
19
  "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
  "X-Poedit-SourceCharset: UTF-8\n"
24
 
25
+ #: includes/class-freemius.php:959
26
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
27
+ msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
 
 
 
 
28
 
29
+ #: includes/class-freemius.php:961
30
+ msgid "Error"
31
+ msgstr "エラー"
32
 
33
+ #: includes/class-freemius.php:1277
34
+ msgid "I found a better %s"
35
+ msgstr "I found a better %s"
36
 
37
+ #: includes/class-freemius.php:1279
38
+ msgid "What's the %s's name?"
39
+ msgstr "What's the %s's name?"
40
 
41
+ #: includes/class-freemius.php:1285
42
+ msgid "It's a temporary %s. I'm just debugging an issue."
43
+ msgstr "It's a temporary %s. I'm just debugging an issue."
44
 
45
+ #: includes/class-freemius.php:1287
46
+ msgid "Deactivation"
47
+ msgstr "Deactivation"
48
 
49
+ #: includes/class-freemius.php:1288
50
+ msgid "Theme Switch"
51
+ msgstr "Theme Switch"
52
 
53
+ #: includes/class-freemius.php1297, templates/forms/resend-key.php:24
54
+ msgid "Other"
55
+ msgstr "その他"
 
56
 
57
+ #: includes/class-freemius.php:1305
58
+ msgid "I no longer need the %s"
59
+ msgstr "I no longer need the %s"
60
 
61
+ #: includes/class-freemius.php:1312
62
+ msgid "I only needed the %s for a short period"
63
+ msgstr "I only needed the %s for a short period"
 
64
 
65
+ #: includes/class-freemius.php:1318
66
+ msgid "The %s broke my site"
67
+ msgstr "The %s broke my site"
 
68
 
69
+ #: includes/class-freemius.php:1325
70
+ msgid "The %s suddenly stopped working"
71
+ msgstr "The %s suddenly stopped working"
72
 
73
+ #: includes/class-freemius.php:1335
74
+ msgid "I can't pay for it anymore"
75
+ msgstr "もう払うことができません"
 
76
 
77
+ #: includes/class-freemius.php:1337
78
+ msgid "What price would you feel comfortable paying?"
79
+ msgstr " 支払ってもよいと思う価格はいくらですか?"
 
80
 
81
+ #: includes/class-freemius.php:1343
82
+ msgid "I don't like to share my information with you"
83
+ msgstr "自分の情報を共有したくありません"
84
 
85
+ #: includes/class-freemius.php:1364
86
+ msgid "The %s didn't work"
87
+ msgstr "The %s didn't work"
88
 
89
+ #: includes/class-freemius.php:1374
90
+ msgid "I couldn't understand how to make it work"
91
+ msgstr "どうしたら動作するか分かりませんでした。"
92
 
93
+ #: includes/class-freemius.php:1382
94
+ msgid "The %s is great, but I need specific feature that you don't support"
95
+ msgstr "The %s is great, but I need specific feature that you don't support"
96
 
97
+ #: includes/class-freemius.php:1384
98
+ msgid "What feature?"
99
+ msgstr "何の機能ですか?"
100
 
101
+ #: includes/class-freemius.php:1388
102
+ msgid "The %s is not working"
103
+ msgstr "The %s is not working"
104
 
105
+ #: includes/class-freemius.php:1390
106
+ msgid "Kindly share what didn't work so we can fix it for future users..."
107
+ msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
108
 
109
+ #: includes/class-freemius.php:1394
110
+ msgid "It's not what I was looking for"
111
+ msgstr "探していたものではありません"
 
112
 
113
+ #: includes/class-freemius.php:1396
114
+ msgid "What you've been looking for?"
115
+ msgstr "探していたのは何ですか?"
 
116
 
117
+ #: includes/class-freemius.php:1400
118
+ msgid "The %s didn't work as expected"
119
+ msgstr "The %s didn't work as expected"
 
120
 
121
+ #: includes/class-freemius.php:1402
122
+ msgid "What did you expect?"
123
+ msgstr "何を期待していましたか?"
 
124
 
125
+ #: includes/class-freemius.php1938, templates/debug.php:20
126
+ msgid "Freemius Debug"
127
+ msgstr "Freemius デバッグ"
 
128
 
129
+ #: includes/class-freemius.php:2508
130
+ msgid "I don't know what is cURL or how to install it, help me!"
131
+ msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
132
 
133
+ #: includes/class-freemius.php:2510
134
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
135
+ msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
136
 
137
+ #: includes/class-freemius.php:2517
138
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
139
+ msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
140
 
141
+ #: includes/class-freemius.php:2619
142
+ msgid "Yes - do your thing"
143
+ msgstr "はい - お構いなく"
144
 
145
+ #: includes/class-freemius.php:2624
146
+ msgid "No - just deactivate"
147
+ msgstr "いいえ - すぐに無効化"
148
 
149
+ #: includes/class-freemius.php2669, includes/class-freemius.php3134,
150
+ #: includes/class-freemius.php3988, includes/class-freemius.php7270,
151
+ #: includes/class-freemius.php9137, includes/class-freemius.php9193,
152
+ #: includes/class-freemius.php9254, includes/class-freemius.php11154,
153
+ #: includes/class-freemius.php11165, includes/class-freemius.php11614,
154
+ #: includes/class-freemius.php11632, includes/class-freemius.php11730,
155
+ #: includes/class-freemius.php12405, templates/add-ons.php:43
156
+ msgctxt "exclamation"
157
+ msgid "Oops"
158
+ msgstr "おっと"
159
 
160
+ #: includes/class-freemius.php:2736
161
+ msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
162
+ msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
 
163
 
164
+ #: includes/class-freemius.php:3131
165
+ msgctxt "addonX cannot run without pluginY"
166
+ msgid "%s cannot run without %s."
167
+ msgstr "%s は、%s が無いと実行することができません。"
168
 
169
+ #: includes/class-freemius.php:3132
170
+ msgctxt "addonX cannot run..."
171
+ msgid "%s cannot run without the plugin."
172
+ msgstr "%s は、プラグインが無いと実行することができません。"
173
 
174
+ #: includes/class-freemius.php3253, includes/class-freemius.php3278,
175
+ #: includes/class-freemius.php:11703
176
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
177
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
178
 
179
+ #: includes/class-freemius.php:3686
180
+ msgid "Premium %s version was successfully activated."
181
+ msgstr "Premium %s version was successfully activated."
 
182
 
183
+ #: includes/class-freemius.php3688, includes/class-freemius.php:4913
184
+ msgctxt ""
185
+ msgid "W00t"
186
+ msgstr "やったー"
187
 
188
+ #: includes/class-freemius.php:3703
 
189
  msgid "You have a %s license."
190
  msgstr "%s ライセンスを持っています。"
191
 
192
+ #: includes/class-freemius.php3707, includes/class-freemius.php8841,
193
+ #: includes/class-freemius.php8850, includes/class-freemius.php11105,
194
+ #: includes/class-freemius.php11318, includes/class-freemius.php11380,
195
+ #: includes/class-freemius.php:11492
196
+ msgctxt "interjection expressing joy or exuberance"
197
+ msgid "Yee-haw"
198
+ msgstr "ヤッホー"
199
 
200
+ #: includes/class-freemius.php:3971
201
+ msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
202
+ msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
 
203
 
204
+ #: includes/class-freemius.php:3975
205
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
206
+ msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
 
207
 
208
+ #: includes/class-freemius.php3984, templates/account.php692,
209
+ #: templates/add-ons.php:99
210
+ msgid "More information about %s"
211
+ msgstr "%s に関する詳細情報"
212
 
213
+ #: includes/class-freemius.php:3985
214
  msgid "Purchase License"
215
  msgstr "ライセンスを購入"
216
 
217
+ #: includes/class-freemius.php4422, templates/connect.php:136
218
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
219
+ msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
 
221
+ #: includes/class-freemius.php:4426
222
+ msgid "start the trial"
223
+ msgstr "トライアルを開始"
224
 
225
+ #: includes/class-freemius.php4427, templates/connect.php:140
226
+ msgid "complete the install"
227
+ msgstr "インストールを完了"
 
228
 
229
+ #: includes/class-freemius.php:4506
230
  msgid "You are just one step away - %s"
231
  msgstr "もうあとわずかです - %s"
232
 
233
+ #: includes/class-freemius.php:4509
234
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
235
  msgid "Complete \"%s\" Activation Now"
236
  msgstr "すぐに \"%s\" 有効化を完了してください"
237
 
238
+ #: includes/class-freemius.php:4523
239
  msgid "We made a few tweaks to the %s, %s"
240
  msgstr "We made a few tweaks to the %s, %s"
241
 
242
+ #: includes/class-freemius.php:4527
243
+ msgid "Opt in to make \"%s\" Better!"
244
+ msgstr "Opt in to make \"%s\" Better!"
245
 
246
+ #: includes/class-freemius.php:4912
247
+ msgid "The upgrade of %s was successfully completed."
248
+ msgstr "%s のアップグレードが完了しました。"
249
 
250
+ #: includes/class-freemius.php5997, includes/class-fs-plugin-updater.php358,
251
+ #: includes/class-fs-plugin-updater.php510,
252
+ #: includes/class-fs-plugin-updater.php516, templates/auto-installation.php:31
253
+ msgid "Add-On"
254
+ msgstr "Add-On"
255
 
256
+ #: includes/class-freemius.php5999, templates/debug.php303,
257
+ #: templates/debug.php:413
258
+ msgid "Plugin"
259
+ msgstr "プラグイン"
260
 
261
+ #: includes/class-freemius.php6000, templates/debug.php303,
262
+ #: templates/debug.php413, templates/forms/deactivation/form.php:64
263
+ msgid "Theme"
264
+ msgstr "Theme"
265
 
266
+ #: includes/class-freemius.php:7257
267
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
268
+ msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
269
 
270
+ #: includes/class-freemius.php:7259
271
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
272
+ msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
273
 
274
+ #: includes/class-freemius.php:7468
275
+ msgid "Account is pending activation."
276
+ msgstr "Account is pending activation."
 
277
 
278
+ #: includes/class-freemius.php:8825
279
+ msgctxt "pluginX activation was successfully..."
280
+ msgid "%s activation was successfully completed."
281
+ msgstr "%s の有効化が成功しました。"
282
 
283
+ #: includes/class-freemius.php:8837
284
+ msgid "Your account was successfully activated with the %s plan."
285
+ msgstr "アカウントが %s プランで有効化できました。"
286
 
287
+ #: includes/class-freemius.php8846, includes/class-freemius.php:11376
288
+ msgid "Your trial has been successfully started."
289
+ msgstr "トライアル版の利用を開始しました。"
290
 
291
+ #: includes/class-freemius.php9135, includes/class-freemius.php9191,
292
+ #: includes/class-freemius.php:9252
293
+ msgid "Couldn't activate %s."
294
+ msgstr "%s を有効化できません。"
295
 
296
+ #: includes/class-freemius.php9136, includes/class-freemius.php9192,
297
+ #: includes/class-freemius.php:9253
298
+ msgid "Please contact us with the following message:"
299
+ msgstr "以下のメッセージとともに私たちに連絡をください。"
300
 
301
+ #: includes/class-freemius.php9511, includes/class-freemius.php:13334
302
+ msgid "Upgrade"
303
+ msgstr "アップグレード"
 
304
 
305
+ #: includes/class-freemius.php:9517
306
+ msgid "Start Trial"
307
+ msgstr "トライアルを開始"
308
 
309
+ #: includes/class-freemius.php:9519
310
+ msgid "Pricing"
311
+ msgstr "料金表"
 
312
 
313
+ #: includes/class-freemius.php9559, includes/class-freemius.php:9561
314
+ msgid "Affiliation"
315
+ msgstr "Affiliation"
316
 
317
+ #: includes/class-freemius.php9581, includes/class-freemius.php9583,
318
+ #: templates/account.php79, templates/debug.php:281
319
+ msgid "Account"
320
+ msgstr "アカウント"
321
 
322
+ #: includes/class-freemius.php9594, includes/class-freemius.php9596,
323
+ #: includes/customizer/class-fs-customizer-support-section.php:60
324
+ msgid "Contact Us"
325
+ msgstr "連絡"
326
 
327
+ #: includes/class-freemius.php9606, includes/class-freemius.php9608,
328
+ #: includes/class-freemius.php13344, templates/account.php:68
329
+ msgid "Add-Ons"
330
+ msgstr "Add-Ons"
331
 
332
+ #: includes/class-freemius.php9639, templates/pricing.php:92
333
+ msgctxt "noun"
334
+ msgid "Pricing"
335
+ msgstr "料金表"
336
 
337
+ #: includes/class-freemius.php9819,
338
+ #: includes/customizer/class-fs-customizer-support-section.php:67
339
+ msgid "Support Forum"
340
+ msgstr "サポートフォーラム"
341
 
342
+ #: includes/class-freemius.php:10559
343
+ msgid "Your email has been successfully verified - you are AWESOME!"
344
+ msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
345
 
346
+ #: includes/class-freemius.php:10560
347
+ msgctxt "a positive response"
348
+ msgid "Right on"
349
+ msgstr "そうだ"
350
 
351
+ #: includes/class-freemius.php:11096
352
+ msgid "Your %s Add-on plan was successfully upgraded."
353
+ msgstr "%s のアドオンのプランのアップグレードが完了しました。"
354
 
355
+ #: includes/class-freemius.php:11098
356
+ msgid "%s Add-on was successfully purchased."
357
+ msgstr "%s のアドオンの支払いが完了しました。"
358
 
359
+ #: includes/class-freemius.php:11101
360
+ msgid "Download the latest version"
361
+ msgstr "最新版をダウンロード"
 
362
 
363
+ #: includes/class-freemius.php:11150
364
+ msgctxt "%1s - plugin title, %2s - API domain"
365
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
366
+ msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
367
 
368
+ #: includes/class-freemius.php11153, includes/class-freemius.php11463,
369
+ #: includes/class-freemius.php:11528
370
+ msgid "Error received from the server:"
371
+ msgstr "サーバーからエラーを受信しました。"
372
 
373
+ #: includes/class-freemius.php:11164
374
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
375
+ msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
376
 
377
+ #: includes/class-freemius.php11281, includes/class-freemius.php11468,
378
+ #: includes/class-freemius.php:11511
379
+ msgctxt ""
380
+ msgid "Hmm"
381
+ msgstr "ふむ"
382
 
383
+ #: includes/class-freemius.php:11294
384
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
385
+ msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
386
 
387
+ #: includes/class-freemius.php11295, templates/account.php70,
388
+ #: templates/add-ons.php:130
389
+ msgctxt "trial period"
390
+ msgid "Trial"
391
+ msgstr "トライアル"
392
 
393
+ #: includes/class-freemius.php:11300
394
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
395
+ msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
396
 
397
+ #: includes/class-freemius.php11304, includes/class-freemius.php:11358
398
+ msgid "Please contact us here"
399
+ msgstr "こちらで私たちに連絡をとってください。"
 
400
 
401
+ #: includes/class-freemius.php:11314
402
+ msgid "Your plan was successfully upgraded."
403
+ msgstr "プランのアップグレードが成功しました。"
404
 
405
+ #: includes/class-freemius.php:11331
406
+ msgid "Your plan was successfully changed to %s."
407
+ msgstr "プランの %s への変更が成功しました。"
408
 
409
+ #: includes/class-freemius.php:11346
410
+ msgid "Your license has expired. You can still continue using the free %s forever."
411
+ msgstr "Your license has expired. You can still continue using the free %s forever."
412
 
413
+ #: includes/class-freemius.php:11354
414
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
415
+ msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
416
 
417
+ #: includes/class-freemius.php:11367
418
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
419
+ msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
 
420
 
421
+ #: includes/class-freemius.php:11389
422
+ msgid "Your trial has expired. You can still continue using all our free features."
423
+ msgstr "トライアルの有効期限が切れました。引き続き無料の機能の利用を続けることができます。"
424
 
425
+ #: includes/class-freemius.php:11459
426
+ msgid "It looks like the license could not be activated."
427
+ msgstr "ライセンスの有効化ができませんでした。"
 
428
 
429
+ #: includes/class-freemius.php:11489
430
+ msgid "Your license was successfully activated."
431
+ msgstr "ライセンスの有効化が成功しました。"
 
432
 
433
+ #: includes/class-freemius.php:11515
434
+ msgid "It looks like your site currently doesn't have an active license."
435
+ msgstr "サイトは有効なライセンスを持っていないようです。"
436
 
437
+ #: includes/class-freemius.php:11527
438
+ msgid "It looks like the license deactivation failed."
439
+ msgstr "ライセンスの無効化ができませんでした。"
440
 
441
+ #: includes/class-freemius.php:11554
442
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
443
+ msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
444
+
445
+ #: includes/class-freemius.php:11555
446
+ msgid "O.K"
447
+ msgstr "O.K"
448
+
449
+ #: includes/class-freemius.php:11603
450
+ msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
451
+ msgstr "プランのダウングレードが完了しました。%s プランは %s に有効期限が切れます。"
452
+
453
+ #: includes/class-freemius.php:11613
454
+ msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
455
+ msgstr "プランのダウングレードの際に一時的な問題が発生したようです。数分後に再度操作してください。"
456
+
457
+ #: includes/class-freemius.php:11637
458
+ msgid "You are already running the %s in a trial mode."
459
+ msgstr "You are already running the %s in a trial mode."
460
+
461
+ #: includes/class-freemius.php:11648
462
+ msgid "You already utilized a trial before."
463
+ msgstr "以前すでに試用版を利用しました。"
464
+
465
+ #: includes/class-freemius.php:11662
466
+ msgid "Plan %s do not exist, therefore, can't start a trial."
467
+ msgstr "%s プランは存在しないため、試用を開始できません。"
468
+
469
+ #: includes/class-freemius.php:11673
470
+ msgid "Plan %s does not support a trial period."
471
+ msgstr "%s プランにはトライアル期間はありません。"
472
+
473
+ #: includes/class-freemius.php:11684
474
+ msgid "None of the %s's plans supports a trial period."
475
+ msgstr "None of the %s's plans supports a trial period."
476
+
477
+ #: includes/class-freemius.php:11734
478
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
479
+ msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
480
+
481
+ #: includes/class-freemius.php:11785
482
+ msgid "Your %s free trial was successfully cancelled."
483
+ msgstr "%s のフリートライアルはキャンセルされました。"
484
+
485
+ #: includes/class-freemius.php:11793
486
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
487
+ msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
488
+
489
+ #: includes/class-freemius.php:12032
490
+ msgid "Version %s was released."
491
+ msgstr "バージョン %s をリリースしました。"
492
+
493
+ #: includes/class-freemius.php:12032
494
+ msgid "Please download %s."
495
+ msgstr "%s をダウンロードしてください。"
496
+
497
+ #: includes/class-freemius.php:12039
498
+ msgid "the latest %s version here"
499
+ msgstr "最新の %s バージョンはこちらです。"
500
+
501
+ #: includes/class-freemius.php:12044
502
+ msgid "New"
503
+ msgstr "新規"
504
+
505
+ #: includes/class-freemius.php:12049
506
+ msgid "Seems like you got the latest release."
507
+ msgstr "最新版を取得できました。"
508
+
509
+ #: includes/class-freemius.php:12050
510
+ msgid "You are all good!"
511
+ msgstr "すべて完璧です!"
512
+
513
+ #: includes/class-freemius.php:12316
514
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
515
+ msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
516
+
517
+ #: includes/class-freemius.php:12491
518
+ msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
519
+ msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
520
+
521
+ #: includes/class-freemius.php:12497
522
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
523
+ msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
524
+
525
+ #: includes/class-freemius.php:12502
526
+ msgid "%s is the new owner of the account."
527
+ msgstr "%s は新しいオーナーです。"
528
+
529
+ #: includes/class-freemius.php:12504
530
+ msgctxt "as congratulations"
531
+ msgid "Congrats"
532
+ msgstr "おめでとう"
533
+
534
+ #: includes/class-freemius.php:12524
535
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
536
+ msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
537
+
538
+ #: includes/class-freemius.php:12525
539
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
540
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
541
+
542
+ #: includes/class-freemius.php:12532
543
+ msgid "Change Ownership"
544
+ msgstr "オーナーを変更"
545
+
546
+ #: includes/class-freemius.php:12540
547
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
548
+ msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
549
+
550
+ #: includes/class-freemius.php:12552
551
+ msgid "Please provide your full name."
552
+ msgstr "フルネームを入力してください。"
553
+
554
+ #: includes/class-freemius.php:12557
555
+ msgid "Your name was successfully updated."
556
+ msgstr "名前のアップデートが成功しました。"
557
+
558
+ #: includes/class-freemius.php:12618
559
+ msgid "You have successfully updated your %s."
560
+ msgstr "%s のアップデートが成功しました。"
561
+
562
+ #: includes/class-freemius.php:12756
563
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
564
+ msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
565
+
566
+ #: includes/class-freemius.php:12757
567
+ msgctxt "advance notice of something that will need attention."
568
+ msgid "Heads up"
569
+ msgstr "警告"
570
+
571
+ #: includes/class-freemius.php:13075
572
+ msgid "Awesome"
573
+ msgstr "すごい!"
574
 
575
+ #: includes/class-freemius.php:13115
576
+ msgctxt "exclamation"
577
+ msgid "Hey"
578
+ msgstr "ヘイ"
579
+
580
+ #: includes/class-freemius.php:13115
581
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
582
+ msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
583
+
584
+ #: includes/class-freemius.php:13123
585
+ msgid "No commitment for %s days - cancel anytime!"
586
+ msgstr "%s 日以内であればいつでもキャンセルできます。"
587
+
588
+ #: includes/class-freemius.php:13124
589
+ msgid "No credit card required"
590
+ msgstr "クレジットカードは必要ありません。"
591
 
592
+ #: includes/class-freemius.php13131, templates/forms/trial-start.php:53
593
+ msgctxt "call to action"
594
+ msgid "Start free trial"
595
+ msgstr "フリートライアルを開始"
596
+
597
+ #: includes/class-freemius.php:13208
598
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
599
+ msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
600
+
601
+ #: includes/class-freemius.php:13217
602
+ msgid "Learn more"
603
+ msgstr "Learn more"
604
+
605
+ #: includes/class-freemius.php13373, templates/account.php330,
606
+ #: templates/connect.php309, templates/forms/license-activation.php:24
607
+ msgid "Activate License"
608
+ msgstr "ライセンスを有効化"
609
+
610
+ #: includes/class-freemius.php13374, templates/account.php:393
611
  msgid "Change License"
612
  msgstr "ライセンスを変更"
613
 
614
+ #: includes/class-freemius.php:13435
615
+ msgid "Opt Out"
616
+ msgstr "オプトアウト"
617
 
618
+ #: includes/class-freemius.php13437, includes/class-freemius.php:13442
619
+ msgid "Opt In"
620
+ msgstr "オプトイン"
621
 
622
+ #: includes/class-freemius.php:13630
623
+ msgid "Please follow these steps to complete the upgrade"
624
+ msgstr "アップグレードを完了するには以下の手順を完了させてください。"
625
 
626
+ #: includes/class-freemius.php:13633
627
+ msgid "Download the latest %s version"
628
+ msgstr "最新の %s をダウンロード"
629
 
630
+ #: includes/class-freemius.php:13637
631
+ msgid "Upload and activate the downloaded version"
632
+ msgstr "ダウンロードしたバージョンをアップロードして有効化"
633
 
634
+ #: includes/class-freemius.php:13639
635
+ msgid "How to upload and activate?"
636
+ msgstr "アップロードと有効化の方法"
637
 
638
+ #: includes/class-freemius.php:13798
639
+ msgid "Auto installation only works for opted-in users."
640
+ msgstr "Auto installation only works for opted-in users."
641
 
642
+ #: includes/class-freemius.php13808, includes/class-freemius.php13841,
643
+ #: includes/class-fs-plugin-updater.php490,
644
+ #: includes/class-fs-plugin-updater.php:504
645
+ msgid "Invalid module ID."
646
+ msgstr "Invalid module ID."
647
 
648
+ #: includes/class-freemius.php13817, includes/class-fs-plugin-updater.php:524
649
+ msgid "Premium version already active."
650
+ msgstr "Premium version already active."
 
651
 
652
+ #: includes/class-freemius.php:13824
653
+ msgid "You do not have a valid license to access the premium version."
654
+ msgstr "You do not have a valid license to access the premium version."
655
+
656
+ #: includes/class-freemius.php:13831
657
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
658
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
659
 
660
+ #: includes/class-freemius.php13849, includes/class-fs-plugin-updater.php:523
661
+ msgid "Premium add-on version already installed."
662
+ msgstr "Premium add-on version already installed."
663
+
664
+ #: includes/class-freemius.php:14194
665
+ msgid "View paid features"
666
+ msgstr "View paid features"
667
+
668
+ #: includes/class-fs-plugin-updater.php:131
669
+ msgid "%sRenew your license now%s to access version %s features and support."
670
+ msgstr "%sいますぐライセンスを更新して%s バージョン %s の機能とサポートにアクセスする"
671
+
672
+ #: includes/class-fs-plugin-updater.php:553
673
+ msgid "Installing plugin: %s"
674
+ msgstr "Installing plugin: %s"
675
+
676
+ #: includes/class-fs-plugin-updater.php:594
677
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
678
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
679
+
680
+ #: includes/class-fs-plugin-updater.php:700
681
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
682
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
683
+
684
+ #: includes/fs-plugin-info-dialog.php328, templates/account.php:696
685
+ msgctxt "verb"
686
+ msgid "Purchase"
687
+ msgstr "購入"
688
+
689
+ #: includes/fs-plugin-info-dialog.php:331
690
+ msgid "Start my free %s"
691
+ msgstr "無料の %s を開始"
692
+
693
+ #: includes/fs-plugin-info-dialog.php355, templates/account.php:52
694
+ msgctxt "as download latest version"
695
+ msgid "Download Latest"
696
+ msgstr "最新版をダウンロード"
697
+
698
+ #: includes/fs-plugin-info-dialog.php358, templates/account.php676,
699
+ #: templates/account.php729, templates/auto-installation.php:110
700
  msgid "Install Now"
701
  msgstr "今すぐインストール"
702
 
703
+ #: includes/fs-plugin-info-dialog.php364, templates/account.php:384
704
  msgid "Install Update Now"
705
  msgstr "今すぐ更新をインストール"
706
 
707
+ #: includes/fs-plugin-info-dialog.php:368
708
+ msgid "Newer Version (%s) Installed"
709
+ msgstr "Newer Version (%s) Installed"
 
 
 
 
 
 
 
 
 
710
 
711
+ #: includes/fs-plugin-info-dialog.php:371
712
+ msgid "Latest Version Installed"
713
+ msgstr "Latest Version Installed"
 
714
 
715
+ #: includes/fs-plugin-info-dialog.php:484
716
+ msgctxt "Plugin installer section title"
717
+ msgid "Description"
718
+ msgstr "Description"
719
 
720
+ #: includes/fs-plugin-info-dialog.php:485
721
+ msgctxt "Plugin installer section title"
722
+ msgid "Installation"
723
+ msgstr "Installation"
724
 
725
+ #: includes/fs-plugin-info-dialog.php:486
726
+ msgctxt "Plugin installer section title"
727
+ msgid "FAQ"
728
+ msgstr "FAQ"
729
 
730
+ #: includes/fs-plugin-info-dialog.php487,
731
+ #: templates/plugin-info/description.php:55
732
+ msgid "Screenshots"
733
+ msgstr "スクリーンショット"
734
 
735
+ #: includes/fs-plugin-info-dialog.php:488
736
+ msgctxt "Plugin installer section title"
737
+ msgid "Changelog"
738
+ msgstr "Changelog"
739
 
740
+ #: includes/fs-plugin-info-dialog.php:489
741
+ msgctxt "Plugin installer section title"
742
+ msgid "Reviews"
743
+ msgstr "Reviews"
744
 
745
+ #: includes/fs-plugin-info-dialog.php:490
746
+ msgctxt "Plugin installer section title"
747
+ msgid "Other Notes"
748
+ msgstr "Other Notes"
749
 
750
+ #: includes/fs-plugin-info-dialog.php:505
751
+ msgctxt "Plugin installer section title"
752
+ msgid "Features & Pricing"
753
+ msgstr "機能 & 料金"
754
 
755
+ #: includes/fs-plugin-info-dialog.php:515
756
+ msgid "Plugin Install"
757
+ msgstr "Plugin Install"
758
 
759
+ #: includes/fs-plugin-info-dialog.php:587
760
+ msgctxt "e.g. Professional Plan"
761
+ msgid "%s Plan"
762
+ msgstr "%s プラン"
763
 
764
+ #: includes/fs-plugin-info-dialog.php:612
765
+ msgctxt "e.g. the best product"
766
+ msgid "Best"
767
+ msgstr "ベスト"
768
 
769
+ #: includes/fs-plugin-info-dialog.php618,
770
+ #: includes/fs-plugin-info-dialog.php:638
771
+ msgctxt "as every month"
772
+ msgid "Monthly"
773
+ msgstr "月"
774
 
775
+ #: includes/fs-plugin-info-dialog.php:621
776
+ msgctxt "as once a year"
777
+ msgid "Annual"
778
+ msgstr "年次"
779
 
780
+ #: includes/fs-plugin-info-dialog.php:624
781
+ msgid "Lifetime"
782
+ msgstr "ライフタイム"
783
 
784
+ #: includes/fs-plugin-info-dialog.php638,
785
+ #: includes/fs-plugin-info-dialog.php640,
786
+ #: includes/fs-plugin-info-dialog.php:642
787
+ msgctxt "e.g. billed monthly"
788
+ msgid "Billed %s"
789
+ msgstr "%s への請求"
790
 
791
+ #: includes/fs-plugin-info-dialog.php:640
792
+ msgctxt "as once a year"
793
+ msgid "Annually"
794
+ msgstr "毎年"
795
 
796
+ #: includes/fs-plugin-info-dialog.php:642
797
+ msgctxt "as once a year"
798
+ msgid "Once"
799
+ msgstr "一度"
800
 
801
+ #: includes/fs-plugin-info-dialog.php:648
802
+ msgid "Single Site License"
803
+ msgstr "シングルサイトライセンス"
804
 
805
+ #: includes/fs-plugin-info-dialog.php:650
806
+ msgid "Unlimited Licenses"
807
+ msgstr "無制限ライセンス"
808
 
809
+ #: includes/fs-plugin-info-dialog.php:652
810
+ msgid "Up to %s Sites"
811
+ msgstr "%sサイトまで"
812
 
813
+ #: includes/fs-plugin-info-dialog.php662,
814
+ #: templates/plugin-info/features.php:82
815
+ msgctxt "as monthly period"
816
+ msgid "mo"
817
+ msgstr "月"
818
 
819
+ #: includes/fs-plugin-info-dialog.php669,
820
+ #: templates/plugin-info/features.php:80
821
+ msgctxt "as annual period"
822
+ msgid "year"
823
+ msgstr "年"
824
 
825
+ #: includes/fs-plugin-info-dialog.php:721
826
+ msgctxt "noun"
827
+ msgid "Price"
828
+ msgstr "料金"
829
 
830
+ #: includes/fs-plugin-info-dialog.php:767
831
+ msgctxt "as a discount of $5 or 10%"
832
+ msgid "Save %s"
833
+ msgstr "%s を保存"
834
 
835
+ #: includes/fs-plugin-info-dialog.php:777
836
+ msgid "No commitment for %s - cancel anytime"
837
+ msgstr "%s の拘束はありません。いつでもキャンセルできます。"
838
 
839
+ #: includes/fs-plugin-info-dialog.php:780
840
+ msgid "After your free %s, pay as little as %s"
841
+ msgstr "無料の %s の後は、わずか %s だけお支払ください。"
842
 
843
+ #: includes/fs-plugin-info-dialog.php:791
844
+ msgid "Details"
845
+ msgstr "詳細"
846
 
847
+ #: includes/fs-plugin-info-dialog.php794, templates/account.php59,
848
+ #: templates/debug.php183, templates/debug.php220, templates/debug.php:354
849
+ msgctxt "product version"
850
+ msgid "Version"
851
+ msgstr "バージョン"
852
 
853
+ #: includes/fs-plugin-info-dialog.php:800
854
+ msgctxt "as the plugin author"
855
+ msgid "Author"
856
+ msgstr "Author"
857
 
858
+ #: includes/fs-plugin-info-dialog.php:806
859
+ msgid "Last Updated"
860
+ msgstr "Last Updated"
861
 
862
+ #: includes/fs-plugin-info-dialog.php:810
863
+ msgctxt "x-ago"
864
+ msgid "%s ago"
865
+ msgstr "%s 前"
866
 
867
+ #: includes/fs-plugin-info-dialog.php:819
868
+ msgid "Requires WordPress Version"
869
+ msgstr "Requires WordPress Version"
870
 
871
+ #: includes/fs-plugin-info-dialog.php:819
872
+ msgid "%s or higher"
873
+ msgstr "%s or higher"
874
 
875
+ #: includes/fs-plugin-info-dialog.php:825
876
+ msgid "Compatible up to"
877
+ msgstr "Compatible up to"
 
878
 
879
+ #: includes/fs-plugin-info-dialog.php:832
880
+ msgid "Downloaded"
881
+ msgstr "Downloaded"
882
 
883
+ #: includes/fs-plugin-info-dialog.php:835
884
+ msgid "%s time"
885
+ msgstr "%s time"
886
 
887
+ #: includes/fs-plugin-info-dialog.php:837
888
+ msgid "%s times"
889
+ msgstr "%s times"
890
 
891
+ #: includes/fs-plugin-info-dialog.php:847
892
+ msgid "WordPress.org Plugin Page"
893
+ msgstr "WordPress.org Plugin Page"
894
 
895
+ #: includes/fs-plugin-info-dialog.php:854
896
+ msgid "Plugin Homepage"
897
+ msgstr "Plugin Homepage"
898
 
899
+ #: includes/fs-plugin-info-dialog.php861,
900
+ #: includes/fs-plugin-info-dialog.php:941
901
+ msgid "Donate to this plugin"
902
+ msgstr "Donate to this plugin"
903
 
904
+ #: includes/fs-plugin-info-dialog.php:867
905
+ msgid "Average Rating"
906
+ msgstr "Average Rating"
907
 
908
+ #: includes/fs-plugin-info-dialog.php:874
909
+ msgid "based on %s"
910
+ msgstr "based on %s"
911
 
912
+ #: includes/fs-plugin-info-dialog.php:878
913
+ msgid "%s rating"
914
+ msgstr "%s rating"
915
 
916
+ #: includes/fs-plugin-info-dialog.php:880
917
+ msgid "%s ratings"
918
+ msgstr "%s ratings"
919
 
920
+ #: includes/fs-plugin-info-dialog.php:894
921
+ msgid "%s star"
922
+ msgstr "%s star"
923
 
924
+ #: includes/fs-plugin-info-dialog.php:896
925
+ msgid "%s stars"
926
+ msgstr "%s stars"
927
 
928
+ #: includes/fs-plugin-info-dialog.php:907
929
+ msgid "Click to see reviews that provided a rating of %s"
930
+ msgstr "Click to see reviews that provided a rating of %s"
931
 
932
+ #: includes/fs-plugin-info-dialog.php:920
933
+ msgid "Contributors"
934
+ msgstr "Contributors"
935
 
936
+ #: includes/fs-plugin-info-dialog.php948,
937
+ #: includes/fs-plugin-info-dialog.php:950
938
+ msgid "Warning"
939
+ msgstr "Warning"
940
 
941
+ #: includes/fs-plugin-info-dialog.php:948
942
+ msgid "This plugin has not been tested with your current version of WordPress."
943
+ msgstr "This plugin has not been tested with your current version of WordPress."
 
944
 
945
+ #: includes/fs-plugin-info-dialog.php:950
946
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
947
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
 
948
 
949
+ #: includes/fs-plugin-info-dialog.php:969
950
+ msgid "Paid add-on must be deployed to Freemius."
951
+ msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
952
 
953
+ #: includes/fs-plugin-info-dialog.php:970
954
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
955
+ msgstr "アドオンが WordPress.org Freemius にデプロイされている必要があります。"
956
 
957
+ #: templates/account.php:53
958
+ msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
959
+ msgstr "プランをダウングレードするとすぐに将来の定期の支払いはすべて停止し、%s プランライセンスは %s で期限切れとなります。"
960
 
961
+ #: templates/account.php:54
962
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
963
+ msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
964
 
965
+ #: templates/account.php:55
966
+ msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
967
+ msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
968
 
969
+ #: templates/account.php:56
970
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
971
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
972
 
973
+ #. translators: %s: Plan title (e.g. "Professional")
974
+ #: templates/account.php:58
975
+ msgid "Activate %s Plan"
976
+ msgstr "%s プランを有効化"
977
 
978
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
979
+ #: templates/account.php:61
980
+ msgid "Auto renews in %s"
981
+ msgstr "%s に自動更新"
982
 
983
+ #. translators: %s: Time period (e.g. Expires in "2 months")
984
+ #: templates/account.php:63
985
+ msgid "Expires in %s"
986
+ msgstr "%s で期間終了"
987
 
988
+ #: templates/account.php:64
989
+ msgctxt "as synchronize license"
990
+ msgid "Sync License"
991
+ msgstr "ライセンスを同期"
992
 
993
+ #: templates/account.php:65
994
+ msgid "Cancel Trial"
995
+ msgstr "トライアルをキャンセル"
996
 
997
+ #: templates/account.php:66
998
+ msgid "Change Plan"
999
+ msgstr "プラン変更"
1000
 
1001
+ #: templates/account.php:67
1002
+ msgctxt "verb"
1003
+ msgid "Upgrade"
1004
+ msgstr "アップグレード"
1005
 
1006
+ #: templates/account.php:69
1007
+ msgctxt "verb"
1008
+ msgid "Downgrade"
1009
+ msgstr "ダウングレード"
1010
 
1011
+ #: templates/account.php71, templates/add-ons.php126,
1012
+ #: templates/plugin-info/features.php:72
1013
+ msgid "Free"
1014
+ msgstr "無料"
1015
 
1016
+ #: templates/account.php:72
1017
+ msgid "Activate"
1018
+ msgstr "有効化"
1019
 
1020
+ #: templates/account.php73, templates/debug.php311,
1021
+ #: includes/customizer/class-fs-customizer-upsell-control.php:106
1022
+ msgctxt "as product pricing plan"
1023
+ msgid "Plan"
1024
+ msgstr "プラン"
1025
 
1026
+ #: templates/account.php:87
1027
+ msgid "Free Trial"
1028
+ msgstr "フリートライアル"
1029
 
1030
+ #: templates/account.php:98
1031
+ msgid "Account Details"
1032
+ msgstr "アカウント詳細"
1033
 
1034
+ #: templates/account.php:108
1035
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
1036
+ msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1037
 
1038
+ #: templates/account.php:110
1039
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1040
+ msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
1041
 
1042
+ #: templates/account.php:113
1043
+ msgid "Delete Account"
1044
+ msgstr "アカウントを削除"
 
1045
 
1046
+ #: templates/account.php:124
1047
+ msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
1048
+ msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
 
1049
 
1050
+ #: templates/account.php125, templates/account.php:590
1051
+ msgid "Deactivate License"
1052
+ msgstr "ライセンスを無効化"
 
1053
 
1054
+ #: templates/account.php:142
1055
+ msgid "Are you sure you want to proceed?"
1056
+ msgstr "本当に続行していいですか?"
 
1057
 
1058
+ #: templates/account.php:142
1059
+ msgid "Cancel Subscription"
1060
+ msgstr "Cancel Subscription"
 
1061
 
1062
+ #: templates/account.php:171
1063
+ msgctxt "as synchronize"
1064
+ msgid "Sync"
1065
+ msgstr "同期"
1066
 
1067
+ #: templates/account.php185, templates/debug.php:389
1068
+ msgid "Name"
1069
+ msgstr "名前"
1070
 
1071
+ #: templates/account.php191, templates/debug.php:390
1072
+ msgid "Email"
1073
+ msgstr "Email"
1074
 
1075
+ #: templates/account.php198, templates/debug.php310, templates/debug.php:419
1076
+ msgid "User ID"
1077
+ msgstr "ユーザー ID"
1078
 
1079
+ #: templates/account.php:205
1080
+ msgid "Site ID"
1081
+ msgstr "サイト ID"
1082
 
1083
+ #: templates/account.php:208
1084
+ msgid "No ID"
1085
+ msgstr "ID がありません"
1086
 
1087
+ #: templates/account.php213, templates/debug.php225, templates/debug.php312,
1088
+ #: templates/debug.php355, templates/debug.php:392
1089
+ msgid "Public Key"
1090
+ msgstr "公開鍵"
1091
 
1092
+ #: templates/account.php219, templates/debug.php313, templates/debug.php356,
1093
+ #: templates/debug.php:393
1094
+ msgid "Secret Key"
1095
+ msgstr "秘密鍵"
1096
 
1097
+ #: templates/account.php:222
1098
+ msgctxt "as secret encryption key missing"
1099
+ msgid "No Secret"
1100
+ msgstr "秘密鍵がありません"
1101
 
1102
+ #: templates/account.php:241
1103
+ msgid "Trial"
1104
+ msgstr "トライアル"
1105
 
1106
+ #: templates/account.php257, templates/debug.php:424
1107
+ msgid "License Key"
1108
+ msgstr "License Key"
1109
 
1110
+ #: templates/account.php:287
1111
+ msgid "not verified"
1112
+ msgstr "未認証"
1113
 
1114
+ #: templates/account.php:317
1115
+ msgid "Localhost"
1116
+ msgstr "localhost"
1117
 
1118
+ #: templates/account.php:321
1119
+ msgctxt "as 5 licenses left"
1120
+ msgid "%s left"
1121
+ msgstr "あと %s"
1122
 
1123
+ #: templates/account.php:322
1124
+ msgid "Last license"
1125
+ msgstr "最新のライセンス"
1126
 
1127
+ #: templates/account.php:352
1128
+ msgid "Premium version"
1129
+ msgstr "プレミアムバージョン"
1130
 
1131
+ #: templates/account.php:354
1132
+ msgid "Free version"
1133
+ msgstr "フリーバージョン"
1134
 
1135
+ #: templates/account.php:366
1136
+ msgid "Verify Email"
1137
+ msgstr "認証メール"
1138
 
1139
+ #: templates/account.php:377
1140
+ msgid "Download %s Version"
1141
+ msgstr "%s バージョンをダウンロード"
1142
 
1143
+ #: templates/account.php391, templates/account.php:442
1144
+ msgctxt "verb"
1145
+ msgid "Show"
1146
+ msgstr "表示"
1147
 
1148
+ #: templates/account.php:405
1149
+ msgid "What is your %s?"
1150
+ msgstr "自分の %s はなんですか?"
1151
 
1152
+ #: templates/account.php413, templates/account/billing.php:27
1153
+ msgctxt "verb"
1154
+ msgid "Edit"
1155
+ msgstr "編集"
1156
 
1157
+ #: templates/account.php:436
1158
+ msgctxt "verb"
1159
+ msgid "Hide"
1160
+ msgstr "非表示"
1161
 
1162
+ #: templates/account.php472, templates/debug.php218, templates/debug.php308,
1163
+ #: templates/debug.php351, templates/debug.php388, templates/debug.php417,
1164
+ #: templates/debug.php496, templates/account/payments.php35,
1165
+ #: templates/debug/logger.php:21
1166
+ msgid "ID"
1167
+ msgstr "ID"
1168
 
1169
+ #: templates/account.php:475
1170
+ msgctxt "as software license"
1171
+ msgid "License"
1172
+ msgstr "ライセンス"
1173
 
1174
+ #: templates/account.php:550
1175
+ msgid "Cancelled"
1176
+ msgstr "キャンセル"
 
1177
 
1178
+ #: templates/account.php:555
1179
+ msgid "Expired"
1180
+ msgstr "期限切れ"
 
1181
 
1182
+ #: templates/account.php:560
1183
+ msgid "No expiration"
1184
+ msgstr "有効期限なし"
 
1185
 
1186
+ #: templates/account.php668, templates/account.php:724
1187
+ msgid "Activate this add-on"
1188
+ msgstr "このアドオンを有効化"
 
1189
 
1190
+ #: templates/account.php745, templates/debug.php:336
1191
+ msgctxt "verb"
1192
+ msgid "Delete"
1193
+ msgstr "削除"
1194
 
1195
+ #: templates/add-ons.php:36
1196
+ msgid "Add Ons for %s"
1197
+ msgstr "%s のアドオン"
 
1198
 
1199
+ #: templates/add-ons.php:44
1200
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1201
+ msgstr "アドオンリストを読み込むことができませんでした。おそらく運営側の問題になりますので、しばらくしてからお試しください。"
1202
+
1203
+ #: templates/add-ons.php:135
1204
+ msgid "View details"
1205
+ msgstr "詳細を表示"
1206
 
1207
+ #: templates/admin-notice.php13, templates/forms/license-activation.php73,
1208
+ #: templates/forms/resend-key.php:77
1209
+ msgctxt "as close a window"
1210
+ msgid "Dismiss"
1211
+ msgstr "却下"
1212
 
1213
+ #: templates/auto-installation.php:44
1214
+ msgid "%s sec"
1215
+ msgstr "%s sec"
1216
 
1217
+ #: templates/auto-installation.php:82
1218
+ msgid "Automatic Installation"
1219
+ msgstr "Automatic Installation"
1220
 
1221
+ #: templates/auto-installation.php:92
1222
+ msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1223
+ msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1224
 
1225
+ #: templates/auto-installation.php:103
1226
+ msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1227
+ msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1228
 
1229
+ #: templates/auto-installation.php:108
1230
+ msgid "Cancel Installation"
1231
+ msgstr "Cancel Installation"
1232
 
1233
+ #: templates/checkout.php:168
1234
+ msgid "Checkout"
1235
+ msgstr "Checkout"
1236
 
1237
+ #: templates/checkout.php:168
1238
+ msgid "PCI compliant"
1239
+ msgstr "PCI compliant"
1240
 
1241
+ #: templates/connect.php:128
1242
+ msgid "Allow & Continue"
1243
+ msgstr "許可して続ける"
1244
 
1245
+ #: templates/connect.php:131
1246
+ msgid "Re-send activation email"
1247
+ msgstr "有効化メールを再送信"
1248
 
1249
+ #: templates/connect.php:135
1250
+ msgid "Thanks %s!"
1251
+ msgstr "ありがとう $s さん!"
1252
 
1253
+ #: templates/connect.php143, templates/forms/license-activation.php:43
1254
+ msgid "Agree & Activate License"
1255
+ msgstr "同意してライセンスを有効化"
1256
 
1257
+ #: templates/connect.php147, templates/connect.php:170
1258
+ msgctxt "greeting"
1259
+ msgid "Hey %s,"
1260
+ msgstr "おおい %s さん、"
1261
 
1262
+ #: templates/connect.php:148
1263
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1264
+ msgstr "%s を購入いただきありがとうございます。はじめにライセンスキーを入力してください:"
1265
 
1266
+ #: templates/connect.php:154
1267
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1268
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1269
 
1270
+ #: templates/connect.php:159
1271
+ msgid "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1272
+ msgstr "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1273
 
1274
+ #: templates/connect.php189, templates/forms/license-activation.php:46
1275
+ msgid "License key"
1276
+ msgstr "ライセンスキー"
1277
 
1278
+ #: templates/connect.php192, templates/forms/license-activation.php:19
1279
+ msgid "Can't find your license key?"
1280
+ msgstr "ライセンスキーは見つかりませんか?"
1281
 
1282
+ #: templates/connect.php199, templates/forms/deactivation/retry-skip.php:20
1283
+ msgctxt "verb"
1284
+ msgid "Skip"
1285
+ msgstr "スキップ"
1286
 
1287
+ #: templates/connect.php:228
1288
+ msgid "Your Profile Overview"
1289
+ msgstr "プロフィール概要"
1290
 
1291
+ #: templates/connect.php:229
1292
+ msgid "Name and email address"
1293
+ msgstr "名前とメールアドレス"
1294
 
1295
+ #: templates/connect.php:234
1296
+ msgid "Your Site Overview"
1297
+ msgstr "サイト概要"
1298
 
1299
+ #: templates/connect.php:235
1300
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1301
+ msgstr "サイト URL、WP バージョン、PHP info、プラグインとテーマ"
1302
 
1303
+ #: templates/connect.php:240
1304
+ msgid "Admin Notices"
1305
+ msgstr "管理者通知"
 
1306
 
1307
+ #: templates/connect.php241, templates/connect.php:263
1308
+ msgid "Updates, announcements, marketing, no spam"
1309
+ msgstr "更新、発表、マーケティング、スパムなし"
 
1310
 
1311
+ #: templates/connect.php:246
1312
+ msgid "Current %s Events"
1313
+ msgstr "Current %s Events"
 
1314
 
1315
+ #: templates/connect.php:247
1316
+ msgid "Activation, deactivation and uninstall"
1317
+ msgstr "有効化、無効化、アンインストール"
 
1318
 
1319
+ #: templates/connect.php:262
1320
+ msgid "Newsletter"
1321
+ msgstr "ニュースレター"
 
1322
 
1323
+ #: templates/connect.php279, templates/forms/license-activation.php:38
1324
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1325
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
 
1326
 
1327
+ #: templates/connect.php:284
1328
+ msgid "What permissions are being granted?"
1329
+ msgstr "付与されているパーミッションは何ですか?"
1330
 
1331
+ #: templates/connect.php:305
1332
+ msgid "Don't have a license key?"
1333
+ msgstr "ライセンスキーをお持ちではありませんか?"
 
1334
 
1335
+ #: templates/connect.php:306
1336
+ msgid "Activate Free Version"
1337
+ msgstr "フリーバージョンを有効化"
 
1338
 
1339
+ #: templates/connect.php:308
1340
+ msgid "Have a license key?"
1341
+ msgstr "ライセンスキーはお持ちですか?"
1342
 
1343
+ #: templates/connect.php:316
1344
+ msgid "Privacy Policy"
1345
+ msgstr "プライバシーポリシー"
1346
 
1347
+ #: templates/connect.php:318
1348
+ msgid "Terms of Service"
1349
+ msgstr "利用規約"
1350
 
1351
+ #: templates/connect.php:436
1352
+ msgctxt "as in the process of sending an email"
1353
+ msgid "Sending email"
1354
+ msgstr "メール送信中"
1355
 
1356
+ #: templates/connect.php:437
1357
+ msgctxt "as activating plugin"
1358
+ msgid "Activating"
1359
+ msgstr "有効化中"
1360
 
1361
+ #: templates/contact.php:74
1362
+ msgid "Contact"
1363
+ msgstr "Contact"
1364
 
1365
+ #: templates/debug.php:17
1366
+ msgctxt "as turned off"
1367
+ msgid "Off"
1368
+ msgstr "オフ"
1369
 
1370
+ #: templates/debug.php:18
1371
+ msgctxt "as turned on"
1372
+ msgid "On"
1373
+ msgstr "オン"
1374
 
1375
+ #: templates/debug.php:20
1376
+ msgid "SDK"
1377
+ msgstr "SDK"
1378
 
1379
+ #: templates/debug.php:24
1380
+ msgctxt "as code debugging"
1381
+ msgid "Debugging"
1382
+ msgstr "デバッグ"
1383
 
1384
+ #: templates/debug.php54, templates/debug.php226, templates/debug.php:314
1385
+ msgid "Actions"
1386
+ msgstr "アクション"
1387
 
1388
+ #: templates/debug.php:64
1389
+ msgid "Are you sure you want to delete all Freemius data?"
1390
+ msgstr "ほんとうに全ての Freemius データを削除しますか?"
1391
 
1392
+ #: templates/debug.php:64
1393
+ msgid "Delete All Accounts"
1394
+ msgstr "全てのアカウントを削除"
1395
 
1396
+ #: templates/debug.php:71
1397
+ msgid "Clear API Cache"
1398
+ msgstr "API キャッシュをクリア"
1399
 
1400
+ #: templates/debug.php:78
1401
+ msgid "Sync Data From Server"
1402
+ msgstr "サーバーからのデータを同期"
1403
 
1404
+ #: templates/debug.php:82
1405
+ msgid "Load DB Option"
1406
+ msgstr "Load DB Option"
1407
 
1408
+ #: templates/debug.php:85
1409
+ msgid "Set DB Option"
1410
+ msgstr "Set DB Option"
1411
 
1412
+ #: templates/debug.php:162
1413
+ msgid "Key"
1414
+ msgstr "Key"
1415
 
1416
+ #: templates/debug.php:163
1417
+ msgid "Value"
1418
+ msgstr "Value"
1419
 
1420
+ #: templates/debug.php:179
1421
+ msgctxt "as software development kit versions"
1422
+ msgid "SDK Versions"
1423
+ msgstr "SDK バージョン"
1424
 
1425
+ #: templates/debug.php:184
1426
+ msgid "SDK Path"
1427
+ msgstr "SDK のパス"
1428
 
1429
+ #: templates/debug.php185, templates/debug.php:224
1430
+ msgid "Module Path"
1431
+ msgstr "Module Path"
 
1432
 
1433
+ #: templates/debug.php:186
1434
+ msgid "Is Active"
1435
+ msgstr "有効"
1436
 
1437
+ #: templates/debug.php214, templates/debug/plugins-themes-sync.php:35
1438
+ msgid "Plugins"
1439
+ msgstr "プラグイン"
1440
 
1441
+ #: templates/debug.php214, templates/debug/plugins-themes-sync.php:56
1442
+ msgid "Themes"
1443
+ msgstr "テーマ"
1444
 
1445
+ #: templates/debug.php219, templates/debug.php309, templates/debug.php353,
1446
+ #: templates/debug/scheduled-crons.php:81
1447
+ msgid "Slug"
1448
+ msgstr "スラッグ"
1449
 
1450
+ #: templates/debug.php221, templates/debug.php:352
1451
+ msgid "Title"
1452
+ msgstr "タイトル"
1453
 
1454
+ #: templates/debug.php:222
1455
+ msgctxt "as application program interface"
1456
+ msgid "API"
1457
+ msgstr "API"
1458
 
1459
+ #: templates/debug.php:223
1460
+ msgid "Freemius State"
1461
+ msgstr "Freemius ステータス"
1462
 
1463
+ #: templates/debug.php:255
1464
+ msgctxt "as connection was successful"
1465
+ msgid "Connected"
1466
+ msgstr "接続"
1467
 
1468
+ #: templates/debug.php:256
1469
+ msgctxt "as connection blocked"
1470
+ msgid "Blocked"
1471
+ msgstr "ブロック"
1472
 
1473
+ #: templates/debug.php:277
1474
+ msgid "Simulate Trial"
1475
+ msgstr "Simulate Trial"
1476
 
1477
+ #: templates/debug.php:302
1478
+ msgid "%s Installs"
1479
+ msgstr "%s Installs"
1480
 
1481
+ #: templates/debug.php:304
1482
+ msgctxt "like websites"
1483
+ msgid "Sites"
1484
+ msgstr "サイト数"
1485
 
1486
+ #: templates/debug.php:347
1487
+ msgid "Add Ons of module %s"
1488
+ msgstr "Add Ons of module %s"
1489
 
1490
+ #: templates/debug.php:384
1491
+ msgid "Users"
1492
+ msgstr "ユーザー"
1493
 
1494
+ #: templates/debug.php:391
1495
+ msgid "Verified"
1496
+ msgstr "認証済み"
1497
 
1498
+ #: templates/debug.php:413
1499
+ msgid "%s Licenses"
1500
+ msgstr "%s Licenses"
1501
 
1502
+ #: templates/debug.php:418
1503
+ msgid "Plugin ID"
1504
+ msgstr "Plugin ID"
1505
 
1506
+ #: templates/debug.php:420
1507
+ msgid "Plan ID"
1508
+ msgstr "Plan ID"
1509
 
1510
+ #: templates/debug.php:421
1511
+ msgid "Quota"
1512
+ msgstr "Quota"
 
1513
 
1514
+ #: templates/debug.php:422
1515
+ msgid "Activated"
1516
+ msgstr "Activated"
1517
 
1518
+ #: templates/debug.php:423
1519
+ msgid "Blocking"
1520
+ msgstr "Blocking"
 
1521
 
1522
+ #: templates/debug.php:425
1523
+ msgctxt "as expiration date"
1524
+ msgid "Expiration"
1525
+ msgstr "期限切れ"
1526
 
1527
+ #: templates/debug.php:454
1528
+ msgid "Debug Log"
1529
+ msgstr "Debug Log"
 
1530
 
1531
+ #: templates/debug.php:458
1532
+ msgid "All Types"
1533
+ msgstr "All Types"
1534
 
1535
+ #: templates/debug.php:465
1536
+ msgid "All Requests"
1537
+ msgstr "All Requests"
1538
 
1539
+ #: templates/debug.php470, templates/debug.php499,
1540
+ #: templates/debug/logger.php:25
1541
+ msgid "File"
1542
+ msgstr "File"
1543
 
1544
+ #: templates/debug.php471, templates/debug.php497,
1545
+ #: templates/debug/logger.php:23
1546
+ msgid "Function"
1547
+ msgstr "Function"
1548
 
1549
+ #: templates/debug.php:472
1550
+ msgid "Process ID"
1551
+ msgstr "Process ID"
1552
 
1553
+ #: templates/debug.php:473
1554
+ msgid "Logger"
1555
+ msgstr "Logger"
1556
 
1557
+ #: templates/debug.php474, templates/debug.php498,
1558
+ #: templates/debug/logger.php:24
1559
+ msgid "Message"
1560
+ msgstr "Message"
1561
 
1562
+ #: templates/debug.php:476
1563
+ msgid "Filter"
1564
+ msgstr "Filter"
1565
 
1566
+ #: templates/debug.php:484
1567
+ msgid "Download"
1568
+ msgstr "Download"
1569
 
1570
+ #: templates/debug.php495, templates/debug/logger.php:22
1571
+ msgid "Type"
1572
+ msgstr "Type"
1573
 
1574
+ #: templates/debug.php500, templates/debug/logger.php:26
1575
+ msgid "Timestamp"
1576
+ msgstr "Timestamp"
1577
 
1578
+ #: templates/secure-https-header.php:28
1579
+ msgid "Secure HTTPS %s page, running from an external domain"
1580
+ msgstr "Secure HTTPS %s page, running from an external domain"
1581
 
1582
+ #: includes/customizer/class-fs-customizer-support-section.php55,
1583
+ #: templates/plugin-info/features.php:43
1584
+ msgid "Support"
1585
+ msgstr "サポート"
1586
 
1587
+ #: includes/debug/class-fs-debug-bar-panel.php48,
1588
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
1589
+ msgctxt "milliseconds"
1590
+ msgid "ms"
1591
+ msgstr "ms"
1592
 
1593
+ #: includes/debug/debug-bar-start.php:41
1594
+ msgid "Freemius API"
1595
+ msgstr "Freemius API"
1596
 
1597
+ #: includes/debug/debug-bar-start.php:42
1598
+ msgid "Requests"
1599
+ msgstr "Requests"
1600
 
1601
+ #: templates/account/billing.php:28
1602
+ msgctxt "verb"
1603
+ msgid "Update"
1604
+ msgstr "更新"
1605
+
1606
+ #: templates/account/billing.php:39
1607
+ msgid "Billing"
1608
+ msgstr "請求書"
1609
 
1610
+ #: templates/account/billing.php44, templates/account/billing.php:44
1611
+ msgid "Business name"
1612
+ msgstr "商号"
1613
 
1614
+ #: templates/account/billing.php45, templates/account/billing.php:45
1615
+ msgid "Tax / VAT ID"
1616
+ msgstr "税金 / VAT ID"
1617
 
1618
+ #: templates/account/billing.php48, templates/account/billing.php48,
1619
+ #: templates/account/billing.php49, templates/account/billing.php:49
1620
+ msgid "Address Line %d"
1621
+ msgstr "住所欄 %d"
1622
 
1623
+ #: templates/account/billing.php52, templates/account/billing.php:52
1624
+ msgid "City"
1625
+ msgstr ""
1626
 
1627
+ #: templates/account/billing.php52, templates/account/billing.php:52
1628
+ msgid "Town"
1629
+ msgstr ""
 
1630
 
1631
+ #: templates/account/billing.php53, templates/account/billing.php:53
1632
+ msgid "ZIP / Postal Code"
1633
+ msgstr "ZIP / 郵便番号"
1634
 
1635
+ #: templates/account/billing.php:308
1636
+ msgid "Country"
1637
+ msgstr ""
1638
 
1639
+ #: templates/account/billing.php:310
1640
+ msgid "Select Country"
1641
+ msgstr "国を選択"
1642
 
1643
+ #: templates/account/billing.php317, templates/account/billing.php:318
1644
+ msgid "State"
1645
+ msgstr ""
1646
 
1647
+ #: templates/account/billing.php317, templates/account/billing.php:318
1648
+ msgid "Province"
1649
+ msgstr "県・州・省"
1650
 
1651
+ #: templates/account/payments.php:29
1652
+ msgid "Payments"
1653
+ msgstr "支払い"
1654
 
1655
+ #: templates/account/payments.php:36
1656
+ msgid "Date"
1657
+ msgstr "日付"
1658
 
1659
+ #: templates/account/payments.php:37
1660
+ msgid "Amount"
1661
+ msgstr "総額"
1662
 
1663
+ #: templates/account/payments.php38, templates/account/payments.php:50
1664
+ msgid "Invoice"
1665
+ msgstr "請求書"
1666
 
1667
+ #: templates/debug/api-calls.php:56
1668
+ msgid "API"
1669
+ msgstr "API"
1670
 
1671
+ #: templates/debug/api-calls.php:68
1672
+ msgid "Method"
1673
+ msgstr "Method"
1674
 
1675
+ #: templates/debug/api-calls.php:69
1676
+ msgid "Code"
1677
+ msgstr "Code"
1678
 
1679
+ #: templates/debug/api-calls.php:70
1680
+ msgid "Length"
1681
+ msgstr "Length"
1682
 
1683
+ #: templates/debug/api-calls.php:71
1684
+ msgctxt "as file/folder path"
1685
+ msgid "Path"
1686
+ msgstr "パス"
1687
 
1688
+ #: templates/debug/api-calls.php:73
1689
+ msgid "Body"
1690
+ msgstr "Body"
1691
 
1692
+ #: templates/debug/api-calls.php:75
1693
+ msgid "Result"
1694
+ msgstr "Result"
1695
 
1696
+ #: templates/debug/api-calls.php:76
1697
+ msgid "Start"
1698
+ msgstr "Start"
 
1699
 
1700
+ #: templates/debug/api-calls.php:77
1701
+ msgid "End"
1702
+ msgstr "End"
1703
 
1704
+ #: templates/debug/logger.php:15
1705
+ msgid "Log"
1706
+ msgstr "Log"
1707
 
1708
+ #. translators: %s: time period (e.g. In "2 hours")
1709
+ #: templates/debug/plugins-themes-sync.php18,
1710
+ #: templates/debug/scheduled-crons.php:92
1711
+ msgid "In %s"
1712
+ msgstr "%s 内"
1713
 
1714
+ #. translators: %s: time period (e.g. "2 hours" ago)
1715
+ #: templates/debug/plugins-themes-sync.php20,
1716
+ #: templates/debug/scheduled-crons.php:94
1717
+ msgid "%s ago"
1718
+ msgstr "%s 前"
1719
 
1720
+ #: templates/debug/plugins-themes-sync.php21,
1721
+ #: templates/debug/scheduled-crons.php:75
1722
+ msgctxt "seconds"
1723
+ msgid "sec"
1724
+ msgstr "sec"
1725
 
1726
+ #: templates/debug/plugins-themes-sync.php:23
1727
+ msgid "Plugins & Themes Sync"
1728
+ msgstr "プラグインとテーマを同期"
 
1729
 
1730
+ #: templates/debug/plugins-themes-sync.php:28
1731
+ msgid "Total"
1732
+ msgstr "Total"
 
1733
 
1734
+ #: templates/debug/plugins-themes-sync.php29,
1735
+ #: templates/debug/scheduled-crons.php:85
1736
+ msgid "Last"
1737
+ msgstr "Last"
1738
 
1739
+ #: templates/debug/scheduled-crons.php:77
1740
+ msgid "Scheduled Crons"
1741
+ msgstr "スケジュール Cron"
1742
 
1743
+ #: templates/debug/scheduled-crons.php:82
1744
+ msgid "Module"
1745
+ msgstr "Module"
1746
 
1747
+ #: templates/debug/scheduled-crons.php:83
1748
+ msgid "Module Type"
1749
+ msgstr "Module Type"
1750
 
1751
+ #: templates/debug/scheduled-crons.php:84
1752
+ msgid "Cron Type"
1753
+ msgstr "Cron Type"
1754
 
1755
+ #: templates/debug/scheduled-crons.php:86
1756
+ msgid "Next"
1757
+ msgstr "Next"
 
1758
 
1759
+ #: templates/forms/affiliation.php:81
1760
+ msgid "Non-expiring"
1761
+ msgstr "Non-expiring"
 
1762
 
1763
+ #: templates/forms/affiliation.php:84
1764
+ msgid "Apply to become an affiliate"
1765
+ msgstr "Apply to become an affiliate"
 
1766
 
1767
+ #: templates/forms/affiliation.php:103
1768
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1769
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
 
1770
 
1771
+ #: templates/forms/affiliation.php:114
1772
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
1773
+ msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
 
1774
 
1775
+ #: templates/forms/affiliation.php:117
1776
+ msgid "Your affiliation account was temporarily suspended."
1777
+ msgstr "Your affiliation account was temporarily suspended."
 
1778
 
1779
+ #: templates/forms/affiliation.php:120
1780
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1781
+ msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1782
 
1783
+ #: templates/forms/affiliation.php:123
1784
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1785
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
 
1786
 
1787
+ #: templates/forms/affiliation.php:136
1788
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
1789
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
 
1790
 
1791
+ #: templates/forms/affiliation.php:137
1792
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1793
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
 
1794
 
1795
+ #: templates/forms/affiliation.php:140
1796
+ msgid "Program Summary"
1797
+ msgstr "Program Summary"
1798
 
1799
+ #: templates/forms/affiliation.php:142
1800
+ msgid "%s commission when a customer purchases a new license."
1801
+ msgstr "%s commission when a customer purchases a new license."
 
1802
 
1803
+ #: templates/forms/affiliation.php:144
1804
+ msgid "Get commission for automated subscription renewals."
1805
+ msgstr "Get commission for automated subscription renewals."
1806
 
1807
+ #: templates/forms/affiliation.php:147
1808
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
1809
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
1810
 
1811
+ #: templates/forms/affiliation.php:150
1812
+ msgid "Unlimited commissions."
1813
+ msgstr "Unlimited commissions."
1814
 
1815
+ #: templates/forms/affiliation.php:152
1816
+ msgid "%s minimum payout amount."
1817
+ msgstr "%s minimum payout amount."
1818
 
1819
+ #: templates/forms/affiliation.php:153
1820
+ msgid "Payouts are in USD and processed monthly via PayPal."
1821
+ msgstr "Payouts are in USD and processed monthly via PayPal."
1822
 
1823
+ #: templates/forms/affiliation.php:154
1824
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1825
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1826
 
1827
+ #: templates/forms/affiliation.php:157
1828
+ msgid "Affiliate"
1829
+ msgstr "Affiliate"
1830
 
1831
+ #: templates/forms/affiliation.php160, templates/forms/resend-key.php:23
1832
+ msgid "Email address"
1833
+ msgstr "メールアドレス"
1834
 
1835
+ #: templates/forms/affiliation.php:164
1836
+ msgid "Full name"
1837
+ msgstr "Full name"
1838
 
1839
+ #: templates/forms/affiliation.php:168
1840
+ msgid "PayPal account email address"
1841
+ msgstr "PayPal account email address"
1842
 
1843
+ #: templates/forms/affiliation.php:172
1844
+ msgid "Where are you going to promote the %s?"
1845
+ msgstr "Where are you going to promote the %s?"
1846
 
1847
+ #: templates/forms/affiliation.php:174
1848
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
1849
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
1850
 
1851
+ #: templates/forms/affiliation.php:176
1852
+ msgid "Add another domain"
1853
+ msgstr "Add another domain"
1854
 
1855
+ #: templates/forms/affiliation.php:180
1856
+ msgid "Extra Domains"
1857
+ msgstr "Extra Domains"
1858
 
1859
+ #: templates/forms/affiliation.php:181
1860
+ msgid "Extra domains where you will be marketing the product from."
1861
+ msgstr "Extra domains where you will be marketing the product from."
1862
 
1863
+ #: templates/forms/affiliation.php:191
1864
+ msgid "Promotion methods"
1865
+ msgstr "Promotion methods"
1866
 
1867
+ #: templates/forms/affiliation.php:194
1868
+ msgid "Social media (Facebook, Twitter, etc.)"
1869
+ msgstr "Social media (Facebook, Twitter, etc.)"
1870
 
1871
+ #: templates/forms/affiliation.php:198
1872
+ msgid "Mobile apps"
1873
+ msgstr "Mobile apps"
1874
 
1875
+ #: templates/forms/affiliation.php:202
1876
+ msgid "Website, email, and social media statistics (optional)"
1877
+ msgstr "Website, email, and social media statistics (optional)"
1878
 
1879
+ #: templates/forms/affiliation.php:205
1880
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1881
+ msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1882
 
1883
+ #: templates/forms/affiliation.php:209
1884
+ msgid "How will you promote us?"
1885
+ msgstr "How will you promote us?"
1886
 
1887
+ #: templates/forms/affiliation.php:212
1888
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
1889
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
1890
 
1891
+ #: templates/forms/affiliation.php218, templates/forms/resend-key.php:22
1892
+ msgid "Cancel"
1893
+ msgstr "キャンセル"
1894
 
1895
+ #: templates/forms/affiliation.php:220
1896
+ msgid "Become an affiliate"
1897
+ msgstr "Become an affiliate"
1898
 
1899
+ #: templates/forms/affiliation.php:275
1900
+ msgid "Email address is required."
1901
+ msgstr "Email address is required."
1902
 
1903
+ #: templates/forms/affiliation.php:281
1904
+ msgid "PayPal email address is required."
1905
+ msgstr "PayPal email address is required."
1906
 
1907
+ #: templates/forms/affiliation.php:291
1908
+ msgid "Domain is required."
1909
+ msgstr "Domain is required."
1910
 
1911
+ #: templates/forms/affiliation.php294, templates/forms/affiliation.php:308
1912
+ msgid "Invalid domain"
1913
+ msgstr "Invalid domain"
1914
 
1915
+ #: templates/forms/affiliation.php:364
1916
+ msgid "Processing"
1917
+ msgstr "Processing"
 
1918
 
1919
+ #: templates/forms/license-activation.php:20
1920
+ msgid "Please enter the license key that you received in the email right after the purchase:"
1921
+ msgstr "購入後すぐにメールで受け取ったライセンスキーを入力してください:"
 
1922
 
1923
+ #: templates/forms/license-activation.php:25
1924
+ msgid "Update License"
1925
+ msgstr "ライセンスを更新"
 
1926
 
1927
+ #: templates/forms/optout.php:30
1928
+ msgctxt "verb"
1929
+ msgid "Opt Out"
1930
+ msgstr "オプトアウト"
1931
 
1932
+ #: templates/forms/optout.php:31
1933
+ msgctxt "verb"
1934
+ msgid "Opt In"
1935
+ msgstr "オプトイン"
1936
 
1937
+ #: templates/forms/optout.php:32
1938
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
1939
+ msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
 
1940
 
1941
+ #: templates/forms/optout.php:33
1942
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
1943
+ msgstr "使用の追跡は %s をより良くする名目の下に行われています。ユーザー体験をより良くし、新機能に優先順位をつけるためなどに使います。追跡を続けてもよいと再考してくれるなら本当に感謝致します。"
1944
 
1945
+ #: templates/forms/optout.php:35
1946
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
1947
+ msgstr "\"オプトアウト\"をクリックすることで、もう %s から %s へのデータの送信は行いません。"
1948
 
1949
+ #: templates/forms/resend-key.php:21
1950
+ msgid "Send License Key"
1951
+ msgstr "ライセンスキーを送信"
1952
 
1953
+ #: templates/forms/resend-key.php:57
1954
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
1955
+ msgstr "アップグレードに使用したメールアドレスを下に入力してください。そうすれば、ライセンスキーをお送りします。"
1956
 
1957
+ #: templates/forms/trial-start.php:22
1958
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1959
+ msgstr "%2$s プランの%1$s日間のフリートライアルを開始するまであとワンクリックです。"
1960
 
1961
+ #: templates/forms/trial-start.php:28
1962
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1963
+ msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1964
 
1965
+ #: templates/js/style-premium-theme.php:37
1966
+ msgid "Premium"
1967
+ msgstr "Premium"
1968
 
1969
+ #: templates/plugin-info/description.php72,
1970
+ #: templates/plugin-info/screenshots.php:31
1971
+ msgid "Click to view full-size screenshot %d"
1972
+ msgstr "クリックしてフルサイズのスクリーンショットを見る %d"
1973
 
1974
+ #: templates/plugin-info/features.php:56
1975
+ msgid "Unlimited Updates"
1976
+ msgstr "無制限のアップデート"
1977
 
1978
+ #: templates/forms/deactivation/contact.php:19
1979
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1980
+ msgstr "ご迷惑をおかけしてすいません。もし機会をいただけたらお手伝いをします。"
 
1981
 
1982
+ #: templates/forms/deactivation/contact.php:22
1983
+ msgid "Contact Support"
1984
+ msgstr "サポートに連絡"
1985
 
1986
+ #: templates/forms/deactivation/form.php:56
1987
+ msgid "Anonymous feedback"
1988
+ msgstr "匿名のフィードバック"
1989
 
1990
+ #: templates/forms/deactivation/form.php:63
1991
+ msgid "Deactivate"
1992
+ msgstr "無効化"
1993
 
1994
+ #: templates/forms/deactivation/form.php:65
1995
+ msgid "Activate %s"
1996
+ msgstr "Activate %s"
1997
 
1998
+ #: templates/forms/deactivation/form.php:76
1999
+ msgid "Quick feedback"
2000
+ msgstr "クイックフィードバック"
2001
 
2002
+ #: templates/forms/deactivation/form.php:80
2003
+ msgid "If you have a moment, please let us know why you are %s"
2004
+ msgstr "If you have a moment, please let us know why you are %s"
2005
 
2006
+ #: templates/forms/deactivation/form.php:80
2007
+ msgid "deactivating"
2008
+ msgstr "deactivating"
2009
 
2010
+ #: templates/forms/deactivation/form.php:80
2011
+ msgid "switching"
2012
+ msgstr "switching"
2013
 
2014
+ #: templates/forms/deactivation/form.php:248
2015
+ msgid "Submit & %s"
2016
+ msgstr "Submit & %s"
2017
 
2018
+ #: templates/forms/deactivation/form.php:269
2019
+ msgid "Kindly tell us the reason so we can improve."
2020
+ msgstr "改善できるよう、どうか理由を教えてください。"
2021
 
2022
+ #: templates/forms/deactivation/form.php:390
2023
+ msgid "Yes - %s"
2024
+ msgstr "Yes - %s"
2025
 
2026
+ #: templates/forms/deactivation/form.php:397
2027
+ msgid "Skip & %s"
2028
+ msgstr "Skip & %s"
2029
 
2030
+ #: templates/forms/deactivation/retry-skip.php:21
2031
+ msgid "Click here to use the plugin anonymously"
2032
+ msgstr "匿名でプラグインを使用するにはこちらをクリック"
2033
 
2034
+ #: templates/forms/deactivation/retry-skip.php:23
2035
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2036
+ msgstr "見逃していたかもしれませんが、どんな情報も共有する必要はなく、オプトインを $s することができます。 "
freemius/languages/freemius.pot CHANGED
@@ -10,848 +10,1526 @@ msgstr ""
10
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;fs_text_inline;fs_text_x_inline:1,2c;fs_echo_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPathExcluded-0: *.js\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/class-freemius.php:1816
20
- msgid "freemius-debug"
21
  msgstr ""
22
 
23
- #: includes/class-freemius.php:2601
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
25
  msgstr ""
26
 
27
- #: includes/class-freemius.php:2996
28
  msgctxt "addonX cannot run without pluginY"
29
  msgid "%s cannot run without %s."
30
  msgstr ""
31
 
32
- #: includes/class-freemius.php:2997
33
  msgctxt "addonX cannot run..."
34
  msgid "%s cannot run without the plugin."
35
  msgstr ""
36
 
37
- #: includes/class-freemius.php:3118, includes/class-freemius.php:3143, includes/class-freemius.php:11539
38
  msgid "Unexpected API error. Please contact the %s's author with the following error."
39
  msgstr ""
40
 
41
- #: includes/class-freemius.php:3834
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
43
  msgstr ""
44
 
45
- #: includes/class-freemius.php:3838
46
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
47
  msgstr ""
48
 
49
- #: includes/class-freemius.php:8664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  msgctxt "pluginX activation was successfully..."
51
  msgid "%s activation was successfully completed."
52
  msgstr ""
53
 
54
- #: includes/class-freemius.php:10992
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgctxt "%1s - plugin title, %2s - API domain"
56
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
57
  msgstr ""
58
 
59
- #: includes/class-freemius.php:11006
 
 
 
 
60
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
61
  msgstr ""
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  #: includes/class-freemius.php:12316
 
 
 
 
64
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
65
  msgstr ""
66
 
67
- #: includes/class-freemius.php:12322
68
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
69
  msgstr ""
70
 
71
- #: includes/class-freemius.php:12327
72
  msgid "%s is the new owner of the account."
73
  msgstr ""
74
 
75
- #: includes/class-freemius.php:13489, includes/class-freemius.php:13516, includes/fs-core-functions.php:728, includes/fs-core-functions.php:771, includes/fs-core-functions.php:809, includes/fs-core-functions.php:836, includes/fs-core-functions.php:859, includes/fs-core-functions.php:882, includes/fs-core-functions.php:909, includes/fs-core-functions.php:960
76
- msgid "$text"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  msgstr ""
78
 
79
- #: includes/class-freemius.php:13503, includes/fs-core-functions.php:743, includes/fs-core-functions.php:786, includes/fs-core-functions.php:924, includes/fs-core-functions.php:937
80
- msgctxt "$context"
81
- msgid "$text"
82
  msgstr ""
83
 
84
- #: includes/class-freemius.php:13623
 
 
 
 
 
 
 
 
 
 
 
 
85
  msgid "Auto installation only works for opted-in users."
86
  msgstr ""
87
 
88
- #: includes/class-freemius.php:13633, includes/class-freemius.php:13666, includes/class-fs-plugin-updater.php:490, includes/class-fs-plugin-updater.php:504
89
  msgid "Invalid module ID."
90
  msgstr ""
91
 
92
- #: includes/class-freemius.php:13642, includes/class-fs-plugin-updater.php:524
93
  msgid "Premium version already active."
94
  msgstr ""
95
 
96
- #: includes/class-freemius.php:13649
97
  msgid "You do not have a valid license to access the premium version."
98
  msgstr ""
99
 
100
- #: includes/class-freemius.php:13656
101
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
102
  msgstr ""
103
 
104
- #: includes/class-freemius.php:13674, includes/class-fs-plugin-updater.php:523
105
  msgid "Premium add-on version already installed."
106
  msgstr ""
107
 
108
- #: includes/class-freemius.php:14019
109
  msgid "View paid features"
110
  msgstr ""
111
 
 
 
 
 
112
  #: includes/class-fs-plugin-updater.php:553
113
  msgid "Installing plugin: %s"
114
  msgstr ""
115
 
 
 
 
 
116
  #: includes/class-fs-plugin-updater.php:700
117
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
118
  msgstr ""
119
 
120
- #: includes/fs-plugin-info-dialog.php:328
121
- msgid "purchase"
 
122
  msgstr ""
123
 
124
- #: includes/fs-plugin-info-dialog.php:329
125
- msgid "start-free-x"
126
  msgstr ""
127
 
128
- #: includes/fs-plugin-info-dialog.php:351, templates/account.php:643
129
- msgid "download-latest"
 
130
  msgstr ""
131
 
132
- #: includes/fs-plugin-info-dialog.php:354, templates/account.php:637, templates/auto-installation.php:107
133
- msgid "install-now"
134
  msgstr ""
135
 
136
- #: includes/fs-plugin-info-dialog.php:360
137
- msgid "install-update-now"
138
  msgstr ""
139
 
140
- #: includes/fs-plugin-info-dialog.php:364
141
  msgid "Newer Version (%s) Installed"
142
  msgstr ""
143
 
144
- #: includes/fs-plugin-info-dialog.php:367
145
  msgid "Latest Version Installed"
146
  msgstr ""
147
 
148
- #: includes/fs-plugin-info-dialog.php:480
149
- msgid "description"
 
150
  msgstr ""
151
 
152
- #: includes/fs-plugin-info-dialog.php:481
153
- msgid "installation"
 
154
  msgstr ""
155
 
156
- #: includes/fs-plugin-info-dialog.php:482
157
- msgid "faq"
 
158
  msgstr ""
159
 
160
- #: includes/fs-plugin-info-dialog.php:483
161
- msgid "screenshots"
162
  msgstr ""
163
 
164
- #: includes/fs-plugin-info-dialog.php:484
165
- msgid "changelog"
 
166
  msgstr ""
167
 
168
- #: includes/fs-plugin-info-dialog.php:485
169
- msgid "reviews"
 
170
  msgstr ""
171
 
172
- #: includes/fs-plugin-info-dialog.php:486
173
- msgid "other_notes"
 
174
  msgstr ""
175
 
176
- #: includes/fs-plugin-info-dialog.php:501
177
  msgctxt "Plugin installer section title"
178
  msgid "Features & Pricing"
179
  msgstr ""
180
 
181
- #: includes/fs-plugin-info-dialog.php:511
182
  msgid "Plugin Install"
183
  msgstr ""
184
 
185
- #: includes/fs-plugin-info-dialog.php:583
186
- msgid "x-plan"
 
187
  msgstr ""
188
 
189
- #: includes/fs-plugin-info-dialog.php:608
190
  msgctxt "e.g. the best product"
191
  msgid "Best"
192
  msgstr ""
193
 
194
- #: includes/fs-plugin-info-dialog.php:614, includes/fs-plugin-info-dialog.php:634
195
  msgctxt "as every month"
196
  msgid "Monthly"
197
  msgstr ""
198
 
199
- #: includes/fs-plugin-info-dialog.php:617
200
  msgctxt "as once a year"
201
  msgid "Annual"
202
  msgstr ""
203
 
204
- #: includes/fs-plugin-info-dialog.php:620
205
  msgid "Lifetime"
206
  msgstr ""
207
 
208
- #: includes/fs-plugin-info-dialog.php:634, includes/fs-plugin-info-dialog.php:636, includes/fs-plugin-info-dialog.php:638
209
  msgctxt "e.g. billed monthly"
210
  msgid "Billed %s"
211
  msgstr ""
212
 
213
- #: includes/fs-plugin-info-dialog.php:636
214
  msgctxt "as once a year"
215
  msgid "Annually"
216
  msgstr ""
217
 
218
- #: includes/fs-plugin-info-dialog.php:638
219
  msgctxt "as once a year"
220
  msgid "Once"
221
  msgstr ""
222
 
223
- #: includes/fs-plugin-info-dialog.php:644
224
- msgid "license-single-site"
225
  msgstr ""
226
 
227
- #: includes/fs-plugin-info-dialog.php:646
228
- msgid "license-unlimited"
229
  msgstr ""
230
 
231
- #: includes/fs-plugin-info-dialog.php:648
232
- msgid "license-x-sites"
233
  msgstr ""
234
 
235
- #: includes/fs-plugin-info-dialog.php:658, templates/plugin-info/features.php:82
236
  msgctxt "as monthly period"
237
  msgid "mo"
238
  msgstr ""
239
 
240
- #: includes/fs-plugin-info-dialog.php:665, templates/plugin-info/features.php:80
241
  msgctxt "as annual period"
242
  msgid "year"
243
  msgstr ""
244
 
245
- #: includes/fs-plugin-info-dialog.php:717
246
- msgid "price"
 
247
  msgstr ""
248
 
249
- #: includes/fs-plugin-info-dialog.php:763
250
  msgctxt "as a discount of $5 or 10%"
251
  msgid "Save %s"
252
  msgstr ""
253
 
254
- #: includes/fs-plugin-info-dialog.php:773
255
- msgid "no-commitment-x"
256
  msgstr ""
257
 
258
- #: includes/fs-plugin-info-dialog.php:776
259
- msgid "after-x-pay-as-little-y"
260
  msgstr ""
261
 
262
- #: includes/fs-plugin-info-dialog.php:787
263
- msgid "details"
264
  msgstr ""
265
 
266
- #: includes/fs-plugin-info-dialog.php:790, templates/account.php:204, templates/debug.php:180, templates/debug.php:217, templates/debug.php:345
267
- msgid "version"
 
268
  msgstr ""
269
 
270
- #: includes/fs-plugin-info-dialog.php:796
271
  msgctxt "as the plugin author"
272
  msgid "Author"
273
  msgstr ""
274
 
275
- #: includes/fs-plugin-info-dialog.php:802
276
  msgid "Last Updated"
277
  msgstr ""
278
 
279
- #: includes/fs-plugin-info-dialog.php:804, templates/debug/plugins-themes-sync.php:41, templates/debug/plugins-themes-sync.php:61, templates/debug/scheduled-crons.php:105, templates/debug/scheduled-crons.php:121
280
- msgid "x-ago"
 
281
  msgstr ""
282
 
283
- #: includes/fs-plugin-info-dialog.php:811
284
  msgid "Requires WordPress Version"
285
  msgstr ""
286
 
287
- #: includes/fs-plugin-info-dialog.php:811
288
- msgid "x-or-higher"
289
  msgstr ""
290
 
291
- #: includes/fs-plugin-info-dialog.php:817
292
  msgid "Compatible up to"
293
  msgstr ""
294
 
295
- #: includes/fs-plugin-info-dialog.php:824
296
  msgid "Downloaded"
297
  msgstr ""
298
 
299
- #: includes/fs-plugin-info-dialog.php:825, includes/fs-plugin-info-dialog.php:863, includes/fs-plugin-info-dialog.php:874, templates/account.php:118, templates/account.php:506, templates/account.php:655, templates/connect.php:433, templates/debug.php:211, templates/forms/license-activation.php:23
 
 
 
 
 
300
  msgstr ""
301
 
302
- #: includes/fs-plugin-info-dialog.php:834
303
  msgid "WordPress.org Plugin Page"
304
  msgstr ""
305
 
306
- #: includes/fs-plugin-info-dialog.php:841
307
  msgid "Plugin Homepage"
308
  msgstr ""
309
 
310
- #: includes/fs-plugin-info-dialog.php:848, includes/fs-plugin-info-dialog.php:914
311
  msgid "Donate to this plugin"
312
  msgstr ""
313
 
314
- #: includes/fs-plugin-info-dialog.php:854
315
  msgid "Average Rating"
316
  msgstr ""
317
 
318
- #: includes/fs-plugin-info-dialog.php:861
319
  msgid "based on %s"
320
  msgstr ""
321
 
322
- #: includes/fs-plugin-info-dialog.php:882
323
- msgid "click-to-reviews"
 
 
 
 
 
 
 
 
324
  msgstr ""
325
 
326
- #: includes/fs-plugin-info-dialog.php:893
 
 
 
 
 
 
 
 
327
  msgid "Contributors"
328
  msgstr ""
329
 
330
- #: includes/fs-plugin-info-dialog.php:921, includes/fs-plugin-info-dialog.php:923
331
  msgid "Warning"
332
  msgstr ""
333
 
334
- #: includes/fs-plugin-info-dialog.php:921
335
  msgid "This plugin has not been tested with your current version of WordPress."
336
  msgstr ""
337
 
338
- #: includes/fs-plugin-info-dialog.php:923
339
  msgid "This plugin has not been marked as compatible with your version of WordPress."
340
  msgstr ""
341
 
342
- #: includes/fs-plugin-info-dialog.php:942
343
  msgid "Paid add-on must be deployed to Freemius."
344
  msgstr ""
345
 
346
- #: includes/fs-plugin-info-dialog.php:943
347
  msgid "Add-on must be deployed to WordPress.org or Freemius."
348
  msgstr ""
349
 
350
- #: templates/account.php:55, templates/debug.php:276
351
- msgid "account"
 
 
 
 
352
  msgstr ""
353
 
 
 
 
 
 
 
 
 
 
354
  #: templates/account.php:58
355
- msgid "add-ons"
356
  msgstr ""
357
 
 
358
  #: templates/account.php:61
359
- msgid "upgrade"
360
  msgstr ""
361
 
 
362
  #: templates/account.php:63
363
- msgid "free-trial"
364
  msgstr ""
365
 
366
- #: templates/account.php:74
367
- msgid "account-details"
 
368
  msgstr ""
369
 
370
- #: templates/account.php:84
371
- msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
 
 
 
 
 
 
 
 
 
372
  msgstr ""
373
 
374
- #: templates/account.php:86
375
- msgid "delete-account-confirm"
 
376
  msgstr ""
377
 
378
- #: templates/account.php:89
379
- msgid "delete-account"
380
  msgstr ""
381
 
382
- #: templates/account.php:100
383
- msgid "deactivate-license-confirm"
384
  msgstr ""
385
 
386
- #: templates/account.php:101, templates/account.php:553
387
- msgid "deactivate-license"
 
388
  msgstr ""
389
 
390
- #: templates/account.php:114, templates/account.php:559
391
- msgid "downgrade-x-confirm"
392
  msgstr ""
393
 
394
- #: templates/account.php:115, templates/account.php:564
395
- msgid "after-downgrade-non-blocking"
396
  msgstr ""
397
 
398
- #: templates/account.php:117, templates/account.php:565
399
- msgid "after-downgrade-blocking"
400
  msgstr ""
401
 
402
- #: templates/account.php:118
403
- msgid "proceed-confirmation"
404
  msgstr ""
405
 
406
- #: templates/account.php:126
407
- msgid "change-plan"
408
  msgstr ""
409
 
410
- #: templates/account.php:136, templates/account.php:589
411
- msgid "cancel-trial-confirm"
412
  msgstr ""
413
 
414
- #: templates/account.php:137, templates/account.php:585
415
- msgid "cancel-trial"
416
  msgstr ""
417
 
418
- #: templates/account.php:147
419
- msgid "sync"
420
  msgstr ""
421
 
422
- #: templates/account.php:161, templates/debug.php:380
423
- msgid "name"
424
  msgstr ""
425
 
426
- #: templates/account.php:167, templates/debug.php:381
427
- msgid "email"
 
428
  msgstr ""
429
 
430
- #: templates/account.php:174, templates/debug.php:301, templates/debug.php:410
431
- msgid "user-id"
432
  msgstr ""
433
 
434
- #: templates/account.php:181
435
- msgid "site-id"
436
  msgstr ""
437
 
438
- #: templates/account.php:184
439
- msgid "no-id"
440
  msgstr ""
441
 
442
- #: templates/account.php:189, templates/debug.php:222, templates/debug.php:303, templates/debug.php:346, templates/debug.php:383
443
- msgid "public-key"
444
  msgstr ""
445
 
446
- #: templates/account.php:195, templates/debug.php:304, templates/debug.php:347, templates/debug.php:384
447
- msgid "secret-key"
448
  msgstr ""
449
 
450
- #: templates/account.php:198
451
- msgid "no-secret"
452
  msgstr ""
453
 
454
- #: templates/account.php:214, templates/account.php:222, templates/debug.php:302
455
- msgid "plan"
456
  msgstr ""
457
 
458
- #: templates/account.php:217, templates/account.php:503, templates/add-ons.php:130
459
- msgid "trial"
 
460
  msgstr ""
461
 
462
- #: templates/account.php:225, templates/add-ons.php:126
463
- msgid "free"
464
  msgstr ""
465
 
466
- #: templates/account.php:232
467
  msgid "License Key"
468
  msgstr ""
469
 
470
- #: templates/account.php:271, templates/account.php:276, templates/account.php:528
471
- msgid "expires-in"
472
  msgstr ""
473
 
474
- #: templates/account.php:273, templates/account.php:533
475
- msgid "renews-in"
476
  msgstr ""
477
 
478
- #: templates/account.php:289, templates/account.php:602
479
- msgid "activate-x-plan"
 
480
  msgstr ""
481
 
482
- #: templates/account.php:292
483
- msgid "localhost"
484
  msgstr ""
485
 
486
- #: templates/account.php:296
487
- msgid "x-left"
488
  msgstr ""
489
 
490
- #: templates/account.php:297
491
- msgid "last-license"
492
  msgstr ""
493
 
494
- #: templates/account.php:350
495
- msgid "download-x-version"
496
  msgstr ""
497
 
498
- #: templates/account.php:375
499
- msgid "what-is-your-x"
500
  msgstr ""
501
 
502
- #: templates/account.php:513
503
- msgid "cancelled"
 
504
  msgstr ""
505
 
506
- #: templates/account.php:518
507
- msgid "expired"
508
  msgstr ""
509
 
510
- #: templates/account.php:523
511
- msgid "no-expiration"
 
512
  msgstr ""
513
 
514
- #: templates/account.php:572
515
- msgid "downgrade"
 
516
  msgstr ""
517
 
518
- #: templates/account.php:617
519
- msgid "sync-license"
520
  msgstr ""
521
 
522
- #: templates/account.php:630
523
- msgid "activate"
 
524
  msgstr ""
525
 
526
- #: templates/account.php:653, templates/add-ons.php:99
527
- msgid "more-information-about-x"
528
  msgstr ""
529
 
530
- #: templates/account.php:704, templates/debug.php:327
531
- msgid "delete"
532
  msgstr ""
533
 
534
- #: templates/add-ons.php:36
535
- msgid "add-ons-for-x"
 
 
 
 
 
 
 
 
 
536
  msgstr ""
537
 
538
- #: templates/add-ons.php:43
539
- msgid "oops"
540
  msgstr ""
541
 
542
  #: templates/add-ons.php:44
543
- msgid "add-ons-missing"
544
  msgstr ""
545
 
546
  #: templates/add-ons.php:135
547
  msgid "View details"
548
  msgstr ""
549
 
550
- #: templates/admin-notice.php:39, templates/admin-notice.php:39
551
- msgid "dismiss"
 
552
  msgstr ""
553
 
554
- #: templates/auto-installation.php:31
555
- msgid "addon"
556
  msgstr ""
557
 
558
- #: templates/auto-installation.php:42
559
- msgid "x-sec"
560
- msgstr ""
561
-
562
- #: templates/auto-installation.php:79
563
  msgid "Automatic Installation"
564
  msgstr ""
565
 
566
- #: templates/auto-installation.php:89
567
  msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
568
  msgstr ""
569
 
570
- #: templates/auto-installation.php:100
571
  msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
572
  msgstr ""
573
 
574
- #: templates/auto-installation.php:105
575
  msgid "Cancel Installation"
576
  msgstr ""
577
 
 
 
 
 
578
  #: templates/checkout.php:168
579
  msgid "PCI compliant"
580
  msgstr ""
581
 
582
- #: templates/connect.php:134
583
- msgid "thanks-x"
 
 
 
 
584
  msgstr ""
585
 
586
  #: templates/connect.php:135
587
- msgid "pending-activation-message"
588
  msgstr ""
589
 
590
- #: templates/connect.php:139
591
- msgid "complete-the-install"
592
  msgstr ""
593
 
594
- #: templates/connect.php:145, templates/connect.php:168
595
- msgid "hey-x"
 
596
  msgstr ""
597
 
598
- #: templates/connect.php:146
599
- msgid "thanks-for-purchasing"
600
  msgstr ""
601
 
602
- #: templates/connect.php:170
603
- msgid "$default_optin_message"
604
  msgstr ""
605
 
606
- #: templates/connect.php:187, templates/debug.php:415, templates/forms/license-activation.php:44
607
- msgid "license-key"
608
  msgstr ""
609
 
610
- #: templates/connect.php:190, templates/forms/license-activation.php:19
611
- msgid "cant-find-license-key"
612
  msgstr ""
613
 
614
- #: templates/connect.php:197, templates/forms/deactivation/retry-skip.php:20
615
- msgid "skip"
616
  msgstr ""
617
 
618
- #: templates/connect.php:206, templates/connect.php:217, templates/connect.php:408
619
- msgid "$button_label"
 
620
  msgstr ""
621
 
622
- #: templates/connect.php:282
623
- msgid "what-permissions"
624
  msgstr ""
625
 
626
- #: templates/connect.php:303
627
- msgid "dont-have-license-key"
628
  msgstr ""
629
 
630
- #: templates/connect.php:304
631
- msgid "activate-free-version"
632
  msgstr ""
633
 
634
- #: templates/connect.php:306
635
- msgid "have-license-key"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
636
  msgstr ""
637
 
638
- #: templates/connect.php:307
639
- msgid "activate-license"
640
  msgstr ""
641
 
642
- #: templates/connect.php:314
643
- msgid "privacy-policy"
644
  msgstr ""
645
 
646
  #: templates/connect.php:316
647
- msgid "tos"
648
  msgstr ""
649
 
650
- #: templates/debug.php:17
651
- msgid "Freemius Debug"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  msgstr ""
653
 
654
  #: templates/debug.php:17
655
- msgid "SDK"
 
656
  msgstr ""
657
 
658
- #: templates/debug.php:21
659
- msgid "debugging"
 
660
  msgstr ""
661
 
662
- #: templates/debug.php:25, templates/debug.php:259
663
- msgid "on"
664
  msgstr ""
665
 
666
- #: templates/debug.php:26, templates/debug.php:260
667
- msgid "off"
 
668
  msgstr ""
669
 
670
- #: templates/debug.php:51, templates/debug.php:223, templates/debug.php:305
671
- msgid "actions"
672
  msgstr ""
673
 
674
- #: templates/debug.php:61
675
- msgid "delete-all-confirm"
676
  msgstr ""
677
 
678
- #: templates/debug.php:61
679
- msgid "delete-all-accounts"
680
  msgstr ""
681
 
682
- #: templates/debug.php:68
683
- msgid "clear-api-cache"
684
  msgstr ""
685
 
686
- #: templates/debug.php:75
687
- msgid "sync-data-from-server"
688
  msgstr ""
689
 
690
- #: templates/debug.php:79
691
  msgid "Load DB Option"
692
  msgstr ""
693
 
694
- #: templates/debug.php:82
695
  msgid "Set DB Option"
696
  msgstr ""
697
 
698
- #: templates/debug.php:159
699
- msgid "key"
700
  msgstr ""
701
 
702
- #: templates/debug.php:160
703
- msgid "value"
704
  msgstr ""
705
 
706
- #: templates/debug.php:176
707
- msgid "sdk-versions"
 
708
  msgstr ""
709
 
710
- #: templates/debug.php:181
711
- msgid "sdk-path"
712
  msgstr ""
713
 
714
- #: templates/debug.php:182, templates/debug.php:221
715
- msgid "plugin-path"
716
  msgstr ""
717
 
718
- #: templates/debug.php:183
719
- msgid "is-active"
720
  msgstr ""
721
 
722
- #: templates/debug.php:215, templates/debug.php:299, templates/debug.php:342, templates/debug.php:379, templates/debug.php:408, templates/debug.php:487, templates/account/payments.php:35, templates/debug/logger.php:21
723
- msgid "id"
724
  msgstr ""
725
 
726
- #: templates/debug.php:216, templates/debug.php:300, templates/debug.php:344, templates/debug/scheduled-crons.php:79
727
- msgid "slug"
728
  msgstr ""
729
 
730
- #: templates/debug.php:218, templates/debug.php:343
731
- msgid "title"
732
  msgstr ""
733
 
734
- #: templates/debug.php:219
735
- msgid "api"
 
 
 
 
 
736
  msgstr ""
737
 
738
- #: templates/debug.php:220
739
- msgid "freemius-state"
740
  msgstr ""
741
 
742
- #: templates/debug.php:252
743
- msgid "connected"
 
744
  msgstr ""
745
 
746
- #: templates/debug.php:253
747
- msgid "blocked"
 
748
  msgstr ""
749
 
750
- #: templates/debug.php:272
751
  msgid "Simulate Trial"
752
  msgstr ""
753
 
754
- #: templates/debug.php:295
755
- msgid "module-installs"
756
  msgstr ""
757
 
758
- #: templates/debug.php:295, templates/debug.php:404
759
- msgid "$module_type"
 
760
  msgstr ""
761
 
762
- #: templates/debug.php:295
763
- msgid "sites"
764
  msgstr ""
765
 
766
- #: templates/debug.php:338
767
- msgid "addons-of-x"
768
  msgstr ""
769
 
770
- #: templates/debug.php:375
771
- msgid "users"
772
  msgstr ""
773
 
774
- #: templates/debug.php:382
775
- msgid "verified"
776
  msgstr ""
777
 
778
- #: templates/debug.php:404
779
- msgid "module-licenses"
780
  msgstr ""
781
 
782
- #: templates/debug.php:409
783
- msgid "plugin-id"
784
  msgstr ""
785
 
786
- #: templates/debug.php:411
787
- msgid "plan-id"
788
  msgstr ""
789
 
790
- #: templates/debug.php:412
791
- msgid "quota"
792
  msgstr ""
793
 
794
- #: templates/debug.php:413
795
- msgid "activated"
 
 
 
 
 
796
  msgstr ""
797
 
798
- #: templates/debug.php:414
799
- msgid "blocking"
800
  msgstr ""
801
 
802
- #: templates/debug.php:416
803
- msgid "expiration"
804
  msgstr ""
805
 
806
- #: templates/debug.php:445
807
- msgid "debug-log"
808
  msgstr ""
809
 
810
- #: templates/debug.php:449
811
- msgid "all-types"
812
  msgstr ""
813
 
814
- #: templates/debug.php:456
815
- msgid "all-requests"
816
  msgstr ""
817
 
818
- #: templates/debug.php:461, templates/debug.php:490, templates/debug/logger.php:25
819
- msgid "file"
820
  msgstr ""
821
 
822
- #: templates/debug.php:462, templates/debug.php:488, templates/debug/logger.php:23
823
- msgid "function"
824
  msgstr ""
825
 
826
- #: templates/debug.php:463
827
- msgid "process-id"
828
  msgstr ""
829
 
830
- #: templates/debug.php:464
831
- msgid "logger"
832
  msgstr ""
833
 
834
- #: templates/debug.php:465, templates/debug.php:489, templates/debug/logger.php:24
835
- msgid "message"
836
  msgstr ""
837
 
838
- #: templates/debug.php:467
839
- msgid "filter"
840
  msgstr ""
841
 
842
- #: templates/debug.php:475
843
- msgid "download"
844
  msgstr ""
845
 
846
- #: templates/debug.php:486, templates/debug/logger.php:22
847
- msgid "type"
848
  msgstr ""
849
 
850
- #: templates/debug.php:491, templates/debug/logger.php:26
851
- msgid "timestamp"
852
  msgstr ""
853
 
854
- #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:84, templates/debug/api-calls.php:148, templates/debug/api-calls.php:149, templates/debug/logger.php:62
 
855
  msgid "ms"
856
  msgstr ""
857
 
@@ -863,107 +1541,105 @@ msgstr ""
863
  msgid "Requests"
864
  msgstr ""
865
 
866
- #: templates/account/billing.php:36
867
- msgid "billing"
 
 
 
 
 
868
  msgstr ""
869
 
870
- #: templates/account/billing.php:41, templates/account/billing.php:41
871
  msgid "Business name"
872
  msgstr ""
873
 
874
- #: templates/account/billing.php:42, templates/account/billing.php:42
875
  msgid "Tax / VAT ID"
876
  msgstr ""
877
 
878
- #: templates/account/billing.php:45, templates/account/billing.php:45, templates/account/billing.php:46, templates/account/billing.php:46
879
  msgid "Address Line %d"
880
  msgstr ""
881
 
882
- #: templates/account/billing.php:49, templates/account/billing.php:49
883
  msgid "City"
884
  msgstr ""
885
 
886
- #: templates/account/billing.php:49, templates/account/billing.php:49
887
  msgid "Town"
888
  msgstr ""
889
 
890
- #: templates/account/billing.php:50, templates/account/billing.php:50
891
  msgid "ZIP / Postal Code"
892
  msgstr ""
893
 
894
- #: templates/account/billing.php:305
895
  msgid "Country"
896
  msgstr ""
897
 
898
- #: templates/account/billing.php:307
899
  msgid "Select Country"
900
  msgstr ""
901
 
902
- #: templates/account/billing.php:314, templates/account/billing.php:315
903
  msgid "State"
904
  msgstr ""
905
 
906
- #: templates/account/billing.php:314, templates/account/billing.php:315
907
  msgid "Province"
908
  msgstr ""
909
 
910
- #: templates/account/billing.php:321, templates/account/billing.php:362, templates/account/billing.php:421
911
- msgid "edit"
912
- msgstr ""
913
-
914
- #: templates/account/billing.php:322, templates/account/billing.php:362, templates/account/billing.php:413
915
- msgid "update"
916
- msgstr ""
917
-
918
  #: templates/account/payments.php:29
919
- msgid "payments"
920
  msgstr ""
921
 
922
  #: templates/account/payments.php:36
923
- msgid "date"
924
  msgstr ""
925
 
926
  #: templates/account/payments.php:37
927
- msgid "amount"
928
  msgstr ""
929
 
930
  #: templates/account/payments.php:38, templates/account/payments.php:50
931
- msgid "invoice"
932
  msgstr ""
933
 
934
- #: templates/debug/api-calls.php:54
935
  msgid "API"
936
  msgstr ""
937
 
938
- #: templates/debug/api-calls.php:66
939
  msgid "Method"
940
  msgstr ""
941
 
942
- #: templates/debug/api-calls.php:67
943
  msgid "Code"
944
  msgstr ""
945
 
946
- #: templates/debug/api-calls.php:68
947
  msgid "Length"
948
  msgstr ""
949
 
950
- #: templates/debug/api-calls.php:69
 
951
  msgid "Path"
952
  msgstr ""
953
 
954
- #: templates/debug/api-calls.php:71
955
  msgid "Body"
956
  msgstr ""
957
 
958
- #: templates/debug/api-calls.php:73
959
  msgid "Result"
960
  msgstr ""
961
 
962
- #: templates/debug/api-calls.php:74
963
  msgid "Start"
964
  msgstr ""
965
 
966
- #: templates/debug/api-calls.php:75
967
  msgid "End"
968
  msgstr ""
969
 
@@ -971,306 +1647,327 @@ msgstr ""
971
  msgid "Log"
972
  msgstr ""
973
 
974
- #: templates/debug/plugins-themes-sync.php:17
975
- msgid "plugins-themes-sync"
976
- msgstr ""
977
-
978
- #: templates/debug/plugins-themes-sync.php:22
979
- msgid "total"
980
- msgstr ""
981
-
982
- #: templates/debug/plugins-themes-sync.php:23, templates/debug/scheduled-crons.php:83
983
- msgid "Last"
984
  msgstr ""
985
 
986
- #: templates/debug/plugins-themes-sync.php:29
987
- msgid "plugins"
 
988
  msgstr ""
989
 
990
- #: templates/debug/plugins-themes-sync.php:35, templates/debug/plugins-themes-sync.php:55, templates/debug/scheduled-crons.php:99, templates/debug/scheduled-crons.php:115
 
991
  msgid "sec"
992
  msgstr ""
993
 
994
- #: templates/debug/plugins-themes-sync.php:39, templates/debug/plugins-themes-sync.php:59, templates/debug/scheduled-crons.php:103, templates/debug/scheduled-crons.php:119
995
- msgid "in-x"
996
  msgstr ""
997
 
998
- #: templates/debug/plugins-themes-sync.php:49
999
- msgid "themes"
1000
  msgstr ""
1001
 
1002
- #: templates/debug/scheduled-crons.php:75
1003
- msgid "scheduled-crons"
1004
  msgstr ""
1005
 
1006
- #: templates/debug/scheduled-crons.php:80
1007
- msgid "module"
1008
  msgstr ""
1009
 
1010
- #: templates/debug/scheduled-crons.php:81
1011
- msgid "module-type"
1012
  msgstr ""
1013
 
1014
- #: templates/debug/scheduled-crons.php:82
1015
- msgid "cron-type"
1016
  msgstr ""
1017
 
1018
  #: templates/debug/scheduled-crons.php:84
 
 
 
 
1019
  msgid "Next"
1020
  msgstr ""
1021
 
1022
  #: templates/forms/affiliation.php:81
1023
- msgid "non-expiring"
1024
  msgstr ""
1025
 
1026
- #: templates/forms/affiliation.php:101
1027
- msgid "affiliate-application-accepted"
1028
  msgstr ""
1029
 
1030
- #: templates/forms/affiliation.php:124
1031
- msgid "$text_key"
1032
  msgstr ""
1033
 
1034
- #: templates/forms/affiliation.php:132
1035
- msgid "become-an-ambassador"
1036
  msgstr ""
1037
 
1038
- #: templates/forms/affiliation.php:133
1039
- msgid "refer-new-customers"
 
 
 
 
 
 
 
 
1040
  msgstr ""
1041
 
1042
  #: templates/forms/affiliation.php:136
1043
- msgid "program-summary"
1044
  msgstr ""
1045
 
1046
- #: templates/forms/affiliation.php:138
1047
- msgid "commission-on-new-license-purchase"
1048
  msgstr ""
1049
 
1050
  #: templates/forms/affiliation.php:140
1051
- msgid "renewals-commission"
1052
  msgstr ""
1053
 
1054
- #: templates/forms/affiliation.php:143
1055
- msgid "affiliate-tracking"
1056
  msgstr ""
1057
 
1058
- #: templates/forms/affiliation.php:146
1059
- msgid "unlimited-commissions"
1060
  msgstr ""
1061
 
1062
- #: templates/forms/affiliation.php:148
1063
- msgid "minimum-payout-amount"
1064
  msgstr ""
1065
 
1066
- #: templates/forms/affiliation.php:149
1067
- msgid "payouts-unit-and-processing"
1068
  msgstr ""
1069
 
1070
- #: templates/forms/affiliation.php:150
1071
- msgid "commission-payment"
1072
  msgstr ""
1073
 
1074
  #: templates/forms/affiliation.php:153
1075
- msgid "affiliate"
1076
  msgstr ""
1077
 
1078
- #: templates/forms/affiliation.php:156
1079
- msgid "email-address"
1080
  msgstr ""
1081
 
1082
- #: templates/forms/affiliation.php:160
1083
- msgid "full-name"
 
 
 
 
1084
  msgstr ""
1085
 
1086
  #: templates/forms/affiliation.php:164
1087
- msgid "paypal-account-email-address"
1088
  msgstr ""
1089
 
1090
  #: templates/forms/affiliation.php:168
1091
- msgid "domain-field-label"
1092
  msgstr ""
1093
 
1094
- #: templates/forms/affiliation.php:170
1095
- msgid "domain-field-desc"
1096
  msgstr ""
1097
 
1098
- #: templates/forms/affiliation.php:172
1099
- msgid "add-another-domain"
1100
  msgstr ""
1101
 
1102
  #: templates/forms/affiliation.php:176
1103
- msgid "extra-domain-fields-label"
1104
  msgstr ""
1105
 
1106
- #: templates/forms/affiliation.php:177
1107
- msgid "extra-domain-fields-desc"
1108
  msgstr ""
1109
 
1110
- #: templates/forms/affiliation.php:187
1111
- msgid "promotion-methods"
1112
  msgstr ""
1113
 
1114
- #: templates/forms/affiliation.php:190
1115
- msgid "social-media"
1116
  msgstr ""
1117
 
1118
  #: templates/forms/affiliation.php:194
1119
- msgid "mobile-apps"
1120
  msgstr ""
1121
 
1122
  #: templates/forms/affiliation.php:198
1123
- msgid "statistics-information-field-label"
1124
  msgstr ""
1125
 
1126
- #: templates/forms/affiliation.php:201
1127
- msgid "statistics-information-field-desc"
1128
  msgstr ""
1129
 
1130
  #: templates/forms/affiliation.php:205
1131
- msgid "promotion-method-desc-field-label"
1132
  msgstr ""
1133
 
1134
- #: templates/forms/affiliation.php:208
1135
- msgid "promotion-method-desc-field-desc"
1136
  msgstr ""
1137
 
1138
- #: templates/forms/affiliation.php:214, templates/forms/resend-key.php:22, templates/forms/deactivation/form.php:80
1139
- msgid "cancel"
1140
  msgstr ""
1141
 
1142
- #: templates/forms/affiliation.php:215, templates/forms/affiliation.php:371
1143
- msgid "apply-to-become-an-affiliate"
1144
  msgstr ""
1145
 
1146
- #: templates/forms/affiliation.php:216
1147
- msgid "become-an-affiliate"
1148
  msgstr ""
1149
 
1150
- #: templates/forms/affiliation.php:272
1151
- msgid "email-address-is-required"
1152
  msgstr ""
1153
 
1154
- #: templates/forms/affiliation.php:278
1155
- msgid "paypal-email-address-is-required"
1156
  msgstr ""
1157
 
1158
- #: templates/forms/affiliation.php:288
1159
- msgid "domain-is-required"
1160
  msgstr ""
1161
 
1162
- #: templates/forms/affiliation.php:291, templates/forms/affiliation.php:305
1163
- msgid "invalid-domain"
1164
  msgstr ""
1165
 
1166
- #: templates/forms/affiliation.php:361
1167
- msgid "processing"
1168
  msgstr ""
1169
 
1170
  #: templates/forms/license-activation.php:20
1171
- msgid "activate-license-message"
1172
  msgstr ""
1173
 
1174
- #: templates/forms/license-activation.php:36
1175
- msgid "license-sync-disclaimer"
1176
- msgstr ""
1177
-
1178
- #: templates/forms/license-activation.php:41
1179
- msgid "agree-activate-license"
1180
  msgstr ""
1181
 
1182
  #: templates/forms/optout.php:30
1183
- msgid "opt-out"
 
1184
  msgstr ""
1185
 
1186
  #: templates/forms/optout.php:31
1187
- msgid "opt-out-message-appreciation"
 
1188
  msgstr ""
1189
 
1190
  #: templates/forms/optout.php:32
1191
- msgid "opt-out-message-usage-tracking"
1192
  msgstr ""
1193
 
1194
- #: templates/forms/optout.php:34
1195
- msgid "opt-out-message-clicking-opt-out"
1196
  msgstr ""
1197
 
1198
- #: templates/forms/resend-key.php:21
1199
- msgid "send-license-key"
1200
  msgstr ""
1201
 
1202
- #: templates/forms/resend-key.php:24
1203
- msgid "reason-other"
1204
  msgstr ""
1205
 
1206
  #: templates/forms/resend-key.php:57
1207
- msgid "ask-for-upgrade-email-address"
1208
  msgstr ""
1209
 
1210
- #: templates/forms/trial-start.php:21
1211
- msgid "start-trial-prompt-header"
1212
  msgstr ""
1213
 
1214
- #: templates/forms/trial-start.php:26
1215
- msgid "start-trial-prompt-message"
1216
  msgstr ""
1217
 
1218
- #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
1219
- msgid "view-full-size-x"
1220
  msgstr ""
1221
 
1222
- #: templates/plugin-info/features.php:43
1223
- msgid "Support"
1224
  msgstr ""
1225
 
1226
  #: templates/plugin-info/features.php:56
1227
- msgid "unlimited-updates"
1228
  msgstr ""
1229
 
1230
- #: templates/forms/deactivation/contact.php:16
1231
- msgid "contact-support-before-deactivation"
1232
  msgstr ""
1233
 
1234
- #: templates/forms/deactivation/contact.php:19
1235
- msgid "contact-support"
1236
  msgstr ""
1237
 
1238
  #: templates/forms/deactivation/form.php:56
1239
- msgid "anonymous-feedback"
 
 
 
 
 
 
 
 
 
 
 
 
1240
  msgstr ""
1241
 
1242
- #: templates/forms/deactivation/form.php:243
1243
- msgid "deactivation-modal-button-submit"
1244
  msgstr ""
1245
 
1246
- #: templates/forms/deactivation/form.php:245, templates/forms/deactivation/form.php:387, templates/forms/deactivation/form.php:394
1247
- msgid "deactivate"
1248
  msgstr ""
1249
 
1250
- #: templates/forms/deactivation/form.php:246, templates/forms/deactivation/form.php:388, templates/forms/deactivation/form.php:395
1251
- msgid "activate-x"
1252
  msgstr ""
1253
 
1254
- #: templates/forms/deactivation/form.php:246, templates/forms/deactivation/form.php:388, templates/forms/deactivation/form.php:395
1255
- msgid "theme"
1256
  msgstr ""
1257
 
1258
- #: templates/forms/deactivation/form.php:264
1259
- msgid "ask-for-reason-message"
1260
  msgstr ""
1261
 
1262
- #: templates/forms/deactivation/form.php:385
1263
- msgid "deactivation-modal-button-confirm"
1264
  msgstr ""
1265
 
1266
- #: templates/forms/deactivation/form.php:392
1267
- msgid "skip-and-x"
1268
  msgstr ""
1269
 
1270
  #: templates/forms/deactivation/retry-skip.php:21
1271
- msgid "click-here-to-use-plugin-anonymously"
1272
  msgstr ""
1273
 
1274
  #: templates/forms/deactivation/retry-skip.php:23
1275
- msgid "dont-have-to-share-any-data"
1276
  msgstr ""
10
  "Last-Translator: Vova Feldman <vova@freemius.com>\n"
11
  "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
12
  "X-Poedit-Basepath: ..\n"
13
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPathExcluded-0: *.js\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
+ #: includes/class-freemius.php:959
20
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
21
  msgstr ""
22
 
23
+ #: includes/class-freemius.php:961
24
+ msgid "Error"
25
+ msgstr ""
26
+
27
+ #: includes/class-freemius.php:1277
28
+ msgid "I found a better %s"
29
+ msgstr ""
30
+
31
+ #: includes/class-freemius.php:1279
32
+ msgid "What's the %s's name?"
33
+ msgstr ""
34
+
35
+ #: includes/class-freemius.php:1285
36
+ msgid "It's a temporary %s. I'm just debugging an issue."
37
+ msgstr ""
38
+
39
+ #: includes/class-freemius.php:1287
40
+ msgid "Deactivation"
41
+ msgstr ""
42
+
43
+ #: includes/class-freemius.php:1288
44
+ msgid "Theme Switch"
45
+ msgstr ""
46
+
47
+ #: includes/class-freemius.php:1297, templates/forms/resend-key.php:24
48
+ msgid "Other"
49
+ msgstr ""
50
+
51
+ #: includes/class-freemius.php:1305
52
+ msgid "I no longer need the %s"
53
+ msgstr ""
54
+
55
+ #: includes/class-freemius.php:1312
56
+ msgid "I only needed the %s for a short period"
57
+ msgstr ""
58
+
59
+ #: includes/class-freemius.php:1318
60
+ msgid "The %s broke my site"
61
+ msgstr ""
62
+
63
+ #: includes/class-freemius.php:1325
64
+ msgid "The %s suddenly stopped working"
65
+ msgstr ""
66
+
67
+ #: includes/class-freemius.php:1335
68
+ msgid "I can't pay for it anymore"
69
+ msgstr ""
70
+
71
+ #: includes/class-freemius.php:1337
72
+ msgid "What price would you feel comfortable paying?"
73
+ msgstr ""
74
+
75
+ #: includes/class-freemius.php:1343
76
+ msgid "I don't like to share my information with you"
77
+ msgstr ""
78
+
79
+ #: includes/class-freemius.php:1364
80
+ msgid "The %s didn't work"
81
+ msgstr ""
82
+
83
+ #: includes/class-freemius.php:1374
84
+ msgid "I couldn't understand how to make it work"
85
+ msgstr ""
86
+
87
+ #: includes/class-freemius.php:1382
88
+ msgid "The %s is great, but I need specific feature that you don't support"
89
+ msgstr ""
90
+
91
+ #: includes/class-freemius.php:1384
92
+ msgid "What feature?"
93
+ msgstr ""
94
+
95
+ #: includes/class-freemius.php:1388
96
+ msgid "The %s is not working"
97
+ msgstr ""
98
+
99
+ #: includes/class-freemius.php:1390
100
+ msgid "Kindly share what didn't work so we can fix it for future users..."
101
+ msgstr ""
102
+
103
+ #: includes/class-freemius.php:1394
104
+ msgid "It's not what I was looking for"
105
+ msgstr ""
106
+
107
+ #: includes/class-freemius.php:1396
108
+ msgid "What you've been looking for?"
109
+ msgstr ""
110
+
111
+ #: includes/class-freemius.php:1400
112
+ msgid "The %s didn't work as expected"
113
+ msgstr ""
114
+
115
+ #: includes/class-freemius.php:1402
116
+ msgid "What did you expect?"
117
+ msgstr ""
118
+
119
+ #: includes/class-freemius.php:1938, templates/debug.php:20
120
+ msgid "Freemius Debug"
121
+ msgstr ""
122
+
123
+ #: includes/class-freemius.php:2508
124
+ msgid "I don't know what is cURL or how to install it, help me!"
125
+ msgstr ""
126
+
127
+ #: includes/class-freemius.php:2510
128
+ msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
129
+ msgstr ""
130
+
131
+ #: includes/class-freemius.php:2517
132
+ msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
133
+ msgstr ""
134
+
135
+ #: includes/class-freemius.php:2619
136
+ msgid "Yes - do your thing"
137
+ msgstr ""
138
+
139
+ #: includes/class-freemius.php:2624
140
+ msgid "No - just deactivate"
141
+ msgstr ""
142
+
143
+ #: includes/class-freemius.php:2669, includes/class-freemius.php:3134, includes/class-freemius.php:3988, includes/class-freemius.php:7270, includes/class-freemius.php:9137, includes/class-freemius.php:9193, includes/class-freemius.php:9254, includes/class-freemius.php:11154, includes/class-freemius.php:11165, includes/class-freemius.php:11614, includes/class-freemius.php:11632, includes/class-freemius.php:11730, includes/class-freemius.php:12405, templates/add-ons.php:43
144
+ msgctxt "exclamation"
145
+ msgid "Oops"
146
+ msgstr ""
147
+
148
+ #: includes/class-freemius.php:2736
149
  msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
150
  msgstr ""
151
 
152
+ #: includes/class-freemius.php:3131
153
  msgctxt "addonX cannot run without pluginY"
154
  msgid "%s cannot run without %s."
155
  msgstr ""
156
 
157
+ #: includes/class-freemius.php:3132
158
  msgctxt "addonX cannot run..."
159
  msgid "%s cannot run without the plugin."
160
  msgstr ""
161
 
162
+ #: includes/class-freemius.php:3253, includes/class-freemius.php:3278, includes/class-freemius.php:11703
163
  msgid "Unexpected API error. Please contact the %s's author with the following error."
164
  msgstr ""
165
 
166
+ #: includes/class-freemius.php:3686
167
+ msgid "Premium %s version was successfully activated."
168
+ msgstr ""
169
+
170
+ #: includes/class-freemius.php:3688, includes/class-freemius.php:4913
171
+ msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
172
+ msgid "W00t"
173
+ msgstr ""
174
+
175
+ #: includes/class-freemius.php:3703
176
+ msgid "You have a %s license."
177
+ msgstr ""
178
+
179
+ #: includes/class-freemius.php:3707, includes/class-freemius.php:8841, includes/class-freemius.php:8850, includes/class-freemius.php:11105, includes/class-freemius.php:11318, includes/class-freemius.php:11380, includes/class-freemius.php:11492
180
+ msgctxt "interjection expressing joy or exuberance"
181
+ msgid "Yee-haw"
182
+ msgstr ""
183
+
184
+ #: includes/class-freemius.php:3971
185
  msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
186
  msgstr ""
187
 
188
+ #: includes/class-freemius.php:3975
189
  msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
190
  msgstr ""
191
 
192
+ #: includes/class-freemius.php:3984, templates/account.php:692, templates/add-ons.php:99
193
+ msgid "More information about %s"
194
+ msgstr ""
195
+
196
+ #: includes/class-freemius.php:3985
197
+ msgid "Purchase License"
198
+ msgstr ""
199
+
200
+ #: includes/class-freemius.php:4422, templates/connect.php:136
201
+ msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
202
+ msgstr ""
203
+
204
+ #: includes/class-freemius.php:4426
205
+ msgid "start the trial"
206
+ msgstr ""
207
+
208
+ #: includes/class-freemius.php:4427, templates/connect.php:140
209
+ msgid "complete the install"
210
+ msgstr ""
211
+
212
+ #: includes/class-freemius.php:4506
213
+ msgid "You are just one step away - %s"
214
+ msgstr ""
215
+
216
+ #: includes/class-freemius.php:4509
217
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
218
+ msgid "Complete \"%s\" Activation Now"
219
+ msgstr ""
220
+
221
+ #: includes/class-freemius.php:4523
222
+ msgid "We made a few tweaks to the %s, %s"
223
+ msgstr ""
224
+
225
+ #: includes/class-freemius.php:4527
226
+ msgid "Opt in to make \"%s\" Better!"
227
+ msgstr ""
228
+
229
+ #: includes/class-freemius.php:4912
230
+ msgid "The upgrade of %s was successfully completed."
231
+ msgstr ""
232
+
233
+ #: includes/class-freemius.php:5997, includes/class-fs-plugin-updater.php:358, includes/class-fs-plugin-updater.php:510, includes/class-fs-plugin-updater.php:516, templates/auto-installation.php:31
234
+ msgid "Add-On"
235
+ msgstr ""
236
+
237
+ #: includes/class-freemius.php:5999, templates/debug.php:303, templates/debug.php:413
238
+ msgid "Plugin"
239
+ msgstr ""
240
+
241
+ #: includes/class-freemius.php:6000, templates/debug.php:303, templates/debug.php:413, templates/forms/deactivation/form.php:64
242
+ msgid "Theme"
243
+ msgstr ""
244
+
245
+ #: includes/class-freemius.php:7257
246
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
247
+ msgstr ""
248
+
249
+ #: includes/class-freemius.php:7259
250
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
251
+ msgstr ""
252
+
253
+ #: includes/class-freemius.php:7468
254
+ msgid "Account is pending activation."
255
+ msgstr ""
256
+
257
+ #: includes/class-freemius.php:8825
258
  msgctxt "pluginX activation was successfully..."
259
  msgid "%s activation was successfully completed."
260
  msgstr ""
261
 
262
+ #: includes/class-freemius.php:8837
263
+ msgid "Your account was successfully activated with the %s plan."
264
+ msgstr ""
265
+
266
+ #: includes/class-freemius.php:8846, includes/class-freemius.php:11376
267
+ msgid "Your trial has been successfully started."
268
+ msgstr ""
269
+
270
+ #: includes/class-freemius.php:9135, includes/class-freemius.php:9191, includes/class-freemius.php:9252
271
+ msgid "Couldn't activate %s."
272
+ msgstr ""
273
+
274
+ #: includes/class-freemius.php:9136, includes/class-freemius.php:9192, includes/class-freemius.php:9253
275
+ msgid "Please contact us with the following message:"
276
+ msgstr ""
277
+
278
+ #: includes/class-freemius.php:9511, includes/class-freemius.php:13334
279
+ msgid "Upgrade"
280
+ msgstr ""
281
+
282
+ #: includes/class-freemius.php:9517
283
+ msgid "Start Trial"
284
+ msgstr ""
285
+
286
+ #: includes/class-freemius.php:9519
287
+ msgid "Pricing"
288
+ msgstr ""
289
+
290
+ #: includes/class-freemius.php:9559, includes/class-freemius.php:9561
291
+ msgid "Affiliation"
292
+ msgstr ""
293
+
294
+ #: includes/class-freemius.php:9581, includes/class-freemius.php:9583, templates/account.php:79, templates/debug.php:281
295
+ msgid "Account"
296
+ msgstr ""
297
+
298
+ #: includes/class-freemius.php:9594, includes/class-freemius.php:9596, includes/customizer/class-fs-customizer-support-section.php:60
299
+ msgid "Contact Us"
300
+ msgstr ""
301
+
302
+ #: includes/class-freemius.php:9606, includes/class-freemius.php:9608, includes/class-freemius.php:13344, templates/account.php:68
303
+ msgid "Add-Ons"
304
+ msgstr ""
305
+
306
+ #: includes/class-freemius.php:9639, templates/pricing.php:92
307
+ msgctxt "noun"
308
+ msgid "Pricing"
309
+ msgstr ""
310
+
311
+ #: includes/class-freemius.php:9819, includes/customizer/class-fs-customizer-support-section.php:67
312
+ msgid "Support Forum"
313
+ msgstr ""
314
+
315
+ #: includes/class-freemius.php:10559
316
+ msgid "Your email has been successfully verified - you are AWESOME!"
317
+ msgstr ""
318
+
319
+ #: includes/class-freemius.php:10560
320
+ msgctxt "a positive response"
321
+ msgid "Right on"
322
+ msgstr ""
323
+
324
+ #: includes/class-freemius.php:11096
325
+ msgid "Your %s Add-on plan was successfully upgraded."
326
+ msgstr ""
327
+
328
+ #: includes/class-freemius.php:11098
329
+ msgid "%s Add-on was successfully purchased."
330
+ msgstr ""
331
+
332
+ #: includes/class-freemius.php:11101
333
+ msgid "Download the latest version"
334
+ msgstr ""
335
+
336
+ #: includes/class-freemius.php:11150
337
  msgctxt "%1s - plugin title, %2s - API domain"
338
  msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
339
  msgstr ""
340
 
341
+ #: includes/class-freemius.php:11153, includes/class-freemius.php:11463, includes/class-freemius.php:11528
342
+ msgid "Error received from the server:"
343
+ msgstr ""
344
+
345
+ #: includes/class-freemius.php:11164
346
  msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
347
  msgstr ""
348
 
349
+ #: includes/class-freemius.php:11281, includes/class-freemius.php:11468, includes/class-freemius.php:11511
350
+ msgctxt "something somebody says when they are thinking about what you have just said."
351
+ msgid "Hmm"
352
+ msgstr ""
353
+
354
+ #: includes/class-freemius.php:11294
355
+ msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
356
+ msgstr ""
357
+
358
+ #: includes/class-freemius.php:11295, templates/account.php:70, templates/add-ons.php:130
359
+ msgctxt "trial period"
360
+ msgid "Trial"
361
+ msgstr ""
362
+
363
+ #: includes/class-freemius.php:11300
364
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
365
+ msgstr ""
366
+
367
+ #: includes/class-freemius.php:11304, includes/class-freemius.php:11358
368
+ msgid "Please contact us here"
369
+ msgstr ""
370
+
371
+ #: includes/class-freemius.php:11314
372
+ msgid "Your plan was successfully upgraded."
373
+ msgstr ""
374
+
375
+ #: includes/class-freemius.php:11331
376
+ msgid "Your plan was successfully changed to %s."
377
+ msgstr ""
378
+
379
+ #: includes/class-freemius.php:11346
380
+ msgid "Your license has expired. You can still continue using the free %s forever."
381
+ msgstr ""
382
+
383
+ #: includes/class-freemius.php:11354
384
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
385
+ msgstr ""
386
+
387
+ #: includes/class-freemius.php:11367
388
+ msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
389
+ msgstr ""
390
+
391
+ #: includes/class-freemius.php:11389
392
+ msgid "Your trial has expired. You can still continue using all our free features."
393
+ msgstr ""
394
+
395
+ #: includes/class-freemius.php:11459
396
+ msgid "It looks like the license could not be activated."
397
+ msgstr ""
398
+
399
+ #: includes/class-freemius.php:11489
400
+ msgid "Your license was successfully activated."
401
+ msgstr ""
402
+
403
+ #: includes/class-freemius.php:11515
404
+ msgid "It looks like your site currently doesn't have an active license."
405
+ msgstr ""
406
+
407
+ #: includes/class-freemius.php:11527
408
+ msgid "It looks like the license deactivation failed."
409
+ msgstr ""
410
+
411
+ #: includes/class-freemius.php:11554
412
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
413
+ msgstr ""
414
+
415
+ #: includes/class-freemius.php:11555
416
+ msgid "O.K"
417
+ msgstr ""
418
+
419
+ #: includes/class-freemius.php:11603
420
+ msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
421
+ msgstr ""
422
+
423
+ #: includes/class-freemius.php:11613
424
+ msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
425
+ msgstr ""
426
+
427
+ #: includes/class-freemius.php:11637
428
+ msgid "You are already running the %s in a trial mode."
429
+ msgstr ""
430
+
431
+ #: includes/class-freemius.php:11648
432
+ msgid "You already utilized a trial before."
433
+ msgstr ""
434
+
435
+ #: includes/class-freemius.php:11662
436
+ msgid "Plan %s do not exist, therefore, can't start a trial."
437
+ msgstr ""
438
+
439
+ #: includes/class-freemius.php:11673
440
+ msgid "Plan %s does not support a trial period."
441
+ msgstr ""
442
+
443
+ #: includes/class-freemius.php:11684
444
+ msgid "None of the %s's plans supports a trial period."
445
+ msgstr ""
446
+
447
+ #: includes/class-freemius.php:11734
448
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
449
+ msgstr ""
450
+
451
+ #: includes/class-freemius.php:11785
452
+ msgid "Your %s free trial was successfully cancelled."
453
+ msgstr ""
454
+
455
+ #: includes/class-freemius.php:11793
456
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
457
+ msgstr ""
458
+
459
+ #: includes/class-freemius.php:12032
460
+ msgid "Version %s was released."
461
+ msgstr ""
462
+
463
+ #: includes/class-freemius.php:12032
464
+ msgid "Please download %s."
465
+ msgstr ""
466
+
467
+ #: includes/class-freemius.php:12039
468
+ msgid "the latest %s version here"
469
+ msgstr ""
470
+
471
+ #: includes/class-freemius.php:12044
472
+ msgid "New"
473
+ msgstr ""
474
+
475
+ #: includes/class-freemius.php:12049
476
+ msgid "Seems like you got the latest release."
477
+ msgstr ""
478
+
479
+ #: includes/class-freemius.php:12050
480
+ msgid "You are all good!"
481
+ msgstr ""
482
+
483
  #: includes/class-freemius.php:12316
484
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
485
+ msgstr ""
486
+
487
+ #: includes/class-freemius.php:12491
488
  msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
489
  msgstr ""
490
 
491
+ #: includes/class-freemius.php:12497
492
  msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
493
  msgstr ""
494
 
495
+ #: includes/class-freemius.php:12502
496
  msgid "%s is the new owner of the account."
497
  msgstr ""
498
 
499
+ #: includes/class-freemius.php:12504
500
+ msgctxt "as congratulations"
501
+ msgid "Congrats"
502
+ msgstr ""
503
+
504
+ #: includes/class-freemius.php:12524
505
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
506
+ msgstr ""
507
+
508
+ #: includes/class-freemius.php:12525
509
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
510
+ msgstr ""
511
+
512
+ #: includes/class-freemius.php:12532
513
+ msgid "Change Ownership"
514
+ msgstr ""
515
+
516
+ #: includes/class-freemius.php:12540
517
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
518
+ msgstr ""
519
+
520
+ #: includes/class-freemius.php:12552
521
+ msgid "Please provide your full name."
522
+ msgstr ""
523
+
524
+ #: includes/class-freemius.php:12557
525
+ msgid "Your name was successfully updated."
526
+ msgstr ""
527
+
528
+ #: includes/class-freemius.php:12618
529
+ msgid "You have successfully updated your %s."
530
+ msgstr ""
531
+
532
+ #: includes/class-freemius.php:12756
533
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
534
+ msgstr ""
535
+
536
+ #: includes/class-freemius.php:12757
537
+ msgctxt "advance notice of something that will need attention."
538
+ msgid "Heads up"
539
+ msgstr ""
540
+
541
+ #: includes/class-freemius.php:13075
542
+ msgid "Awesome"
543
+ msgstr ""
544
+
545
+ #: includes/class-freemius.php:13115
546
+ msgctxt "exclamation"
547
+ msgid "Hey"
548
+ msgstr ""
549
+
550
+ #: includes/class-freemius.php:13115
551
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
552
+ msgstr ""
553
+
554
+ #: includes/class-freemius.php:13123
555
+ msgid "No commitment for %s days - cancel anytime!"
556
+ msgstr ""
557
+
558
+ #: includes/class-freemius.php:13124
559
+ msgid "No credit card required"
560
+ msgstr ""
561
+
562
+ #: includes/class-freemius.php:13131, templates/forms/trial-start.php:53
563
+ msgctxt "call to action"
564
+ msgid "Start free trial"
565
+ msgstr ""
566
+
567
+ #: includes/class-freemius.php:13208
568
+ msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
569
+ msgstr ""
570
+
571
+ #: includes/class-freemius.php:13217
572
+ msgid "Learn more"
573
+ msgstr ""
574
+
575
+ #: includes/class-freemius.php:13373, templates/account.php:330, templates/connect.php:309, templates/forms/license-activation.php:24
576
+ msgid "Activate License"
577
+ msgstr ""
578
+
579
+ #: includes/class-freemius.php:13374, templates/account.php:393
580
+ msgid "Change License"
581
+ msgstr ""
582
+
583
+ #: includes/class-freemius.php:13435
584
+ msgid "Opt Out"
585
+ msgstr ""
586
+
587
+ #: includes/class-freemius.php:13437, includes/class-freemius.php:13442
588
+ msgid "Opt In"
589
  msgstr ""
590
 
591
+ #: includes/class-freemius.php:13630
592
+ msgid "Please follow these steps to complete the upgrade"
 
593
  msgstr ""
594
 
595
+ #: includes/class-freemius.php:13633
596
+ msgid "Download the latest %s version"
597
+ msgstr ""
598
+
599
+ #: includes/class-freemius.php:13637
600
+ msgid "Upload and activate the downloaded version"
601
+ msgstr ""
602
+
603
+ #: includes/class-freemius.php:13639
604
+ msgid "How to upload and activate?"
605
+ msgstr ""
606
+
607
+ #: includes/class-freemius.php:13798
608
  msgid "Auto installation only works for opted-in users."
609
  msgstr ""
610
 
611
+ #: includes/class-freemius.php:13808, includes/class-freemius.php:13841, includes/class-fs-plugin-updater.php:490, includes/class-fs-plugin-updater.php:504
612
  msgid "Invalid module ID."
613
  msgstr ""
614
 
615
+ #: includes/class-freemius.php:13817, includes/class-fs-plugin-updater.php:524
616
  msgid "Premium version already active."
617
  msgstr ""
618
 
619
+ #: includes/class-freemius.php:13824
620
  msgid "You do not have a valid license to access the premium version."
621
  msgstr ""
622
 
623
+ #: includes/class-freemius.php:13831
624
  msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
625
  msgstr ""
626
 
627
+ #: includes/class-freemius.php:13849, includes/class-fs-plugin-updater.php:523
628
  msgid "Premium add-on version already installed."
629
  msgstr ""
630
 
631
+ #: includes/class-freemius.php:14194
632
  msgid "View paid features"
633
  msgstr ""
634
 
635
+ #: includes/class-fs-plugin-updater.php:131
636
+ msgid "%sRenew your license now%s to access version %s features and support."
637
+ msgstr ""
638
+
639
  #: includes/class-fs-plugin-updater.php:553
640
  msgid "Installing plugin: %s"
641
  msgstr ""
642
 
643
+ #: includes/class-fs-plugin-updater.php:594
644
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
645
+ msgstr ""
646
+
647
  #: includes/class-fs-plugin-updater.php:700
648
  msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
649
  msgstr ""
650
 
651
+ #: includes/fs-plugin-info-dialog.php:328, templates/account.php:696
652
+ msgctxt "verb"
653
+ msgid "Purchase"
654
  msgstr ""
655
 
656
+ #: includes/fs-plugin-info-dialog.php:331
657
+ msgid "Start my free %s"
658
  msgstr ""
659
 
660
+ #: includes/fs-plugin-info-dialog.php:355, templates/account.php:52
661
+ msgctxt "as download latest version"
662
+ msgid "Download Latest"
663
  msgstr ""
664
 
665
+ #: includes/fs-plugin-info-dialog.php:358, templates/account.php:676, templates/account.php:729, templates/auto-installation.php:110
666
+ msgid "Install Now"
667
  msgstr ""
668
 
669
+ #: includes/fs-plugin-info-dialog.php:364, templates/account.php:384
670
+ msgid "Install Update Now"
671
  msgstr ""
672
 
673
+ #: includes/fs-plugin-info-dialog.php:368
674
  msgid "Newer Version (%s) Installed"
675
  msgstr ""
676
 
677
+ #: includes/fs-plugin-info-dialog.php:371
678
  msgid "Latest Version Installed"
679
  msgstr ""
680
 
681
+ #: includes/fs-plugin-info-dialog.php:484
682
+ msgctxt "Plugin installer section title"
683
+ msgid "Description"
684
  msgstr ""
685
 
686
+ #: includes/fs-plugin-info-dialog.php:485
687
+ msgctxt "Plugin installer section title"
688
+ msgid "Installation"
689
  msgstr ""
690
 
691
+ #: includes/fs-plugin-info-dialog.php:486
692
+ msgctxt "Plugin installer section title"
693
+ msgid "FAQ"
694
  msgstr ""
695
 
696
+ #: includes/fs-plugin-info-dialog.php:487, templates/plugin-info/description.php:55
697
+ msgid "Screenshots"
698
  msgstr ""
699
 
700
+ #: includes/fs-plugin-info-dialog.php:488
701
+ msgctxt "Plugin installer section title"
702
+ msgid "Changelog"
703
  msgstr ""
704
 
705
+ #: includes/fs-plugin-info-dialog.php:489
706
+ msgctxt "Plugin installer section title"
707
+ msgid "Reviews"
708
  msgstr ""
709
 
710
+ #: includes/fs-plugin-info-dialog.php:490
711
+ msgctxt "Plugin installer section title"
712
+ msgid "Other Notes"
713
  msgstr ""
714
 
715
+ #: includes/fs-plugin-info-dialog.php:505
716
  msgctxt "Plugin installer section title"
717
  msgid "Features & Pricing"
718
  msgstr ""
719
 
720
+ #: includes/fs-plugin-info-dialog.php:515
721
  msgid "Plugin Install"
722
  msgstr ""
723
 
724
+ #: includes/fs-plugin-info-dialog.php:587
725
+ msgctxt "e.g. Professional Plan"
726
+ msgid "%s Plan"
727
  msgstr ""
728
 
729
+ #: includes/fs-plugin-info-dialog.php:612
730
  msgctxt "e.g. the best product"
731
  msgid "Best"
732
  msgstr ""
733
 
734
+ #: includes/fs-plugin-info-dialog.php:618, includes/fs-plugin-info-dialog.php:638
735
  msgctxt "as every month"
736
  msgid "Monthly"
737
  msgstr ""
738
 
739
+ #: includes/fs-plugin-info-dialog.php:621
740
  msgctxt "as once a year"
741
  msgid "Annual"
742
  msgstr ""
743
 
744
+ #: includes/fs-plugin-info-dialog.php:624
745
  msgid "Lifetime"
746
  msgstr ""
747
 
748
+ #: includes/fs-plugin-info-dialog.php:638, includes/fs-plugin-info-dialog.php:640, includes/fs-plugin-info-dialog.php:642
749
  msgctxt "e.g. billed monthly"
750
  msgid "Billed %s"
751
  msgstr ""
752
 
753
+ #: includes/fs-plugin-info-dialog.php:640
754
  msgctxt "as once a year"
755
  msgid "Annually"
756
  msgstr ""
757
 
758
+ #: includes/fs-plugin-info-dialog.php:642
759
  msgctxt "as once a year"
760
  msgid "Once"
761
  msgstr ""
762
 
763
+ #: includes/fs-plugin-info-dialog.php:648
764
+ msgid "Single Site License"
765
  msgstr ""
766
 
767
+ #: includes/fs-plugin-info-dialog.php:650
768
+ msgid "Unlimited Licenses"
769
  msgstr ""
770
 
771
+ #: includes/fs-plugin-info-dialog.php:652
772
+ msgid "Up to %s Sites"
773
  msgstr ""
774
 
775
+ #: includes/fs-plugin-info-dialog.php:662, templates/plugin-info/features.php:82
776
  msgctxt "as monthly period"
777
  msgid "mo"
778
  msgstr ""
779
 
780
+ #: includes/fs-plugin-info-dialog.php:669, templates/plugin-info/features.php:80
781
  msgctxt "as annual period"
782
  msgid "year"
783
  msgstr ""
784
 
785
+ #: includes/fs-plugin-info-dialog.php:721
786
+ msgctxt "noun"
787
+ msgid "Price"
788
  msgstr ""
789
 
790
+ #: includes/fs-plugin-info-dialog.php:767
791
  msgctxt "as a discount of $5 or 10%"
792
  msgid "Save %s"
793
  msgstr ""
794
 
795
+ #: includes/fs-plugin-info-dialog.php:777
796
+ msgid "No commitment for %s - cancel anytime"
797
  msgstr ""
798
 
799
+ #: includes/fs-plugin-info-dialog.php:780
800
+ msgid "After your free %s, pay as little as %s"
801
  msgstr ""
802
 
803
+ #: includes/fs-plugin-info-dialog.php:791
804
+ msgid "Details"
805
  msgstr ""
806
 
807
+ #: includes/fs-plugin-info-dialog.php:794, templates/account.php:59, templates/debug.php:183, templates/debug.php:220, templates/debug.php:354
808
+ msgctxt "product version"
809
+ msgid "Version"
810
  msgstr ""
811
 
812
+ #: includes/fs-plugin-info-dialog.php:800
813
  msgctxt "as the plugin author"
814
  msgid "Author"
815
  msgstr ""
816
 
817
+ #: includes/fs-plugin-info-dialog.php:806
818
  msgid "Last Updated"
819
  msgstr ""
820
 
821
+ #: includes/fs-plugin-info-dialog.php:810
822
+ msgctxt "x-ago"
823
+ msgid "%s ago"
824
  msgstr ""
825
 
826
+ #: includes/fs-plugin-info-dialog.php:819
827
  msgid "Requires WordPress Version"
828
  msgstr ""
829
 
830
+ #: includes/fs-plugin-info-dialog.php:819
831
+ msgid "%s or higher"
832
  msgstr ""
833
 
834
+ #: includes/fs-plugin-info-dialog.php:825
835
  msgid "Compatible up to"
836
  msgstr ""
837
 
838
+ #: includes/fs-plugin-info-dialog.php:832
839
  msgid "Downloaded"
840
  msgstr ""
841
 
842
+ #: includes/fs-plugin-info-dialog.php:835
843
+ msgid "%s time"
844
+ msgstr ""
845
+
846
+ #: includes/fs-plugin-info-dialog.php:837
847
+ msgid "%s times"
848
  msgstr ""
849
 
850
+ #: includes/fs-plugin-info-dialog.php:847
851
  msgid "WordPress.org Plugin Page"
852
  msgstr ""
853
 
854
+ #: includes/fs-plugin-info-dialog.php:854
855
  msgid "Plugin Homepage"
856
  msgstr ""
857
 
858
+ #: includes/fs-plugin-info-dialog.php:861, includes/fs-plugin-info-dialog.php:941
859
  msgid "Donate to this plugin"
860
  msgstr ""
861
 
862
+ #: includes/fs-plugin-info-dialog.php:867
863
  msgid "Average Rating"
864
  msgstr ""
865
 
866
+ #: includes/fs-plugin-info-dialog.php:874
867
  msgid "based on %s"
868
  msgstr ""
869
 
870
+ #: includes/fs-plugin-info-dialog.php:878
871
+ msgid "%s rating"
872
+ msgstr ""
873
+
874
+ #: includes/fs-plugin-info-dialog.php:880
875
+ msgid "%s ratings"
876
+ msgstr ""
877
+
878
+ #: includes/fs-plugin-info-dialog.php:894
879
+ msgid "%s star"
880
  msgstr ""
881
 
882
+ #: includes/fs-plugin-info-dialog.php:896
883
+ msgid "%s stars"
884
+ msgstr ""
885
+
886
+ #: includes/fs-plugin-info-dialog.php:907
887
+ msgid "Click to see reviews that provided a rating of %s"
888
+ msgstr ""
889
+
890
+ #: includes/fs-plugin-info-dialog.php:920
891
  msgid "Contributors"
892
  msgstr ""
893
 
894
+ #: includes/fs-plugin-info-dialog.php:948, includes/fs-plugin-info-dialog.php:950
895
  msgid "Warning"
896
  msgstr ""
897
 
898
+ #: includes/fs-plugin-info-dialog.php:948
899
  msgid "This plugin has not been tested with your current version of WordPress."
900
  msgstr ""
901
 
902
+ #: includes/fs-plugin-info-dialog.php:950
903
  msgid "This plugin has not been marked as compatible with your version of WordPress."
904
  msgstr ""
905
 
906
+ #: includes/fs-plugin-info-dialog.php:969
907
  msgid "Paid add-on must be deployed to Freemius."
908
  msgstr ""
909
 
910
+ #: includes/fs-plugin-info-dialog.php:970
911
  msgid "Add-on must be deployed to WordPress.org or Freemius."
912
  msgstr ""
913
 
914
+ #: templates/account.php:53
915
+ msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
916
+ msgstr ""
917
+
918
+ #: templates/account.php:54
919
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
920
  msgstr ""
921
 
922
+ #: templates/account.php:55
923
+ msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
924
+ msgstr ""
925
+
926
+ #: templates/account.php:56
927
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
928
+ msgstr ""
929
+
930
+ #. translators: %s: Plan title (e.g. "Professional")
931
  #: templates/account.php:58
932
+ msgid "Activate %s Plan"
933
  msgstr ""
934
 
935
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
936
  #: templates/account.php:61
937
+ msgid "Auto renews in %s"
938
  msgstr ""
939
 
940
+ #. translators: %s: Time period (e.g. Expires in "2 months")
941
  #: templates/account.php:63
942
+ msgid "Expires in %s"
943
  msgstr ""
944
 
945
+ #: templates/account.php:64
946
+ msgctxt "as synchronize license"
947
+ msgid "Sync License"
948
  msgstr ""
949
 
950
+ #: templates/account.php:65
951
+ msgid "Cancel Trial"
952
+ msgstr ""
953
+
954
+ #: templates/account.php:66
955
+ msgid "Change Plan"
956
+ msgstr ""
957
+
958
+ #: templates/account.php:67
959
+ msgctxt "verb"
960
+ msgid "Upgrade"
961
  msgstr ""
962
 
963
+ #: templates/account.php:69
964
+ msgctxt "verb"
965
+ msgid "Downgrade"
966
  msgstr ""
967
 
968
+ #: templates/account.php:71, templates/add-ons.php:126, templates/plugin-info/features.php:72
969
+ msgid "Free"
970
  msgstr ""
971
 
972
+ #: templates/account.php:72
973
+ msgid "Activate"
974
  msgstr ""
975
 
976
+ #: templates/account.php:73, templates/debug.php:311, includes/customizer/class-fs-customizer-upsell-control.php:106
977
+ msgctxt "as product pricing plan"
978
+ msgid "Plan"
979
  msgstr ""
980
 
981
+ #: templates/account.php:87
982
+ msgid "Free Trial"
983
  msgstr ""
984
 
985
+ #: templates/account.php:98
986
+ msgid "Account Details"
987
  msgstr ""
988
 
989
+ #: templates/account.php:108
990
+ msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
991
  msgstr ""
992
 
993
+ #: templates/account.php:110
994
+ msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
995
  msgstr ""
996
 
997
+ #: templates/account.php:113
998
+ msgid "Delete Account"
999
  msgstr ""
1000
 
1001
+ #: templates/account.php:124
1002
+ msgid "Deactivating your license will block all premium features, but will enable you to activate the license on another site. Are you sure you want to proceed?"
1003
  msgstr ""
1004
 
1005
+ #: templates/account.php:125, templates/account.php:590
1006
+ msgid "Deactivate License"
1007
  msgstr ""
1008
 
1009
+ #: templates/account.php:142
1010
+ msgid "Are you sure you want to proceed?"
1011
  msgstr ""
1012
 
1013
+ #: templates/account.php:142
1014
+ msgid "Cancel Subscription"
1015
  msgstr ""
1016
 
1017
+ #: templates/account.php:171
1018
+ msgctxt "as synchronize"
1019
+ msgid "Sync"
1020
  msgstr ""
1021
 
1022
+ #: templates/account.php:185, templates/debug.php:389
1023
+ msgid "Name"
1024
  msgstr ""
1025
 
1026
+ #: templates/account.php:191, templates/debug.php:390
1027
+ msgid "Email"
1028
  msgstr ""
1029
 
1030
+ #: templates/account.php:198, templates/debug.php:310, templates/debug.php:419
1031
+ msgid "User ID"
1032
  msgstr ""
1033
 
1034
+ #: templates/account.php:205
1035
+ msgid "Site ID"
1036
  msgstr ""
1037
 
1038
+ #: templates/account.php:208
1039
+ msgid "No ID"
1040
  msgstr ""
1041
 
1042
+ #: templates/account.php:213, templates/debug.php:225, templates/debug.php:312, templates/debug.php:355, templates/debug.php:392
1043
+ msgid "Public Key"
1044
  msgstr ""
1045
 
1046
+ #: templates/account.php:219, templates/debug.php:313, templates/debug.php:356, templates/debug.php:393
1047
+ msgid "Secret Key"
1048
  msgstr ""
1049
 
1050
+ #: templates/account.php:222
1051
+ msgctxt "as secret encryption key missing"
1052
+ msgid "No Secret"
1053
  msgstr ""
1054
 
1055
+ #: templates/account.php:241
1056
+ msgid "Trial"
1057
  msgstr ""
1058
 
1059
+ #: templates/account.php:257, templates/debug.php:424
1060
  msgid "License Key"
1061
  msgstr ""
1062
 
1063
+ #: templates/account.php:287
1064
+ msgid "not verified"
1065
  msgstr ""
1066
 
1067
+ #: templates/account.php:317
1068
+ msgid "Localhost"
1069
  msgstr ""
1070
 
1071
+ #: templates/account.php:321
1072
+ msgctxt "as 5 licenses left"
1073
+ msgid "%s left"
1074
  msgstr ""
1075
 
1076
+ #: templates/account.php:322
1077
+ msgid "Last license"
1078
  msgstr ""
1079
 
1080
+ #: templates/account.php:352
1081
+ msgid "Premium version"
1082
  msgstr ""
1083
 
1084
+ #: templates/account.php:354
1085
+ msgid "Free version"
1086
  msgstr ""
1087
 
1088
+ #: templates/account.php:366
1089
+ msgid "Verify Email"
1090
  msgstr ""
1091
 
1092
+ #: templates/account.php:377
1093
+ msgid "Download %s Version"
1094
  msgstr ""
1095
 
1096
+ #: templates/account.php:391, templates/account.php:442
1097
+ msgctxt "verb"
1098
+ msgid "Show"
1099
  msgstr ""
1100
 
1101
+ #: templates/account.php:405
1102
+ msgid "What is your %s?"
1103
  msgstr ""
1104
 
1105
+ #: templates/account.php:413, templates/account/billing.php:27
1106
+ msgctxt "verb"
1107
+ msgid "Edit"
1108
  msgstr ""
1109
 
1110
+ #: templates/account.php:436
1111
+ msgctxt "verb"
1112
+ msgid "Hide"
1113
  msgstr ""
1114
 
1115
+ #: templates/account.php:472, templates/debug.php:218, templates/debug.php:308, templates/debug.php:351, templates/debug.php:388, templates/debug.php:417, templates/debug.php:496, templates/account/payments.php:35, templates/debug/logger.php:21
1116
+ msgid "ID"
1117
  msgstr ""
1118
 
1119
+ #: templates/account.php:475
1120
+ msgctxt "as software license"
1121
+ msgid "License"
1122
  msgstr ""
1123
 
1124
+ #: templates/account.php:550
1125
+ msgid "Cancelled"
1126
  msgstr ""
1127
 
1128
+ #: templates/account.php:555
1129
+ msgid "Expired"
1130
  msgstr ""
1131
 
1132
+ #: templates/account.php:560
1133
+ msgid "No expiration"
1134
+ msgstr ""
1135
+
1136
+ #: templates/account.php:668, templates/account.php:724
1137
+ msgid "Activate this add-on"
1138
+ msgstr ""
1139
+
1140
+ #: templates/account.php:745, templates/debug.php:336
1141
+ msgctxt "verb"
1142
+ msgid "Delete"
1143
  msgstr ""
1144
 
1145
+ #: templates/add-ons.php:36
1146
+ msgid "Add Ons for %s"
1147
  msgstr ""
1148
 
1149
  #: templates/add-ons.php:44
1150
+ msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1151
  msgstr ""
1152
 
1153
  #: templates/add-ons.php:135
1154
  msgid "View details"
1155
  msgstr ""
1156
 
1157
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:73, templates/forms/resend-key.php:77
1158
+ msgctxt "as close a window"
1159
+ msgid "Dismiss"
1160
  msgstr ""
1161
 
1162
+ #: templates/auto-installation.php:44
1163
+ msgid "%s sec"
1164
  msgstr ""
1165
 
1166
+ #: templates/auto-installation.php:82
 
 
 
 
1167
  msgid "Automatic Installation"
1168
  msgstr ""
1169
 
1170
+ #: templates/auto-installation.php:92
1171
  msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
1172
  msgstr ""
1173
 
1174
+ #: templates/auto-installation.php:103
1175
  msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
1176
  msgstr ""
1177
 
1178
+ #: templates/auto-installation.php:108
1179
  msgid "Cancel Installation"
1180
  msgstr ""
1181
 
1182
+ #: templates/checkout.php:168
1183
+ msgid "Checkout"
1184
+ msgstr ""
1185
+
1186
  #: templates/checkout.php:168
1187
  msgid "PCI compliant"
1188
  msgstr ""
1189
 
1190
+ #: templates/connect.php:128
1191
+ msgid "Allow & Continue"
1192
+ msgstr ""
1193
+
1194
+ #: templates/connect.php:131
1195
+ msgid "Re-send activation email"
1196
  msgstr ""
1197
 
1198
  #: templates/connect.php:135
1199
+ msgid "Thanks %s!"
1200
  msgstr ""
1201
 
1202
+ #: templates/connect.php:143, templates/forms/license-activation.php:43
1203
+ msgid "Agree & Activate License"
1204
  msgstr ""
1205
 
1206
+ #: templates/connect.php:147, templates/connect.php:170
1207
+ msgctxt "greeting"
1208
+ msgid "Hey %s,"
1209
  msgstr ""
1210
 
1211
+ #: templates/connect.php:148
1212
+ msgid "Thanks for purchasing %s! To get started, please enter your license key:"
1213
  msgstr ""
1214
 
1215
+ #: templates/connect.php:154
1216
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1217
  msgstr ""
1218
 
1219
+ #: templates/connect.php:159
1220
+ msgid "Please help us improve %1$s! If you opt in, some data about your usage of %1$s will be sent to %4$s. If you skip this, that's okay! %1$s will still work just fine."
1221
  msgstr ""
1222
 
1223
+ #: templates/connect.php:189, templates/forms/license-activation.php:46
1224
+ msgid "License key"
1225
  msgstr ""
1226
 
1227
+ #: templates/connect.php:192, templates/forms/license-activation.php:19
1228
+ msgid "Can't find your license key?"
1229
  msgstr ""
1230
 
1231
+ #: templates/connect.php:199, templates/forms/deactivation/retry-skip.php:20
1232
+ msgctxt "verb"
1233
+ msgid "Skip"
1234
  msgstr ""
1235
 
1236
+ #: templates/connect.php:228
1237
+ msgid "Your Profile Overview"
1238
  msgstr ""
1239
 
1240
+ #: templates/connect.php:229
1241
+ msgid "Name and email address"
1242
  msgstr ""
1243
 
1244
+ #: templates/connect.php:234
1245
+ msgid "Your Site Overview"
1246
  msgstr ""
1247
 
1248
+ #: templates/connect.php:235
1249
+ msgid "Site URL, WP version, PHP info, plugins & themes"
1250
+ msgstr ""
1251
+
1252
+ #: templates/connect.php:240
1253
+ msgid "Admin Notices"
1254
+ msgstr ""
1255
+
1256
+ #: templates/connect.php:241, templates/connect.php:263
1257
+ msgid "Updates, announcements, marketing, no spam"
1258
+ msgstr ""
1259
+
1260
+ #: templates/connect.php:246
1261
+ msgid "Current %s Events"
1262
+ msgstr ""
1263
+
1264
+ #: templates/connect.php:247
1265
+ msgid "Activation, deactivation and uninstall"
1266
+ msgstr ""
1267
+
1268
+ #: templates/connect.php:262
1269
+ msgid "Newsletter"
1270
+ msgstr ""
1271
+
1272
+ #: templates/connect.php:279, templates/forms/license-activation.php:38
1273
+ msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
1274
+ msgstr ""
1275
+
1276
+ #: templates/connect.php:284
1277
+ msgid "What permissions are being granted?"
1278
+ msgstr ""
1279
+
1280
+ #: templates/connect.php:305
1281
+ msgid "Don't have a license key?"
1282
  msgstr ""
1283
 
1284
+ #: templates/connect.php:306
1285
+ msgid "Activate Free Version"
1286
  msgstr ""
1287
 
1288
+ #: templates/connect.php:308
1289
+ msgid "Have a license key?"
1290
  msgstr ""
1291
 
1292
  #: templates/connect.php:316
1293
+ msgid "Privacy Policy"
1294
  msgstr ""
1295
 
1296
+ #: templates/connect.php:318
1297
+ msgid "Terms of Service"
1298
+ msgstr ""
1299
+
1300
+ #: templates/connect.php:436
1301
+ msgctxt "as in the process of sending an email"
1302
+ msgid "Sending email"
1303
+ msgstr ""
1304
+
1305
+ #: templates/connect.php:437
1306
+ msgctxt "as activating plugin"
1307
+ msgid "Activating"
1308
+ msgstr ""
1309
+
1310
+ #: templates/contact.php:74
1311
+ msgid "Contact"
1312
  msgstr ""
1313
 
1314
  #: templates/debug.php:17
1315
+ msgctxt "as turned off"
1316
+ msgid "Off"
1317
  msgstr ""
1318
 
1319
+ #: templates/debug.php:18
1320
+ msgctxt "as turned on"
1321
+ msgid "On"
1322
  msgstr ""
1323
 
1324
+ #: templates/debug.php:20
1325
+ msgid "SDK"
1326
  msgstr ""
1327
 
1328
+ #: templates/debug.php:24
1329
+ msgctxt "as code debugging"
1330
+ msgid "Debugging"
1331
  msgstr ""
1332
 
1333
+ #: templates/debug.php:54, templates/debug.php:226, templates/debug.php:314
1334
+ msgid "Actions"
1335
  msgstr ""
1336
 
1337
+ #: templates/debug.php:64
1338
+ msgid "Are you sure you want to delete all Freemius data?"
1339
  msgstr ""
1340
 
1341
+ #: templates/debug.php:64
1342
+ msgid "Delete All Accounts"
1343
  msgstr ""
1344
 
1345
+ #: templates/debug.php:71
1346
+ msgid "Clear API Cache"
1347
  msgstr ""
1348
 
1349
+ #: templates/debug.php:78
1350
+ msgid "Sync Data From Server"
1351
  msgstr ""
1352
 
1353
+ #: templates/debug.php:82
1354
  msgid "Load DB Option"
1355
  msgstr ""
1356
 
1357
+ #: templates/debug.php:85
1358
  msgid "Set DB Option"
1359
  msgstr ""
1360
 
1361
+ #: templates/debug.php:162
1362
+ msgid "Key"
1363
  msgstr ""
1364
 
1365
+ #: templates/debug.php:163
1366
+ msgid "Value"
1367
  msgstr ""
1368
 
1369
+ #: templates/debug.php:179
1370
+ msgctxt "as software development kit versions"
1371
+ msgid "SDK Versions"
1372
  msgstr ""
1373
 
1374
+ #: templates/debug.php:184
1375
+ msgid "SDK Path"
1376
  msgstr ""
1377
 
1378
+ #: templates/debug.php:185, templates/debug.php:224
1379
+ msgid "Module Path"
1380
  msgstr ""
1381
 
1382
+ #: templates/debug.php:186
1383
+ msgid "Is Active"
1384
  msgstr ""
1385
 
1386
+ #: templates/debug.php:214, templates/debug/plugins-themes-sync.php:35
1387
+ msgid "Plugins"
1388
  msgstr ""
1389
 
1390
+ #: templates/debug.php:214, templates/debug/plugins-themes-sync.php:56
1391
+ msgid "Themes"
1392
  msgstr ""
1393
 
1394
+ #: templates/debug.php:219, templates/debug.php:309, templates/debug.php:353, templates/debug/scheduled-crons.php:81
1395
+ msgid "Slug"
1396
  msgstr ""
1397
 
1398
+ #: templates/debug.php:221, templates/debug.php:352
1399
+ msgid "Title"
1400
+ msgstr ""
1401
+
1402
+ #: templates/debug.php:222
1403
+ msgctxt "as application program interface"
1404
+ msgid "API"
1405
  msgstr ""
1406
 
1407
+ #: templates/debug.php:223
1408
+ msgid "Freemius State"
1409
  msgstr ""
1410
 
1411
+ #: templates/debug.php:255
1412
+ msgctxt "as connection was successful"
1413
+ msgid "Connected"
1414
  msgstr ""
1415
 
1416
+ #: templates/debug.php:256
1417
+ msgctxt "as connection blocked"
1418
+ msgid "Blocked"
1419
  msgstr ""
1420
 
1421
+ #: templates/debug.php:277
1422
  msgid "Simulate Trial"
1423
  msgstr ""
1424
 
1425
+ #: templates/debug.php:302
1426
+ msgid "%s Installs"
1427
  msgstr ""
1428
 
1429
+ #: templates/debug.php:304
1430
+ msgctxt "like websites"
1431
+ msgid "Sites"
1432
  msgstr ""
1433
 
1434
+ #: templates/debug.php:347
1435
+ msgid "Add Ons of module %s"
1436
  msgstr ""
1437
 
1438
+ #: templates/debug.php:384
1439
+ msgid "Users"
1440
  msgstr ""
1441
 
1442
+ #: templates/debug.php:391
1443
+ msgid "Verified"
1444
  msgstr ""
1445
 
1446
+ #: templates/debug.php:413
1447
+ msgid "%s Licenses"
1448
  msgstr ""
1449
 
1450
+ #: templates/debug.php:418
1451
+ msgid "Plugin ID"
1452
  msgstr ""
1453
 
1454
+ #: templates/debug.php:420
1455
+ msgid "Plan ID"
1456
  msgstr ""
1457
 
1458
+ #: templates/debug.php:421
1459
+ msgid "Quota"
1460
  msgstr ""
1461
 
1462
+ #: templates/debug.php:422
1463
+ msgid "Activated"
1464
  msgstr ""
1465
 
1466
+ #: templates/debug.php:423
1467
+ msgid "Blocking"
1468
+ msgstr ""
1469
+
1470
+ #: templates/debug.php:425
1471
+ msgctxt "as expiration date"
1472
+ msgid "Expiration"
1473
  msgstr ""
1474
 
1475
+ #: templates/debug.php:454
1476
+ msgid "Debug Log"
1477
  msgstr ""
1478
 
1479
+ #: templates/debug.php:458
1480
+ msgid "All Types"
1481
  msgstr ""
1482
 
1483
+ #: templates/debug.php:465
1484
+ msgid "All Requests"
1485
  msgstr ""
1486
 
1487
+ #: templates/debug.php:470, templates/debug.php:499, templates/debug/logger.php:25
1488
+ msgid "File"
1489
  msgstr ""
1490
 
1491
+ #: templates/debug.php:471, templates/debug.php:497, templates/debug/logger.php:23
1492
+ msgid "Function"
1493
  msgstr ""
1494
 
1495
+ #: templates/debug.php:472
1496
+ msgid "Process ID"
1497
  msgstr ""
1498
 
1499
+ #: templates/debug.php:473
1500
+ msgid "Logger"
1501
  msgstr ""
1502
 
1503
+ #: templates/debug.php:474, templates/debug.php:498, templates/debug/logger.php:24
1504
+ msgid "Message"
1505
  msgstr ""
1506
 
1507
+ #: templates/debug.php:476
1508
+ msgid "Filter"
1509
  msgstr ""
1510
 
1511
+ #: templates/debug.php:484
1512
+ msgid "Download"
1513
  msgstr ""
1514
 
1515
+ #: templates/debug.php:495, templates/debug/logger.php:22
1516
+ msgid "Type"
1517
  msgstr ""
1518
 
1519
+ #: templates/debug.php:500, templates/debug/logger.php:26
1520
+ msgid "Timestamp"
1521
  msgstr ""
1522
 
1523
+ #: templates/secure-https-header.php:28
1524
+ msgid "Secure HTTPS %s page, running from an external domain"
1525
  msgstr ""
1526
 
1527
+ #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
1528
+ msgid "Support"
1529
  msgstr ""
1530
 
1531
+ #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
1532
+ msgctxt "milliseconds"
1533
  msgid "ms"
1534
  msgstr ""
1535
 
1541
  msgid "Requests"
1542
  msgstr ""
1543
 
1544
+ #: templates/account/billing.php:28
1545
+ msgctxt "verb"
1546
+ msgid "Update"
1547
+ msgstr ""
1548
+
1549
+ #: templates/account/billing.php:39
1550
+ msgid "Billing"
1551
  msgstr ""
1552
 
1553
+ #: templates/account/billing.php:44, templates/account/billing.php:44
1554
  msgid "Business name"
1555
  msgstr ""
1556
 
1557
+ #: templates/account/billing.php:45, templates/account/billing.php:45
1558
  msgid "Tax / VAT ID"
1559
  msgstr ""
1560
 
1561
+ #: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49
1562
  msgid "Address Line %d"
1563
  msgstr ""
1564
 
1565
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1566
  msgid "City"
1567
  msgstr ""
1568
 
1569
+ #: templates/account/billing.php:52, templates/account/billing.php:52
1570
  msgid "Town"
1571
  msgstr ""
1572
 
1573
+ #: templates/account/billing.php:53, templates/account/billing.php:53
1574
  msgid "ZIP / Postal Code"
1575
  msgstr ""
1576
 
1577
+ #: templates/account/billing.php:308
1578
  msgid "Country"
1579
  msgstr ""
1580
 
1581
+ #: templates/account/billing.php:310
1582
  msgid "Select Country"
1583
  msgstr ""
1584
 
1585
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1586
  msgid "State"
1587
  msgstr ""
1588
 
1589
+ #: templates/account/billing.php:317, templates/account/billing.php:318
1590
  msgid "Province"
1591
  msgstr ""
1592
 
 
 
 
 
 
 
 
 
1593
  #: templates/account/payments.php:29
1594
+ msgid "Payments"
1595
  msgstr ""
1596
 
1597
  #: templates/account/payments.php:36
1598
+ msgid "Date"
1599
  msgstr ""
1600
 
1601
  #: templates/account/payments.php:37
1602
+ msgid "Amount"
1603
  msgstr ""
1604
 
1605
  #: templates/account/payments.php:38, templates/account/payments.php:50
1606
+ msgid "Invoice"
1607
  msgstr ""
1608
 
1609
+ #: templates/debug/api-calls.php:56
1610
  msgid "API"
1611
  msgstr ""
1612
 
1613
+ #: templates/debug/api-calls.php:68
1614
  msgid "Method"
1615
  msgstr ""
1616
 
1617
+ #: templates/debug/api-calls.php:69
1618
  msgid "Code"
1619
  msgstr ""
1620
 
1621
+ #: templates/debug/api-calls.php:70
1622
  msgid "Length"
1623
  msgstr ""
1624
 
1625
+ #: templates/debug/api-calls.php:71
1626
+ msgctxt "as file/folder path"
1627
  msgid "Path"
1628
  msgstr ""
1629
 
1630
+ #: templates/debug/api-calls.php:73
1631
  msgid "Body"
1632
  msgstr ""
1633
 
1634
+ #: templates/debug/api-calls.php:75
1635
  msgid "Result"
1636
  msgstr ""
1637
 
1638
+ #: templates/debug/api-calls.php:76
1639
  msgid "Start"
1640
  msgstr ""
1641
 
1642
+ #: templates/debug/api-calls.php:77
1643
  msgid "End"
1644
  msgstr ""
1645
 
1647
  msgid "Log"
1648
  msgstr ""
1649
 
1650
+ #. translators: %s: time period (e.g. In "2 hours")
1651
+ #: templates/debug/plugins-themes-sync.php:18, templates/debug/scheduled-crons.php:92
1652
+ msgid "In %s"
 
 
 
 
 
 
 
1653
  msgstr ""
1654
 
1655
+ #. translators: %s: time period (e.g. "2 hours" ago)
1656
+ #: templates/debug/plugins-themes-sync.php:20, templates/debug/scheduled-crons.php:94
1657
+ msgid "%s ago"
1658
  msgstr ""
1659
 
1660
+ #: templates/debug/plugins-themes-sync.php:21, templates/debug/scheduled-crons.php:75
1661
+ msgctxt "seconds"
1662
  msgid "sec"
1663
  msgstr ""
1664
 
1665
+ #: templates/debug/plugins-themes-sync.php:23
1666
+ msgid "Plugins & Themes Sync"
1667
  msgstr ""
1668
 
1669
+ #: templates/debug/plugins-themes-sync.php:28
1670
+ msgid "Total"
1671
  msgstr ""
1672
 
1673
+ #: templates/debug/plugins-themes-sync.php:29, templates/debug/scheduled-crons.php:85
1674
+ msgid "Last"
1675
  msgstr ""
1676
 
1677
+ #: templates/debug/scheduled-crons.php:77
1678
+ msgid "Scheduled Crons"
1679
  msgstr ""
1680
 
1681
+ #: templates/debug/scheduled-crons.php:82
1682
+ msgid "Module"
1683
  msgstr ""
1684
 
1685
+ #: templates/debug/scheduled-crons.php:83
1686
+ msgid "Module Type"
1687
  msgstr ""
1688
 
1689
  #: templates/debug/scheduled-crons.php:84
1690
+ msgid "Cron Type"
1691
+ msgstr ""
1692
+
1693
+ #: templates/debug/scheduled-crons.php:86
1694
  msgid "Next"
1695
  msgstr ""
1696
 
1697
  #: templates/forms/affiliation.php:81
1698
+ msgid "Non-expiring"
1699
  msgstr ""
1700
 
1701
+ #: templates/forms/affiliation.php:84
1702
+ msgid "Apply to become an affiliate"
1703
  msgstr ""
1704
 
1705
+ #: templates/forms/affiliation.php:103
1706
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
1707
  msgstr ""
1708
 
1709
+ #: templates/forms/affiliation.php:114
1710
+ msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
1711
  msgstr ""
1712
 
1713
+ #: templates/forms/affiliation.php:117
1714
+ msgid "Your affiliation account was temporarily suspended."
1715
+ msgstr ""
1716
+
1717
+ #: templates/forms/affiliation.php:120
1718
+ msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
1719
+ msgstr ""
1720
+
1721
+ #: templates/forms/affiliation.php:123
1722
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
1723
  msgstr ""
1724
 
1725
  #: templates/forms/affiliation.php:136
1726
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
1727
  msgstr ""
1728
 
1729
+ #: templates/forms/affiliation.php:137
1730
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
1731
  msgstr ""
1732
 
1733
  #: templates/forms/affiliation.php:140
1734
+ msgid "Program Summary"
1735
  msgstr ""
1736
 
1737
+ #: templates/forms/affiliation.php:142
1738
+ msgid "%s commission when a customer purchases a new license."
1739
  msgstr ""
1740
 
1741
+ #: templates/forms/affiliation.php:144
1742
+ msgid "Get commission for automated subscription renewals."
1743
  msgstr ""
1744
 
1745
+ #: templates/forms/affiliation.php:147
1746
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
1747
  msgstr ""
1748
 
1749
+ #: templates/forms/affiliation.php:150
1750
+ msgid "Unlimited commissions."
1751
  msgstr ""
1752
 
1753
+ #: templates/forms/affiliation.php:152
1754
+ msgid "%s minimum payout amount."
1755
  msgstr ""
1756
 
1757
  #: templates/forms/affiliation.php:153
1758
+ msgid "Payouts are in USD and processed monthly via PayPal."
1759
  msgstr ""
1760
 
1761
+ #: templates/forms/affiliation.php:154
1762
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
1763
  msgstr ""
1764
 
1765
+ #: templates/forms/affiliation.php:157
1766
+ msgid "Affiliate"
1767
+ msgstr ""
1768
+
1769
+ #: templates/forms/affiliation.php:160, templates/forms/resend-key.php:23
1770
+ msgid "Email address"
1771
  msgstr ""
1772
 
1773
  #: templates/forms/affiliation.php:164
1774
+ msgid "Full name"
1775
  msgstr ""
1776
 
1777
  #: templates/forms/affiliation.php:168
1778
+ msgid "PayPal account email address"
1779
  msgstr ""
1780
 
1781
+ #: templates/forms/affiliation.php:172
1782
+ msgid "Where are you going to promote the %s?"
1783
  msgstr ""
1784
 
1785
+ #: templates/forms/affiliation.php:174
1786
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
1787
  msgstr ""
1788
 
1789
  #: templates/forms/affiliation.php:176
1790
+ msgid "Add another domain"
1791
  msgstr ""
1792
 
1793
+ #: templates/forms/affiliation.php:180
1794
+ msgid "Extra Domains"
1795
  msgstr ""
1796
 
1797
+ #: templates/forms/affiliation.php:181
1798
+ msgid "Extra domains where you will be marketing the product from."
1799
  msgstr ""
1800
 
1801
+ #: templates/forms/affiliation.php:191
1802
+ msgid "Promotion methods"
1803
  msgstr ""
1804
 
1805
  #: templates/forms/affiliation.php:194
1806
+ msgid "Social media (Facebook, Twitter, etc.)"
1807
  msgstr ""
1808
 
1809
  #: templates/forms/affiliation.php:198
1810
+ msgid "Mobile apps"
1811
  msgstr ""
1812
 
1813
+ #: templates/forms/affiliation.php:202
1814
+ msgid "Website, email, and social media statistics (optional)"
1815
  msgstr ""
1816
 
1817
  #: templates/forms/affiliation.php:205
1818
+ msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
1819
  msgstr ""
1820
 
1821
+ #: templates/forms/affiliation.php:209
1822
+ msgid "How will you promote us?"
1823
  msgstr ""
1824
 
1825
+ #: templates/forms/affiliation.php:212
1826
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
1827
  msgstr ""
1828
 
1829
+ #: templates/forms/affiliation.php:218, templates/forms/resend-key.php:22
1830
+ msgid "Cancel"
1831
  msgstr ""
1832
 
1833
+ #: templates/forms/affiliation.php:220
1834
+ msgid "Become an affiliate"
1835
  msgstr ""
1836
 
1837
+ #: templates/forms/affiliation.php:275
1838
+ msgid "Email address is required."
1839
  msgstr ""
1840
 
1841
+ #: templates/forms/affiliation.php:281
1842
+ msgid "PayPal email address is required."
1843
  msgstr ""
1844
 
1845
+ #: templates/forms/affiliation.php:291
1846
+ msgid "Domain is required."
1847
  msgstr ""
1848
 
1849
+ #: templates/forms/affiliation.php:294, templates/forms/affiliation.php:308
1850
+ msgid "Invalid domain"
1851
  msgstr ""
1852
 
1853
+ #: templates/forms/affiliation.php:364
1854
+ msgid "Processing"
1855
  msgstr ""
1856
 
1857
  #: templates/forms/license-activation.php:20
1858
+ msgid "Please enter the license key that you received in the email right after the purchase:"
1859
  msgstr ""
1860
 
1861
+ #: templates/forms/license-activation.php:25
1862
+ msgid "Update License"
 
 
 
 
1863
  msgstr ""
1864
 
1865
  #: templates/forms/optout.php:30
1866
+ msgctxt "verb"
1867
+ msgid "Opt Out"
1868
  msgstr ""
1869
 
1870
  #: templates/forms/optout.php:31
1871
+ msgctxt "verb"
1872
+ msgid "Opt In"
1873
  msgstr ""
1874
 
1875
  #: templates/forms/optout.php:32
1876
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
1877
  msgstr ""
1878
 
1879
+ #: templates/forms/optout.php:33
1880
+ msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
1881
  msgstr ""
1882
 
1883
+ #: templates/forms/optout.php:35
1884
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
1885
  msgstr ""
1886
 
1887
+ #: templates/forms/resend-key.php:21
1888
+ msgid "Send License Key"
1889
  msgstr ""
1890
 
1891
  #: templates/forms/resend-key.php:57
1892
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
1893
  msgstr ""
1894
 
1895
+ #: templates/forms/trial-start.php:22
1896
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
1897
  msgstr ""
1898
 
1899
+ #: templates/forms/trial-start.php:28
1900
+ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
1901
  msgstr ""
1902
 
1903
+ #: templates/js/style-premium-theme.php:37
1904
+ msgid "Premium"
1905
  msgstr ""
1906
 
1907
+ #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
1908
+ msgid "Click to view full-size screenshot %d"
1909
  msgstr ""
1910
 
1911
  #: templates/plugin-info/features.php:56
1912
+ msgid "Unlimited Updates"
1913
  msgstr ""
1914
 
1915
+ #: templates/forms/deactivation/contact.php:19
1916
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
1917
  msgstr ""
1918
 
1919
+ #: templates/forms/deactivation/contact.php:22
1920
+ msgid "Contact Support"
1921
  msgstr ""
1922
 
1923
  #: templates/forms/deactivation/form.php:56
1924
+ msgid "Anonymous feedback"
1925
+ msgstr ""
1926
+
1927
+ #: templates/forms/deactivation/form.php:63
1928
+ msgid "Deactivate"
1929
+ msgstr ""
1930
+
1931
+ #: templates/forms/deactivation/form.php:65
1932
+ msgid "Activate %s"
1933
+ msgstr ""
1934
+
1935
+ #: templates/forms/deactivation/form.php:76
1936
+ msgid "Quick feedback"
1937
  msgstr ""
1938
 
1939
+ #: templates/forms/deactivation/form.php:80
1940
+ msgid "If you have a moment, please let us know why you are %s"
1941
  msgstr ""
1942
 
1943
+ #: templates/forms/deactivation/form.php:80
1944
+ msgid "deactivating"
1945
  msgstr ""
1946
 
1947
+ #: templates/forms/deactivation/form.php:80
1948
+ msgid "switching"
1949
  msgstr ""
1950
 
1951
+ #: templates/forms/deactivation/form.php:248
1952
+ msgid "Submit & %s"
1953
  msgstr ""
1954
 
1955
+ #: templates/forms/deactivation/form.php:269
1956
+ msgid "Kindly tell us the reason so we can improve."
1957
  msgstr ""
1958
 
1959
+ #: templates/forms/deactivation/form.php:390
1960
+ msgid "Yes - %s"
1961
  msgstr ""
1962
 
1963
+ #: templates/forms/deactivation/form.php:397
1964
+ msgid "Skip & %s"
1965
  msgstr ""
1966
 
1967
  #: templates/forms/deactivation/retry-skip.php:21
1968
+ msgid "Click here to use the plugin anonymously"
1969
  msgstr ""
1970
 
1971
  #: templates/forms/deactivation/retry-skip.php:23
1972
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
1973
  msgstr ""
freemius/start.php CHANGED
@@ -15,7 +15,7 @@
15
  *
16
  * @var string
17
  */
18
- $this_sdk_version = '1.2.2.10';
19
 
20
  #region SDK Selection Logic --------------------------------------------------------------------
21
 
@@ -498,4 +498,4 @@
498
  function fs_dump_log() {
499
  FS_Logger::dump();
500
  }
501
- }
15
  *
16
  * @var string
17
  */
18
+ $this_sdk_version = '1.2.4';
19
 
20
  #region SDK Selection Logic --------------------------------------------------------------------
21
 
498
  function fs_dump_log() {
499
  FS_Logger::dump();
500
  }
501
+ }
freemius/templates/add-ons.php CHANGED
@@ -132,7 +132,7 @@
132
  echo implode(' - ', $descriptors) ?></span>
133
  </li>
134
  <li class="fs-description"><?php echo ! empty( $addon->info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?></li>
135
- <li class="fs-cta"><a class="button"><?php fs_esc_html_inline( 'View details', 'view-details', $slug ) ?></a></li>
136
  </ul>
137
  </div>
138
  </li>
132
  echo implode(' - ', $descriptors) ?></span>
133
  </li>
134
  <li class="fs-description"><?php echo ! empty( $addon->info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?></li>
135
+ <li class="fs-cta"><a class="button"><?php fs_esc_html_echo_inline( 'View details', 'view-details', $slug ) ?></a></li>
136
  </ul>
137
  </div>
138
  </li>
freemius/templates/auto-installation.php CHANGED
@@ -13,10 +13,10 @@
13
  /**
14
  * @var array $VARS
15
  */
16
- $slug = $VARS['slug'];
17
- $plugin_id = $VARS['id'];
18
 
19
- $fs = freemius( $plugin_id );
20
 
21
  $action = $fs->is_tracking_allowed() ?
22
  'stop_tracking' :
@@ -145,10 +145,11 @@
145
  $modal.find('.fs-ajax-loader').show();
146
 
147
  var data = {
148
- action : '<?php echo $fs->get_ajax_action( 'install_premium_version' ) ?>',
149
- security : '<?php echo $fs->get_ajax_security( 'install_premium_version' ) ?>',
150
- slug : '<?php echo $slug ?>',
151
- module_id: '<?php echo $plugin_id ?>'
 
152
  };
153
 
154
  if (requireCredentials) {
13
  /**
14
  * @var array $VARS
15
  */
16
+ $slug = $VARS['slug'];
17
+ $plugin_id = $VARS['target_module_id'];
18
 
19
+ $fs = freemius( $VARS['id'] );
20
 
21
  $action = $fs->is_tracking_allowed() ?
22
  'stop_tracking' :
145
  $modal.find('.fs-ajax-loader').show();
146
 
147
  var data = {
148
+ action : '<?php echo $fs->get_ajax_action( 'install_premium_version' ) ?>',
149
+ security : '<?php echo $fs->get_ajax_security( 'install_premium_version' ) ?>',
150
+ slug : '<?php echo $slug ?>',
151
+ module_id : '<?php echo $fs->get_id() ?>',
152
+ target_module_id: '<?php echo $plugin_id ?>'
153
  };
154
 
155
  if (requireCredentials) {
freemius/templates/connect.php CHANGED
@@ -189,7 +189,7 @@
189
  placeholder="<?php fs_esc_attr_echo_inline( 'License key', 'license-key', $slug ) ?>" tabindex="1"/>
190
  <i class="dashicons dashicons-admin-network"></i>
191
  <a class="show-license-resend-modal show-license-resend-modal-<?php echo $fs->get_unique_affix() ?>"
192
- href="#"><?php fs_esc_html_echo_inline( "Can't find your license key?", 'cant-find-license-key' ); ?></a>
193
  </div>
194
  <?php endif ?>
195
  </div>
189
  placeholder="<?php fs_esc_attr_echo_inline( 'License key', 'license-key', $slug ) ?>" tabindex="1"/>
190
  <i class="dashicons dashicons-admin-network"></i>
191
  <a class="show-license-resend-modal show-license-resend-modal-<?php echo $fs->get_unique_affix() ?>"
192
+ href="#"><?php fs_esc_html_echo_inline( "Can't find your license key?", 'cant-find-license-key', $slug ); ?></a>
193
  </div>
194
  <?php endif ?>
195
  </div>
freemius/templates/forms/affiliation.php CHANGED
@@ -99,11 +99,15 @@
99
  <?php if ( $affiliate->is_active() ) : ?>
100
  <div class="updated">
101
  <p><strong><?php
102
- echo esc_html( sprintf(
103
- fs_text_inline( "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s.", 'affiliate-application-accepted', $slug ),
104
  $plugin_title,
105
- sprintf( '<a href="%s" target="_blank">%s</a>', $members_dashboard_login_url, $members_dashboard_login_url )
106
- ) );
 
 
 
 
107
  ?></strong></p>
108
  </div>
109
  <?php else : ?>
@@ -361,7 +365,7 @@
361
  beforeSend: function() {
362
  $cancelButton.addClass( 'disabled' );
363
  $submitButton.addClass( 'disabled' );
364
- $submitButton.text( '<?php fs_esc_js_inline( 'Processing', 'processing' ) ?>...' );
365
  },
366
  success : function( result ) {
367
  if ( result.success ) {
99
  <?php if ( $affiliate->is_active() ) : ?>
100
  <div class="updated">
101
  <p><strong><?php
102
+ echo sprintf(
103
+ fs_esc_html_inline( "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s.", 'affiliate-application-accepted', $slug ),
104
  $plugin_title,
105
+ sprintf(
106
+ '<a href="%s" target="_blank">%s</a>',
107
+ $members_dashboard_login_url,
108
+ $members_dashboard_login_url
109
+ )
110
+ );
111
  ?></strong></p>
112
  </div>
113
  <?php else : ?>
365
  beforeSend: function() {
366
  $cancelButton.addClass( 'disabled' );
367
  $submitButton.addClass( 'disabled' );
368
+ $submitButton.text( '<?php fs_esc_js_echo_inline( 'Processing', 'processing' ) ?>...' );
369
  },
370
  success : function( result ) {
371
  if ( result.success ) {
premmerce-url-manager.php CHANGED
@@ -11,7 +11,7 @@ use Premmerce\UrlManager\UrlManagerPlugin;
11
  * Plugin Name: WooCommerce Permalink Manager
12
  * Plugin URI: https://premmerce.com/woocommerce-permalink-manager-remove-shop-product-product-category-url/
13
  * Description: Premmerce WooCommerce Permalink Manager allows you to change WooCommerce permalink and remove product and product_category slugs from the URL.
14
- * Version: 1.1.2
15
  * Author: premmerce
16
  * Author URI: https://premmerce.com/
17
  * License: GPL-2.0+
11
  * Plugin Name: WooCommerce Permalink Manager
12
  * Plugin URI: https://premmerce.com/woocommerce-permalink-manager-remove-shop-product-product-category-url/
13
  * Description: Premmerce WooCommerce Permalink Manager allows you to change WooCommerce permalink and remove product and product_category slugs from the URL.
14
+ * Version: 1.1.3
15
  * Author: premmerce
16
  * Author URI: https://premmerce.com/
17
  * License: GPL-2.0+
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: premmerce
3
  Tags: woocommerce url, remove product, remove product_category, woocommerce permalink, woocommerce, woocommerce seo
4
  Requires at least: 4.8
5
- Tested up to: 4.9.1
6
- Stable tag: 1.1.2
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -23,6 +23,15 @@ Full documentation is available here: [WooCommerce Permalink Manager](https://pr
23
  * Removing base from product URL
24
  * Using “Yoast SEO” permanent category url for products with multiple categories
25
 
 
 
 
 
 
 
 
 
 
26
  = Compatibility with other Plugins =
27
 
28
  * WooCommerce
@@ -95,6 +104,13 @@ Release Date: Dec 06, 2017
95
  * Added WordPress 4.9.1 support
96
  * Added WooCommerce 3.2.5 support
97
 
 
 
 
 
 
 
 
98
  == Translators ==
99
 
100
  = Available Languages =
2
  Contributors: premmerce
3
  Tags: woocommerce url, remove product, remove product_category, woocommerce permalink, woocommerce, woocommerce seo
4
  Requires at least: 4.8
5
+ Tested up to: 4.9.2
6
+ Stable tag: 1.1.3
7
  Requires PHP: 5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
23
  * Removing base from product URL
24
  * Using “Yoast SEO” permanent category url for products with multiple categories
25
 
26
+ = Demo =
27
+
28
+ You can see how it works on the Storefront theme here: <https://storefront.premmerce.com> .
29
+
30
+ You can see how it works on the SalesZone theme here: <https://saleszone.premmerce.com> .
31
+
32
+ Plus, you can create your personal demo store and test this plugin together with [Premmerce Premium](https://premmerce.com/features/) and all other Premmerce plugins and themes developed by our team here: [Premmerce WooCommerce Demo](https://premmerce.com/premmerce-woocommerce-demo/).
33
+
34
+
35
  = Compatibility with other Plugins =
36
 
37
  * WooCommerce
104
  * Added WordPress 4.9.1 support
105
  * Added WooCommerce 3.2.5 support
106
 
107
+ = 1.1.3 =
108
+
109
+ Release Date: Jan 24, 2018
110
+
111
+ * Updated freemius sdk
112
+ * Fixed the dependency check on multisite
113
+
114
  == Translators ==
115
 
116
  = Available Languages =
src/Admin/Admin.php CHANGED
@@ -43,6 +43,7 @@ class Admin{
43
  }
44
 
45
  add_action('admin_menu', [$this, 'addMenuPage']);
 
46
 
47
  add_action('admin_init', [$this, 'registerSettings']);
48
 
@@ -89,6 +90,26 @@ class Admin{
89
  }
90
  }
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
 
93
  /**
94
  * Options page
43
  }
44
 
45
  add_action('admin_menu', [$this, 'addMenuPage']);
46
+ add_action('admin_menu', [$this, 'addFullPack'], 100);
47
 
48
  add_action('admin_init', [$this, 'registerSettings']);
49
 
90
  }
91
  }
92
 
93
+ public function addFullPack(){
94
+ global $submenu;
95
+
96
+ if(!function_exists('get_plugins')){
97
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
98
+ }
99
+
100
+ $plugins = get_plugins();
101
+
102
+ $premmerceInstalled = array_key_exists('premmerce-premium/premmerce.php', $plugins)
103
+ || array_key_exists('premmerce/premmerce.php', $plugins);
104
+
105
+ if(!$premmerceInstalled){
106
+ $submenu['premmerce'][999] = [
107
+ 'Get premmerce full pack',
108
+ 'manage_options',
109
+ admin_url('plugin-install.php?tab=plugin-information&plugin=premmerce'),
110
+ ];
111
+ }
112
+ }
113
 
114
  /**
115
  * Options page
src/UrlManagerPlugin.php CHANGED
@@ -127,10 +127,14 @@ class UrlManagerPlugin{
127
 
128
  $plugins = [];
129
 
 
 
 
 
130
  /**
131
  * Check if WooCommerce is active
132
  **/
133
- if(!in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))){
134
  $plugins[] = '<a target="_blank" href="https://wordpress.org/plugins/woocommerce/">WooCommerce</a>';
135
  }
136
 
127
 
128
  $plugins = [];
129
 
130
+ if(!function_exists('is_plugin_active')){
131
+ include_once(ABSPATH . 'wp-admin/includes/plugin.php');
132
+ }
133
+
134
  /**
135
  * Check if WooCommerce is active
136
  **/
137
+ if(!(is_plugin_active('woocommerce/woocommerce.php') || is_plugin_active_for_network('woocommerce/woocommerce.php'))){
138
  $plugins[] = '<a target="_blank" href="https://wordpress.org/plugins/woocommerce/">WooCommerce</a>';
139
  }
140