Version Description
Release Date: Jan 24, 2018
- Updated freemius sdk
- Fixed the dependency check on multisite
=
Download this release
Release Info
Developer | premmerce |
Plugin | 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 +3 -0
- freemius/includes/class-freemius.php +40 -21
- freemius/includes/fs-core-functions.php +1094 -1034
- freemius/includes/sdk/FreemiusWordPress.php +15 -14
- freemius/languages/freemius-en.mo +0 -0
- freemius/languages/freemius-en.po +1509 -737
- freemius/languages/freemius-es_ES.mo +0 -0
- freemius/languages/freemius-es_ES.po +187 -187
- freemius/languages/freemius-he_IL.mo +0 -0
- freemius/languages/freemius-he_IL.po +166 -166
- freemius/languages/freemius-it_IT.mo +0 -0
- freemius/languages/freemius-it_IT.po +1579 -1370
- freemius/languages/freemius-ja_JP.mo +0 -0
- freemius/languages/freemius-ja_JP.po +1580 -1371
- freemius/languages/freemius.pot +1207 -510
- freemius/start.php +2 -2
- freemius/templates/add-ons.php +1 -1
- freemius/templates/auto-installation.php +8 -7
- freemius/templates/connect.php +1 -1
- freemius/templates/forms/affiliation.php +9 -5
- premmerce-url-manager.php +1 -1
- readme.txt +18 -2
- src/Admin/Admin.php +21 -0
- src/UrlManagerPlugin.php +5 -1
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.
|
7361 |
*/
|
7362 |
-
private function
|
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',
|
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",
|
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 ( ! $
|
7384 |
-
|
|
|
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",
|
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( '
|
13796 |
|
13797 |
if ( ! FS_Plugin::is_valid_id( $plugin_id ) ) {
|
13798 |
// Invalid ID.
|
@@ -13910,10 +13928,11 @@
|
|
13910 |
}
|
13911 |
}
|
13912 |
|
13913 |
-
|
13914 |
-
|
13915 |
-
|
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 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
}
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
return $
|
146 |
-
}
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
}
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
return strtolower( $
|
170 |
-
}
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
) {
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
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 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
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 `&` 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;
|
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:
|
23 |
-
msgid "freemius
|
24 |
-
msgstr "freemius
|
25 |
|
26 |
-
#: includes/class-freemius.php:
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
35 |
msgid "Invalid module ID."
|
36 |
msgstr "Invalid module ID."
|
37 |
|
38 |
-
#: includes/class-freemius.php:
|
39 |
msgid "Premium version already active."
|
40 |
msgstr "Premium version already active."
|
41 |
|
42 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
51 |
msgid "Premium add-on version already installed."
|
52 |
msgstr "Premium add-on version already installed."
|
53 |
|
54 |
-
#: includes/class-freemius.php:
|
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-
|
67 |
-
msgctxt "
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
#: includes/fs-plugin-info-dialog.php:328
|
72 |
-
msgid "purchase"
|
73 |
-
msgstr "purchase"
|
74 |
|
75 |
-
#: includes/fs-plugin-info-dialog.php:
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: includes/fs-plugin-info-dialog.php:
|
80 |
-
|
81 |
-
|
|
|
82 |
|
83 |
-
#: includes/fs-plugin-info-dialog.php:
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#: includes/fs-plugin-info-dialog.php:
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
|
91 |
-
#: includes/fs-plugin-info-dialog.php:
|
92 |
msgid "Newer Version (%s) Installed"
|
93 |
msgstr "Newer Version (%s) Installed"
|
94 |
|
95 |
-
#: includes/fs-plugin-info-dialog.php:
|
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 |
-
|
117 |
-
|
|
|
118 |
|
119 |
#: includes/fs-plugin-info-dialog.php:485
|
120 |
-
|
121 |
-
|
|
|
122 |
|
123 |
#: includes/fs-plugin-info-dialog.php:486
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "Plugin Install"
|
133 |
msgstr "Plugin Install"
|
134 |
|
135 |
-
#: includes/fs-plugin-info-dialog.php:
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
#: includes/fs-plugin-info-dialog.php:608
|
140 |
-
msgid "best"
|
141 |
-
msgstr "best"
|
142 |
|
143 |
-
#: includes/fs-plugin-info-dialog.php:
|
144 |
-
|
145 |
-
|
|
|
146 |
|
147 |
-
#: includes/fs-plugin-info-dialog.php:
|
148 |
-
|
149 |
-
|
|
|
150 |
|
151 |
#: includes/fs-plugin-info-dialog.php:621
|
152 |
-
|
153 |
-
|
|
|
154 |
|
155 |
-
#: includes/fs-plugin-info-dialog.php:
|
156 |
-
msgid "
|
157 |
-
msgstr "
|
158 |
|
159 |
-
#: includes/fs-plugin-info-dialog.php:
|
160 |
-
|
161 |
-
|
|
|
162 |
|
163 |
-
#: includes/fs-plugin-info-dialog.php:
|
164 |
-
|
165 |
-
|
|
|
166 |
|
167 |
-
#: includes/fs-plugin-info-dialog.php:
|
168 |
-
|
169 |
-
|
|
|
170 |
|
171 |
-
#: includes/fs-plugin-info-dialog.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
|
175 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
msgid "mo"
|
177 |
msgstr "mo"
|
178 |
|
179 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
180 |
msgid "year"
|
181 |
msgstr "year"
|
182 |
|
183 |
-
#: includes/fs-plugin-info-dialog.php:
|
184 |
-
|
185 |
-
|
|
|
186 |
|
187 |
-
#: includes/fs-plugin-info-dialog.php:
|
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:
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: includes/fs-plugin-info-dialog.php:
|
197 |
-
msgid "
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: includes/fs-plugin-info-dialog.php:
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
|
204 |
-
#: includes/fs-plugin-info-dialog.php:
|
205 |
-
|
206 |
-
|
|
|
207 |
|
208 |
-
#: includes/fs-plugin-info-dialog.php:
|
209 |
msgctxt "as the plugin author"
|
210 |
msgid "Author"
|
211 |
msgstr "Author"
|
212 |
|
213 |
-
#: includes/fs-plugin-info-dialog.php:
|
214 |
msgid "Last Updated"
|
215 |
msgstr "Last Updated"
|
216 |
|
217 |
-
#: includes/fs-plugin-info-dialog.php:
|
218 |
-
|
219 |
-
|
|
|
220 |
|
221 |
-
#: includes/fs-plugin-info-dialog.php:
|
222 |
msgid "Requires WordPress Version"
|
223 |
msgstr "Requires WordPress Version"
|
224 |
|
225 |
-
#: includes/fs-plugin-info-dialog.php:
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#: includes/fs-plugin-info-dialog.php:
|
230 |
msgid "Compatible up to"
|
231 |
msgstr "Compatible up to"
|
232 |
|
233 |
-
#: includes/fs-plugin-info-dialog.php:
|
234 |
msgid "Downloaded"
|
235 |
msgstr "Downloaded"
|
236 |
|
237 |
-
#: includes/fs-plugin-info-dialog.php:
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid "WordPress.org Plugin Page"
|
240 |
msgstr "WordPress.org Plugin Page"
|
241 |
|
242 |
-
#: includes/fs-plugin-info-dialog.php:
|
243 |
msgid "Plugin Homepage"
|
244 |
msgstr "Plugin Homepage"
|
245 |
|
246 |
-
#: includes/fs-plugin-info-dialog.php:
|
247 |
msgid "Donate to this plugin"
|
248 |
msgstr "Donate to this plugin"
|
249 |
|
250 |
-
#: includes/fs-plugin-info-dialog.php:
|
251 |
msgid "Average Rating"
|
252 |
msgstr "Average Rating"
|
253 |
|
254 |
-
#: includes/fs-plugin-info-dialog.php:
|
255 |
msgid "based on %s"
|
256 |
msgstr "based on %s"
|
257 |
|
258 |
-
#: includes/fs-plugin-info-dialog.php:
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
#: includes/fs-plugin-info-dialog.php:880
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "Contributors"
|
264 |
msgstr "Contributors"
|
265 |
|
266 |
-
#: includes/fs-plugin-info-dialog.php:
|
267 |
msgid "Warning"
|
268 |
msgstr "Warning"
|
269 |
|
270 |
-
#: includes/fs-plugin-info-dialog.php:
|
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:
|
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 |
-
#:
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#:
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
|
286 |
-
#: templates/account.php:
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: templates/account.php:
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: templates/account.php:
|
295 |
-
msgid "
|
296 |
-
msgstr "
|
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:
|
303 |
-
msgid "
|
304 |
-
msgstr "
|
305 |
|
306 |
-
|
307 |
-
|
308 |
-
|
|
|
309 |
|
310 |
-
|
311 |
-
|
312 |
-
|
|
|
313 |
|
314 |
-
|
315 |
-
|
316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
|
318 |
-
#: templates/account.php:
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: templates/account.php:
|
323 |
-
msgid "
|
324 |
-
msgstr "
|
325 |
|
326 |
-
#: templates/account.php:
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
|
330 |
-
#: templates/account.php:
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#: templates/account.php:
|
335 |
-
msgid "
|
336 |
-
msgstr "
|
337 |
|
338 |
-
#: templates/account.php:
|
339 |
-
msgid "
|
340 |
-
msgstr "
|
341 |
|
342 |
-
#: templates/account.php:
|
343 |
-
|
344 |
-
|
|
|
345 |
|
346 |
-
#: templates/account.php:
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#: templates/account.php:
|
351 |
-
msgid "
|
352 |
-
msgstr "
|
353 |
|
354 |
-
#: templates/account.php:
|
355 |
-
msgid "
|
356 |
-
msgstr "
|
357 |
|
358 |
-
#: templates/account.php:
|
359 |
-
msgid "
|
360 |
-
msgstr "
|
361 |
|
362 |
-
#: templates/account.php:
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
|
366 |
-
#: templates/account.php:
|
367 |
-
msgid "
|
368 |
-
msgstr "
|
369 |
|
370 |
-
#: templates/account.php:
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
|
374 |
-
#: templates/account.php:
|
375 |
-
|
376 |
-
|
|
|
377 |
|
378 |
-
#: templates/account.php:
|
379 |
-
msgid "
|
380 |
-
msgstr "
|
381 |
|
382 |
-
#: templates/account.php:
|
383 |
-
msgid "
|
384 |
-
msgstr "
|
385 |
|
386 |
-
#: templates/account.php:
|
387 |
-
msgid "
|
388 |
-
msgstr "
|
389 |
|
390 |
-
#: templates/account.php:
|
391 |
-
msgid "
|
392 |
-
msgstr "
|
393 |
|
394 |
-
#: templates/account.php:
|
395 |
-
|
396 |
-
|
|
|
397 |
|
398 |
-
#: templates/account.php:
|
399 |
-
msgid "
|
400 |
-
msgstr "
|
401 |
|
402 |
-
#: templates/account.php:
|
403 |
-
msgid "
|
404 |
-
msgstr "
|
405 |
|
406 |
-
#: templates/account.php:
|
407 |
-
msgid "
|
408 |
-
msgstr "
|
409 |
|
410 |
-
#: templates/account.php:
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#: templates/account.php:
|
415 |
-
msgid "
|
416 |
-
msgstr "
|
417 |
|
418 |
-
#: templates/account.php:
|
419 |
-
|
420 |
-
|
|
|
421 |
|
422 |
-
#: templates/account.php:
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
|
426 |
-
#: templates/account.php:
|
427 |
-
|
428 |
-
|
|
|
429 |
|
430 |
-
#: templates/account.php:
|
431 |
-
|
432 |
-
|
|
|
433 |
|
434 |
-
#: templates/account.php:
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
|
438 |
-
#: templates/account.php:
|
439 |
-
|
440 |
-
|
|
|
441 |
|
442 |
-
#: templates/account.php:
|
443 |
-
msgid "
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: templates/account.php:
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
|
450 |
-
#: templates/account.php:
|
451 |
-
msgid "
|
452 |
-
msgstr "
|
453 |
|
454 |
-
#: templates/account.php:
|
455 |
-
msgid "
|
456 |
-
msgstr "
|
457 |
|
458 |
-
#: templates/account.php:
|
459 |
-
|
460 |
-
|
|
|
461 |
|
462 |
#: templates/add-ons.php:36
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
-
|
466 |
-
#: templates/add-ons.php:43
|
467 |
-
msgid "oops"
|
468 |
-
msgstr "oops"
|
469 |
|
470 |
#: templates/add-ons.php:44
|
471 |
-
msgid "add-ons
|
472 |
-
msgstr "add-ons
|
473 |
|
474 |
#: templates/add-ons.php:135
|
475 |
msgid "View details"
|
476 |
msgstr "View details"
|
477 |
|
478 |
-
#: templates/admin-notice.php:
|
479 |
-
|
480 |
-
|
|
|
481 |
|
482 |
-
#: templates/auto-installation.php:
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
|
486 |
-
#: templates/auto-installation.php:
|
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:
|
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:
|
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:
|
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:
|
511 |
-
msgid "
|
512 |
-
msgstr "
|
|
|
|
|
|
|
|
|
513 |
|
514 |
#: templates/connect.php:135
|
515 |
-
msgid "
|
516 |
-
msgstr "
|
517 |
|
518 |
-
#: templates/connect.php:
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
|
522 |
-
#: templates/connect.php:
|
523 |
-
|
524 |
-
|
|
|
525 |
|
526 |
-
#: templates/connect.php:
|
527 |
-
msgid "
|
528 |
-
msgstr "
|
529 |
|
530 |
-
#: templates/connect.php:
|
531 |
-
msgid "$
|
532 |
-
msgstr "$
|
533 |
|
534 |
-
#: templates/connect.php:
|
535 |
-
msgid "
|
536 |
-
msgstr "
|
537 |
|
538 |
-
#: templates/connect.php:
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#: templates/connect.php:
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
|
546 |
-
#: templates/connect.php:
|
547 |
-
|
548 |
-
|
|
|
549 |
|
550 |
-
#: templates/connect.php:
|
551 |
-
msgid "
|
552 |
-
msgstr "
|
553 |
|
554 |
-
#: templates/connect.php:
|
555 |
-
msgid "
|
556 |
-
msgstr "
|
557 |
|
558 |
-
#: templates/connect.php:
|
559 |
-
msgid "
|
560 |
-
msgstr "
|
561 |
|
562 |
-
#: templates/connect.php:
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
565 |
|
566 |
-
#: templates/connect.php:
|
567 |
-
msgid "
|
568 |
-
msgstr "
|
569 |
|
570 |
-
#: templates/connect.php:
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
|
574 |
#: templates/connect.php:316
|
575 |
-
msgid "
|
576 |
-
msgstr "
|
577 |
|
578 |
-
#: templates/
|
579 |
-
msgid "
|
580 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
#: templates/debug.php:17
|
583 |
-
|
584 |
-
|
|
|
585 |
|
586 |
-
#: templates/debug.php:
|
587 |
-
|
588 |
-
|
|
|
589 |
|
590 |
-
#: templates/debug.php:
|
591 |
-
msgid "
|
592 |
-
msgstr "
|
593 |
|
594 |
-
#: templates/debug.php:
|
595 |
-
|
596 |
-
|
|
|
597 |
|
598 |
-
#: templates/debug.php:
|
599 |
-
msgid "
|
600 |
-
msgstr "
|
601 |
|
602 |
-
#: templates/debug.php:
|
603 |
-
msgid "delete
|
604 |
-
msgstr "delete
|
605 |
|
606 |
-
#: templates/debug.php:
|
607 |
-
msgid "
|
608 |
-
msgstr "
|
609 |
|
610 |
-
#: templates/debug.php:
|
611 |
-
msgid "
|
612 |
-
msgstr "
|
613 |
|
614 |
-
#: templates/debug.php:
|
615 |
-
msgid "
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: templates/debug.php:
|
619 |
msgid "Load DB Option"
|
620 |
msgstr "Load DB Option"
|
621 |
|
622 |
-
#: templates/debug.php:
|
623 |
msgid "Set DB Option"
|
624 |
msgstr "Set DB Option"
|
625 |
|
626 |
-
#: templates/debug.php:
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
|
630 |
-
#: templates/debug.php:
|
631 |
-
msgid "
|
632 |
-
msgstr "
|
633 |
|
634 |
-
#: templates/debug.php:
|
635 |
-
|
636 |
-
|
|
|
637 |
|
638 |
-
#: templates/debug.php:
|
639 |
-
msgid "
|
640 |
-
msgstr "
|
641 |
|
642 |
-
#: templates/debug.php:
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
|
646 |
-
#: templates/debug.php:
|
647 |
-
msgid "
|
648 |
-
msgstr "
|
649 |
|
650 |
-
#: templates/debug.php:
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
|
654 |
-
#: templates/debug.php:
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#: templates/debug.php:
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#: templates/debug.php:
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
#: templates/debug.php:
|
667 |
-
|
668 |
-
|
|
|
669 |
|
670 |
-
#: templates/debug.php:
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#: templates/debug.php:
|
675 |
-
|
676 |
-
|
|
|
677 |
|
678 |
-
#: templates/debug.php:
|
|
|
|
|
|
|
|
|
|
|
679 |
msgid "Simulate Trial"
|
680 |
msgstr "Simulate Trial"
|
681 |
|
682 |
-
#: templates/debug.php:
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
685 |
|
686 |
-
#: templates/debug.php:
|
687 |
-
msgid "
|
688 |
-
msgstr "
|
689 |
|
690 |
-
#: templates/debug.php:
|
691 |
-
msgid "
|
692 |
-
msgstr "
|
693 |
|
694 |
-
#: templates/debug.php:
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
697 |
|
698 |
-
#: templates/debug.php:
|
699 |
-
msgid "
|
700 |
-
msgstr "
|
701 |
|
702 |
-
#: templates/debug.php:
|
703 |
-
msgid "
|
704 |
-
msgstr "
|
705 |
|
706 |
-
#: templates/debug.php:
|
707 |
-
msgid "
|
708 |
-
msgstr "
|
709 |
|
710 |
-
#: templates/debug.php:
|
711 |
-
msgid "
|
712 |
-
msgstr "
|
713 |
|
714 |
-
#: templates/debug.php:
|
715 |
-
msgid "
|
716 |
-
msgstr "
|
717 |
|
718 |
-
#: templates/debug.php:
|
719 |
-
msgid "
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#: templates/debug.php:
|
723 |
-
|
724 |
-
|
|
|
725 |
|
726 |
-
#: templates/debug.php:
|
727 |
-
msgid "
|
728 |
-
msgstr "
|
729 |
|
730 |
-
#: templates/debug.php:
|
731 |
-
msgid "
|
732 |
-
msgstr "
|
733 |
|
734 |
-
#: templates/debug.php:
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
|
738 |
-
#: templates/debug.php:
|
739 |
-
msgid "
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: templates/debug.php:
|
743 |
-
msgid "
|
744 |
-
msgstr "
|
745 |
|
746 |
-
#: templates/debug.php:
|
747 |
-
msgid "
|
748 |
-
msgstr "
|
749 |
|
750 |
-
#: templates/debug.php:
|
751 |
-
msgid "
|
752 |
-
msgstr "
|
753 |
|
754 |
-
#: templates/debug.php:
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#: templates/debug.php:
|
759 |
-
msgid "
|
760 |
-
msgstr "
|
761 |
|
762 |
-
#: templates/debug.php:
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
|
766 |
-
#: templates/debug.php:
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
|
770 |
-
#: templates/debug.php:
|
771 |
-
msgid "
|
772 |
-
msgstr "
|
773 |
|
774 |
-
#: templates/
|
775 |
-
msgid "
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#:
|
779 |
-
msgid "
|
780 |
-
msgstr "
|
781 |
|
782 |
-
#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:
|
|
|
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:
|
795 |
-
|
796 |
-
|
|
|
|
|
|
|
|
|
|
|
797 |
|
798 |
-
#: templates/account/billing.php:
|
799 |
msgid "Business name"
|
800 |
msgstr "Business name"
|
801 |
|
802 |
-
#: templates/account/billing.php:
|
803 |
msgid "Tax / VAT ID"
|
804 |
msgstr "Tax / VAT ID"
|
805 |
|
806 |
-
#: templates/account/billing.php:
|
807 |
msgid "Address Line %d"
|
808 |
msgstr "Address Line %d"
|
809 |
|
810 |
-
#: templates/account/billing.php:
|
811 |
msgid "City"
|
812 |
msgstr "City"
|
813 |
|
814 |
-
#: templates/account/billing.php:
|
815 |
msgid "Town"
|
816 |
msgstr "Town"
|
817 |
|
818 |
-
#: templates/account/billing.php:
|
819 |
msgid "ZIP / Postal Code"
|
820 |
msgstr "ZIP / Postal Code"
|
821 |
|
822 |
-
#: templates/account/billing.php:
|
823 |
msgid "Country"
|
824 |
msgstr "Country"
|
825 |
|
826 |
-
#: templates/account/billing.php:
|
827 |
msgid "Select Country"
|
828 |
msgstr "Select Country"
|
829 |
|
830 |
-
#: templates/account/billing.php:
|
831 |
msgid "State"
|
832 |
msgstr "State"
|
833 |
|
834 |
-
#: templates/account/billing.php:
|
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 "
|
848 |
-
msgstr "
|
849 |
|
850 |
#: templates/account/payments.php:36
|
851 |
-
msgid "
|
852 |
-
msgstr "
|
853 |
|
854 |
#: templates/account/payments.php:37
|
855 |
-
msgid "
|
856 |
-
msgstr "
|
857 |
|
858 |
#: templates/account/payments.php:38, templates/account/payments.php:50
|
859 |
-
msgid "
|
860 |
-
msgstr "
|
861 |
|
862 |
-
#: templates/debug/api-calls.php:
|
863 |
msgid "API"
|
864 |
msgstr "API"
|
865 |
|
866 |
-
#: templates/debug/api-calls.php:
|
867 |
msgid "Method"
|
868 |
msgstr "Method"
|
869 |
|
870 |
-
#: templates/debug/api-calls.php:
|
871 |
msgid "Code"
|
872 |
msgstr "Code"
|
873 |
|
874 |
-
#: templates/debug/api-calls.php:
|
875 |
msgid "Length"
|
876 |
msgstr "Length"
|
877 |
|
878 |
-
#: templates/debug/api-calls.php:
|
|
|
879 |
msgid "Path"
|
880 |
msgstr "Path"
|
881 |
|
882 |
-
#: templates/debug/api-calls.php:
|
883 |
msgid "Body"
|
884 |
msgstr "Body"
|
885 |
|
886 |
-
#: templates/debug/api-calls.php:
|
887 |
msgid "Result"
|
888 |
msgstr "Result"
|
889 |
|
890 |
-
#: templates/debug/api-calls.php:
|
891 |
msgid "Start"
|
892 |
msgstr "Start"
|
893 |
|
894 |
-
#: templates/debug/api-calls.php:
|
895 |
msgid "End"
|
896 |
msgstr "End"
|
897 |
|
@@ -899,306 +1650,327 @@ msgstr "End"
|
|
899 |
msgid "Log"
|
900 |
msgstr "Log"
|
901 |
|
902 |
-
|
903 |
-
|
904 |
-
|
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 |
-
|
915 |
-
|
916 |
-
|
|
|
917 |
|
918 |
-
#: templates/debug/plugins-themes-sync.php:
|
|
|
919 |
msgid "sec"
|
920 |
msgstr "sec"
|
921 |
|
922 |
-
#: templates/debug/plugins-themes-sync.php:
|
923 |
-
msgid "
|
924 |
-
msgstr "
|
925 |
-
|
926 |
-
#: templates/debug/plugins-themes-sync.php:49
|
927 |
-
msgid "themes"
|
928 |
-
msgstr "themes"
|
929 |
|
930 |
-
#: templates/debug/
|
931 |
-
msgid "
|
932 |
-
msgstr "
|
933 |
|
934 |
-
#: templates/debug/scheduled-crons.php:
|
935 |
-
msgid "
|
936 |
-
msgstr "
|
937 |
|
938 |
-
#: templates/debug/scheduled-crons.php:
|
939 |
-
msgid "
|
940 |
-
msgstr "
|
941 |
|
942 |
#: templates/debug/scheduled-crons.php:82
|
943 |
-
msgid "
|
944 |
-
msgstr "
|
|
|
|
|
|
|
|
|
945 |
|
946 |
#: templates/debug/scheduled-crons.php:84
|
|
|
|
|
|
|
|
|
947 |
msgid "Next"
|
948 |
msgstr "Next"
|
949 |
|
950 |
#: templates/forms/affiliation.php:81
|
951 |
-
msgid "
|
952 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
|
954 |
-
#: templates/forms/affiliation.php:
|
955 |
-
msgid "affiliate
|
956 |
-
msgstr "affiliate
|
957 |
|
958 |
-
#: templates/forms/affiliation.php:
|
959 |
-
msgid "
|
960 |
-
msgstr "
|
961 |
|
962 |
-
#: templates/forms/affiliation.php:
|
963 |
-
msgid "
|
964 |
-
msgstr "
|
965 |
|
966 |
-
#: templates/forms/affiliation.php:
|
967 |
-
msgid "
|
968 |
-
msgstr "
|
969 |
|
970 |
#: templates/forms/affiliation.php:136
|
971 |
-
msgid "
|
972 |
-
msgstr "
|
973 |
|
974 |
-
#: templates/forms/affiliation.php:
|
975 |
-
msgid "commission
|
976 |
-
msgstr "commission
|
977 |
|
978 |
#: templates/forms/affiliation.php:140
|
979 |
-
msgid "
|
980 |
-
msgstr "
|
981 |
|
982 |
-
#: templates/forms/affiliation.php:
|
983 |
-
msgid "
|
984 |
-
msgstr "
|
985 |
|
986 |
-
#: templates/forms/affiliation.php:
|
987 |
-
msgid "
|
988 |
-
msgstr "
|
989 |
|
990 |
-
#: templates/forms/affiliation.php:
|
991 |
-
msgid "
|
992 |
-
msgstr "
|
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 "
|
1000 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1001 |
|
1002 |
#: templates/forms/affiliation.php:153
|
1003 |
-
msgid "
|
1004 |
-
msgstr "
|
1005 |
|
1006 |
-
#: templates/forms/affiliation.php:
|
1007 |
-
msgid "
|
1008 |
-
msgstr "
|
1009 |
|
1010 |
-
#: templates/forms/affiliation.php:
|
1011 |
-
msgid "
|
1012 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1013 |
|
1014 |
#: templates/forms/affiliation.php:164
|
1015 |
-
msgid "
|
1016 |
-
msgstr "
|
1017 |
|
1018 |
#: templates/forms/affiliation.php:168
|
1019 |
-
msgid "
|
1020 |
-
msgstr "
|
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 "
|
1028 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1029 |
|
1030 |
#: templates/forms/affiliation.php:176
|
1031 |
-
msgid "
|
1032 |
-
msgstr "
|
1033 |
|
1034 |
-
#: templates/forms/affiliation.php:
|
1035 |
-
msgid "
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
-
#: templates/forms/affiliation.php:
|
1039 |
-
msgid "
|
1040 |
-
msgstr "
|
1041 |
|
1042 |
-
#: templates/forms/affiliation.php:
|
1043 |
-
msgid "
|
1044 |
-
msgstr "
|
1045 |
|
1046 |
#: templates/forms/affiliation.php:194
|
1047 |
-
msgid "
|
1048 |
-
msgstr "
|
1049 |
|
1050 |
#: templates/forms/affiliation.php:198
|
1051 |
-
msgid "
|
1052 |
-
msgstr "
|
1053 |
|
1054 |
-
#: templates/forms/affiliation.php:
|
1055 |
-
msgid "statistics
|
1056 |
-
msgstr "statistics
|
1057 |
|
1058 |
#: templates/forms/affiliation.php:205
|
1059 |
-
msgid "
|
1060 |
-
msgstr "
|
1061 |
|
1062 |
-
#: templates/forms/affiliation.php:
|
1063 |
-
msgid "
|
1064 |
-
msgstr "
|
1065 |
|
1066 |
-
#: templates/forms/affiliation.php:
|
1067 |
-
msgid "
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
-
#: templates/forms/affiliation.php:
|
1071 |
-
msgid "
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
-
#: templates/forms/affiliation.php:
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
-
#: templates/forms/affiliation.php:
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#: templates/forms/affiliation.php:
|
1083 |
-
msgid "
|
1084 |
-
msgstr "
|
1085 |
|
1086 |
-
#: templates/forms/affiliation.php:
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: templates/forms/affiliation.php:
|
1091 |
-
msgid "
|
1092 |
-
msgstr "
|
1093 |
|
1094 |
-
#: templates/forms/affiliation.php:
|
1095 |
-
msgid "
|
1096 |
-
msgstr "
|
1097 |
|
1098 |
#: templates/forms/license-activation.php:20
|
1099 |
-
msgid "
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
-
#: templates/forms/license-activation.php:
|
1103 |
-
msgid "
|
1104 |
-
msgstr "
|
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 |
-
|
1112 |
-
|
|
|
1113 |
|
1114 |
#: templates/forms/optout.php:31
|
1115 |
-
|
1116 |
-
|
|
|
1117 |
|
1118 |
#: templates/forms/optout.php:32
|
1119 |
-
msgid "
|
1120 |
-
msgstr "
|
1121 |
|
1122 |
-
#: templates/forms/optout.php:
|
1123 |
-
msgid "
|
1124 |
-
msgstr "
|
1125 |
|
1126 |
-
#: templates/forms/
|
1127 |
-
msgid "
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#: templates/forms/resend-key.php:
|
1131 |
-
msgid "
|
1132 |
-
msgstr "
|
1133 |
|
1134 |
#: templates/forms/resend-key.php:57
|
1135 |
-
msgid "
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#: templates/forms/trial-start.php:
|
1139 |
-
msgid "
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
-
#: templates/forms/trial-start.php:
|
1143 |
-
msgid "start-trial
|
1144 |
-
msgstr "start-trial
|
1145 |
|
1146 |
-
#: templates/
|
1147 |
-
msgid "
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
-
#: templates/plugin-info/
|
1151 |
-
msgid "
|
1152 |
-
msgstr "
|
1153 |
|
1154 |
#: templates/plugin-info/features.php:56
|
1155 |
-
msgid "
|
1156 |
-
msgstr "
|
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 "
|
1164 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1165 |
|
1166 |
#: templates/forms/deactivation/form.php:56
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1169 |
|
1170 |
-
#: templates/forms/deactivation/form.php:
|
1171 |
-
msgid "
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
-
#: templates/forms/deactivation/form.php:
|
1175 |
-
msgid "
|
1176 |
-
msgstr "
|
1177 |
|
1178 |
-
#: templates/forms/deactivation/form.php:
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#: templates/forms/deactivation/form.php:
|
1183 |
-
msgid "
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
-
#: templates/forms/deactivation/form.php:
|
1187 |
-
msgid "
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
-
#: templates/forms/deactivation/form.php:
|
1191 |
-
msgid "
|
1192 |
-
msgstr "
|
1193 |
|
1194 |
-
#: templates/forms/deactivation/form.php:
|
1195 |
-
msgid "
|
1196 |
-
msgstr "
|
1197 |
|
1198 |
#: templates/forms/deactivation/retry-skip.php:21
|
1199 |
-
msgid "
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
#: templates/forms/deactivation/retry-skip.php:23
|
1203 |
-
msgid "
|
1204 |
-
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_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 |
"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:
|
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:
|
29 |
msgid "Error"
|
30 |
msgstr "Error"
|
31 |
|
32 |
-
#: includes/class-freemius.php:
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "He encontrado un mejor %s"
|
35 |
|
36 |
-
#: includes/class-freemius.php:
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "¿Cuál es el nombre de %s?"
|
39 |
|
40 |
-
#: includes/class-freemius.php:
|
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:
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Desactivación"
|
47 |
|
48 |
-
#: includes/class-freemius.php:
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Cambiar Tema"
|
51 |
|
52 |
-
#: includes/class-freemius.
|
53 |
msgid "Other"
|
54 |
msgstr "Otra"
|
55 |
|
56 |
-
#: includes/class-freemius.php:
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Ya no necesito el %s"
|
59 |
|
60 |
-
#: includes/class-freemius.php:
|
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:
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s ha roto mi sitio"
|
67 |
|
68 |
-
#: includes/class-freemius.php:
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s de repente ha dejado de funcionar"
|
71 |
|
72 |
-
#: includes/class-freemius.php:
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "No puedo pagarlo durante más tiempo"
|
75 |
|
76 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "%s no funcionaba"
|
87 |
|
88 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
97 |
msgid "What feature?"
|
98 |
msgstr "¿Qué característica?"
|
99 |
|
100 |
-
#: includes/class-freemius.php:
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "%s no funciona"
|
103 |
|
104 |
-
#: includes/class-freemius.php:
|
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:
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "No es lo que estaba buscando"
|
111 |
|
112 |
-
#: includes/class-freemius.php:
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "¿Que has estado buscando?"
|
115 |
|
116 |
-
#: includes/class-freemius.php:
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "%s no funciona como esperaba"
|
119 |
|
120 |
-
#: includes/class-freemius.php:
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "¿Qué esperas?"
|
123 |
|
124 |
-
#: includes/class-freemius.
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Debug Freemius"
|
127 |
|
128 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Vamos, adelante"
|
143 |
|
144 |
-
#: includes/class-freemius.php:
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "No - sólo desactivar"
|
147 |
|
148 |
-
#: includes/class-freemius.
|
149 |
-
#: includes/class-freemius.
|
150 |
-
#: includes/class-freemius.
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Oops"
|
158 |
|
159 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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.
|
174 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "W00t"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Tienes una licencia %s."
|
190 |
|
191 |
-
#: includes/class-freemius.
|
192 |
-
#: includes/class-freemius.
|
193 |
-
#: includes/class-freemius.
|
194 |
-
#: includes/class-freemius.php:
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Vaya"
|
198 |
|
199 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
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:
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Comprar Licencia"
|
215 |
|
216 |
-
#: includes/class-freemius.
|
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:
|
221 |
msgid "start the trial"
|
222 |
msgstr "comenzar el período de prueba"
|
223 |
|
224 |
-
#: includes/class-freemius.
|
225 |
msgid "complete the install"
|
226 |
msgstr "completar la instalación"
|
227 |
|
228 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
242 |
msgid "Opt in to make \"%s\" Better!"
|
243 |
msgstr "Opt in to make \"%s\" Better!"
|
244 |
|
245 |
-
#: includes/class-freemius.php:
|
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.
|
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.
|
256 |
#: templates/debug.php:413
|
257 |
msgid "Plugin"
|
258 |
msgstr "Plugin"
|
259 |
|
260 |
-
#: includes/class-freemius.
|
261 |
#: templates/debug.php413, templates/forms/deactivation/form.php:64
|
262 |
msgid "Theme"
|
263 |
msgstr "Tema"
|
264 |
|
265 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
274 |
msgid "Account is pending activation."
|
275 |
msgstr "Account is pending activation."
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
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.
|
291 |
-
#: includes/class-freemius.php:
|
292 |
msgid "Couldn't activate %s."
|
293 |
msgstr "No se puede activar %s."
|
294 |
|
295 |
-
#: includes/class-freemius.
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "Please contact us with the following message:"
|
298 |
msgstr "Por favor contáctanos con el siguiente mensaje:"
|
299 |
|
300 |
-
#: includes/class-freemius.
|
301 |
msgid "Upgrade"
|
302 |
msgstr "Actualizar"
|
303 |
|
304 |
-
#: includes/class-freemius.php:
|
305 |
msgid "Start Trial"
|
306 |
msgstr "Comenzar el Período de Prueba"
|
307 |
|
308 |
-
#: includes/class-freemius.php:
|
309 |
msgid "Pricing"
|
310 |
msgstr "Precio"
|
311 |
|
312 |
-
#: includes/class-freemius.
|
313 |
msgid "Affiliation"
|
314 |
msgstr "Affiliation"
|
315 |
|
316 |
-
#: includes/class-freemius.
|
317 |
#: templates/account.php79, templates/debug.php:281
|
318 |
msgid "Account"
|
319 |
msgstr "Cuenta"
|
320 |
|
321 |
-
#: includes/class-freemius.
|
322 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
323 |
msgid "Contact Us"
|
324 |
msgstr "Contáctanos"
|
325 |
|
326 |
-
#: includes/class-freemius.
|
327 |
-
#: includes/class-freemius.
|
328 |
msgid "Add-Ons"
|
329 |
msgstr "Complementos"
|
330 |
|
331 |
-
#: includes/class-freemius.
|
332 |
msgctxt "noun"
|
333 |
msgid "Pricing"
|
334 |
msgstr "Precio"
|
335 |
|
336 |
-
#: includes/class-freemius.
|
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:
|
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:
|
346 |
msgctxt "a positive response"
|
347 |
msgid "Right on"
|
348 |
msgstr "Bien hecho"
|
349 |
|
350 |
-
#: includes/class-freemius.php:
|
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:
|
355 |
msgid "%s Add-on was successfully purchased."
|
356 |
msgstr "El complemento %s ha sido comprado correctamente."
|
357 |
|
358 |
-
#: includes/class-freemius.php:
|
359 |
msgid "Download the latest version"
|
360 |
msgstr "Descargar la última versión"
|
361 |
|
362 |
-
#: includes/class-freemius.php:
|
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.
|
368 |
-
#: includes/class-freemius.php:
|
369 |
msgid "Error received from the server:"
|
370 |
msgstr "Error recibido del servidor:"
|
371 |
|
372 |
-
#: includes/class-freemius.php:
|
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.
|
377 |
-
#: includes/class-freemius.php:
|
378 |
msgctxt ""
|
379 |
msgid "Hmm"
|
380 |
msgstr "Hmm"
|
381 |
|
382 |
-
#: includes/class-freemius.php:
|
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.
|
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:
|
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.
|
397 |
msgid "Please contact us here"
|
398 |
msgstr "Contacta aquí con nosotros"
|
399 |
|
400 |
-
#: includes/class-freemius.php:
|
401 |
msgid "Your plan was successfully upgraded."
|
402 |
msgstr "Tu plan se actualizó con éxito."
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "Your plan was successfully changed to %s."
|
406 |
msgstr "Tu plan se cambió correctamente a %s."
|
407 |
|
408 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
429 |
msgid "Your license was successfully activated."
|
430 |
msgstr "Tu licencia fue activada correctamente."
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
445 |
msgid "O.K"
|
446 |
msgstr "O.K"
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
461 |
msgid "You already utilized a trial before."
|
462 |
msgstr "Ya utilizaste un período de prueba antes."
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
489 |
msgid "Version %s was released."
|
490 |
msgstr "La versión %s se ha lanzado."
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Please download %s."
|
494 |
msgstr "Por favor descarga %s."
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "the latest %s version here"
|
498 |
msgstr "la última versión %s aquí"
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "New"
|
502 |
msgstr "Nuevo"
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "Seems like you got the latest release."
|
506 |
msgstr "Parece que tienes la última versión."
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "You are all good!"
|
510 |
msgstr "¡Está todo listo!"
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
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:
|
529 |
msgctxt "as congratulations"
|
530 |
msgid "Congrats"
|
531 |
msgstr "Felicidades"
|
532 |
|
533 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
542 |
msgid "Change Ownership"
|
543 |
msgstr "Cambiar Propietario"
|
544 |
|
545 |
-
#: includes/class-freemius.php:
|
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:
|
550 |
msgid "Please provide your full name."
|
551 |
msgstr "Por favor, dinos tu nombre completo."
|
552 |
|
553 |
-
#: includes/class-freemius.php:
|
554 |
msgid "Your name was successfully updated."
|
555 |
msgstr "Tu nombre fue actualizado correctamente."
|
556 |
|
557 |
-
#: includes/class-freemius.php:
|
558 |
msgid "You have successfully updated your %s."
|
559 |
msgstr "Has actualizado correctamente tu %s."
|
560 |
|
561 |
-
#: includes/class-freemius.php:
|
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:
|
566 |
msgctxt "advance notice of something that will need attention."
|
567 |
msgid "Heads up"
|
568 |
msgstr "Atención"
|
569 |
|
570 |
-
#: includes/class-freemius.php:
|
571 |
msgid "Awesome"
|
572 |
msgstr "Increíble"
|
573 |
|
574 |
-
#: includes/class-freemius.php:
|
575 |
msgctxt "exclamation"
|
576 |
msgid "Hey"
|
577 |
msgstr "Hey"
|
578 |
|
579 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
588 |
msgid "No credit card required"
|
589 |
msgstr "No se necesita tarjeta de crédito"
|
590 |
|
591 |
-
#: includes/class-freemius.
|
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:
|
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:
|
601 |
msgid "Learn more"
|
602 |
msgstr "Learn more"
|
603 |
|
604 |
-
#: includes/class-freemius.
|
605 |
#: templates/connect.php309, templates/forms/license-activation.php:24
|
606 |
msgid "Activate License"
|
607 |
msgstr "Activar Licencia"
|
608 |
|
609 |
-
#: includes/class-freemius.
|
610 |
msgid "Change License"
|
611 |
msgstr "Cambiar Licencia"
|
612 |
|
613 |
-
#: includes/class-freemius.php:
|
614 |
msgid "Opt Out"
|
615 |
msgstr "Darse de baja"
|
616 |
|
617 |
-
#: includes/class-freemius.
|
618 |
msgid "Opt In"
|
619 |
msgstr "Inscribirse"
|
620 |
|
621 |
-
#: includes/class-freemius.php:
|
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:
|
626 |
msgid "Download the latest %s version"
|
627 |
msgstr "Descargar la última versión %s"
|
628 |
|
629 |
-
#: includes/class-freemius.php:
|
630 |
msgid "Upload and activate the downloaded version"
|
631 |
msgstr "Cargar y activar la versión descargada"
|
632 |
|
633 |
-
#: includes/class-freemius.php:
|
634 |
msgid "How to upload and activate?"
|
635 |
msgstr "¿Cómo subirlo y activarlo?"
|
636 |
|
637 |
-
#: includes/class-freemius.php:
|
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.
|
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.
|
648 |
msgid "Premium version already active."
|
649 |
msgstr "Versión Premium ya activa."
|
650 |
|
651 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
660 |
msgid "Premium add-on version already installed."
|
661 |
msgstr "Versión del complemento Premium ya instalada."
|
662 |
|
663 |
-
#: includes/class-freemius.php:
|
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 "
|
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 "
|
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 "
|
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
|
877 |
|
878 |
#: includes/fs-plugin-info-dialog.php:832
|
879 |
msgid "Downloaded"
|
880 |
-
msgstr "
|
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 "
|
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 "
|
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 "
|
1406 |
|
1407 |
#: templates/debug.php:85
|
1408 |
msgid "Set DB Option"
|
1409 |
-
msgstr "
|
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 "
|
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
|
1595 |
|
1596 |
#: includes/debug/debug-bar-start.php:42
|
1597 |
msgid "Requests"
|
1598 |
-
msgstr "
|
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 "
|
1673 |
|
1674 |
#: templates/debug/api-calls.php:69
|
1675 |
msgid "Code"
|
1676 |
-
msgstr "
|
1677 |
|
1678 |
#: templates/debug/api-calls.php:70
|
1679 |
msgid "Length"
|
1680 |
-
msgstr "
|
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 "
|
1690 |
|
1691 |
#: templates/debug/api-calls.php:75
|
1692 |
msgid "Result"
|
1693 |
-
msgstr "
|
1694 |
|
1695 |
#: templates/debug/api-calls.php:76
|
1696 |
msgid "Start"
|
1697 |
-
msgstr "
|
1698 |
|
1699 |
#: templates/debug/api-calls.php:77
|
1700 |
msgid "End"
|
1701 |
-
msgstr "
|
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 "
|
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 "
|
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-
|
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:
|
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:
|
30 |
msgid "Error"
|
31 |
msgstr "שגיאה"
|
32 |
|
33 |
-
#: includes/class-freemius.php:
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "I found a better %s"
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "What's the %s's name?"
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
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:
|
46 |
msgid "Deactivation"
|
47 |
msgstr "דיאקטיבציה"
|
48 |
|
49 |
-
#: includes/class-freemius.php:
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "החלפת תֵמָה"
|
52 |
|
53 |
-
#: includes/class-freemius.
|
54 |
msgid "Other"
|
55 |
msgstr "אחר"
|
56 |
|
57 |
-
#: includes/class-freemius.php:
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "I no longer need the %s"
|
60 |
|
61 |
-
#: includes/class-freemius.php:
|
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:
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "ה%s הרס לי את האתר"
|
68 |
|
69 |
-
#: includes/class-freemius.php:
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "ה%s הפסיק פתאום לעבוד"
|
72 |
|
73 |
-
#: includes/class-freemius.php:
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "אני לא יכול/ה להמשיך לשלם על זה"
|
76 |
|
77 |
-
#: includes/class-freemius.php:
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
|
80 |
|
81 |
-
#: includes/class-freemius.php:
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
|
84 |
|
85 |
-
#: includes/class-freemius.php:
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "ה%s לא עבד"
|
88 |
|
89 |
-
#: includes/class-freemius.php:
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
|
92 |
|
93 |
-
#: includes/class-freemius.php:
|
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:
|
98 |
msgid "What feature?"
|
99 |
msgstr "איזה פיטצ'ר?"
|
100 |
|
101 |
-
#: includes/class-freemius.php:
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "ה%s לא עובד"
|
104 |
|
105 |
-
#: includes/class-freemius.php:
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
|
108 |
|
109 |
-
#: includes/class-freemius.php:
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "חיפשתי משהו אחר"
|
112 |
|
113 |
-
#: includes/class-freemius.php:
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "מה חיפשת?"
|
116 |
|
117 |
-
#: includes/class-freemius.php:
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "ה%s לא עבד כמצופה"
|
120 |
|
121 |
-
#: includes/class-freemius.php:
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "למה ציפית?"
|
124 |
|
125 |
-
#: includes/class-freemius.
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "ניפוי תקלות פרימיוס"
|
128 |
|
129 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "כן - בצעו את מה שצריך"
|
144 |
|
145 |
-
#: includes/class-freemius.php:
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "לא - פשוט כבה"
|
148 |
|
149 |
-
#: includes/class-freemius.
|
150 |
-
#: includes/class-freemius.
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "אופס"
|
159 |
|
160 |
-
#: includes/class-freemius.php:
|
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:
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s לא יכול לעבוד ללא %s."
|
168 |
|
169 |
-
#: includes/class-freemius.php:
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
|
173 |
|
174 |
-
#: includes/class-freemius.
|
175 |
-
#: includes/class-freemius.php:
|
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:
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s version was successfully activated."
|
182 |
|
183 |
-
#: includes/class-freemius.
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "W00t"
|
187 |
|
188 |
-
#: includes/class-freemius.php:
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "יש לך רישיון %s."
|
191 |
|
192 |
-
#: includes/class-freemius.
|
193 |
-
#: includes/class-freemius.
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.php:
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "יששש"
|
199 |
|
200 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
209 |
#: templates/add-ons.php:99
|
210 |
msgid "More information about %s"
|
211 |
msgstr "מידע נוסף אודות %s"
|
212 |
|
213 |
-
#: includes/class-freemius.php:
|
214 |
msgid "Purchase License"
|
215 |
msgstr "קניית רישיון"
|
216 |
|
217 |
-
#: includes/class-freemius.
|
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:
|
222 |
msgid "start the trial"
|
223 |
msgstr "התחל תקופת ניסיון"
|
224 |
|
225 |
-
#: includes/class-freemius.
|
226 |
msgid "complete the install"
|
227 |
msgstr "השלם התקנה"
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "You are just one step away - %s"
|
232 |
|
233 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
243 |
msgid "Opt in to make \"%s\" Better!"
|
244 |
msgstr "Opt in to make \"%s\" Better!"
|
245 |
|
246 |
-
#: includes/class-freemius.php:
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "The upgrade of %s was successfully completed."
|
249 |
|
250 |
-
#: includes/class-freemius.
|
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.
|
257 |
#: templates/debug.php:413
|
258 |
msgid "Plugin"
|
259 |
msgstr "תוסף"
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
#: templates/debug.php413, templates/forms/deactivation/form.php:64
|
263 |
msgid "Theme"
|
264 |
msgstr "תבנית"
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
275 |
msgid "Account is pending activation."
|
276 |
msgstr "Account is pending activation."
|
277 |
|
278 |
-
#: includes/class-freemius.php:
|
279 |
msgctxt "pluginX activation was successfully..."
|
280 |
msgid "%s activation was successfully completed."
|
281 |
msgstr "הפעלת %s הושלמה בהצלחה."
|
282 |
|
283 |
-
#: includes/class-freemius.php:
|
284 |
msgid "Your account was successfully activated with the %s plan."
|
285 |
msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
|
286 |
|
287 |
-
#: includes/class-freemius.
|
288 |
msgid "Your trial has been successfully started."
|
289 |
msgstr "הניסיון שלך הופעל בהצלחה."
|
290 |
|
291 |
-
#: includes/class-freemius.
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "Couldn't activate %s."
|
294 |
msgstr "לא ניתן להפעיל את %s."
|
295 |
|
296 |
-
#: includes/class-freemius.
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "Please contact us with the following message:"
|
299 |
msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
|
300 |
|
301 |
-
#: includes/class-freemius.
|
302 |
msgid "Upgrade"
|
303 |
msgstr "שדרג"
|
304 |
|
305 |
-
#: includes/class-freemius.php:
|
306 |
msgid "Start Trial"
|
307 |
msgstr "התחל תקופת ניסיון"
|
308 |
|
309 |
-
#: includes/class-freemius.php:
|
310 |
msgid "Pricing"
|
311 |
msgstr "מחירון"
|
312 |
|
313 |
-
#: includes/class-freemius.
|
314 |
msgid "Affiliation"
|
315 |
msgstr "אפיליאציה"
|
316 |
|
317 |
-
#: includes/class-freemius.
|
318 |
#: templates/account.php79, templates/debug.php:281
|
319 |
msgid "Account"
|
320 |
msgstr "חשבון"
|
321 |
|
322 |
-
#: includes/class-freemius.
|
323 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
324 |
msgid "Contact Us"
|
325 |
msgstr "יצירת קשר"
|
326 |
|
327 |
-
#: includes/class-freemius.
|
328 |
-
#: includes/class-freemius.
|
329 |
msgid "Add-Ons"
|
330 |
msgstr "Add-Ons"
|
331 |
|
332 |
-
#: includes/class-freemius.
|
333 |
msgctxt "noun"
|
334 |
msgid "Pricing"
|
335 |
msgstr "מחירון"
|
336 |
|
337 |
-
#: includes/class-freemius.
|
338 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
339 |
msgid "Support Forum"
|
340 |
msgstr "פורום תמיכה"
|
341 |
|
342 |
-
#: includes/class-freemius.php:
|
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:
|
347 |
msgctxt "a positive response"
|
348 |
msgid "Right on"
|
349 |
msgstr "מעולה"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgid "Your %s Add-on plan was successfully upgraded."
|
353 |
msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
|
354 |
|
355 |
-
#: includes/class-freemius.php:
|
356 |
msgid "%s Add-on was successfully purchased."
|
357 |
msgstr "ההרחבה %s נרכשה בהצלחה."
|
358 |
|
359 |
-
#: includes/class-freemius.php:
|
360 |
msgid "Download the latest version"
|
361 |
msgstr "הורד את הגרסה האחרונה"
|
362 |
|
363 |
-
#: includes/class-freemius.php:
|
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.
|
369 |
-
#: includes/class-freemius.php:
|
370 |
msgid "Error received from the server:"
|
371 |
msgstr "הוחזרה שגיאה מהשרת:"
|
372 |
|
373 |
-
#: includes/class-freemius.php:
|
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.
|
378 |
-
#: includes/class-freemius.php:
|
379 |
msgctxt ""
|
380 |
msgid "Hmm"
|
381 |
msgstr "Hmm"
|
382 |
|
383 |
-
#: includes/class-freemius.php:
|
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.
|
388 |
#: templates/add-ons.php:130
|
389 |
msgctxt "trial period"
|
390 |
msgid "Trial"
|
391 |
msgstr "ניסיון"
|
392 |
|
393 |
-
#: includes/class-freemius.php:
|
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.
|
398 |
msgid "Please contact us here"
|
399 |
msgstr "אנא צור איתנו קשר כאן"
|
400 |
|
401 |
-
#: includes/class-freemius.php:
|
402 |
msgid "Your plan was successfully upgraded."
|
403 |
msgstr "החבילה שודרגה בהצלחה."
|
404 |
|
405 |
-
#: includes/class-freemius.php:
|
406 |
msgid "Your plan was successfully changed to %s."
|
407 |
msgstr "החבילה עודכנה בהצלחה אל %s."
|
408 |
|
409 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
422 |
msgid "Your trial has expired. You can still continue using all our free features."
|
423 |
msgstr "תקופת הניסיון נגמרה. ביכולתך להמשיך להשתמש בכל הפיטצ'רים החינאמיים."
|
424 |
|
425 |
-
#: includes/class-freemius.php:
|
426 |
msgid "It looks like the license could not be activated."
|
427 |
msgstr "נראה שלא ניתן להפעיל את הרישיון."
|
428 |
|
429 |
-
#: includes/class-freemius.php:
|
430 |
msgid "Your license was successfully activated."
|
431 |
msgstr "הרישיון הופעל בהצלחה."
|
432 |
|
433 |
-
#: includes/class-freemius.php:
|
434 |
msgid "It looks like your site currently doesn't have an active license."
|
435 |
msgstr "נראה לאתר עדיין אין רישיון פעיל."
|
436 |
|
437 |
-
#: includes/class-freemius.php:
|
438 |
msgid "It looks like the license deactivation failed."
|
439 |
msgstr "נראה שניתוק הרישיון נכשל."
|
440 |
|
441 |
-
#: includes/class-freemius.php:
|
442 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
443 |
msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
|
444 |
|
445 |
-
#: includes/class-freemius.php:
|
446 |
msgid "O.K"
|
447 |
msgstr "אוקיי"
|
448 |
|
449 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
462 |
msgid "You already utilized a trial before."
|
463 |
msgstr "הניסיון כבר נוצל בעבר."
|
464 |
|
465 |
-
#: includes/class-freemius.php:
|
466 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
467 |
msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
|
468 |
|
469 |
-
#: includes/class-freemius.php:
|
470 |
msgid "Plan %s does not support a trial period."
|
471 |
msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
|
472 |
|
473 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
482 |
msgid "Your %s free trial was successfully cancelled."
|
483 |
msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
|
484 |
|
485 |
-
#: includes/class-freemius.php:
|
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:
|
490 |
msgid "Version %s was released."
|
491 |
msgstr "גרסה %s הושקה."
|
492 |
|
493 |
-
#: includes/class-freemius.php:
|
494 |
msgid "Please download %s."
|
495 |
msgstr "נא להוריד את %s."
|
496 |
|
497 |
-
#: includes/class-freemius.php:
|
498 |
msgid "the latest %s version here"
|
499 |
msgstr "גרסת ה-%s האחרונה כאן"
|
500 |
|
501 |
-
#: includes/class-freemius.php:
|
502 |
msgid "New"
|
503 |
msgstr "חדש"
|
504 |
|
505 |
-
#: includes/class-freemius.php:
|
506 |
msgid "Seems like you got the latest release."
|
507 |
msgstr "נראה שיש לך את הגרסה האחרונה."
|
508 |
|
509 |
-
#: includes/class-freemius.php:
|
510 |
msgid "You are all good!"
|
511 |
msgstr "את\\ה מסודר!"
|
512 |
|
513 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
526 |
msgid "%s is the new owner of the account."
|
527 |
msgstr "%s הינו הבעלים החד של חשבון זה."
|
528 |
|
529 |
-
#: includes/class-freemius.php:
|
530 |
msgctxt "as congratulations"
|
531 |
msgid "Congrats"
|
532 |
msgstr "מזל טוב"
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
543 |
msgid "Change Ownership"
|
544 |
msgstr "עדכון בעלות"
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
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:
|
551 |
msgid "Please provide your full name."
|
552 |
msgstr "נא למלא את שמך המלא."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgid "Your name was successfully updated."
|
556 |
msgstr "שמך עודכן בהצלחה."
|
557 |
|
558 |
-
#: includes/class-freemius.php:
|
559 |
msgid "You have successfully updated your %s."
|
560 |
msgstr "עידכנת בהצלחה את ה%s."
|
561 |
|
562 |
-
#: includes/class-freemius.php:
|
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:
|
567 |
msgctxt "advance notice of something that will need attention."
|
568 |
msgid "Heads up"
|
569 |
msgstr "לתשמות לבך"
|
570 |
|
571 |
-
#: includes/class-freemius.php:
|
572 |
msgid "Awesome"
|
573 |
msgstr "אדיר"
|
574 |
|
575 |
-
#: includes/class-freemius.php:
|
576 |
msgctxt "exclamation"
|
577 |
msgid "Hey"
|
578 |
msgstr "היי"
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
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:
|
585 |
msgid "No commitment for %s days - cancel anytime!"
|
586 |
msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
|
587 |
|
588 |
-
#: includes/class-freemius.php:
|
589 |
msgid "No credit card required"
|
590 |
msgstr "לא נדרש כרטיס אשראי"
|
591 |
|
592 |
-
#: includes/class-freemius.
|
593 |
msgctxt "call to action"
|
594 |
msgid "Start free trial"
|
595 |
msgstr "התחלת ניסיון חינם"
|
596 |
|
597 |
-
#: includes/class-freemius.php:
|
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:
|
602 |
msgid "Learn more"
|
603 |
msgstr "Learn more"
|
604 |
|
605 |
-
#: includes/class-freemius.
|
606 |
#: templates/connect.php309, templates/forms/license-activation.php:24
|
607 |
msgid "Activate License"
|
608 |
msgstr "הפעלת רישיון"
|
609 |
|
610 |
-
#: includes/class-freemius.
|
611 |
msgid "Change License"
|
612 |
msgstr "שינוי רישיון"
|
613 |
|
614 |
-
#: includes/class-freemius.php:
|
615 |
msgid "Opt Out"
|
616 |
msgstr "Opt Out"
|
617 |
|
618 |
-
#: includes/class-freemius.
|
619 |
msgid "Opt In"
|
620 |
msgstr "Opt In"
|
621 |
|
622 |
-
#: includes/class-freemius.php:
|
623 |
msgid "Please follow these steps to complete the upgrade"
|
624 |
msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
|
625 |
|
626 |
-
#: includes/class-freemius.php:
|
627 |
msgid "Download the latest %s version"
|
628 |
msgstr "הורד\\י את גרסת ה-%s העדכנית"
|
629 |
|
630 |
-
#: includes/class-freemius.php:
|
631 |
msgid "Upload and activate the downloaded version"
|
632 |
msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
|
633 |
|
634 |
-
#: includes/class-freemius.php:
|
635 |
msgid "How to upload and activate?"
|
636 |
msgstr "איך להעלות ולהפעיל?"
|
637 |
|
638 |
-
#: includes/class-freemius.php:
|
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.
|
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.
|
649 |
msgid "Premium version already active."
|
650 |
msgstr "Premium version already active."
|
651 |
|
652 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
661 |
msgid "Premium add-on version already installed."
|
662 |
msgstr "Premium add-on version already installed."
|
663 |
|
664 |
-
#: includes/class-freemius.php:
|
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-
|
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:
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
-
#: includes/
|
28 |
-
msgid "
|
29 |
-
msgstr "
|
30 |
-
|
31 |
-
#: includes/i18n.php:38
|
32 |
-
msgid "Add-On"
|
33 |
-
msgstr "Add-On"
|
34 |
|
35 |
-
#: includes/
|
36 |
-
msgid "
|
37 |
-
msgstr "
|
38 |
|
39 |
-
#: includes/
|
40 |
-
msgid "
|
41 |
-
msgstr "
|
42 |
|
43 |
-
#: includes/
|
44 |
-
msgid "
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#: includes/
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#: includes/
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#: includes/
|
56 |
-
msgid "
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#: includes/
|
60 |
-
|
61 |
-
|
62 |
-
msgstr "Aggiornamento"
|
63 |
|
64 |
-
#: includes/
|
65 |
-
msgid "
|
66 |
-
msgstr "
|
67 |
|
68 |
-
#: includes/
|
69 |
-
|
70 |
-
|
71 |
-
msgstr "Prezzi"
|
72 |
|
73 |
-
#: includes/
|
74 |
-
|
75 |
-
|
76 |
-
msgstr "Prezzo"
|
77 |
|
78 |
-
#: includes/
|
79 |
-
msgid "
|
80 |
-
msgstr "
|
81 |
|
82 |
-
#: includes/
|
83 |
-
|
84 |
-
|
85 |
-
msgstr "Downgrade"
|
86 |
|
87 |
-
#: includes/
|
88 |
-
|
89 |
-
|
90 |
-
msgstr "Annulla sottoscrizione"
|
91 |
|
92 |
-
#: includes/
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: includes/
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: includes/
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: includes/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: includes/
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: includes/
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: includes/
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
|
120 |
-
#: includes/
|
121 |
-
|
122 |
-
|
123 |
-
msgstr "Elimina"
|
124 |
|
125 |
-
#: includes/
|
126 |
-
|
127 |
-
|
128 |
-
msgstr "Mostra"
|
129 |
|
130 |
-
#: includes/
|
131 |
-
|
132 |
-
|
133 |
-
msgstr "Nascondi"
|
134 |
|
135 |
-
#: includes/
|
136 |
-
|
137 |
-
|
138 |
-
msgstr "Modifica"
|
139 |
|
140 |
-
#: includes/
|
141 |
-
|
142 |
-
|
143 |
-
msgstr "Aggiorna"
|
144 |
|
145 |
-
#: includes/
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: includes/
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: includes/
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: includes/
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: includes/
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: includes/
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
-
#: includes/
|
170 |
-
|
171 |
-
|
172 |
-
msgstr "Chiudi"
|
173 |
|
174 |
-
#: includes/
|
175 |
-
msgctxt "
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
178 |
|
179 |
-
#: includes/
|
180 |
-
|
181 |
-
|
|
|
182 |
|
183 |
-
#: includes/
|
184 |
-
|
185 |
-
msgid "
|
186 |
-
msgstr "
|
187 |
|
188 |
-
#: includes/
|
189 |
-
|
190 |
-
|
191 |
-
msgstr "Scarica la versione %s ora"
|
192 |
|
193 |
-
#: includes/
|
194 |
-
msgctxt "
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: includes/
|
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/
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
msgid "
|
209 |
-
msgstr "
|
210 |
|
211 |
-
#: includes/
|
212 |
-
|
213 |
-
|
214 |
-
msgstr "Prova gratuita"
|
215 |
|
216 |
-
#: includes/
|
217 |
-
|
218 |
-
|
219 |
-
msgstr "Inizia il periodo di prova gratuito"
|
220 |
|
221 |
-
#: includes/
|
222 |
-
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
|
226 |
-
#: includes/
|
227 |
msgid "Purchase License"
|
228 |
msgstr "Acquista licenza"
|
229 |
|
230 |
-
#: includes/
|
231 |
-
|
232 |
-
|
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/
|
256 |
-
msgid "
|
257 |
-
msgstr "
|
258 |
|
259 |
-
#: includes/
|
260 |
-
|
261 |
-
|
262 |
-
msgstr "Piano %s"
|
263 |
|
264 |
-
#: includes/
|
265 |
msgid "You are just one step away - %s"
|
266 |
msgstr "Sei a un passo dalla fine - %s"
|
267 |
|
268 |
-
#: includes/
|
269 |
-
msgctxt "%s - plugin name. As complete \"
|
270 |
msgid "Complete \"%s\" Activation Now"
|
271 |
msgstr "Completa l'attivazione di \"%s\" ora"
|
272 |
|
273 |
-
#: includes/
|
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/
|
278 |
-
msgid "Opt
|
279 |
-
msgstr "
|
280 |
|
281 |
-
#: includes/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: includes/
|
286 |
-
|
287 |
-
|
|
|
|
|
288 |
|
289 |
-
#: includes/
|
290 |
-
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: includes/
|
295 |
-
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: includes/
|
300 |
-
msgid "
|
301 |
-
msgstr "
|
302 |
|
303 |
-
#: includes/
|
304 |
-
msgid "
|
305 |
-
msgstr "
|
306 |
|
307 |
-
#: includes/
|
308 |
-
|
309 |
-
|
310 |
-
msgstr "Scade in %s"
|
311 |
|
312 |
-
#: includes/
|
313 |
-
msgctxt "
|
314 |
-
msgid "
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: includes/
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: includes/
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: includes/
|
326 |
-
|
327 |
-
|
|
|
328 |
|
329 |
-
#: includes/
|
330 |
-
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#: includes/
|
335 |
-
|
336 |
-
|
337 |
-
msgstr "%s fa"
|
338 |
|
339 |
-
#: includes/
|
340 |
-
msgid "
|
341 |
-
msgstr "
|
342 |
|
343 |
-
#: includes/
|
344 |
-
|
345 |
-
|
346 |
-
msgstr "Versione"
|
347 |
|
348 |
-
#: includes/
|
349 |
-
msgid "
|
350 |
-
msgstr "
|
351 |
|
352 |
-
#: includes/
|
353 |
-
|
354 |
-
|
|
|
355 |
|
356 |
-
#: includes/
|
357 |
-
|
358 |
-
|
|
|
359 |
|
360 |
-
#: includes/
|
361 |
-
|
362 |
-
|
|
|
363 |
|
364 |
-
#: includes/
|
365 |
-
|
366 |
-
|
|
|
367 |
|
368 |
-
#: includes/
|
369 |
-
|
370 |
-
|
|
|
371 |
|
372 |
-
#: includes/
|
373 |
-
msgid "
|
374 |
-
msgstr "
|
375 |
|
376 |
-
#: includes/
|
377 |
-
|
378 |
-
|
|
|
379 |
|
380 |
-
#: includes/
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
-
#: includes/
|
385 |
-
msgid "
|
386 |
-
msgstr "
|
387 |
|
388 |
-
#: includes/
|
389 |
-
|
390 |
-
|
391 |
-
msgstr "Percorso"
|
392 |
|
393 |
-
#: includes/
|
394 |
-
|
395 |
-
|
|
|
396 |
|
397 |
-
#: includes/
|
398 |
-
|
399 |
-
|
|
|
400 |
|
401 |
-
#: includes/
|
402 |
-
msgid "
|
403 |
-
msgstr "
|
404 |
|
405 |
-
#: includes/
|
406 |
-
|
407 |
-
|
408 |
-
|
|
|
409 |
|
410 |
-
#: includes/
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#: includes/
|
415 |
-
|
416 |
-
|
|
|
|
|
417 |
|
418 |
-
#: includes/
|
419 |
-
msgid "%s
|
420 |
-
msgstr "%s
|
421 |
|
422 |
-
#: includes/
|
423 |
-
|
424 |
-
|
425 |
-
msgstr "Siti"
|
426 |
|
427 |
-
#: includes/
|
428 |
-
msgid "
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#: includes/
|
432 |
-
msgid "
|
433 |
-
msgstr "
|
434 |
|
435 |
-
#: includes/
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
|
439 |
-
#: includes/
|
440 |
-
msgid "
|
441 |
-
msgstr "
|
442 |
|
443 |
-
#: includes/
|
444 |
-
|
445 |
-
|
446 |
-
msgstr "Nessuna chiave"
|
447 |
|
448 |
-
#: includes/
|
449 |
-
msgid "
|
450 |
-
msgstr "
|
451 |
|
452 |
-
#: includes/
|
453 |
-
|
454 |
-
|
455 |
-
msgstr "Sincronizza la licenza"
|
456 |
|
457 |
-
#: includes/
|
458 |
-
|
459 |
-
|
460 |
-
msgstr "Sincronizza"
|
461 |
|
462 |
-
#: includes/
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: includes/
|
467 |
-
msgid "
|
468 |
-
msgstr "
|
469 |
|
470 |
-
#: includes/
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
|
474 |
-
#: includes/
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
|
478 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
msgid "Change License"
|
480 |
msgstr "Cambia licenza"
|
481 |
|
482 |
-
#: includes/
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
|
486 |
-
#: includes/
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#: includes/
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#: includes/
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
|
498 |
-
#: includes/
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
|
502 |
-
#: includes/
|
503 |
-
msgid "
|
504 |
-
msgstr "
|
505 |
|
506 |
-
#: includes/
|
507 |
-
msgid "
|
508 |
-
msgstr "
|
509 |
|
510 |
-
#: includes/
|
511 |
-
|
512 |
-
|
|
|
|
|
513 |
|
514 |
-
#: includes/
|
515 |
-
|
516 |
-
|
517 |
-
msgstr "Attiva"
|
518 |
|
519 |
-
#: includes/
|
520 |
-
|
521 |
-
|
522 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
|
524 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
msgid "Install Now"
|
526 |
msgstr "Installa ora"
|
527 |
|
528 |
-
#: includes/
|
529 |
msgid "Install Update Now"
|
530 |
msgstr "Installa l'aggiornamento ora"
|
531 |
|
532 |
-
#: includes/
|
533 |
-
msgid "
|
534 |
-
msgstr "
|
535 |
-
|
536 |
-
#: includes/i18n.php:159
|
537 |
-
msgid "Localhost"
|
538 |
-
msgstr "Localhost"
|
539 |
|
540 |
-
#: includes/
|
541 |
-
|
542 |
-
|
543 |
-
msgstr "Attivare il piano %s"
|
544 |
|
545 |
-
#: includes/
|
546 |
-
msgctxt "
|
547 |
-
msgid "
|
548 |
-
msgstr "
|
549 |
|
550 |
-
#: includes/
|
551 |
-
|
552 |
-
|
|
|
553 |
|
554 |
-
#: includes/
|
555 |
-
|
556 |
-
|
|
|
557 |
|
558 |
-
#: includes/
|
559 |
-
|
560 |
-
|
|
|
561 |
|
562 |
-
#: includes/
|
563 |
-
|
564 |
-
|
|
|
565 |
|
566 |
-
#: includes/
|
567 |
-
|
568 |
-
|
|
|
569 |
|
570 |
-
#: includes/
|
571 |
-
|
572 |
-
|
|
|
573 |
|
574 |
-
#: includes/
|
575 |
-
|
576 |
-
|
|
|
577 |
|
578 |
-
#: includes/
|
579 |
-
msgid "
|
580 |
-
msgstr "
|
581 |
|
582 |
-
#: includes/
|
583 |
-
|
584 |
-
|
|
|
585 |
|
586 |
-
#: includes/
|
587 |
-
|
588 |
-
|
|
|
589 |
|
590 |
-
#: includes/
|
591 |
-
|
592 |
-
|
|
|
|
|
593 |
|
594 |
-
#: includes/
|
595 |
-
|
596 |
-
|
|
|
597 |
|
598 |
-
#: includes/
|
599 |
-
msgid "
|
600 |
-
msgstr "
|
601 |
|
602 |
-
#: includes/
|
603 |
-
|
604 |
-
|
|
|
|
|
|
|
605 |
|
606 |
-
#: includes/
|
607 |
-
|
608 |
-
|
|
|
609 |
|
610 |
-
#: includes/
|
611 |
-
|
612 |
-
|
|
|
613 |
|
614 |
-
#: includes/
|
615 |
-
msgid "
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: includes/
|
619 |
-
msgid "
|
620 |
-
msgstr "
|
621 |
|
622 |
-
#: includes/
|
623 |
-
msgid "
|
624 |
-
msgstr "
|
625 |
|
626 |
-
#: includes/
|
627 |
-
|
628 |
-
|
|
|
|
|
629 |
|
630 |
-
#: includes/
|
631 |
-
|
632 |
-
|
|
|
|
|
633 |
|
634 |
-
#: includes/
|
635 |
-
|
636 |
-
|
|
|
637 |
|
638 |
-
#: includes/
|
639 |
-
|
640 |
-
|
|
|
641 |
|
642 |
-
#: includes/
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
|
646 |
-
#: includes/
|
647 |
-
msgid "
|
648 |
-
msgstr "
|
649 |
|
650 |
-
#: includes/
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
|
654 |
-
#: includes/
|
655 |
-
|
656 |
-
|
|
|
|
|
657 |
|
658 |
-
#: includes/
|
659 |
-
|
660 |
-
|
|
|
661 |
|
662 |
-
#: includes/
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
#: includes/
|
667 |
-
|
668 |
-
|
|
|
669 |
|
670 |
-
#: includes/
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#: includes/
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#: includes/
|
679 |
-
msgid "
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#: includes/
|
683 |
-
|
684 |
-
|
685 |
-
msgstr "Other"
|
686 |
|
687 |
-
#: includes/
|
688 |
-
msgid "
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#: includes/
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
694 |
|
695 |
-
#: includes/
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
|
699 |
-
#: includes/
|
700 |
-
msgid "
|
701 |
-
msgstr "
|
702 |
|
703 |
-
#: includes/
|
704 |
-
|
705 |
-
|
|
|
706 |
|
707 |
-
#: includes/
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
|
711 |
-
#: includes/
|
712 |
-
msgid "
|
713 |
-
msgstr "
|
714 |
|
715 |
-
#: includes/
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
#: includes/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: includes/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: includes/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: includes/
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: includes/
|
736 |
-
msgid "
|
737 |
-
msgstr "
|
738 |
|
739 |
-
#: includes/
|
740 |
-
|
741 |
-
|
|
|
742 |
|
743 |
-
#: includes/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: includes/
|
748 |
-
|
749 |
-
|
750 |
-
msgstr "Hey %s,"
|
751 |
|
752 |
-
#: includes/
|
753 |
-
|
754 |
-
|
755 |
-
msgstr "Grazie %s!"
|
756 |
|
757 |
-
#: includes/
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
#:
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
|
765 |
-
#:
|
766 |
-
msgid "
|
767 |
-
msgstr "
|
768 |
|
769 |
-
#:
|
770 |
-
msgid "
|
771 |
-
msgstr "
|
772 |
|
773 |
-
#:
|
774 |
-
msgid "
|
775 |
-
msgstr "
|
776 |
|
777 |
-
|
778 |
-
|
779 |
-
|
|
|
780 |
|
781 |
-
|
782 |
-
|
783 |
-
|
|
|
784 |
|
785 |
-
|
786 |
-
|
787 |
-
|
|
|
788 |
|
789 |
-
#:
|
790 |
-
|
791 |
-
|
|
|
792 |
|
793 |
-
#:
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
|
797 |
-
#:
|
798 |
-
msgid "
|
799 |
-
msgstr "
|
800 |
|
801 |
-
#:
|
802 |
-
|
803 |
-
|
|
|
804 |
|
805 |
-
#:
|
806 |
-
|
807 |
-
|
|
|
808 |
|
809 |
-
#:
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#:
|
818 |
-
|
819 |
-
|
|
|
|
|
820 |
|
821 |
-
#:
|
822 |
-
msgid "
|
823 |
-
msgstr "
|
824 |
|
825 |
-
#:
|
826 |
-
msgid "
|
827 |
-
msgstr "
|
828 |
|
829 |
-
#:
|
830 |
-
msgid "
|
831 |
-
msgstr "
|
832 |
|
833 |
-
#:
|
834 |
-
msgid "
|
835 |
-
msgstr "
|
836 |
|
837 |
-
#:
|
838 |
-
msgid "
|
839 |
-
msgstr "
|
840 |
|
841 |
-
#:
|
842 |
-
|
843 |
-
|
844 |
-
msgstr "Attivazione"
|
845 |
|
846 |
-
#:
|
847 |
-
|
848 |
-
|
849 |
-
msgstr "Invio email"
|
850 |
|
851 |
-
#:
|
852 |
-
|
853 |
-
|
854 |
-
msgstr "Consenti & Continua"
|
855 |
|
856 |
-
#:
|
857 |
-
|
858 |
-
|
859 |
-
msgstr "Accetta e attiva la licenza"
|
860 |
|
861 |
-
#:
|
862 |
-
msgctxt "
|
863 |
-
msgid "
|
864 |
-
msgstr "
|
865 |
|
866 |
-
#:
|
867 |
-
msgid "
|
868 |
-
msgstr "
|
869 |
|
870 |
-
#:
|
871 |
-
msgid "
|
872 |
-
msgstr "
|
873 |
|
874 |
-
#:
|
875 |
-
msgid "
|
876 |
-
msgstr "
|
877 |
|
878 |
-
#:
|
879 |
-
msgid "
|
880 |
-
msgstr "
|
881 |
|
882 |
-
#:
|
883 |
-
msgid "
|
884 |
-
msgstr "
|
885 |
|
886 |
-
#:
|
887 |
-
|
888 |
-
|
|
|
889 |
|
890 |
-
#:
|
891 |
-
|
892 |
-
|
|
|
893 |
|
894 |
-
#:
|
895 |
-
|
896 |
-
|
|
|
897 |
|
898 |
-
#:
|
899 |
-
msgid "
|
900 |
-
msgstr "
|
901 |
|
902 |
-
#:
|
903 |
-
msgid "
|
904 |
-
msgstr "
|
905 |
|
906 |
-
#:
|
907 |
-
msgid "
|
908 |
-
msgstr "
|
909 |
|
910 |
-
#:
|
911 |
-
msgid "
|
912 |
-
msgstr "
|
913 |
|
914 |
-
#:
|
915 |
-
|
916 |
-
|
|
|
917 |
|
918 |
-
#:
|
919 |
-
msgid "
|
920 |
-
msgstr "
|
921 |
|
922 |
-
#:
|
923 |
-
msgid "
|
924 |
-
msgstr "
|
925 |
|
926 |
-
#:
|
927 |
-
msgid "
|
928 |
-
msgstr "
|
929 |
|
930 |
-
#:
|
931 |
-
msgid "
|
932 |
-
msgstr "
|
933 |
|
934 |
-
#:
|
935 |
-
msgid "
|
936 |
-
msgstr "
|
937 |
|
938 |
-
#:
|
939 |
-
|
940 |
-
|
|
|
941 |
|
942 |
-
#:
|
943 |
-
msgid "
|
944 |
-
msgstr "
|
945 |
|
946 |
-
#:
|
947 |
-
|
948 |
-
|
|
|
949 |
|
950 |
-
#:
|
951 |
-
msgctxt "
|
952 |
-
msgid "
|
953 |
-
msgstr "
|
954 |
|
955 |
-
#:
|
956 |
-
|
957 |
-
|
958 |
-
|
|
|
|
|
959 |
|
960 |
-
#:
|
961 |
-
msgctxt "as
|
962 |
-
msgid "
|
963 |
-
msgstr "
|
964 |
|
965 |
-
#:
|
966 |
-
msgid "
|
967 |
-
msgstr "
|
968 |
|
969 |
-
#:
|
970 |
-
|
971 |
-
|
972 |
-
msgstr "Connesso"
|
973 |
|
974 |
-
#:
|
975 |
-
|
976 |
-
|
977 |
-
msgstr "Bloccato"
|
978 |
|
979 |
-
#:
|
980 |
-
|
981 |
-
|
982 |
-
msgstr "API"
|
983 |
|
984 |
-
#:
|
985 |
-
msgctxt "
|
986 |
-
msgid "
|
987 |
-
msgstr "
|
988 |
|
989 |
-
#:
|
990 |
-
|
991 |
-
|
992 |
-
msgstr "Versioni SDK"
|
993 |
|
994 |
-
#:
|
995 |
-
|
996 |
-
|
997 |
-
msgstr "Percorso del plugin"
|
998 |
|
999 |
-
#:
|
1000 |
-
|
1001 |
-
|
1002 |
-
msgstr "Percorso SDK"
|
1003 |
|
1004 |
-
#:
|
1005 |
-
|
1006 |
-
|
|
|
|
|
1007 |
|
1008 |
-
#:
|
1009 |
-
msgid "
|
1010 |
-
msgstr "
|
1011 |
|
1012 |
-
#:
|
1013 |
-
msgid "
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#:
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
|
1020 |
-
#:
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#:
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
#:
|
1029 |
-
msgid "
|
1030 |
-
msgstr "
|
1031 |
|
1032 |
-
#:
|
1033 |
-
msgid "
|
1034 |
-
msgstr "
|
1035 |
|
1036 |
-
#:
|
1037 |
-
msgid "
|
1038 |
-
msgstr "
|
1039 |
|
1040 |
-
#:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#:
|
1045 |
-
msgid "%s
|
1046 |
-
msgstr "%s
|
1047 |
|
1048 |
-
#:
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#:
|
1053 |
-
|
1054 |
-
|
|
|
1055 |
|
1056 |
-
#:
|
1057 |
-
msgid "
|
1058 |
-
msgstr "
|
1059 |
|
1060 |
-
#:
|
1061 |
-
msgid "
|
1062 |
-
msgstr "
|
1063 |
|
1064 |
-
#:
|
1065 |
-
msgid "
|
1066 |
-
msgstr "
|
1067 |
|
1068 |
-
#:
|
1069 |
-
msgid "
|
1070 |
-
msgstr "
|
1071 |
|
1072 |
-
#:
|
1073 |
-
msgid "
|
1074 |
-
msgstr "
|
1075 |
|
1076 |
-
#:
|
1077 |
-
|
1078 |
-
|
|
|
1079 |
|
1080 |
-
#:
|
1081 |
-
msgid "
|
1082 |
-
msgstr "
|
1083 |
|
1084 |
-
#:
|
1085 |
-
msgid "
|
1086 |
-
msgstr "
|
1087 |
|
1088 |
-
#:
|
1089 |
-
msgid "
|
1090 |
-
msgstr "
|
1091 |
|
1092 |
-
#:
|
1093 |
-
msgid "
|
1094 |
-
msgstr "
|
1095 |
|
1096 |
-
#:
|
1097 |
-
|
1098 |
-
|
1099 |
-
msgstr "Congratulazioni"
|
1100 |
|
1101 |
-
#:
|
1102 |
-
|
1103 |
-
|
1104 |
-
msgstr "Ops"
|
1105 |
|
1106 |
-
#:
|
1107 |
-
|
1108 |
-
|
1109 |
-
msgstr "Evvai"
|
1110 |
|
1111 |
-
#:
|
1112 |
-
|
1113 |
-
|
1114 |
-
msgstr "Forte"
|
1115 |
|
1116 |
-
#:
|
1117 |
-
|
1118 |
-
|
1119 |
-
msgstr "Sì"
|
1120 |
|
1121 |
-
#:
|
1122 |
-
|
1123 |
-
|
1124 |
-
msgstr "Uhm"
|
1125 |
|
1126 |
-
#:
|
1127 |
-
msgid "
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#:
|
1131 |
-
|
1132 |
-
|
1133 |
-
msgstr "Hey"
|
1134 |
|
1135 |
-
#:
|
1136 |
-
|
1137 |
-
|
1138 |
-
msgstr "Attenzione"
|
1139 |
|
1140 |
-
#:
|
1141 |
-
msgid "
|
1142 |
-
msgstr "
|
1143 |
|
1144 |
-
#:
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
|
1148 |
-
#:
|
1149 |
-
msgid "
|
1150 |
-
msgstr "
|
1151 |
|
1152 |
-
#:
|
1153 |
-
|
1154 |
-
|
|
|
1155 |
|
1156 |
-
#:
|
1157 |
-
|
1158 |
-
|
|
|
1159 |
|
1160 |
-
#:
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#:
|
1165 |
-
|
1166 |
-
|
|
|
1167 |
|
1168 |
-
#:
|
1169 |
-
|
1170 |
-
|
|
|
1171 |
|
1172 |
-
#:
|
1173 |
-
msgid "
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
-
#:
|
1177 |
-
|
1178 |
-
|
|
|
1179 |
|
1180 |
-
#:
|
1181 |
-
msgid "
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#:
|
1185 |
-
msgid "
|
1186 |
-
msgstr "
|
1187 |
|
1188 |
-
#:
|
1189 |
-
msgid "
|
1190 |
-
msgstr "
|
1191 |
|
1192 |
-
#:
|
1193 |
-
msgid "
|
1194 |
-
msgstr "
|
1195 |
|
1196 |
-
#:
|
1197 |
-
msgid "
|
1198 |
-
msgstr "
|
1199 |
|
1200 |
-
#:
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#:
|
1205 |
-
msgid "
|
1206 |
-
msgstr "
|
1207 |
|
1208 |
-
#:
|
1209 |
-
msgid "
|
1210 |
-
msgstr "
|
1211 |
|
1212 |
-
#:
|
1213 |
-
msgid "
|
1214 |
-
msgstr "
|
1215 |
|
1216 |
-
#:
|
1217 |
-
|
1218 |
-
|
|
|
1219 |
|
1220 |
-
#:
|
1221 |
-
msgid "
|
1222 |
-
msgstr "
|
1223 |
|
1224 |
-
#:
|
1225 |
-
|
1226 |
-
|
1227 |
-
msgstr "L' add-on %s è stato acquistato con successo."
|
1228 |
|
1229 |
-
#:
|
1230 |
-
msgid "
|
1231 |
-
msgstr "
|
1232 |
|
1233 |
-
#:
|
1234 |
-
msgid "
|
1235 |
-
msgstr "
|
1236 |
|
1237 |
-
#:
|
1238 |
-
msgid "
|
1239 |
-
msgstr "
|
1240 |
|
1241 |
-
#:
|
1242 |
-
|
1243 |
-
|
|
|
1244 |
|
1245 |
-
#:
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#:
|
1250 |
-
|
1251 |
-
|
|
|
1252 |
|
1253 |
-
#:
|
1254 |
-
msgid "
|
1255 |
-
msgstr "
|
1256 |
|
1257 |
-
#:
|
1258 |
-
|
1259 |
-
|
|
|
1260 |
|
1261 |
-
#:
|
1262 |
-
|
1263 |
-
|
|
|
1264 |
|
1265 |
-
#:
|
1266 |
-
msgid "
|
1267 |
-
msgstr "
|
1268 |
|
1269 |
-
#:
|
1270 |
-
msgid "
|
1271 |
-
msgstr "
|
1272 |
|
1273 |
-
#:
|
1274 |
-
|
1275 |
-
|
|
|
1276 |
|
1277 |
-
#:
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
|
1281 |
-
#:
|
1282 |
-
msgid "
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
-
#:
|
1286 |
-
msgid "
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#:
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#:
|
1294 |
-
msgid "
|
1295 |
-
msgstr "
|
1296 |
|
1297 |
-
#:
|
1298 |
-
msgid "
|
1299 |
-
msgstr "
|
1300 |
|
1301 |
-
#:
|
1302 |
-
|
1303 |
-
|
1304 |
-
msgstr "La versione %s é stata rilasciata."
|
1305 |
|
1306 |
-
#:
|
1307 |
-
msgid "
|
1308 |
-
msgstr "
|
1309 |
|
1310 |
-
#:
|
1311 |
-
|
1312 |
-
|
1313 |
-
msgstr "l'ultima versione %s é quì"
|
1314 |
|
1315 |
-
#:
|
1316 |
-
|
1317 |
-
|
|
|
1318 |
|
1319 |
-
#:
|
1320 |
-
|
1321 |
-
|
1322 |
-
msgstr "Inizia il periodo di prova gratuito"
|
1323 |
|
1324 |
-
#:
|
1325 |
-
msgid "
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
-
#:
|
1329 |
-
msgid "
|
1330 |
-
msgstr "
|
1331 |
|
1332 |
-
#:
|
1333 |
-
|
1334 |
-
|
|
|
1335 |
|
1336 |
-
#:
|
1337 |
-
|
1338 |
-
|
|
|
1339 |
|
1340 |
-
#:
|
1341 |
-
msgid "
|
1342 |
-
msgstr "
|
1343 |
|
1344 |
-
#:
|
1345 |
-
msgid "
|
1346 |
-
msgstr "
|
1347 |
|
1348 |
-
#:
|
1349 |
-
|
1350 |
-
|
|
|
1351 |
|
1352 |
-
#:
|
1353 |
-
msgid "
|
1354 |
-
msgstr "
|
1355 |
|
1356 |
-
#:
|
1357 |
-
msgid "
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
-
#:
|
1361 |
-
msgid "
|
1362 |
-
msgstr "
|
1363 |
|
1364 |
-
#:
|
1365 |
-
msgid "
|
1366 |
-
msgstr "
|
1367 |
|
1368 |
-
#:
|
1369 |
-
msgid "
|
1370 |
-
msgstr "
|
1371 |
|
1372 |
-
#: includes/
|
1373 |
-
|
1374 |
-
|
|
|
1375 |
|
1376 |
-
#: includes/
|
1377 |
-
|
1378 |
-
|
|
|
|
|
1379 |
|
1380 |
-
#: includes/
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
|
1384 |
-
#: includes/
|
1385 |
-
msgid "
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
-
#:
|
1389 |
-
|
1390 |
-
|
|
|
|
|
|
|
|
|
|
|
1391 |
|
1392 |
-
#:
|
1393 |
-
msgid "
|
1394 |
-
msgstr "
|
1395 |
|
1396 |
-
#:
|
1397 |
-
msgid "
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
-
#:
|
1401 |
-
|
1402 |
-
|
|
|
1403 |
|
1404 |
-
#:
|
1405 |
-
msgid "
|
1406 |
-
msgstr "
|
1407 |
|
1408 |
-
#:
|
1409 |
-
|
1410 |
-
|
1411 |
-
msgstr "%s richiede un accesso alla nostra API."
|
1412 |
|
1413 |
-
#:
|
1414 |
-
msgid "
|
1415 |
-
msgstr "
|
1416 |
|
1417 |
-
#:
|
1418 |
-
msgid "
|
1419 |
-
msgstr "
|
1420 |
|
1421 |
-
#:
|
1422 |
-
msgid "
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
-
#:
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
-
#:
|
1430 |
-
msgid "
|
1431 |
-
msgstr "
|
1432 |
|
1433 |
-
#:
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
-
#:
|
1438 |
-
msgid "
|
1439 |
-
msgstr "
|
1440 |
|
1441 |
-
#:
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#:
|
1446 |
-
msgid "
|
1447 |
-
msgstr "
|
1448 |
|
1449 |
-
#:
|
1450 |
-
msgid "
|
1451 |
-
msgstr "
|
1452 |
|
1453 |
-
#:
|
1454 |
-
msgid "
|
1455 |
-
msgstr "
|
1456 |
|
1457 |
-
#:
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
|
1461 |
-
#:
|
1462 |
-
msgid "
|
1463 |
-
msgstr "
|
1464 |
|
1465 |
-
#:
|
1466 |
-
|
1467 |
-
|
|
|
1468 |
|
1469 |
-
#:
|
1470 |
-
msgid "
|
1471 |
-
msgstr "
|
1472 |
|
1473 |
-
#:
|
1474 |
-
msgid "
|
1475 |
-
msgstr "
|
1476 |
|
1477 |
-
#:
|
1478 |
-
|
1479 |
-
|
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 |
-
#:
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#:
|
1487 |
-
msgid "
|
1488 |
-
msgstr "
|
1489 |
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
|
|
|
|
1493 |
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
|
|
|
|
1497 |
|
1498 |
-
#:
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
|
|
1502 |
|
1503 |
-
#:
|
1504 |
-
|
1505 |
-
|
1506 |
-
msgstr "%s non può funzionare senza il plugin."
|
1507 |
|
1508 |
-
#:
|
1509 |
-
|
1510 |
-
|
1511 |
-
msgstr "%s è stato attivato con successo."
|
1512 |
|
1513 |
-
#:
|
1514 |
-
|
1515 |
-
msgid "
|
1516 |
-
msgstr "
|
1517 |
|
1518 |
-
#:
|
1519 |
-
msgid "
|
1520 |
-
msgstr "
|
1521 |
|
1522 |
-
#:
|
1523 |
-
msgid "
|
1524 |
-
msgstr "
|
1525 |
|
1526 |
-
#:
|
1527 |
-
msgid "
|
1528 |
-
msgstr "
|
1529 |
|
1530 |
-
#:
|
1531 |
-
msgid "
|
1532 |
-
msgstr "
|
1533 |
|
1534 |
-
#:
|
1535 |
-
|
1536 |
-
|
1537 |
-
msgstr "Mensilmente"
|
1538 |
|
1539 |
-
#:
|
1540 |
-
|
1541 |
-
|
1542 |
-
msgstr "mese"
|
1543 |
|
1544 |
-
#:
|
1545 |
-
|
1546 |
-
|
1547 |
-
msgstr "Annuale"
|
1548 |
|
1549 |
-
#:
|
1550 |
-
|
1551 |
-
|
1552 |
-
msgstr "Annualmente"
|
1553 |
|
1554 |
-
#:
|
1555 |
-
|
1556 |
-
|
1557 |
-
msgstr "Una volta"
|
1558 |
|
1559 |
-
#:
|
1560 |
-
|
1561 |
-
|
1562 |
-
msgstr "anno"
|
1563 |
|
1564 |
-
#:
|
1565 |
-
msgid "
|
1566 |
-
msgstr "
|
1567 |
|
1568 |
-
#:
|
1569 |
-
|
1570 |
-
|
1571 |
-
msgstr "Migliore"
|
1572 |
|
1573 |
-
#:
|
1574 |
-
|
1575 |
-
|
1576 |
-
msgstr "Fatturato %s"
|
1577 |
|
1578 |
-
#:
|
1579 |
-
|
1580 |
-
|
1581 |
-
msgstr "Risparmia %s"
|
1582 |
|
1583 |
-
#:
|
1584 |
-
msgid "
|
1585 |
-
msgstr "
|
1586 |
|
1587 |
-
#:
|
1588 |
-
|
1589 |
-
|
1590 |
-
msgstr "Approva e inizia il periodo di prova gratuito"
|
1591 |
|
1592 |
-
#:
|
1593 |
-
msgid "
|
1594 |
-
msgstr "
|
1595 |
|
1596 |
-
#:
|
1597 |
-
msgid "
|
1598 |
-
msgstr "
|
1599 |
|
1600 |
-
#:
|
1601 |
-
msgid "
|
1602 |
-
msgstr "
|
1603 |
|
1604 |
-
#:
|
1605 |
-
msgid "
|
1606 |
-
msgstr "
|
1607 |
|
1608 |
-
#:
|
1609 |
-
msgid "
|
1610 |
-
msgstr "
|
1611 |
|
1612 |
-
#:
|
1613 |
-
msgid "
|
1614 |
-
msgstr "
|
1615 |
|
1616 |
-
#:
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
1619 |
|
1620 |
-
#:
|
1621 |
-
msgid "
|
1622 |
-
msgstr "
|
1623 |
|
1624 |
-
#:
|
1625 |
-
msgid "
|
1626 |
-
msgstr "
|
1627 |
|
1628 |
-
#:
|
1629 |
-
msgid "
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#:
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
|
1636 |
-
#:
|
1637 |
-
msgid "
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#:
|
1641 |
-
msgid "
|
1642 |
-
msgstr "
|
1643 |
|
1644 |
-
#:
|
1645 |
-
msgid "
|
1646 |
-
msgstr "
|
1647 |
|
1648 |
-
#:
|
1649 |
-
msgid "
|
1650 |
-
msgstr "
|
1651 |
|
1652 |
-
#:
|
1653 |
-
msgid "
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
-
#:
|
1657 |
-
msgid "
|
1658 |
-
msgstr "
|
1659 |
|
1660 |
-
#:
|
1661 |
-
msgid "
|
1662 |
-
msgstr "
|
1663 |
|
1664 |
-
#:
|
1665 |
-
msgid "
|
1666 |
-
msgstr "
|
1667 |
|
1668 |
-
#:
|
1669 |
-
msgid "
|
1670 |
-
msgstr "
|
1671 |
|
1672 |
-
#:
|
1673 |
-
msgid "
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
-
#:
|
1677 |
-
msgid "
|
1678 |
-
msgstr "
|
1679 |
|
1680 |
-
#:
|
1681 |
-
msgid "
|
1682 |
-
msgstr "
|
1683 |
|
1684 |
-
#:
|
1685 |
-
msgid "
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
-
#:
|
1689 |
-
msgid "
|
1690 |
-
msgstr "
|
1691 |
|
1692 |
-
#:
|
1693 |
-
msgid "
|
1694 |
-
msgstr "
|
1695 |
|
1696 |
-
#:
|
1697 |
-
msgid "
|
1698 |
-
msgstr "
|
1699 |
|
1700 |
-
#:
|
1701 |
-
msgid "
|
1702 |
-
msgstr "
|
1703 |
|
1704 |
-
#:
|
1705 |
-
|
1706 |
-
|
1707 |
-
msgstr "Descrizione"
|
1708 |
|
1709 |
-
#:
|
1710 |
-
|
1711 |
-
|
1712 |
-
msgstr "Installazione"
|
1713 |
|
1714 |
-
#:
|
1715 |
-
|
1716 |
-
|
1717 |
-
msgstr "FAQ"
|
1718 |
|
1719 |
-
#:
|
1720 |
-
msgctxt "
|
1721 |
-
msgid "
|
1722 |
-
msgstr "
|
1723 |
|
1724 |
-
#:
|
1725 |
-
msgctxt "
|
1726 |
-
msgid "
|
1727 |
-
msgstr "
|
1728 |
|
1729 |
-
#:
|
1730 |
-
|
1731 |
-
|
1732 |
-
msgstr "Altre note"
|
1733 |
|
1734 |
-
#:
|
1735 |
-
msgid "%s
|
1736 |
-
msgstr "%s
|
1737 |
|
1738 |
-
#:
|
1739 |
-
msgid "%s
|
1740 |
-
msgstr "%s
|
1741 |
|
1742 |
-
#:
|
1743 |
-
msgid "
|
1744 |
-
msgstr "
|
1745 |
|
1746 |
-
#:
|
1747 |
-
msgid "
|
1748 |
-
msgstr "
|
1749 |
|
1750 |
-
#:
|
1751 |
-
msgid "%s
|
1752 |
-
msgstr "%
|
1753 |
|
1754 |
-
#:
|
1755 |
-
msgid "%s
|
1756 |
-
msgstr "%s
|
1757 |
|
1758 |
-
#:
|
1759 |
-
msgid "
|
1760 |
-
msgstr "
|
1761 |
|
1762 |
-
#:
|
1763 |
-
|
1764 |
-
|
|
|
1765 |
|
1766 |
-
#:
|
1767 |
-
msgid "
|
1768 |
-
msgstr "
|
1769 |
|
1770 |
-
#:
|
1771 |
-
|
1772 |
-
|
1773 |
-
msgstr "Autore:"
|
1774 |
|
1775 |
-
#:
|
1776 |
-
msgid "
|
1777 |
-
msgstr "
|
1778 |
|
1779 |
-
#:
|
1780 |
-
msgid "
|
1781 |
-
msgstr "
|
1782 |
|
1783 |
-
#:
|
1784 |
-
msgid "
|
1785 |
-
msgstr "
|
1786 |
|
1787 |
-
#:
|
1788 |
-
msgid "
|
1789 |
-
msgstr "
|
1790 |
|
1791 |
-
#:
|
1792 |
-
msgid "
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
-
#:
|
1796 |
-
msgid "
|
1797 |
-
msgstr "
|
1798 |
|
1799 |
-
#:
|
1800 |
-
msgid "
|
1801 |
-
msgstr "
|
1802 |
|
1803 |
-
#:
|
1804 |
-
msgid "
|
1805 |
-
msgstr "
|
1806 |
|
1807 |
-
#:
|
1808 |
-
msgid "
|
1809 |
-
msgstr "
|
1810 |
|
1811 |
-
#:
|
1812 |
-
msgid "
|
1813 |
-
msgstr "
|
1814 |
|
1815 |
-
#:
|
1816 |
-
msgid "
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
-
#:
|
1820 |
-
msgid "
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
-
#:
|
1824 |
-
msgid "
|
1825 |
-
msgstr "
|
1826 |
|
1827 |
-
#:
|
1828 |
-
msgid "
|
1829 |
-
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-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-
|
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:
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
-
#: includes/
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
-
|
29 |
-
#: includes/i18n.php:38
|
30 |
-
msgid "Add-On"
|
31 |
-
msgstr "Add-On"
|
32 |
|
33 |
-
#: includes/
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: includes/
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#: includes/
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#: includes/
|
46 |
-
msgid "
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: includes/
|
50 |
-
msgid "
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#: includes/
|
54 |
-
msgid "
|
55 |
-
msgstr "
|
56 |
|
57 |
-
#: includes/
|
58 |
-
|
59 |
-
|
60 |
-
msgstr "アップグレード"
|
61 |
|
62 |
-
#: includes/
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#: includes/
|
67 |
-
|
68 |
-
|
69 |
-
msgstr "料金表"
|
70 |
|
71 |
-
#: includes/
|
72 |
-
|
73 |
-
|
74 |
-
msgstr "料金"
|
75 |
|
76 |
-
#: includes/
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#: includes/
|
81 |
-
|
82 |
-
|
83 |
-
msgstr "ダウングレード"
|
84 |
|
85 |
-
#: includes/
|
86 |
-
|
87 |
-
|
88 |
-
msgstr "Cancel Subscription"
|
89 |
|
90 |
-
#: includes/
|
91 |
-
msgid "
|
92 |
-
msgstr "
|
93 |
|
94 |
-
#: includes/
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#: includes/
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: includes/
|
103 |
-
msgid "
|
104 |
-
msgstr "%s
|
105 |
|
106 |
-
#: includes/
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#: includes/
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: includes/
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: includes/
|
119 |
-
|
120 |
-
|
121 |
-
msgstr "削除"
|
122 |
|
123 |
-
#: includes/
|
124 |
-
|
125 |
-
|
126 |
-
msgstr "表示"
|
127 |
|
128 |
-
#: includes/
|
129 |
-
|
130 |
-
|
131 |
-
msgstr "非表示"
|
132 |
|
133 |
-
#: includes/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "編集"
|
137 |
|
138 |
-
#: includes/
|
139 |
-
|
140 |
-
|
141 |
-
msgstr "更新"
|
142 |
|
143 |
-
#: includes/
|
144 |
-
msgid "
|
145 |
-
msgstr "
|
146 |
|
147 |
-
#: includes/
|
148 |
-
msgid "
|
149 |
-
msgstr "
|
150 |
|
151 |
-
#: includes/
|
152 |
-
msgid "
|
153 |
-
msgstr "
|
154 |
|
155 |
-
#: includes/
|
156 |
-
msgid "
|
157 |
-
msgstr "
|
158 |
|
159 |
-
#: includes/
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: includes/
|
164 |
-
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
-
#: includes/
|
168 |
-
|
169 |
-
|
170 |
-
msgstr "却下"
|
171 |
|
172 |
-
#: includes/
|
173 |
-
msgctxt "
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#: includes/
|
178 |
-
|
179 |
-
|
|
|
180 |
|
181 |
-
#: includes/
|
182 |
-
|
183 |
-
msgid "
|
184 |
-
msgstr "%s
|
185 |
|
186 |
-
#: includes/
|
187 |
-
|
188 |
-
|
189 |
-
msgstr "%s バージョンを今すぐダウンロード"
|
190 |
|
191 |
-
#: includes/
|
192 |
-
msgctxt "
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: includes/
|
197 |
-
msgctxt "E.g. you have a professional license."
|
198 |
msgid "You have a %s license."
|
199 |
msgstr "%s ライセンスを持っています。"
|
200 |
|
201 |
-
#: includes/
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#: includes/
|
210 |
-
|
211 |
-
|
212 |
-
msgstr "トライアル"
|
213 |
|
214 |
-
#: includes/
|
215 |
-
|
216 |
-
|
217 |
-
msgstr "トライアルを開始"
|
218 |
|
219 |
-
#: includes/
|
220 |
-
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: includes/
|
225 |
msgid "Purchase License"
|
226 |
msgstr "ライセンスを購入"
|
227 |
|
228 |
-
#: includes/
|
229 |
-
|
230 |
-
|
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/
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: includes/
|
258 |
-
|
259 |
-
|
260 |
-
msgstr "%s プラン"
|
261 |
|
262 |
-
#: includes/
|
263 |
msgid "You are just one step away - %s"
|
264 |
msgstr "もうあとわずかです - %s"
|
265 |
|
266 |
-
#: includes/
|
267 |
-
msgctxt "%s - plugin name. As complete \"
|
268 |
msgid "Complete \"%s\" Activation Now"
|
269 |
msgstr "すぐに \"%s\" 有効化を完了してください"
|
270 |
|
271 |
-
#: includes/
|
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/
|
276 |
-
msgid "Opt
|
277 |
-
msgstr "\"%s\"
|
278 |
|
279 |
-
#: includes/
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#: includes/
|
284 |
-
|
285 |
-
|
|
|
|
|
286 |
|
287 |
-
#: includes/
|
288 |
-
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: includes/
|
293 |
-
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: includes/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
-
#: includes/
|
306 |
-
|
307 |
-
|
308 |
-
msgstr "%s で期間終了"
|
309 |
|
310 |
-
#: includes/
|
311 |
-
msgctxt "
|
312 |
-
msgid "
|
313 |
-
msgstr "%s
|
314 |
|
315 |
-
#: includes/
|
316 |
-
msgid "
|
317 |
-
msgstr "
|
318 |
|
319 |
-
#: includes/
|
320 |
-
msgid "
|
321 |
-
msgstr "
|
322 |
|
323 |
-
#: includes/
|
324 |
-
|
325 |
-
|
|
|
326 |
|
327 |
-
#: includes/
|
328 |
-
|
329 |
-
msgid "
|
330 |
-
msgstr "
|
331 |
|
332 |
-
#: includes/
|
333 |
-
|
334 |
-
|
335 |
-
msgstr "%s 前"
|
336 |
|
337 |
-
#: includes/
|
338 |
-
msgid "
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#: includes/
|
342 |
-
|
343 |
-
|
344 |
-
msgstr "バージョン"
|
345 |
|
346 |
-
#: includes/
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#: includes/
|
351 |
-
|
352 |
-
|
|
|
353 |
|
354 |
-
#: includes/
|
355 |
-
|
356 |
-
|
|
|
357 |
|
358 |
-
#: includes/
|
359 |
-
|
360 |
-
|
|
|
361 |
|
362 |
-
#: includes/
|
363 |
-
|
364 |
-
|
|
|
365 |
|
366 |
-
#: includes/
|
367 |
-
|
368 |
-
|
|
|
369 |
|
370 |
-
#: includes/
|
371 |
-
msgid "
|
372 |
-
msgstr "
|
373 |
|
374 |
-
#: includes/
|
375 |
-
|
376 |
-
|
|
|
377 |
|
378 |
-
#: includes/
|
379 |
-
msgid "
|
380 |
-
msgstr "
|
381 |
|
382 |
-
#: includes/
|
383 |
-
msgid "
|
384 |
-
msgstr "
|
385 |
|
386 |
-
#: includes/
|
387 |
-
|
388 |
-
|
389 |
-
msgstr "パス"
|
390 |
|
391 |
-
#: includes/
|
392 |
-
|
393 |
-
|
|
|
394 |
|
395 |
-
#: includes/
|
396 |
-
|
397 |
-
|
|
|
398 |
|
399 |
-
#: includes/
|
400 |
-
msgid "
|
401 |
-
msgstr "
|
402 |
|
403 |
-
#: includes/
|
404 |
-
|
405 |
-
|
406 |
-
|
|
|
407 |
|
408 |
-
#: includes/
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#: includes/
|
413 |
-
|
414 |
-
|
|
|
|
|
415 |
|
416 |
-
#: includes/
|
417 |
-
msgid "%s
|
418 |
-
msgstr "%s
|
419 |
|
420 |
-
#: includes/
|
421 |
-
|
422 |
-
|
423 |
-
msgstr "サイト数"
|
424 |
|
425 |
-
#: includes/
|
426 |
-
msgid "
|
427 |
-
msgstr "
|
428 |
|
429 |
-
#: includes/
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: includes/
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
436 |
|
437 |
-
#: includes/
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: includes/
|
442 |
-
|
443 |
-
|
444 |
-
msgstr "秘密鍵がありません"
|
445 |
|
446 |
-
#: includes/
|
447 |
-
msgid "
|
448 |
-
msgstr "
|
449 |
|
450 |
-
#: includes/
|
451 |
-
|
452 |
-
|
453 |
-
msgstr "ライセンスを同期"
|
454 |
|
455 |
-
#: includes/
|
456 |
-
|
457 |
-
|
458 |
-
msgstr "同期"
|
459 |
|
460 |
-
#: includes/
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: includes/
|
465 |
-
msgid "
|
466 |
-
msgstr "
|
467 |
|
468 |
-
#: includes/
|
469 |
-
msgid "
|
470 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
|
472 |
-
#: includes/
|
473 |
-
|
474 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
|
476 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
msgid "Change License"
|
478 |
msgstr "ライセンスを変更"
|
479 |
|
480 |
-
#: includes/
|
481 |
-
msgid "
|
482 |
-
msgstr "
|
483 |
|
484 |
-
#: includes/
|
485 |
-
msgid "
|
486 |
-
msgstr "
|
487 |
|
488 |
-
#: includes/
|
489 |
-
msgid "
|
490 |
-
msgstr "
|
491 |
|
492 |
-
#: includes/
|
493 |
-
msgid "
|
494 |
-
msgstr "
|
495 |
|
496 |
-
#: includes/
|
497 |
-
msgid "
|
498 |
-
msgstr "
|
499 |
|
500 |
-
#: includes/
|
501 |
-
msgid "
|
502 |
-
msgstr "
|
503 |
|
504 |
-
#: includes/
|
505 |
-
msgid "
|
506 |
-
msgstr "
|
507 |
|
508 |
-
#: includes/
|
509 |
-
|
510 |
-
|
|
|
|
|
511 |
|
512 |
-
#: includes/
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "有効"
|
516 |
|
517 |
-
#: includes/
|
518 |
-
|
519 |
-
|
520 |
-
|
|
|
|
|
|
|
521 |
|
522 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
msgid "Install Now"
|
524 |
msgstr "今すぐインストール"
|
525 |
|
526 |
-
#: includes/
|
527 |
msgid "Install Update Now"
|
528 |
msgstr "今すぐ更新をインストール"
|
529 |
|
530 |
-
#: includes/
|
531 |
-
msgid "
|
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/
|
544 |
-
|
545 |
-
|
546 |
-
msgstr "あと %s"
|
547 |
|
548 |
-
#: includes/
|
549 |
-
|
550 |
-
|
|
|
551 |
|
552 |
-
#: includes/
|
553 |
-
|
554 |
-
|
|
|
555 |
|
556 |
-
#: includes/
|
557 |
-
|
558 |
-
|
|
|
559 |
|
560 |
-
#: includes/
|
561 |
-
|
562 |
-
|
|
|
563 |
|
564 |
-
#: includes/
|
565 |
-
|
566 |
-
|
|
|
567 |
|
568 |
-
#: includes/
|
569 |
-
|
570 |
-
|
|
|
571 |
|
572 |
-
#: includes/
|
573 |
-
|
574 |
-
|
|
|
575 |
|
576 |
-
#: includes/
|
577 |
-
|
578 |
-
|
|
|
579 |
|
580 |
-
#: includes/
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
|
584 |
-
#: includes/
|
585 |
-
|
586 |
-
|
|
|
587 |
|
588 |
-
#: includes/
|
589 |
-
|
590 |
-
|
|
|
591 |
|
592 |
-
#: includes/
|
593 |
-
|
594 |
-
|
|
|
|
|
595 |
|
596 |
-
#: includes/
|
597 |
-
|
598 |
-
|
|
|
599 |
|
600 |
-
#: includes/
|
601 |
-
msgid "
|
602 |
-
msgstr "
|
603 |
|
604 |
-
#: includes/
|
605 |
-
|
606 |
-
|
|
|
|
|
|
|
607 |
|
608 |
-
#: includes/
|
609 |
-
|
610 |
-
|
|
|
611 |
|
612 |
-
#: includes/
|
613 |
-
|
614 |
-
|
|
|
615 |
|
616 |
-
#: includes/
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
|
620 |
-
#: includes/
|
621 |
-
msgid "
|
622 |
-
msgstr "
|
623 |
|
624 |
-
#: includes/
|
625 |
-
msgid "
|
626 |
-
msgstr "
|
627 |
|
628 |
-
#: includes/
|
629 |
-
|
630 |
-
|
|
|
|
|
631 |
|
632 |
-
#: includes/
|
633 |
-
|
634 |
-
|
|
|
|
|
635 |
|
636 |
-
#: includes/
|
637 |
-
|
638 |
-
|
|
|
639 |
|
640 |
-
#: includes/
|
641 |
-
|
642 |
-
|
|
|
643 |
|
644 |
-
#: includes/
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: includes/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: includes/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
655 |
|
656 |
-
#: includes/
|
657 |
-
|
658 |
-
|
|
|
|
|
659 |
|
660 |
-
#: includes/
|
661 |
-
|
662 |
-
|
|
|
663 |
|
664 |
-
#: includes/
|
665 |
-
msgid "
|
666 |
-
msgstr "
|
667 |
|
668 |
-
#: includes/
|
669 |
-
|
670 |
-
|
|
|
671 |
|
672 |
-
#: includes/
|
673 |
-
msgid "
|
674 |
-
msgstr "
|
675 |
|
676 |
-
#: includes/
|
677 |
-
msgid "
|
678 |
-
msgstr "
|
679 |
|
680 |
-
#: includes/
|
681 |
-
|
682 |
-
|
683 |
-
msgstr "Other"
|
684 |
|
685 |
-
#: includes/
|
686 |
-
msgid "
|
687 |
-
msgstr "
|
688 |
|
689 |
-
#: includes/
|
690 |
-
msgid "
|
691 |
-
msgstr "
|
692 |
|
693 |
-
#: includes/
|
694 |
-
msgid "
|
695 |
-
msgstr "
|
696 |
|
697 |
-
#: includes/
|
698 |
-
msgid "
|
699 |
-
msgstr "
|
700 |
|
701 |
-
#: includes/
|
702 |
-
msgid "
|
703 |
-
msgstr "
|
704 |
|
705 |
-
#: includes/
|
706 |
-
|
707 |
-
|
|
|
708 |
|
709 |
-
#: includes/
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
-
#: includes/
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
716 |
|
717 |
-
#: includes/
|
718 |
-
msgid "
|
719 |
-
msgstr "
|
720 |
|
721 |
-
#: includes/
|
722 |
-
msgid "
|
723 |
-
msgstr "
|
724 |
|
725 |
-
#: includes/
|
726 |
-
msgid "
|
727 |
-
msgstr "
|
728 |
|
729 |
-
#: includes/
|
730 |
-
msgid "
|
731 |
-
msgstr "
|
732 |
|
733 |
-
#: includes/
|
734 |
-
msgid "
|
735 |
-
msgstr "
|
736 |
|
737 |
-
#: includes/
|
738 |
-
msgid "
|
739 |
-
msgstr "
|
740 |
|
741 |
-
#: includes/
|
742 |
-
|
743 |
-
|
|
|
744 |
|
745 |
-
#: includes/
|
746 |
-
|
747 |
-
|
748 |
-
msgstr "おおい %s さん、"
|
749 |
|
750 |
-
#: includes/
|
751 |
-
|
752 |
-
|
753 |
-
msgstr "ありがとう $s さん!"
|
754 |
|
755 |
-
#: includes/
|
756 |
-
msgid "
|
757 |
-
msgstr "
|
758 |
|
759 |
-
#: includes/
|
760 |
-
msgid "
|
761 |
-
msgstr "
|
762 |
|
763 |
-
#:
|
764 |
-
msgid "
|
765 |
-
msgstr "
|
766 |
|
767 |
-
#:
|
768 |
-
msgid "
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "
|
773 |
-
msgstr "
|
774 |
|
775 |
-
#:
|
776 |
-
msgid "
|
777 |
-
msgstr "%s
|
778 |
|
779 |
-
|
780 |
-
|
781 |
-
|
|
|
782 |
|
783 |
-
|
784 |
-
|
785 |
-
|
|
|
786 |
|
787 |
-
|
788 |
-
|
789 |
-
|
|
|
790 |
|
791 |
-
#:
|
792 |
-
|
793 |
-
|
|
|
794 |
|
795 |
-
#:
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#:
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#:
|
804 |
-
|
805 |
-
|
|
|
806 |
|
807 |
-
#:
|
808 |
-
|
809 |
-
|
|
|
810 |
|
811 |
-
#:
|
812 |
-
|
813 |
-
|
|
|
814 |
|
815 |
-
#:
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#:
|
820 |
-
|
821 |
-
|
|
|
|
|
822 |
|
823 |
-
#:
|
824 |
-
msgid "
|
825 |
-
msgstr "
|
826 |
|
827 |
-
#:
|
828 |
-
msgid "
|
829 |
-
msgstr "
|
830 |
|
831 |
-
#:
|
832 |
-
msgid "
|
833 |
-
msgstr "
|
834 |
|
835 |
-
#:
|
836 |
-
msgid "
|
837 |
-
msgstr "
|
838 |
|
839 |
-
#:
|
840 |
-
|
841 |
-
|
842 |
-
msgstr "有効化中"
|
843 |
|
844 |
-
#:
|
845 |
-
|
846 |
-
|
847 |
-
msgstr "メール送信中"
|
848 |
|
849 |
-
#:
|
850 |
-
|
851 |
-
|
852 |
-
msgstr "許可して続ける"
|
853 |
|
854 |
-
#:
|
855 |
-
|
856 |
-
|
857 |
-
msgstr "同意してライセンスを有効化"
|
858 |
|
859 |
-
#:
|
860 |
-
|
861 |
-
|
862 |
-
msgstr "スキップ"
|
863 |
|
864 |
-
#:
|
865 |
-
|
866 |
-
|
|
|
867 |
|
868 |
-
#:
|
869 |
-
msgid "
|
870 |
-
msgstr "
|
871 |
|
872 |
-
#:
|
873 |
-
msgid "
|
874 |
-
msgstr "
|
875 |
|
876 |
-
#:
|
877 |
-
msgid "
|
878 |
-
msgstr "
|
879 |
|
880 |
-
#:
|
881 |
-
msgid "
|
882 |
-
msgstr "
|
883 |
|
884 |
-
#:
|
885 |
-
msgid "
|
886 |
-
msgstr "
|
887 |
|
888 |
-
#:
|
889 |
-
|
890 |
-
|
|
|
891 |
|
892 |
-
#:
|
893 |
-
|
894 |
-
|
|
|
895 |
|
896 |
-
#:
|
897 |
-
|
898 |
-
|
|
|
899 |
|
900 |
-
#:
|
901 |
-
msgid "
|
902 |
-
msgstr "
|
903 |
|
904 |
-
#:
|
905 |
-
msgid "
|
906 |
-
msgstr "
|
907 |
|
908 |
-
#:
|
909 |
-
msgid "
|
910 |
-
msgstr "
|
911 |
|
912 |
-
#:
|
913 |
-
msgid "
|
914 |
-
msgstr "
|
915 |
|
916 |
-
#:
|
917 |
-
|
918 |
-
|
|
|
919 |
|
920 |
-
#:
|
921 |
-
msgid "
|
922 |
-
msgstr "
|
923 |
|
924 |
-
#:
|
925 |
-
msgid "
|
926 |
-
msgstr "
|
927 |
|
928 |
-
#:
|
929 |
-
msgid "
|
930 |
-
msgstr "
|
931 |
|
932 |
-
#:
|
933 |
-
msgid "
|
934 |
-
msgstr "
|
935 |
|
936 |
-
#:
|
937 |
-
msgid "
|
938 |
-
msgstr "
|
939 |
|
940 |
-
#:
|
941 |
-
|
942 |
-
|
|
|
943 |
|
944 |
-
#:
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#:
|
949 |
-
msgctxt "
|
950 |
-
msgid "
|
951 |
-
msgstr "
|
952 |
|
953 |
-
#:
|
954 |
-
msgctxt "
|
955 |
-
msgid "
|
956 |
-
msgstr "
|
957 |
|
958 |
-
#:
|
959 |
-
|
960 |
-
|
961 |
-
|
|
|
|
|
962 |
|
963 |
-
#:
|
964 |
-
|
965 |
-
|
|
|
966 |
|
967 |
-
#:
|
968 |
-
|
969 |
-
|
970 |
-
msgstr "接続"
|
971 |
|
972 |
-
#:
|
973 |
-
|
974 |
-
|
975 |
-
msgstr "ブロック"
|
976 |
|
977 |
-
#:
|
978 |
-
|
979 |
-
|
980 |
-
msgstr "API"
|
981 |
|
982 |
-
#:
|
983 |
-
|
984 |
-
|
985 |
-
msgstr "SDK"
|
986 |
|
987 |
-
#:
|
988 |
-
msgctxt "
|
989 |
-
msgid "
|
990 |
-
msgstr "
|
991 |
|
992 |
-
#:
|
993 |
-
|
994 |
-
|
995 |
-
msgstr "プラグインのパス"
|
996 |
|
997 |
-
#:
|
998 |
-
|
999 |
-
|
1000 |
-
|
|
|
|
|
|
|
1001 |
|
1002 |
-
#:
|
1003 |
-
|
1004 |
-
|
|
|
|
|
1005 |
|
1006 |
-
#:
|
1007 |
-
msgid "
|
1008 |
-
msgstr "
|
1009 |
|
1010 |
-
#:
|
1011 |
-
msgid "
|
1012 |
-
msgstr "
|
1013 |
|
1014 |
-
#:
|
1015 |
-
msgid "
|
1016 |
-
msgstr "
|
1017 |
|
1018 |
-
#:
|
1019 |
-
msgid "
|
1020 |
-
msgstr "
|
1021 |
|
1022 |
-
#:
|
1023 |
-
msgid "
|
1024 |
-
msgstr "
|
1025 |
|
1026 |
-
#:
|
1027 |
-
msgid "
|
1028 |
-
msgstr "
|
1029 |
|
1030 |
-
#:
|
1031 |
-
msgid "
|
1032 |
-
msgstr "
|
1033 |
|
1034 |
-
#:
|
1035 |
-
msgid "
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
-
#:
|
1039 |
-
msgid "
|
1040 |
-
msgstr "
|
1041 |
|
1042 |
-
#:
|
1043 |
-
msgid "%s
|
1044 |
-
msgstr "
|
1045 |
|
1046 |
-
#:
|
1047 |
-
msgid "
|
1048 |
-
msgstr "
|
1049 |
|
1050 |
-
#:
|
1051 |
-
|
1052 |
-
|
|
|
1053 |
|
1054 |
-
#:
|
1055 |
-
msgid "
|
1056 |
-
msgstr "
|
1057 |
|
1058 |
-
#:
|
1059 |
-
msgid "
|
1060 |
-
msgstr "
|
1061 |
|
1062 |
-
#:
|
1063 |
-
msgid "
|
1064 |
-
msgstr "
|
1065 |
|
1066 |
-
#:
|
1067 |
-
msgid "
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
-
#:
|
1071 |
-
msgid "
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
-
#:
|
1075 |
-
|
1076 |
-
|
|
|
1077 |
|
1078 |
-
#:
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#:
|
1083 |
-
msgid "
|
1084 |
-
msgstr "
|
1085 |
|
1086 |
-
#:
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#:
|
1091 |
-
msgid "
|
1092 |
-
msgstr "
|
1093 |
|
1094 |
-
#:
|
1095 |
-
|
1096 |
-
|
1097 |
-
msgstr "おめでとう"
|
1098 |
|
1099 |
-
#:
|
1100 |
-
|
1101 |
-
|
1102 |
-
msgstr "おっと"
|
1103 |
|
1104 |
-
#:
|
1105 |
-
|
1106 |
-
|
1107 |
-
msgstr "ヤッホー"
|
1108 |
|
1109 |
-
#:
|
1110 |
-
|
1111 |
-
|
1112 |
-
msgstr "やったー"
|
1113 |
|
1114 |
-
#:
|
1115 |
-
|
1116 |
-
|
1117 |
-
msgstr "そうだ"
|
1118 |
|
1119 |
-
#:
|
1120 |
-
|
1121 |
-
|
1122 |
-
msgstr "ふむ"
|
1123 |
|
1124 |
-
#:
|
1125 |
-
msgid "
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
-
#:
|
1129 |
-
|
1130 |
-
|
1131 |
-
msgstr "ヘイ"
|
1132 |
|
1133 |
-
#:
|
1134 |
-
|
1135 |
-
|
1136 |
-
msgstr "警告"
|
1137 |
|
1138 |
-
#:
|
1139 |
-
msgid "
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
-
#:
|
1143 |
-
msgid "
|
1144 |
-
msgstr "
|
1145 |
|
1146 |
-
#:
|
1147 |
-
msgid "
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
-
#:
|
1151 |
-
|
1152 |
-
|
|
|
1153 |
|
1154 |
-
#:
|
1155 |
-
|
1156 |
-
|
|
|
1157 |
|
1158 |
-
#:
|
1159 |
-
msgid "
|
1160 |
-
msgstr "
|
1161 |
|
1162 |
-
#:
|
1163 |
-
|
1164 |
-
|
|
|
1165 |
|
1166 |
-
#:
|
1167 |
-
|
1168 |
-
|
|
|
1169 |
|
1170 |
-
#:
|
1171 |
-
msgid "
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
-
#:
|
1175 |
-
|
1176 |
-
|
|
|
1177 |
|
1178 |
-
#:
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#:
|
1183 |
-
msgid "
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
-
#:
|
1187 |
-
msgid "
|
1188 |
-
msgstr "
|
1189 |
|
1190 |
-
#:
|
1191 |
-
msgid "
|
1192 |
-
msgstr "
|
1193 |
|
1194 |
-
#:
|
1195 |
-
msgid "
|
1196 |
-
msgstr "
|
1197 |
|
1198 |
-
#:
|
1199 |
-
msgid "
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
-
#:
|
1203 |
-
msgid "
|
1204 |
-
msgstr "
|
1205 |
|
1206 |
-
#:
|
1207 |
-
msgid "
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#:
|
1211 |
-
msgid "
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
-
#:
|
1215 |
-
|
1216 |
-
|
|
|
1217 |
|
1218 |
-
#:
|
1219 |
-
msgid "
|
1220 |
-
msgstr "
|
1221 |
|
1222 |
-
#:
|
1223 |
-
|
1224 |
-
|
1225 |
-
msgstr "%s のアドオンの支払いが完了しました。"
|
1226 |
|
1227 |
-
#:
|
1228 |
-
msgid "
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
-
#:
|
1232 |
-
msgid "
|
1233 |
-
msgstr "
|
1234 |
|
1235 |
-
#:
|
1236 |
-
msgid "
|
1237 |
-
msgstr "
|
1238 |
|
1239 |
-
#:
|
1240 |
-
|
1241 |
-
|
|
|
1242 |
|
1243 |
-
#:
|
1244 |
-
msgid "
|
1245 |
-
msgstr "
|
1246 |
|
1247 |
-
#:
|
1248 |
-
|
1249 |
-
|
|
|
1250 |
|
1251 |
-
#:
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#:
|
1256 |
-
|
1257 |
-
|
|
|
1258 |
|
1259 |
-
#:
|
1260 |
-
|
1261 |
-
|
|
|
1262 |
|
1263 |
-
#:
|
1264 |
-
msgid "
|
1265 |
-
msgstr "
|
1266 |
|
1267 |
-
#:
|
1268 |
-
msgid "
|
1269 |
-
msgstr "
|
1270 |
|
1271 |
-
#:
|
1272 |
-
|
1273 |
-
|
|
|
1274 |
|
1275 |
-
#:
|
1276 |
-
msgid "
|
1277 |
-
msgstr "
|
1278 |
|
1279 |
-
#:
|
1280 |
-
msgid "
|
1281 |
-
msgstr "
|
1282 |
|
1283 |
-
#:
|
1284 |
-
msgid "
|
1285 |
-
msgstr "
|
1286 |
|
1287 |
-
#:
|
1288 |
-
msgid "
|
1289 |
-
msgstr "
|
1290 |
|
1291 |
-
#:
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
-
#:
|
1296 |
-
msgid "
|
1297 |
-
msgstr "
|
1298 |
|
1299 |
-
#:
|
1300 |
-
|
1301 |
-
|
1302 |
-
msgstr "バージョン %s をリリースしました。"
|
1303 |
|
1304 |
-
#:
|
1305 |
-
msgid "
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
-
#:
|
1309 |
-
|
1310 |
-
|
1311 |
-
msgstr "最新の %s バージョンはこちらです。"
|
1312 |
|
1313 |
-
#:
|
1314 |
-
|
1315 |
-
|
|
|
1316 |
|
1317 |
-
#:
|
1318 |
-
|
1319 |
-
|
1320 |
-
msgstr "フリートライアルを開始"
|
1321 |
|
1322 |
-
#:
|
1323 |
-
msgid "
|
1324 |
-
msgstr "
|
1325 |
|
1326 |
-
#:
|
1327 |
-
msgid "
|
1328 |
-
msgstr "
|
1329 |
|
1330 |
-
#:
|
1331 |
-
|
1332 |
-
|
|
|
1333 |
|
1334 |
-
#:
|
1335 |
-
|
1336 |
-
|
|
|
1337 |
|
1338 |
-
#:
|
1339 |
-
msgid "
|
1340 |
-
msgstr "
|
1341 |
|
1342 |
-
#:
|
1343 |
-
msgid "
|
1344 |
-
msgstr "
|
1345 |
|
1346 |
-
#:
|
1347 |
-
|
1348 |
-
|
|
|
1349 |
|
1350 |
-
#:
|
1351 |
-
msgid "
|
1352 |
-
msgstr "
|
1353 |
|
1354 |
-
#:
|
1355 |
-
msgid "
|
1356 |
-
msgstr "
|
1357 |
|
1358 |
-
#:
|
1359 |
-
msgid "
|
1360 |
-
msgstr "
|
1361 |
|
1362 |
-
#:
|
1363 |
-
msgid "
|
1364 |
-
msgstr "
|
1365 |
|
1366 |
-
#:
|
1367 |
-
msgid "
|
1368 |
-
msgstr "%s
|
1369 |
|
1370 |
-
#: includes/
|
1371 |
-
|
1372 |
-
|
|
|
1373 |
|
1374 |
-
#: includes/
|
1375 |
-
|
1376 |
-
|
|
|
|
|
1377 |
|
1378 |
-
#: includes/
|
1379 |
-
msgid "
|
1380 |
-
msgstr "
|
1381 |
|
1382 |
-
#: includes/
|
1383 |
-
msgid "
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#:
|
1387 |
-
|
1388 |
-
|
|
|
|
|
|
|
|
|
|
|
1389 |
|
1390 |
-
#:
|
1391 |
-
msgid "
|
1392 |
-
msgstr "
|
1393 |
|
1394 |
-
#:
|
1395 |
-
msgid "
|
1396 |
-
msgstr "
|
1397 |
|
1398 |
-
#:
|
1399 |
-
|
1400 |
-
|
|
|
1401 |
|
1402 |
-
#:
|
1403 |
-
msgid "
|
1404 |
-
msgstr "
|
1405 |
|
1406 |
-
#:
|
1407 |
-
|
1408 |
-
|
1409 |
-
msgstr "%s は、私たちの API への接続が必要です。"
|
1410 |
|
1411 |
-
#:
|
1412 |
-
msgid "
|
1413 |
-
msgstr "
|
1414 |
|
1415 |
-
#:
|
1416 |
-
msgid "
|
1417 |
-
msgstr "
|
1418 |
|
1419 |
-
#:
|
1420 |
-
msgid "
|
1421 |
-
msgstr "
|
1422 |
|
1423 |
-
#:
|
1424 |
-
msgid "
|
1425 |
-
msgstr "
|
1426 |
|
1427 |
-
#:
|
1428 |
-
msgid "
|
1429 |
-
msgstr "
|
1430 |
|
1431 |
-
#:
|
1432 |
-
msgid "
|
1433 |
-
msgstr "
|
1434 |
|
1435 |
-
#:
|
1436 |
-
msgid "
|
1437 |
-
msgstr "
|
1438 |
|
1439 |
-
#:
|
1440 |
-
msgid "
|
1441 |
-
msgstr "
|
1442 |
|
1443 |
-
#:
|
1444 |
-
msgid "
|
1445 |
-
msgstr "
|
1446 |
|
1447 |
-
#:
|
1448 |
-
msgid "
|
1449 |
-
msgstr "
|
1450 |
|
1451 |
-
#:
|
1452 |
-
msgid "
|
1453 |
-
msgstr "
|
1454 |
|
1455 |
-
#:
|
1456 |
-
msgid "
|
1457 |
-
msgstr "
|
1458 |
|
1459 |
-
#:
|
1460 |
-
msgid "
|
1461 |
-
msgstr "
|
1462 |
|
1463 |
-
#:
|
1464 |
-
|
1465 |
-
|
|
|
1466 |
|
1467 |
-
#:
|
1468 |
-
msgid "
|
1469 |
-
msgstr "
|
1470 |
|
1471 |
-
#:
|
1472 |
-
msgid "
|
1473 |
-
msgstr "
|
1474 |
|
1475 |
-
#:
|
1476 |
-
|
1477 |
-
|
1478 |
-
msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
|
1479 |
|
1480 |
-
#:
|
1481 |
-
msgid "
|
1482 |
-
msgstr "
|
1483 |
|
1484 |
-
#:
|
1485 |
-
msgid "
|
1486 |
-
msgstr "
|
1487 |
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
|
|
|
|
1491 |
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
|
|
|
|
1495 |
|
1496 |
-
#:
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
|
|
1500 |
|
1501 |
-
#:
|
1502 |
-
|
1503 |
-
|
1504 |
-
msgstr "%s は、プラグインが無いと実行することができません。"
|
1505 |
|
1506 |
-
#:
|
1507 |
-
|
1508 |
-
|
1509 |
-
msgstr "%s の有効化が成功しました。"
|
1510 |
|
1511 |
-
#:
|
1512 |
-
|
1513 |
-
msgid "
|
1514 |
-
msgstr "
|
1515 |
|
1516 |
-
#:
|
1517 |
-
msgid "
|
1518 |
-
msgstr "
|
1519 |
|
1520 |
-
#:
|
1521 |
-
msgid "
|
1522 |
-
msgstr "
|
1523 |
|
1524 |
-
#:
|
1525 |
-
msgid "
|
1526 |
-
msgstr "
|
1527 |
|
1528 |
-
#:
|
1529 |
-
msgid "
|
1530 |
-
msgstr "
|
1531 |
|
1532 |
-
#:
|
1533 |
-
|
1534 |
-
|
1535 |
-
msgstr "月"
|
1536 |
|
1537 |
-
#:
|
1538 |
-
|
1539 |
-
|
1540 |
-
msgstr "月"
|
1541 |
|
1542 |
-
#:
|
1543 |
-
|
1544 |
-
|
1545 |
-
msgstr "年次"
|
1546 |
|
1547 |
-
#:
|
1548 |
-
|
1549 |
-
|
1550 |
-
msgstr "毎年"
|
1551 |
|
1552 |
-
#:
|
1553 |
-
|
1554 |
-
|
1555 |
-
msgstr "一度"
|
1556 |
|
1557 |
-
#:
|
1558 |
-
|
1559 |
-
|
1560 |
-
msgstr "年"
|
1561 |
|
1562 |
-
#:
|
1563 |
-
msgid "
|
1564 |
-
msgstr "
|
1565 |
|
1566 |
-
#:
|
1567 |
-
|
1568 |
-
|
1569 |
-
msgstr "ベスト"
|
1570 |
|
1571 |
-
#:
|
1572 |
-
|
1573 |
-
|
1574 |
-
msgstr "%s への請求"
|
1575 |
|
1576 |
-
#:
|
1577 |
-
|
1578 |
-
|
1579 |
-
msgstr "%s を保存"
|
1580 |
|
1581 |
-
#:
|
1582 |
-
msgid "
|
1583 |
-
msgstr "
|
1584 |
|
1585 |
-
#:
|
1586 |
-
|
1587 |
-
|
1588 |
-
msgstr "気に入ったのでトライアルを開始"
|
1589 |
|
1590 |
-
#:
|
1591 |
-
msgid "
|
1592 |
-
msgstr "
|
1593 |
|
1594 |
-
#:
|
1595 |
-
msgid "
|
1596 |
-
msgstr "
|
1597 |
|
1598 |
-
#:
|
1599 |
-
msgid "
|
1600 |
-
msgstr "
|
1601 |
|
1602 |
-
#:
|
1603 |
-
msgid "
|
1604 |
-
msgstr "
|
1605 |
|
1606 |
-
#:
|
1607 |
-
msgid "
|
1608 |
-
msgstr "
|
1609 |
|
1610 |
-
#:
|
1611 |
-
msgid "
|
1612 |
-
msgstr "
|
1613 |
|
1614 |
-
#:
|
1615 |
-
msgid "
|
1616 |
-
msgstr "
|
1617 |
|
1618 |
-
#:
|
1619 |
-
msgid "
|
1620 |
-
msgstr "
|
1621 |
|
1622 |
-
#:
|
1623 |
-
msgid "
|
1624 |
-
msgstr "
|
1625 |
|
1626 |
-
#:
|
1627 |
-
msgid "
|
1628 |
-
msgstr "
|
1629 |
|
1630 |
-
#:
|
1631 |
-
msgid "
|
1632 |
-
msgstr "
|
1633 |
|
1634 |
-
#:
|
1635 |
-
msgid "
|
1636 |
-
msgstr "
|
1637 |
|
1638 |
-
#:
|
1639 |
-
msgid "
|
1640 |
-
msgstr "
|
1641 |
|
1642 |
-
#:
|
1643 |
-
msgid "
|
1644 |
-
msgstr "
|
1645 |
|
1646 |
-
#:
|
1647 |
-
msgid "
|
1648 |
-
msgstr "
|
1649 |
|
1650 |
-
#:
|
1651 |
-
msgid "
|
1652 |
-
msgstr "
|
1653 |
|
1654 |
-
#:
|
1655 |
-
msgid "
|
1656 |
-
msgstr "
|
1657 |
|
1658 |
-
#:
|
1659 |
-
msgid "
|
1660 |
-
msgstr "
|
1661 |
|
1662 |
-
#:
|
1663 |
-
msgid "
|
1664 |
-
msgstr "
|
1665 |
|
1666 |
-
#:
|
1667 |
-
msgid "
|
1668 |
-
msgstr "
|
1669 |
|
1670 |
-
#:
|
1671 |
-
msgid "
|
1672 |
-
msgstr "
|
1673 |
|
1674 |
-
#:
|
1675 |
-
msgid "
|
1676 |
-
msgstr "
|
1677 |
|
1678 |
-
#:
|
1679 |
-
msgid "
|
1680 |
-
msgstr "
|
1681 |
|
1682 |
-
#:
|
1683 |
-
msgid "
|
1684 |
-
msgstr "
|
1685 |
|
1686 |
-
#:
|
1687 |
-
msgid "
|
1688 |
-
msgstr "
|
1689 |
|
1690 |
-
#:
|
1691 |
-
msgid "
|
1692 |
-
msgstr "
|
1693 |
|
1694 |
-
#:
|
1695 |
-
msgid "
|
1696 |
-
msgstr "
|
1697 |
|
1698 |
-
#:
|
1699 |
-
msgid "
|
1700 |
-
msgstr "
|
1701 |
|
1702 |
-
#:
|
1703 |
-
|
1704 |
-
|
1705 |
-
msgstr "Description"
|
1706 |
|
1707 |
-
#:
|
1708 |
-
|
1709 |
-
|
1710 |
-
msgstr "Installation"
|
1711 |
|
1712 |
-
#:
|
1713 |
-
|
1714 |
-
|
1715 |
-
msgstr "FAQ"
|
1716 |
|
1717 |
-
#:
|
1718 |
-
msgctxt "
|
1719 |
-
msgid "
|
1720 |
-
msgstr "
|
1721 |
|
1722 |
-
#:
|
1723 |
-
msgctxt "
|
1724 |
-
msgid "
|
1725 |
-
msgstr "
|
1726 |
|
1727 |
-
#:
|
1728 |
-
|
1729 |
-
|
1730 |
-
msgstr "Other Notes"
|
1731 |
|
1732 |
-
#:
|
1733 |
-
msgid "%s
|
1734 |
-
msgstr "%s
|
1735 |
|
1736 |
-
#:
|
1737 |
-
msgid "%s
|
1738 |
-
msgstr "%s
|
1739 |
|
1740 |
-
#:
|
1741 |
-
msgid "
|
1742 |
-
msgstr "
|
1743 |
|
1744 |
-
#:
|
1745 |
-
msgid "
|
1746 |
-
msgstr "
|
1747 |
|
1748 |
-
#:
|
1749 |
-
msgid "%s
|
1750 |
-
msgstr "%s
|
1751 |
|
1752 |
-
#:
|
1753 |
-
msgid "%s
|
1754 |
-
msgstr "%s
|
1755 |
|
1756 |
-
#:
|
1757 |
-
msgid "
|
1758 |
-
msgstr "
|
1759 |
|
1760 |
-
#:
|
1761 |
-
|
1762 |
-
|
|
|
1763 |
|
1764 |
-
#:
|
1765 |
-
msgid "
|
1766 |
-
msgstr "
|
1767 |
|
1768 |
-
#:
|
1769 |
-
|
1770 |
-
|
1771 |
-
msgstr "Author:"
|
1772 |
|
1773 |
-
#:
|
1774 |
-
msgid "
|
1775 |
-
msgstr "
|
1776 |
|
1777 |
-
#:
|
1778 |
-
msgid "
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
-
#:
|
1782 |
-
msgid "
|
1783 |
-
msgstr "
|
1784 |
|
1785 |
-
#:
|
1786 |
-
msgid "
|
1787 |
-
msgstr "
|
1788 |
|
1789 |
-
#:
|
1790 |
-
msgid "
|
1791 |
-
msgstr "
|
1792 |
|
1793 |
-
#:
|
1794 |
-
msgid "
|
1795 |
-
msgstr "
|
1796 |
|
1797 |
-
#:
|
1798 |
-
msgid "
|
1799 |
-
msgstr "
|
1800 |
|
1801 |
-
#:
|
1802 |
-
msgid "
|
1803 |
-
msgstr "
|
1804 |
|
1805 |
-
#:
|
1806 |
-
msgid "
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
-
#:
|
1810 |
-
msgid "
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
-
#:
|
1814 |
-
msgid "
|
1815 |
-
msgstr "
|
1816 |
|
1817 |
-
#:
|
1818 |
-
msgid "
|
1819 |
-
msgstr "
|
1820 |
|
1821 |
-
#:
|
1822 |
-
msgid "
|
1823 |
-
msgstr "
|
1824 |
|
1825 |
-
#:
|
1826 |
-
msgid "
|
1827 |
-
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-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;
|
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:
|
20 |
-
msgid "freemius
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
28 |
msgctxt "addonX cannot run without pluginY"
|
29 |
msgid "%s cannot run without %s."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/class-freemius.php:
|
33 |
msgctxt "addonX cannot run..."
|
34 |
msgid "%s cannot run without the plugin."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgctxt "pluginX activation was successfully..."
|
51 |
msgid "%s activation was successfully completed."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
|
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:
|
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:
|
72 |
msgid "%s is the new owner of the account."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/class-freemius.php:
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/class-freemius.php:
|
80 |
-
|
81 |
-
msgid "$text"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/class-freemius.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
msgid "Auto installation only works for opted-in users."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/class-freemius.php:
|
89 |
msgid "Invalid module ID."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/class-freemius.php:
|
93 |
msgid "Premium version already active."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/class-freemius.php:
|
97 |
msgid "You do not have a valid license to access the premium version."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/class-freemius.php:
|
101 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-freemius.php:
|
105 |
msgid "Premium add-on version already installed."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/class-freemius.php:
|
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 |
-
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/fs-plugin-info-dialog.php:
|
125 |
-
msgid "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/fs-plugin-info-dialog.php:
|
129 |
-
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: includes/fs-plugin-info-dialog.php:
|
133 |
-
msgid "
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/fs-plugin-info-dialog.php:
|
137 |
-
msgid "
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/fs-plugin-info-dialog.php:
|
141 |
msgid "Newer Version (%s) Installed"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/fs-plugin-info-dialog.php:
|
145 |
msgid "Latest Version Installed"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/fs-plugin-info-dialog.php:
|
149 |
-
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/fs-plugin-info-dialog.php:
|
153 |
-
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/fs-plugin-info-dialog.php:
|
157 |
-
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: includes/fs-plugin-info-dialog.php:
|
161 |
-
msgid "
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: includes/fs-plugin-info-dialog.php:
|
165 |
-
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: includes/fs-plugin-info-dialog.php:
|
169 |
-
|
|
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/fs-plugin-info-dialog.php:
|
173 |
-
|
|
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/fs-plugin-info-dialog.php:
|
177 |
msgctxt "Plugin installer section title"
|
178 |
msgid "Features & Pricing"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: includes/fs-plugin-info-dialog.php:
|
182 |
msgid "Plugin Install"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/fs-plugin-info-dialog.php:
|
186 |
-
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/fs-plugin-info-dialog.php:
|
190 |
msgctxt "e.g. the best product"
|
191 |
msgid "Best"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/fs-plugin-info-dialog.php:
|
195 |
msgctxt "as every month"
|
196 |
msgid "Monthly"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/fs-plugin-info-dialog.php:
|
200 |
msgctxt "as once a year"
|
201 |
msgid "Annual"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/fs-plugin-info-dialog.php:
|
205 |
msgid "Lifetime"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/fs-plugin-info-dialog.php:
|
209 |
msgctxt "e.g. billed monthly"
|
210 |
msgid "Billed %s"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/fs-plugin-info-dialog.php:
|
214 |
msgctxt "as once a year"
|
215 |
msgid "Annually"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/fs-plugin-info-dialog.php:
|
219 |
msgctxt "as once a year"
|
220 |
msgid "Once"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: includes/fs-plugin-info-dialog.php:
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/fs-plugin-info-dialog.php:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/fs-plugin-info-dialog.php:
|
232 |
-
msgid "
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/fs-plugin-info-dialog.php:
|
236 |
msgctxt "as monthly period"
|
237 |
msgid "mo"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/fs-plugin-info-dialog.php:
|
241 |
msgctxt "as annual period"
|
242 |
msgid "year"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/fs-plugin-info-dialog.php:
|
246 |
-
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/fs-plugin-info-dialog.php:
|
250 |
msgctxt "as a discount of $5 or 10%"
|
251 |
msgid "Save %s"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/fs-plugin-info-dialog.php:
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/fs-plugin-info-dialog.php:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/fs-plugin-info-dialog.php:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/fs-plugin-info-dialog.php:
|
267 |
-
|
|
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/fs-plugin-info-dialog.php:
|
271 |
msgctxt "as the plugin author"
|
272 |
msgid "Author"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/fs-plugin-info-dialog.php:
|
276 |
msgid "Last Updated"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/fs-plugin-info-dialog.php:
|
280 |
-
|
|
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/fs-plugin-info-dialog.php:
|
284 |
msgid "Requires WordPress Version"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/fs-plugin-info-dialog.php:
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/fs-plugin-info-dialog.php:
|
292 |
msgid "Compatible up to"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/fs-plugin-info-dialog.php:
|
296 |
msgid "Downloaded"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
|
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/fs-plugin-info-dialog.php:
|
303 |
msgid "WordPress.org Plugin Page"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/fs-plugin-info-dialog.php:
|
307 |
msgid "Plugin Homepage"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/fs-plugin-info-dialog.php:
|
311 |
msgid "Donate to this plugin"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes/fs-plugin-info-dialog.php:
|
315 |
msgid "Average Rating"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/fs-plugin-info-dialog.php:
|
319 |
msgid "based on %s"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/fs-plugin-info-dialog.php:
|
323 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/fs-plugin-info-dialog.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
msgid "Contributors"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/fs-plugin-info-dialog.php:
|
331 |
msgid "Warning"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/fs-plugin-info-dialog.php:
|
335 |
msgid "This plugin has not been tested with your current version of WordPress."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/fs-plugin-info-dialog.php:
|
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:
|
343 |
msgid "Paid add-on must be deployed to Freemius."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/fs-plugin-info-dialog.php:
|
347 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: templates/account.php:
|
351 |
-
msgid "
|
|
|
|
|
|
|
|
|
352 |
msgstr ""
|
353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
#: templates/account.php:58
|
355 |
-
msgid "
|
356 |
msgstr ""
|
357 |
|
|
|
358 |
#: templates/account.php:61
|
359 |
-
msgid "
|
360 |
msgstr ""
|
361 |
|
|
|
362 |
#: templates/account.php:63
|
363 |
-
msgid "
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: templates/account.php:
|
367 |
-
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: templates/account.php:
|
371 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: templates/account.php:
|
375 |
-
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: templates/account.php:
|
379 |
-
msgid "
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: templates/account.php:
|
383 |
-
msgid "
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: templates/account.php:
|
387 |
-
|
|
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: templates/account.php:
|
391 |
-
msgid "
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: templates/account.php:
|
395 |
-
msgid "
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: templates/account.php:
|
399 |
-
msgid "
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: templates/account.php:
|
403 |
-
msgid "
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: templates/account.php:
|
407 |
-
msgid "
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: templates/account.php:
|
411 |
-
msgid "
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: templates/account.php:
|
415 |
-
msgid "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: templates/account.php:
|
419 |
-
msgid "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: templates/account.php:
|
423 |
-
msgid "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: templates/account.php:
|
427 |
-
|
|
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: templates/account.php:
|
431 |
-
msgid "
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: templates/account.php:
|
435 |
-
msgid "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: templates/account.php:
|
439 |
-
msgid "
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: templates/account.php:
|
443 |
-
msgid "
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: templates/account.php:
|
447 |
-
msgid "
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: templates/account.php:
|
451 |
-
msgid "
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: templates/account.php:
|
455 |
-
msgid "
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: templates/account.php:
|
459 |
-
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: templates/account.php:
|
463 |
-
msgid "
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: templates/account.php:
|
467 |
msgid "License Key"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: templates/account.php:
|
471 |
-
msgid "
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: templates/account.php:
|
475 |
-
msgid "
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: templates/account.php:
|
479 |
-
|
|
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: templates/account.php:
|
483 |
-
msgid "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: templates/account.php:
|
487 |
-
msgid "
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: templates/account.php:
|
491 |
-
msgid "
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: templates/account.php:
|
495 |
-
msgid "
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: templates/account.php:
|
499 |
-
msgid "
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: templates/account.php:
|
503 |
-
|
|
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: templates/account.php:
|
507 |
-
msgid "
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: templates/account.php:
|
511 |
-
|
|
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: templates/account.php:
|
515 |
-
|
|
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: templates/account.php:
|
519 |
-
msgid "
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: templates/account.php:
|
523 |
-
|
|
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: templates/account.php:
|
527 |
-
msgid "
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: templates/account.php:
|
531 |
-
msgid "
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: templates/
|
535 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: templates/add-ons.php:
|
539 |
-
msgid "
|
540 |
msgstr ""
|
541 |
|
542 |
#: templates/add-ons.php:44
|
543 |
-
msgid "add-ons
|
544 |
msgstr ""
|
545 |
|
546 |
#: templates/add-ons.php:135
|
547 |
msgid "View details"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: templates/admin-notice.php:
|
551 |
-
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: templates/auto-installation.php:
|
555 |
-
msgid "
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: templates/auto-installation.php:
|
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:
|
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:
|
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:
|
575 |
msgid "Cancel Installation"
|
576 |
msgstr ""
|
577 |
|
|
|
|
|
|
|
|
|
578 |
#: templates/checkout.php:168
|
579 |
msgid "PCI compliant"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: templates/connect.php:
|
583 |
-
msgid "
|
|
|
|
|
|
|
|
|
584 |
msgstr ""
|
585 |
|
586 |
#: templates/connect.php:135
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: templates/connect.php:
|
591 |
-
msgid "
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: templates/connect.php:
|
595 |
-
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: templates/connect.php:
|
599 |
-
msgid "
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: templates/connect.php:
|
603 |
-
msgid "$
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: templates/connect.php:
|
607 |
-
msgid "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: templates/connect.php:
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: templates/connect.php:
|
615 |
-
msgid "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: templates/connect.php:
|
619 |
-
|
|
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: templates/connect.php:
|
623 |
-
msgid "
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: templates/connect.php:
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: templates/connect.php:
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: templates/connect.php:
|
635 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: templates/connect.php:
|
639 |
-
msgid "
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: templates/connect.php:
|
643 |
-
msgid "
|
644 |
msgstr ""
|
645 |
|
646 |
#: templates/connect.php:316
|
647 |
-
msgid "
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: templates/
|
651 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: templates/debug.php:17
|
655 |
-
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: templates/debug.php:
|
659 |
-
|
|
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: templates/debug.php:
|
663 |
-
msgid "
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: templates/debug.php:
|
667 |
-
|
|
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: templates/debug.php:
|
671 |
-
msgid "
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: templates/debug.php:
|
675 |
-
msgid "delete
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: templates/debug.php:
|
679 |
-
msgid "
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: templates/debug.php:
|
683 |
-
msgid "
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: templates/debug.php:
|
687 |
-
msgid "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: templates/debug.php:
|
691 |
msgid "Load DB Option"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: templates/debug.php:
|
695 |
msgid "Set DB Option"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: templates/debug.php:
|
699 |
-
msgid "
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: templates/debug.php:
|
703 |
-
msgid "
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: templates/debug.php:
|
707 |
-
|
|
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: templates/debug.php:
|
711 |
-
msgid "
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: templates/debug.php:
|
715 |
-
msgid "
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: templates/debug.php:
|
719 |
-
msgid "
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: templates/debug.php:
|
723 |
-
msgid "
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: templates/debug.php:
|
727 |
-
msgid "
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: templates/debug.php:
|
731 |
-
msgid "
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: templates/debug.php:
|
735 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: templates/debug.php:
|
739 |
-
msgid "
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: templates/debug.php:
|
743 |
-
|
|
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: templates/debug.php:
|
747 |
-
|
|
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: templates/debug.php:
|
751 |
msgid "Simulate Trial"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: templates/debug.php:
|
755 |
-
msgid "
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: templates/debug.php:
|
759 |
-
|
|
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: templates/debug.php:
|
763 |
-
msgid "
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: templates/debug.php:
|
767 |
-
msgid "
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: templates/debug.php:
|
771 |
-
msgid "
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: templates/debug.php:
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: templates/debug.php:
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: templates/debug.php:
|
783 |
-
msgid "
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: templates/debug.php:
|
787 |
-
msgid "
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: templates/debug.php:
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: templates/debug.php:
|
795 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: templates/debug.php:
|
799 |
-
msgid "
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: templates/debug.php:
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: templates/debug.php:
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: templates/debug.php:
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: templates/debug.php:
|
815 |
-
msgid "
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: templates/debug.php:
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: templates/debug.php:
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: templates/debug.php:
|
827 |
-
msgid "
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: templates/debug.php:
|
831 |
-
msgid "
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: templates/debug.php:
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: templates/debug.php:
|
839 |
-
msgid "
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: templates/debug.php:
|
843 |
-
msgid "
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: templates/
|
847 |
-
msgid "
|
848 |
msgstr ""
|
849 |
|
850 |
-
#:
|
851 |
-
msgid "
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:
|
|
|
855 |
msgid "ms"
|
856 |
msgstr ""
|
857 |
|
@@ -863,107 +1541,105 @@ msgstr ""
|
|
863 |
msgid "Requests"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: templates/account/billing.php:
|
867 |
-
|
|
|
|
|
|
|
|
|
|
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: templates/account/billing.php:
|
871 |
msgid "Business name"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: templates/account/billing.php:
|
875 |
msgid "Tax / VAT ID"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: templates/account/billing.php:
|
879 |
msgid "Address Line %d"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: templates/account/billing.php:
|
883 |
msgid "City"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: templates/account/billing.php:
|
887 |
msgid "Town"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: templates/account/billing.php:
|
891 |
msgid "ZIP / Postal Code"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: templates/account/billing.php:
|
895 |
msgid "Country"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: templates/account/billing.php:
|
899 |
msgid "Select Country"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: templates/account/billing.php:
|
903 |
msgid "State"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: templates/account/billing.php:
|
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 "
|
920 |
msgstr ""
|
921 |
|
922 |
#: templates/account/payments.php:36
|
923 |
-
msgid "
|
924 |
msgstr ""
|
925 |
|
926 |
#: templates/account/payments.php:37
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
#: templates/account/payments.php:38, templates/account/payments.php:50
|
931 |
-
msgid "
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: templates/debug/api-calls.php:
|
935 |
msgid "API"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: templates/debug/api-calls.php:
|
939 |
msgid "Method"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: templates/debug/api-calls.php:
|
943 |
msgid "Code"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: templates/debug/api-calls.php:
|
947 |
msgid "Length"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: templates/debug/api-calls.php:
|
|
|
951 |
msgid "Path"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: templates/debug/api-calls.php:
|
955 |
msgid "Body"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: templates/debug/api-calls.php:
|
959 |
msgid "Result"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: templates/debug/api-calls.php:
|
963 |
msgid "Start"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: templates/debug/api-calls.php:
|
967 |
msgid "End"
|
968 |
msgstr ""
|
969 |
|
@@ -971,306 +1647,327 @@ msgstr ""
|
|
971 |
msgid "Log"
|
972 |
msgstr ""
|
973 |
|
974 |
-
|
975 |
-
|
976 |
-
|
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 |
-
|
987 |
-
|
|
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: templates/debug/plugins-themes-sync.php:
|
|
|
991 |
msgid "sec"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: templates/debug/plugins-themes-sync.php:
|
995 |
-
msgid "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: templates/debug/plugins-themes-sync.php:
|
999 |
-
msgid "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: templates/debug/scheduled-crons.php:
|
1003 |
-
msgid "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: templates/debug/scheduled-crons.php:
|
1007 |
-
msgid "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: templates/debug/scheduled-crons.php:
|
1011 |
-
msgid "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: templates/debug/scheduled-crons.php:
|
1015 |
-
msgid "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: templates/debug/scheduled-crons.php:84
|
|
|
|
|
|
|
|
|
1019 |
msgid "Next"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: templates/forms/affiliation.php:81
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: templates/forms/affiliation.php:
|
1027 |
-
msgid "affiliate
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: templates/forms/affiliation.php:
|
1031 |
-
msgid "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: templates/forms/affiliation.php:
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: templates/forms/affiliation.php:
|
1039 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: templates/forms/affiliation.php:136
|
1043 |
-
msgid "
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: templates/forms/affiliation.php:
|
1047 |
-
msgid "commission
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: templates/forms/affiliation.php:140
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: templates/forms/affiliation.php:
|
1055 |
-
msgid "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: templates/forms/affiliation.php:
|
1059 |
-
msgid "
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: templates/forms/affiliation.php:
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: templates/forms/affiliation.php:
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: templates/forms/affiliation.php:
|
1071 |
-
msgid "
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: templates/forms/affiliation.php:153
|
1075 |
-
msgid "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: templates/forms/affiliation.php:
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: templates/forms/affiliation.php:
|
1083 |
-
msgid "
|
|
|
|
|
|
|
|
|
1084 |
msgstr ""
|
1085 |
|
1086 |
#: templates/forms/affiliation.php:164
|
1087 |
-
msgid "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
#: templates/forms/affiliation.php:168
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: templates/forms/affiliation.php:
|
1095 |
-
msgid "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: templates/forms/affiliation.php:
|
1099 |
-
msgid "
|
1100 |
msgstr ""
|
1101 |
|
1102 |
#: templates/forms/affiliation.php:176
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: templates/forms/affiliation.php:
|
1107 |
-
msgid "
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: templates/forms/affiliation.php:
|
1111 |
-
msgid "
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: templates/forms/affiliation.php:
|
1115 |
-
msgid "
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: templates/forms/affiliation.php:194
|
1119 |
-
msgid "
|
1120 |
msgstr ""
|
1121 |
|
1122 |
#: templates/forms/affiliation.php:198
|
1123 |
-
msgid "
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: templates/forms/affiliation.php:
|
1127 |
-
msgid "statistics
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: templates/forms/affiliation.php:205
|
1131 |
-
msgid "
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: templates/forms/affiliation.php:
|
1135 |
-
msgid "
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: templates/forms/affiliation.php:
|
1139 |
-
msgid "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: templates/forms/affiliation.php:
|
1143 |
-
msgid "
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: templates/forms/affiliation.php:
|
1147 |
-
msgid "
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: templates/forms/affiliation.php:
|
1151 |
-
msgid "
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: templates/forms/affiliation.php:
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: templates/forms/affiliation.php:
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: templates/forms/affiliation.php:
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: templates/forms/affiliation.php:
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
#: templates/forms/license-activation.php:20
|
1171 |
-
msgid "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: templates/forms/license-activation.php:
|
1175 |
-
msgid "
|
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 |
-
|
|
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: templates/forms/optout.php:31
|
1187 |
-
|
|
|
1188 |
msgstr ""
|
1189 |
|
1190 |
#: templates/forms/optout.php:32
|
1191 |
-
msgid "
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: templates/forms/optout.php:
|
1195 |
-
msgid "
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: templates/forms/
|
1199 |
-
msgid "
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: templates/forms/resend-key.php:
|
1203 |
-
msgid "
|
1204 |
msgstr ""
|
1205 |
|
1206 |
#: templates/forms/resend-key.php:57
|
1207 |
-
msgid "
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: templates/forms/trial-start.php:
|
1211 |
-
msgid "
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: templates/forms/trial-start.php:
|
1215 |
-
msgid "start-trial
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: templates/
|
1219 |
-
msgid "
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: templates/plugin-info/
|
1223 |
-
msgid "
|
1224 |
msgstr ""
|
1225 |
|
1226 |
#: templates/plugin-info/features.php:56
|
1227 |
-
msgid "
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: templates/forms/deactivation/contact.php:
|
1231 |
-
msgid "
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: templates/forms/deactivation/contact.php:
|
1235 |
-
msgid "
|
1236 |
msgstr ""
|
1237 |
|
1238 |
#: templates/forms/deactivation/form.php:56
|
1239 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: templates/forms/deactivation/form.php:
|
1243 |
-
msgid "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: templates/forms/deactivation/form.php:
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: templates/forms/deactivation/form.php:
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: templates/forms/deactivation/form.php:
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: templates/forms/deactivation/form.php:
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: templates/forms/deactivation/form.php:
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: templates/forms/deactivation/form.php:
|
1267 |
-
msgid "
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: templates/forms/deactivation/retry-skip.php:21
|
1271 |
-
msgid "
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: templates/forms/deactivation/retry-skip.php:23
|
1275 |
-
msgid "
|
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.
|
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
|
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 |
-
|
17 |
-
|
18 |
|
19 |
-
|
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
|
149 |
-
security
|
150 |
-
slug
|
151 |
-
module_id: '<?php echo $
|
|
|
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
|
103 |
-
|
104 |
$plugin_title,
|
105 |
-
sprintf(
|
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
|
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.
|
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.
|
6 |
-
Stable tag: 1.1.
|
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(!
|
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 |
|