Version Description
Release date: 25 February 2019
Security update
Download this release
Release Info
Developer | buttonizer |
Plugin | Smart Floating / Sticky Buttons – Call, Sharing, Chat Widgets & More – Buttonizer |
Version | 1.5.6 |
Comparing to | |
See all releases |
Code changes from version 1.5.5 to 1.5.6
- buttonizer.php +2 -2
- classes/Admin/Ajax/SaveData.php +14 -0
- classes/Licensing/License.php +1 -2
- freemius/assets/css/admin/common.css +2 -2
- freemius/assets/css/admin/deactivation-feedback.css +0 -1
- freemius/assets/css/admin/license-activation.css +0 -1
- freemius/assets/img/buttonizer-floating-action-button.jpg +0 -0
- freemius/assets/scss/admin/{plugin-upgrade-notice.scss → _plugin-upgrade-notice.scss} +1 -1
- freemius/assets/scss/admin/common.scss +4 -2
- freemius/gulpfile.js +0 -167
- freemius/includes/class-freemius.php +387 -71
- freemius/includes/class-fs-api.php +14 -4
- freemius/includes/class-fs-plugin-updater.php +8 -4
- freemius/includes/class-fs-storage.php +1 -2
- freemius/includes/fs-core-functions.php +115 -91
- freemius/includes/managers/class-fs-admin-menu-manager.php +5 -5
- freemius/includes/managers/class-fs-admin-notice-manager.php +32 -1
- freemius/languages/freemius-da_DK.po +203 -203
- freemius/languages/freemius-en.po +184 -184
- freemius/languages/freemius-es_ES.po +203 -203
- freemius/languages/freemius-fr_FR.mo +0 -0
- freemius/languages/freemius-fr_FR.po +236 -236
- freemius/languages/freemius-he_IL.po +203 -203
- freemius/languages/freemius-hu_HU.mo +0 -0
- freemius/languages/freemius-hu_HU.po +2433 -0
- freemius/languages/freemius-it_IT.mo +0 -0
- freemius/languages/freemius-it_IT.po +210 -209
- freemius/languages/freemius-ja_JP.po +203 -203
- freemius/languages/freemius-nl_NL.po +203 -203
- freemius/languages/freemius-ru_RU.po +203 -203
- freemius/languages/freemius.pot +184 -184
- freemius/start.php +15 -8
- freemius/templates/account/partials/addon.php +1 -1
- freemius/templates/add-ons.php +1 -1
- freemius/templates/admin-notice.php +29 -1
- freemius/templates/all-admin-notice.php +0 -39
- freemius/templates/checkout-legacy.php +0 -242
- freemius/templates/checkout.php +2 -2
- freemius/templates/contact.php +3 -3
- freemius/templates/debug.php +2 -0
- freemius/templates/pricing.php +2 -2
- freemius/templates/tabs.php +4 -0
- readme.txt +8 -3
buttonizer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Buttonizer - Smart Floating Action Button
|
4 |
Plugin URI: https://buttonizer.pro
|
5 |
Description: The Buttonizer is a new way to give a boost to your number of interactions, actions and conversions from your website visitor by adding one or multiple Customizable Smart Floating Button in the corner of your website.
|
6 |
-
Version: 1.5.
|
7 |
Author: Buttonizer
|
8 |
Author URI: https://buttonizer.pro
|
9 |
License: GPL2
|
@@ -34,7 +34,7 @@ define('BUTTONIZER_NAME', 'buttonizer');
|
|
34 |
define('BUTTONIZER_DIR', dirname(__FILE__));
|
35 |
define('BUTTONIZER_SLUG', basename(BUTTONIZER_DIR));
|
36 |
define('BUTTONIZER_PLUGIN_DIR', __FILE__ );
|
37 |
-
define('BUTTONIZER_VERSION','1.5.
|
38 |
|
39 |
# No script kiddies
|
40 |
defined( 'ABSPATH' ) or die('No script kiddies please!');
|
3 |
Plugin Name: Buttonizer - Smart Floating Action Button
|
4 |
Plugin URI: https://buttonizer.pro
|
5 |
Description: The Buttonizer is a new way to give a boost to your number of interactions, actions and conversions from your website visitor by adding one or multiple Customizable Smart Floating Button in the corner of your website.
|
6 |
+
Version: 1.5.6
|
7 |
Author: Buttonizer
|
8 |
Author URI: https://buttonizer.pro
|
9 |
License: GPL2
|
34 |
define('BUTTONIZER_DIR', dirname(__FILE__));
|
35 |
define('BUTTONIZER_SLUG', basename(BUTTONIZER_DIR));
|
36 |
define('BUTTONIZER_PLUGIN_DIR', __FILE__ );
|
37 |
+
define('BUTTONIZER_VERSION','1.5.6');
|
38 |
|
39 |
# No script kiddies
|
40 |
defined( 'ABSPATH' ) or die('No script kiddies please!');
|
classes/Admin/Ajax/SaveData.php
CHANGED
@@ -6,6 +6,20 @@ class SaveData
|
|
6 |
{
|
7 |
public function __construct()
|
8 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
switch ( $_GET['save'] ) {
|
10 |
case 'categories':
|
11 |
$this->saveCategories();
|
6 |
{
|
7 |
public function __construct()
|
8 |
{
|
9 |
+
// Is this user logged in?
|
10 |
+
if ( wp_get_current_user()->ID === 0 ) {
|
11 |
+
exit( json_encode( [
|
12 |
+
'status' => 'error',
|
13 |
+
'message' => 'You are not logged in',
|
14 |
+
] ) );
|
15 |
+
}
|
16 |
+
// Is this a administrator?
|
17 |
+
if ( !current_user_can( 'administrator' ) ) {
|
18 |
+
exit( json_encode( [
|
19 |
+
'status' => 'error',
|
20 |
+
'message' => 'You must have administrator rights to save your settings.',
|
21 |
+
] ) );
|
22 |
+
}
|
23 |
switch ( $_GET['save'] ) {
|
24 |
case 'categories':
|
25 |
$this->saveCategories();
|
classes/Licensing/License.php
CHANGED
@@ -34,11 +34,10 @@ class License
|
|
34 |
// If you don't want to pay for the plugin, you can allways use the
|
35 |
$this->oButtonizer = fs_dynamic_init( array(
|
36 |
'id' => '1219',
|
37 |
-
'slug' => 'buttonizer-
|
38 |
'type' => 'plugin',
|
39 |
'public_key' => 'pk_fcd360d9c82b90a5e874e651ad733',
|
40 |
'is_premium' => false,
|
41 |
-
'premium_suffix' => '',
|
42 |
'has_addons' => false,
|
43 |
'has_paid_plans' => true,
|
44 |
'has_affiliation' => 'all',
|
34 |
// If you don't want to pay for the plugin, you can allways use the
|
35 |
$this->oButtonizer = fs_dynamic_init( array(
|
36 |
'id' => '1219',
|
37 |
+
'slug' => 'buttonizer-multifunctional-button',
|
38 |
'type' => 'plugin',
|
39 |
'public_key' => 'pk_fcd360d9c82b90a5e874e651ad733',
|
40 |
'is_premium' => false,
|
|
|
41 |
'has_addons' => false,
|
42 |
'has_paid_plans' => true,
|
43 |
'has_affiliation' => 'all',
|
freemius/assets/css/admin/common.css
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
.theme-browser .theme .fs-premium-theme-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);font-size:1.1em}#
|
2 |
-
.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}
|
1 |
+
.theme-browser .theme .fs-premium-theme-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);font-size:1.1em}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}}
|
2 |
+
.fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px}
|
freemius/assets/css/admin/deactivation-feedback.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}.fs-modal .fs-modal-dialog li.reason{margin-bottom:10px}.fs-modal .fs-modal-dialog li.reason .reason-input,.fs-modal .fs-modal-dialog li.reason .internal-message{margin-left:29px}.fs-modal .fs-modal-dialog li.reason label{display:table}.fs-modal .fs-modal-dialog li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body h2{font-size:20px}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}.fs-modal .reason-input,.fs-modal .internal-message{margin:3px 0 3px 22px}.fs-modal .reason-input input,.fs-modal .reason-input textarea,.fs-modal .internal-message input,.fs-modal .internal-message textarea{width:100%}.fs-modal li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}body.has-fs-modal{overflow:hidden}#the-list .deactivate>.fs-slug{display:none}
|
|
freemius/assets/css/admin/license-activation.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
.fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body .license-activation-message{margin:0;display:none}.fs-modal .fs-modal-body input.license_key{width:100%}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel:not(.active){display:none}body.has-fs-modal{overflow:hidden}
|
|
freemius/assets/img/buttonizer-floating-action-button.jpg
ADDED
Binary file
|
freemius/assets/scss/admin/{plugin-upgrade-notice.scss → _plugin-upgrade-notice.scss}
RENAMED
@@ -1,4 +1,4 @@
|
|
1 |
-
.plugins p.upgrade-notice
|
2 |
{
|
3 |
border: 0;
|
4 |
background-color: #d54e21;
|
1 |
+
.plugins p.fs-upgrade-notice
|
2 |
{
|
3 |
border: 0;
|
4 |
background-color: #d54e21;
|
freemius/assets/scss/admin/common.scss
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
@import "../start";
|
2 |
@import "themes";
|
3 |
|
4 |
-
#
|
5 |
{
|
6 |
line-height: 0;
|
7 |
font-size: 0;
|
@@ -215,4 +215,6 @@ span.fs-submenu-item.fs-sub:before
|
|
215 |
h2 {
|
216 |
text-align: left;
|
217 |
}
|
218 |
-
}
|
|
|
|
1 |
@import "../start";
|
2 |
@import "themes";
|
3 |
|
4 |
+
#fs_frame
|
5 |
{
|
6 |
line-height: 0;
|
7 |
font-size: 0;
|
215 |
h2 {
|
216 |
text-align: left;
|
217 |
}
|
218 |
+
}
|
219 |
+
|
220 |
+
@import "plugin-upgrade-notice";
|
freemius/gulpfile.js
DELETED
@@ -1,167 +0,0 @@
|
|
1 |
-
var gulp = require('gulp');
|
2 |
-
var path = require('path');
|
3 |
-
var filesystem = require('fs');
|
4 |
-
var wpPot = require('gulp-wp-pot');
|
5 |
-
var gettext = require('gulp-gettext');
|
6 |
-
var sort = require('gulp-sort');
|
7 |
-
var pofill = require('gulp-pofill');
|
8 |
-
var rename = require('gulp-rename');
|
9 |
-
var clean = require('gulp-clean');
|
10 |
-
|
11 |
-
var languagesFolder = './languages/';
|
12 |
-
|
13 |
-
var options = require('./transifex-config.json');
|
14 |
-
|
15 |
-
function getFolders(dir) {
|
16 |
-
return filesystem.readdirSync(dir)
|
17 |
-
.filter(function (file) {
|
18 |
-
return filesystem.statSync(path.join(dir, file)).isDirectory();
|
19 |
-
});
|
20 |
-
}
|
21 |
-
|
22 |
-
var transifex = require('gulp-transifex').createClient(options);
|
23 |
-
|
24 |
-
// Create POT out of i18n.php.
|
25 |
-
gulp.task('prepare-source', function () {
|
26 |
-
gulp.src('**/*.php')
|
27 |
-
.pipe(sort())
|
28 |
-
.pipe(wpPot({
|
29 |
-
destFile : 'freemius.pot',
|
30 |
-
package : 'freemius',
|
31 |
-
bugReport : 'https://github.com/Freemius/wordpress-sdk/issues',
|
32 |
-
lastTranslator : 'Vova Feldman <vova@freemius.com>',
|
33 |
-
team : 'Freemius Team <admin@freemius.com>',
|
34 |
-
/*gettextMethods: {
|
35 |
-
instances: ['this', '_fs'],
|
36 |
-
methods: [
|
37 |
-
'get_text_inline'
|
38 |
-
]
|
39 |
-
},*/
|
40 |
-
gettextFunctions: [
|
41 |
-
{name: 'get_text_inline'},
|
42 |
-
|
43 |
-
{name: 'fs_text_inline'},
|
44 |
-
{name: 'fs_echo_inline'},
|
45 |
-
{name: 'fs_esc_js_inline'},
|
46 |
-
{name: 'fs_esc_attr_inline'},
|
47 |
-
{name: 'fs_esc_attr_echo_inline'},
|
48 |
-
{name: 'fs_esc_html_inline'},
|
49 |
-
{name: 'fs_esc_html_echo_inline'},
|
50 |
-
|
51 |
-
{name: 'get_text_x_inline', context: 2},
|
52 |
-
{name: 'fs_text_x_inline', context: 2},
|
53 |
-
{name: 'fs_echo_x_inline', context: 2},
|
54 |
-
{name: 'fs_esc_attr_x_inline', context: 2},
|
55 |
-
{name: 'fs_esc_js_x_inline', context: 2},
|
56 |
-
{name: 'fs_esc_js_echo_x_inline', context: 2},
|
57 |
-
{name: 'fs_esc_html_x_inline', context: 2},
|
58 |
-
{name: 'fs_esc_html_echo_x_inline', context: 2}
|
59 |
-
/*,
|
60 |
-
|
61 |
-
|
62 |
-
{name: '_fs_text'},
|
63 |
-
{name: '_fs_x', context: 2},
|
64 |
-
{name: '_fs_echo'},
|
65 |
-
{name: '_fs_esc_attr'},
|
66 |
-
{name: '_fs_esc_attr_echo'},
|
67 |
-
{name: '_fs_esc_html'},
|
68 |
-
{name: '_fs_esc_html_echo'},
|
69 |
-
{name: '_fs_ex', context: 2},
|
70 |
-
{name: '_fs_esc_attr_x', context: 2},
|
71 |
-
{name: '_fs_esc_html_x', context: 2},
|
72 |
-
|
73 |
-
{name: '_fs_n', plural: 2},
|
74 |
-
{name: '_fs_n_noop', plural: 2},
|
75 |
-
{name: '_fs_nx', plural: 2, context: 4},
|
76 |
-
{name: '_fs_nx_noop', plural: 2, context: 3}*/
|
77 |
-
]
|
78 |
-
}))
|
79 |
-
.pipe(gulp.dest(languagesFolder + 'freemius.pot'));
|
80 |
-
|
81 |
-
// Create English PO out of the POT.
|
82 |
-
return gulp.src(languagesFolder + 'freemius.pot')
|
83 |
-
.pipe(pofill({
|
84 |
-
items: function (item) {
|
85 |
-
// If msgstr is empty, use identity translation
|
86 |
-
if (!item.msgstr.length) {
|
87 |
-
item.msgstr = [''];
|
88 |
-
}
|
89 |
-
if (!item.msgstr[0]) {
|
90 |
-
item.msgstr[0] = item.msgid;
|
91 |
-
}
|
92 |
-
return item;
|
93 |
-
}
|
94 |
-
}))
|
95 |
-
.pipe(rename('freemius-en.po'))
|
96 |
-
.pipe(gulp.dest(languagesFolder));
|
97 |
-
});
|
98 |
-
|
99 |
-
// Push updated po resource to transifex.
|
100 |
-
gulp.task('update-transifex', ['prepare-source'], function () {
|
101 |
-
return gulp.src(languagesFolder + 'freemius-en.po')
|
102 |
-
.pipe(transifex.pushResource());
|
103 |
-
});
|
104 |
-
|
105 |
-
// Download latest *.po translations.
|
106 |
-
gulp.task('download-translations', ['update-transifex'], function () {
|
107 |
-
return gulp.src(languagesFolder + 'freemius-en.po')
|
108 |
-
.pipe(transifex.pullResource());
|
109 |
-
});
|
110 |
-
|
111 |
-
// Move translations to languages root.
|
112 |
-
gulp.task('prepare-translations', ['download-translations'], function () {
|
113 |
-
var folders = getFolders(languagesFolder);
|
114 |
-
|
115 |
-
return folders.map(function (folder) {
|
116 |
-
return gulp.src(path.join(languagesFolder, folder, 'freemius-en.po'))
|
117 |
-
.pipe(rename('freemius-' + folder + '.po'))
|
118 |
-
.pipe(gulp.dest(languagesFolder));
|
119 |
-
});
|
120 |
-
});
|
121 |
-
|
122 |
-
// Feel up empty translations with English.
|
123 |
-
gulp.task('translations-feelup', ['prepare-translations'], function () {
|
124 |
-
return gulp.src(languagesFolder + '*.po')
|
125 |
-
.pipe(pofill({
|
126 |
-
items: function (item) {
|
127 |
-
// If msgstr is empty, use identity translation
|
128 |
-
if (0 == item.msgstr.length) {
|
129 |
-
item.msgstr = [''];
|
130 |
-
}
|
131 |
-
if (0 == item.msgstr[0].length) {
|
132 |
-
// item.msgid[0] = item.msgid;
|
133 |
-
item.msgstr[0] = item.msgid;
|
134 |
-
}
|
135 |
-
return item;
|
136 |
-
}
|
137 |
-
}))
|
138 |
-
.pipe(gulp.dest(languagesFolder));
|
139 |
-
});
|
140 |
-
|
141 |
-
// Cleanup temporary translation folders.
|
142 |
-
gulp.task('cleanup', ['prepare-translations'], function () {
|
143 |
-
var folders = getFolders(languagesFolder);
|
144 |
-
|
145 |
-
return folders.map(function (folder) {
|
146 |
-
return gulp.src(path.join(languagesFolder, folder), {read: false})
|
147 |
-
.pipe(clean());
|
148 |
-
});
|
149 |
-
});
|
150 |
-
|
151 |
-
// Compile *.po to *.mo binaries for usage.
|
152 |
-
gulp.task('compile-translations', ['translations-feelup'], function () {
|
153 |
-
// Compile POs to MOs.
|
154 |
-
return gulp.src(languagesFolder + '*.po')
|
155 |
-
.pipe(gettext())
|
156 |
-
.pipe(gulp.dest(languagesFolder))
|
157 |
-
});
|
158 |
-
|
159 |
-
gulp.task('default', [], function () {
|
160 |
-
gulp.run('prepare-source');
|
161 |
-
gulp.run('update-transifex');
|
162 |
-
gulp.run('download-translations');
|
163 |
-
gulp.run('prepare-translations');
|
164 |
-
gulp.run('translations-feelup');
|
165 |
-
gulp.run('cleanup');
|
166 |
-
gulp.run('compile-translations');
|
167 |
-
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freemius/includes/class-freemius.php
CHANGED
@@ -1265,6 +1265,26 @@
|
|
1265 |
add_action( 'plugins_loaded', array( &$this, '_hook_action_links_and_register_account_hooks' ) );
|
1266 |
|
1267 |
if ( $this->is_plugin() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1268 |
$plugin_dir = dirname( $this->_plugin_dir_path ) . '/';
|
1269 |
|
1270 |
/**
|
@@ -1432,6 +1452,84 @@
|
|
1432 |
}
|
1433 |
}
|
1434 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1435 |
/**
|
1436 |
* Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
|
1437 |
* could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
|
@@ -1539,22 +1637,10 @@
|
|
1539 |
( $this->is_theme() && self::is_themes_page() )
|
1540 |
) {
|
1541 |
add_action( 'admin_footer', array( &$this, '_add_deactivation_feedback_dialog_box' ) );
|
1542 |
-
|
1543 |
-
if ( $this->is_plugin() ) {
|
1544 |
-
add_action( 'admin_enqueue_scripts', array( &$this, '_enqueue_plugin_upgrade_notice_style' ) );
|
1545 |
-
}
|
1546 |
}
|
1547 |
}
|
1548 |
}
|
1549 |
|
1550 |
-
/**
|
1551 |
-
* @author Leo Fajardo (@leorw)
|
1552 |
-
* @since 2.1.4
|
1553 |
-
*/
|
1554 |
-
function _enqueue_plugin_upgrade_notice_style() {
|
1555 |
-
fs_enqueue_local_style( 'fs_plugin_upgrade_notice', '/admin/plugin-upgrade-notice.css' );
|
1556 |
-
}
|
1557 |
-
|
1558 |
/**
|
1559 |
* Leverage backtrace to find caller plugin file path.
|
1560 |
*
|
@@ -1670,7 +1756,7 @@
|
|
1670 |
|
1671 |
return fs_normalize_path( trailingslashit( $is_plugin ?
|
1672 |
WP_PLUGIN_DIR :
|
1673 |
-
get_theme_root() ) );
|
1674 |
}
|
1675 |
|
1676 |
/**
|
@@ -1757,7 +1843,7 @@
|
|
1757 |
$caller_file_candidate = false;
|
1758 |
$caller_map = array();
|
1759 |
$module_type = WP_FS__MODULE_TYPE_PLUGIN;
|
1760 |
-
$themes_dir = fs_normalize_path( get_theme_root() );
|
1761 |
|
1762 |
for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
|
1763 |
if ( empty( $bt[ $i ]['file'] ) ) {
|
@@ -2586,6 +2672,11 @@
|
|
2586 |
get_option( 'active_plugins' );
|
2587 |
|
2588 |
$active = array();
|
|
|
|
|
|
|
|
|
|
|
2589 |
foreach ( $active_basenames as $basename ) {
|
2590 |
$active[ $basename ] = array(
|
2591 |
'is_active' => true,
|
@@ -2886,6 +2977,10 @@
|
|
2886 |
* @since 1.1.7.3
|
2887 |
*/
|
2888 |
static function _toggle_debug_mode() {
|
|
|
|
|
|
|
|
|
2889 |
$is_on = fs_request_get( 'is_on', false, 'post' );
|
2890 |
|
2891 |
if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) {
|
@@ -2917,8 +3012,16 @@
|
|
2917 |
* @since 1.2.1.7
|
2918 |
*/
|
2919 |
static function _get_db_option() {
|
|
|
|
|
2920 |
$option_name = fs_request_get( 'option_name' );
|
2921 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2922 |
$value = get_option( $option_name );
|
2923 |
|
2924 |
$result = array(
|
@@ -2941,7 +3044,16 @@
|
|
2941 |
* @since 1.2.1.7
|
2942 |
*/
|
2943 |
static function _set_db_option() {
|
2944 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2945 |
$option_value = fs_request_get( 'option_value' );
|
2946 |
|
2947 |
if ( ! empty( $option_value ) ) {
|
@@ -4180,6 +4292,7 @@
|
|
4180 |
*/
|
4181 |
if ( $this->is_user_in_admin() &&
|
4182 |
'plugin-information' === fs_request_get( 'tab', false ) &&
|
|
|
4183 |
(
|
4184 |
( $this->is_addon() && $this->get_slug() == fs_request_get( 'plugin', false ) ) ||
|
4185 |
( $this->has_addons() && $this->get_id() == fs_request_get( 'parent_plugin_id', false ) )
|
@@ -4301,7 +4414,21 @@
|
|
4301 |
* @author Vova Feldman
|
4302 |
* @since 1.2.1.6
|
4303 |
*/
|
4304 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4305 |
FS_Plugin_Updater::instance( $this );
|
4306 |
}
|
4307 |
|
@@ -4344,6 +4471,26 @@
|
|
4344 |
}
|
4345 |
}
|
4346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4347 |
/**
|
4348 |
* @author Leo Fajardo (@leorw)
|
4349 |
*
|
@@ -5615,6 +5762,20 @@
|
|
5615 |
$this->_storage->store( "{$name}_timestamp", time() );
|
5616 |
}
|
5617 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5618 |
/**
|
5619 |
* Check if cron was executed in the last $period of seconds.
|
5620 |
*
|
@@ -5629,7 +5790,7 @@
|
|
5629 |
private function is_cron_executed( $name, $period = WP_FS__TIME_24_HOURS_IN_SEC ) {
|
5630 |
$this->_logger->entrance( $name );
|
5631 |
|
5632 |
-
$last_execution = $this->
|
5633 |
|
5634 |
if ( ! is_numeric( $last_execution ) ) {
|
5635 |
return false;
|
@@ -5897,7 +6058,7 @@
|
|
5897 |
$this->switch_to_blog( $blog_ids[0] );
|
5898 |
}
|
5899 |
|
5900 |
-
call_user_func_array( $callable, array( $blog_ids ) );
|
5901 |
|
5902 |
foreach ( $blog_ids as $blog_id ) {
|
5903 |
$this->do_action( "after_{$name}_cron", $blog_id );
|
@@ -5978,13 +6139,16 @@
|
|
5978 |
* @author Vova Feldman (@svovaf)
|
5979 |
* @since 2.0.0
|
5980 |
*
|
5981 |
-
* @param int[]
|
|
|
|
|
|
|
5982 |
*/
|
5983 |
-
function _sync_cron_method( array $blog_ids ) {
|
5984 |
if ( $this->is_registered() ) {
|
5985 |
if ( $this->has_paid_plan() ) {
|
5986 |
// Initiate background plan sync.
|
5987 |
-
$this->_sync_license( true );
|
5988 |
|
5989 |
if ( $this->is_paying() ) {
|
5990 |
// Check for premium plugin updates.
|
@@ -6199,9 +6363,10 @@
|
|
6199 |
* @author Vova Feldman (@svovaf)
|
6200 |
* @since 2.0.0
|
6201 |
*
|
6202 |
-
* @param int[]
|
|
|
6203 |
*/
|
6204 |
-
function _sync_install_cron_method( array $blog_ids ) {
|
6205 |
if ( $this->is_registered() ) {
|
6206 |
if ( 1 < count( $blog_ids ) ) {
|
6207 |
$this->sync_installs( array(), true );
|
@@ -6898,7 +7063,7 @@
|
|
6898 |
if (
|
6899 |
$is_premium_version_activation &&
|
6900 |
(
|
6901 |
-
$this->is_anonymous() ||
|
6902 |
(
|
6903 |
$this->is_registered() &&
|
6904 |
! $this->is_trial() &&
|
@@ -7831,38 +7996,43 @@
|
|
7831 |
$include_plugins = true,
|
7832 |
$include_themes = true
|
7833 |
) {
|
7834 |
-
|
7835 |
-
|
7836 |
-
|
7837 |
-
|
7838 |
-
$
|
7839 |
-
|
7840 |
-
$
|
|
|
|
|
7841 |
}
|
7842 |
}
|
7843 |
-
|
7844 |
-
|
7845 |
-
|
7846 |
-
|
7847 |
-
|
7848 |
-
if ( !
|
7849 |
-
$
|
|
|
|
|
|
|
7850 |
}
|
7851 |
}
|
7852 |
|
7853 |
$versions = $this->get_versions();
|
7854 |
|
7855 |
return array_merge( $versions, array(
|
7856 |
-
'version'
|
7857 |
-
'is_premium'
|
7858 |
-
'language'
|
7859 |
-
'charset'
|
7860 |
-
'title'
|
7861 |
-
'url'
|
7862 |
// Special params.
|
7863 |
-
'is_active'
|
7864 |
-
'is_disconnected'
|
7865 |
-
'is_uninstalled'
|
7866 |
), $override );
|
7867 |
}
|
7868 |
|
@@ -8064,28 +8234,56 @@
|
|
8064 |
$params = $this->get_install_diff_for_api( $check_properties, $this->_site, $override );
|
8065 |
}
|
8066 |
|
8067 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8068 |
if ( ! is_multisite() ) {
|
8069 |
// Update last install sync timestamp.
|
8070 |
$this->set_cron_execution_timestamp( 'install_sync' );
|
8071 |
}
|
8072 |
|
8073 |
$params['uid'] = $this->get_anonymous_id();
|
|
|
8074 |
|
8075 |
-
|
8076 |
-
$site = $this->get_api_site_scope()->call( '/', 'put', $params );
|
8077 |
|
8078 |
-
|
8079 |
-
|
8080 |
-
// I successfully sent install update, clear scheduled sync if exist.
|
8081 |
-
$this->clear_install_sync_cron();
|
8082 |
-
}
|
8083 |
-
}
|
8084 |
|
8085 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8086 |
}
|
8087 |
|
8088 |
-
return
|
8089 |
}
|
8090 |
|
8091 |
/**
|
@@ -8104,24 +8302,70 @@
|
|
8104 |
|
8105 |
$installs_data = $this->get_installs_data_for_api( $override, ! $flush );
|
8106 |
|
|
|
8107 |
if ( empty( $installs_data ) ) {
|
8108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8109 |
}
|
8110 |
|
8111 |
-
|
8112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8113 |
|
8114 |
// Send updated values to FS.
|
8115 |
$result = $this->get_api_user_scope()->call( "/plugins/{$this->_plugin->id}/installs.json", 'put', $installs_data );
|
8116 |
|
8117 |
-
if ( $this->is_api_result_object( $result, 'installs' ) ) {
|
8118 |
-
// I successfully sent installs update, clear scheduled sync if exist.
|
8119 |
$this->clear_install_sync_cron();
|
8120 |
}
|
8121 |
|
8122 |
return $result;
|
8123 |
}
|
8124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8125 |
/**
|
8126 |
* Update install only if changed.
|
8127 |
*
|
@@ -9372,7 +9616,16 @@
|
|
9372 |
* @return bool
|
9373 |
*/
|
9374 |
function is_premium() {
|
9375 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9376 |
}
|
9377 |
|
9378 |
/**
|
@@ -11347,6 +11600,34 @@
|
|
11347 |
static function get_current_page() {
|
11348 |
if ( ! isset( self::$_pagenow ) ) {
|
11349 |
global $pagenow;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11350 |
|
11351 |
self::$_pagenow = $pagenow;
|
11352 |
|
@@ -11378,6 +11659,16 @@
|
|
11378 |
return ( 'plugins.php' === self::get_current_page() );
|
11379 |
}
|
11380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11381 |
/**
|
11382 |
* @author Leo Fajardo (@leorw)
|
11383 |
* @since 2.0.2
|
@@ -12515,7 +12806,7 @@
|
|
12515 |
|
12516 |
self::$_accounts->set_site_blog_context( $blog_id );
|
12517 |
$this->_storage->set_site_blog_context( $blog_id );
|
12518 |
-
$this->_storage->set_network_active(
|
12519 |
|
12520 |
$this->_site = is_object( $install ) ?
|
12521 |
$install :
|
@@ -16829,8 +17120,11 @@
|
|
16829 |
* the admin.
|
16830 |
* @param bool $is_context_single_site @since 2.0.0. This is used when syncing a license for a single install from the
|
16831 |
* network-level "Account" page.
|
|
|
|
|
|
|
16832 |
*/
|
16833 |
-
private function _sync_license( $background = false, $is_context_single_site = false ) {
|
16834 |
$this->_logger->entrance();
|
16835 |
|
16836 |
$plugin_id = fs_request_get( 'plugin_id', $this->get_id() );
|
@@ -16840,7 +17134,7 @@
|
|
16840 |
if ( $is_addon_sync ) {
|
16841 |
$this->_sync_addon_license( $plugin_id, $background );
|
16842 |
} else {
|
16843 |
-
$this->_sync_plugin_license( $background, true, $is_context_single_site );
|
16844 |
}
|
16845 |
|
16846 |
$this->do_action( 'after_account_plan_sync', $this->get_plan_name() );
|
@@ -16930,11 +17224,15 @@
|
|
16930 |
* @param bool $is_context_single_site Since 2.0.0. This is used when sending an update for a single install and
|
16931 |
* syncing its license from the network-level "Account" page (e.g.: after
|
16932 |
* activating a license only for the single install).
|
|
|
|
|
|
|
16933 |
*/
|
16934 |
private function _sync_plugin_license(
|
16935 |
$background = false,
|
16936 |
$send_installs_update = true,
|
16937 |
-
$is_context_single_site = false
|
|
|
16938 |
) {
|
16939 |
$this->_logger->entrance();
|
16940 |
|
@@ -16951,6 +17249,16 @@
|
|
16951 |
* @todo This line will execute install sync on a daily basis, even if running the free version (for opted-in users). The reason we want to keep it that way is for cases when the user was a paying customer, then there was a failure in subscription payment, and then after some time the payment was successful. This could be heavily optimized. For example, we can skip the $flush if the current install was never associated with a paid version.
|
16952 |
*/
|
16953 |
if ( $is_site_level_sync ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16954 |
$result = $this->send_install_update( array(), true );
|
16955 |
$is_valid = $this->is_api_result_entity( $result );
|
16956 |
} else {
|
@@ -18412,7 +18720,9 @@
|
|
18412 |
*/
|
18413 |
function get_after_activation_url( $filter, $params = array(), $network = null ) {
|
18414 |
if ( $this->is_free_wp_org_theme() &&
|
18415 |
-
fs_request_has( 'pending_activation' )
|
|
|
|
|
18416 |
) {
|
18417 |
$first_time_path = '';
|
18418 |
} else {
|
@@ -20721,13 +21031,19 @@
|
|
20721 |
|
20722 |
// Locate the main assets folder.
|
20723 |
if ( 1 < count( $fs_active_plugins->plugins ) ) {
|
20724 |
-
$plugin_or_theme_img_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root() );
|
20725 |
|
20726 |
foreach ( $fs_active_plugins->plugins as $sdk_path => &$data ) {
|
20727 |
if ( $data->plugin_path == $this->get_plugin_basename() ) {
|
20728 |
$img_dir = $plugin_or_theme_img_dir
|
20729 |
. '/'
|
20730 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
20731 |
. '/assets/img';
|
20732 |
|
20733 |
break;
|
1265 |
add_action( 'plugins_loaded', array( &$this, '_hook_action_links_and_register_account_hooks' ) );
|
1266 |
|
1267 |
if ( $this->is_plugin() ) {
|
1268 |
+
if ( self::is_plugin_install_page() && true !== fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) {
|
1269 |
+
/**
|
1270 |
+
* Unless the `fs_allow_updater_and_dialog` URL param exists and its value is `true`, make
|
1271 |
+
* Freemius-related updates unavailable on the "Add Plugins" admin page (/plugin-install.php)
|
1272 |
+
* so that they won't interfere with the .org plugins' functionalities on that page (e.g.
|
1273 |
+
* updating of a .org plugin).
|
1274 |
+
*/
|
1275 |
+
add_filter( 'site_transient_update_plugins', array( 'Freemius', '_remove_fs_updates_from_plugin_install_page' ), 10, 2 );
|
1276 |
+
} else if ( self::is_plugins_page() || self::is_updates_page() ) {
|
1277 |
+
/**
|
1278 |
+
* On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant
|
1279 |
+
* plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can
|
1280 |
+
* determine if the plugin information dialog should show information from Freemius.
|
1281 |
+
*
|
1282 |
+
* @author Leo Fajardo (@leorw)
|
1283 |
+
* @since 2.2.3
|
1284 |
+
*/
|
1285 |
+
add_action( 'admin_footer', array( 'Freemius', '_prepend_fs_allow_updater_and_dialog_flag_url_param' ) );
|
1286 |
+
}
|
1287 |
+
|
1288 |
$plugin_dir = dirname( $this->_plugin_dir_path ) . '/';
|
1289 |
|
1290 |
/**
|
1452 |
}
|
1453 |
}
|
1454 |
|
1455 |
+
/**
|
1456 |
+
* Makes Freemius-related updates unavailable on the "Add Plugins" admin page (/plugin-install.php) so that
|
1457 |
+
* they won't interfere with the .org plugins' functionalities on that page (e.g. updating of a .org plugin).
|
1458 |
+
*
|
1459 |
+
* @author Leo Fajardo (@leorw)
|
1460 |
+
* @since 2.2.3
|
1461 |
+
*
|
1462 |
+
* @param object $updates
|
1463 |
+
* @param string|null $transient
|
1464 |
+
*
|
1465 |
+
* @return object
|
1466 |
+
*/
|
1467 |
+
static function _remove_fs_updates_from_plugin_install_page( $updates, $transient = null ) {
|
1468 |
+
if ( is_object( $updates ) && isset( $updates->response ) ) {
|
1469 |
+
foreach ( $updates->response as $file => $plugin ) {
|
1470 |
+
if ( false !== strpos( $plugin->package, 'api.freemius' ) ) {
|
1471 |
+
unset( $updates->response[ $file ] );
|
1472 |
+
}
|
1473 |
+
}
|
1474 |
+
}
|
1475 |
+
|
1476 |
+
return $updates;
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
/**
|
1480 |
+
* Prepends the `fs_allow_updater_and_dialog` param to the plugin information URLs to tell the SDK to handle
|
1481 |
+
* the information that is shown on the plugin details dialog that is shown when the relevant link is clicked.
|
1482 |
+
*
|
1483 |
+
* @author Leo Fajardo (@leorw)
|
1484 |
+
* @since 2.2.3
|
1485 |
+
*
|
1486 |
+
* @return string
|
1487 |
+
*/
|
1488 |
+
static function _prepend_fs_allow_updater_and_dialog_flag_url_param() {
|
1489 |
+
$slug_basename_map = array();
|
1490 |
+
foreach ( self::$_instances as $instance ) {
|
1491 |
+
if ( ! $instance->is_plugin() ) {
|
1492 |
+
continue;
|
1493 |
+
}
|
1494 |
+
|
1495 |
+
$slug_basename_map[ $instance->get_slug() ] = $instance->premium_plugin_basename();
|
1496 |
+
}
|
1497 |
+
?>
|
1498 |
+
<script type="text/javascript">
|
1499 |
+
(function( $ ) {
|
1500 |
+
var slugBasenameMap = <?php echo json_encode( $slug_basename_map ) ?>;
|
1501 |
+
for ( var slug in slugBasenameMap ) {
|
1502 |
+
var basename = slugBasenameMap[ slug ];
|
1503 |
+
|
1504 |
+
// Try to get the plugin rows if on the "Plugins" page.
|
1505 |
+
var $pluginRows = $( '.wp-list-table.plugins tr[data-plugin="' + basename + '"]');
|
1506 |
+
|
1507 |
+
if ( 0 === $pluginRows.length ) {
|
1508 |
+
// Try to get the plugin rows if on the "Updates" page.
|
1509 |
+
var $pluginCheckbox = $( '#update-plugins-table input[type="checkbox"][value="' + basename + '"]' );
|
1510 |
+
if ( 0 !== $pluginCheckbox.length ) {
|
1511 |
+
$pluginRows = $pluginCheckbox.parents( 'tr:first' );
|
1512 |
+
}
|
1513 |
+
}
|
1514 |
+
|
1515 |
+
if ( 0 === $pluginRows.length ) {
|
1516 |
+
// No plugin rows found.
|
1517 |
+
continue;
|
1518 |
+
}
|
1519 |
+
|
1520 |
+
// Find the "View details" links and add the `fs_allow_updater_and_dialog` param to the URL.
|
1521 |
+
$pluginRows.find( 'a[href*="plugin-install.php?tab=plugin-information"]' ).each(function() {
|
1522 |
+
var $this = $( this ),
|
1523 |
+
href = $this.attr( 'href' ).replace( '?tab=', '?fs_allow_updater_and_dialog=true&tab=');
|
1524 |
+
|
1525 |
+
$this.attr( 'href', href );
|
1526 |
+
});
|
1527 |
+
}
|
1528 |
+
})( jQuery );
|
1529 |
+
</script>
|
1530 |
+
<?php
|
1531 |
+
}
|
1532 |
+
|
1533 |
/**
|
1534 |
* Keeping the uninstall hook registered for free or premium plugin version may result to a fatal error that
|
1535 |
* could happen when a user tries to uninstall either version while one of them is still active. Uninstalling a
|
1637 |
( $this->is_theme() && self::is_themes_page() )
|
1638 |
) {
|
1639 |
add_action( 'admin_footer', array( &$this, '_add_deactivation_feedback_dialog_box' ) );
|
|
|
|
|
|
|
|
|
1640 |
}
|
1641 |
}
|
1642 |
}
|
1643 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1644 |
/**
|
1645 |
* Leverage backtrace to find caller plugin file path.
|
1646 |
*
|
1756 |
|
1757 |
return fs_normalize_path( trailingslashit( $is_plugin ?
|
1758 |
WP_PLUGIN_DIR :
|
1759 |
+
get_theme_root( get_stylesheet() ) ) );
|
1760 |
}
|
1761 |
|
1762 |
/**
|
1843 |
$caller_file_candidate = false;
|
1844 |
$caller_map = array();
|
1845 |
$module_type = WP_FS__MODULE_TYPE_PLUGIN;
|
1846 |
+
$themes_dir = fs_normalize_path( get_theme_root( get_stylesheet() ) );
|
1847 |
|
1848 |
for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) {
|
1849 |
if ( empty( $bt[ $i ]['file'] ) ) {
|
2672 |
get_option( 'active_plugins' );
|
2673 |
|
2674 |
$active = array();
|
2675 |
+
|
2676 |
+
if ( ! is_array( $active_basenames ) ) {
|
2677 |
+
return $active;
|
2678 |
+
}
|
2679 |
+
|
2680 |
foreach ( $active_basenames as $basename ) {
|
2681 |
$active[ $basename ] = array(
|
2682 |
'is_active' => true,
|
2977 |
* @since 1.1.7.3
|
2978 |
*/
|
2979 |
static function _toggle_debug_mode() {
|
2980 |
+
if ( ! is_super_admin() ) {
|
2981 |
+
return;
|
2982 |
+
}
|
2983 |
+
|
2984 |
$is_on = fs_request_get( 'is_on', false, 'post' );
|
2985 |
|
2986 |
if ( fs_request_is_post() && in_array( $is_on, array( 0, 1 ) ) ) {
|
3012 |
* @since 1.2.1.7
|
3013 |
*/
|
3014 |
static function _get_db_option() {
|
3015 |
+
check_admin_referer( 'fs_get_db_option' );
|
3016 |
+
|
3017 |
$option_name = fs_request_get( 'option_name' );
|
3018 |
|
3019 |
+
if ( ! is_super_admin() ||
|
3020 |
+
! fs_starts_with( $option_name, 'fs_' )
|
3021 |
+
) {
|
3022 |
+
self::shoot_ajax_failure();
|
3023 |
+
}
|
3024 |
+
|
3025 |
$value = get_option( $option_name );
|
3026 |
|
3027 |
$result = array(
|
3044 |
* @since 1.2.1.7
|
3045 |
*/
|
3046 |
static function _set_db_option() {
|
3047 |
+
check_admin_referer( 'fs_set_db_option' );
|
3048 |
+
|
3049 |
+
$option_name = fs_request_get( 'option_name' );
|
3050 |
+
|
3051 |
+
if ( ! is_super_admin() ||
|
3052 |
+
! fs_starts_with( $option_name, 'fs_' )
|
3053 |
+
) {
|
3054 |
+
self::shoot_ajax_failure();
|
3055 |
+
}
|
3056 |
+
|
3057 |
$option_value = fs_request_get( 'option_value' );
|
3058 |
|
3059 |
if ( ! empty( $option_value ) ) {
|
4292 |
*/
|
4293 |
if ( $this->is_user_in_admin() &&
|
4294 |
'plugin-information' === fs_request_get( 'tab', false ) &&
|
4295 |
+
$this->should_use_freemius_updater_and_dialog() &&
|
4296 |
(
|
4297 |
( $this->is_addon() && $this->get_slug() == fs_request_get( 'plugin', false ) ) ||
|
4298 |
( $this->has_addons() && $this->get_id() == fs_request_get( 'parent_plugin_id', false ) )
|
4414 |
* @author Vova Feldman
|
4415 |
* @since 1.2.1.6
|
4416 |
*/
|
4417 |
+
if (
|
4418 |
+
$this->should_use_freemius_updater_and_dialog() &&
|
4419 |
+
(
|
4420 |
+
$this->is_premium() ||
|
4421 |
+
/**
|
4422 |
+
* If not premium but the premium version is installed, also instantiate the updater so that the
|
4423 |
+
* plugin information dialog of the premium version will have the information from the server.
|
4424 |
+
*
|
4425 |
+
* @author Leo Fajardo (@leorw)
|
4426 |
+
* @since 2.2.3
|
4427 |
+
*/
|
4428 |
+
( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $this->premium_plugin_basename() ) ) )
|
4429 |
+
) &&
|
4430 |
+
$this->has_release_on_freemius()
|
4431 |
+
) {
|
4432 |
FS_Plugin_Updater::instance( $this );
|
4433 |
}
|
4434 |
|
4471 |
}
|
4472 |
}
|
4473 |
|
4474 |
+
/**
|
4475 |
+
* @author Leo Fajardo (@leorw)
|
4476 |
+
* @since 2.2.3
|
4477 |
+
*
|
4478 |
+
* @return bool
|
4479 |
+
*/
|
4480 |
+
private function should_use_freemius_updater_and_dialog() {
|
4481 |
+
return (
|
4482 |
+
/**
|
4483 |
+
* Unless the `fs_allow_updater_and_dialog` URL param exists and its value is `true`, disallow updater
|
4484 |
+
* and dialog on the "Add Plugins" admin page (/plugin-install.php) so that they won't interfere with
|
4485 |
+
* the .org plugins' functionalities on that page (e.g. installation and viewing plugin details from
|
4486 |
+
* .org).
|
4487 |
+
*/
|
4488 |
+
( ! self::is_plugin_install_page() || true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) &&
|
4489 |
+
// Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected.
|
4490 |
+
( 'install-plugin' !== fs_request_get( 'action' ) )
|
4491 |
+
);
|
4492 |
+
}
|
4493 |
+
|
4494 |
/**
|
4495 |
* @author Leo Fajardo (@leorw)
|
4496 |
*
|
5762 |
$this->_storage->store( "{$name}_timestamp", time() );
|
5763 |
}
|
5764 |
|
5765 |
+
/**
|
5766 |
+
* Sets the keepalive time to now.
|
5767 |
+
*
|
5768 |
+
* @author Leo Fajardo (@leorw)
|
5769 |
+
* @since 2.2.3
|
5770 |
+
*
|
5771 |
+
* @param bool|null $use_network_level_storage
|
5772 |
+
*/
|
5773 |
+
private function set_keepalive_timestamp( $use_network_level_storage = null ) {
|
5774 |
+
$this->_logger->entrance();
|
5775 |
+
|
5776 |
+
$this->_storage->store( 'keepalive_timestamp', time(), $use_network_level_storage );
|
5777 |
+
}
|
5778 |
+
|
5779 |
/**
|
5780 |
* Check if cron was executed in the last $period of seconds.
|
5781 |
*
|
5790 |
private function is_cron_executed( $name, $period = WP_FS__TIME_24_HOURS_IN_SEC ) {
|
5791 |
$this->_logger->entrance( $name );
|
5792 |
|
5793 |
+
$last_execution = $this->cron_last_execution( $name );
|
5794 |
|
5795 |
if ( ! is_numeric( $last_execution ) ) {
|
5796 |
return false;
|
6058 |
$this->switch_to_blog( $blog_ids[0] );
|
6059 |
}
|
6060 |
|
6061 |
+
call_user_func_array( $callable, array( $blog_ids, ( is_multisite() ? $current_blog_id : null ) ) );
|
6062 |
|
6063 |
foreach ( $blog_ids as $blog_id ) {
|
6064 |
$this->do_action( "after_{$name}_cron", $blog_id );
|
6139 |
* @author Vova Feldman (@svovaf)
|
6140 |
* @since 2.0.0
|
6141 |
*
|
6142 |
+
* @param int[] $blog_ids
|
6143 |
+
* @param int|null $current_blog_id @since 2.2.3. This is passed from the `execute_cron` method and used by the
|
6144 |
+
* `_sync_plugin_license` method in order to switch to the previous blog when sending
|
6145 |
+
* updates for a single site in case `execute_cron` has switched to a different blog.
|
6146 |
*/
|
6147 |
+
function _sync_cron_method( array $blog_ids, $current_blog_id = null ) {
|
6148 |
if ( $this->is_registered() ) {
|
6149 |
if ( $this->has_paid_plan() ) {
|
6150 |
// Initiate background plan sync.
|
6151 |
+
$this->_sync_license( true, false, $current_blog_id );
|
6152 |
|
6153 |
if ( $this->is_paying() ) {
|
6154 |
// Check for premium plugin updates.
|
6363 |
* @author Vova Feldman (@svovaf)
|
6364 |
* @since 2.0.0
|
6365 |
*
|
6366 |
+
* @param int[] $blog_ids
|
6367 |
+
* @param int|null $current_blog_id
|
6368 |
*/
|
6369 |
+
function _sync_install_cron_method( array $blog_ids, $current_blog_id = null ) {
|
6370 |
if ( $this->is_registered() ) {
|
6371 |
if ( 1 < count( $blog_ids ) ) {
|
6372 |
$this->sync_installs( array(), true );
|
7063 |
if (
|
7064 |
$is_premium_version_activation &&
|
7065 |
(
|
7066 |
+
( ! $this->is_registered() && $this->is_anonymous() ) ||
|
7067 |
(
|
7068 |
$this->is_registered() &&
|
7069 |
! $this->is_trial() &&
|
7996 |
$include_plugins = true,
|
7997 |
$include_themes = true
|
7998 |
) {
|
7999 |
+
if ( ! defined( 'WP_FS__TRACK_PLUGINS' ) || false !== WP_FS__TRACK_PLUGINS ) {
|
8000 |
+
/**
|
8001 |
+
* @since 1.1.8 Also send plugin updates.
|
8002 |
+
*/
|
8003 |
+
if ( $include_plugins && ! isset( $override['plugins'] ) ) {
|
8004 |
+
$plugins = $this->get_plugins_data_for_api();
|
8005 |
+
if ( ! empty( $plugins ) ) {
|
8006 |
+
$override['plugins'] = $plugins;
|
8007 |
+
}
|
8008 |
}
|
8009 |
}
|
8010 |
+
|
8011 |
+
if ( ! defined( 'WP_FS__TRACK_THEMES' ) || false !== WP_FS__TRACK_THEMES ) {
|
8012 |
+
/**
|
8013 |
+
* @since 1.1.8 Also send themes updates.
|
8014 |
+
*/
|
8015 |
+
if ( $include_themes && ! isset( $override['themes'] ) ) {
|
8016 |
+
$themes = $this->get_themes_data_for_api();
|
8017 |
+
if ( ! empty( $themes ) ) {
|
8018 |
+
$override['themes'] = $themes;
|
8019 |
+
}
|
8020 |
}
|
8021 |
}
|
8022 |
|
8023 |
$versions = $this->get_versions();
|
8024 |
|
8025 |
return array_merge( $versions, array(
|
8026 |
+
'version' => $this->get_plugin_version(),
|
8027 |
+
'is_premium' => $this->is_premium(),
|
8028 |
+
'language' => get_bloginfo( 'language' ),
|
8029 |
+
'charset' => get_bloginfo( 'charset' ),
|
8030 |
+
'title' => get_bloginfo( 'name' ),
|
8031 |
+
'url' => get_site_url(),
|
8032 |
// Special params.
|
8033 |
+
'is_active' => true,
|
8034 |
+
'is_disconnected' => $this->is_tracking_prohibited(),
|
8035 |
+
'is_uninstalled' => false,
|
8036 |
), $override );
|
8037 |
}
|
8038 |
|
8234 |
$params = $this->get_install_diff_for_api( $check_properties, $this->_site, $override );
|
8235 |
}
|
8236 |
|
8237 |
+
$keepalive_only_update = false;
|
8238 |
+
if ( empty( $params ) ) {
|
8239 |
+
$keepalive_only_update = $this->should_send_keepalive_update();
|
8240 |
+
|
8241 |
+
if ( ! $keepalive_only_update ) {
|
8242 |
+
/**
|
8243 |
+
* There are no updates to send including keepalive.
|
8244 |
+
*
|
8245 |
+
* @author Leo Fajardo (@leorw)
|
8246 |
+
* @since 2.2.3
|
8247 |
+
*/
|
8248 |
+
return false;
|
8249 |
+
}
|
8250 |
+
}
|
8251 |
+
|
8252 |
+
if ( ! $keepalive_only_update ) {
|
8253 |
+
/**
|
8254 |
+
* Do not update the last install sync timestamp after a keepalive-only call since there were no actual
|
8255 |
+
* updates sent.
|
8256 |
+
*
|
8257 |
+
* @author Leo Fajardo (@leorw)
|
8258 |
+
* @since 2.2.3
|
8259 |
+
*/
|
8260 |
if ( ! is_multisite() ) {
|
8261 |
// Update last install sync timestamp.
|
8262 |
$this->set_cron_execution_timestamp( 'install_sync' );
|
8263 |
}
|
8264 |
|
8265 |
$params['uid'] = $this->get_anonymous_id();
|
8266 |
+
}
|
8267 |
|
8268 |
+
$this->set_keepalive_timestamp();
|
|
|
8269 |
|
8270 |
+
// Send updated values to FS.
|
8271 |
+
$site = $this->get_api_site_scope()->call( '/', 'put', $params );
|
|
|
|
|
|
|
|
|
8272 |
|
8273 |
+
if ( ! $keepalive_only_update && $this->is_api_result_entity( $site ) ) {
|
8274 |
+
/**
|
8275 |
+
* Do not clear scheduled sync after a keepalive-only call since there were no actual updates sent.
|
8276 |
+
*
|
8277 |
+
* @author Leo Fajardo (@leorw)
|
8278 |
+
* @since 2.2.3
|
8279 |
+
*/
|
8280 |
+
if ( ! is_multisite() ) {
|
8281 |
+
// I successfully sent install update, clear scheduled sync if exist.
|
8282 |
+
$this->clear_install_sync_cron();
|
8283 |
+
}
|
8284 |
}
|
8285 |
|
8286 |
+
return $site;
|
8287 |
}
|
8288 |
|
8289 |
/**
|
8302 |
|
8303 |
$installs_data = $this->get_installs_data_for_api( $override, ! $flush );
|
8304 |
|
8305 |
+
$keepalive_only_update = false;
|
8306 |
if ( empty( $installs_data ) ) {
|
8307 |
+
/**
|
8308 |
+
* Pass `true` to use the network level storage since the update is for many installs.
|
8309 |
+
*
|
8310 |
+
* @author Leo Fajardo (@leorw)
|
8311 |
+
* @since 2.2.3
|
8312 |
+
*/
|
8313 |
+
$keepalive_only_update = $this->should_send_keepalive_update( true );
|
8314 |
+
|
8315 |
+
if ( ! $keepalive_only_update ) {
|
8316 |
+
/**
|
8317 |
+
* There are no updates to send including keepalive.
|
8318 |
+
*
|
8319 |
+
* @author Leo Fajardo (@leorw)
|
8320 |
+
* @since 2.2.3
|
8321 |
+
*/
|
8322 |
+
return false;
|
8323 |
+
}
|
8324 |
}
|
8325 |
|
8326 |
+
if ( ! $keepalive_only_update ) {
|
8327 |
+
// Update last install sync timestamp if there were actual updates sent (i.e., not a keepalive-only call).
|
8328 |
+
$this->set_cron_execution_timestamp( 'install_sync' );
|
8329 |
+
}
|
8330 |
+
|
8331 |
+
/**
|
8332 |
+
* Pass `true` to use the network level storage since the update is for many installs.
|
8333 |
+
*
|
8334 |
+
* @author Leo Fajardo (@leorw)
|
8335 |
+
* @since 2.2.3
|
8336 |
+
*/
|
8337 |
+
$this->set_keepalive_timestamp( true );
|
8338 |
|
8339 |
// Send updated values to FS.
|
8340 |
$result = $this->get_api_user_scope()->call( "/plugins/{$this->_plugin->id}/installs.json", 'put', $installs_data );
|
8341 |
|
8342 |
+
if ( ! $keepalive_only_update && $this->is_api_result_object( $result, 'installs' ) ) {
|
8343 |
+
// I successfully sent installs update (there was an actual update sent and it's not just a keepalive-only call), clear scheduled sync if exist.
|
8344 |
$this->clear_install_sync_cron();
|
8345 |
}
|
8346 |
|
8347 |
return $result;
|
8348 |
}
|
8349 |
|
8350 |
+
/**
|
8351 |
+
* @author Leo Fajardo (@leorw)
|
8352 |
+
*
|
8353 |
+
* @param bool|null $use_network_level_storage
|
8354 |
+
*
|
8355 |
+
* @return bool
|
8356 |
+
*/
|
8357 |
+
private function should_send_keepalive_update( $use_network_level_storage = null ) {
|
8358 |
+
$keepalive_timestamp = $this->_storage->get( 'keepalive_timestamp', 0, $use_network_level_storage );
|
8359 |
+
|
8360 |
+
if ( $keepalive_timestamp < ( time() - WP_FS__TIME_WEEK_IN_SEC ) ) {
|
8361 |
+
// If updated more than 7 days ago, trigger a keepalive and update the time it was triggered.
|
8362 |
+
return true;
|
8363 |
+
} else {
|
8364 |
+
// If updated 7 days ago or less, "flip a coin", if the value is 7 trigger a keepalive and update the last time it was triggered.
|
8365 |
+
return ( 7 == rand( 1, 7 ) );
|
8366 |
+
}
|
8367 |
+
}
|
8368 |
+
|
8369 |
/**
|
8370 |
* Update install only if changed.
|
8371 |
*
|
9616 |
* @return bool
|
9617 |
*/
|
9618 |
function is_premium() {
|
9619 |
+
/**
|
9620 |
+
* `$this->_plugin` will be `false` when `is_activation_mode` calls this method directly from the
|
9621 |
+
* `_register_hooks` method.
|
9622 |
+
*
|
9623 |
+
* @author Leo Fajardo (@leorw)
|
9624 |
+
* @since 2.2.3
|
9625 |
+
*/
|
9626 |
+
return is_object( $this->_plugin ) ?
|
9627 |
+
$this->_plugin->is_premium :
|
9628 |
+
false;
|
9629 |
}
|
9630 |
|
9631 |
/**
|
11600 |
static function get_current_page() {
|
11601 |
if ( ! isset( self::$_pagenow ) ) {
|
11602 |
global $pagenow;
|
11603 |
+
if ( empty( $pagenow ) && is_admin() && is_multisite() ) {
|
11604 |
+
/**
|
11605 |
+
* It appears that `$pagenow` is not yet initialized in some network admin pages when this method
|
11606 |
+
* is called, so initialize it here using some pieces of code from `wp-includes/vars.php`.
|
11607 |
+
*
|
11608 |
+
* @author Leo Fajardo (@leorw)
|
11609 |
+
* @since 2.2.3
|
11610 |
+
*/
|
11611 |
+
if ( is_network_admin() ) {
|
11612 |
+
preg_match( '#/wp-admin/network/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
|
11613 |
+
} else if ( is_user_admin() ) {
|
11614 |
+
preg_match( '#/wp-admin/user/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
|
11615 |
+
} else {
|
11616 |
+
preg_match( '#/wp-admin/?(.*?)$#i', $_SERVER['PHP_SELF'], $self_matches );
|
11617 |
+
}
|
11618 |
+
|
11619 |
+
$pagenow = $self_matches[1];
|
11620 |
+
$pagenow = trim( $pagenow, '/' );
|
11621 |
+
$pagenow = preg_replace( '#\?.*?$#', '', $pagenow );
|
11622 |
+
if ( '' === $pagenow || 'index' === $pagenow || 'index.php' === $pagenow ) {
|
11623 |
+
$pagenow = 'index.php';
|
11624 |
+
} else {
|
11625 |
+
preg_match( '#(.*?)(/|$)#', $pagenow, $self_matches );
|
11626 |
+
$pagenow = strtolower( $self_matches[1] );
|
11627 |
+
if ( '.php' !== substr($pagenow, -4, 4) )
|
11628 |
+
$pagenow .= '.php'; // for Options +Multiviews: /wp-admin/themes/index.php (themes.php is queried)
|
11629 |
+
}
|
11630 |
+
}
|
11631 |
|
11632 |
self::$_pagenow = $pagenow;
|
11633 |
|
11659 |
return ( 'plugins.php' === self::get_current_page() );
|
11660 |
}
|
11661 |
|
11662 |
+
/**
|
11663 |
+
* @author Leo Fajardo (@leorw)
|
11664 |
+
* @since 2.2.3
|
11665 |
+
*
|
11666 |
+
* @return bool
|
11667 |
+
*/
|
11668 |
+
static function is_plugin_install_page() {
|
11669 |
+
return ( 'plugin-install.php' === self::get_current_page() );
|
11670 |
+
}
|
11671 |
+
|
11672 |
/**
|
11673 |
* @author Leo Fajardo (@leorw)
|
11674 |
* @since 2.0.2
|
12806 |
|
12807 |
self::$_accounts->set_site_blog_context( $blog_id );
|
12808 |
$this->_storage->set_site_blog_context( $blog_id );
|
12809 |
+
$this->_storage->set_network_active( $this->_is_network_active, $this->is_delegated_connection( $blog_id ) );
|
12810 |
|
12811 |
$this->_site = is_object( $install ) ?
|
12812 |
$install :
|
17120 |
* the admin.
|
17121 |
* @param bool $is_context_single_site @since 2.0.0. This is used when syncing a license for a single install from the
|
17122 |
* network-level "Account" page.
|
17123 |
+
* @param int|null $current_blog_id @since 2.2.3. This is passed from the `execute_cron` method and used by the
|
17124 |
+
* `_sync_plugin_license` method in order to switch to the previous blog when sending
|
17125 |
+
* updates for a single site in case `execute_cron` has switched to a different blog.
|
17126 |
*/
|
17127 |
+
private function _sync_license( $background = false, $is_context_single_site = false, $current_blog_id = null ) {
|
17128 |
$this->_logger->entrance();
|
17129 |
|
17130 |
$plugin_id = fs_request_get( 'plugin_id', $this->get_id() );
|
17134 |
if ( $is_addon_sync ) {
|
17135 |
$this->_sync_addon_license( $plugin_id, $background );
|
17136 |
} else {
|
17137 |
+
$this->_sync_plugin_license( $background, true, $is_context_single_site, $current_blog_id );
|
17138 |
}
|
17139 |
|
17140 |
$this->do_action( 'after_account_plan_sync', $this->get_plan_name() );
|
17224 |
* @param bool $is_context_single_site Since 2.0.0. This is used when sending an update for a single install and
|
17225 |
* syncing its license from the network-level "Account" page (e.g.: after
|
17226 |
* activating a license only for the single install).
|
17227 |
+
* @param int|null $current_blog_id Since 2.2.3. This is passed from the `execute_cron` method so that it
|
17228 |
+
* can be used here to switch to the previous blog in case `execute_cron`
|
17229 |
+
* has switched to a different blog.
|
17230 |
*/
|
17231 |
private function _sync_plugin_license(
|
17232 |
$background = false,
|
17233 |
$send_installs_update = true,
|
17234 |
+
$is_context_single_site = false,
|
17235 |
+
$current_blog_id = null
|
17236 |
) {
|
17237 |
$this->_logger->entrance();
|
17238 |
|
17249 |
* @todo This line will execute install sync on a daily basis, even if running the free version (for opted-in users). The reason we want to keep it that way is for cases when the user was a paying customer, then there was a failure in subscription payment, and then after some time the payment was successful. This could be heavily optimized. For example, we can skip the $flush if the current install was never associated with a paid version.
|
17250 |
*/
|
17251 |
if ( $is_site_level_sync ) {
|
17252 |
+
/**
|
17253 |
+
* Switch to the previous blog since `execute_cron` may have switched to a different blog.
|
17254 |
+
*
|
17255 |
+
* @author Leo Fajardo (@leorw)
|
17256 |
+
* @since 2.2.3
|
17257 |
+
*/
|
17258 |
+
if ( is_numeric( $current_blog_id ) ) {
|
17259 |
+
$this->switch_to_blog( $current_blog_id );
|
17260 |
+
}
|
17261 |
+
|
17262 |
$result = $this->send_install_update( array(), true );
|
17263 |
$is_valid = $this->is_api_result_entity( $result );
|
17264 |
} else {
|
18720 |
*/
|
18721 |
function get_after_activation_url( $filter, $params = array(), $network = null ) {
|
18722 |
if ( $this->is_free_wp_org_theme() &&
|
18723 |
+
( fs_request_has( 'pending_activation' ) ||
|
18724 |
+
// For cases when the first time path is set, even though it's a WP.org theme.
|
18725 |
+
fs_request_get_bool( $this->get_unique_affix() . '_show_optin' ) )
|
18726 |
) {
|
18727 |
$first_time_path = '';
|
18728 |
} else {
|
21031 |
|
21032 |
// Locate the main assets folder.
|
21033 |
if ( 1 < count( $fs_active_plugins->plugins ) ) {
|
21034 |
+
$plugin_or_theme_img_dir = ( $this->is_plugin() ? WP_PLUGIN_DIR : get_theme_root( get_stylesheet() ) );
|
21035 |
|
21036 |
foreach ( $fs_active_plugins->plugins as $sdk_path => &$data ) {
|
21037 |
if ( $data->plugin_path == $this->get_plugin_basename() ) {
|
21038 |
$img_dir = $plugin_or_theme_img_dir
|
21039 |
. '/'
|
21040 |
+
/**
|
21041 |
+
* The basename will be `themes` or the basename of a custom themes directory.
|
21042 |
+
*
|
21043 |
+
* @author Leo Fajardo (@leorw)
|
21044 |
+
* @since 2.2.3
|
21045 |
+
*/
|
21046 |
+
. str_replace( '../' . basename( $plugin_or_theme_img_dir ) . '/', '', $sdk_path )
|
21047 |
. '/assets/img';
|
21048 |
|
21049 |
break;
|
freemius/includes/class-fs-api.php
CHANGED
@@ -238,7 +238,7 @@
|
|
238 |
if ( ! is_object( $result ) || isset( $result->error ) ) {
|
239 |
// Api returned an error.
|
240 |
if ( is_object( $cached_result ) &&
|
241 |
-
! isset( $cached_result )
|
242 |
) {
|
243 |
// If there was an error during a newer data fetch,
|
244 |
// fallback to older data version.
|
@@ -248,9 +248,19 @@
|
|
248 |
$this->_logger->warn( 'Fallback to cached API result: ' . var_export( $cached_result, true ) );
|
249 |
}
|
250 |
} else {
|
251 |
-
|
252 |
-
|
253 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
}
|
255 |
}
|
256 |
|
238 |
if ( ! is_object( $result ) || isset( $result->error ) ) {
|
239 |
// Api returned an error.
|
240 |
if ( is_object( $cached_result ) &&
|
241 |
+
! isset( $cached_result->error )
|
242 |
) {
|
243 |
// If there was an error during a newer data fetch,
|
244 |
// fallback to older data version.
|
248 |
$this->_logger->warn( 'Fallback to cached API result: ' . var_export( $cached_result, true ) );
|
249 |
}
|
250 |
} else {
|
251 |
+
if ( is_object( $result ) && 404 == $result->error->http ) {
|
252 |
+
/**
|
253 |
+
* If the response code is 404, cache the result for half of the `$expiration`.
|
254 |
+
*
|
255 |
+
* @author Leo Fajardo (@leorw)
|
256 |
+
* @since 2.2.3.1
|
257 |
+
*/
|
258 |
+
$expiration /= 2;
|
259 |
+
} else {
|
260 |
+
// If no older data version and the response code is not 404, return result without
|
261 |
+
// caching the error.
|
262 |
+
return $result;
|
263 |
+
}
|
264 |
}
|
265 |
}
|
266 |
|
freemius/includes/class-fs-plugin-updater.php
CHANGED
@@ -296,9 +296,13 @@
|
|
296 |
isset( $r->upgrade_notice ) &&
|
297 |
strlen( trim( $r->upgrade_notice ) ) > 0
|
298 |
) {
|
|
|
|
|
299 |
$upgrade_notice_html = sprintf(
|
300 |
-
'<p class="notice upgrade-notice"><strong>%
|
301 |
-
|
|
|
|
|
302 |
esc_html( $r->upgrade_notice )
|
303 |
);
|
304 |
|
@@ -1242,7 +1246,7 @@ if ( !isset($info->error) ) {
|
|
1242 |
static function _store_basename_for_source_adjustment( $response, $hook_extra ) {
|
1243 |
if ( isset( $hook_extra['plugin'] ) ) {
|
1244 |
self::$_upgrade_basename = $hook_extra['plugin'];
|
1245 |
-
} else if ( $hook_extra['theme'] ) {
|
1246 |
self::$_upgrade_basename = $hook_extra['theme'];
|
1247 |
} else {
|
1248 |
self::$_upgrade_basename = null;
|
@@ -1353,4 +1357,4 @@ if ( !isset($info->error) ) {
|
|
1353 |
}
|
1354 |
|
1355 |
#endregion
|
1356 |
-
}
|
296 |
isset( $r->upgrade_notice ) &&
|
297 |
strlen( trim( $r->upgrade_notice ) ) > 0
|
298 |
) {
|
299 |
+
$slug = $this->_fs->get_slug();
|
300 |
+
|
301 |
$upgrade_notice_html = sprintf(
|
302 |
+
'<p class="notice fs-upgrade-notice fs-slug-%1s fs-type-%2s" data-slug="%1s" data-type="%2s"><strong>%3s</strong> %4s</p>',
|
303 |
+
$slug,
|
304 |
+
$this->_fs->get_module_type(),
|
305 |
+
fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $slug ),
|
306 |
esc_html( $r->upgrade_notice )
|
307 |
);
|
308 |
|
1246 |
static function _store_basename_for_source_adjustment( $response, $hook_extra ) {
|
1247 |
if ( isset( $hook_extra['plugin'] ) ) {
|
1248 |
self::$_upgrade_basename = $hook_extra['plugin'];
|
1249 |
+
} else if ( isset( $hook_extra['theme'] ) ) {
|
1250 |
self::$_upgrade_basename = $hook_extra['theme'];
|
1251 |
} else {
|
1252 |
self::$_upgrade_basename = null;
|
1357 |
}
|
1358 |
|
1359 |
#endregion
|
1360 |
+
}
|
freemius/includes/class-fs-storage.php
CHANGED
@@ -132,9 +132,8 @@
|
|
132 |
* @param int $blog_id
|
133 |
*/
|
134 |
function set_site_blog_context( $blog_id ) {
|
|
|
135 |
$this->_blog_id = $blog_id;
|
136 |
-
|
137 |
-
$this->_storage = $this->get_site_storage( $this->_blog_id );
|
138 |
}
|
139 |
|
140 |
/**
|
132 |
* @param int $blog_id
|
133 |
*/
|
134 |
function set_site_blog_context( $blog_id ) {
|
135 |
+
$this->_storage = $this->get_site_storage( $blog_id );
|
136 |
$this->_blog_id = $blog_id;
|
|
|
|
|
137 |
}
|
138 |
|
139 |
/**
|
freemius/includes/fs-core-functions.php
CHANGED
@@ -86,9 +86,25 @@
|
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
return $asset_url;
|
94 |
}
|
@@ -709,6 +725,97 @@
|
|
709 |
return $key;
|
710 |
}
|
711 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
712 |
/**
|
713 |
* Get a translatable text override if exists, or `false`.
|
714 |
*
|
@@ -746,7 +853,9 @@
|
|
746 |
|
747 |
return false;
|
748 |
}
|
|
|
749 |
|
|
|
750 |
/**
|
751 |
* Get a translatable text and its text domain.
|
752 |
*
|
@@ -776,9 +885,9 @@
|
|
776 |
|
777 |
return array( $text, $text_domain );
|
778 |
}
|
|
|
779 |
|
780 |
-
|
781 |
-
|
782 |
/**
|
783 |
* Retrieve an inline translated text by key.
|
784 |
*
|
@@ -801,33 +910,9 @@
|
|
801 |
|
802 |
return $fn( $text, $text_domain );
|
803 |
}
|
|
|
804 |
|
805 |
-
|
806 |
-
* Retrieve an inline translated text by key with a context.
|
807 |
-
*
|
808 |
-
* @author Vova Feldman (@svovaf)
|
809 |
-
* @since 1.2.3
|
810 |
-
*
|
811 |
-
* @param string $text Translatable string.
|
812 |
-
* @param string $context Context information for the translators.
|
813 |
-
* @param string $key String key for overrides.
|
814 |
-
* @param string $slug Module slug for overrides.
|
815 |
-
*
|
816 |
-
* @return string
|
817 |
-
*
|
818 |
-
* @global $fs_text_overrides
|
819 |
-
*/
|
820 |
-
function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
821 |
-
list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
|
822 |
-
|
823 |
-
// Avoid misleading Theme Check warning.
|
824 |
-
$fn = 'translate_with_gettext_context';
|
825 |
-
|
826 |
-
return $fn( $text, $context, $text_domain );
|
827 |
-
}
|
828 |
-
|
829 |
-
#endregion
|
830 |
-
|
831 |
/**
|
832 |
* Retrieve an inline translated text by key.
|
833 |
*
|
@@ -845,67 +930,6 @@
|
|
845 |
function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
|
846 |
return _fs_text_inline( $text, $key, $slug );
|
847 |
}
|
848 |
-
|
849 |
-
/**
|
850 |
-
* Retrieve an inline translated text by key with a context.
|
851 |
-
*
|
852 |
-
* @author Vova Feldman (@svovaf)
|
853 |
-
* @since 1.2.3
|
854 |
-
*
|
855 |
-
* @param string $text Translatable string.
|
856 |
-
* @param string $context Context information for the translators.
|
857 |
-
* @param string $key String key for overrides.
|
858 |
-
* @param string $slug Module slug for overrides.
|
859 |
-
*
|
860 |
-
* @return string
|
861 |
-
*
|
862 |
-
* @global $fs_text_overrides
|
863 |
-
*/
|
864 |
-
function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
865 |
-
return _fs_text_x_inline( $text, $context, $key, $slug );
|
866 |
-
}
|
867 |
-
|
868 |
-
/**
|
869 |
-
* Output a translated text by key.
|
870 |
-
*
|
871 |
-
* @author Vova Feldman (@svovaf)
|
872 |
-
* @since 1.2.1.7
|
873 |
-
*
|
874 |
-
* @param string $key
|
875 |
-
* @param string $slug
|
876 |
-
*/
|
877 |
-
function fs_echo( $key, $slug = 'freemius' ) {
|
878 |
-
echo fs_text( $key, $slug );
|
879 |
-
}
|
880 |
-
|
881 |
-
/**
|
882 |
-
* Output an inline translated text.
|
883 |
-
*
|
884 |
-
* @author Vova Feldman (@svovaf)
|
885 |
-
* @since 1.2.3
|
886 |
-
*
|
887 |
-
* @param string $text Translatable string.
|
888 |
-
* @param string $key String key for overrides.
|
889 |
-
* @param string $slug Module slug for overrides.
|
890 |
-
*/
|
891 |
-
function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
|
892 |
-
echo _fs_text_inline( $text, $key, $slug );
|
893 |
-
}
|
894 |
-
|
895 |
-
/**
|
896 |
-
* Output an inline translated text with a context.
|
897 |
-
*
|
898 |
-
* @author Vova Feldman (@svovaf)
|
899 |
-
* @since 1.2.3
|
900 |
-
*
|
901 |
-
* @param string $text Translatable string.
|
902 |
-
* @param string $context Context information for the translators.
|
903 |
-
* @param string $key String key for overrides.
|
904 |
-
* @param string $slug Module slug for overrides.
|
905 |
-
*/
|
906 |
-
function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
907 |
-
echo _fs_text_x_inline( $text, $context, $key, $slug );
|
908 |
-
}
|
909 |
}
|
910 |
|
911 |
if ( ! function_exists( 'fs_esc_attr' ) ) {
|
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 |
|
90 |
+
if ( 0 === strpos( $asset_abs_path, $wp_content_dir ) ) {
|
91 |
+
// Handle both theme and plugin assets located in the standard directories.
|
92 |
+
$asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path );
|
93 |
+
$asset_url = content_url( fs_normalize_path( $asset_rel_path ) );
|
94 |
+
} else {
|
95 |
+
$wp_plugins_dir = fs_normalize_path( WP_PLUGIN_DIR );
|
96 |
+
if ( 0 === strpos( $asset_abs_path, $wp_plugins_dir ) ) {
|
97 |
+
// Try to handle plugin assets that may be located in a non-standard plugins directory.
|
98 |
+
$asset_rel_path = str_replace( $wp_plugins_dir, '', $asset_abs_path );
|
99 |
+
$asset_url = plugins_url( fs_normalize_path( $asset_rel_path ) );
|
100 |
+
} else {
|
101 |
+
// Try to handle theme assets that may be located in a non-standard themes directory.
|
102 |
+
$active_theme_stylesheet = get_stylesheet();
|
103 |
+
$wp_themes_dir = fs_normalize_path( trailingslashit( get_theme_root( $active_theme_stylesheet ) ) );
|
104 |
+
$asset_rel_path = str_replace( $wp_themes_dir, '', fs_normalize_path( $asset_abs_path ) );
|
105 |
+
$asset_url = trailingslashit( get_theme_root_uri( $active_theme_stylesheet ) ) . fs_normalize_path( $asset_rel_path );
|
106 |
+
}
|
107 |
+
}
|
108 |
|
109 |
return $asset_url;
|
110 |
}
|
725 |
return $key;
|
726 |
}
|
727 |
|
728 |
+
#region Private
|
729 |
+
|
730 |
+
/**
|
731 |
+
* Retrieve an inline translated text by key with a context.
|
732 |
+
*
|
733 |
+
* @author Vova Feldman (@svovaf)
|
734 |
+
* @since 1.2.3
|
735 |
+
*
|
736 |
+
* @param string $text Translatable string.
|
737 |
+
* @param string $context Context information for the translators.
|
738 |
+
* @param string $key String key for overrides.
|
739 |
+
* @param string $slug Module slug for overrides.
|
740 |
+
*
|
741 |
+
* @return string
|
742 |
+
*
|
743 |
+
* @global $fs_text_overrides
|
744 |
+
*/
|
745 |
+
function _fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
746 |
+
list( $text, $text_domain ) = fs_text_and_domain( $text, $key, $slug );
|
747 |
+
|
748 |
+
// Avoid misleading Theme Check warning.
|
749 |
+
$fn = 'translate_with_gettext_context';
|
750 |
+
|
751 |
+
return $fn( $text, $context, $text_domain );
|
752 |
+
}
|
753 |
+
|
754 |
+
#endregion
|
755 |
+
|
756 |
+
/**
|
757 |
+
* Retrieve an inline translated text by key with a context.
|
758 |
+
*
|
759 |
+
* @author Vova Feldman (@svovaf)
|
760 |
+
* @since 1.2.3
|
761 |
+
*
|
762 |
+
* @param string $text Translatable string.
|
763 |
+
* @param string $context Context information for the translators.
|
764 |
+
* @param string $key String key for overrides.
|
765 |
+
* @param string $slug Module slug for overrides.
|
766 |
+
*
|
767 |
+
* @return string
|
768 |
+
*
|
769 |
+
* @global $fs_text_overrides
|
770 |
+
*/
|
771 |
+
function fs_text_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
772 |
+
return _fs_text_x_inline( $text, $context, $key, $slug );
|
773 |
+
}
|
774 |
+
|
775 |
+
/**
|
776 |
+
* Output a translated text by key.
|
777 |
+
*
|
778 |
+
* @author Vova Feldman (@svovaf)
|
779 |
+
* @since 1.2.1.7
|
780 |
+
*
|
781 |
+
* @param string $key
|
782 |
+
* @param string $slug
|
783 |
+
*/
|
784 |
+
function fs_echo( $key, $slug = 'freemius' ) {
|
785 |
+
echo fs_text( $key, $slug );
|
786 |
+
}
|
787 |
+
|
788 |
+
/**
|
789 |
+
* Output an inline translated text.
|
790 |
+
*
|
791 |
+
* @author Vova Feldman (@svovaf)
|
792 |
+
* @since 1.2.3
|
793 |
+
*
|
794 |
+
* @param string $text Translatable string.
|
795 |
+
* @param string $key String key for overrides.
|
796 |
+
* @param string $slug Module slug for overrides.
|
797 |
+
*/
|
798 |
+
function fs_echo_inline( $text, $key = '', $slug = 'freemius' ) {
|
799 |
+
echo _fs_text_inline( $text, $key, $slug );
|
800 |
+
}
|
801 |
+
|
802 |
+
/**
|
803 |
+
* Output an inline translated text with a context.
|
804 |
+
*
|
805 |
+
* @author Vova Feldman (@svovaf)
|
806 |
+
* @since 1.2.3
|
807 |
+
*
|
808 |
+
* @param string $text Translatable string.
|
809 |
+
* @param string $context Context information for the translators.
|
810 |
+
* @param string $key String key for overrides.
|
811 |
+
* @param string $slug Module slug for overrides.
|
812 |
+
*/
|
813 |
+
function fs_echo_x_inline( $text, $context, $key = '', $slug = 'freemius' ) {
|
814 |
+
echo _fs_text_x_inline( $text, $context, $key, $slug );
|
815 |
+
}
|
816 |
+
}
|
817 |
+
|
818 |
+
if ( ! function_exists( 'fs_text_override' ) ) {
|
819 |
/**
|
820 |
* Get a translatable text override if exists, or `false`.
|
821 |
*
|
853 |
|
854 |
return false;
|
855 |
}
|
856 |
+
}
|
857 |
|
858 |
+
if ( ! function_exists( 'fs_text_and_domain' ) ) {
|
859 |
/**
|
860 |
* Get a translatable text and its text domain.
|
861 |
*
|
885 |
|
886 |
return array( $text, $text_domain );
|
887 |
}
|
888 |
+
}
|
889 |
|
890 |
+
if ( ! function_exists( '_fs_text_inline' ) ) {
|
|
|
891 |
/**
|
892 |
* Retrieve an inline translated text by key.
|
893 |
*
|
910 |
|
911 |
return $fn( $text, $text_domain );
|
912 |
}
|
913 |
+
}
|
914 |
|
915 |
+
if ( ! function_exists( 'fs_text_inline' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
916 |
/**
|
917 |
* Retrieve an inline translated text by key.
|
918 |
*
|
930 |
function fs_text_inline( $text, $key = '', $slug = 'freemius' ) {
|
931 |
return _fs_text_inline( $text, $key, $slug );
|
932 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
}
|
934 |
|
935 |
if ( ! function_exists( 'fs_esc_attr' ) ) {
|
freemius/includes/managers/class-fs-admin-menu-manager.php
CHANGED
@@ -181,11 +181,6 @@
|
|
181 |
|
182 |
// @deprecated
|
183 |
$this->_type = $this->get_option( $menu, 'type', 'page' );
|
184 |
-
|
185 |
-
$this->_first_time_path = $this->get_option( $menu, 'first-path', false );
|
186 |
-
if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
|
187 |
-
$this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
|
188 |
-
}
|
189 |
}
|
190 |
|
191 |
$this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
|
@@ -208,6 +203,11 @@
|
|
208 |
// 'page'
|
209 |
// ) );
|
210 |
}
|
|
|
|
|
|
|
|
|
|
|
211 |
}
|
212 |
}
|
213 |
|
181 |
|
182 |
// @deprecated
|
183 |
$this->_type = $this->get_option( $menu, 'type', 'page' );
|
|
|
|
|
|
|
|
|
|
|
184 |
}
|
185 |
|
186 |
$this->_is_override_exact = $this->get_bool_option( $menu, 'override_exact' );
|
203 |
// 'page'
|
204 |
// ) );
|
205 |
}
|
206 |
+
|
207 |
+
$this->_first_time_path = $this->get_option( $menu, 'first-path', false );
|
208 |
+
if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) {
|
209 |
+
$this->_first_time_path = admin_url( $this->_first_time_path, 'admin' );
|
210 |
+
}
|
211 |
}
|
212 |
}
|
213 |
|
freemius/includes/managers/class-fs-admin-notice-manager.php
CHANGED
@@ -219,6 +219,9 @@
|
|
219 |
return;
|
220 |
}
|
221 |
|
|
|
|
|
|
|
222 |
foreach ( $this->_notices as $id => $msg ) {
|
223 |
if ( isset( $msg['wp_user_id'] ) && is_numeric( $msg['wp_user_id'] ) ) {
|
224 |
if ( get_current_user_id() != $msg['wp_user_id'] ) {
|
@@ -261,7 +264,7 @@
|
|
261 |
$show_notice = call_user_func_array( 'fs_apply_filter', array(
|
262 |
$this->_module_unique_affix,
|
263 |
'show_admin_notice',
|
264 |
-
|
265 |
$msg
|
266 |
) );
|
267 |
|
@@ -287,6 +290,34 @@
|
|
287 |
fs_enqueue_local_style( 'fs_common', '/admin/common.css' );
|
288 |
}
|
289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
/**
|
291 |
* Add admin message to admin messages queue, and hook to admin_notices / all_admin_notices if not yet hooked.
|
292 |
*
|
219 |
return;
|
220 |
}
|
221 |
|
222 |
+
|
223 |
+
$show_admin_notices = ( ! $this->is_gutenberg_page() );
|
224 |
+
|
225 |
foreach ( $this->_notices as $id => $msg ) {
|
226 |
if ( isset( $msg['wp_user_id'] ) && is_numeric( $msg['wp_user_id'] ) ) {
|
227 |
if ( get_current_user_id() != $msg['wp_user_id'] ) {
|
264 |
$show_notice = call_user_func_array( 'fs_apply_filter', array(
|
265 |
$this->_module_unique_affix,
|
266 |
'show_admin_notice',
|
267 |
+
$show_admin_notices,
|
268 |
$msg
|
269 |
) );
|
270 |
|
290 |
fs_enqueue_local_style( 'fs_common', '/admin/common.css' );
|
291 |
}
|
292 |
|
293 |
+
/**
|
294 |
+
* Check if the current page is the Gutenberg block editor.
|
295 |
+
*
|
296 |
+
* @author Vova Feldman (@svovaf)
|
297 |
+
* @since 2.2.3
|
298 |
+
*
|
299 |
+
* @return bool
|
300 |
+
*/
|
301 |
+
function is_gutenberg_page() {
|
302 |
+
if ( function_exists( 'is_gutenberg_page' ) &&
|
303 |
+
is_gutenberg_page()
|
304 |
+
) {
|
305 |
+
// The Gutenberg plugin is on.
|
306 |
+
return true;
|
307 |
+
}
|
308 |
+
|
309 |
+
$current_screen = get_current_screen();
|
310 |
+
|
311 |
+
if ( method_exists( $current_screen, 'is_block_editor' ) &&
|
312 |
+
$current_screen->is_block_editor()
|
313 |
+
) {
|
314 |
+
// Gutenberg page on 5+.
|
315 |
+
return true;
|
316 |
+
}
|
317 |
+
|
318 |
+
return false;
|
319 |
+
}
|
320 |
+
|
321 |
/**
|
322 |
* Add admin message to admin messages queue, and hook to admin_notices / all_admin_notices if not yet hooked.
|
323 |
*
|
freemius/languages/freemius-da_DK.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Joachim Jensen, 2016-2018
|
@@ -22,772 +22,772 @@ 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 "Fejl"
|
32 |
|
33 |
-
#: includes/class-freemius.php:
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "Jeg fandt et bedre %s"
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "Hvad er navnet på %s?"
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
42 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
43 |
msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
|
44 |
|
45 |
-
#: includes/class-freemius.php:
|
46 |
msgid "Deactivation"
|
47 |
msgstr "Deaktivering"
|
48 |
|
49 |
-
#: includes/class-freemius.php:
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "Temaskift"
|
52 |
|
53 |
-
#: includes/class-freemius.
|
54 |
msgid "Other"
|
55 |
msgstr "Andet"
|
56 |
|
57 |
-
#: includes/class-freemius.php:
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "Jeg har ikke længere brug for %s"
|
60 |
|
61 |
-
#: includes/class-freemius.php:
|
62 |
msgid "I only needed the %s for a short period"
|
63 |
msgstr "Jeg behøvede kun %s i en kort periode"
|
64 |
|
65 |
-
#: includes/class-freemius.php:
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "%s ødelagde min webside"
|
68 |
|
69 |
-
#: includes/class-freemius.php:
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "%s stoppede pludseligt med at virke"
|
72 |
|
73 |
-
#: includes/class-freemius.php:
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "Jeg kan ikke længere betale for det"
|
76 |
|
77 |
-
#: includes/class-freemius.php:
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "Hvilken pris ville du foretrække at betale?"
|
80 |
|
81 |
-
#: includes/class-freemius.php:
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
|
84 |
|
85 |
-
#: includes/class-freemius.php:
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "%s virkede ikke"
|
88 |
|
89 |
-
#: includes/class-freemius.php:
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
|
92 |
|
93 |
-
#: includes/class-freemius.php:
|
94 |
msgid "The %s is great, but I need specific feature that you don't support"
|
95 |
msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
|
96 |
|
97 |
-
#: includes/class-freemius.php:
|
98 |
msgid "What feature?"
|
99 |
msgstr "Hvilken feature?"
|
100 |
|
101 |
-
#: includes/class-freemius.php:
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "%s virker ikke"
|
104 |
|
105 |
-
#: includes/class-freemius.php:
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "Kindly share what didn't work so we can fix it for future users..."
|
108 |
|
109 |
-
#: includes/class-freemius.php:
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "Det er ikke, hvad jeg søgte"
|
112 |
|
113 |
-
#: includes/class-freemius.php:
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "Hvad har du ledt efter?"
|
116 |
|
117 |
-
#: includes/class-freemius.php:
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "%s virkede ikke som forventet"
|
120 |
|
121 |
-
#: includes/class-freemius.php:
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "Hvad forventede du?"
|
124 |
|
125 |
-
#: includes/class-freemius.
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "Freemius Debug"
|
128 |
|
129 |
-
#: includes/class-freemius.php:
|
130 |
msgid "I don't know what is cURL or how to install it, help me!"
|
131 |
msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
|
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 "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
|
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 "Ja - fortsæt bare"
|
144 |
|
145 |
-
#: includes/class-freemius.php:
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "Nej - bare deaktiver"
|
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 "Ups"
|
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 "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
|
163 |
|
164 |
-
#: includes/class-freemius.php:
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s virker ikke uden %s."
|
168 |
|
169 |
-
#: includes/class-freemius.php:
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "%s virker ikke uden pluginnet."
|
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-versionen af %s blev aktiveret."
|
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 "Du har en %s licens."
|
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 "Yee-haw"
|
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/account/partials/addon.php:288
|
210 |
msgid "More information about %s"
|
211 |
msgstr "Mere information om %s"
|
212 |
|
213 |
-
#: includes/class-freemius.php:
|
214 |
msgid "Purchase License"
|
215 |
msgstr "Køb licens"
|
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 "start prøveperioden"
|
224 |
|
225 |
-
#: includes/class-freemius.
|
226 |
msgid "complete the install"
|
227 |
msgstr "færdiggør installeringen"
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "Du mangler kun ét skridt - %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 "Færdiggør aktivering af \"%s\" nu"
|
237 |
|
238 |
-
#: includes/class-freemius.php:
|
239 |
msgid "We made a few tweaks to the %s, %s"
|
240 |
msgstr "Vi har foretaget nogle rettelser til %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 "Opgraderingen af %s blev fuldendt."
|
249 |
|
250 |
-
#: includes/class-freemius.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
-
#: includes/class-fs-plugin-updater.
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Tilføjelse"
|
256 |
|
257 |
-
#: includes/class-freemius.
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "Plugin"
|
261 |
|
262 |
-
#: includes/class-freemius.
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "Tema"
|
266 |
|
267 |
-
#: includes/class-freemius.php:
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Invalid site details collection."
|
270 |
|
271 |
-
#: includes/class-freemius.php:
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
|
274 |
|
275 |
-
#: includes/class-freemius.php:
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
|
278 |
|
279 |
-
#: includes/class-freemius.php:
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Konto afventer aktivering."
|
282 |
|
283 |
-
#: includes/class-freemius.
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Buy a license now"
|
287 |
|
288 |
-
#: includes/class-freemius.
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Renew your license now"
|
292 |
|
293 |
-
#: includes/class-freemius.php:
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%s to access version %s security & feature updates, and support."
|
296 |
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "Aktivering af %s blev gennemført."
|
300 |
|
301 |
-
#: includes/class-freemius.php:
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "Din konto blev aktiveret med planen %s."
|
304 |
|
305 |
-
#: includes/class-freemius.
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "Din prøveperiode er begyndt."
|
308 |
|
309 |
-
#: includes/class-freemius.
|
310 |
-
#: includes/class-freemius.php:
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "Kunne ikke aktivere %s."
|
313 |
|
314 |
-
#: includes/class-freemius.
|
315 |
-
#: includes/class-freemius.php:
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "Kontakt os venligst med følgende besked:"
|
318 |
|
319 |
-
#: includes/class-freemius.
|
320 |
msgid "Upgrade"
|
321 |
msgstr "Opgrader"
|
322 |
|
323 |
-
#: includes/class-freemius.php:
|
324 |
msgid "Start Trial"
|
325 |
msgstr "Start prøveperiode"
|
326 |
|
327 |
-
#: includes/class-freemius.php:
|
328 |
msgid "Pricing"
|
329 |
msgstr "Priser"
|
330 |
|
331 |
-
#: includes/class-freemius.
|
332 |
msgid "Affiliation"
|
333 |
msgstr "Affiliation"
|
334 |
|
335 |
-
#: includes/class-freemius.
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "Konto"
|
339 |
|
340 |
-
#: includes/class-freemius.
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "Kontakt os"
|
344 |
|
345 |
-
#: includes/class-freemius.
|
346 |
-
#: includes/class-freemius.
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Tilføjelser"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
-
#: includes/class-freemius.php:
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
-
#: includes/class-freemius.
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "Priser"
|
365 |
|
366 |
-
#: includes/class-freemius.
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "Supportforum"
|
370 |
|
371 |
-
#: includes/class-freemius.php:
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
|
374 |
|
375 |
-
#: includes/class-freemius.php:
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "Sådan"
|
379 |
|
380 |
-
#: includes/class-freemius.php:
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
383 |
|
384 |
-
#: includes/class-freemius.php:
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "Betalingen for tilføjelsen %s blev gennemført."
|
387 |
|
388 |
-
#: includes/class-freemius.php:
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "Download den seneste version"
|
391 |
|
392 |
-
#: includes/class-freemius.php:
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
396 |
|
397 |
-
#: includes/class-freemius.
|
398 |
-
#: includes/class-freemius.php:
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "Fejl modtager fra serveren:"
|
401 |
|
402 |
-
#: includes/class-freemius.php:
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
405 |
|
406 |
-
#: includes/class-freemius.
|
407 |
-
#: includes/class-freemius.
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "Hmm"
|
411 |
|
412 |
-
#: includes/class-freemius.php:
|
413 |
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."
|
414 |
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."
|
415 |
|
416 |
-
#: includes/class-freemius.
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "Prøveperiode"
|
421 |
|
422 |
-
#: includes/class-freemius.php:
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
|
425 |
|
426 |
-
#: includes/class-freemius.
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "Kontakt os her"
|
429 |
|
430 |
-
#: includes/class-freemius.php:
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "Din plan er blevet opgraderet."
|
433 |
|
434 |
-
#: includes/class-freemius.php:
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "Din plan er blevet ændret til %s."
|
437 |
|
438 |
-
#: includes/class-freemius.php:
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
|
441 |
|
442 |
-
#: includes/class-freemius.php:
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
|
445 |
|
446 |
-
#: includes/class-freemius.php:
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
|
449 |
|
450 |
-
#: includes/class-freemius.php:
|
451 |
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."
|
452 |
msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
|
453 |
|
454 |
-
#: includes/class-freemius.php:
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
|
457 |
|
458 |
-
#: includes/class-freemius.php:
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
461 |
|
462 |
-
#: includes/class-freemius.php:
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
|
465 |
|
466 |
-
#: includes/class-freemius.php:
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "Din licens er blevet aktiveret."
|
469 |
|
470 |
-
#: includes/class-freemius.php:
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
|
473 |
|
474 |
-
#: includes/class-freemius.php:
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
|
477 |
|
478 |
-
#: includes/class-freemius.php:
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
|
481 |
|
482 |
-
#: includes/class-freemius.php:
|
483 |
msgid "O.K"
|
484 |
msgstr "O.K"
|
485 |
|
486 |
-
#: includes/class-freemius.php:
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
489 |
|
490 |
-
#: includes/class-freemius.php:
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
493 |
|
494 |
-
#: includes/class-freemius.php:
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "Du benytter allerede %s under en prøveperiode."
|
497 |
|
498 |
-
#: includes/class-freemius.php:
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "Du har allerede brugt din prøveperiode."
|
501 |
|
502 |
-
#: includes/class-freemius.php:
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
|
505 |
|
506 |
-
#: includes/class-freemius.php:
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "Plan %s understøtter ikke en prøveperiode."
|
509 |
|
510 |
-
#: includes/class-freemius.php:
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "None of the %s's plans supports a trial period."
|
513 |
|
514 |
-
#: includes/class-freemius.php:
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
|
517 |
|
518 |
-
#: includes/class-freemius.php:
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
521 |
|
522 |
-
#: includes/class-freemius.php:
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "Din gratis prøveperiode for %s er blevet annulleret."
|
525 |
|
526 |
-
#: includes/class-freemius.php:
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "Version %s er blevet udgivet."
|
529 |
|
530 |
-
#: includes/class-freemius.php:
|
531 |
msgid "Please download %s."
|
532 |
msgstr "Download venligst %s."
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "den seneste version af %s her"
|
537 |
|
538 |
-
#: includes/class-freemius.php:
|
539 |
msgid "New"
|
540 |
msgstr "Ny"
|
541 |
|
542 |
-
#: includes/class-freemius.php:
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "Det ser ud til, at du har den seneste udgivelse."
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
547 |
msgid "You are all good!"
|
548 |
msgstr "Det var det!"
|
549 |
|
550 |
-
#: includes/class-freemius.php:
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Websted er tilmeldt."
|
557 |
|
558 |
-
#: includes/class-freemius.
|
559 |
msgid "Awesome"
|
560 |
msgstr "Sejt"
|
561 |
|
562 |
-
#: includes/class-freemius.
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
|
565 |
|
566 |
-
#: includes/class-freemius.php:
|
567 |
msgid "Thank you!"
|
568 |
msgstr "Mange tak!"
|
569 |
|
570 |
-
#: includes/class-freemius.php:
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
|
573 |
|
574 |
-
#: includes/class-freemius.php:
|
575 |
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."
|
576 |
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."
|
577 |
|
578 |
-
#: includes/class-freemius.php:
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
581 |
|
582 |
-
#: includes/class-freemius.php:
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s er den nye ejer af kontoen."
|
585 |
|
586 |
-
#: includes/class-freemius.php:
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "Tillykke"
|
590 |
|
591 |
-
#: includes/class-freemius.php:
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
594 |
|
595 |
-
#: includes/class-freemius.php:
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "Skift ejerskab"
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "Indtast venligst dit fulde navn."
|
610 |
|
611 |
-
#: includes/class-freemius.php:
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "Dit navn er blevet opdateret."
|
614 |
|
615 |
-
#: includes/class-freemius.php:
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "Opdatering af %s blev gennemført."
|
618 |
|
619 |
-
#: includes/class-freemius.php:
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
622 |
|
623 |
-
#: includes/class-freemius.php:
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "Se her"
|
627 |
|
628 |
-
#: includes/class-freemius.php:
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "Hey"
|
632 |
|
633 |
-
#: includes/class-freemius.php:
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
|
636 |
|
637 |
-
#: includes/class-freemius.php:
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "Ingen bindinger i %s dage - annuller når som helst!"
|
640 |
|
641 |
-
#: includes/class-freemius.php:
|
642 |
msgid "No credit card required"
|
643 |
msgstr "Betalingskort ikke påkrævet"
|
644 |
|
645 |
-
#: includes/class-freemius.
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "Start gratis prøveperiode"
|
649 |
|
650 |
-
#: includes/class-freemius.php:
|
651 |
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!"
|
652 |
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!"
|
653 |
|
654 |
-
#: includes/class-freemius.php:
|
655 |
msgid "Learn more"
|
656 |
msgstr "Læs mere"
|
657 |
|
658 |
-
#: includes/class-freemius.
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "Aktiver licens"
|
664 |
|
665 |
-
#: includes/class-freemius.
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "Skift licens"
|
669 |
|
670 |
-
#: includes/class-freemius.
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Frameld"
|
673 |
|
674 |
-
#: includes/class-freemius.
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Tilmeld"
|
679 |
|
680 |
-
#: includes/class-freemius.php:
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
683 |
|
684 |
-
#: includes/class-freemius.php:
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activate %s features"
|
687 |
|
688 |
-
#: includes/class-freemius.php:
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
|
691 |
|
692 |
-
#: includes/class-freemius.php:
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "Download den seneste version af %s"
|
695 |
|
696 |
-
#: includes/class-freemius.php:
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "Upload og aktiver den downloadede version"
|
699 |
|
700 |
-
#: includes/class-freemius.php:
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "Upload og aktivering, hvordan?"
|
703 |
|
704 |
-
#: includes/class-freemius.php:
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
707 |
|
708 |
-
#: includes/class-freemius.php:
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Auto-installation fungerer kun for tilmeldte brugere."
|
711 |
|
712 |
-
#: includes/class-freemius.
|
713 |
-
#: includes/class-fs-plugin-updater.
|
714 |
-
#: includes/class-fs-plugin-updater.php:
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "Ugyldigt modul-ID."
|
717 |
|
718 |
-
#: includes/class-freemius.
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "Premium version allerede aktiv."
|
721 |
|
722 |
-
#: includes/class-freemius.php:
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
|
725 |
|
726 |
-
#: includes/class-freemius.php:
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
729 |
|
730 |
-
#: includes/class-freemius.
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium tilføjelse er allerede installeret."
|
733 |
|
734 |
-
#: includes/class-freemius.php:
|
735 |
msgid "View paid features"
|
736 |
msgstr "Vis betalte features"
|
737 |
|
738 |
-
#: includes/class-freemius.php:
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Thank you so much for using %s and its add-ons!"
|
741 |
|
742 |
-
#: includes/class-freemius.php:
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "Tak fordi du benytter %s!"
|
745 |
|
746 |
-
#: includes/class-freemius.php:
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
|
749 |
|
750 |
-
#: includes/class-freemius.php:
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "Mange tak for at benytte vores produkter!"
|
753 |
|
754 |
-
#: includes/class-freemius.php:
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
|
757 |
|
758 |
-
#: includes/class-freemius.php:
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%s og tilføjelser"
|
761 |
|
762 |
-
#: includes/class-freemius.php:
|
763 |
msgid "Products"
|
764 |
msgstr "Produkter"
|
765 |
|
766 |
-
#: includes/class-freemius.
|
767 |
msgid "Yes"
|
768 |
msgstr "Ja"
|
769 |
|
770 |
-
#: includes/class-freemius.
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
|
773 |
|
774 |
-
#: includes/class-freemius.
|
775 |
msgid "No"
|
776 |
msgstr "Nej"
|
777 |
|
778 |
-
#: includes/class-freemius.
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
|
781 |
|
782 |
-
#: includes/class-freemius.php:
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
|
785 |
|
786 |
-
#: includes/class-freemius.
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
|
789 |
|
790 |
-
#: includes/class-freemius.php:
|
791 |
msgid "License key is empty."
|
792 |
msgstr "Licensnøglen er tom."
|
793 |
|
@@ -809,19 +809,19 @@ msgstr "There is a %s of %s available."
|
|
809 |
msgid "new version"
|
810 |
msgstr "new version"
|
811 |
|
812 |
-
#: includes/class-fs-plugin-updater.php:
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Important Upgrade Notice:"
|
815 |
|
816 |
-
#: includes/class-fs-plugin-updater.php:
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installerer plugin: %s"
|
819 |
|
820 |
-
#: includes/class-fs-plugin-updater.php:
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
823 |
|
824 |
-
#: includes/class-fs-plugin-updater.php:
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
827 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Joachim Jensen, 2016-2018
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/class-freemius.php:1688
|
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:1690
|
30 |
msgid "Error"
|
31 |
msgstr "Fejl"
|
32 |
|
33 |
+
#: includes/class-freemius.php:2011
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "Jeg fandt et bedre %s"
|
36 |
|
37 |
+
#: includes/class-freemius.php:2013
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "Hvad er navnet på %s?"
|
40 |
|
41 |
+
#: includes/class-freemius.php:2019
|
42 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
43 |
msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
|
44 |
|
45 |
+
#: includes/class-freemius.php:2021
|
46 |
msgid "Deactivation"
|
47 |
msgstr "Deaktivering"
|
48 |
|
49 |
+
#: includes/class-freemius.php:2022
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "Temaskift"
|
52 |
|
53 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
54 |
msgid "Other"
|
55 |
msgstr "Andet"
|
56 |
|
57 |
+
#: includes/class-freemius.php:2039
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "Jeg har ikke længere brug for %s"
|
60 |
|
61 |
+
#: includes/class-freemius.php:2046
|
62 |
msgid "I only needed the %s for a short period"
|
63 |
msgstr "Jeg behøvede kun %s i en kort periode"
|
64 |
|
65 |
+
#: includes/class-freemius.php:2052
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "%s ødelagde min webside"
|
68 |
|
69 |
+
#: includes/class-freemius.php:2059
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "%s stoppede pludseligt med at virke"
|
72 |
|
73 |
+
#: includes/class-freemius.php:2069
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "Jeg kan ikke længere betale for det"
|
76 |
|
77 |
+
#: includes/class-freemius.php:2071
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "Hvilken pris ville du foretrække at betale?"
|
80 |
|
81 |
+
#: includes/class-freemius.php:2077
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
|
84 |
|
85 |
+
#: includes/class-freemius.php:2098
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "%s virkede ikke"
|
88 |
|
89 |
+
#: includes/class-freemius.php:2108
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
|
92 |
|
93 |
+
#: includes/class-freemius.php:2116
|
94 |
msgid "The %s is great, but I need specific feature that you don't support"
|
95 |
msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
|
96 |
|
97 |
+
#: includes/class-freemius.php:2118
|
98 |
msgid "What feature?"
|
99 |
msgstr "Hvilken feature?"
|
100 |
|
101 |
+
#: includes/class-freemius.php:2122
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "%s virker ikke"
|
104 |
|
105 |
+
#: includes/class-freemius.php:2124
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "Kindly share what didn't work so we can fix it for future users..."
|
108 |
|
109 |
+
#: includes/class-freemius.php:2128
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "Det er ikke, hvad jeg søgte"
|
112 |
|
113 |
+
#: includes/class-freemius.php:2130
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "Hvad har du ledt efter?"
|
116 |
|
117 |
+
#: includes/class-freemius.php:2134
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "%s virkede ikke som forventet"
|
120 |
|
121 |
+
#: includes/class-freemius.php:2136
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "Hvad forventede du?"
|
124 |
|
125 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "Freemius Debug"
|
128 |
|
129 |
+
#: includes/class-freemius.php:3670
|
130 |
msgid "I don't know what is cURL or how to install it, help me!"
|
131 |
msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
|
132 |
|
133 |
+
#: includes/class-freemius.php:3672
|
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 "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
|
136 |
|
137 |
+
#: includes/class-freemius.php:3679
|
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:3784
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "Ja - fortsæt bare"
|
144 |
|
145 |
+
#: includes/class-freemius.php:3789
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "Nej - bare deaktiver"
|
148 |
|
149 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
150 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
151 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
152 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
153 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
154 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
155 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "Ups"
|
159 |
|
160 |
+
#: includes/class-freemius.php:3903
|
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 "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed."
|
163 |
|
164 |
+
#: includes/class-freemius.php:4340
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s virker ikke uden %s."
|
168 |
|
169 |
+
#: includes/class-freemius.php:4341
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "%s virker ikke uden pluginnet."
|
173 |
|
174 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
175 |
+
#: includes/class-freemius.php:17953
|
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:5130
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium-versionen af %s blev aktiveret."
|
182 |
|
183 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "W00t"
|
187 |
|
188 |
+
#: includes/class-freemius.php:5157
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "Du har en %s licens."
|
191 |
|
192 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
193 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
194 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
195 |
+
#: includes/class-freemius.php:17707
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "Yee-haw"
|
199 |
|
200 |
+
#: includes/class-freemius.php:5425
|
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:5429
|
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.php5438, templates/add-ons.php103,
|
209 |
#: templates/account/partials/addon.php:288
|
210 |
msgid "More information about %s"
|
211 |
msgstr "Mere information om %s"
|
212 |
|
213 |
+
#: includes/class-freemius.php:5439
|
214 |
msgid "Purchase License"
|
215 |
msgstr "Køb licens"
|
216 |
|
217 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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:6376
|
222 |
msgid "start the trial"
|
223 |
msgstr "start prøveperioden"
|
224 |
|
225 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
226 |
msgid "complete the install"
|
227 |
msgstr "færdiggør installeringen"
|
228 |
|
229 |
+
#: includes/class-freemius.php:6490
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "Du mangler kun ét skridt - %s"
|
232 |
|
233 |
+
#: includes/class-freemius.php:6493
|
234 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
235 |
msgid "Complete \"%s\" Activation Now"
|
236 |
msgstr "Færdiggør aktivering af \"%s\" nu"
|
237 |
|
238 |
+
#: includes/class-freemius.php:6571
|
239 |
msgid "We made a few tweaks to the %s, %s"
|
240 |
msgstr "Vi har foretaget nogle rettelser til %s, %s"
|
241 |
|
242 |
+
#: includes/class-freemius.php:6575
|
243 |
msgid "Opt in to make \"%s\" better!"
|
244 |
msgstr "Opt in to make \"%s\" better!"
|
245 |
|
246 |
+
#: includes/class-freemius.php:7003
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "Opgraderingen af %s blev fuldendt."
|
249 |
|
250 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
251 |
+
#: includes/class-fs-plugin-updater.php1081,
|
252 |
+
#: includes/class-fs-plugin-updater.php1088,
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Tilføjelse"
|
256 |
|
257 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "Plugin"
|
261 |
|
262 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "Tema"
|
266 |
|
267 |
+
#: includes/class-freemius.php:11412
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Invalid site details collection."
|
270 |
|
271 |
+
#: includes/class-freemius.php:11532
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
|
274 |
|
275 |
+
#: includes/class-freemius.php:11534
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
|
278 |
|
279 |
+
#: includes/class-freemius.php:11808
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Konto afventer aktivering."
|
282 |
|
283 |
+
#: includes/class-freemius.php11920,
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Buy a license now"
|
287 |
|
288 |
+
#: includes/class-freemius.php11932,
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Renew your license now"
|
292 |
|
293 |
+
#: includes/class-freemius.php:11936
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%s to access version %s security & feature updates, and support."
|
296 |
|
297 |
+
#: includes/class-freemius.php:14319
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "Aktivering af %s blev gennemført."
|
300 |
|
301 |
+
#: includes/class-freemius.php:14333
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "Din konto blev aktiveret med planen %s."
|
304 |
|
305 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "Din prøveperiode er begyndt."
|
308 |
|
309 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
310 |
+
#: includes/class-freemius.php:15028
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "Kunne ikke aktivere %s."
|
313 |
|
314 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
315 |
+
#: includes/class-freemius.php:15029
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "Kontakt os venligst med følgende besked:"
|
318 |
|
319 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
320 |
msgid "Upgrade"
|
321 |
msgstr "Opgrader"
|
322 |
|
323 |
+
#: includes/class-freemius.php:15384
|
324 |
msgid "Start Trial"
|
325 |
msgstr "Start prøveperiode"
|
326 |
|
327 |
+
#: includes/class-freemius.php:15386
|
328 |
msgid "Pricing"
|
329 |
msgstr "Priser"
|
330 |
|
331 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
332 |
msgid "Affiliation"
|
333 |
msgstr "Affiliation"
|
334 |
|
335 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "Konto"
|
339 |
|
340 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "Kontakt os"
|
344 |
|
345 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
346 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Tilføjelser"
|
350 |
|
351 |
+
#: includes/class-freemius.php:15541
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
+
#: includes/class-freemius.php:15541
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "Priser"
|
365 |
|
366 |
+
#: includes/class-freemius.php15756,
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "Supportforum"
|
370 |
|
371 |
+
#: includes/class-freemius.php:16542
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
|
374 |
|
375 |
+
#: includes/class-freemius.php:16543
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "Sådan"
|
379 |
|
380 |
+
#: includes/class-freemius.php:17168
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
383 |
|
384 |
+
#: includes/class-freemius.php:17170
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "Betalingen for tilføjelsen %s blev gennemført."
|
387 |
|
388 |
+
#: includes/class-freemius.php:17173
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "Download den seneste version"
|
391 |
|
392 |
+
#: includes/class-freemius.php:17259
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
396 |
|
397 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
398 |
+
#: includes/class-freemius.php:17755
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "Fejl modtager fra serveren:"
|
401 |
|
402 |
+
#: includes/class-freemius.php:17272
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
405 |
|
406 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
407 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "Hmm"
|
411 |
|
412 |
+
#: includes/class-freemius.php:17467
|
413 |
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."
|
414 |
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."
|
415 |
|
416 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "Prøveperiode"
|
421 |
|
422 |
+
#: includes/class-freemius.php:17473
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
|
425 |
|
426 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "Kontakt os her"
|
429 |
|
430 |
+
#: includes/class-freemius.php:17487
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "Din plan er blevet opgraderet."
|
433 |
|
434 |
+
#: includes/class-freemius.php:17505
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "Din plan er blevet ændret til %s."
|
437 |
|
438 |
+
#: includes/class-freemius.php:17521
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
|
441 |
|
442 |
+
#: includes/class-freemius.php:17523
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
|
445 |
|
446 |
+
#: includes/class-freemius.php:17531
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
|
449 |
|
450 |
+
#: includes/class-freemius.php:17544
|
451 |
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."
|
452 |
msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
|
453 |
|
454 |
+
#: includes/class-freemius.php:17567
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
|
457 |
|
458 |
+
#: includes/class-freemius.php:17569
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
461 |
|
462 |
+
#: includes/class-freemius.php:17674
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
|
465 |
|
466 |
+
#: includes/class-freemius.php:17704
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "Din licens er blevet aktiveret."
|
469 |
|
470 |
+
#: includes/class-freemius.php:17730
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
|
473 |
|
474 |
+
#: includes/class-freemius.php:17754
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
|
477 |
|
478 |
+
#: includes/class-freemius.php:17782
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
|
481 |
|
482 |
+
#: includes/class-freemius.php:17783
|
483 |
msgid "O.K"
|
484 |
msgstr "O.K"
|
485 |
|
486 |
+
#: includes/class-freemius.php:17836
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
489 |
|
490 |
+
#: includes/class-freemius.php:17845
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
493 |
|
494 |
+
#: includes/class-freemius.php:17887
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "Du benytter allerede %s under en prøveperiode."
|
497 |
|
498 |
+
#: includes/class-freemius.php:17898
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "Du har allerede brugt din prøveperiode."
|
501 |
|
502 |
+
#: includes/class-freemius.php:17912
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
|
505 |
|
506 |
+
#: includes/class-freemius.php:17923
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "Plan %s understøtter ikke en prøveperiode."
|
509 |
|
510 |
+
#: includes/class-freemius.php:17934
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "None of the %s's plans supports a trial period."
|
513 |
|
514 |
+
#: includes/class-freemius.php:17984
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
|
517 |
|
518 |
+
#: includes/class-freemius.php:18020
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
521 |
|
522 |
+
#: includes/class-freemius.php:18039
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "Din gratis prøveperiode for %s er blevet annulleret."
|
525 |
|
526 |
+
#: includes/class-freemius.php:18346
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "Version %s er blevet udgivet."
|
529 |
|
530 |
+
#: includes/class-freemius.php:18346
|
531 |
msgid "Please download %s."
|
532 |
msgstr "Download venligst %s."
|
533 |
|
534 |
+
#: includes/class-freemius.php:18353
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "den seneste version af %s her"
|
537 |
|
538 |
+
#: includes/class-freemius.php:18358
|
539 |
msgid "New"
|
540 |
msgstr "Ny"
|
541 |
|
542 |
+
#: includes/class-freemius.php:18363
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "Det ser ud til, at du har den seneste udgivelse."
|
545 |
|
546 |
+
#: includes/class-freemius.php:18364
|
547 |
msgid "You are all good!"
|
548 |
msgstr "Det var det!"
|
549 |
|
550 |
+
#: includes/class-freemius.php:18632
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
553 |
|
554 |
+
#: includes/class-freemius.php:18769
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Websted er tilmeldt."
|
557 |
|
558 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
559 |
msgid "Awesome"
|
560 |
msgstr "Sejt"
|
561 |
|
562 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
|
565 |
|
566 |
+
#: includes/class-freemius.php:18787
|
567 |
msgid "Thank you!"
|
568 |
msgstr "Mange tak!"
|
569 |
|
570 |
+
#: includes/class-freemius.php:18794
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
|
573 |
|
574 |
+
#: includes/class-freemius.php:18923
|
575 |
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."
|
576 |
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."
|
577 |
|
578 |
+
#: includes/class-freemius.php:18929
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
581 |
|
582 |
+
#: includes/class-freemius.php:18934
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s er den nye ejer af kontoen."
|
585 |
|
586 |
+
#: includes/class-freemius.php:18936
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "Tillykke"
|
590 |
|
591 |
+
#: includes/class-freemius.php:18956
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
594 |
|
595 |
+
#: includes/class-freemius.php:18957
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
598 |
|
599 |
+
#: includes/class-freemius.php:18964
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "Skift ejerskab"
|
602 |
|
603 |
+
#: includes/class-freemius.php:18972
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
606 |
|
607 |
+
#: includes/class-freemius.php:18984
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "Indtast venligst dit fulde navn."
|
610 |
|
611 |
+
#: includes/class-freemius.php:18989
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "Dit navn er blevet opdateret."
|
614 |
|
615 |
+
#: includes/class-freemius.php:19050
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "Opdatering af %s blev gennemført."
|
618 |
|
619 |
+
#: includes/class-freemius.php:19190
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
622 |
|
623 |
+
#: includes/class-freemius.php:19191
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "Se her"
|
627 |
|
628 |
+
#: includes/class-freemius.php:19621
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "Hey"
|
632 |
|
633 |
+
#: includes/class-freemius.php:19621
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode."
|
636 |
|
637 |
+
#: includes/class-freemius.php:19629
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "Ingen bindinger i %s dage - annuller når som helst!"
|
640 |
|
641 |
+
#: includes/class-freemius.php:19630
|
642 |
msgid "No credit card required"
|
643 |
msgstr "Betalingskort ikke påkrævet"
|
644 |
|
645 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "Start gratis prøveperiode"
|
649 |
|
650 |
+
#: includes/class-freemius.php:19714
|
651 |
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!"
|
652 |
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!"
|
653 |
|
654 |
+
#: includes/class-freemius.php:19723
|
655 |
msgid "Learn more"
|
656 |
msgstr "Læs mere"
|
657 |
|
658 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "Aktiver licens"
|
664 |
|
665 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "Skift licens"
|
669 |
|
670 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Frameld"
|
673 |
|
674 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Tilmeld"
|
679 |
|
680 |
+
#: includes/class-freemius.php:20187
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
683 |
|
684 |
+
#: includes/class-freemius.php:20195
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activate %s features"
|
687 |
|
688 |
+
#: includes/class-freemius.php:20208
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
|
691 |
|
692 |
+
#: includes/class-freemius.php:20212
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "Download den seneste version af %s"
|
695 |
|
696 |
+
#: includes/class-freemius.php:20216
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "Upload og aktiver den downloadede version"
|
699 |
|
700 |
+
#: includes/class-freemius.php:20218
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "Upload og aktivering, hvordan?"
|
703 |
|
704 |
+
#: includes/class-freemius.php:20352
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
707 |
|
708 |
+
#: includes/class-freemius.php:20513
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Auto-installation fungerer kun for tilmeldte brugere."
|
711 |
|
712 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
713 |
+
#: includes/class-fs-plugin-updater.php1060,
|
714 |
+
#: includes/class-fs-plugin-updater.php:1074
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "Ugyldigt modul-ID."
|
717 |
|
718 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "Premium version allerede aktiv."
|
721 |
|
722 |
+
#: includes/class-freemius.php:20539
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
|
725 |
|
726 |
+
#: includes/class-freemius.php:20546
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
729 |
|
730 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium tilføjelse er allerede installeret."
|
733 |
|
734 |
+
#: includes/class-freemius.php:20909
|
735 |
msgid "View paid features"
|
736 |
msgstr "Vis betalte features"
|
737 |
|
738 |
+
#: includes/class-freemius.php:21229
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Thank you so much for using %s and its add-ons!"
|
741 |
|
742 |
+
#: includes/class-freemius.php:21230
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "Tak fordi du benytter %s!"
|
745 |
|
746 |
+
#: includes/class-freemius.php:21236
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
|
749 |
|
750 |
+
#: includes/class-freemius.php:21240
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "Mange tak for at benytte vores produkter!"
|
753 |
|
754 |
+
#: includes/class-freemius.php:21241
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
|
757 |
|
758 |
+
#: includes/class-freemius.php:21260
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%s og tilføjelser"
|
761 |
|
762 |
+
#: includes/class-freemius.php:21269
|
763 |
msgid "Products"
|
764 |
msgstr "Produkter"
|
765 |
|
766 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
767 |
msgid "Yes"
|
768 |
msgstr "Ja"
|
769 |
|
770 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
|
773 |
|
774 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
775 |
msgid "No"
|
776 |
msgstr "Nej"
|
777 |
|
778 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
|
781 |
|
782 |
+
#: includes/class-freemius.php:21290
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂"
|
785 |
|
786 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
|
789 |
|
790 |
+
#: includes/class-freemius.php:21574
|
791 |
msgid "License key is empty."
|
792 |
msgstr "Licensnøglen er tom."
|
793 |
|
809 |
msgid "new version"
|
810 |
msgstr "new version"
|
811 |
|
812 |
+
#: includes/class-fs-plugin-updater.php:305
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Important Upgrade Notice:"
|
815 |
|
816 |
+
#: includes/class-fs-plugin-updater.php:1125
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installerer plugin: %s"
|
819 |
|
820 |
+
#: includes/class-fs-plugin-updater.php:1166
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
823 |
|
824 |
+
#: includes/class-fs-plugin-updater.php:1348
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
827 |
|
freemius/languages/freemius-en.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
@@ -19,736 +19,736 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
|
22 |
-
#: includes/class-freemius.php:
|
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:
|
27 |
msgid "Error"
|
28 |
msgstr "Error"
|
29 |
|
30 |
-
#: includes/class-freemius.php:
|
31 |
msgid "I found a better %s"
|
32 |
msgstr "I found a better %s"
|
33 |
|
34 |
-
#: includes/class-freemius.php:
|
35 |
msgid "What's the %s's name?"
|
36 |
msgstr "What's the %s's name?"
|
37 |
|
38 |
-
#: includes/class-freemius.php:
|
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:
|
43 |
msgid "Deactivation"
|
44 |
msgstr "Deactivation"
|
45 |
|
46 |
-
#: includes/class-freemius.php:
|
47 |
msgid "Theme Switch"
|
48 |
msgstr "Theme Switch"
|
49 |
|
50 |
-
#: includes/class-freemius.php:
|
51 |
msgid "Other"
|
52 |
msgstr "Other"
|
53 |
|
54 |
-
#: includes/class-freemius.php:
|
55 |
msgid "I no longer need the %s"
|
56 |
msgstr "I no longer need the %s"
|
57 |
|
58 |
-
#: includes/class-freemius.php:
|
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:
|
63 |
msgid "The %s broke my site"
|
64 |
msgstr "The %s broke my site"
|
65 |
|
66 |
-
#: includes/class-freemius.php:
|
67 |
msgid "The %s suddenly stopped working"
|
68 |
msgstr "The %s suddenly stopped working"
|
69 |
|
70 |
-
#: includes/class-freemius.php:
|
71 |
msgid "I can't pay for it anymore"
|
72 |
msgstr "I can't pay for it anymore"
|
73 |
|
74 |
-
#: includes/class-freemius.php:
|
75 |
msgid "What price would you feel comfortable paying?"
|
76 |
msgstr "What price would you feel comfortable paying?"
|
77 |
|
78 |
-
#: includes/class-freemius.php:
|
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:
|
83 |
msgid "The %s didn't work"
|
84 |
msgstr "The %s didn't work"
|
85 |
|
86 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
95 |
msgid "What feature?"
|
96 |
msgstr "What feature?"
|
97 |
|
98 |
-
#: includes/class-freemius.php:
|
99 |
msgid "The %s is not working"
|
100 |
msgstr "The %s is not working"
|
101 |
|
102 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
111 |
msgid "What you've been looking for?"
|
112 |
msgstr "What you've been looking for?"
|
113 |
|
114 |
-
#: includes/class-freemius.php:
|
115 |
msgid "The %s didn't work as expected"
|
116 |
msgstr "The %s didn't work as expected"
|
117 |
|
118 |
-
#: includes/class-freemius.php:
|
119 |
msgid "What did you expect?"
|
120 |
msgstr "What did you expect?"
|
121 |
|
122 |
-
#: includes/class-freemius.php:
|
123 |
msgid "Freemius Debug"
|
124 |
msgstr "Freemius Debug"
|
125 |
|
126 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
139 |
msgid "Yes - do your thing"
|
140 |
msgstr "Yes - do your thing"
|
141 |
|
142 |
-
#: includes/class-freemius.php:
|
143 |
msgid "No - just deactivate"
|
144 |
msgstr "No - just deactivate"
|
145 |
|
146 |
-
#: includes/class-freemius.php:
|
147 |
msgctxt "exclamation"
|
148 |
msgid "Oops"
|
149 |
msgstr "Oops"
|
150 |
|
151 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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:
|
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:
|
170 |
msgid "Premium %s version was successfully activated."
|
171 |
msgstr "Premium %s version was successfully activated."
|
172 |
|
173 |
-
#: includes/class-freemius.php:
|
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:
|
179 |
msgid "You have a %s license."
|
180 |
msgstr "You have a %s license."
|
181 |
|
182 |
-
#: includes/class-freemius.php:
|
183 |
msgctxt "interjection expressing joy or exuberance"
|
184 |
msgid "Yee-haw"
|
185 |
msgstr "Yee-haw"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
196 |
msgid "More information about %s"
|
197 |
msgstr "More information about %s"
|
198 |
|
199 |
-
#: includes/class-freemius.php:
|
200 |
msgid "Purchase License"
|
201 |
msgstr "Purchase License"
|
202 |
|
203 |
-
#: includes/class-freemius.php:
|
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:
|
208 |
msgid "start the trial"
|
209 |
msgstr "start the trial"
|
210 |
|
211 |
-
#: includes/class-freemius.php:
|
212 |
msgid "complete the install"
|
213 |
msgstr "complete the install"
|
214 |
|
215 |
-
#: includes/class-freemius.php:
|
216 |
msgid "You are just one step away - %s"
|
217 |
msgstr "You are just one step away - %s"
|
218 |
|
219 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
229 |
msgid "Opt in to make \"%s\" better!"
|
230 |
msgstr "Opt in to make \"%s\" better!"
|
231 |
|
232 |
-
#: includes/class-freemius.php:
|
233 |
msgid "The upgrade of %s was successfully completed."
|
234 |
msgstr "The upgrade of %s was successfully completed."
|
235 |
|
236 |
-
#: includes/class-freemius.php:
|
237 |
msgid "Add-On"
|
238 |
msgstr "Add-On"
|
239 |
|
240 |
-
#: includes/class-freemius.php:
|
241 |
msgid "Plugin"
|
242 |
msgstr "Plugin"
|
243 |
|
244 |
-
#: includes/class-freemius.php:
|
245 |
msgid "Theme"
|
246 |
msgstr "Theme"
|
247 |
|
248 |
-
#: includes/class-freemius.php:
|
249 |
msgid "Invalid site details collection."
|
250 |
msgstr "Invalid site details collection."
|
251 |
|
252 |
-
#: includes/class-freemius.php:
|
253 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
254 |
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
255 |
|
256 |
-
#: includes/class-freemius.php:
|
257 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
258 |
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
259 |
|
260 |
-
#: includes/class-freemius.php:
|
261 |
msgid "Account is pending activation."
|
262 |
msgstr "Account is pending activation."
|
263 |
|
264 |
-
#: includes/class-freemius.php:
|
265 |
msgid "Buy a license now"
|
266 |
msgstr "Buy a license now"
|
267 |
|
268 |
-
#: includes/class-freemius.php:
|
269 |
msgid "Renew your license now"
|
270 |
msgstr "Renew your license now"
|
271 |
|
272 |
-
#: includes/class-freemius.php:
|
273 |
msgid "%s to access version %s security & feature updates, and support."
|
274 |
msgstr "%s to access version %s security & feature updates, and support."
|
275 |
|
276 |
-
#: includes/class-freemius.php:
|
277 |
msgid "%s activation was successfully completed."
|
278 |
msgstr "%s activation was successfully completed."
|
279 |
|
280 |
-
#: includes/class-freemius.php:
|
281 |
msgid "Your account was successfully activated with the %s plan."
|
282 |
msgstr "Your account was successfully activated with the %s plan."
|
283 |
|
284 |
-
#: includes/class-freemius.php:
|
285 |
msgid "Your trial has been successfully started."
|
286 |
msgstr "Your trial has been successfully started."
|
287 |
|
288 |
-
#: includes/class-freemius.php:
|
289 |
msgid "Couldn't activate %s."
|
290 |
msgstr "Couldn't activate %s."
|
291 |
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "Please contact us with the following message:"
|
294 |
msgstr "Please contact us with the following message:"
|
295 |
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "Upgrade"
|
298 |
msgstr "Upgrade"
|
299 |
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Start Trial"
|
302 |
msgstr "Start Trial"
|
303 |
|
304 |
-
#: includes/class-freemius.php:
|
305 |
msgid "Pricing"
|
306 |
msgstr "Pricing"
|
307 |
|
308 |
-
#: includes/class-freemius.php:
|
309 |
msgid "Affiliation"
|
310 |
msgstr "Affiliation"
|
311 |
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgid "Account"
|
314 |
msgstr "Account"
|
315 |
|
316 |
-
#: includes/class-freemius.php:
|
317 |
msgid "Contact Us"
|
318 |
msgstr "Contact Us"
|
319 |
|
320 |
-
#: includes/class-freemius.php:
|
321 |
msgid "Add-Ons"
|
322 |
msgstr "Add-Ons"
|
323 |
|
324 |
-
#: includes/class-freemius.php:
|
325 |
msgctxt "ASCII arrow left icon"
|
326 |
msgid "←"
|
327 |
msgstr "←"
|
328 |
|
329 |
-
#: includes/class-freemius.php:
|
330 |
msgctxt "ASCII arrow right icon"
|
331 |
msgid "➤"
|
332 |
msgstr "➤"
|
333 |
|
334 |
-
#: includes/class-freemius.php:
|
335 |
msgctxt "noun"
|
336 |
msgid "Pricing"
|
337 |
msgstr "Pricing"
|
338 |
|
339 |
-
#: includes/class-freemius.php:
|
340 |
msgid "Support Forum"
|
341 |
msgstr "Support Forum"
|
342 |
|
343 |
-
#: includes/class-freemius.php:
|
344 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
345 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
346 |
|
347 |
-
#: includes/class-freemius.php:
|
348 |
msgctxt "a positive response"
|
349 |
msgid "Right on"
|
350 |
msgstr "Right on"
|
351 |
|
352 |
-
#: includes/class-freemius.php:
|
353 |
msgid "Your %s Add-on plan was successfully upgraded."
|
354 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
355 |
|
356 |
-
#: includes/class-freemius.php:
|
357 |
msgid "%s Add-on was successfully purchased."
|
358 |
msgstr "%s Add-on was successfully purchased."
|
359 |
|
360 |
-
#: includes/class-freemius.php:
|
361 |
msgid "Download the latest version"
|
362 |
msgstr "Download the latest version"
|
363 |
|
364 |
-
#: includes/class-freemius.php:
|
365 |
msgctxt "%1s - plugin title, %2s - API domain"
|
366 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
367 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
368 |
|
369 |
-
#: includes/class-freemius.php:
|
370 |
msgid "Error received from the server:"
|
371 |
msgstr "Error received from the server:"
|
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.php:
|
378 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
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 "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 |
|
386 |
-
#: includes/class-freemius.php:
|
387 |
msgctxt "trial period"
|
388 |
msgid "Trial"
|
389 |
msgstr "Trial"
|
390 |
|
391 |
-
#: includes/class-freemius.php:
|
392 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
393 |
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
394 |
|
395 |
-
#: includes/class-freemius.php:
|
396 |
msgid "Please contact us here"
|
397 |
msgstr "Please contact us here"
|
398 |
|
399 |
-
#: includes/class-freemius.php:
|
400 |
msgid "Your plan was successfully upgraded."
|
401 |
msgstr "Your plan was successfully upgraded."
|
402 |
|
403 |
-
#: includes/class-freemius.php:
|
404 |
msgid "Your plan was successfully changed to %s."
|
405 |
msgstr "Your plan was successfully changed to %s."
|
406 |
|
407 |
-
#: includes/class-freemius.php:
|
408 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
409 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
410 |
|
411 |
-
#: includes/class-freemius.php:
|
412 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
413 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
414 |
|
415 |
-
#: includes/class-freemius.php:
|
416 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
417 |
msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
|
418 |
|
419 |
-
#: includes/class-freemius.php:
|
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 "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."
|
422 |
|
423 |
-
#: includes/class-freemius.php:
|
424 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
425 |
msgstr "Your free trial has expired. You can still continue using all our free features."
|
426 |
|
427 |
-
#: includes/class-freemius.php:
|
428 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
429 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
430 |
|
431 |
-
#: includes/class-freemius.php:
|
432 |
msgid "It looks like the license could not be activated."
|
433 |
msgstr "It looks like the license could not be activated."
|
434 |
|
435 |
-
#: includes/class-freemius.php:
|
436 |
msgid "Your license was successfully activated."
|
437 |
msgstr "Your license was successfully activated."
|
438 |
|
439 |
-
#: includes/class-freemius.php:
|
440 |
msgid "It looks like your site currently doesn't have an active license."
|
441 |
msgstr "It looks like your site currently doesn't have an active license."
|
442 |
|
443 |
-
#: includes/class-freemius.php:
|
444 |
msgid "It looks like the license deactivation failed."
|
445 |
msgstr "It looks like the license deactivation failed."
|
446 |
|
447 |
-
#: includes/class-freemius.php:
|
448 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
449 |
msgstr "Your license was successfully deactivated, you are back to the %s plan."
|
450 |
|
451 |
-
#: includes/class-freemius.php:
|
452 |
msgid "O.K"
|
453 |
msgstr "O.K"
|
454 |
|
455 |
-
#: includes/class-freemius.php:
|
456 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
457 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
458 |
|
459 |
-
#: includes/class-freemius.php:
|
460 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
461 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
462 |
|
463 |
-
#: includes/class-freemius.php:
|
464 |
msgid "You are already running the %s in a trial mode."
|
465 |
msgstr "You are already running the %s in a trial mode."
|
466 |
|
467 |
-
#: includes/class-freemius.php:
|
468 |
msgid "You already utilized a trial before."
|
469 |
msgstr "You already utilized a trial before."
|
470 |
|
471 |
-
#: includes/class-freemius.php:
|
472 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
473 |
msgstr "Plan %s do not exist, therefore, can't start a trial."
|
474 |
|
475 |
-
#: includes/class-freemius.php:
|
476 |
msgid "Plan %s does not support a trial period."
|
477 |
msgstr "Plan %s does not support a trial period."
|
478 |
|
479 |
-
#: includes/class-freemius.php:
|
480 |
msgid "None of the %s's plans supports a trial period."
|
481 |
msgstr "None of the %s's plans supports a trial period."
|
482 |
|
483 |
-
#: includes/class-freemius.php:
|
484 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
485 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
486 |
|
487 |
-
#: includes/class-freemius.php:
|
488 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
489 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
490 |
|
491 |
-
#: includes/class-freemius.php:
|
492 |
msgid "Your %s free trial was successfully cancelled."
|
493 |
msgstr "Your %s free trial was successfully cancelled."
|
494 |
|
495 |
-
#: includes/class-freemius.php:
|
496 |
msgid "Version %s was released."
|
497 |
msgstr "Version %s was released."
|
498 |
|
499 |
-
#: includes/class-freemius.php:
|
500 |
msgid "Please download %s."
|
501 |
msgstr "Please download %s."
|
502 |
|
503 |
-
#: includes/class-freemius.php:
|
504 |
msgid "the latest %s version here"
|
505 |
msgstr "the latest %s version here"
|
506 |
|
507 |
-
#: includes/class-freemius.php:
|
508 |
msgid "New"
|
509 |
msgstr "New"
|
510 |
|
511 |
-
#: includes/class-freemius.php:
|
512 |
msgid "Seems like you got the latest release."
|
513 |
msgstr "Seems like you got the latest release."
|
514 |
|
515 |
-
#: includes/class-freemius.php:
|
516 |
msgid "You are all good!"
|
517 |
msgstr "You are all good!"
|
518 |
|
519 |
-
#: includes/class-freemius.php:
|
520 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
521 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
522 |
|
523 |
-
#: includes/class-freemius.php:
|
524 |
msgid "Site successfully opted in."
|
525 |
msgstr "Site successfully opted in."
|
526 |
|
527 |
-
#: includes/class-freemius.php:
|
528 |
msgid "Awesome"
|
529 |
msgstr "Awesome"
|
530 |
|
531 |
-
#: includes/class-freemius.php:
|
532 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
533 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
534 |
|
535 |
-
#: includes/class-freemius.php:
|
536 |
msgid "Thank you!"
|
537 |
msgstr "Thank you!"
|
538 |
|
539 |
-
#: includes/class-freemius.php:
|
540 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
541 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
542 |
|
543 |
-
#: includes/class-freemius.php:
|
544 |
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."
|
545 |
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."
|
546 |
|
547 |
-
#: includes/class-freemius.php:
|
548 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
549 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
550 |
|
551 |
-
#: includes/class-freemius.php:
|
552 |
msgid "%s is the new owner of the account."
|
553 |
msgstr "%s is the new owner of the account."
|
554 |
|
555 |
-
#: includes/class-freemius.php:
|
556 |
msgctxt "as congratulations"
|
557 |
msgid "Congrats"
|
558 |
msgstr "Congrats"
|
559 |
|
560 |
-
#: includes/class-freemius.php:
|
561 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
562 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
563 |
|
564 |
-
#: includes/class-freemius.php:
|
565 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
566 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
567 |
|
568 |
-
#: includes/class-freemius.php:
|
569 |
msgid "Change Ownership"
|
570 |
msgstr "Change Ownership"
|
571 |
|
572 |
-
#: includes/class-freemius.php:
|
573 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
574 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
575 |
|
576 |
-
#: includes/class-freemius.php:
|
577 |
msgid "Please provide your full name."
|
578 |
msgstr "Please provide your full name."
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
581 |
msgid "Your name was successfully updated."
|
582 |
msgstr "Your name was successfully updated."
|
583 |
|
584 |
-
#: includes/class-freemius.php:
|
585 |
msgid "You have successfully updated your %s."
|
586 |
msgstr "You have successfully updated your %s."
|
587 |
|
588 |
-
#: includes/class-freemius.php:
|
589 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
590 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
591 |
|
592 |
-
#: includes/class-freemius.php:
|
593 |
msgctxt "advance notice of something that will need attention."
|
594 |
msgid "Heads up"
|
595 |
msgstr "Heads up"
|
596 |
|
597 |
-
#: includes/class-freemius.php:
|
598 |
msgctxt "exclamation"
|
599 |
msgid "Hey"
|
600 |
msgstr "Hey"
|
601 |
|
602 |
-
#: includes/class-freemius.php:
|
603 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
604 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
605 |
|
606 |
-
#: includes/class-freemius.php:
|
607 |
msgid "No commitment for %s days - cancel anytime!"
|
608 |
msgstr "No commitment for %s days - cancel anytime!"
|
609 |
|
610 |
-
#: includes/class-freemius.php:
|
611 |
msgid "No credit card required"
|
612 |
msgstr "No credit card required"
|
613 |
|
614 |
-
#: includes/class-freemius.php:
|
615 |
msgctxt "call to action"
|
616 |
msgid "Start free trial"
|
617 |
msgstr "Start free trial"
|
618 |
|
619 |
-
#: includes/class-freemius.php:
|
620 |
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!"
|
621 |
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!"
|
622 |
|
623 |
-
#: includes/class-freemius.php:
|
624 |
msgid "Learn more"
|
625 |
msgstr "Learn more"
|
626 |
|
627 |
-
#: includes/class-freemius.php:
|
628 |
msgid "Activate License"
|
629 |
msgstr "Activate License"
|
630 |
|
631 |
-
#: includes/class-freemius.php:
|
632 |
msgid "Change License"
|
633 |
msgstr "Change License"
|
634 |
|
635 |
-
#: includes/class-freemius.php:
|
636 |
msgid "Opt Out"
|
637 |
msgstr "Opt Out"
|
638 |
|
639 |
-
#: includes/class-freemius.php:
|
640 |
msgid "Opt In"
|
641 |
msgstr "Opt In"
|
642 |
|
643 |
-
#: includes/class-freemius.php:
|
644 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
645 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
646 |
|
647 |
-
#: includes/class-freemius.php:
|
648 |
msgid "Activate %s features"
|
649 |
msgstr "Activate %s features"
|
650 |
|
651 |
-
#: includes/class-freemius.php:
|
652 |
msgid "Please follow these steps to complete the upgrade"
|
653 |
msgstr "Please follow these steps to complete the upgrade"
|
654 |
|
655 |
-
#: includes/class-freemius.php:
|
656 |
msgid "Download the latest %s version"
|
657 |
msgstr "Download the latest %s version"
|
658 |
|
659 |
-
#: includes/class-freemius.php:
|
660 |
msgid "Upload and activate the downloaded version"
|
661 |
msgstr "Upload and activate the downloaded version"
|
662 |
|
663 |
-
#: includes/class-freemius.php:
|
664 |
msgid "How to upload and activate?"
|
665 |
msgstr "How to upload and activate?"
|
666 |
|
667 |
-
#: includes/class-freemius.php:
|
668 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
669 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
670 |
|
671 |
-
#: includes/class-freemius.php:
|
672 |
msgid "Auto installation only works for opted-in users."
|
673 |
msgstr "Auto installation only works for opted-in users."
|
674 |
|
675 |
-
#: includes/class-freemius.php:
|
676 |
msgid "Invalid module ID."
|
677 |
msgstr "Invalid module ID."
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid "Premium version already active."
|
681 |
msgstr "Premium version already active."
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "You do not have a valid license to access the premium version."
|
685 |
msgstr "You do not have a valid license to access the premium version."
|
686 |
|
687 |
-
#: includes/class-freemius.php:
|
688 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
689 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "Premium add-on version already installed."
|
693 |
msgstr "Premium add-on version already installed."
|
694 |
|
695 |
-
#: includes/class-freemius.php:
|
696 |
msgid "View paid features"
|
697 |
msgstr "View paid features"
|
698 |
|
699 |
-
#: includes/class-freemius.php:
|
700 |
msgid "Thank you so much for using %s and its add-ons!"
|
701 |
msgstr "Thank you so much for using %s and its add-ons!"
|
702 |
|
703 |
-
#: includes/class-freemius.php:
|
704 |
msgid "Thank you so much for using %s!"
|
705 |
msgstr "Thank you so much for using %s!"
|
706 |
|
707 |
-
#: includes/class-freemius.php:
|
708 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
709 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
710 |
|
711 |
-
#: includes/class-freemius.php:
|
712 |
msgid "Thank you so much for using our products!"
|
713 |
msgstr "Thank you so much for using our products!"
|
714 |
|
715 |
-
#: includes/class-freemius.php:
|
716 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
717 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
718 |
|
719 |
-
#: includes/class-freemius.php:
|
720 |
msgid "%s and its add-ons"
|
721 |
msgstr "%s and its add-ons"
|
722 |
|
723 |
-
#: includes/class-freemius.php:
|
724 |
msgid "Products"
|
725 |
msgstr "Products"
|
726 |
|
727 |
-
#: includes/class-freemius.php:
|
728 |
msgid "Yes"
|
729 |
msgstr "Yes"
|
730 |
|
731 |
-
#: includes/class-freemius.php:
|
732 |
msgid "send me security & feature updates, educational content and offers."
|
733 |
msgstr "send me security & feature updates, educational content and offers."
|
734 |
|
735 |
-
#: includes/class-freemius.php:
|
736 |
msgid "No"
|
737 |
msgstr "No"
|
738 |
|
739 |
-
#: includes/class-freemius.php:
|
740 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
741 |
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
742 |
|
743 |
-
#: includes/class-freemius.php:
|
744 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
745 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
746 |
|
747 |
-
#: includes/class-freemius.php:
|
748 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
749 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
750 |
|
751 |
-
#: includes/class-freemius.php:
|
752 |
msgid "License key is empty."
|
753 |
msgstr "License key is empty."
|
754 |
|
@@ -768,19 +768,19 @@ msgstr "There is a %s of %s available."
|
|
768 |
msgid "new version"
|
769 |
msgstr "new version"
|
770 |
|
771 |
-
#: includes/class-fs-plugin-updater.php:
|
772 |
msgid "Important Upgrade Notice:"
|
773 |
msgstr "Important Upgrade Notice:"
|
774 |
|
775 |
-
#: includes/class-fs-plugin-updater.php:
|
776 |
msgid "Installing plugin: %s"
|
777 |
msgstr "Installing plugin: %s"
|
778 |
|
779 |
-
#: includes/class-fs-plugin-updater.php:
|
780 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
781 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
782 |
|
783 |
-
#: includes/class-fs-plugin-updater.php:
|
784 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
785 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
786 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
|
22 |
+
#: includes/class-freemius.php:1688
|
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:1690
|
27 |
msgid "Error"
|
28 |
msgstr "Error"
|
29 |
|
30 |
+
#: includes/class-freemius.php:2011
|
31 |
msgid "I found a better %s"
|
32 |
msgstr "I found a better %s"
|
33 |
|
34 |
+
#: includes/class-freemius.php:2013
|
35 |
msgid "What's the %s's name?"
|
36 |
msgstr "What's the %s's name?"
|
37 |
|
38 |
+
#: includes/class-freemius.php:2019
|
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:2021
|
43 |
msgid "Deactivation"
|
44 |
msgstr "Deactivation"
|
45 |
|
46 |
+
#: includes/class-freemius.php:2022
|
47 |
msgid "Theme Switch"
|
48 |
msgstr "Theme Switch"
|
49 |
|
50 |
+
#: includes/class-freemius.php:2031, templates/forms/resend-key.php:24
|
51 |
msgid "Other"
|
52 |
msgstr "Other"
|
53 |
|
54 |
+
#: includes/class-freemius.php:2039
|
55 |
msgid "I no longer need the %s"
|
56 |
msgstr "I no longer need the %s"
|
57 |
|
58 |
+
#: includes/class-freemius.php:2046
|
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:2052
|
63 |
msgid "The %s broke my site"
|
64 |
msgstr "The %s broke my site"
|
65 |
|
66 |
+
#: includes/class-freemius.php:2059
|
67 |
msgid "The %s suddenly stopped working"
|
68 |
msgstr "The %s suddenly stopped working"
|
69 |
|
70 |
+
#: includes/class-freemius.php:2069
|
71 |
msgid "I can't pay for it anymore"
|
72 |
msgstr "I can't pay for it anymore"
|
73 |
|
74 |
+
#: includes/class-freemius.php:2071
|
75 |
msgid "What price would you feel comfortable paying?"
|
76 |
msgstr "What price would you feel comfortable paying?"
|
77 |
|
78 |
+
#: includes/class-freemius.php:2077
|
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:2098
|
83 |
msgid "The %s didn't work"
|
84 |
msgstr "The %s didn't work"
|
85 |
|
86 |
+
#: includes/class-freemius.php:2108
|
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:2116
|
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:2118
|
95 |
msgid "What feature?"
|
96 |
msgstr "What feature?"
|
97 |
|
98 |
+
#: includes/class-freemius.php:2122
|
99 |
msgid "The %s is not working"
|
100 |
msgstr "The %s is not working"
|
101 |
|
102 |
+
#: includes/class-freemius.php:2124
|
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:2128
|
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:2130
|
111 |
msgid "What you've been looking for?"
|
112 |
msgstr "What you've been looking for?"
|
113 |
|
114 |
+
#: includes/class-freemius.php:2134
|
115 |
msgid "The %s didn't work as expected"
|
116 |
msgstr "The %s didn't work as expected"
|
117 |
|
118 |
+
#: includes/class-freemius.php:2136
|
119 |
msgid "What did you expect?"
|
120 |
msgstr "What did you expect?"
|
121 |
|
122 |
+
#: includes/class-freemius.php:2942, templates/debug.php:20
|
123 |
msgid "Freemius Debug"
|
124 |
msgstr "Freemius Debug"
|
125 |
|
126 |
+
#: includes/class-freemius.php:3670
|
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:3672
|
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:3679
|
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:3784
|
139 |
msgid "Yes - do your thing"
|
140 |
msgstr "Yes - do your thing"
|
141 |
|
142 |
+
#: includes/class-freemius.php:3789
|
143 |
msgid "No - just deactivate"
|
144 |
msgstr "No - just deactivate"
|
145 |
|
146 |
+
#: includes/class-freemius.php:3834, includes/class-freemius.php:4343, includes/class-freemius.php:5442, includes/class-freemius.php:11545, includes/class-freemius.php:14916, includes/class-freemius.php:14968, includes/class-freemius.php:15030, includes/class-freemius.php:17263, includes/class-freemius.php:17273, includes/class-freemius.php:17882, includes/class-freemius.php:18742, includes/class-freemius.php:18857, includes/class-freemius.php:19001, templates/add-ons.php:43
|
147 |
msgctxt "exclamation"
|
148 |
msgid "Oops"
|
149 |
msgstr "Oops"
|
150 |
|
151 |
+
#: includes/class-freemius.php:3903
|
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:4340
|
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:4341
|
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:4487, includes/class-freemius.php:4512, includes/class-freemius.php:17953
|
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:5130
|
170 |
msgid "Premium %s version was successfully activated."
|
171 |
msgstr "Premium %s version was successfully activated."
|
172 |
|
173 |
+
#: includes/class-freemius.php:5142, includes/class-freemius.php:7004
|
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:5157
|
179 |
msgid "You have a %s license."
|
180 |
msgstr "You have a %s license."
|
181 |
|
182 |
+
#: includes/class-freemius.php:5161, includes/class-freemius.php:14337, includes/class-freemius.php:14348, includes/class-freemius.php:17177, includes/class-freemius.php:17491, includes/class-freemius.php:17557, includes/class-freemius.php:17707
|
183 |
msgctxt "interjection expressing joy or exuberance"
|
184 |
msgid "Yee-haw"
|
185 |
msgstr "Yee-haw"
|
186 |
|
187 |
+
#: includes/class-freemius.php:5425
|
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:5429
|
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:5438, templates/add-ons.php:103, templates/account/partials/addon.php:288
|
196 |
msgid "More information about %s"
|
197 |
msgstr "More information about %s"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5439
|
200 |
msgid "Purchase License"
|
201 |
msgstr "Purchase License"
|
202 |
|
203 |
+
#: includes/class-freemius.php:6372, templates/connect.php:163
|
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:6376
|
208 |
msgid "start the trial"
|
209 |
msgstr "start the trial"
|
210 |
|
211 |
+
#: includes/class-freemius.php:6377, templates/connect.php:167
|
212 |
msgid "complete the install"
|
213 |
msgstr "complete the install"
|
214 |
|
215 |
+
#: includes/class-freemius.php:6490
|
216 |
msgid "You are just one step away - %s"
|
217 |
msgstr "You are just one step away - %s"
|
218 |
|
219 |
+
#: includes/class-freemius.php:6493
|
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:6571
|
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:6575
|
229 |
msgid "Opt in to make \"%s\" better!"
|
230 |
msgstr "Opt in to make \"%s\" better!"
|
231 |
|
232 |
+
#: includes/class-freemius.php:7003
|
233 |
msgid "The upgrade of %s was successfully completed."
|
234 |
msgstr "The upgrade of %s was successfully completed."
|
235 |
|
236 |
+
#: includes/class-freemius.php:8925, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32
|
237 |
msgid "Add-On"
|
238 |
msgstr "Add-On"
|
239 |
|
240 |
+
#: includes/class-freemius.php:8927, templates/debug.php:359, templates/debug.php:520
|
241 |
msgid "Plugin"
|
242 |
msgstr "Plugin"
|
243 |
|
244 |
+
#: includes/class-freemius.php:8928, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
|
245 |
msgid "Theme"
|
246 |
msgstr "Theme"
|
247 |
|
248 |
+
#: includes/class-freemius.php:11412
|
249 |
msgid "Invalid site details collection."
|
250 |
msgstr "Invalid site details collection."
|
251 |
|
252 |
+
#: includes/class-freemius.php:11532
|
253 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
254 |
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
255 |
|
256 |
+
#: includes/class-freemius.php:11534
|
257 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
258 |
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
259 |
|
260 |
+
#: includes/class-freemius.php:11808
|
261 |
msgid "Account is pending activation."
|
262 |
msgstr "Account is pending activation."
|
263 |
|
264 |
+
#: includes/class-freemius.php:11920, templates/forms/premium-versions-upgrade-handler.php:47
|
265 |
msgid "Buy a license now"
|
266 |
msgstr "Buy a license now"
|
267 |
|
268 |
+
#: includes/class-freemius.php:11932, templates/forms/premium-versions-upgrade-handler.php:46
|
269 |
msgid "Renew your license now"
|
270 |
msgstr "Renew your license now"
|
271 |
|
272 |
+
#: includes/class-freemius.php:11936
|
273 |
msgid "%s to access version %s security & feature updates, and support."
|
274 |
msgstr "%s to access version %s security & feature updates, and support."
|
275 |
|
276 |
+
#: includes/class-freemius.php:14319
|
277 |
msgid "%s activation was successfully completed."
|
278 |
msgstr "%s activation was successfully completed."
|
279 |
|
280 |
+
#: includes/class-freemius.php:14333
|
281 |
msgid "Your account was successfully activated with the %s plan."
|
282 |
msgstr "Your account was successfully activated with the %s plan."
|
283 |
|
284 |
+
#: includes/class-freemius.php:14344, includes/class-freemius.php:17553
|
285 |
msgid "Your trial has been successfully started."
|
286 |
msgstr "Your trial has been successfully started."
|
287 |
|
288 |
+
#: includes/class-freemius.php:14914, includes/class-freemius.php:14966, includes/class-freemius.php:15028
|
289 |
msgid "Couldn't activate %s."
|
290 |
msgstr "Couldn't activate %s."
|
291 |
|
292 |
+
#: includes/class-freemius.php:14915, includes/class-freemius.php:14967, includes/class-freemius.php:15029
|
293 |
msgid "Please contact us with the following message:"
|
294 |
msgstr "Please contact us with the following message:"
|
295 |
|
296 |
+
#: includes/class-freemius.php:15378, includes/class-freemius.php:19839
|
297 |
msgid "Upgrade"
|
298 |
msgstr "Upgrade"
|
299 |
|
300 |
+
#: includes/class-freemius.php:15384
|
301 |
msgid "Start Trial"
|
302 |
msgstr "Start Trial"
|
303 |
|
304 |
+
#: includes/class-freemius.php:15386
|
305 |
msgid "Pricing"
|
306 |
msgstr "Pricing"
|
307 |
|
308 |
+
#: includes/class-freemius.php:15448, includes/class-freemius.php:15450
|
309 |
msgid "Affiliation"
|
310 |
msgstr "Affiliation"
|
311 |
|
312 |
+
#: includes/class-freemius.php:15478, includes/class-freemius.php:15480, templates/account.php:150, templates/debug.php:324
|
313 |
msgid "Account"
|
314 |
msgstr "Account"
|
315 |
|
316 |
+
#: includes/class-freemius.php:15493, includes/class-freemius.php:15495, includes/customizer/class-fs-customizer-support-section.php:60
|
317 |
msgid "Contact Us"
|
318 |
msgstr "Contact Us"
|
319 |
|
320 |
+
#: includes/class-freemius.php:15505, includes/class-freemius.php:15507, includes/class-freemius.php:19849, templates/account.php:100, templates/account/partials/addon.php:41
|
321 |
msgid "Add-Ons"
|
322 |
msgstr "Add-Ons"
|
323 |
|
324 |
+
#: includes/class-freemius.php:15541
|
325 |
msgctxt "ASCII arrow left icon"
|
326 |
msgid "←"
|
327 |
msgstr "←"
|
328 |
|
329 |
+
#: includes/class-freemius.php:15541
|
330 |
msgctxt "ASCII arrow right icon"
|
331 |
msgid "➤"
|
332 |
msgstr "➤"
|
333 |
|
334 |
+
#: includes/class-freemius.php:15543, templates/pricing.php:97
|
335 |
msgctxt "noun"
|
336 |
msgid "Pricing"
|
337 |
msgstr "Pricing"
|
338 |
|
339 |
+
#: includes/class-freemius.php:15756, includes/customizer/class-fs-customizer-support-section.php:67
|
340 |
msgid "Support Forum"
|
341 |
msgstr "Support Forum"
|
342 |
|
343 |
+
#: includes/class-freemius.php:16542
|
344 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
345 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
346 |
|
347 |
+
#: includes/class-freemius.php:16543
|
348 |
msgctxt "a positive response"
|
349 |
msgid "Right on"
|
350 |
msgstr "Right on"
|
351 |
|
352 |
+
#: includes/class-freemius.php:17168
|
353 |
msgid "Your %s Add-on plan was successfully upgraded."
|
354 |
msgstr "Your %s Add-on plan was successfully upgraded."
|
355 |
|
356 |
+
#: includes/class-freemius.php:17170
|
357 |
msgid "%s Add-on was successfully purchased."
|
358 |
msgstr "%s Add-on was successfully purchased."
|
359 |
|
360 |
+
#: includes/class-freemius.php:17173
|
361 |
msgid "Download the latest version"
|
362 |
msgstr "Download the latest version"
|
363 |
|
364 |
+
#: includes/class-freemius.php:17259
|
365 |
msgctxt "%1s - plugin title, %2s - API domain"
|
366 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
367 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
368 |
|
369 |
+
#: includes/class-freemius.php:17262, includes/class-freemius.php:17678, includes/class-freemius.php:17755
|
370 |
msgid "Error received from the server:"
|
371 |
msgstr "Error received from the server:"
|
372 |
|
373 |
+
#: includes/class-freemius.php:17272
|
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.php:17454, includes/class-freemius.php:17683, includes/class-freemius.php:17726, includes/class-freemius.php:17829
|
378 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
379 |
msgid "Hmm"
|
380 |
msgstr "Hmm"
|
381 |
|
382 |
+
#: includes/class-freemius.php:17467
|
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 "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 |
|
386 |
+
#: includes/class-freemius.php:17468, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
|
387 |
msgctxt "trial period"
|
388 |
msgid "Trial"
|
389 |
msgstr "Trial"
|
390 |
|
391 |
+
#: includes/class-freemius.php:17473
|
392 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
393 |
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
394 |
|
395 |
+
#: includes/class-freemius.php:17477, includes/class-freemius.php:17535
|
396 |
msgid "Please contact us here"
|
397 |
msgstr "Please contact us here"
|
398 |
|
399 |
+
#: includes/class-freemius.php:17487
|
400 |
msgid "Your plan was successfully upgraded."
|
401 |
msgstr "Your plan was successfully upgraded."
|
402 |
|
403 |
+
#: includes/class-freemius.php:17505
|
404 |
msgid "Your plan was successfully changed to %s."
|
405 |
msgstr "Your plan was successfully changed to %s."
|
406 |
|
407 |
+
#: includes/class-freemius.php:17521
|
408 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
409 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
410 |
|
411 |
+
#: includes/class-freemius.php:17523
|
412 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
413 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
414 |
|
415 |
+
#: includes/class-freemius.php:17531
|
416 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
417 |
msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
|
418 |
|
419 |
+
#: includes/class-freemius.php:17544
|
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 "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."
|
422 |
|
423 |
+
#: includes/class-freemius.php:17567
|
424 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
425 |
msgstr "Your free trial has expired. You can still continue using all our free features."
|
426 |
|
427 |
+
#: includes/class-freemius.php:17569
|
428 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
429 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
430 |
|
431 |
+
#: includes/class-freemius.php:17674
|
432 |
msgid "It looks like the license could not be activated."
|
433 |
msgstr "It looks like the license could not be activated."
|
434 |
|
435 |
+
#: includes/class-freemius.php:17704
|
436 |
msgid "Your license was successfully activated."
|
437 |
msgstr "Your license was successfully activated."
|
438 |
|
439 |
+
#: includes/class-freemius.php:17730
|
440 |
msgid "It looks like your site currently doesn't have an active license."
|
441 |
msgstr "It looks like your site currently doesn't have an active license."
|
442 |
|
443 |
+
#: includes/class-freemius.php:17754
|
444 |
msgid "It looks like the license deactivation failed."
|
445 |
msgstr "It looks like the license deactivation failed."
|
446 |
|
447 |
+
#: includes/class-freemius.php:17782
|
448 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
449 |
msgstr "Your license was successfully deactivated, you are back to the %s plan."
|
450 |
|
451 |
+
#: includes/class-freemius.php:17783
|
452 |
msgid "O.K"
|
453 |
msgstr "O.K"
|
454 |
|
455 |
+
#: includes/class-freemius.php:17836
|
456 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
457 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
458 |
|
459 |
+
#: includes/class-freemius.php:17845
|
460 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
461 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
462 |
|
463 |
+
#: includes/class-freemius.php:17887
|
464 |
msgid "You are already running the %s in a trial mode."
|
465 |
msgstr "You are already running the %s in a trial mode."
|
466 |
|
467 |
+
#: includes/class-freemius.php:17898
|
468 |
msgid "You already utilized a trial before."
|
469 |
msgstr "You already utilized a trial before."
|
470 |
|
471 |
+
#: includes/class-freemius.php:17912
|
472 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
473 |
msgstr "Plan %s do not exist, therefore, can't start a trial."
|
474 |
|
475 |
+
#: includes/class-freemius.php:17923
|
476 |
msgid "Plan %s does not support a trial period."
|
477 |
msgstr "Plan %s does not support a trial period."
|
478 |
|
479 |
+
#: includes/class-freemius.php:17934
|
480 |
msgid "None of the %s's plans supports a trial period."
|
481 |
msgstr "None of the %s's plans supports a trial period."
|
482 |
|
483 |
+
#: includes/class-freemius.php:17984
|
484 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
485 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
486 |
|
487 |
+
#: includes/class-freemius.php:18020
|
488 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
489 |
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
490 |
|
491 |
+
#: includes/class-freemius.php:18039
|
492 |
msgid "Your %s free trial was successfully cancelled."
|
493 |
msgstr "Your %s free trial was successfully cancelled."
|
494 |
|
495 |
+
#: includes/class-freemius.php:18346
|
496 |
msgid "Version %s was released."
|
497 |
msgstr "Version %s was released."
|
498 |
|
499 |
+
#: includes/class-freemius.php:18346
|
500 |
msgid "Please download %s."
|
501 |
msgstr "Please download %s."
|
502 |
|
503 |
+
#: includes/class-freemius.php:18353
|
504 |
msgid "the latest %s version here"
|
505 |
msgstr "the latest %s version here"
|
506 |
|
507 |
+
#: includes/class-freemius.php:18358
|
508 |
msgid "New"
|
509 |
msgstr "New"
|
510 |
|
511 |
+
#: includes/class-freemius.php:18363
|
512 |
msgid "Seems like you got the latest release."
|
513 |
msgstr "Seems like you got the latest release."
|
514 |
|
515 |
+
#: includes/class-freemius.php:18364
|
516 |
msgid "You are all good!"
|
517 |
msgstr "You are all good!"
|
518 |
|
519 |
+
#: includes/class-freemius.php:18632
|
520 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
521 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
522 |
|
523 |
+
#: includes/class-freemius.php:18769
|
524 |
msgid "Site successfully opted in."
|
525 |
msgstr "Site successfully opted in."
|
526 |
|
527 |
+
#: includes/class-freemius.php:18770, includes/class-freemius.php:19581
|
528 |
msgid "Awesome"
|
529 |
msgstr "Awesome"
|
530 |
|
531 |
+
#: includes/class-freemius.php:18786, templates/forms/optout.php:32
|
532 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
533 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
534 |
|
535 |
+
#: includes/class-freemius.php:18787
|
536 |
msgid "Thank you!"
|
537 |
msgstr "Thank you!"
|
538 |
|
539 |
+
#: includes/class-freemius.php:18794
|
540 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
541 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
542 |
|
543 |
+
#: includes/class-freemius.php:18923
|
544 |
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."
|
545 |
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."
|
546 |
|
547 |
+
#: includes/class-freemius.php:18929
|
548 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
549 |
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
550 |
|
551 |
+
#: includes/class-freemius.php:18934
|
552 |
msgid "%s is the new owner of the account."
|
553 |
msgstr "%s is the new owner of the account."
|
554 |
|
555 |
+
#: includes/class-freemius.php:18936
|
556 |
msgctxt "as congratulations"
|
557 |
msgid "Congrats"
|
558 |
msgstr "Congrats"
|
559 |
|
560 |
+
#: includes/class-freemius.php:18956
|
561 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
562 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
563 |
|
564 |
+
#: includes/class-freemius.php:18957
|
565 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
566 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
567 |
|
568 |
+
#: includes/class-freemius.php:18964
|
569 |
msgid "Change Ownership"
|
570 |
msgstr "Change Ownership"
|
571 |
|
572 |
+
#: includes/class-freemius.php:18972
|
573 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
574 |
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
575 |
|
576 |
+
#: includes/class-freemius.php:18984
|
577 |
msgid "Please provide your full name."
|
578 |
msgstr "Please provide your full name."
|
579 |
|
580 |
+
#: includes/class-freemius.php:18989
|
581 |
msgid "Your name was successfully updated."
|
582 |
msgstr "Your name was successfully updated."
|
583 |
|
584 |
+
#: includes/class-freemius.php:19050
|
585 |
msgid "You have successfully updated your %s."
|
586 |
msgstr "You have successfully updated your %s."
|
587 |
|
588 |
+
#: includes/class-freemius.php:19190
|
589 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
590 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
591 |
|
592 |
+
#: includes/class-freemius.php:19191
|
593 |
msgctxt "advance notice of something that will need attention."
|
594 |
msgid "Heads up"
|
595 |
msgstr "Heads up"
|
596 |
|
597 |
+
#: includes/class-freemius.php:19621
|
598 |
msgctxt "exclamation"
|
599 |
msgid "Hey"
|
600 |
msgstr "Hey"
|
601 |
|
602 |
+
#: includes/class-freemius.php:19621
|
603 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
604 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
605 |
|
606 |
+
#: includes/class-freemius.php:19629
|
607 |
msgid "No commitment for %s days - cancel anytime!"
|
608 |
msgstr "No commitment for %s days - cancel anytime!"
|
609 |
|
610 |
+
#: includes/class-freemius.php:19630
|
611 |
msgid "No credit card required"
|
612 |
msgstr "No credit card required"
|
613 |
|
614 |
+
#: includes/class-freemius.php:19637, templates/forms/trial-start.php:53
|
615 |
msgctxt "call to action"
|
616 |
msgid "Start free trial"
|
617 |
msgstr "Start free trial"
|
618 |
|
619 |
+
#: includes/class-freemius.php:19714
|
620 |
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!"
|
621 |
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!"
|
622 |
|
623 |
+
#: includes/class-freemius.php:19723
|
624 |
msgid "Learn more"
|
625 |
msgstr "Learn more"
|
626 |
|
627 |
+
#: includes/class-freemius.php:19873, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
|
628 |
msgid "Activate License"
|
629 |
msgstr "Activate License"
|
630 |
|
631 |
+
#: includes/class-freemius.php:19874, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
|
632 |
msgid "Change License"
|
633 |
msgstr "Change License"
|
634 |
|
635 |
+
#: includes/class-freemius.php:19956, templates/account/partials/site.php:161
|
636 |
msgid "Opt Out"
|
637 |
msgstr "Opt Out"
|
638 |
|
639 |
+
#: includes/class-freemius.php:19958, includes/class-freemius.php:19963, templates/account/partials/site.php:43, templates/account/partials/site.php:161
|
640 |
msgid "Opt In"
|
641 |
msgstr "Opt In"
|
642 |
|
643 |
+
#: includes/class-freemius.php:20187
|
644 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
645 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
646 |
|
647 |
+
#: includes/class-freemius.php:20195
|
648 |
msgid "Activate %s features"
|
649 |
msgstr "Activate %s features"
|
650 |
|
651 |
+
#: includes/class-freemius.php:20208
|
652 |
msgid "Please follow these steps to complete the upgrade"
|
653 |
msgstr "Please follow these steps to complete the upgrade"
|
654 |
|
655 |
+
#: includes/class-freemius.php:20212
|
656 |
msgid "Download the latest %s version"
|
657 |
msgstr "Download the latest %s version"
|
658 |
|
659 |
+
#: includes/class-freemius.php:20216
|
660 |
msgid "Upload and activate the downloaded version"
|
661 |
msgstr "Upload and activate the downloaded version"
|
662 |
|
663 |
+
#: includes/class-freemius.php:20218
|
664 |
msgid "How to upload and activate?"
|
665 |
msgstr "How to upload and activate?"
|
666 |
|
667 |
+
#: includes/class-freemius.php:20352
|
668 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
669 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
670 |
|
671 |
+
#: includes/class-freemius.php:20513
|
672 |
msgid "Auto installation only works for opted-in users."
|
673 |
msgstr "Auto installation only works for opted-in users."
|
674 |
|
675 |
+
#: includes/class-freemius.php:20523, includes/class-freemius.php:20556, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074
|
676 |
msgid "Invalid module ID."
|
677 |
msgstr "Invalid module ID."
|
678 |
|
679 |
+
#: includes/class-freemius.php:20532, includes/class-fs-plugin-updater.php:1096
|
680 |
msgid "Premium version already active."
|
681 |
msgstr "Premium version already active."
|
682 |
|
683 |
+
#: includes/class-freemius.php:20539
|
684 |
msgid "You do not have a valid license to access the premium version."
|
685 |
msgstr "You do not have a valid license to access the premium version."
|
686 |
|
687 |
+
#: includes/class-freemius.php:20546
|
688 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
689 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
690 |
|
691 |
+
#: includes/class-freemius.php:20564, includes/class-fs-plugin-updater.php:1095
|
692 |
msgid "Premium add-on version already installed."
|
693 |
msgstr "Premium add-on version already installed."
|
694 |
|
695 |
+
#: includes/class-freemius.php:20909
|
696 |
msgid "View paid features"
|
697 |
msgstr "View paid features"
|
698 |
|
699 |
+
#: includes/class-freemius.php:21229
|
700 |
msgid "Thank you so much for using %s and its add-ons!"
|
701 |
msgstr "Thank you so much for using %s and its add-ons!"
|
702 |
|
703 |
+
#: includes/class-freemius.php:21230
|
704 |
msgid "Thank you so much for using %s!"
|
705 |
msgstr "Thank you so much for using %s!"
|
706 |
|
707 |
+
#: includes/class-freemius.php:21236
|
708 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
709 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
710 |
|
711 |
+
#: includes/class-freemius.php:21240
|
712 |
msgid "Thank you so much for using our products!"
|
713 |
msgstr "Thank you so much for using our products!"
|
714 |
|
715 |
+
#: includes/class-freemius.php:21241
|
716 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
717 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
718 |
|
719 |
+
#: includes/class-freemius.php:21260
|
720 |
msgid "%s and its add-ons"
|
721 |
msgstr "%s and its add-ons"
|
722 |
|
723 |
+
#: includes/class-freemius.php:21269
|
724 |
msgid "Products"
|
725 |
msgstr "Products"
|
726 |
|
727 |
+
#: includes/class-freemius.php:21276, templates/connect.php:272
|
728 |
msgid "Yes"
|
729 |
msgstr "Yes"
|
730 |
|
731 |
+
#: includes/class-freemius.php:21277, templates/connect.php:273
|
732 |
msgid "send me security & feature updates, educational content and offers."
|
733 |
msgstr "send me security & feature updates, educational content and offers."
|
734 |
|
735 |
+
#: includes/class-freemius.php:21278, templates/connect.php:278
|
736 |
msgid "No"
|
737 |
msgstr "No"
|
738 |
|
739 |
+
#: includes/class-freemius.php:21280, templates/connect.php:280
|
740 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
741 |
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
742 |
|
743 |
+
#: includes/class-freemius.php:21290
|
744 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
745 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
746 |
|
747 |
+
#: includes/class-freemius.php:21292, templates/connect.php:287
|
748 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
749 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
750 |
|
751 |
+
#: includes/class-freemius.php:21574
|
752 |
msgid "License key is empty."
|
753 |
msgstr "License key is empty."
|
754 |
|
768 |
msgid "new version"
|
769 |
msgstr "new version"
|
770 |
|
771 |
+
#: includes/class-fs-plugin-updater.php:305
|
772 |
msgid "Important Upgrade Notice:"
|
773 |
msgstr "Important Upgrade Notice:"
|
774 |
|
775 |
+
#: includes/class-fs-plugin-updater.php:1125
|
776 |
msgid "Installing plugin: %s"
|
777 |
msgstr "Installing plugin: %s"
|
778 |
|
779 |
+
#: includes/class-fs-plugin-updater.php:1166
|
780 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
781 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
782 |
|
783 |
+
#: includes/class-fs-plugin-updater.php:1348
|
784 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
785 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
786 |
|
freemius/languages/freemius-es_ES.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Carlos Longarela <carlos@longarela.eu>, 2017-2018
|
@@ -21,772 +21,772 @@ 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 %s mejor"
|
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 una %stemporal . 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 "¿Con 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 "El %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 " El %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 " El %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/account/partials/addon.php:288
|
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 "¡Inscríbite para hacer \"%s\" Mejor!"
|
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.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Complemento"
|
255 |
|
256 |
-
#: includes/class-freemius.
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Plugin"
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Tema"
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
267 |
msgid "Invalid site details collection."
|
268 |
msgstr "Colección de detalles del sitio no válida."
|
269 |
|
270 |
-
#: includes/class-freemius.php:
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
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?"
|
273 |
|
274 |
-
#: includes/class-freemius.php:
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
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?"
|
277 |
|
278 |
-
#: includes/class-freemius.php:
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "La cuenta está pendiente de activación"
|
281 |
|
282 |
-
#: includes/class-freemius.
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Compra una licencia ahora"
|
286 |
|
287 |
-
#: includes/class-freemius.
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renueva tu licencia ahora"
|
291 |
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
|
295 |
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "%s activación se completó con éxito."
|
299 |
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Tu cuenta se ha activado correctamente con el plan %s."
|
303 |
|
304 |
-
#: includes/class-freemius.
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Tu versión de prueba se ha iniciado con éxito."
|
307 |
|
308 |
-
#: includes/class-freemius.
|
309 |
-
#: includes/class-freemius.php:
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "No se puede activar %s."
|
312 |
|
313 |
-
#: includes/class-freemius.
|
314 |
-
#: includes/class-freemius.php:
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Por favor contáctanos con el siguiente mensaje:"
|
317 |
|
318 |
-
#: includes/class-freemius.
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Actualizar"
|
321 |
|
322 |
-
#: includes/class-freemius.php:
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Comenzar el período de prueba"
|
325 |
|
326 |
-
#: includes/class-freemius.php:
|
327 |
msgid "Pricing"
|
328 |
msgstr "Precio"
|
329 |
|
330 |
-
#: includes/class-freemius.
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Afiliación"
|
333 |
|
334 |
-
#: includes/class-freemius.
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Cuenta"
|
338 |
|
339 |
-
#: includes/class-freemius.
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Contáctanos"
|
343 |
|
344 |
-
#: includes/class-freemius.
|
345 |
-
#: includes/class-freemius.
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Complementos"
|
349 |
|
350 |
-
#: includes/class-freemius.php:
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
-
#: includes/class-freemius.php:
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
-
#: includes/class-freemius.
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Precio"
|
364 |
|
365 |
-
#: includes/class-freemius.
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Foro de soporte"
|
369 |
|
370 |
-
#: includes/class-freemius.php:
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
|
373 |
|
374 |
-
#: includes/class-freemius.php:
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Bien hecho"
|
378 |
|
379 |
-
#: includes/class-freemius.php:
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Tu complemento %s del plan se actualizó con éxito."
|
382 |
|
383 |
-
#: includes/class-freemius.php:
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "El complemento %s ha sido comprado correctamente."
|
386 |
|
387 |
-
#: includes/class-freemius.php:
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Descargar la última versión"
|
390 |
|
391 |
-
#: includes/class-freemius.php:
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
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"
|
395 |
|
396 |
-
#: includes/class-freemius.
|
397 |
-
#: includes/class-freemius.php:
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Error recibido del servidor:"
|
400 |
|
401 |
-
#: includes/class-freemius.php:
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
|
404 |
|
405 |
-
#: includes/class-freemius.
|
406 |
-
#: includes/class-freemius.
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Hmm"
|
410 |
|
411 |
-
#: includes/class-freemius.php:
|
412 |
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."
|
413 |
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."
|
414 |
|
415 |
-
#: includes/class-freemius.
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Período de Prueba Gratuito"
|
420 |
|
421 |
-
#: includes/class-freemius.php:
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
|
424 |
|
425 |
-
#: includes/class-freemius.
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Contacta aquí con nosotros"
|
428 |
|
429 |
-
#: includes/class-freemius.php:
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Tu plan se actualizó con éxito."
|
432 |
|
433 |
-
#: includes/class-freemius.php:
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Tu plan se cambió correctamente a %s."
|
436 |
|
437 |
-
#: includes/class-freemius.php:
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
|
440 |
|
441 |
-
#: includes/class-freemius.php:
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
444 |
|
445 |
-
#: includes/class-freemius.php:
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
|
448 |
|
449 |
-
#: includes/class-freemius.php:
|
450 |
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."
|
451 |
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."
|
452 |
|
453 |
-
#: includes/class-freemius.php:
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
|
456 |
|
457 |
-
#: includes/class-freemius.php:
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
460 |
|
461 |
-
#: includes/class-freemius.php:
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Parece que la licencia no se pudo activar."
|
464 |
|
465 |
-
#: includes/class-freemius.php:
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Tu licencia fue activada correctamente."
|
468 |
|
469 |
-
#: includes/class-freemius.php:
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
|
472 |
|
473 |
-
#: includes/class-freemius.php:
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Parece que la desactivación de licencia ha fallado."
|
476 |
|
477 |
-
#: includes/class-freemius.php:
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
|
480 |
|
481 |
-
#: includes/class-freemius.php:
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K"
|
484 |
|
485 |
-
#: includes/class-freemius.php:
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
|
488 |
|
489 |
-
#: includes/class-freemius.php:
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
|
492 |
|
493 |
-
#: includes/class-freemius.php:
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Estás ejecutando %s en modo de prueba."
|
496 |
|
497 |
-
#: includes/class-freemius.php:
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Ya utilizaste un período de prueba antes."
|
500 |
|
501 |
-
#: includes/class-freemius.php:
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
|
504 |
|
505 |
-
#: includes/class-freemius.php:
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "El plan %s no admite un período de prueba."
|
508 |
|
509 |
-
#: includes/class-freemius.php:
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Ninguno de los planes de %s soportan un período de prueba."
|
512 |
|
513 |
-
#: includes/class-freemius.php:
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
|
516 |
|
517 |
-
#: includes/class-freemius.php:
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
|
520 |
|
521 |
-
#: includes/class-freemius.php:
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
|
524 |
|
525 |
-
#: includes/class-freemius.php:
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "La versión %s se ha lanzado."
|
528 |
|
529 |
-
#: includes/class-freemius.php:
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Por favor descarga %s."
|
532 |
|
533 |
-
#: includes/class-freemius.php:
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "la última versión %s aquí"
|
536 |
|
537 |
-
#: includes/class-freemius.php:
|
538 |
msgid "New"
|
539 |
msgstr "Nuevo"
|
540 |
|
541 |
-
#: includes/class-freemius.php:
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Parece que tienes la última versión."
|
544 |
|
545 |
-
#: includes/class-freemius.php:
|
546 |
msgid "You are all good!"
|
547 |
msgstr "¡Está todo listo!"
|
548 |
|
549 |
-
#: includes/class-freemius.php:
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
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."
|
552 |
|
553 |
-
#: includes/class-freemius.php:
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Sitio dado de alta correctamente."
|
556 |
|
557 |
-
#: includes/class-freemius.
|
558 |
msgid "Awesome"
|
559 |
msgstr "Increíble"
|
560 |
|
561 |
-
#: includes/class-freemius.
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
|
564 |
|
565 |
-
#: includes/class-freemius.php:
|
566 |
msgid "Thank you!"
|
567 |
msgstr "¡Gracias!"
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
|
572 |
|
573 |
-
#: includes/class-freemius.php:
|
574 |
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."
|
575 |
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."
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%s es el nuevo dueño de la cuenta."
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Felicidades"
|
589 |
|
590 |
-
#: includes/class-freemius.php:
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
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."
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
|
597 |
|
598 |
-
#: includes/class-freemius.php:
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Cambiar propietario"
|
601 |
|
602 |
-
#: includes/class-freemius.php:
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
|
605 |
|
606 |
-
#: includes/class-freemius.php:
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Por favor, dinos tu nombre completo."
|
609 |
|
610 |
-
#: includes/class-freemius.php:
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Tu nombre fue actualizado correctamente."
|
613 |
|
614 |
-
#: includes/class-freemius.php:
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Has actualizado correctamente tu %s."
|
617 |
|
618 |
-
#: includes/class-freemius.php:
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
|
621 |
|
622 |
-
#: includes/class-freemius.php:
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Atención"
|
626 |
|
627 |
-
#: includes/class-freemius.php:
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Hey"
|
631 |
|
632 |
-
#: includes/class-freemius.php:
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
|
635 |
|
636 |
-
#: includes/class-freemius.php:
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
|
639 |
|
640 |
-
#: includes/class-freemius.php:
|
641 |
msgid "No credit card required"
|
642 |
msgstr "No se necesita tarjeta de crédito"
|
643 |
|
644 |
-
#: includes/class-freemius.
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Comenzar el período de prueba gratuito"
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
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!"
|
651 |
msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Learn more"
|
655 |
msgstr "Saber más"
|
656 |
|
657 |
-
#: includes/class-freemius.
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Activar licencia"
|
663 |
|
664 |
-
#: includes/class-freemius.
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Cambiar licencia"
|
668 |
|
669 |
-
#: includes/class-freemius.
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Darse de baja"
|
672 |
|
673 |
-
#: includes/class-freemius.
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Inscribirse"
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "Activate %s features"
|
685 |
msgstr "Activar características %s"
|
686 |
|
687 |
-
#: includes/class-freemius.php:
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Por favor, sigue estos pasos para completar la actualización"
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Descargar la última versión %s"
|
694 |
|
695 |
-
#: includes/class-freemius.php:
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Cargar y activar la versión descargada"
|
698 |
|
699 |
-
#: includes/class-freemius.php:
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "¿Cómo subirlo y activarlo?"
|
702 |
|
703 |
-
#: includes/class-freemius.php:
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
|
706 |
|
707 |
-
#: includes/class-freemius.php:
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
|
710 |
|
711 |
-
#: includes/class-freemius.
|
712 |
-
#: includes/class-fs-plugin-updater.
|
713 |
-
#: includes/class-fs-plugin-updater.php:
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "Id de módulo no válido."
|
716 |
|
717 |
-
#: includes/class-freemius.
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Versión premium ya activa."
|
720 |
|
721 |
-
#: includes/class-freemius.php:
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "No tienes una licencia válida para acceder a la versión premium."
|
724 |
|
725 |
-
#: includes/class-freemius.php:
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
|
728 |
|
729 |
-
#: includes/class-freemius.
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "Versión del complemento premium ya instalada."
|
732 |
|
733 |
-
#: includes/class-freemius.php:
|
734 |
msgid "View paid features"
|
735 |
msgstr "Ver las funciones de pago"
|
736 |
|
737 |
-
#: includes/class-freemius.php:
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
|
740 |
|
741 |
-
#: includes/class-freemius.php:
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "¡Muchas gracias por utilizar %s!"
|
744 |
|
745 |
-
#: includes/class-freemius.php:
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
|
748 |
|
749 |
-
#: includes/class-freemius.php:
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "¡Muchas gracias por utilizar nuestros productos!"
|
752 |
|
753 |
-
#: includes/class-freemius.php:
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
|
756 |
|
757 |
-
#: includes/class-freemius.php:
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s y sus complementos"
|
760 |
|
761 |
-
#: includes/class-freemius.php:
|
762 |
msgid "Products"
|
763 |
msgstr "Productos"
|
764 |
|
765 |
-
#: includes/class-freemius.
|
766 |
msgid "Yes"
|
767 |
msgstr "Si"
|
768 |
|
769 |
-
#: includes/class-freemius.
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
772 |
|
773 |
-
#: includes/class-freemius.
|
774 |
msgid "No"
|
775 |
msgstr "No"
|
776 |
|
777 |
-
#: includes/class-freemius.
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
780 |
|
781 |
-
#: includes/class-freemius.php:
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
|
784 |
|
785 |
-
#: includes/class-freemius.
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
|
788 |
|
789 |
-
#: includes/class-freemius.php:
|
790 |
msgid "License key is empty."
|
791 |
msgstr "La clave de licencia está vacía."
|
792 |
|
@@ -808,19 +808,19 @@ msgstr "Hay una %s de %s disponible."
|
|
808 |
msgid "new version"
|
809 |
msgstr "nueva versión"
|
810 |
|
811 |
-
#: includes/class-fs-plugin-updater.php:
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
msgstr "Aviso importante de actualización:"
|
814 |
|
815 |
-
#: includes/class-fs-plugin-updater.php:
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Instalando plugin: %s"
|
818 |
|
819 |
-
#: includes/class-fs-plugin-updater.php:
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
|
822 |
|
823 |
-
#: includes/class-fs-plugin-updater.php:
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
|
826 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Carlos Longarela <carlos@longarela.eu>, 2017-2018
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
+
#: includes/class-freemius.php:1688
|
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:1690
|
29 |
msgid "Error"
|
30 |
msgstr "Error"
|
31 |
|
32 |
+
#: includes/class-freemius.php:2011
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "He encontrado un %s mejor"
|
35 |
|
36 |
+
#: includes/class-freemius.php:2013
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "¿Cuál es el nombre de %s?"
|
39 |
|
40 |
+
#: includes/class-freemius.php:2019
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "Es una %stemporal . Sólo estoy depurando un problema"
|
43 |
|
44 |
+
#: includes/class-freemius.php:2021
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Desactivación"
|
47 |
|
48 |
+
#: includes/class-freemius.php:2022
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Cambiar tema"
|
51 |
|
52 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
53 |
msgid "Other"
|
54 |
msgstr "Otra"
|
55 |
|
56 |
+
#: includes/class-freemius.php:2039
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Ya no necesito el %s"
|
59 |
|
60 |
+
#: includes/class-freemius.php:2046
|
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:2052
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s ha roto mi sitio"
|
67 |
|
68 |
+
#: includes/class-freemius.php:2059
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s de repente ha dejado de funcionar"
|
71 |
|
72 |
+
#: includes/class-freemius.php:2069
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "No puedo pagarlo durante más tiempo"
|
75 |
|
76 |
+
#: includes/class-freemius.php:2071
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
msgstr "¿Con qué precio te sentirías cómodo pagando?"
|
79 |
|
80 |
+
#: includes/class-freemius.php:2077
|
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:2098
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "El %s no funcionaba"
|
87 |
|
88 |
+
#: includes/class-freemius.php:2108
|
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:2116
|
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:2118
|
97 |
msgid "What feature?"
|
98 |
msgstr "¿Qué característica?"
|
99 |
|
100 |
+
#: includes/class-freemius.php:2122
|
101 |
msgid "The %s is not working"
|
102 |
msgstr " El %s no funciona"
|
103 |
|
104 |
+
#: includes/class-freemius.php:2124
|
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:2128
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "No es lo que estaba buscando"
|
111 |
|
112 |
+
#: includes/class-freemius.php:2130
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "¿Que has estado buscando?"
|
115 |
|
116 |
+
#: includes/class-freemius.php:2134
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr " El %s no funciona como esperaba"
|
119 |
|
120 |
+
#: includes/class-freemius.php:2136
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "¿Qué esperas?"
|
123 |
|
124 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Debug Freemius"
|
127 |
|
128 |
+
#: includes/class-freemius.php:3670
|
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:3672
|
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:3679
|
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:3784
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Vamos, adelante"
|
143 |
|
144 |
+
#: includes/class-freemius.php:3789
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "No - sólo desactivar"
|
147 |
|
148 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
149 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
150 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
151 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
152 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
153 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
154 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Oops"
|
158 |
|
159 |
+
#: includes/class-freemius.php:3903
|
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:4340
|
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:4341
|
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.php4487, includes/class-freemius.php4512,
|
174 |
+
#: includes/class-freemius.php:17953
|
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:5130
|
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.php5142, includes/class-freemius.php:7004
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "W00t"
|
186 |
|
187 |
+
#: includes/class-freemius.php:5157
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Tienes una licencia %s."
|
190 |
|
191 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
192 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
193 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
194 |
+
#: includes/class-freemius.php:17707
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Vaya"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5425
|
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:5429
|
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.php5438, templates/add-ons.php103,
|
208 |
#: templates/account/partials/addon.php:288
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Más información sobre %s"
|
211 |
|
212 |
+
#: includes/class-freemius.php:5439
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Comprar licencia"
|
215 |
|
216 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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:6376
|
221 |
msgid "start the trial"
|
222 |
msgstr "comenzar el período de prueba"
|
223 |
|
224 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
225 |
msgid "complete the install"
|
226 |
msgstr "completar la instalación"
|
227 |
|
228 |
+
#: includes/class-freemius.php:6490
|
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:6493
|
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:6571
|
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:6575
|
242 |
msgid "Opt in to make \"%s\" better!"
|
243 |
msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
|
244 |
|
245 |
+
#: includes/class-freemius.php:7003
|
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.php8925, includes/class-fs-plugin-updater.php886,
|
250 |
+
#: includes/class-fs-plugin-updater.php1081,
|
251 |
+
#: includes/class-fs-plugin-updater.php1088,
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Complemento"
|
255 |
|
256 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Plugin"
|
260 |
|
261 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Tema"
|
265 |
|
266 |
+
#: includes/class-freemius.php:11412
|
267 |
msgid "Invalid site details collection."
|
268 |
msgstr "Colección de detalles del sitio no válida."
|
269 |
|
270 |
+
#: includes/class-freemius.php:11532
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
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?"
|
273 |
|
274 |
+
#: includes/class-freemius.php:11534
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
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?"
|
277 |
|
278 |
+
#: includes/class-freemius.php:11808
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "La cuenta está pendiente de activación"
|
281 |
|
282 |
+
#: includes/class-freemius.php11920,
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Compra una licencia ahora"
|
286 |
|
287 |
+
#: includes/class-freemius.php11932,
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renueva tu licencia ahora"
|
291 |
|
292 |
+
#: includes/class-freemius.php:11936
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
|
295 |
|
296 |
+
#: includes/class-freemius.php:14319
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "%s activación se completó con éxito."
|
299 |
|
300 |
+
#: includes/class-freemius.php:14333
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Tu cuenta se ha activado correctamente con el plan %s."
|
303 |
|
304 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Tu versión de prueba se ha iniciado con éxito."
|
307 |
|
308 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
309 |
+
#: includes/class-freemius.php:15028
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "No se puede activar %s."
|
312 |
|
313 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
314 |
+
#: includes/class-freemius.php:15029
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Por favor contáctanos con el siguiente mensaje:"
|
317 |
|
318 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Actualizar"
|
321 |
|
322 |
+
#: includes/class-freemius.php:15384
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Comenzar el período de prueba"
|
325 |
|
326 |
+
#: includes/class-freemius.php:15386
|
327 |
msgid "Pricing"
|
328 |
msgstr "Precio"
|
329 |
|
330 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Afiliación"
|
333 |
|
334 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Cuenta"
|
338 |
|
339 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Contáctanos"
|
343 |
|
344 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
345 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Complementos"
|
349 |
|
350 |
+
#: includes/class-freemius.php:15541
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
+
#: includes/class-freemius.php:15541
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Precio"
|
364 |
|
365 |
+
#: includes/class-freemius.php15756,
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Foro de soporte"
|
369 |
|
370 |
+
#: includes/class-freemius.php:16542
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
|
373 |
|
374 |
+
#: includes/class-freemius.php:16543
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Bien hecho"
|
378 |
|
379 |
+
#: includes/class-freemius.php:17168
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Tu complemento %s del plan se actualizó con éxito."
|
382 |
|
383 |
+
#: includes/class-freemius.php:17170
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "El complemento %s ha sido comprado correctamente."
|
386 |
|
387 |
+
#: includes/class-freemius.php:17173
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Descargar la última versión"
|
390 |
|
391 |
+
#: includes/class-freemius.php:17259
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
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"
|
395 |
|
396 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
397 |
+
#: includes/class-freemius.php:17755
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Error recibido del servidor:"
|
400 |
|
401 |
+
#: includes/class-freemius.php:17272
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo."
|
404 |
|
405 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
406 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Hmm"
|
410 |
|
411 |
+
#: includes/class-freemius.php:17467
|
412 |
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."
|
413 |
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."
|
414 |
|
415 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Período de Prueba Gratuito"
|
420 |
|
421 |
+
#: includes/class-freemius.php:17473
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
|
424 |
|
425 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Contacta aquí con nosotros"
|
428 |
|
429 |
+
#: includes/class-freemius.php:17487
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Tu plan se actualizó con éxito."
|
432 |
|
433 |
+
#: includes/class-freemius.php:17505
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Tu plan se cambió correctamente a %s."
|
436 |
|
437 |
+
#: includes/class-freemius.php:17521
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
|
440 |
|
441 |
+
#: includes/class-freemius.php:17523
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
444 |
|
445 |
+
#: includes/class-freemius.php:17531
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
|
448 |
|
449 |
+
#: includes/class-freemius.php:17544
|
450 |
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."
|
451 |
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."
|
452 |
|
453 |
+
#: includes/class-freemius.php:17567
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
|
456 |
|
457 |
+
#: includes/class-freemius.php:17569
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
|
460 |
|
461 |
+
#: includes/class-freemius.php:17674
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Parece que la licencia no se pudo activar."
|
464 |
|
465 |
+
#: includes/class-freemius.php:17704
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Tu licencia fue activada correctamente."
|
468 |
|
469 |
+
#: includes/class-freemius.php:17730
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
|
472 |
|
473 |
+
#: includes/class-freemius.php:17754
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Parece que la desactivación de licencia ha fallado."
|
476 |
|
477 |
+
#: includes/class-freemius.php:17782
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17783
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K"
|
484 |
|
485 |
+
#: includes/class-freemius.php:17836
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
|
488 |
|
489 |
+
#: includes/class-freemius.php:17845
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
|
492 |
|
493 |
+
#: includes/class-freemius.php:17887
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Estás ejecutando %s en modo de prueba."
|
496 |
|
497 |
+
#: includes/class-freemius.php:17898
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Ya utilizaste un período de prueba antes."
|
500 |
|
501 |
+
#: includes/class-freemius.php:17912
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
|
504 |
|
505 |
+
#: includes/class-freemius.php:17923
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "El plan %s no admite un período de prueba."
|
508 |
|
509 |
+
#: includes/class-freemius.php:17934
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Ninguno de los planes de %s soportan un período de prueba."
|
512 |
|
513 |
+
#: includes/class-freemius.php:17984
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
|
516 |
|
517 |
+
#: includes/class-freemius.php:18020
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
|
520 |
|
521 |
+
#: includes/class-freemius.php:18039
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
|
524 |
|
525 |
+
#: includes/class-freemius.php:18346
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "La versión %s se ha lanzado."
|
528 |
|
529 |
+
#: includes/class-freemius.php:18346
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Por favor descarga %s."
|
532 |
|
533 |
+
#: includes/class-freemius.php:18353
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "la última versión %s aquí"
|
536 |
|
537 |
+
#: includes/class-freemius.php:18358
|
538 |
msgid "New"
|
539 |
msgstr "Nuevo"
|
540 |
|
541 |
+
#: includes/class-freemius.php:18363
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Parece que tienes la última versión."
|
544 |
|
545 |
+
#: includes/class-freemius.php:18364
|
546 |
msgid "You are all good!"
|
547 |
msgstr "¡Está todo listo!"
|
548 |
|
549 |
+
#: includes/class-freemius.php:18632
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
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."
|
552 |
|
553 |
+
#: includes/class-freemius.php:18769
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Sitio dado de alta correctamente."
|
556 |
|
557 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
558 |
msgid "Awesome"
|
559 |
msgstr "Increíble"
|
560 |
|
561 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
|
564 |
|
565 |
+
#: includes/class-freemius.php:18787
|
566 |
msgid "Thank you!"
|
567 |
msgstr "¡Gracias!"
|
568 |
|
569 |
+
#: includes/class-freemius.php:18794
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
|
572 |
|
573 |
+
#: includes/class-freemius.php:18923
|
574 |
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."
|
575 |
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."
|
576 |
|
577 |
+
#: includes/class-freemius.php:18929
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
|
580 |
|
581 |
+
#: includes/class-freemius.php:18934
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%s es el nuevo dueño de la cuenta."
|
584 |
|
585 |
+
#: includes/class-freemius.php:18936
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Felicidades"
|
589 |
|
590 |
+
#: includes/class-freemius.php:18956
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
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."
|
593 |
|
594 |
+
#: includes/class-freemius.php:18957
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
|
597 |
|
598 |
+
#: includes/class-freemius.php:18964
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Cambiar propietario"
|
601 |
|
602 |
+
#: includes/class-freemius.php:18972
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
|
605 |
|
606 |
+
#: includes/class-freemius.php:18984
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Por favor, dinos tu nombre completo."
|
609 |
|
610 |
+
#: includes/class-freemius.php:18989
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Tu nombre fue actualizado correctamente."
|
613 |
|
614 |
+
#: includes/class-freemius.php:19050
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Has actualizado correctamente tu %s."
|
617 |
|
618 |
+
#: includes/class-freemius.php:19190
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
|
621 |
|
622 |
+
#: includes/class-freemius.php:19191
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Atención"
|
626 |
|
627 |
+
#: includes/class-freemius.php:19621
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Hey"
|
631 |
|
632 |
+
#: includes/class-freemius.php:19621
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
|
635 |
|
636 |
+
#: includes/class-freemius.php:19629
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
|
639 |
|
640 |
+
#: includes/class-freemius.php:19630
|
641 |
msgid "No credit card required"
|
642 |
msgstr "No se necesita tarjeta de crédito"
|
643 |
|
644 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Comenzar el período de prueba gratuito"
|
648 |
|
649 |
+
#: includes/class-freemius.php:19714
|
650 |
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!"
|
651 |
msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
|
652 |
|
653 |
+
#: includes/class-freemius.php:19723
|
654 |
msgid "Learn more"
|
655 |
msgstr "Saber más"
|
656 |
|
657 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Activar licencia"
|
663 |
|
664 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Cambiar licencia"
|
668 |
|
669 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Darse de baja"
|
672 |
|
673 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Inscribirse"
|
678 |
|
679 |
+
#: includes/class-freemius.php:20187
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s"
|
682 |
|
683 |
+
#: includes/class-freemius.php:20195
|
684 |
msgid "Activate %s features"
|
685 |
msgstr "Activar características %s"
|
686 |
|
687 |
+
#: includes/class-freemius.php:20208
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Por favor, sigue estos pasos para completar la actualización"
|
690 |
|
691 |
+
#: includes/class-freemius.php:20212
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Descargar la última versión %s"
|
694 |
|
695 |
+
#: includes/class-freemius.php:20216
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Cargar y activar la versión descargada"
|
698 |
|
699 |
+
#: includes/class-freemius.php:20218
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "¿Cómo subirlo y activarlo?"
|
702 |
|
703 |
+
#: includes/class-freemius.php:20352
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
|
706 |
|
707 |
+
#: includes/class-freemius.php:20513
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
|
710 |
|
711 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
712 |
+
#: includes/class-fs-plugin-updater.php1060,
|
713 |
+
#: includes/class-fs-plugin-updater.php:1074
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "Id de módulo no válido."
|
716 |
|
717 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Versión premium ya activa."
|
720 |
|
721 |
+
#: includes/class-freemius.php:20539
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "No tienes una licencia válida para acceder a la versión premium."
|
724 |
|
725 |
+
#: includes/class-freemius.php:20546
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
|
728 |
|
729 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "Versión del complemento premium ya instalada."
|
732 |
|
733 |
+
#: includes/class-freemius.php:20909
|
734 |
msgid "View paid features"
|
735 |
msgstr "Ver las funciones de pago"
|
736 |
|
737 |
+
#: includes/class-freemius.php:21229
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
|
740 |
|
741 |
+
#: includes/class-freemius.php:21230
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "¡Muchas gracias por utilizar %s!"
|
744 |
|
745 |
+
#: includes/class-freemius.php:21236
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
|
748 |
|
749 |
+
#: includes/class-freemius.php:21240
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "¡Muchas gracias por utilizar nuestros productos!"
|
752 |
|
753 |
+
#: includes/class-freemius.php:21241
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
|
756 |
|
757 |
+
#: includes/class-freemius.php:21260
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s y sus complementos"
|
760 |
|
761 |
+
#: includes/class-freemius.php:21269
|
762 |
msgid "Products"
|
763 |
msgstr "Productos"
|
764 |
|
765 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
766 |
msgid "Yes"
|
767 |
msgstr "Si"
|
768 |
|
769 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
772 |
|
773 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
774 |
msgid "No"
|
775 |
msgstr "No"
|
776 |
|
777 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
|
780 |
|
781 |
+
#: includes/class-freemius.php:21290
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂"
|
784 |
|
785 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
|
788 |
|
789 |
+
#: includes/class-freemius.php:21574
|
790 |
msgid "License key is empty."
|
791 |
msgstr "La clave de licencia está vacía."
|
792 |
|
808 |
msgid "new version"
|
809 |
msgstr "nueva versión"
|
810 |
|
811 |
+
#: includes/class-fs-plugin-updater.php:305
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
msgstr "Aviso importante de actualización:"
|
814 |
|
815 |
+
#: includes/class-fs-plugin-updater.php:1125
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Instalando plugin: %s"
|
818 |
|
819 |
+
#: includes/class-fs-plugin-updater.php:1166
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
|
822 |
|
823 |
+
#: includes/class-fs-plugin-updater.php:1348
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
|
826 |
|
freemius/languages/freemius-fr_FR.mo
CHANGED
Binary file
|
freemius/languages/freemius-fr_FR.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Boris Colombier <transifex.com@wba.fr>, 2018
|
@@ -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: 2018-11-
|
11 |
"Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
|
12 |
"Language: fr_FR\n"
|
13 |
"Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
|
@@ -21,772 +21,772 @@ 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 "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
|
27 |
|
28 |
-
#: includes/class-freemius.php:
|
29 |
msgid "Error"
|
30 |
msgstr "Erreur"
|
31 |
|
32 |
-
#: includes/class-freemius.php:
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "J'ai trouvé un meilleur %s"
|
35 |
|
36 |
-
#: includes/class-freemius.php:
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "Quel est le nom du %s ?"
|
39 |
|
40 |
-
#: includes/class-freemius.php:
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "C'est une %s temporaire. Je corrige un problème."
|
43 |
|
44 |
-
#: includes/class-freemius.php:
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Désactivation"
|
47 |
|
48 |
-
#: includes/class-freemius.php:
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Changement de Thème"
|
51 |
|
52 |
-
#: includes/class-freemius.
|
53 |
msgid "Other"
|
54 |
msgstr "Autre"
|
55 |
|
56 |
-
#: includes/class-freemius.php:
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Je n'ai plus besoin du %s"
|
59 |
|
60 |
-
#: includes/class-freemius.php:
|
61 |
msgid "I only needed the %s for a short period"
|
62 |
msgstr "Je n'ai besoin de %s que pour une courte période"
|
63 |
|
64 |
-
#: includes/class-freemius.php:
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "Le %s a cassé mon site"
|
67 |
|
68 |
-
#: includes/class-freemius.php:
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "Le %s a soudainement arrêté de fonctionner"
|
71 |
|
72 |
-
#: includes/class-freemius.php:
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "Je ne peux plus payer pour ça"
|
75 |
|
76 |
-
#: includes/class-freemius.php:
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
msgstr "Quel prix seriez-vous prêt à payer ?"
|
79 |
|
80 |
-
#: includes/class-freemius.php:
|
81 |
msgid "I don't like to share my information with you"
|
82 |
msgstr "Je ne veux pas partager mes informations avec vous"
|
83 |
|
84 |
-
#: includes/class-freemius.php:
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "Le %s n'a pas fonctionné"
|
87 |
|
88 |
-
#: includes/class-freemius.php:
|
89 |
msgid "I couldn't understand how to make it work"
|
90 |
msgstr "Je ne comprends pas comment le faire fonctionner"
|
91 |
|
92 |
-
#: includes/class-freemius.php:
|
93 |
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
|
95 |
|
96 |
-
#: includes/class-freemius.php:
|
97 |
msgid "What feature?"
|
98 |
msgstr "Quelle fonctionnalité ?"
|
99 |
|
100 |
-
#: includes/class-freemius.php:
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "Le %s ne fonctionne pas"
|
103 |
|
104 |
-
#: includes/class-freemius.php:
|
105 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
|
107 |
|
108 |
-
#: includes/class-freemius.php:
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "Ce n'est pas ce que je recherche"
|
111 |
|
112 |
-
#: includes/class-freemius.php:
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "Que recherchez-vous ?"
|
115 |
|
116 |
-
#: includes/class-freemius.php:
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "Le %s n'a pas fonctionné comme prévu"
|
119 |
|
120 |
-
#: includes/class-freemius.php:
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "À quoi vous attendiez-vous ?"
|
123 |
|
124 |
-
#: includes/class-freemius.
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Débuggage 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 "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
|
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 "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
|
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 "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
|
139 |
|
140 |
-
#: includes/class-freemius.php:
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Oui - allez-y"
|
143 |
|
144 |
-
#: includes/class-freemius.php:
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "Non - désactivation seulement"
|
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 "Oups"
|
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 "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
|
162 |
|
163 |
-
#: includes/class-freemius.php:
|
164 |
msgctxt "addonX cannot run without pluginY"
|
165 |
msgid "%s cannot run without %s."
|
166 |
msgstr "%s ne peut pas fonctionner sans %s."
|
167 |
|
168 |
-
#: includes/class-freemius.php:
|
169 |
msgctxt "addonX cannot run..."
|
170 |
msgid "%s cannot run without the plugin."
|
171 |
msgstr "%s ne peut pas fonctionner sans le 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 "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
|
177 |
|
178 |
-
#: includes/class-freemius.php:
|
179 |
msgid "Premium %s version was successfully activated."
|
180 |
msgstr "La version premium de %s a été activée avec succès."
|
181 |
|
182 |
-
#: includes/class-freemius.
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "Génial"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Vous avez une license pour %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 "Youpi"
|
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 période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
|
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 "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
|
206 |
|
207 |
-
#: includes/class-freemius.
|
208 |
#: templates/account/partials/addon.php:288
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Plus d'informations à propos de %s"
|
211 |
|
212 |
-
#: includes/class-freemius.php:
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Acheter une licence"
|
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 "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
|
219 |
|
220 |
-
#: includes/class-freemius.php:
|
221 |
msgid "start the trial"
|
222 |
msgstr "commencer la période d'essai"
|
223 |
|
224 |
-
#: includes/class-freemius.
|
225 |
msgid "complete the install"
|
226 |
msgstr "compléter l'installation"
|
227 |
|
228 |
-
#: includes/class-freemius.php:
|
229 |
msgid "You are just one step away - %s"
|
230 |
msgstr "Il ne reste qu'une étape - %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 "Compléter \"%s\" Activer Maintenant"
|
236 |
|
237 |
-
#: includes/class-freemius.php:
|
238 |
msgid "We made a few tweaks to the %s, %s"
|
239 |
msgstr "Nous avons fait quelques modifications au %s, %s"
|
240 |
|
241 |
-
#: includes/class-freemius.php:
|
242 |
msgid "Opt in to make \"%s\" better!"
|
243 |
msgstr "Inscrivez-vous pour améliorer \"%s\" !"
|
244 |
|
245 |
-
#: includes/class-freemius.php:
|
246 |
msgid "The upgrade of %s was successfully completed."
|
247 |
msgstr "La mise à jour du %s s'est terminée avec succès "
|
248 |
|
249 |
-
#: includes/class-freemius.
|
250 |
-
#: includes/class-fs-plugin-updater.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Add-On"
|
255 |
|
256 |
-
#: includes/class-freemius.
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Plugin"
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Thème"
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
267 |
msgid "Invalid site details collection."
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#: includes/class-freemius.php:
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
|
273 |
|
274 |
-
#: includes/class-freemius.php:
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
|
277 |
|
278 |
-
#: includes/class-freemius.php:
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Compte en cours d'activation."
|
281 |
|
282 |
-
#: includes/class-freemius.
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Acheter une licence maintenant"
|
286 |
|
287 |
-
#: includes/class-freemius.
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renouvelez votre licence maintenant"
|
291 |
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
-
msgstr "%s
|
295 |
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "L'activation de %s s'est terminée avec succès."
|
299 |
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Votre compte a été activé avec succès avec la formule %s."
|
303 |
|
304 |
-
#: includes/class-freemius.
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Votre période d'essai a bien démarré."
|
307 |
|
308 |
-
#: includes/class-freemius.
|
309 |
-
#: includes/class-freemius.php:
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "Impossible d'activer %s."
|
312 |
|
313 |
-
#: includes/class-freemius.
|
314 |
-
#: includes/class-freemius.php:
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Merci de nous contacter avec le message suivant :"
|
317 |
|
318 |
-
#: includes/class-freemius.
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Mise à jour"
|
321 |
|
322 |
-
#: includes/class-freemius.php:
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Essai gratuit"
|
325 |
|
326 |
-
#: includes/class-freemius.php:
|
327 |
msgid "Pricing"
|
328 |
msgstr "Tarifs"
|
329 |
|
330 |
-
#: includes/class-freemius.
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Affiliation"
|
333 |
|
334 |
-
#: includes/class-freemius.
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Compte"
|
338 |
|
339 |
-
#: includes/class-freemius.
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Contactez Nous"
|
343 |
|
344 |
-
#: includes/class-freemius.
|
345 |
-
#: includes/class-freemius.
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Add-Ons"
|
349 |
|
350 |
-
#: includes/class-freemius.php:
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
-
#: includes/class-freemius.php:
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
-
#: includes/class-freemius.
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Tarifs"
|
364 |
|
365 |
-
#: includes/class-freemius.
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Forum de Support"
|
369 |
|
370 |
-
#: includes/class-freemius.php:
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
|
373 |
|
374 |
-
#: includes/class-freemius.php:
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Directement"
|
378 |
|
379 |
-
#: includes/class-freemius.php:
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Votre Add-on %s a bien été mis à jour."
|
382 |
|
383 |
-
#: includes/class-freemius.php:
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "L'Add-on %s a bien été acheté."
|
386 |
|
387 |
-
#: includes/class-freemius.php:
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Télécharger la dernière version"
|
390 |
|
391 |
-
#: includes/class-freemius.php:
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
|
395 |
|
396 |
-
#: includes/class-freemius.
|
397 |
-
#: includes/class-freemius.php:
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Une erreur a été reçu depuis le serveur :"
|
400 |
|
401 |
-
#: includes/class-freemius.php:
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
|
404 |
|
405 |
-
#: includes/class-freemius.
|
406 |
-
#: includes/class-freemius.
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Hmm"
|
410 |
|
411 |
-
#: includes/class-freemius.php:
|
412 |
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."
|
413 |
msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
|
414 |
|
415 |
-
#: includes/class-freemius.
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Période d'essai"
|
420 |
|
421 |
-
#: includes/class-freemius.php:
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
|
424 |
|
425 |
-
#: includes/class-freemius.
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Merci de nous contacter ici"
|
428 |
|
429 |
-
#: includes/class-freemius.php:
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Votre formule a bien été mise à jour."
|
432 |
|
433 |
-
#: includes/class-freemius.php:
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Votre formule a bien été modifié vers %s. "
|
436 |
|
437 |
-
#: includes/class-freemius.php:
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
|
440 |
|
441 |
-
#: includes/class-freemius.php:
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
|
444 |
|
445 |
-
#: includes/class-freemius.php:
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
|
448 |
|
449 |
-
#: includes/class-freemius.php:
|
450 |
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."
|
451 |
msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
|
452 |
|
453 |
-
#: includes/class-freemius.php:
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
|
456 |
|
457 |
-
#: includes/class-freemius.php:
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
|
460 |
|
461 |
-
#: includes/class-freemius.php:
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Il semble que la licence ne puisse être activée."
|
464 |
|
465 |
-
#: includes/class-freemius.php:
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Votre licence a bien été activée."
|
468 |
|
469 |
-
#: includes/class-freemius.php:
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Il semble que votre site n'ait pas de licence active."
|
472 |
|
473 |
-
#: includes/class-freemius.php:
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Il semble que la désactivation de la licence a échoué."
|
476 |
|
477 |
-
#: includes/class-freemius.php:
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
|
480 |
|
481 |
-
#: includes/class-freemius.php:
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K"
|
484 |
|
485 |
-
#: includes/class-freemius.php:
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
|
488 |
|
489 |
-
#: includes/class-freemius.php:
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
-
msgstr "
|
492 |
|
493 |
-
#: includes/class-freemius.php:
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Vous utilisez déjà le %s en période d'essai. "
|
496 |
|
497 |
-
#: includes/class-freemius.php:
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Vous avez déjà utilisé la période d'essai."
|
500 |
|
501 |
-
#: includes/class-freemius.php:
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
|
504 |
|
505 |
-
#: includes/class-freemius.php:
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "La formule %s ne propose pas de période d'essai."
|
508 |
|
509 |
-
#: includes/class-freemius.php:
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Aucune formule du %s ne propose de période d'essai."
|
512 |
|
513 |
-
#: includes/class-freemius.php:
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
|
516 |
|
517 |
-
#: includes/class-freemius.php:
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
|
520 |
|
521 |
-
#: includes/class-freemius.php:
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Votre période d'essai %s a bien été annulé."
|
524 |
|
525 |
-
#: includes/class-freemius.php:
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "La version %s vient d'être publiée."
|
528 |
|
529 |
-
#: includes/class-freemius.php:
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Merci de télécharger %s."
|
532 |
|
533 |
-
#: includes/class-freemius.php:
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "la dernière version de %s ici"
|
536 |
|
537 |
-
#: includes/class-freemius.php:
|
538 |
msgid "New"
|
539 |
msgstr "Nouveau"
|
540 |
|
541 |
-
#: includes/class-freemius.php:
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Il semble que vous ayez la dernière version."
|
544 |
|
545 |
-
#: includes/class-freemius.php:
|
546 |
msgid "You are all good!"
|
547 |
msgstr "Vous êtes tout bon !"
|
548 |
|
549 |
-
#: includes/class-freemius.php:
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
|
552 |
|
553 |
-
#: includes/class-freemius.php:
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Site ajouté avec succès."
|
556 |
|
557 |
-
#: includes/class-freemius.
|
558 |
msgid "Awesome"
|
559 |
msgstr "Formidable"
|
560 |
|
561 |
-
#: includes/class-freemius.
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
|
564 |
|
565 |
-
#: includes/class-freemius.php:
|
566 |
msgid "Thank you!"
|
567 |
msgstr "Merci !"
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
|
572 |
|
573 |
-
#: includes/class-freemius.php:
|
574 |
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."
|
575 |
msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%s est le nouveau propriétaire du compte."
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Félicitations"
|
589 |
|
590 |
-
#: includes/class-freemius.php:
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
|
597 |
|
598 |
-
#: includes/class-freemius.php:
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Changement De Propriétaire"
|
601 |
|
602 |
-
#: includes/class-freemius.php:
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
|
605 |
|
606 |
-
#: includes/class-freemius.php:
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Merci d'indiquer vos prénom et nom."
|
609 |
|
610 |
-
#: includes/class-freemius.php:
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Votre nom a été mis à jour."
|
613 |
|
614 |
-
#: includes/class-freemius.php:
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Votre %s a bien été mis à jour."
|
617 |
|
618 |
-
#: includes/class-freemius.php:
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
|
621 |
|
622 |
-
#: includes/class-freemius.php:
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Avertissement"
|
626 |
|
627 |
-
#: includes/class-freemius.php:
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Hey"
|
631 |
|
632 |
-
#: includes/class-freemius.php:
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
|
635 |
|
636 |
-
#: includes/class-freemius.php:
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
|
639 |
|
640 |
-
#: includes/class-freemius.php:
|
641 |
msgid "No credit card required"
|
642 |
msgstr "Pas besoin de carte bancaire"
|
643 |
|
644 |
-
#: includes/class-freemius.
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Commencer l'essai gratuit"
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
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!"
|
651 |
msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Learn more"
|
655 |
msgstr "En savoir plus"
|
656 |
|
657 |
-
#: includes/class-freemius.
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Activer la licence"
|
663 |
|
664 |
-
#: includes/class-freemius.
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Changer la licence"
|
668 |
|
669 |
-
#: includes/class-freemius.
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Désinscription"
|
672 |
|
673 |
-
#: includes/class-freemius.
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Inscription"
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "Activate %s features"
|
685 |
-
msgstr "
|
686 |
|
687 |
-
#: includes/class-freemius.php:
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Télécharger la dernière version %s"
|
694 |
|
695 |
-
#: includes/class-freemius.php:
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Téléverser et activer la version téléchargée"
|
698 |
|
699 |
-
#: includes/class-freemius.php:
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "Comment téléverser et activer ?"
|
702 |
|
703 |
-
#: includes/class-freemius.php:
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
|
706 |
|
707 |
-
#: includes/class-freemius.php:
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
|
710 |
|
711 |
-
#: includes/class-freemius.
|
712 |
-
#: includes/class-fs-plugin-updater.
|
713 |
-
#: includes/class-fs-plugin-updater.php:
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "ID du module non valide."
|
716 |
|
717 |
-
#: includes/class-freemius.
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Version premium déjà active."
|
720 |
|
721 |
-
#: includes/class-freemius.php:
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
|
724 |
|
725 |
-
#: includes/class-freemius.php:
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
|
728 |
|
729 |
-
#: includes/class-freemius.
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "La version premium de l'add-on est déjà installée."
|
732 |
|
733 |
-
#: includes/class-freemius.php:
|
734 |
msgid "View paid features"
|
735 |
msgstr "Voir les fonctionnalités payantes"
|
736 |
|
737 |
-
#: includes/class-freemius.php:
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
|
740 |
|
741 |
-
#: includes/class-freemius.php:
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "Merci beaucoup d'utiliser %s !"
|
744 |
|
745 |
-
#: includes/class-freemius.php:
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
|
748 |
|
749 |
-
#: includes/class-freemius.php:
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "Merci beaucoup d'utiliser nos produits !"
|
752 |
|
753 |
-
#: includes/class-freemius.php:
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
|
756 |
|
757 |
-
#: includes/class-freemius.php:
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s et ses add-ons"
|
760 |
|
761 |
-
#: includes/class-freemius.php:
|
762 |
msgid "Products"
|
763 |
msgstr "Produits"
|
764 |
|
765 |
-
#: includes/class-freemius.
|
766 |
msgid "Yes"
|
767 |
msgstr "Oui"
|
768 |
|
769 |
-
#: includes/class-freemius.
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
|
772 |
|
773 |
-
#: includes/class-freemius.
|
774 |
msgid "No"
|
775 |
msgstr "Non"
|
776 |
|
777 |
-
#: includes/class-freemius.
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
|
780 |
|
781 |
-
#: includes/class-freemius.php:
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
|
784 |
|
785 |
-
#: includes/class-freemius.
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
|
788 |
|
789 |
-
#: includes/class-freemius.php:
|
790 |
msgid "License key is empty."
|
791 |
msgstr "La clé de licence est vide."
|
792 |
|
@@ -798,29 +798,29 @@ msgstr "Renouvelez votre licence"
|
|
798 |
#: includes/class-fs-plugin-updater.php189,
|
799 |
#: templates/forms/premium-versions-upgrade-handler.php:58
|
800 |
msgid "Buy license"
|
801 |
-
msgstr "
|
802 |
|
803 |
#: includes/class-fs-plugin-updater.php:278
|
804 |
msgid "There is a %s of %s available."
|
805 |
-
msgstr "
|
806 |
|
807 |
#: includes/class-fs-plugin-updater.php:282
|
808 |
msgid "new version"
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#: includes/class-fs-plugin-updater.php:
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: includes/class-fs-plugin-updater.php:
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Installation du plugin : %s"
|
818 |
|
819 |
-
#: includes/class-fs-plugin-updater.php:
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
|
822 |
|
823 |
-
#: includes/class-fs-plugin-updater.php:
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
|
826 |
|
@@ -1125,13 +1125,13 @@ msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
|
|
1125 |
#: templates/account/partials/addon.php22,
|
1126 |
#: templates/account/partials/site.php:295
|
1127 |
msgid "Downgrading your plan"
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
#: templates/account.php82, templates/forms/subscription-cancellation.php97,
|
1131 |
#: templates/account/partials/addon.php23,
|
1132 |
#: templates/account/partials/site.php:296
|
1133 |
msgid "Cancelling the subscription"
|
1134 |
-
msgstr "
|
1135 |
|
1136 |
#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
|
1137 |
#. subscription'
|
@@ -1139,13 +1139,13 @@ msgstr "Cancelling the subscription"
|
|
1139 |
#: templates/account/partials/addon.php25,
|
1140 |
#: templates/account/partials/site.php:298
|
1141 |
msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1142 |
-
msgstr "%1s
|
1143 |
|
1144 |
#: templates/account.php85, templates/forms/subscription-cancellation.php100,
|
1145 |
#: templates/account/partials/addon.php26,
|
1146 |
#: templates/account/partials/site.php:299
|
1147 |
msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
#: templates/account.php86, templates/forms/subscription-cancellation.php106,
|
1151 |
#: templates/account/partials/addon.php:27
|
@@ -1156,7 +1156,7 @@ msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalit
|
|
1156 |
#: templates/account/partials/addon.php28,
|
1157 |
#: templates/account/partials/site.php:300
|
1158 |
msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
1159 |
-
msgstr "
|
1160 |
|
1161 |
#: templates/account.php88, templates/forms/subscription-cancellation.php102,
|
1162 |
#: templates/account/partials/addon.php29,
|
@@ -1388,22 +1388,22 @@ msgstr "Cacher"
|
|
1388 |
|
1389 |
#: templates/account.php:686
|
1390 |
msgid "Cancelling %s"
|
1391 |
-
msgstr "
|
1392 |
|
1393 |
#: templates/account.php686, templates/account.php703,
|
1394 |
#: templates/forms/subscription-cancellation.php27,
|
1395 |
#: templates/forms/deactivation/form.php:117
|
1396 |
msgid "trial"
|
1397 |
-
msgstr "
|
1398 |
|
1399 |
#: templates/account.php701, templates/forms/deactivation/form.php:134
|
1400 |
msgid "Cancelling %s..."
|
1401 |
-
msgstr "
|
1402 |
|
1403 |
#: templates/account.php704, templates/forms/subscription-cancellation.php28,
|
1404 |
#: templates/forms/deactivation/form.php:118
|
1405 |
msgid "subscription"
|
1406 |
-
msgstr "
|
1407 |
|
1408 |
#: templates/account.php:718
|
1409 |
msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
@@ -1605,7 +1605,7 @@ msgstr "Politique de confidentialité"
|
|
1605 |
|
1606 |
#: templates/connect.php:430
|
1607 |
msgid "License Agreement"
|
1608 |
-
msgstr "
|
1609 |
|
1610 |
#: templates/connect.php:430
|
1611 |
msgid "Terms of Service"
|
@@ -1671,7 +1671,7 @@ msgstr "Synchronisation des données depuis le serveur"
|
|
1671 |
|
1672 |
#: templates/debug.php:95
|
1673 |
msgid "Migrate Options to Network"
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
#: templates/debug.php:100
|
1677 |
msgid "Load DB Option"
|
@@ -1752,7 +1752,7 @@ msgstr "Bloqué"
|
|
1752 |
|
1753 |
#: templates/debug.php:320
|
1754 |
msgid "Simulate Trial Promotion"
|
1755 |
-
msgstr "
|
1756 |
|
1757 |
#: templates/debug.php:332
|
1758 |
msgid "Simulate Network Upgrade"
|
@@ -2222,7 +2222,7 @@ msgstr "Il y a une nouvelle version disponible de %s. "
|
|
2222 |
|
2223 |
#: templates/forms/premium-versions-upgrade-handler.php:41
|
2224 |
msgid " %s to access version %s security & feature updates, and support."
|
2225 |
-
msgstr "
|
2226 |
|
2227 |
#: templates/forms/premium-versions-upgrade-handler.php:54
|
2228 |
msgid "New Version Available"
|
@@ -2243,40 +2243,40 @@ msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise
|
|
2243 |
|
2244 |
#: templates/forms/subscription-cancellation.php:37
|
2245 |
msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
|
2246 |
-
msgstr "
|
2247 |
|
2248 |
#: templates/forms/subscription-cancellation.php:47
|
2249 |
msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
|
2250 |
-
msgstr "
|
2251 |
|
2252 |
#: templates/forms/subscription-cancellation.php:52
|
2253 |
msgid "license"
|
2254 |
-
msgstr "
|
2255 |
|
2256 |
#: templates/forms/subscription-cancellation.php:57
|
2257 |
msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
|
2258 |
-
msgstr "
|
2259 |
|
2260 |
#: templates/forms/subscription-cancellation.php:68
|
2261 |
msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
|
2262 |
-
msgstr "
|
2263 |
|
2264 |
#: templates/forms/subscription-cancellation.php:103
|
2265 |
msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
|
2266 |
-
msgstr "
|
2267 |
|
2268 |
#: templates/forms/subscription-cancellation.php:136
|
2269 |
msgid "Cancel %s?"
|
2270 |
-
msgstr "
|
2271 |
|
2272 |
#: templates/forms/subscription-cancellation.php:143
|
2273 |
msgid "Proceed"
|
2274 |
-
msgstr "
|
2275 |
|
2276 |
#: templates/forms/subscription-cancellation.php191,
|
2277 |
#: templates/forms/deactivation/form.php:150
|
2278 |
msgid "Cancel %s & Proceed"
|
2279 |
-
msgstr "
|
2280 |
|
2281 |
#: templates/forms/trial-start.php:22
|
2282 |
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
@@ -2394,7 +2394,7 @@ msgstr "Activer %s"
|
|
2394 |
|
2395 |
#: templates/forms/deactivation/form.php:80
|
2396 |
msgid "Quick Feedback"
|
2397 |
-
msgstr "
|
2398 |
|
2399 |
#: templates/forms/deactivation/form.php:84
|
2400 |
msgid "If you have a moment, please let us know why you are %s"
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Boris Colombier <transifex.com@wba.fr>, 2018
|
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: 2018-11-29 17:40+0000\n"
|
11 |
"Last-Translator: Boris Colombier <transifex.com@wba.fr>\n"
|
12 |
"Language: fr_FR\n"
|
13 |
"Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
+
#: includes/class-freemius.php:1688
|
25 |
msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
26 |
msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
|
27 |
|
28 |
+
#: includes/class-freemius.php:1690
|
29 |
msgid "Error"
|
30 |
msgstr "Erreur"
|
31 |
|
32 |
+
#: includes/class-freemius.php:2011
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "J'ai trouvé un meilleur %s"
|
35 |
|
36 |
+
#: includes/class-freemius.php:2013
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "Quel est le nom du %s ?"
|
39 |
|
40 |
+
#: includes/class-freemius.php:2019
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "C'est une %s temporaire. Je corrige un problème."
|
43 |
|
44 |
+
#: includes/class-freemius.php:2021
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Désactivation"
|
47 |
|
48 |
+
#: includes/class-freemius.php:2022
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Changement de Thème"
|
51 |
|
52 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
53 |
msgid "Other"
|
54 |
msgstr "Autre"
|
55 |
|
56 |
+
#: includes/class-freemius.php:2039
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "Je n'ai plus besoin du %s"
|
59 |
|
60 |
+
#: includes/class-freemius.php:2046
|
61 |
msgid "I only needed the %s for a short period"
|
62 |
msgstr "Je n'ai besoin de %s que pour une courte période"
|
63 |
|
64 |
+
#: includes/class-freemius.php:2052
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "Le %s a cassé mon site"
|
67 |
|
68 |
+
#: includes/class-freemius.php:2059
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "Le %s a soudainement arrêté de fonctionner"
|
71 |
|
72 |
+
#: includes/class-freemius.php:2069
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "Je ne peux plus payer pour ça"
|
75 |
|
76 |
+
#: includes/class-freemius.php:2071
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
msgstr "Quel prix seriez-vous prêt à payer ?"
|
79 |
|
80 |
+
#: includes/class-freemius.php:2077
|
81 |
msgid "I don't like to share my information with you"
|
82 |
msgstr "Je ne veux pas partager mes informations avec vous"
|
83 |
|
84 |
+
#: includes/class-freemius.php:2098
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "Le %s n'a pas fonctionné"
|
87 |
|
88 |
+
#: includes/class-freemius.php:2108
|
89 |
msgid "I couldn't understand how to make it work"
|
90 |
msgstr "Je ne comprends pas comment le faire fonctionner"
|
91 |
|
92 |
+
#: includes/class-freemius.php:2116
|
93 |
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
|
95 |
|
96 |
+
#: includes/class-freemius.php:2118
|
97 |
msgid "What feature?"
|
98 |
msgstr "Quelle fonctionnalité ?"
|
99 |
|
100 |
+
#: includes/class-freemius.php:2122
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "Le %s ne fonctionne pas"
|
103 |
|
104 |
+
#: includes/class-freemius.php:2124
|
105 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
|
107 |
|
108 |
+
#: includes/class-freemius.php:2128
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "Ce n'est pas ce que je recherche"
|
111 |
|
112 |
+
#: includes/class-freemius.php:2130
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "Que recherchez-vous ?"
|
115 |
|
116 |
+
#: includes/class-freemius.php:2134
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "Le %s n'a pas fonctionné comme prévu"
|
119 |
|
120 |
+
#: includes/class-freemius.php:2136
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "À quoi vous attendiez-vous ?"
|
123 |
|
124 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Débuggage Freemius"
|
127 |
|
128 |
+
#: includes/class-freemius.php:3670
|
129 |
msgid "I don't know what is cURL or how to install it, help me!"
|
130 |
msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
|
131 |
|
132 |
+
#: includes/class-freemius.php:3672
|
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 "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles."
|
135 |
|
136 |
+
#: includes/class-freemius.php:3679
|
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 "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau."
|
139 |
|
140 |
+
#: includes/class-freemius.php:3784
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Oui - allez-y"
|
143 |
|
144 |
+
#: includes/class-freemius.php:3789
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "Non - désactivation seulement"
|
147 |
|
148 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
149 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
150 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
151 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
152 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
153 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
154 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Oups"
|
158 |
|
159 |
+
#: includes/class-freemius.php:3903
|
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 "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s."
|
162 |
|
163 |
+
#: includes/class-freemius.php:4340
|
164 |
msgctxt "addonX cannot run without pluginY"
|
165 |
msgid "%s cannot run without %s."
|
166 |
msgstr "%s ne peut pas fonctionner sans %s."
|
167 |
|
168 |
+
#: includes/class-freemius.php:4341
|
169 |
msgctxt "addonX cannot run..."
|
170 |
msgid "%s cannot run without the plugin."
|
171 |
msgstr "%s ne peut pas fonctionner sans le plugin."
|
172 |
|
173 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
174 |
+
#: includes/class-freemius.php:17953
|
175 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
176 |
msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
|
177 |
|
178 |
+
#: includes/class-freemius.php:5130
|
179 |
msgid "Premium %s version was successfully activated."
|
180 |
msgstr "La version premium de %s a été activée avec succès."
|
181 |
|
182 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "Génial"
|
186 |
|
187 |
+
#: includes/class-freemius.php:5157
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "Vous avez une license pour %s."
|
190 |
|
191 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
192 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
193 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
194 |
+
#: includes/class-freemius.php:17707
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Youpi"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5425
|
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 période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence."
|
202 |
|
203 |
+
#: includes/class-freemius.php:5429
|
204 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
205 |
msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
|
206 |
|
207 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
208 |
#: templates/account/partials/addon.php:288
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Plus d'informations à propos de %s"
|
211 |
|
212 |
+
#: includes/class-freemius.php:5439
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Acheter une licence"
|
215 |
|
216 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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 "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s."
|
219 |
|
220 |
+
#: includes/class-freemius.php:6376
|
221 |
msgid "start the trial"
|
222 |
msgstr "commencer la période d'essai"
|
223 |
|
224 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
225 |
msgid "complete the install"
|
226 |
msgstr "compléter l'installation"
|
227 |
|
228 |
+
#: includes/class-freemius.php:6490
|
229 |
msgid "You are just one step away - %s"
|
230 |
msgstr "Il ne reste qu'une étape - %s"
|
231 |
|
232 |
+
#: includes/class-freemius.php:6493
|
233 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
msgid "Complete \"%s\" Activation Now"
|
235 |
msgstr "Compléter \"%s\" Activer Maintenant"
|
236 |
|
237 |
+
#: includes/class-freemius.php:6571
|
238 |
msgid "We made a few tweaks to the %s, %s"
|
239 |
msgstr "Nous avons fait quelques modifications au %s, %s"
|
240 |
|
241 |
+
#: includes/class-freemius.php:6575
|
242 |
msgid "Opt in to make \"%s\" better!"
|
243 |
msgstr "Inscrivez-vous pour améliorer \"%s\" !"
|
244 |
|
245 |
+
#: includes/class-freemius.php:7003
|
246 |
msgid "The upgrade of %s was successfully completed."
|
247 |
msgstr "La mise à jour du %s s'est terminée avec succès "
|
248 |
|
249 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
250 |
+
#: includes/class-fs-plugin-updater.php1081,
|
251 |
+
#: includes/class-fs-plugin-updater.php1088,
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Add-On"
|
255 |
|
256 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Plugin"
|
260 |
|
261 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Thème"
|
265 |
|
266 |
+
#: includes/class-freemius.php:11412
|
267 |
msgid "Invalid site details collection."
|
268 |
+
msgstr "Récupération des détails du site non valide."
|
269 |
|
270 |
+
#: includes/class-freemius.php:11532
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
|
273 |
|
274 |
+
#: includes/class-freemius.php:11534
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
|
277 |
|
278 |
+
#: includes/class-freemius.php:11808
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Compte en cours d'activation."
|
281 |
|
282 |
+
#: includes/class-freemius.php11920,
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Acheter une licence maintenant"
|
286 |
|
287 |
+
#: includes/class-freemius.php11932,
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renouvelez votre licence maintenant"
|
291 |
|
292 |
+
#: includes/class-freemius.php:11936
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
+
msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
|
295 |
|
296 |
+
#: includes/class-freemius.php:14319
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "L'activation de %s s'est terminée avec succès."
|
299 |
|
300 |
+
#: includes/class-freemius.php:14333
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Votre compte a été activé avec succès avec la formule %s."
|
303 |
|
304 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Votre période d'essai a bien démarré."
|
307 |
|
308 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
309 |
+
#: includes/class-freemius.php:15028
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "Impossible d'activer %s."
|
312 |
|
313 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
314 |
+
#: includes/class-freemius.php:15029
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Merci de nous contacter avec le message suivant :"
|
317 |
|
318 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Mise à jour"
|
321 |
|
322 |
+
#: includes/class-freemius.php:15384
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Essai gratuit"
|
325 |
|
326 |
+
#: includes/class-freemius.php:15386
|
327 |
msgid "Pricing"
|
328 |
msgstr "Tarifs"
|
329 |
|
330 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Affiliation"
|
333 |
|
334 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Compte"
|
338 |
|
339 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Contactez Nous"
|
343 |
|
344 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
345 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Add-Ons"
|
349 |
|
350 |
+
#: includes/class-freemius.php:15541
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
+
#: includes/class-freemius.php:15541
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Tarifs"
|
364 |
|
365 |
+
#: includes/class-freemius.php15756,
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Forum de Support"
|
369 |
|
370 |
+
#: includes/class-freemius.php:16542
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
|
373 |
|
374 |
+
#: includes/class-freemius.php:16543
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Directement"
|
378 |
|
379 |
+
#: includes/class-freemius.php:17168
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Votre Add-on %s a bien été mis à jour."
|
382 |
|
383 |
+
#: includes/class-freemius.php:17170
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "L'Add-on %s a bien été acheté."
|
386 |
|
387 |
+
#: includes/class-freemius.php:17173
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Télécharger la dernière version"
|
390 |
|
391 |
+
#: includes/class-freemius.php:17259
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche "
|
395 |
|
396 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
397 |
+
#: includes/class-freemius.php:17755
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Une erreur a été reçu depuis le serveur :"
|
400 |
|
401 |
+
#: includes/class-freemius.php:17272
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau."
|
404 |
|
405 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
406 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Hmm"
|
410 |
|
411 |
+
#: includes/class-freemius.php:17467
|
412 |
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."
|
413 |
msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé."
|
414 |
|
415 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Période d'essai"
|
420 |
|
421 |
+
#: includes/class-freemius.php:17473
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
|
424 |
|
425 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Merci de nous contacter ici"
|
428 |
|
429 |
+
#: includes/class-freemius.php:17487
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Votre formule a bien été mise à jour."
|
432 |
|
433 |
+
#: includes/class-freemius.php:17505
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Votre formule a bien été modifié vers %s. "
|
436 |
|
437 |
+
#: includes/class-freemius.php:17521
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
|
440 |
|
441 |
+
#: includes/class-freemius.php:17523
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
|
444 |
|
445 |
+
#: includes/class-freemius.php:17531
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
|
448 |
|
449 |
+
#: includes/class-freemius.php:17544
|
450 |
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."
|
451 |
msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance."
|
452 |
|
453 |
+
#: includes/class-freemius.php:17567
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
|
456 |
|
457 |
+
#: includes/class-freemius.php:17569
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
|
460 |
|
461 |
+
#: includes/class-freemius.php:17674
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Il semble que la licence ne puisse être activée."
|
464 |
|
465 |
+
#: includes/class-freemius.php:17704
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Votre licence a bien été activée."
|
468 |
|
469 |
+
#: includes/class-freemius.php:17730
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Il semble que votre site n'ait pas de licence active."
|
472 |
|
473 |
+
#: includes/class-freemius.php:17754
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Il semble que la désactivation de la licence a échoué."
|
476 |
|
477 |
+
#: includes/class-freemius.php:17782
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17783
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K"
|
484 |
|
485 |
+
#: includes/class-freemius.php:17836
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
|
488 |
|
489 |
+
#: includes/class-freemius.php:17845
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
+
msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
|
492 |
|
493 |
+
#: includes/class-freemius.php:17887
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Vous utilisez déjà le %s en période d'essai. "
|
496 |
|
497 |
+
#: includes/class-freemius.php:17898
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Vous avez déjà utilisé la période d'essai."
|
500 |
|
501 |
+
#: includes/class-freemius.php:17912
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
|
504 |
|
505 |
+
#: includes/class-freemius.php:17923
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "La formule %s ne propose pas de période d'essai."
|
508 |
|
509 |
+
#: includes/class-freemius.php:17934
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Aucune formule du %s ne propose de période d'essai."
|
512 |
|
513 |
+
#: includes/class-freemius.php:17984
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
|
516 |
|
517 |
+
#: includes/class-freemius.php:18020
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
|
520 |
|
521 |
+
#: includes/class-freemius.php:18039
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Votre période d'essai %s a bien été annulé."
|
524 |
|
525 |
+
#: includes/class-freemius.php:18346
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "La version %s vient d'être publiée."
|
528 |
|
529 |
+
#: includes/class-freemius.php:18346
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Merci de télécharger %s."
|
532 |
|
533 |
+
#: includes/class-freemius.php:18353
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "la dernière version de %s ici"
|
536 |
|
537 |
+
#: includes/class-freemius.php:18358
|
538 |
msgid "New"
|
539 |
msgstr "Nouveau"
|
540 |
|
541 |
+
#: includes/class-freemius.php:18363
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Il semble que vous ayez la dernière version."
|
544 |
|
545 |
+
#: includes/class-freemius.php:18364
|
546 |
msgid "You are all good!"
|
547 |
msgstr "Vous êtes tout bon !"
|
548 |
|
549 |
+
#: includes/class-freemius.php:18632
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams."
|
552 |
|
553 |
+
#: includes/class-freemius.php:18769
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Site ajouté avec succès."
|
556 |
|
557 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
558 |
msgid "Awesome"
|
559 |
msgstr "Formidable"
|
560 |
|
561 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
|
564 |
|
565 |
+
#: includes/class-freemius.php:18787
|
566 |
msgid "Thank you!"
|
567 |
msgstr "Merci !"
|
568 |
|
569 |
+
#: includes/class-freemius.php:18794
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
|
572 |
|
573 |
+
#: includes/class-freemius.php:18923
|
574 |
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."
|
575 |
msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message."
|
576 |
|
577 |
+
#: includes/class-freemius.php:18929
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
|
580 |
|
581 |
+
#: includes/class-freemius.php:18934
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%s est le nouveau propriétaire du compte."
|
584 |
|
585 |
+
#: includes/class-freemius.php:18936
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Félicitations"
|
589 |
|
590 |
+
#: includes/class-freemius.php:18956
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
|
593 |
|
594 |
+
#: includes/class-freemius.php:18957
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
|
597 |
|
598 |
+
#: includes/class-freemius.php:18964
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Changement De Propriétaire"
|
601 |
|
602 |
+
#: includes/class-freemius.php:18972
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
|
605 |
|
606 |
+
#: includes/class-freemius.php:18984
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Merci d'indiquer vos prénom et nom."
|
609 |
|
610 |
+
#: includes/class-freemius.php:18989
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Votre nom a été mis à jour."
|
613 |
|
614 |
+
#: includes/class-freemius.php:19050
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Votre %s a bien été mis à jour."
|
617 |
|
618 |
+
#: includes/class-freemius.php:19190
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
|
621 |
|
622 |
+
#: includes/class-freemius.php:19191
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Avertissement"
|
626 |
|
627 |
+
#: includes/class-freemius.php:19621
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Hey"
|
631 |
|
632 |
+
#: includes/class-freemius.php:19621
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
|
635 |
|
636 |
+
#: includes/class-freemius.php:19629
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
|
639 |
|
640 |
+
#: includes/class-freemius.php:19630
|
641 |
msgid "No credit card required"
|
642 |
msgstr "Pas besoin de carte bancaire"
|
643 |
|
644 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Commencer l'essai gratuit"
|
648 |
|
649 |
+
#: includes/class-freemius.php:19714
|
650 |
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!"
|
651 |
msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !"
|
652 |
|
653 |
+
#: includes/class-freemius.php:19723
|
654 |
msgid "Learn more"
|
655 |
msgstr "En savoir plus"
|
656 |
|
657 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Activer la licence"
|
663 |
|
664 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Changer la licence"
|
668 |
|
669 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Désinscription"
|
672 |
|
673 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Inscription"
|
678 |
|
679 |
+
#: includes/class-freemius.php:20187
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
+
msgstr "La version payante de %1s est déjà installée. Merci de l'activer pour bénéficier des fonctionnalités %2s. %3s"
|
682 |
|
683 |
+
#: includes/class-freemius.php:20195
|
684 |
msgid "Activate %s features"
|
685 |
+
msgstr "Activer les fonctionnalités %s"
|
686 |
|
687 |
+
#: includes/class-freemius.php:20208
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
|
690 |
|
691 |
+
#: includes/class-freemius.php:20212
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Télécharger la dernière version %s"
|
694 |
|
695 |
+
#: includes/class-freemius.php:20216
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Téléverser et activer la version téléchargée"
|
698 |
|
699 |
+
#: includes/class-freemius.php:20218
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "Comment téléverser et activer ?"
|
702 |
|
703 |
+
#: includes/class-freemius.php:20352
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
|
706 |
|
707 |
+
#: includes/class-freemius.php:20513
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
|
710 |
|
711 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
712 |
+
#: includes/class-fs-plugin-updater.php1060,
|
713 |
+
#: includes/class-fs-plugin-updater.php:1074
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "ID du module non valide."
|
716 |
|
717 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Version premium déjà active."
|
720 |
|
721 |
+
#: includes/class-freemius.php:20539
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
|
724 |
|
725 |
+
#: includes/class-freemius.php:20546
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
|
728 |
|
729 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "La version premium de l'add-on est déjà installée."
|
732 |
|
733 |
+
#: includes/class-freemius.php:20909
|
734 |
msgid "View paid features"
|
735 |
msgstr "Voir les fonctionnalités payantes"
|
736 |
|
737 |
+
#: includes/class-freemius.php:21229
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
|
740 |
|
741 |
+
#: includes/class-freemius.php:21230
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "Merci beaucoup d'utiliser %s !"
|
744 |
|
745 |
+
#: includes/class-freemius.php:21236
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
|
748 |
|
749 |
+
#: includes/class-freemius.php:21240
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "Merci beaucoup d'utiliser nos produits !"
|
752 |
|
753 |
+
#: includes/class-freemius.php:21241
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
|
756 |
|
757 |
+
#: includes/class-freemius.php:21260
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s et ses add-ons"
|
760 |
|
761 |
+
#: includes/class-freemius.php:21269
|
762 |
msgid "Products"
|
763 |
msgstr "Produits"
|
764 |
|
765 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
766 |
msgid "Yes"
|
767 |
msgstr "Oui"
|
768 |
|
769 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
|
772 |
|
773 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
774 |
msgid "No"
|
775 |
msgstr "Non"
|
776 |
|
777 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
|
780 |
|
781 |
+
#: includes/class-freemius.php:21290
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂"
|
784 |
|
785 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :"
|
788 |
|
789 |
+
#: includes/class-freemius.php:21574
|
790 |
msgid "License key is empty."
|
791 |
msgstr "La clé de licence est vide."
|
792 |
|
798 |
#: includes/class-fs-plugin-updater.php189,
|
799 |
#: templates/forms/premium-versions-upgrade-handler.php:58
|
800 |
msgid "Buy license"
|
801 |
+
msgstr "Acheter une licence"
|
802 |
|
803 |
#: includes/class-fs-plugin-updater.php:278
|
804 |
msgid "There is a %s of %s available."
|
805 |
+
msgstr "Il y a une %s de %s disponible."
|
806 |
|
807 |
#: includes/class-fs-plugin-updater.php:282
|
808 |
msgid "new version"
|
809 |
+
msgstr "Nouvelle version"
|
810 |
|
811 |
+
#: includes/class-fs-plugin-updater.php:305
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
+
msgstr "Information importante de mise à jour :"
|
814 |
|
815 |
+
#: includes/class-fs-plugin-updater.php:1125
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Installation du plugin : %s"
|
818 |
|
819 |
+
#: includes/class-fs-plugin-updater.php:1166
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
|
822 |
|
823 |
+
#: includes/class-fs-plugin-updater.php:1348
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer."
|
826 |
|
1125 |
#: templates/account/partials/addon.php22,
|
1126 |
#: templates/account/partials/site.php:295
|
1127 |
msgid "Downgrading your plan"
|
1128 |
+
msgstr "Rétrograder votre formule"
|
1129 |
|
1130 |
#: templates/account.php82, templates/forms/subscription-cancellation.php97,
|
1131 |
#: templates/account/partials/addon.php23,
|
1132 |
#: templates/account/partials/site.php:296
|
1133 |
msgid "Cancelling the subscription"
|
1134 |
+
msgstr "Annuler votre abonnement"
|
1135 |
|
1136 |
#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
|
1137 |
#. subscription'
|
1139 |
#: templates/account/partials/addon.php25,
|
1140 |
#: templates/account/partials/site.php:298
|
1141 |
msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1142 |
+
msgstr "%1s va immédiatement arrêter tous les futurs paiements récurrents et la licence de votre formule %s expirera dans %s."
|
1143 |
|
1144 |
#: templates/account.php85, templates/forms/subscription-cancellation.php100,
|
1145 |
#: templates/account/partials/addon.php26,
|
1146 |
#: templates/account/partials/site.php:299
|
1147 |
msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
|
1148 |
+
msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé."
|
1149 |
|
1150 |
#: templates/account.php86, templates/forms/subscription-cancellation.php106,
|
1151 |
#: templates/account/partials/addon.php:27
|
1156 |
#: templates/account/partials/addon.php28,
|
1157 |
#: templates/account/partials/site.php:300
|
1158 |
msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
1159 |
+
msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support."
|
1160 |
|
1161 |
#: templates/account.php88, templates/forms/subscription-cancellation.php102,
|
1162 |
#: templates/account/partials/addon.php29,
|
1388 |
|
1389 |
#: templates/account.php:686
|
1390 |
msgid "Cancelling %s"
|
1391 |
+
msgstr "Annulation de %s"
|
1392 |
|
1393 |
#: templates/account.php686, templates/account.php703,
|
1394 |
#: templates/forms/subscription-cancellation.php27,
|
1395 |
#: templates/forms/deactivation/form.php:117
|
1396 |
msgid "trial"
|
1397 |
+
msgstr "essai"
|
1398 |
|
1399 |
#: templates/account.php701, templates/forms/deactivation/form.php:134
|
1400 |
msgid "Cancelling %s..."
|
1401 |
+
msgstr "Annulation de %s..."
|
1402 |
|
1403 |
#: templates/account.php704, templates/forms/subscription-cancellation.php28,
|
1404 |
#: templates/forms/deactivation/form.php:118
|
1405 |
msgid "subscription"
|
1406 |
+
msgstr "abonnement"
|
1407 |
|
1408 |
#: templates/account.php:718
|
1409 |
msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1605 |
|
1606 |
#: templates/connect.php:430
|
1607 |
msgid "License Agreement"
|
1608 |
+
msgstr "Contrat de licence"
|
1609 |
|
1610 |
#: templates/connect.php:430
|
1611 |
msgid "Terms of Service"
|
1671 |
|
1672 |
#: templates/debug.php:95
|
1673 |
msgid "Migrate Options to Network"
|
1674 |
+
msgstr "Migrer les options vers le réseau"
|
1675 |
|
1676 |
#: templates/debug.php:100
|
1677 |
msgid "Load DB Option"
|
1752 |
|
1753 |
#: templates/debug.php:320
|
1754 |
msgid "Simulate Trial Promotion"
|
1755 |
+
msgstr "Simuler la promotion d'essai"
|
1756 |
|
1757 |
#: templates/debug.php:332
|
1758 |
msgid "Simulate Network Upgrade"
|
2222 |
|
2223 |
#: templates/forms/premium-versions-upgrade-handler.php:41
|
2224 |
msgid " %s to access version %s security & feature updates, and support."
|
2225 |
+
msgstr "%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la version %s, et au support."
|
2226 |
|
2227 |
#: templates/forms/premium-versions-upgrade-handler.php:54
|
2228 |
msgid "New Version Available"
|
2243 |
|
2244 |
#: templates/forms/subscription-cancellation.php:37
|
2245 |
msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
|
2246 |
+
msgstr "Désactiver ou désinstaller le %s désactivera automatiquement la licence, que vous pourrez utiliser sur un autre site."
|
2247 |
|
2248 |
#: templates/forms/subscription-cancellation.php:47
|
2249 |
msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
|
2250 |
+
msgstr "Dans le cas où vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou tout autre site) - voulez-vous aussi annuler le %s ?"
|
2251 |
|
2252 |
#: templates/forms/subscription-cancellation.php:52
|
2253 |
msgid "license"
|
2254 |
+
msgstr "licence"
|
2255 |
|
2256 |
#: templates/forms/subscription-cancellation.php:57
|
2257 |
msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
|
2258 |
+
msgstr "Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention d'utiliser le %s sur ce site, ou tout autre site."
|
2259 |
|
2260 |
#: templates/forms/subscription-cancellation.php:68
|
2261 |
msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
|
2262 |
+
msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support."
|
2263 |
|
2264 |
#: templates/forms/subscription-cancellation.php:103
|
2265 |
msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
|
2266 |
+
msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide."
|
2267 |
|
2268 |
#: templates/forms/subscription-cancellation.php:136
|
2269 |
msgid "Cancel %s?"
|
2270 |
+
msgstr "Annuler %s ?"
|
2271 |
|
2272 |
#: templates/forms/subscription-cancellation.php:143
|
2273 |
msgid "Proceed"
|
2274 |
+
msgstr "Poursuivre"
|
2275 |
|
2276 |
#: templates/forms/subscription-cancellation.php191,
|
2277 |
#: templates/forms/deactivation/form.php:150
|
2278 |
msgid "Cancel %s & Proceed"
|
2279 |
+
msgstr "Annuler %s et poursuivre"
|
2280 |
|
2281 |
#: templates/forms/trial-start.php:22
|
2282 |
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2394 |
|
2395 |
#: templates/forms/deactivation/form.php:80
|
2396 |
msgid "Quick Feedback"
|
2397 |
+
msgstr "Commentaires rapides"
|
2398 |
|
2399 |
#: templates/forms/deactivation/form.php:84
|
2400 |
msgid "If you have a moment, please let us know why you are %s"
|
freemius/languages/freemius-he_IL.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
|
@@ -22,772 +22,772 @@ 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 "מצאתי %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 "יש"
|
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/account/partials/addon.php:288
|
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.
|
252 |
-
#: includes/class-fs-plugin-updater.
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Add-On"
|
256 |
|
257 |
-
#: includes/class-freemius.
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "תוסף"
|
261 |
|
262 |
-
#: includes/class-freemius.
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "תבנית"
|
266 |
|
267 |
-
#: includes/class-freemius.php:
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Invalid site details collection."
|
270 |
|
271 |
-
#: includes/class-freemius.php:
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
274 |
|
275 |
-
#: includes/class-freemius.php:
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
278 |
|
279 |
-
#: includes/class-freemius.php:
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Account is pending activation."
|
282 |
|
283 |
-
#: includes/class-freemius.
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Buy a license now"
|
287 |
|
288 |
-
#: includes/class-freemius.
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Renew your license now"
|
292 |
|
293 |
-
#: includes/class-freemius.php:
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%s to access version %s security & feature updates, and support."
|
296 |
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "הפעלת %s הושלמה בהצלחה."
|
300 |
|
301 |
-
#: includes/class-freemius.php:
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
|
304 |
|
305 |
-
#: includes/class-freemius.
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "הניסיון שלך הופעל בהצלחה."
|
308 |
|
309 |
-
#: includes/class-freemius.
|
310 |
-
#: includes/class-freemius.php:
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "לא ניתן להפעיל את %s."
|
313 |
|
314 |
-
#: includes/class-freemius.
|
315 |
-
#: includes/class-freemius.php:
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
|
318 |
|
319 |
-
#: includes/class-freemius.
|
320 |
msgid "Upgrade"
|
321 |
msgstr "שדרג"
|
322 |
|
323 |
-
#: includes/class-freemius.php:
|
324 |
msgid "Start Trial"
|
325 |
msgstr "התחל תקופת ניסיון"
|
326 |
|
327 |
-
#: includes/class-freemius.php:
|
328 |
msgid "Pricing"
|
329 |
msgstr "מחירון"
|
330 |
|
331 |
-
#: includes/class-freemius.
|
332 |
msgid "Affiliation"
|
333 |
msgstr "אפיליאציה"
|
334 |
|
335 |
-
#: includes/class-freemius.
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "חשבון"
|
339 |
|
340 |
-
#: includes/class-freemius.
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "יצירת קשר"
|
344 |
|
345 |
-
#: includes/class-freemius.
|
346 |
-
#: includes/class-freemius.
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Add-Ons"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
-
#: includes/class-freemius.php:
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
-
#: includes/class-freemius.
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "מחירון"
|
365 |
|
366 |
-
#: includes/class-freemius.
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "פורום תמיכה"
|
370 |
|
371 |
-
#: includes/class-freemius.php:
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
374 |
|
375 |
-
#: includes/class-freemius.php:
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "מעולה"
|
379 |
|
380 |
-
#: includes/class-freemius.php:
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
|
383 |
|
384 |
-
#: includes/class-freemius.php:
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "ההרחבה %s נרכשה בהצלחה."
|
387 |
|
388 |
-
#: includes/class-freemius.php:
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "הורד את הגרסה האחרונה"
|
391 |
|
392 |
-
#: includes/class-freemius.php:
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
396 |
|
397 |
-
#: includes/class-freemius.
|
398 |
-
#: includes/class-freemius.php:
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "הוחזרה שגיאה מהשרת:"
|
401 |
|
402 |
-
#: includes/class-freemius.php:
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
405 |
|
406 |
-
#: includes/class-freemius.
|
407 |
-
#: includes/class-freemius.
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "אממ"
|
411 |
|
412 |
-
#: includes/class-freemius.php:
|
413 |
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."
|
414 |
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."
|
415 |
|
416 |
-
#: includes/class-freemius.
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "ניסיון"
|
421 |
|
422 |
-
#: includes/class-freemius.php:
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
|
425 |
|
426 |
-
#: includes/class-freemius.
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "אנא צור איתנו קשר כאן"
|
429 |
|
430 |
-
#: includes/class-freemius.php:
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "החבילה שודרגה בהצלחה."
|
433 |
|
434 |
-
#: includes/class-freemius.php:
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "החבילה עודכנה בהצלחה אל %s."
|
437 |
|
438 |
-
#: includes/class-freemius.php:
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
441 |
|
442 |
-
#: includes/class-freemius.php:
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
445 |
|
446 |
-
#: includes/class-freemius.php:
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
|
449 |
|
450 |
-
#: includes/class-freemius.php:
|
451 |
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."
|
452 |
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."
|
453 |
|
454 |
-
#: includes/class-freemius.php:
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
|
457 |
|
458 |
-
#: includes/class-freemius.php:
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
461 |
|
462 |
-
#: includes/class-freemius.php:
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "נראה שלא ניתן להפעיל את הרישיון."
|
465 |
|
466 |
-
#: includes/class-freemius.php:
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "הרישיון הופעל בהצלחה."
|
469 |
|
470 |
-
#: includes/class-freemius.php:
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "נראה לאתר עדיין אין רישיון פעיל."
|
473 |
|
474 |
-
#: includes/class-freemius.php:
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "נראה שניתוק הרישיון נכשל."
|
477 |
|
478 |
-
#: includes/class-freemius.php:
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
|
481 |
|
482 |
-
#: includes/class-freemius.php:
|
483 |
msgid "O.K"
|
484 |
msgstr "אוקיי"
|
485 |
|
486 |
-
#: includes/class-freemius.php:
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
489 |
|
490 |
-
#: includes/class-freemius.php:
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
493 |
|
494 |
-
#: includes/class-freemius.php:
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "You are already running the %s in a trial mode."
|
497 |
|
498 |
-
#: includes/class-freemius.php:
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "הניסיון כבר נוצל בעבר."
|
501 |
|
502 |
-
#: includes/class-freemius.php:
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
|
505 |
|
506 |
-
#: includes/class-freemius.php:
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
|
509 |
|
510 |
-
#: includes/class-freemius.php:
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "None of the %s's plans supports a trial period."
|
513 |
|
514 |
-
#: includes/class-freemius.php:
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
517 |
|
518 |
-
#: includes/class-freemius.php:
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
|
521 |
|
522 |
-
#: includes/class-freemius.php:
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
|
525 |
|
526 |
-
#: includes/class-freemius.php:
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "גרסה %s הושקה."
|
529 |
|
530 |
-
#: includes/class-freemius.php:
|
531 |
msgid "Please download %s."
|
532 |
msgstr "נא להוריד את %s."
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "גרסת ה-%s האחרונה כאן"
|
537 |
|
538 |
-
#: includes/class-freemius.php:
|
539 |
msgid "New"
|
540 |
msgstr "חדש"
|
541 |
|
542 |
-
#: includes/class-freemius.php:
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "נראה שיש לך את הגרסה האחרונה."
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
547 |
msgid "You are all good!"
|
548 |
msgstr "את\\ה מסודר!"
|
549 |
|
550 |
-
#: includes/class-freemius.php:
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Site successfully opted in."
|
557 |
|
558 |
-
#: includes/class-freemius.
|
559 |
msgid "Awesome"
|
560 |
msgstr "אדיר"
|
561 |
|
562 |
-
#: includes/class-freemius.
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
565 |
|
566 |
-
#: includes/class-freemius.php:
|
567 |
msgid "Thank you!"
|
568 |
msgstr "תודה רבה!"
|
569 |
|
570 |
-
#: includes/class-freemius.php:
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
573 |
|
574 |
-
#: includes/class-freemius.php:
|
575 |
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."
|
576 |
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."
|
577 |
|
578 |
-
#: includes/class-freemius.php:
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
|
581 |
|
582 |
-
#: includes/class-freemius.php:
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s הינו הבעלים החד של חשבון זה."
|
585 |
|
586 |
-
#: includes/class-freemius.php:
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "מזל טוב"
|
590 |
|
591 |
-
#: includes/class-freemius.php:
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
594 |
|
595 |
-
#: includes/class-freemius.php:
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "עדכון בעלות"
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "נא למלא את שמך המלא."
|
610 |
|
611 |
-
#: includes/class-freemius.php:
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "שמך עודכן בהצלחה."
|
614 |
|
615 |
-
#: includes/class-freemius.php:
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "עידכנת בהצלחה את ה%s."
|
618 |
|
619 |
-
#: includes/class-freemius.php:
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
622 |
|
623 |
-
#: includes/class-freemius.php:
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "לתשמות לבך"
|
627 |
|
628 |
-
#: includes/class-freemius.php:
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "היי"
|
632 |
|
633 |
-
#: includes/class-freemius.php:
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
636 |
|
637 |
-
#: includes/class-freemius.php:
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
|
640 |
|
641 |
-
#: includes/class-freemius.php:
|
642 |
msgid "No credit card required"
|
643 |
msgstr "לא נדרש כרטיס אשראי"
|
644 |
|
645 |
-
#: includes/class-freemius.
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "התחלת ניסיון חינם"
|
649 |
|
650 |
-
#: includes/class-freemius.php:
|
651 |
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!"
|
652 |
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!"
|
653 |
|
654 |
-
#: includes/class-freemius.php:
|
655 |
msgid "Learn more"
|
656 |
msgstr "Learn more"
|
657 |
|
658 |
-
#: includes/class-freemius.
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "הפעלת רישיון"
|
664 |
|
665 |
-
#: includes/class-freemius.
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "שינוי רישיון"
|
669 |
|
670 |
-
#: includes/class-freemius.
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Opt Out"
|
673 |
|
674 |
-
#: includes/class-freemius.
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Opt In"
|
679 |
|
680 |
-
#: includes/class-freemius.php:
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
683 |
|
684 |
-
#: includes/class-freemius.php:
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activate %s features"
|
687 |
|
688 |
-
#: includes/class-freemius.php:
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
|
691 |
|
692 |
-
#: includes/class-freemius.php:
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "הורד\\י את גרסת ה-%s העדכנית"
|
695 |
|
696 |
-
#: includes/class-freemius.php:
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
|
699 |
|
700 |
-
#: includes/class-freemius.php:
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "איך להעלות ולהפעיל?"
|
703 |
|
704 |
-
#: includes/class-freemius.php:
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
707 |
|
708 |
-
#: includes/class-freemius.php:
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Auto installation only works for opted-in users."
|
711 |
|
712 |
-
#: includes/class-freemius.
|
713 |
-
#: includes/class-fs-plugin-updater.
|
714 |
-
#: includes/class-fs-plugin-updater.php:
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "מזהה המודול לא תקני."
|
717 |
|
718 |
-
#: includes/class-freemius.
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "הגרסה בתשלום כבר פעילה."
|
721 |
|
722 |
-
#: includes/class-freemius.php:
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
|
725 |
|
726 |
-
#: includes/class-freemius.php:
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
729 |
|
730 |
-
#: includes/class-freemius.
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium add-on version already installed."
|
733 |
|
734 |
-
#: includes/class-freemius.php:
|
735 |
msgid "View paid features"
|
736 |
msgstr "צפה בפיטצ'רים שבתשלום"
|
737 |
|
738 |
-
#: includes/class-freemius.php:
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Thank you so much for using %s and its add-ons!"
|
741 |
|
742 |
-
#: includes/class-freemius.php:
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "אנו מודים לך על היותך כמשתמש של %s!"
|
745 |
|
746 |
-
#: includes/class-freemius.php:
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
749 |
|
750 |
-
#: includes/class-freemius.php:
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
|
753 |
|
754 |
-
#: includes/class-freemius.php:
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
757 |
|
758 |
-
#: includes/class-freemius.php:
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%s and its add-ons"
|
761 |
|
762 |
-
#: includes/class-freemius.php:
|
763 |
msgid "Products"
|
764 |
msgstr "מוצרים"
|
765 |
|
766 |
-
#: includes/class-freemius.
|
767 |
msgid "Yes"
|
768 |
msgstr "כן"
|
769 |
|
770 |
-
#: includes/class-freemius.
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
|
773 |
|
774 |
-
#: includes/class-freemius.
|
775 |
msgid "No"
|
776 |
msgstr "לא"
|
777 |
|
778 |
-
#: includes/class-freemius.
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
|
781 |
|
782 |
-
#: includes/class-freemius.php:
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
785 |
|
786 |
-
#: includes/class-freemius.
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
789 |
|
790 |
-
#: includes/class-freemius.php:
|
791 |
msgid "License key is empty."
|
792 |
msgstr "מפתח הרישיון ריק."
|
793 |
|
@@ -809,19 +809,19 @@ msgstr "There is a %s of %s available."
|
|
809 |
msgid "new version"
|
810 |
msgstr "new version"
|
811 |
|
812 |
-
#: includes/class-fs-plugin-updater.php:
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Important Upgrade Notice:"
|
815 |
|
816 |
-
#: includes/class-fs-plugin-updater.php:
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installing plugin: %s"
|
819 |
|
820 |
-
#: includes/class-fs-plugin-updater.php:
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
823 |
|
824 |
-
#: includes/class-fs-plugin-updater.php:
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
827 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/class-freemius.php:1688
|
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:1690
|
30 |
msgid "Error"
|
31 |
msgstr "שגיאה"
|
32 |
|
33 |
+
#: includes/class-freemius.php:2011
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "מצאתי %s יותר טוב"
|
36 |
|
37 |
+
#: includes/class-freemius.php:2013
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "What's the %s's name?"
|
40 |
|
41 |
+
#: includes/class-freemius.php:2019
|
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:2021
|
46 |
msgid "Deactivation"
|
47 |
msgstr "דיאקטיבציה"
|
48 |
|
49 |
+
#: includes/class-freemius.php:2022
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "החלפת תֵמָה"
|
52 |
|
53 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
54 |
msgid "Other"
|
55 |
msgstr "אחר"
|
56 |
|
57 |
+
#: includes/class-freemius.php:2039
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "I no longer need the %s"
|
60 |
|
61 |
+
#: includes/class-freemius.php:2046
|
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:2052
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "ה%s הרס לי את האתר"
|
68 |
|
69 |
+
#: includes/class-freemius.php:2059
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "ה%s הפסיק פתאום לעבוד"
|
72 |
|
73 |
+
#: includes/class-freemius.php:2069
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "אני לא יכול/ה להמשיך לשלם על זה"
|
76 |
|
77 |
+
#: includes/class-freemius.php:2071
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
|
80 |
|
81 |
+
#: includes/class-freemius.php:2077
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
|
84 |
|
85 |
+
#: includes/class-freemius.php:2098
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "ה%s לא עבד"
|
88 |
|
89 |
+
#: includes/class-freemius.php:2108
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
|
92 |
|
93 |
+
#: includes/class-freemius.php:2116
|
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:2118
|
98 |
msgid "What feature?"
|
99 |
msgstr "איזה פיטצ'ר?"
|
100 |
|
101 |
+
#: includes/class-freemius.php:2122
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "ה%s לא עובד"
|
104 |
|
105 |
+
#: includes/class-freemius.php:2124
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
|
108 |
|
109 |
+
#: includes/class-freemius.php:2128
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "חיפשתי משהו אחר"
|
112 |
|
113 |
+
#: includes/class-freemius.php:2130
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "מה חיפשת?"
|
116 |
|
117 |
+
#: includes/class-freemius.php:2134
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "ה%s לא עבד כמצופה"
|
120 |
|
121 |
+
#: includes/class-freemius.php:2136
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "למה ציפית?"
|
124 |
|
125 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "ניפוי תקלות פרימיוס"
|
128 |
|
129 |
+
#: includes/class-freemius.php:3670
|
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:3672
|
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:3679
|
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:3784
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "כן - בצעו את מה שצריך"
|
144 |
|
145 |
+
#: includes/class-freemius.php:3789
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "לא - פשוט כבה"
|
148 |
|
149 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
150 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
151 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
152 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
153 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
154 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
155 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "אופס"
|
159 |
|
160 |
+
#: includes/class-freemius.php:3903
|
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:4340
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s לא יכול לעבוד ללא %s."
|
168 |
|
169 |
+
#: includes/class-freemius.php:4341
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
|
173 |
|
174 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
175 |
+
#: includes/class-freemius.php:17953
|
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:5130
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s version was successfully activated."
|
182 |
|
183 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "יש"
|
187 |
|
188 |
+
#: includes/class-freemius.php:5157
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "יש לך רישיון %s."
|
191 |
|
192 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
193 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
194 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
195 |
+
#: includes/class-freemius.php:17707
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "יששש"
|
199 |
|
200 |
+
#: includes/class-freemius.php:5425
|
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:5429
|
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.php5438, templates/add-ons.php103,
|
209 |
#: templates/account/partials/addon.php:288
|
210 |
msgid "More information about %s"
|
211 |
msgstr "מידע נוסף אודות %s"
|
212 |
|
213 |
+
#: includes/class-freemius.php:5439
|
214 |
msgid "Purchase License"
|
215 |
msgstr "קניית רישיון"
|
216 |
|
217 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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:6376
|
222 |
msgid "start the trial"
|
223 |
msgstr "התחל תקופת ניסיון"
|
224 |
|
225 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
226 |
msgid "complete the install"
|
227 |
msgstr "השלם התקנה"
|
228 |
|
229 |
+
#: includes/class-freemius.php:6490
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "You are just one step away - %s"
|
232 |
|
233 |
+
#: includes/class-freemius.php:6493
|
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:6571
|
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:6575
|
243 |
msgid "Opt in to make \"%s\" better!"
|
244 |
msgstr "Opt in to make \"%s\" better!"
|
245 |
|
246 |
+
#: includes/class-freemius.php:7003
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "The upgrade of %s was successfully completed."
|
249 |
|
250 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
251 |
+
#: includes/class-fs-plugin-updater.php1081,
|
252 |
+
#: includes/class-fs-plugin-updater.php1088,
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Add-On"
|
256 |
|
257 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "תוסף"
|
261 |
|
262 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "תבנית"
|
266 |
|
267 |
+
#: includes/class-freemius.php:11412
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Invalid site details collection."
|
270 |
|
271 |
+
#: includes/class-freemius.php:11532
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
274 |
|
275 |
+
#: includes/class-freemius.php:11534
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
278 |
|
279 |
+
#: includes/class-freemius.php:11808
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Account is pending activation."
|
282 |
|
283 |
+
#: includes/class-freemius.php11920,
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Buy a license now"
|
287 |
|
288 |
+
#: includes/class-freemius.php11932,
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Renew your license now"
|
292 |
|
293 |
+
#: includes/class-freemius.php:11936
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%s to access version %s security & feature updates, and support."
|
296 |
|
297 |
+
#: includes/class-freemius.php:14319
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "הפעלת %s הושלמה בהצלחה."
|
300 |
|
301 |
+
#: includes/class-freemius.php:14333
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
|
304 |
|
305 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "הניסיון שלך הופעל בהצלחה."
|
308 |
|
309 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
310 |
+
#: includes/class-freemius.php:15028
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "לא ניתן להפעיל את %s."
|
313 |
|
314 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
315 |
+
#: includes/class-freemius.php:15029
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
|
318 |
|
319 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
320 |
msgid "Upgrade"
|
321 |
msgstr "שדרג"
|
322 |
|
323 |
+
#: includes/class-freemius.php:15384
|
324 |
msgid "Start Trial"
|
325 |
msgstr "התחל תקופת ניסיון"
|
326 |
|
327 |
+
#: includes/class-freemius.php:15386
|
328 |
msgid "Pricing"
|
329 |
msgstr "מחירון"
|
330 |
|
331 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
332 |
msgid "Affiliation"
|
333 |
msgstr "אפיליאציה"
|
334 |
|
335 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "חשבון"
|
339 |
|
340 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "יצירת קשר"
|
344 |
|
345 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
346 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Add-Ons"
|
350 |
|
351 |
+
#: includes/class-freemius.php:15541
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
+
#: includes/class-freemius.php:15541
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "מחירון"
|
365 |
|
366 |
+
#: includes/class-freemius.php15756,
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "פורום תמיכה"
|
370 |
|
371 |
+
#: includes/class-freemius.php:16542
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Your email has been successfully verified - you are AWESOME!"
|
374 |
|
375 |
+
#: includes/class-freemius.php:16543
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "מעולה"
|
379 |
|
380 |
+
#: includes/class-freemius.php:17168
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
|
383 |
|
384 |
+
#: includes/class-freemius.php:17170
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "ההרחבה %s נרכשה בהצלחה."
|
387 |
|
388 |
+
#: includes/class-freemius.php:17173
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "הורד את הגרסה האחרונה"
|
391 |
|
392 |
+
#: includes/class-freemius.php:17259
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
396 |
|
397 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
398 |
+
#: includes/class-freemius.php:17755
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "הוחזרה שגיאה מהשרת:"
|
401 |
|
402 |
+
#: includes/class-freemius.php:17272
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
405 |
|
406 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
407 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "אממ"
|
411 |
|
412 |
+
#: includes/class-freemius.php:17467
|
413 |
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."
|
414 |
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."
|
415 |
|
416 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "ניסיון"
|
421 |
|
422 |
+
#: includes/class-freemius.php:17473
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
|
425 |
|
426 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "אנא צור איתנו קשר כאן"
|
429 |
|
430 |
+
#: includes/class-freemius.php:17487
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "החבילה שודרגה בהצלחה."
|
433 |
|
434 |
+
#: includes/class-freemius.php:17505
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "החבילה עודכנה בהצלחה אל %s."
|
437 |
|
438 |
+
#: includes/class-freemius.php:17521
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Your license has expired. You can still continue using the free %s forever."
|
441 |
|
442 |
+
#: includes/class-freemius.php:17523
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
445 |
|
446 |
+
#: includes/class-freemius.php:17531
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
|
449 |
|
450 |
+
#: includes/class-freemius.php:17544
|
451 |
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."
|
452 |
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."
|
453 |
|
454 |
+
#: includes/class-freemius.php:17567
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
|
457 |
|
458 |
+
#: includes/class-freemius.php:17569
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
461 |
|
462 |
+
#: includes/class-freemius.php:17674
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "נראה שלא ניתן להפעיל את הרישיון."
|
465 |
|
466 |
+
#: includes/class-freemius.php:17704
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "הרישיון הופעל בהצלחה."
|
469 |
|
470 |
+
#: includes/class-freemius.php:17730
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "נראה לאתר עדיין אין רישיון פעיל."
|
473 |
|
474 |
+
#: includes/class-freemius.php:17754
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "נראה שניתוק הרישיון נכשל."
|
477 |
|
478 |
+
#: includes/class-freemius.php:17782
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
|
481 |
|
482 |
+
#: includes/class-freemius.php:17783
|
483 |
msgid "O.K"
|
484 |
msgstr "אוקיי"
|
485 |
|
486 |
+
#: includes/class-freemius.php:17836
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
489 |
|
490 |
+
#: includes/class-freemius.php:17845
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
493 |
|
494 |
+
#: includes/class-freemius.php:17887
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "You are already running the %s in a trial mode."
|
497 |
|
498 |
+
#: includes/class-freemius.php:17898
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "הניסיון כבר נוצל בעבר."
|
501 |
|
502 |
+
#: includes/class-freemius.php:17912
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
|
505 |
|
506 |
+
#: includes/class-freemius.php:17923
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
|
509 |
|
510 |
+
#: includes/class-freemius.php:17934
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "None of the %s's plans supports a trial period."
|
513 |
|
514 |
+
#: includes/class-freemius.php:17984
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
517 |
|
518 |
+
#: includes/class-freemius.php:18020
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
|
521 |
|
522 |
+
#: includes/class-freemius.php:18039
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
|
525 |
|
526 |
+
#: includes/class-freemius.php:18346
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "גרסה %s הושקה."
|
529 |
|
530 |
+
#: includes/class-freemius.php:18346
|
531 |
msgid "Please download %s."
|
532 |
msgstr "נא להוריד את %s."
|
533 |
|
534 |
+
#: includes/class-freemius.php:18353
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "גרסת ה-%s האחרונה כאן"
|
537 |
|
538 |
+
#: includes/class-freemius.php:18358
|
539 |
msgid "New"
|
540 |
msgstr "חדש"
|
541 |
|
542 |
+
#: includes/class-freemius.php:18363
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "נראה שיש לך את הגרסה האחרונה."
|
545 |
|
546 |
+
#: includes/class-freemius.php:18364
|
547 |
msgid "You are all good!"
|
548 |
msgstr "את\\ה מסודר!"
|
549 |
|
550 |
+
#: includes/class-freemius.php:18632
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
553 |
|
554 |
+
#: includes/class-freemius.php:18769
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Site successfully opted in."
|
557 |
|
558 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
559 |
msgid "Awesome"
|
560 |
msgstr "אדיר"
|
561 |
|
562 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
565 |
|
566 |
+
#: includes/class-freemius.php:18787
|
567 |
msgid "Thank you!"
|
568 |
msgstr "תודה רבה!"
|
569 |
|
570 |
+
#: includes/class-freemius.php:18794
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
573 |
|
574 |
+
#: includes/class-freemius.php:18923
|
575 |
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."
|
576 |
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."
|
577 |
|
578 |
+
#: includes/class-freemius.php:18929
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
|
581 |
|
582 |
+
#: includes/class-freemius.php:18934
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s הינו הבעלים החד של חשבון זה."
|
585 |
|
586 |
+
#: includes/class-freemius.php:18936
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "מזל טוב"
|
590 |
|
591 |
+
#: includes/class-freemius.php:18956
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
594 |
|
595 |
+
#: includes/class-freemius.php:18957
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
598 |
|
599 |
+
#: includes/class-freemius.php:18964
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "עדכון בעלות"
|
602 |
|
603 |
+
#: includes/class-freemius.php:18972
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
|
606 |
|
607 |
+
#: includes/class-freemius.php:18984
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "נא למלא את שמך המלא."
|
610 |
|
611 |
+
#: includes/class-freemius.php:18989
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "שמך עודכן בהצלחה."
|
614 |
|
615 |
+
#: includes/class-freemius.php:19050
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "עידכנת בהצלחה את ה%s."
|
618 |
|
619 |
+
#: includes/class-freemius.php:19190
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
622 |
|
623 |
+
#: includes/class-freemius.php:19191
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "לתשמות לבך"
|
627 |
|
628 |
+
#: includes/class-freemius.php:19621
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "היי"
|
632 |
|
633 |
+
#: includes/class-freemius.php:19621
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
636 |
|
637 |
+
#: includes/class-freemius.php:19629
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
|
640 |
|
641 |
+
#: includes/class-freemius.php:19630
|
642 |
msgid "No credit card required"
|
643 |
msgstr "לא נדרש כרטיס אשראי"
|
644 |
|
645 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "התחלת ניסיון חינם"
|
649 |
|
650 |
+
#: includes/class-freemius.php:19714
|
651 |
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!"
|
652 |
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!"
|
653 |
|
654 |
+
#: includes/class-freemius.php:19723
|
655 |
msgid "Learn more"
|
656 |
msgstr "Learn more"
|
657 |
|
658 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "הפעלת רישיון"
|
664 |
|
665 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "שינוי רישיון"
|
669 |
|
670 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Opt Out"
|
673 |
|
674 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Opt In"
|
679 |
|
680 |
+
#: includes/class-freemius.php:20187
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
683 |
|
684 |
+
#: includes/class-freemius.php:20195
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activate %s features"
|
687 |
|
688 |
+
#: includes/class-freemius.php:20208
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
|
691 |
|
692 |
+
#: includes/class-freemius.php:20212
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "הורד\\י את גרסת ה-%s העדכנית"
|
695 |
|
696 |
+
#: includes/class-freemius.php:20216
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
|
699 |
|
700 |
+
#: includes/class-freemius.php:20218
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "איך להעלות ולהפעיל?"
|
703 |
|
704 |
+
#: includes/class-freemius.php:20352
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
707 |
|
708 |
+
#: includes/class-freemius.php:20513
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Auto installation only works for opted-in users."
|
711 |
|
712 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
713 |
+
#: includes/class-fs-plugin-updater.php1060,
|
714 |
+
#: includes/class-fs-plugin-updater.php:1074
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "מזהה המודול לא תקני."
|
717 |
|
718 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "הגרסה בתשלום כבר פעילה."
|
721 |
|
722 |
+
#: includes/class-freemius.php:20539
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
|
725 |
|
726 |
+
#: includes/class-freemius.php:20546
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
729 |
|
730 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium add-on version already installed."
|
733 |
|
734 |
+
#: includes/class-freemius.php:20909
|
735 |
msgid "View paid features"
|
736 |
msgstr "צפה בפיטצ'רים שבתשלום"
|
737 |
|
738 |
+
#: includes/class-freemius.php:21229
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Thank you so much for using %s and its add-ons!"
|
741 |
|
742 |
+
#: includes/class-freemius.php:21230
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "אנו מודים לך על היותך כמשתמש של %s!"
|
745 |
|
746 |
+
#: includes/class-freemius.php:21236
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
749 |
|
750 |
+
#: includes/class-freemius.php:21240
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
|
753 |
|
754 |
+
#: includes/class-freemius.php:21241
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
757 |
|
758 |
+
#: includes/class-freemius.php:21260
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%s and its add-ons"
|
761 |
|
762 |
+
#: includes/class-freemius.php:21269
|
763 |
msgid "Products"
|
764 |
msgstr "מוצרים"
|
765 |
|
766 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
767 |
msgid "Yes"
|
768 |
msgstr "כן"
|
769 |
|
770 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
|
773 |
|
774 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
775 |
msgid "No"
|
776 |
msgstr "לא"
|
777 |
|
778 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
|
781 |
|
782 |
+
#: includes/class-freemius.php:21290
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
785 |
|
786 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
789 |
|
790 |
+
#: includes/class-freemius.php:21574
|
791 |
msgid "License key is empty."
|
792 |
msgstr "מפתח הרישיון ריק."
|
793 |
|
809 |
msgid "new version"
|
810 |
msgstr "new version"
|
811 |
|
812 |
+
#: includes/class-fs-plugin-updater.php:305
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Important Upgrade Notice:"
|
815 |
|
816 |
+
#: includes/class-fs-plugin-updater.php:1125
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installing plugin: %s"
|
819 |
|
820 |
+
#: includes/class-fs-plugin-updater.php:1166
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
823 |
|
824 |
+
#: includes/class-fs-plugin-updater.php:1348
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
827 |
|
freemius/languages/freemius-hu_HU.mo
ADDED
Binary file
|
freemius/languages/freemius-hu_HU.po
ADDED
@@ -0,0 +1,2433 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
+
# This file is distributed under the same license as the freemius package.
|
3 |
+
# Translators:
|
4 |
+
# Peter Ambrus, 2018-2019
|
5 |
+
msgid ""
|
6 |
+
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: 2019-01-10 20:38+0000\n"
|
11 |
+
"Last-Translator: Peter Ambrus\n"
|
12 |
+
"Language: hu_HU\n"
|
13 |
+
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"MIME-Version: 1.0\n"
|
18 |
+
"X-Poedit-Basepath: ..\n"
|
19 |
+
"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"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
|
24 |
+
#: includes/class-freemius.php:1688
|
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 couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
27 |
+
|
28 |
+
#: includes/class-freemius.php:1690
|
29 |
+
msgid "Error"
|
30 |
+
msgstr "Hiba"
|
31 |
+
|
32 |
+
#: includes/class-freemius.php:2011
|
33 |
+
msgid "I found a better %s"
|
34 |
+
msgstr "Jobb %st találtam"
|
35 |
+
|
36 |
+
#: includes/class-freemius.php:2013
|
37 |
+
msgid "What's the %s's name?"
|
38 |
+
msgstr "Mi a %s neve?"
|
39 |
+
|
40 |
+
#: includes/class-freemius.php:2019
|
41 |
+
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
+
msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
|
43 |
+
|
44 |
+
#: includes/class-freemius.php:2021
|
45 |
+
msgid "Deactivation"
|
46 |
+
msgstr "Deaktiválás"
|
47 |
+
|
48 |
+
#: includes/class-freemius.php:2022
|
49 |
+
msgid "Theme Switch"
|
50 |
+
msgstr "Sablon váltás"
|
51 |
+
|
52 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
53 |
+
msgid "Other"
|
54 |
+
msgstr "Egyéb"
|
55 |
+
|
56 |
+
#: includes/class-freemius.php:2039
|
57 |
+
msgid "I no longer need the %s"
|
58 |
+
msgstr "I no longer need the %s"
|
59 |
+
|
60 |
+
#: includes/class-freemius.php:2046
|
61 |
+
msgid "I only needed the %s for a short period"
|
62 |
+
msgstr "I only needed the %s for a short period"
|
63 |
+
|
64 |
+
#: includes/class-freemius.php:2052
|
65 |
+
msgid "The %s broke my site"
|
66 |
+
msgstr "The %s broke my site"
|
67 |
+
|
68 |
+
#: includes/class-freemius.php:2059
|
69 |
+
msgid "The %s suddenly stopped working"
|
70 |
+
msgstr "The %s suddenly stopped working"
|
71 |
+
|
72 |
+
#: includes/class-freemius.php:2069
|
73 |
+
msgid "I can't pay for it anymore"
|
74 |
+
msgstr "Nem tudom tovább fizetni"
|
75 |
+
|
76 |
+
#: includes/class-freemius.php:2071
|
77 |
+
msgid "What price would you feel comfortable paying?"
|
78 |
+
msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
|
79 |
+
|
80 |
+
#: includes/class-freemius.php:2077
|
81 |
+
msgid "I don't like to share my information with you"
|
82 |
+
msgstr "Nem szeretném megosztani veletek az információt"
|
83 |
+
|
84 |
+
#: includes/class-freemius.php:2098
|
85 |
+
msgid "The %s didn't work"
|
86 |
+
msgstr "A %s nem működött"
|
87 |
+
|
88 |
+
#: includes/class-freemius.php:2108
|
89 |
+
msgid "I couldn't understand how to make it work"
|
90 |
+
msgstr "Nem értettem, hogy kell használni"
|
91 |
+
|
92 |
+
#: includes/class-freemius.php:2116
|
93 |
+
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
+
msgstr "The %s is great, but I need specific feature that you don't support"
|
95 |
+
|
96 |
+
#: includes/class-freemius.php:2118
|
97 |
+
msgid "What feature?"
|
98 |
+
msgstr "Melyik funkcióra van szükséged?"
|
99 |
+
|
100 |
+
#: includes/class-freemius.php:2122
|
101 |
+
msgid "The %s is not working"
|
102 |
+
msgstr "A(z) %s nem működik"
|
103 |
+
|
104 |
+
#: includes/class-freemius.php:2124
|
105 |
+
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
+
msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
|
107 |
+
|
108 |
+
#: includes/class-freemius.php:2128
|
109 |
+
msgid "It's not what I was looking for"
|
110 |
+
msgstr "Nem ezt kerestem"
|
111 |
+
|
112 |
+
#: includes/class-freemius.php:2130
|
113 |
+
msgid "What you've been looking for?"
|
114 |
+
msgstr "Pontosan mit kerestél?"
|
115 |
+
|
116 |
+
#: includes/class-freemius.php:2134
|
117 |
+
msgid "The %s didn't work as expected"
|
118 |
+
msgstr "A %s nem az elvárásoknak megfelelően működött"
|
119 |
+
|
120 |
+
#: includes/class-freemius.php:2136
|
121 |
+
msgid "What did you expect?"
|
122 |
+
msgstr "Mire számítottál?"
|
123 |
+
|
124 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
125 |
+
msgid "Freemius Debug"
|
126 |
+
msgstr "Freemius Debug"
|
127 |
+
|
128 |
+
#: includes/class-freemius.php:3670
|
129 |
+
msgid "I don't know what is cURL or how to install it, help me!"
|
130 |
+
msgstr "I don't know what is cURL or how to install it, help me!"
|
131 |
+
|
132 |
+
#: includes/class-freemius.php:3672
|
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 "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 |
+
|
136 |
+
#: includes/class-freemius.php:3679
|
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 "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 |
+
|
140 |
+
#: includes/class-freemius.php:3784
|
141 |
+
msgid "Yes - do your thing"
|
142 |
+
msgstr "Igen - tedd a dolgod"
|
143 |
+
|
144 |
+
#: includes/class-freemius.php:3789
|
145 |
+
msgid "No - just deactivate"
|
146 |
+
msgstr "Nem - csak deaktiválom"
|
147 |
+
|
148 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
149 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
150 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
151 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
152 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
153 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
154 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
155 |
+
msgctxt "exclamation"
|
156 |
+
msgid "Oops"
|
157 |
+
msgstr "Hoppá"
|
158 |
+
|
159 |
+
#: includes/class-freemius.php:3903
|
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 "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 |
+
|
163 |
+
#: includes/class-freemius.php:4340
|
164 |
+
msgctxt "addonX cannot run without pluginY"
|
165 |
+
msgid "%s cannot run without %s."
|
166 |
+
msgstr "%s cannot run without %s."
|
167 |
+
|
168 |
+
#: includes/class-freemius.php:4341
|
169 |
+
msgctxt "addonX cannot run..."
|
170 |
+
msgid "%s cannot run without the plugin."
|
171 |
+
msgstr "%s cannot run without the plugin."
|
172 |
+
|
173 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
174 |
+
#: includes/class-freemius.php:17953
|
175 |
+
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
176 |
+
msgstr "Unexpected API error. Please contact the %s's author with the following error."
|
177 |
+
|
178 |
+
#: includes/class-freemius.php:5130
|
179 |
+
msgid "Premium %s version was successfully activated."
|
180 |
+
msgstr "Premium %s version was successfully activated."
|
181 |
+
|
182 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
183 |
+
msgctxt ""
|
184 |
+
msgid "W00t"
|
185 |
+
msgstr "Fantasztikus"
|
186 |
+
|
187 |
+
#: includes/class-freemius.php:5157
|
188 |
+
msgid "You have a %s license."
|
189 |
+
msgstr "You have a %s license."
|
190 |
+
|
191 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
192 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
193 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
194 |
+
#: includes/class-freemius.php:17707
|
195 |
+
msgctxt "interjection expressing joy or exuberance"
|
196 |
+
msgid "Yee-haw"
|
197 |
+
msgstr "Juhuuu"
|
198 |
+
|
199 |
+
#: includes/class-freemius.php:5425
|
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 "%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 |
+
|
203 |
+
#: includes/class-freemius.php:5429
|
204 |
+
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
205 |
+
msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
206 |
+
|
207 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
208 |
+
#: templates/account/partials/addon.php:288
|
209 |
+
msgid "More information about %s"
|
210 |
+
msgstr "More information about %s"
|
211 |
+
|
212 |
+
#: includes/class-freemius.php:5439
|
213 |
+
msgid "Purchase License"
|
214 |
+
msgstr "Licensz vásárlása"
|
215 |
+
|
216 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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 "Küldtünk egy aktivációs emailt a(z) %s szoftverünkhöz a következő email címre: %s. Kérlek kattints a levélben található aktivációs linkre, hogy %s."
|
219 |
+
|
220 |
+
#: includes/class-freemius.php:6376
|
221 |
+
msgid "start the trial"
|
222 |
+
msgstr "próbaidő indítása"
|
223 |
+
|
224 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
225 |
+
msgid "complete the install"
|
226 |
+
msgstr "befejezd a telepítést"
|
227 |
+
|
228 |
+
#: includes/class-freemius.php:6490
|
229 |
+
msgid "You are just one step away - %s"
|
230 |
+
msgstr "Már csak egy lépés van hátra - %s"
|
231 |
+
|
232 |
+
#: includes/class-freemius.php:6493
|
233 |
+
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
+
msgid "Complete \"%s\" Activation Now"
|
235 |
+
msgstr "\"%s\" aktiválásának a befejezése most"
|
236 |
+
|
237 |
+
#: includes/class-freemius.php:6571
|
238 |
+
msgid "We made a few tweaks to the %s, %s"
|
239 |
+
msgstr "We made a few tweaks to the %s, %s"
|
240 |
+
|
241 |
+
#: includes/class-freemius.php:6575
|
242 |
+
msgid "Opt in to make \"%s\" better!"
|
243 |
+
msgstr "Opt in to make \"%s\" better!"
|
244 |
+
|
245 |
+
#: includes/class-freemius.php:7003
|
246 |
+
msgid "The upgrade of %s was successfully completed."
|
247 |
+
msgstr "The upgrade of %s was successfully completed."
|
248 |
+
|
249 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
250 |
+
#: includes/class-fs-plugin-updater.php1081,
|
251 |
+
#: includes/class-fs-plugin-updater.php1088,
|
252 |
+
#: templates/auto-installation.php:32
|
253 |
+
msgid "Add-On"
|
254 |
+
msgstr "Kiegészítő"
|
255 |
+
|
256 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
257 |
+
#: templates/debug.php:520
|
258 |
+
msgid "Plugin"
|
259 |
+
msgstr "Bővítmény"
|
260 |
+
|
261 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
262 |
+
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
+
msgid "Theme"
|
264 |
+
msgstr "Sablon"
|
265 |
+
|
266 |
+
#: includes/class-freemius.php:11412
|
267 |
+
msgid "Invalid site details collection."
|
268 |
+
msgstr "Invalid site details collection."
|
269 |
+
|
270 |
+
#: includes/class-freemius.php:11532
|
271 |
+
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
+
msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
+
|
274 |
+
#: includes/class-freemius.php:11534
|
275 |
+
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
+
msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
+
|
278 |
+
#: includes/class-freemius.php:11808
|
279 |
+
msgid "Account is pending activation."
|
280 |
+
msgstr "A fiók aktiválása függőben."
|
281 |
+
|
282 |
+
#: includes/class-freemius.php11920,
|
283 |
+
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
+
msgid "Buy a license now"
|
285 |
+
msgstr "Vásárolj licenszet most"
|
286 |
+
|
287 |
+
#: includes/class-freemius.php11932,
|
288 |
+
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
+
msgid "Renew your license now"
|
290 |
+
msgstr "Licensz kulcs megújítása"
|
291 |
+
|
292 |
+
#: includes/class-freemius.php:11936
|
293 |
+
msgid "%s to access version %s security & feature updates, and support."
|
294 |
+
msgstr "%s to access version %s security & feature updates, and support."
|
295 |
+
|
296 |
+
#: includes/class-freemius.php:14319
|
297 |
+
msgid "%s activation was successfully completed."
|
298 |
+
msgstr "%s activation was successfully completed."
|
299 |
+
|
300 |
+
#: includes/class-freemius.php:14333
|
301 |
+
msgid "Your account was successfully activated with the %s plan."
|
302 |
+
msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
|
303 |
+
|
304 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
305 |
+
msgid "Your trial has been successfully started."
|
306 |
+
msgstr "A próbaidőszakodat sikeresen aktiváltuk."
|
307 |
+
|
308 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
309 |
+
#: includes/class-freemius.php:15028
|
310 |
+
msgid "Couldn't activate %s."
|
311 |
+
msgstr "Couldn't activate %s."
|
312 |
+
|
313 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
314 |
+
#: includes/class-freemius.php:15029
|
315 |
+
msgid "Please contact us with the following message:"
|
316 |
+
msgstr "Please contact us with the following message:"
|
317 |
+
|
318 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
319 |
+
msgid "Upgrade"
|
320 |
+
msgstr "Előfizetés frissítése"
|
321 |
+
|
322 |
+
#: includes/class-freemius.php:15384
|
323 |
+
msgid "Start Trial"
|
324 |
+
msgstr "Próbaidő indítása"
|
325 |
+
|
326 |
+
#: includes/class-freemius.php:15386
|
327 |
+
msgid "Pricing"
|
328 |
+
msgstr "Árak"
|
329 |
+
|
330 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
331 |
+
msgid "Affiliation"
|
332 |
+
msgstr "Affiliation"
|
333 |
+
|
334 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
335 |
+
#: templates/account.php150, templates/debug.php:324
|
336 |
+
msgid "Account"
|
337 |
+
msgstr "Fiók"
|
338 |
+
|
339 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
340 |
+
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
+
msgid "Contact Us"
|
342 |
+
msgstr "Kapcsolat"
|
343 |
+
|
344 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
345 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
346 |
+
#: templates/account/partials/addon.php:41
|
347 |
+
msgid "Add-Ons"
|
348 |
+
msgstr "Kiegészítők"
|
349 |
+
|
350 |
+
#: includes/class-freemius.php:15541
|
351 |
+
msgctxt "ASCII arrow left icon"
|
352 |
+
msgid "←"
|
353 |
+
msgstr "←"
|
354 |
+
|
355 |
+
#: includes/class-freemius.php:15541
|
356 |
+
msgctxt "ASCII arrow right icon"
|
357 |
+
msgid "➤"
|
358 |
+
msgstr "➤"
|
359 |
+
|
360 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
361 |
+
msgctxt "noun"
|
362 |
+
msgid "Pricing"
|
363 |
+
msgstr "Árak"
|
364 |
+
|
365 |
+
#: includes/class-freemius.php15756,
|
366 |
+
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
+
msgid "Support Forum"
|
368 |
+
msgstr "Támogató fórum"
|
369 |
+
|
370 |
+
#: includes/class-freemius.php:16542
|
371 |
+
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
+
msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
|
373 |
+
|
374 |
+
#: includes/class-freemius.php:16543
|
375 |
+
msgctxt "a positive response"
|
376 |
+
msgid "Right on"
|
377 |
+
msgstr "Right on"
|
378 |
+
|
379 |
+
#: includes/class-freemius.php:17168
|
380 |
+
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
+
msgstr "Your %s Add-on plan was successfully upgraded."
|
382 |
+
|
383 |
+
#: includes/class-freemius.php:17170
|
384 |
+
msgid "%s Add-on was successfully purchased."
|
385 |
+
msgstr "%s Add-on was successfully purchased."
|
386 |
+
|
387 |
+
#: includes/class-freemius.php:17173
|
388 |
+
msgid "Download the latest version"
|
389 |
+
msgstr "Töltsd le a legfrissebb verziót"
|
390 |
+
|
391 |
+
#: includes/class-freemius.php:17259
|
392 |
+
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
+
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
+
msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
+
|
396 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
397 |
+
#: includes/class-freemius.php:17755
|
398 |
+
msgid "Error received from the server:"
|
399 |
+
msgstr "Error received from the server:"
|
400 |
+
|
401 |
+
#: includes/class-freemius.php:17272
|
402 |
+
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
+
msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
+
|
405 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
406 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
407 |
+
msgctxt ""
|
408 |
+
msgid "Hmm"
|
409 |
+
msgstr "Hmm"
|
410 |
+
|
411 |
+
#: includes/class-freemius.php:17467
|
412 |
+
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."
|
413 |
+
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."
|
414 |
+
|
415 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
416 |
+
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
+
msgctxt "trial period"
|
418 |
+
msgid "Trial"
|
419 |
+
msgstr "Próbaidő"
|
420 |
+
|
421 |
+
#: includes/class-freemius.php:17473
|
422 |
+
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
+
msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
+
|
425 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
426 |
+
msgid "Please contact us here"
|
427 |
+
msgstr "Please contact us here"
|
428 |
+
|
429 |
+
#: includes/class-freemius.php:17487
|
430 |
+
msgid "Your plan was successfully upgraded."
|
431 |
+
msgstr "Your plan was successfully upgraded."
|
432 |
+
|
433 |
+
#: includes/class-freemius.php:17505
|
434 |
+
msgid "Your plan was successfully changed to %s."
|
435 |
+
msgstr "Your plan was successfully changed to %s."
|
436 |
+
|
437 |
+
#: includes/class-freemius.php:17521
|
438 |
+
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
+
msgstr "Your license has expired. You can still continue using the free %s forever."
|
440 |
+
|
441 |
+
#: includes/class-freemius.php:17523
|
442 |
+
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
+
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
+
|
445 |
+
#: includes/class-freemius.php:17531
|
446 |
+
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
+
msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
+
|
449 |
+
#: includes/class-freemius.php:17544
|
450 |
+
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."
|
451 |
+
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."
|
452 |
+
|
453 |
+
#: includes/class-freemius.php:17567
|
454 |
+
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
+
msgstr "Your free trial has expired. You can still continue using all our free features."
|
456 |
+
|
457 |
+
#: includes/class-freemius.php:17569
|
458 |
+
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
+
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
+
|
461 |
+
#: includes/class-freemius.php:17674
|
462 |
+
msgid "It looks like the license could not be activated."
|
463 |
+
msgstr "It looks like the license could not be activated."
|
464 |
+
|
465 |
+
#: includes/class-freemius.php:17704
|
466 |
+
msgid "Your license was successfully activated."
|
467 |
+
msgstr "Your license was successfully activated."
|
468 |
+
|
469 |
+
#: includes/class-freemius.php:17730
|
470 |
+
msgid "It looks like your site currently doesn't have an active license."
|
471 |
+
msgstr "It looks like your site currently doesn't have an active license."
|
472 |
+
|
473 |
+
#: includes/class-freemius.php:17754
|
474 |
+
msgid "It looks like the license deactivation failed."
|
475 |
+
msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
|
476 |
+
|
477 |
+
#: includes/class-freemius.php:17782
|
478 |
+
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
+
msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
|
480 |
+
|
481 |
+
#: includes/class-freemius.php:17783
|
482 |
+
msgid "O.K"
|
483 |
+
msgstr "Rendben"
|
484 |
+
|
485 |
+
#: includes/class-freemius.php:17836
|
486 |
+
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
+
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
+
|
489 |
+
#: includes/class-freemius.php:17845
|
490 |
+
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
+
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
+
|
493 |
+
#: includes/class-freemius.php:17887
|
494 |
+
msgid "You are already running the %s in a trial mode."
|
495 |
+
msgstr "You are already running the %s in a trial mode."
|
496 |
+
|
497 |
+
#: includes/class-freemius.php:17898
|
498 |
+
msgid "You already utilized a trial before."
|
499 |
+
msgstr "You already utilized a trial before."
|
500 |
+
|
501 |
+
#: includes/class-freemius.php:17912
|
502 |
+
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
+
msgstr "Plan %s do not exist, therefore, can't start a trial."
|
504 |
+
|
505 |
+
#: includes/class-freemius.php:17923
|
506 |
+
msgid "Plan %s does not support a trial period."
|
507 |
+
msgstr "Plan %s does not support a trial period."
|
508 |
+
|
509 |
+
#: includes/class-freemius.php:17934
|
510 |
+
msgid "None of the %s's plans supports a trial period."
|
511 |
+
msgstr "None of the %s's plans supports a trial period."
|
512 |
+
|
513 |
+
#: includes/class-freemius.php:17984
|
514 |
+
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
+
msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
+
|
517 |
+
#: includes/class-freemius.php:18020
|
518 |
+
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
+
msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
+
|
521 |
+
#: includes/class-freemius.php:18039
|
522 |
+
msgid "Your %s free trial was successfully cancelled."
|
523 |
+
msgstr "Your %s free trial was successfully cancelled."
|
524 |
+
|
525 |
+
#: includes/class-freemius.php:18346
|
526 |
+
msgid "Version %s was released."
|
527 |
+
msgstr "Version %s was released."
|
528 |
+
|
529 |
+
#: includes/class-freemius.php:18346
|
530 |
+
msgid "Please download %s."
|
531 |
+
msgstr "Please download %s."
|
532 |
+
|
533 |
+
#: includes/class-freemius.php:18353
|
534 |
+
msgid "the latest %s version here"
|
535 |
+
msgstr "the latest %s version here"
|
536 |
+
|
537 |
+
#: includes/class-freemius.php:18358
|
538 |
+
msgid "New"
|
539 |
+
msgstr "Új"
|
540 |
+
|
541 |
+
#: includes/class-freemius.php:18363
|
542 |
+
msgid "Seems like you got the latest release."
|
543 |
+
msgstr "Seems like you got the latest release."
|
544 |
+
|
545 |
+
#: includes/class-freemius.php:18364
|
546 |
+
msgid "You are all good!"
|
547 |
+
msgstr "Minden rendben!"
|
548 |
+
|
549 |
+
#: includes/class-freemius.php:18632
|
550 |
+
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
+
msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
+
|
553 |
+
#: includes/class-freemius.php:18769
|
554 |
+
msgid "Site successfully opted in."
|
555 |
+
msgstr "Site successfully opted in."
|
556 |
+
|
557 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
558 |
+
msgid "Awesome"
|
559 |
+
msgstr "Nagyszerű"
|
560 |
+
|
561 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
562 |
+
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
+
msgstr "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
+
|
565 |
+
#: includes/class-freemius.php:18787
|
566 |
+
msgid "Thank you!"
|
567 |
+
msgstr "Köszönjük!"
|
568 |
+
|
569 |
+
#: includes/class-freemius.php:18794
|
570 |
+
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
+
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
+
|
573 |
+
#: includes/class-freemius.php:18923
|
574 |
+
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."
|
575 |
+
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."
|
576 |
+
|
577 |
+
#: includes/class-freemius.php:18929
|
578 |
+
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
+
msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
+
|
581 |
+
#: includes/class-freemius.php:18934
|
582 |
+
msgid "%s is the new owner of the account."
|
583 |
+
msgstr "%s is the new owner of the account."
|
584 |
+
|
585 |
+
#: includes/class-freemius.php:18936
|
586 |
+
msgctxt "as congratulations"
|
587 |
+
msgid "Congrats"
|
588 |
+
msgstr "Gratulálunk"
|
589 |
+
|
590 |
+
#: includes/class-freemius.php:18956
|
591 |
+
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
+
msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
+
|
594 |
+
#: includes/class-freemius.php:18957
|
595 |
+
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
+
msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
+
|
598 |
+
#: includes/class-freemius.php:18964
|
599 |
+
msgid "Change Ownership"
|
600 |
+
msgstr "Tulajdonos módosítása"
|
601 |
+
|
602 |
+
#: includes/class-freemius.php:18972
|
603 |
+
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
+
msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
+
|
606 |
+
#: includes/class-freemius.php:18984
|
607 |
+
msgid "Please provide your full name."
|
608 |
+
msgstr "Kérlek add meg a teljes neved!"
|
609 |
+
|
610 |
+
#: includes/class-freemius.php:18989
|
611 |
+
msgid "Your name was successfully updated."
|
612 |
+
msgstr "A neved sikeresen frissítettük."
|
613 |
+
|
614 |
+
#: includes/class-freemius.php:19050
|
615 |
+
msgid "You have successfully updated your %s."
|
616 |
+
msgstr "You have successfully updated your %s."
|
617 |
+
|
618 |
+
#: includes/class-freemius.php:19190
|
619 |
+
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
+
msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
+
|
622 |
+
#: includes/class-freemius.php:19191
|
623 |
+
msgctxt "advance notice of something that will need attention."
|
624 |
+
msgid "Heads up"
|
625 |
+
msgstr "Figyelem"
|
626 |
+
|
627 |
+
#: includes/class-freemius.php:19621
|
628 |
+
msgctxt "exclamation"
|
629 |
+
msgid "Hey"
|
630 |
+
msgstr "Üdv"
|
631 |
+
|
632 |
+
#: includes/class-freemius.php:19621
|
633 |
+
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
+
msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
+
|
636 |
+
#: includes/class-freemius.php:19629
|
637 |
+
msgid "No commitment for %s days - cancel anytime!"
|
638 |
+
msgstr "No commitment for %s days - cancel anytime!"
|
639 |
+
|
640 |
+
#: includes/class-freemius.php:19630
|
641 |
+
msgid "No credit card required"
|
642 |
+
msgstr "Bankkártya megadása nem kötelező"
|
643 |
+
|
644 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
645 |
+
msgctxt "call to action"
|
646 |
+
msgid "Start free trial"
|
647 |
+
msgstr "Start free trial"
|
648 |
+
|
649 |
+
#: includes/class-freemius.php:19714
|
650 |
+
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!"
|
651 |
+
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!"
|
652 |
+
|
653 |
+
#: includes/class-freemius.php:19723
|
654 |
+
msgid "Learn more"
|
655 |
+
msgstr "Bővebben"
|
656 |
+
|
657 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
658 |
+
#: templates/account.php509, templates/connect.php171,
|
659 |
+
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
+
#: templates/account/partials/addon.php:235
|
661 |
+
msgid "Activate License"
|
662 |
+
msgstr "Licensz aktiválása"
|
663 |
+
|
664 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
665 |
+
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
+
msgid "Change License"
|
667 |
+
msgstr "Licensz módosítása"
|
668 |
+
|
669 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
670 |
+
msgid "Opt Out"
|
671 |
+
msgstr "Leiratkozás"
|
672 |
+
|
673 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
674 |
+
#: templates/account/partials/site.php43,
|
675 |
+
#: templates/account/partials/site.php:161
|
676 |
+
msgid "Opt In"
|
677 |
+
msgstr "Feliratkozás"
|
678 |
+
|
679 |
+
#: includes/class-freemius.php:20187
|
680 |
+
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
+
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
+
|
683 |
+
#: includes/class-freemius.php:20195
|
684 |
+
msgid "Activate %s features"
|
685 |
+
msgstr "Activate %s features"
|
686 |
+
|
687 |
+
#: includes/class-freemius.php:20208
|
688 |
+
msgid "Please follow these steps to complete the upgrade"
|
689 |
+
msgstr "Please follow these steps to complete the upgrade"
|
690 |
+
|
691 |
+
#: includes/class-freemius.php:20212
|
692 |
+
msgid "Download the latest %s version"
|
693 |
+
msgstr "Download the latest %s version"
|
694 |
+
|
695 |
+
#: includes/class-freemius.php:20216
|
696 |
+
msgid "Upload and activate the downloaded version"
|
697 |
+
msgstr "Upload and activate the downloaded version"
|
698 |
+
|
699 |
+
#: includes/class-freemius.php:20218
|
700 |
+
msgid "How to upload and activate?"
|
701 |
+
msgstr "How to upload and activate?"
|
702 |
+
|
703 |
+
#: includes/class-freemius.php:20352
|
704 |
+
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
+
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
+
|
707 |
+
#: includes/class-freemius.php:20513
|
708 |
+
msgid "Auto installation only works for opted-in users."
|
709 |
+
msgstr "Auto installation only works for opted-in users."
|
710 |
+
|
711 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
712 |
+
#: includes/class-fs-plugin-updater.php1060,
|
713 |
+
#: includes/class-fs-plugin-updater.php:1074
|
714 |
+
msgid "Invalid module ID."
|
715 |
+
msgstr "Invalid module ID."
|
716 |
+
|
717 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
718 |
+
msgid "Premium version already active."
|
719 |
+
msgstr "Premium version already active."
|
720 |
+
|
721 |
+
#: includes/class-freemius.php:20539
|
722 |
+
msgid "You do not have a valid license to access the premium version."
|
723 |
+
msgstr "You do not have a valid license to access the premium version."
|
724 |
+
|
725 |
+
#: includes/class-freemius.php:20546
|
726 |
+
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
+
msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
+
|
729 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
730 |
+
msgid "Premium add-on version already installed."
|
731 |
+
msgstr "Premium add-on version already installed."
|
732 |
+
|
733 |
+
#: includes/class-freemius.php:20909
|
734 |
+
msgid "View paid features"
|
735 |
+
msgstr "Fizetős funkciók megtekintése"
|
736 |
+
|
737 |
+
#: includes/class-freemius.php:21229
|
738 |
+
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
+
msgstr "Thank you so much for using %s and its add-ons!"
|
740 |
+
|
741 |
+
#: includes/class-freemius.php:21230
|
742 |
+
msgid "Thank you so much for using %s!"
|
743 |
+
msgstr "Thank you so much for using %s!"
|
744 |
+
|
745 |
+
#: includes/class-freemius.php:21236
|
746 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
+
|
749 |
+
#: includes/class-freemius.php:21240
|
750 |
+
msgid "Thank you so much for using our products!"
|
751 |
+
msgstr "Thank you so much for using our products!"
|
752 |
+
|
753 |
+
#: includes/class-freemius.php:21241
|
754 |
+
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
+
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
+
|
757 |
+
#: includes/class-freemius.php:21260
|
758 |
+
msgid "%s and its add-ons"
|
759 |
+
msgstr "%s and its add-ons"
|
760 |
+
|
761 |
+
#: includes/class-freemius.php:21269
|
762 |
+
msgid "Products"
|
763 |
+
msgstr "Termékek"
|
764 |
+
|
765 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
766 |
+
msgid "Yes"
|
767 |
+
msgstr "Igen"
|
768 |
+
|
769 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
770 |
+
msgid "send me security & feature updates, educational content and offers."
|
771 |
+
msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
|
772 |
+
|
773 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
774 |
+
msgid "No"
|
775 |
+
msgstr "Nem"
|
776 |
+
|
777 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
778 |
+
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
+
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
+
|
781 |
+
#: includes/class-freemius.php:21290
|
782 |
+
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
+
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
+
|
785 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
786 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
+
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
+
|
789 |
+
#: includes/class-freemius.php:21574
|
790 |
+
msgid "License key is empty."
|
791 |
+
msgstr "A licensz kulcs üres."
|
792 |
+
|
793 |
+
#: includes/class-fs-plugin-updater.php184,
|
794 |
+
#: templates/forms/premium-versions-upgrade-handler.php:57
|
795 |
+
msgid "Renew license"
|
796 |
+
msgstr "Licensz megújítása"
|
797 |
+
|
798 |
+
#: includes/class-fs-plugin-updater.php189,
|
799 |
+
#: templates/forms/premium-versions-upgrade-handler.php:58
|
800 |
+
msgid "Buy license"
|
801 |
+
msgstr "Licensz vásárlása"
|
802 |
+
|
803 |
+
#: includes/class-fs-plugin-updater.php:278
|
804 |
+
msgid "There is a %s of %s available."
|
805 |
+
msgstr "There is a %s of %s available."
|
806 |
+
|
807 |
+
#: includes/class-fs-plugin-updater.php:282
|
808 |
+
msgid "new version"
|
809 |
+
msgstr "új verzió"
|
810 |
+
|
811 |
+
#: includes/class-fs-plugin-updater.php:305
|
812 |
+
msgid "Important Upgrade Notice:"
|
813 |
+
msgstr "Important Upgrade Notice:"
|
814 |
+
|
815 |
+
#: includes/class-fs-plugin-updater.php:1125
|
816 |
+
msgid "Installing plugin: %s"
|
817 |
+
msgstr "Bővítmény telepítése: %s"
|
818 |
+
|
819 |
+
#: includes/class-fs-plugin-updater.php:1166
|
820 |
+
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
+
msgstr "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
+
|
823 |
+
#: includes/class-fs-plugin-updater.php:1348
|
824 |
+
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
+
msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
+
|
827 |
+
#: includes/fs-plugin-info-dialog.php369,
|
828 |
+
#: templates/account/partials/addon.php:292
|
829 |
+
msgctxt "verb"
|
830 |
+
msgid "Purchase"
|
831 |
+
msgstr "Vásárlás"
|
832 |
+
|
833 |
+
#: includes/fs-plugin-info-dialog.php:372
|
834 |
+
msgid "Start my free %s"
|
835 |
+
msgstr "Start my free %s"
|
836 |
+
|
837 |
+
#: includes/fs-plugin-info-dialog.php:413
|
838 |
+
msgid "Install Free Version Now"
|
839 |
+
msgstr "Install Free Version Now"
|
840 |
+
|
841 |
+
#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111,
|
842 |
+
#: templates/account/partials/addon.php272,
|
843 |
+
#: templates/account/partials/addon.php:322
|
844 |
+
msgid "Install Now"
|
845 |
+
msgstr "Telepítés most"
|
846 |
+
|
847 |
+
#: includes/fs-plugin-info-dialog.php:425
|
848 |
+
msgctxt "as download latest version"
|
849 |
+
msgid "Download Latest Free Version"
|
850 |
+
msgstr "Download Latest Free Version"
|
851 |
+
|
852 |
+
#: includes/fs-plugin-info-dialog.php426, templates/account.php80,
|
853 |
+
#: templates/account/partials/addon.php:21
|
854 |
+
msgctxt "as download latest version"
|
855 |
+
msgid "Download Latest"
|
856 |
+
msgstr "Download Latest"
|
857 |
+
|
858 |
+
#: includes/fs-plugin-info-dialog.php:436
|
859 |
+
msgid "Install Free Version Update Now"
|
860 |
+
msgstr "Install Free Version Update Now"
|
861 |
+
|
862 |
+
#: includes/fs-plugin-info-dialog.php437, templates/account.php:460
|
863 |
+
msgid "Install Update Now"
|
864 |
+
msgstr "Frissítés telepítése most"
|
865 |
+
|
866 |
+
#: includes/fs-plugin-info-dialog.php:448
|
867 |
+
msgid "Newer Free Version (%s) Installed"
|
868 |
+
msgstr "Newer Free Version (%s) Installed"
|
869 |
+
|
870 |
+
#: includes/fs-plugin-info-dialog.php:449
|
871 |
+
msgid "Newer Version (%s) Installed"
|
872 |
+
msgstr "Newer Version (%s) Installed"
|
873 |
+
|
874 |
+
#: includes/fs-plugin-info-dialog.php:457
|
875 |
+
msgid "Latest Free Version Installed"
|
876 |
+
msgstr "Legfrissebb ingyenes verzió telepítve"
|
877 |
+
|
878 |
+
#: includes/fs-plugin-info-dialog.php:458
|
879 |
+
msgid "Latest Version Installed"
|
880 |
+
msgstr "Legfrissebb verzió telepítve"
|
881 |
+
|
882 |
+
#: includes/fs-plugin-info-dialog.php:613
|
883 |
+
msgctxt "Plugin installer section title"
|
884 |
+
msgid "Description"
|
885 |
+
msgstr "Leírás"
|
886 |
+
|
887 |
+
#: includes/fs-plugin-info-dialog.php:614
|
888 |
+
msgctxt "Plugin installer section title"
|
889 |
+
msgid "Installation"
|
890 |
+
msgstr "Telepítés"
|
891 |
+
|
892 |
+
#: includes/fs-plugin-info-dialog.php:615
|
893 |
+
msgctxt "Plugin installer section title"
|
894 |
+
msgid "FAQ"
|
895 |
+
msgstr "GYIK"
|
896 |
+
|
897 |
+
#: includes/fs-plugin-info-dialog.php616,
|
898 |
+
#: templates/plugin-info/description.php:55
|
899 |
+
msgid "Screenshots"
|
900 |
+
msgstr "Képernyőfotók"
|
901 |
+
|
902 |
+
#: includes/fs-plugin-info-dialog.php:617
|
903 |
+
msgctxt "Plugin installer section title"
|
904 |
+
msgid "Changelog"
|
905 |
+
msgstr "Változtatások"
|
906 |
+
|
907 |
+
#: includes/fs-plugin-info-dialog.php:618
|
908 |
+
msgctxt "Plugin installer section title"
|
909 |
+
msgid "Reviews"
|
910 |
+
msgstr "Vélemények"
|
911 |
+
|
912 |
+
#: includes/fs-plugin-info-dialog.php:619
|
913 |
+
msgctxt "Plugin installer section title"
|
914 |
+
msgid "Other Notes"
|
915 |
+
msgstr "Egyéb megjegyzések"
|
916 |
+
|
917 |
+
#: includes/fs-plugin-info-dialog.php:634
|
918 |
+
msgctxt "Plugin installer section title"
|
919 |
+
msgid "Features & Pricing"
|
920 |
+
msgstr "Funkciók & Árak"
|
921 |
+
|
922 |
+
#: includes/fs-plugin-info-dialog.php:644
|
923 |
+
msgid "Plugin Install"
|
924 |
+
msgstr "Bővítmény telepítése"
|
925 |
+
|
926 |
+
#: includes/fs-plugin-info-dialog.php:716
|
927 |
+
msgctxt "e.g. Professional Plan"
|
928 |
+
msgid "%s Plan"
|
929 |
+
msgstr "%s csomag"
|
930 |
+
|
931 |
+
#: includes/fs-plugin-info-dialog.php:742
|
932 |
+
msgctxt "e.g. the best product"
|
933 |
+
msgid "Best"
|
934 |
+
msgstr "Legjobb"
|
935 |
+
|
936 |
+
#: includes/fs-plugin-info-dialog.php748,
|
937 |
+
#: includes/fs-plugin-info-dialog.php:768
|
938 |
+
msgctxt "as every month"
|
939 |
+
msgid "Monthly"
|
940 |
+
msgstr "Havi"
|
941 |
+
|
942 |
+
#: includes/fs-plugin-info-dialog.php:751
|
943 |
+
msgctxt "as once a year"
|
944 |
+
msgid "Annual"
|
945 |
+
msgstr "Éves"
|
946 |
+
|
947 |
+
#: includes/fs-plugin-info-dialog.php:754
|
948 |
+
msgid "Lifetime"
|
949 |
+
msgstr "Örök"
|
950 |
+
|
951 |
+
#: includes/fs-plugin-info-dialog.php768,
|
952 |
+
#: includes/fs-plugin-info-dialog.php770,
|
953 |
+
#: includes/fs-plugin-info-dialog.php:772
|
954 |
+
msgctxt "e.g. billed monthly"
|
955 |
+
msgid "Billed %s"
|
956 |
+
msgstr "%s számlázás"
|
957 |
+
|
958 |
+
#: includes/fs-plugin-info-dialog.php:770
|
959 |
+
msgctxt "as once a year"
|
960 |
+
msgid "Annually"
|
961 |
+
msgstr "Éves"
|
962 |
+
|
963 |
+
#: includes/fs-plugin-info-dialog.php:772
|
964 |
+
msgctxt "as once a year"
|
965 |
+
msgid "Once"
|
966 |
+
msgstr "Egyszeri"
|
967 |
+
|
968 |
+
#: includes/fs-plugin-info-dialog.php:778
|
969 |
+
msgid "Single Site License"
|
970 |
+
msgstr "Egy weboldalas licensz"
|
971 |
+
|
972 |
+
#: includes/fs-plugin-info-dialog.php:780
|
973 |
+
msgid "Unlimited Licenses"
|
974 |
+
msgstr "Korlátlan licensz"
|
975 |
+
|
976 |
+
#: includes/fs-plugin-info-dialog.php:782
|
977 |
+
msgid "Up to %s Sites"
|
978 |
+
msgstr "Up to %s Sites"
|
979 |
+
|
980 |
+
#: includes/fs-plugin-info-dialog.php792,
|
981 |
+
#: templates/plugin-info/features.php:82
|
982 |
+
msgctxt "as monthly period"
|
983 |
+
msgid "mo"
|
984 |
+
msgstr "hó"
|
985 |
+
|
986 |
+
#: includes/fs-plugin-info-dialog.php799,
|
987 |
+
#: templates/plugin-info/features.php:80
|
988 |
+
msgctxt "as annual period"
|
989 |
+
msgid "year"
|
990 |
+
msgstr "év"
|
991 |
+
|
992 |
+
#: includes/fs-plugin-info-dialog.php:853
|
993 |
+
msgctxt "noun"
|
994 |
+
msgid "Price"
|
995 |
+
msgstr "Ár"
|
996 |
+
|
997 |
+
#: includes/fs-plugin-info-dialog.php:901
|
998 |
+
msgid "Save %s"
|
999 |
+
msgstr "%s mentése"
|
1000 |
+
|
1001 |
+
#: includes/fs-plugin-info-dialog.php:911
|
1002 |
+
msgid "No commitment for %s - cancel anytime"
|
1003 |
+
msgstr "No commitment for %s - cancel anytime"
|
1004 |
+
|
1005 |
+
#: includes/fs-plugin-info-dialog.php:914
|
1006 |
+
msgid "After your free %s, pay as little as %s"
|
1007 |
+
msgstr "After your free %s, pay as little as %s"
|
1008 |
+
|
1009 |
+
#: includes/fs-plugin-info-dialog.php:925
|
1010 |
+
msgid "Details"
|
1011 |
+
msgstr "Részletek"
|
1012 |
+
|
1013 |
+
#: includes/fs-plugin-info-dialog.php929, templates/account.php91,
|
1014 |
+
#: templates/debug.php201, templates/debug.php238, templates/debug.php452,
|
1015 |
+
#: templates/account/partials/addon.php:32
|
1016 |
+
msgctxt "product version"
|
1017 |
+
msgid "Version"
|
1018 |
+
msgstr "Verzió"
|
1019 |
+
|
1020 |
+
#: includes/fs-plugin-info-dialog.php:936
|
1021 |
+
msgctxt "as the plugin author"
|
1022 |
+
msgid "Author"
|
1023 |
+
msgstr "Szerző"
|
1024 |
+
|
1025 |
+
#: includes/fs-plugin-info-dialog.php:943
|
1026 |
+
msgid "Last Updated"
|
1027 |
+
msgstr "Utolsó frissítés"
|
1028 |
+
|
1029 |
+
#: includes/fs-plugin-info-dialog.php948, templates/account.php:376
|
1030 |
+
msgctxt "x-ago"
|
1031 |
+
msgid "%s ago"
|
1032 |
+
msgstr "%s ago"
|
1033 |
+
|
1034 |
+
#: includes/fs-plugin-info-dialog.php:957
|
1035 |
+
msgid "Requires WordPress Version"
|
1036 |
+
msgstr "A következő WordPress verzió szükséges:"
|
1037 |
+
|
1038 |
+
#: includes/fs-plugin-info-dialog.php:958
|
1039 |
+
msgid "%s or higher"
|
1040 |
+
msgstr "%s or higher"
|
1041 |
+
|
1042 |
+
#: includes/fs-plugin-info-dialog.php:965
|
1043 |
+
msgid "Compatible up to"
|
1044 |
+
msgstr "Compatible up to"
|
1045 |
+
|
1046 |
+
#: includes/fs-plugin-info-dialog.php:973
|
1047 |
+
msgid "Downloaded"
|
1048 |
+
msgstr "Letöltések száma:"
|
1049 |
+
|
1050 |
+
#: includes/fs-plugin-info-dialog.php:977
|
1051 |
+
msgid "%s time"
|
1052 |
+
msgstr "%s"
|
1053 |
+
|
1054 |
+
#: includes/fs-plugin-info-dialog.php:979
|
1055 |
+
msgid "%s times"
|
1056 |
+
msgstr "%s"
|
1057 |
+
|
1058 |
+
#: includes/fs-plugin-info-dialog.php:989
|
1059 |
+
msgid "WordPress.org Plugin Page"
|
1060 |
+
msgstr "WordPress.org bővítmény oldal"
|
1061 |
+
|
1062 |
+
#: includes/fs-plugin-info-dialog.php:997
|
1063 |
+
msgid "Plugin Homepage"
|
1064 |
+
msgstr "Bővítmény oldala"
|
1065 |
+
|
1066 |
+
#: includes/fs-plugin-info-dialog.php1005,
|
1067 |
+
#: includes/fs-plugin-info-dialog.php:1087
|
1068 |
+
msgid "Donate to this plugin"
|
1069 |
+
msgstr "Bővítmény támogatása"
|
1070 |
+
|
1071 |
+
#: includes/fs-plugin-info-dialog.php:1012
|
1072 |
+
msgid "Average Rating"
|
1073 |
+
msgstr "Átlagos értékelés"
|
1074 |
+
|
1075 |
+
#: includes/fs-plugin-info-dialog.php:1019
|
1076 |
+
msgid "based on %s"
|
1077 |
+
msgstr "based on %s"
|
1078 |
+
|
1079 |
+
#: includes/fs-plugin-info-dialog.php:1023
|
1080 |
+
msgid "%s rating"
|
1081 |
+
msgstr "%s rating"
|
1082 |
+
|
1083 |
+
#: includes/fs-plugin-info-dialog.php:1025
|
1084 |
+
msgid "%s ratings"
|
1085 |
+
msgstr "%s ratings"
|
1086 |
+
|
1087 |
+
#: includes/fs-plugin-info-dialog.php:1040
|
1088 |
+
msgid "%s star"
|
1089 |
+
msgstr "%s star"
|
1090 |
+
|
1091 |
+
#: includes/fs-plugin-info-dialog.php:1042
|
1092 |
+
msgid "%s stars"
|
1093 |
+
msgstr "%s stars"
|
1094 |
+
|
1095 |
+
#: includes/fs-plugin-info-dialog.php:1053
|
1096 |
+
msgid "Click to see reviews that provided a rating of %s"
|
1097 |
+
msgstr "Click to see reviews that provided a rating of %s"
|
1098 |
+
|
1099 |
+
#: includes/fs-plugin-info-dialog.php:1066
|
1100 |
+
msgid "Contributors"
|
1101 |
+
msgstr "Közreműködők"
|
1102 |
+
|
1103 |
+
#: includes/fs-plugin-info-dialog.php1095,
|
1104 |
+
#: includes/fs-plugin-info-dialog.php:1097
|
1105 |
+
msgid "Warning"
|
1106 |
+
msgstr "Figyelmeztetés"
|
1107 |
+
|
1108 |
+
#: includes/fs-plugin-info-dialog.php:1095
|
1109 |
+
msgid "This plugin has not been tested with your current version of WordPress."
|
1110 |
+
msgstr "This plugin has not been tested with your current version of WordPress."
|
1111 |
+
|
1112 |
+
#: includes/fs-plugin-info-dialog.php:1097
|
1113 |
+
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1114 |
+
msgstr "This plugin has not been marked as compatible with your version of WordPress."
|
1115 |
+
|
1116 |
+
#: includes/fs-plugin-info-dialog.php:1116
|
1117 |
+
msgid "Paid add-on must be deployed to Freemius."
|
1118 |
+
msgstr "Paid add-on must be deployed to Freemius."
|
1119 |
+
|
1120 |
+
#: includes/fs-plugin-info-dialog.php:1117
|
1121 |
+
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1122 |
+
msgstr "Add-on must be deployed to WordPress.org or Freemius."
|
1123 |
+
|
1124 |
+
#: templates/account.php81, templates/forms/subscription-cancellation.php96,
|
1125 |
+
#: templates/account/partials/addon.php22,
|
1126 |
+
#: templates/account/partials/site.php:295
|
1127 |
+
msgid "Downgrading your plan"
|
1128 |
+
msgstr "Downgrading your plan"
|
1129 |
+
|
1130 |
+
#: templates/account.php82, templates/forms/subscription-cancellation.php97,
|
1131 |
+
#: templates/account/partials/addon.php23,
|
1132 |
+
#: templates/account/partials/site.php:296
|
1133 |
+
msgid "Cancelling the subscription"
|
1134 |
+
msgstr "Cancelling the subscription"
|
1135 |
+
|
1136 |
+
#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the
|
1137 |
+
#. subscription'
|
1138 |
+
#: templates/account.php84, templates/forms/subscription-cancellation.php99,
|
1139 |
+
#: templates/account/partials/addon.php25,
|
1140 |
+
#: templates/account/partials/site.php:298
|
1141 |
+
msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1142 |
+
msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1143 |
+
|
1144 |
+
#: templates/account.php85, templates/forms/subscription-cancellation.php100,
|
1145 |
+
#: templates/account/partials/addon.php26,
|
1146 |
+
#: templates/account/partials/site.php:299
|
1147 |
+
msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
|
1148 |
+
msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price."
|
1149 |
+
|
1150 |
+
#: templates/account.php86, templates/forms/subscription-cancellation.php106,
|
1151 |
+
#: templates/account/partials/addon.php:27
|
1152 |
+
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1153 |
+
msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1154 |
+
|
1155 |
+
#: templates/account.php87, templates/forms/subscription-cancellation.php101,
|
1156 |
+
#: templates/account/partials/addon.php28,
|
1157 |
+
#: templates/account/partials/site.php:300
|
1158 |
+
msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
1159 |
+
msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
1160 |
+
|
1161 |
+
#: templates/account.php88, templates/forms/subscription-cancellation.php102,
|
1162 |
+
#: templates/account/partials/addon.php29,
|
1163 |
+
#: templates/account/partials/site.php:301
|
1164 |
+
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1165 |
+
msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1166 |
+
|
1167 |
+
#. translators: %s: Plan title (e.g. "Professional")
|
1168 |
+
#: templates/account.php90,
|
1169 |
+
#: templates/account/partials/activate-license-button.php31,
|
1170 |
+
#: templates/account/partials/addon.php:31
|
1171 |
+
msgid "Activate %s Plan"
|
1172 |
+
msgstr "%s csomag aktiválása"
|
1173 |
+
|
1174 |
+
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1175 |
+
#: templates/account.php93, templates/account/partials/addon.php34,
|
1176 |
+
#: templates/account/partials/site.php:275
|
1177 |
+
msgid "Auto renews in %s"
|
1178 |
+
msgstr "Auto renews in %s"
|
1179 |
+
|
1180 |
+
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1181 |
+
#: templates/account.php95, templates/account/partials/addon.php36,
|
1182 |
+
#: templates/account/partials/site.php:277
|
1183 |
+
msgid "Expires in %s"
|
1184 |
+
msgstr "Hátralévő idő: %s"
|
1185 |
+
|
1186 |
+
#: templates/account.php96, templates/account/partials/addon.php:37
|
1187 |
+
msgctxt "as synchronize license"
|
1188 |
+
msgid "Sync License"
|
1189 |
+
msgstr "Licensz szinkronizálása"
|
1190 |
+
|
1191 |
+
#: templates/account.php97, templates/account/partials/addon.php:38
|
1192 |
+
msgid "Cancel Trial"
|
1193 |
+
msgstr "Próbaidő törlése"
|
1194 |
+
|
1195 |
+
#: templates/account.php98, templates/account/partials/addon.php:39
|
1196 |
+
msgid "Change Plan"
|
1197 |
+
msgstr "Csomag módosítása"
|
1198 |
+
|
1199 |
+
#: templates/account.php99, templates/account/partials/addon.php:40
|
1200 |
+
msgctxt "verb"
|
1201 |
+
msgid "Upgrade"
|
1202 |
+
msgstr "Váltás nagyobb csomagra"
|
1203 |
+
|
1204 |
+
#: templates/account.php101, templates/account/partials/addon.php42,
|
1205 |
+
#: templates/account/partials/site.php:302
|
1206 |
+
msgctxt "verb"
|
1207 |
+
msgid "Downgrade"
|
1208 |
+
msgstr "Váltás kisebb csomagra"
|
1209 |
+
|
1210 |
+
#: templates/account.php103, templates/add-ons.php130,
|
1211 |
+
#: templates/plugin-info/features.php72,
|
1212 |
+
#: templates/account/partials/addon.php44,
|
1213 |
+
#: templates/account/partials/site.php:31
|
1214 |
+
msgid "Free"
|
1215 |
+
msgstr "Ingyenes"
|
1216 |
+
|
1217 |
+
#: templates/account.php104, templates/account/partials/addon.php:45
|
1218 |
+
msgid "Activate"
|
1219 |
+
msgstr "Aktiválás"
|
1220 |
+
|
1221 |
+
#: templates/account.php105, templates/debug.php371,
|
1222 |
+
#: includes/customizer/class-fs-customizer-upsell-control.php106,
|
1223 |
+
#: templates/account/partials/addon.php:46
|
1224 |
+
msgctxt "as product pricing plan"
|
1225 |
+
msgid "Plan"
|
1226 |
+
msgstr "Csomag"
|
1227 |
+
|
1228 |
+
#: templates/account.php:158
|
1229 |
+
msgid "Free Trial"
|
1230 |
+
msgstr "Ingyenes próbaidő"
|
1231 |
+
|
1232 |
+
#: templates/account.php:169
|
1233 |
+
msgid "Account Details"
|
1234 |
+
msgstr "Fiók információk"
|
1235 |
+
|
1236 |
+
#: templates/account.php:179
|
1237 |
+
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?"
|
1238 |
+
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?"
|
1239 |
+
|
1240 |
+
#: templates/account.php:181
|
1241 |
+
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?"
|
1242 |
+
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?"
|
1243 |
+
|
1244 |
+
#: templates/account.php:184
|
1245 |
+
msgid "Delete Account"
|
1246 |
+
msgstr "Fiók törlése"
|
1247 |
+
|
1248 |
+
#: templates/account.php196, templates/account/partials/addon.php159,
|
1249 |
+
#: templates/account/partials/deactivate-license-button.php:35
|
1250 |
+
msgid "Deactivate License"
|
1251 |
+
msgstr "Licensz deaktiválása"
|
1252 |
+
|
1253 |
+
#: templates/account.php219, templates/forms/subscription-cancellation.php:125
|
1254 |
+
msgid "Are you sure you want to proceed?"
|
1255 |
+
msgstr "Are you sure you want to proceed?"
|
1256 |
+
|
1257 |
+
#: templates/account.php219, templates/account/partials/addon.php:182
|
1258 |
+
msgid "Cancel Subscription"
|
1259 |
+
msgstr "Előfizetés törlése"
|
1260 |
+
|
1261 |
+
#: templates/account.php:247
|
1262 |
+
msgctxt "as synchronize"
|
1263 |
+
msgid "Sync"
|
1264 |
+
msgstr "Szinkronizálás"
|
1265 |
+
|
1266 |
+
#: templates/account.php261, templates/debug.php:487
|
1267 |
+
msgid "Name"
|
1268 |
+
msgstr "Név"
|
1269 |
+
|
1270 |
+
#: templates/account.php267, templates/debug.php:488
|
1271 |
+
msgid "Email"
|
1272 |
+
msgstr "Email"
|
1273 |
+
|
1274 |
+
#: templates/account.php274, templates/debug.php370, templates/debug.php:526
|
1275 |
+
msgid "User ID"
|
1276 |
+
msgstr "Felhasználó ID"
|
1277 |
+
|
1278 |
+
#: templates/account.php:282
|
1279 |
+
msgid "Site ID"
|
1280 |
+
msgstr "Weboldal ID"
|
1281 |
+
|
1282 |
+
#: templates/account.php:285
|
1283 |
+
msgid "No ID"
|
1284 |
+
msgstr "Nincs ID"
|
1285 |
+
|
1286 |
+
#: templates/account.php290, templates/debug.php243, templates/debug.php372,
|
1287 |
+
#: templates/debug.php453, templates/debug.php490,
|
1288 |
+
#: templates/account/partials/site.php:219
|
1289 |
+
msgid "Public Key"
|
1290 |
+
msgstr "Publikus kulcs"
|
1291 |
+
|
1292 |
+
#: templates/account.php296, templates/debug.php373, templates/debug.php454,
|
1293 |
+
#: templates/debug.php491, templates/account/partials/site.php:231
|
1294 |
+
msgid "Secret Key"
|
1295 |
+
msgstr "Titkos kulcs"
|
1296 |
+
|
1297 |
+
#: templates/account.php:299
|
1298 |
+
msgctxt "as secret encryption key missing"
|
1299 |
+
msgid "No Secret"
|
1300 |
+
msgstr "Nincs titkos kulcs"
|
1301 |
+
|
1302 |
+
#: templates/account.php318, templates/account/partials/site.php112,
|
1303 |
+
#: templates/account/partials/site.php:114
|
1304 |
+
msgid "Trial"
|
1305 |
+
msgstr "Próbaidő"
|
1306 |
+
|
1307 |
+
#: templates/account.php337, templates/debug.php531,
|
1308 |
+
#: templates/account/partials/site.php:248
|
1309 |
+
msgid "License Key"
|
1310 |
+
msgstr "Licensz kulcs"
|
1311 |
+
|
1312 |
+
#: templates/account.php:367
|
1313 |
+
msgid "not verified"
|
1314 |
+
msgstr "nem ellenőrzött"
|
1315 |
+
|
1316 |
+
#: templates/account.php376, templates/account/partials/addon.php:120
|
1317 |
+
msgid "Expired"
|
1318 |
+
msgstr "Lejárt"
|
1319 |
+
|
1320 |
+
#: templates/account.php:428
|
1321 |
+
msgid "Premium version"
|
1322 |
+
msgstr "Prémium verzió"
|
1323 |
+
|
1324 |
+
#: templates/account.php:430
|
1325 |
+
msgid "Free version"
|
1326 |
+
msgstr "Ingyenes verzió"
|
1327 |
+
|
1328 |
+
#: templates/account.php:442
|
1329 |
+
msgid "Verify Email"
|
1330 |
+
msgstr "Email ellenőrzése"
|
1331 |
+
|
1332 |
+
#: templates/account.php:453
|
1333 |
+
msgid "Download %s Version"
|
1334 |
+
msgstr "%s verzió letöltése"
|
1335 |
+
|
1336 |
+
#: templates/account.php467, templates/account.php649,
|
1337 |
+
#: templates/account/partials/site.php237,
|
1338 |
+
#: templates/account/partials/site.php:255
|
1339 |
+
msgctxt "verb"
|
1340 |
+
msgid "Show"
|
1341 |
+
msgstr "Mutasd"
|
1342 |
+
|
1343 |
+
#: templates/account.php:481
|
1344 |
+
msgid "What is your %s?"
|
1345 |
+
msgstr "Mi a te %s?"
|
1346 |
+
|
1347 |
+
#: templates/account.php489, templates/account/billing.php:27
|
1348 |
+
msgctxt "verb"
|
1349 |
+
msgid "Edit"
|
1350 |
+
msgstr "Szerkesztés"
|
1351 |
+
|
1352 |
+
#: templates/account.php:502
|
1353 |
+
msgid "Sites"
|
1354 |
+
msgstr "Weboldalak"
|
1355 |
+
|
1356 |
+
#: templates/account.php:513
|
1357 |
+
msgid "Search by address"
|
1358 |
+
msgstr "Keresés cím alapján"
|
1359 |
+
|
1360 |
+
#: templates/account.php522, templates/account.php570, templates/debug.php236,
|
1361 |
+
#: templates/debug.php364, templates/debug.php449, templates/debug.php486,
|
1362 |
+
#: templates/debug.php524, templates/debug.php597,
|
1363 |
+
#: templates/account/payments.php35, templates/debug/logger.php:21
|
1364 |
+
msgid "ID"
|
1365 |
+
msgstr "ID"
|
1366 |
+
|
1367 |
+
#: templates/account.php523, templates/debug.php:367
|
1368 |
+
msgid "Address"
|
1369 |
+
msgstr "Cím"
|
1370 |
+
|
1371 |
+
#: templates/account.php:524
|
1372 |
+
msgid "License"
|
1373 |
+
msgstr "Licensz"
|
1374 |
+
|
1375 |
+
#: templates/account.php:525
|
1376 |
+
msgid "Plan"
|
1377 |
+
msgstr "Csomag"
|
1378 |
+
|
1379 |
+
#: templates/account.php:573
|
1380 |
+
msgctxt "as software license"
|
1381 |
+
msgid "License"
|
1382 |
+
msgstr "Licensz"
|
1383 |
+
|
1384 |
+
#: templates/account.php:643
|
1385 |
+
msgctxt "verb"
|
1386 |
+
msgid "Hide"
|
1387 |
+
msgstr "Elrejt"
|
1388 |
+
|
1389 |
+
#: templates/account.php:686
|
1390 |
+
msgid "Cancelling %s"
|
1391 |
+
msgstr "Cancelling %s"
|
1392 |
+
|
1393 |
+
#: templates/account.php686, templates/account.php703,
|
1394 |
+
#: templates/forms/subscription-cancellation.php27,
|
1395 |
+
#: templates/forms/deactivation/form.php:117
|
1396 |
+
msgid "trial"
|
1397 |
+
msgstr "próbaidő"
|
1398 |
+
|
1399 |
+
#: templates/account.php701, templates/forms/deactivation/form.php:134
|
1400 |
+
msgid "Cancelling %s..."
|
1401 |
+
msgstr "Cancelling %s..."
|
1402 |
+
|
1403 |
+
#: templates/account.php704, templates/forms/subscription-cancellation.php28,
|
1404 |
+
#: templates/forms/deactivation/form.php:118
|
1405 |
+
msgid "subscription"
|
1406 |
+
msgstr "előfizetés"
|
1407 |
+
|
1408 |
+
#: templates/account.php:718
|
1409 |
+
msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
|
1410 |
+
msgstr "A licensz deaktiválása után a prémium funkciók használata nem elérhető, de így tudod másik weboldalon aktiválni ugyanezt a licenszt. Folytatod a deaktiválást?"
|
1411 |
+
|
1412 |
+
#: templates/add-ons.php:36
|
1413 |
+
msgid "Add Ons for %s"
|
1414 |
+
msgstr "Add Ons for %s"
|
1415 |
+
|
1416 |
+
#: templates/add-ons.php:44
|
1417 |
+
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."
|
1418 |
+
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."
|
1419 |
+
|
1420 |
+
#: templates/add-ons.php:139
|
1421 |
+
msgid "View details"
|
1422 |
+
msgstr "Részletek megtekintése"
|
1423 |
+
|
1424 |
+
#: templates/admin-notice.php13, templates/forms/license-activation.php208,
|
1425 |
+
#: templates/forms/resend-key.php:77
|
1426 |
+
msgctxt "as close a window"
|
1427 |
+
msgid "Dismiss"
|
1428 |
+
msgstr "Mégsem"
|
1429 |
+
|
1430 |
+
#: templates/auto-installation.php:45
|
1431 |
+
msgid "%s sec"
|
1432 |
+
msgstr "%s sec"
|
1433 |
+
|
1434 |
+
#: templates/auto-installation.php:83
|
1435 |
+
msgid "Automatic Installation"
|
1436 |
+
msgstr "Automatikus telepítés"
|
1437 |
+
|
1438 |
+
#: templates/auto-installation.php:93
|
1439 |
+
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."
|
1440 |
+
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."
|
1441 |
+
|
1442 |
+
#: templates/auto-installation.php:104
|
1443 |
+
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."
|
1444 |
+
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."
|
1445 |
+
|
1446 |
+
#: templates/auto-installation.php:109
|
1447 |
+
msgid "Cancel Installation"
|
1448 |
+
msgstr "Telepítés törlése"
|
1449 |
+
|
1450 |
+
#: templates/checkout.php:172
|
1451 |
+
msgid "Checkout"
|
1452 |
+
msgstr "Pénztár"
|
1453 |
+
|
1454 |
+
#: templates/checkout.php:172
|
1455 |
+
msgid "PCI compliant"
|
1456 |
+
msgstr "PCI compliant"
|
1457 |
+
|
1458 |
+
#. translators: %s: name (e.g. Hey John,)
|
1459 |
+
#: templates/connect.php:112
|
1460 |
+
msgctxt "greeting"
|
1461 |
+
msgid "Hey %s,"
|
1462 |
+
msgstr "Üdv %s!"
|
1463 |
+
|
1464 |
+
#: templates/connect.php:154
|
1465 |
+
msgid "Allow & Continue"
|
1466 |
+
msgstr "Engedélyezés és folytatás"
|
1467 |
+
|
1468 |
+
#: templates/connect.php:158
|
1469 |
+
msgid "Re-send activation email"
|
1470 |
+
msgstr "Aktivációs email újraküldése"
|
1471 |
+
|
1472 |
+
#: templates/connect.php:162
|
1473 |
+
msgid "Thanks %s!"
|
1474 |
+
msgstr "Köszönjük %s!"
|
1475 |
+
|
1476 |
+
#: templates/connect.php172, templates/forms/license-activation.php:43
|
1477 |
+
msgid "Agree & Activate License"
|
1478 |
+
msgstr "Licensz elfogadása és aktiválása"
|
1479 |
+
|
1480 |
+
#: templates/connect.php:181
|
1481 |
+
msgid "Thanks for purchasing %s! To get started, please enter your license key:"
|
1482 |
+
msgstr "Köszönjük, hogy megvásároltad a %s szoftverünket! A folytatáshoz most meg kell adnod a licensz kulcsot, amit a vásárlás után kaptál emailben:"
|
1483 |
+
|
1484 |
+
#: templates/connect.php:188
|
1485 |
+
msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
|
1486 |
+
msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
|
1487 |
+
|
1488 |
+
#: templates/connect.php:189
|
1489 |
+
msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1490 |
+
msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
1491 |
+
|
1492 |
+
#: templates/connect.php:195
|
1493 |
+
msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
|
1494 |
+
msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
|
1495 |
+
|
1496 |
+
#: templates/connect.php:196
|
1497 |
+
msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
|
1498 |
+
msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
|
1499 |
+
|
1500 |
+
#: templates/connect.php:230
|
1501 |
+
msgid "We're excited to introduce the Freemius network-level integration."
|
1502 |
+
msgstr "We're excited to introduce the Freemius network-level integration."
|
1503 |
+
|
1504 |
+
#: templates/connect.php:233
|
1505 |
+
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1506 |
+
msgstr "During the update process we detected %d site(s) that are still pending license activation."
|
1507 |
+
|
1508 |
+
#: templates/connect.php:235
|
1509 |
+
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1510 |
+
msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1511 |
+
|
1512 |
+
#: templates/connect.php:237
|
1513 |
+
msgid "%s's paid features"
|
1514 |
+
msgstr "%s's paid features"
|
1515 |
+
|
1516 |
+
#: templates/connect.php:242
|
1517 |
+
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1518 |
+
msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1519 |
+
|
1520 |
+
#: templates/connect.php:244
|
1521 |
+
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1522 |
+
msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1523 |
+
|
1524 |
+
#: templates/connect.php253, templates/forms/license-activation.php:46
|
1525 |
+
msgid "License key"
|
1526 |
+
msgstr "Licensz kulcs"
|
1527 |
+
|
1528 |
+
#: templates/connect.php256, templates/forms/license-activation.php:19
|
1529 |
+
msgid "Can't find your license key?"
|
1530 |
+
msgstr "Nem találod a licensz kulcsod?"
|
1531 |
+
|
1532 |
+
#: templates/connect.php315, templates/connect.php630,
|
1533 |
+
#: templates/forms/deactivation/retry-skip.php:20
|
1534 |
+
msgctxt "verb"
|
1535 |
+
msgid "Skip"
|
1536 |
+
msgstr "Ugrás"
|
1537 |
+
|
1538 |
+
#: templates/connect.php:318
|
1539 |
+
msgid "Delegate to Site Admins"
|
1540 |
+
msgstr "Delegate to Site Admins"
|
1541 |
+
|
1542 |
+
#: templates/connect.php:318
|
1543 |
+
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1544 |
+
msgstr "If you click it, this decision will be delegated to the sites administrators."
|
1545 |
+
|
1546 |
+
#: templates/connect.php:346
|
1547 |
+
msgid "Your Profile Overview"
|
1548 |
+
msgstr "Fiókod áttekintése"
|
1549 |
+
|
1550 |
+
#: templates/connect.php:347
|
1551 |
+
msgid "Name and email address"
|
1552 |
+
msgstr "Név és email cím"
|
1553 |
+
|
1554 |
+
#: templates/connect.php:352
|
1555 |
+
msgid "Your Site Overview"
|
1556 |
+
msgstr "Weboldalad adatainak áttekintése"
|
1557 |
+
|
1558 |
+
#: templates/connect.php:353
|
1559 |
+
msgid "Site URL, WP version, PHP info, plugins & themes"
|
1560 |
+
msgstr "Weboldal címe, WP verzió, PHP információk, bővítmények és sablonok"
|
1561 |
+
|
1562 |
+
#: templates/connect.php:358
|
1563 |
+
msgid "Admin Notices"
|
1564 |
+
msgstr "Admin értesítések"
|
1565 |
+
|
1566 |
+
#: templates/connect.php359, templates/connect.php:375
|
1567 |
+
msgid "Updates, announcements, marketing, no spam"
|
1568 |
+
msgstr "Frissítések, közlemények, marketing, de semmi SPAM!"
|
1569 |
+
|
1570 |
+
#: templates/connect.php:364
|
1571 |
+
msgid "Current %s Events"
|
1572 |
+
msgstr "Aktuális %s események"
|
1573 |
+
|
1574 |
+
#: templates/connect.php:365
|
1575 |
+
msgid "Activation, deactivation and uninstall"
|
1576 |
+
msgstr "Aktiválás, deaktiválás és kikapcsolás"
|
1577 |
+
|
1578 |
+
#: templates/connect.php:374
|
1579 |
+
msgid "Newsletter"
|
1580 |
+
msgstr "Hírlevél"
|
1581 |
+
|
1582 |
+
#: templates/connect.php391, templates/forms/license-activation.php:38
|
1583 |
+
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."
|
1584 |
+
msgstr "A %1$s időközönként adatot küld a %2$s weboldalnak, hogy ellenőrizze a biztonsági és funkcionális frissítéseket, valamint ellenőrzi az érvényes licensz kulcsot."
|
1585 |
+
|
1586 |
+
#: templates/connect.php:396
|
1587 |
+
msgid "What permissions are being granted?"
|
1588 |
+
msgstr "Milyen jogosultágok lesznek engedélyezve?"
|
1589 |
+
|
1590 |
+
#: templates/connect.php:417
|
1591 |
+
msgid "Don't have a license key?"
|
1592 |
+
msgstr "Nincs még licensz kulcsod?"
|
1593 |
+
|
1594 |
+
#: templates/connect.php:418
|
1595 |
+
msgid "Activate Free Version"
|
1596 |
+
msgstr "Ingyenes verzió aktiválása"
|
1597 |
+
|
1598 |
+
#: templates/connect.php:420
|
1599 |
+
msgid "Have a license key?"
|
1600 |
+
msgstr "Van licensz kulcsod?"
|
1601 |
+
|
1602 |
+
#: templates/connect.php:428
|
1603 |
+
msgid "Privacy Policy"
|
1604 |
+
msgstr "Adatkezelési tájékoztató"
|
1605 |
+
|
1606 |
+
#: templates/connect.php:430
|
1607 |
+
msgid "License Agreement"
|
1608 |
+
msgstr "Licensz szerződés"
|
1609 |
+
|
1610 |
+
#: templates/connect.php:430
|
1611 |
+
msgid "Terms of Service"
|
1612 |
+
msgstr "Szolgáltatási feltételek"
|
1613 |
+
|
1614 |
+
#: templates/connect.php:766
|
1615 |
+
msgctxt "as in the process of sending an email"
|
1616 |
+
msgid "Sending email"
|
1617 |
+
msgstr "Email küldése"
|
1618 |
+
|
1619 |
+
#: templates/connect.php:767
|
1620 |
+
msgctxt "as activating plugin"
|
1621 |
+
msgid "Activating"
|
1622 |
+
msgstr "Aktiválás"
|
1623 |
+
|
1624 |
+
#: templates/contact.php:78
|
1625 |
+
msgid "Contact"
|
1626 |
+
msgstr "Kapcsolat"
|
1627 |
+
|
1628 |
+
#: templates/debug.php:17
|
1629 |
+
msgctxt "as turned off"
|
1630 |
+
msgid "Off"
|
1631 |
+
msgstr "Off"
|
1632 |
+
|
1633 |
+
#: templates/debug.php:18
|
1634 |
+
msgctxt "as turned on"
|
1635 |
+
msgid "On"
|
1636 |
+
msgstr "On"
|
1637 |
+
|
1638 |
+
#: templates/debug.php:20
|
1639 |
+
msgid "SDK"
|
1640 |
+
msgstr "SDK"
|
1641 |
+
|
1642 |
+
#: templates/debug.php:24
|
1643 |
+
msgctxt "as code debugging"
|
1644 |
+
msgid "Debugging"
|
1645 |
+
msgstr "Debugging"
|
1646 |
+
|
1647 |
+
#: templates/debug.php54, templates/debug.php248, templates/debug.php374,
|
1648 |
+
#: templates/debug.php:492
|
1649 |
+
msgid "Actions"
|
1650 |
+
msgstr "Események"
|
1651 |
+
|
1652 |
+
#: templates/debug.php:64
|
1653 |
+
msgid "Are you sure you want to delete all Freemius data?"
|
1654 |
+
msgstr "Are you sure you want to delete all Freemius data?"
|
1655 |
+
|
1656 |
+
#: templates/debug.php:64
|
1657 |
+
msgid "Delete All Accounts"
|
1658 |
+
msgstr "Minden fiók törlése"
|
1659 |
+
|
1660 |
+
#: templates/debug.php:71
|
1661 |
+
msgid "Clear API Cache"
|
1662 |
+
msgstr "Clear API Cache"
|
1663 |
+
|
1664 |
+
#: templates/debug.php:79
|
1665 |
+
msgid "Clear Updates Transients"
|
1666 |
+
msgstr "Clear Updates Transients"
|
1667 |
+
|
1668 |
+
#: templates/debug.php:86
|
1669 |
+
msgid "Sync Data From Server"
|
1670 |
+
msgstr "Adatok szinkronizálása a szerverről"
|
1671 |
+
|
1672 |
+
#: templates/debug.php:95
|
1673 |
+
msgid "Migrate Options to Network"
|
1674 |
+
msgstr "Migrate Options to Network"
|
1675 |
+
|
1676 |
+
#: templates/debug.php:100
|
1677 |
+
msgid "Load DB Option"
|
1678 |
+
msgstr "Load DB Option"
|
1679 |
+
|
1680 |
+
#: templates/debug.php:103
|
1681 |
+
msgid "Set DB Option"
|
1682 |
+
msgstr "Set DB Option"
|
1683 |
+
|
1684 |
+
#: templates/debug.php:180
|
1685 |
+
msgid "Key"
|
1686 |
+
msgstr "Kulcs"
|
1687 |
+
|
1688 |
+
#: templates/debug.php:181
|
1689 |
+
msgid "Value"
|
1690 |
+
msgstr "Érték"
|
1691 |
+
|
1692 |
+
#: templates/debug.php:197
|
1693 |
+
msgctxt "as software development kit versions"
|
1694 |
+
msgid "SDK Versions"
|
1695 |
+
msgstr "SDK verziók"
|
1696 |
+
|
1697 |
+
#: templates/debug.php:202
|
1698 |
+
msgid "SDK Path"
|
1699 |
+
msgstr "SDK útvonal"
|
1700 |
+
|
1701 |
+
#: templates/debug.php203, templates/debug.php:242
|
1702 |
+
msgid "Module Path"
|
1703 |
+
msgstr "Module Path"
|
1704 |
+
|
1705 |
+
#: templates/debug.php:204
|
1706 |
+
msgid "Is Active"
|
1707 |
+
msgstr "Aktív"
|
1708 |
+
|
1709 |
+
#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
|
1710 |
+
msgid "Plugins"
|
1711 |
+
msgstr "Bővítmények"
|
1712 |
+
|
1713 |
+
#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
|
1714 |
+
msgid "Themes"
|
1715 |
+
msgstr "Sablonok"
|
1716 |
+
|
1717 |
+
#: templates/debug.php237, templates/debug.php369, templates/debug.php451,
|
1718 |
+
#: templates/debug/scheduled-crons.php:80
|
1719 |
+
msgid "Slug"
|
1720 |
+
msgstr "Slug"
|
1721 |
+
|
1722 |
+
#: templates/debug.php239, templates/debug.php:450
|
1723 |
+
msgid "Title"
|
1724 |
+
msgstr "Cím"
|
1725 |
+
|
1726 |
+
#: templates/debug.php:240
|
1727 |
+
msgctxt "as application program interface"
|
1728 |
+
msgid "API"
|
1729 |
+
msgstr "API"
|
1730 |
+
|
1731 |
+
#: templates/debug.php:241
|
1732 |
+
msgid "Freemius State"
|
1733 |
+
msgstr "Freemius State"
|
1734 |
+
|
1735 |
+
#: templates/debug.php:245
|
1736 |
+
msgid "Network Blog"
|
1737 |
+
msgstr "Network Blog"
|
1738 |
+
|
1739 |
+
#: templates/debug.php:246
|
1740 |
+
msgid "Network User"
|
1741 |
+
msgstr "Network User"
|
1742 |
+
|
1743 |
+
#: templates/debug.php:283
|
1744 |
+
msgctxt "as connection was successful"
|
1745 |
+
msgid "Connected"
|
1746 |
+
msgstr "Connected"
|
1747 |
+
|
1748 |
+
#: templates/debug.php:284
|
1749 |
+
msgctxt "as connection blocked"
|
1750 |
+
msgid "Blocked"
|
1751 |
+
msgstr "Blocked"
|
1752 |
+
|
1753 |
+
#: templates/debug.php:320
|
1754 |
+
msgid "Simulate Trial Promotion"
|
1755 |
+
msgstr "Simulate Trial Promotion"
|
1756 |
+
|
1757 |
+
#: templates/debug.php:332
|
1758 |
+
msgid "Simulate Network Upgrade"
|
1759 |
+
msgstr "Simulate Network Upgrade"
|
1760 |
+
|
1761 |
+
#: templates/debug.php:358
|
1762 |
+
msgid "%s Installs"
|
1763 |
+
msgstr "%s Installs"
|
1764 |
+
|
1765 |
+
#: templates/debug.php:360
|
1766 |
+
msgctxt "like websites"
|
1767 |
+
msgid "Sites"
|
1768 |
+
msgstr "Weboldalak"
|
1769 |
+
|
1770 |
+
#: templates/debug.php366, templates/account/partials/site.php:148
|
1771 |
+
msgid "Blog ID"
|
1772 |
+
msgstr "Blog ID"
|
1773 |
+
|
1774 |
+
#: templates/debug.php431, templates/debug.php509,
|
1775 |
+
#: templates/account/partials/addon.php:339
|
1776 |
+
msgctxt "verb"
|
1777 |
+
msgid "Delete"
|
1778 |
+
msgstr "Törlés"
|
1779 |
+
|
1780 |
+
#: templates/debug.php:445
|
1781 |
+
msgid "Add Ons of module %s"
|
1782 |
+
msgstr "Add Ons of module %s"
|
1783 |
+
|
1784 |
+
#: templates/debug.php:482
|
1785 |
+
msgid "Users"
|
1786 |
+
msgstr "Felhasználók"
|
1787 |
+
|
1788 |
+
#: templates/debug.php:489
|
1789 |
+
msgid "Verified"
|
1790 |
+
msgstr "Ellenőrzött"
|
1791 |
+
|
1792 |
+
#: templates/debug.php:520
|
1793 |
+
msgid "%s Licenses"
|
1794 |
+
msgstr "%s Licenses"
|
1795 |
+
|
1796 |
+
#: templates/debug.php:525
|
1797 |
+
msgid "Plugin ID"
|
1798 |
+
msgstr "Bővítmény ID"
|
1799 |
+
|
1800 |
+
#: templates/debug.php:527
|
1801 |
+
msgid "Plan ID"
|
1802 |
+
msgstr "Csomag ID"
|
1803 |
+
|
1804 |
+
#: templates/debug.php:528
|
1805 |
+
msgid "Quota"
|
1806 |
+
msgstr "Quota"
|
1807 |
+
|
1808 |
+
#: templates/debug.php:529
|
1809 |
+
msgid "Activated"
|
1810 |
+
msgstr "Sikeres aktiválás"
|
1811 |
+
|
1812 |
+
#: templates/debug.php:530
|
1813 |
+
msgid "Blocking"
|
1814 |
+
msgstr "Blocking"
|
1815 |
+
|
1816 |
+
#: templates/debug.php:532
|
1817 |
+
msgctxt "as expiration date"
|
1818 |
+
msgid "Expiration"
|
1819 |
+
msgstr "Expiration"
|
1820 |
+
|
1821 |
+
#: templates/debug.php:555
|
1822 |
+
msgid "Debug Log"
|
1823 |
+
msgstr "Debug Log"
|
1824 |
+
|
1825 |
+
#: templates/debug.php:559
|
1826 |
+
msgid "All Types"
|
1827 |
+
msgstr "All Types"
|
1828 |
+
|
1829 |
+
#: templates/debug.php:566
|
1830 |
+
msgid "All Requests"
|
1831 |
+
msgstr "All Requests"
|
1832 |
+
|
1833 |
+
#: templates/debug.php571, templates/debug.php600,
|
1834 |
+
#: templates/debug/logger.php:25
|
1835 |
+
msgid "File"
|
1836 |
+
msgstr "File"
|
1837 |
+
|
1838 |
+
#: templates/debug.php572, templates/debug.php598,
|
1839 |
+
#: templates/debug/logger.php:23
|
1840 |
+
msgid "Function"
|
1841 |
+
msgstr "Function"
|
1842 |
+
|
1843 |
+
#: templates/debug.php:573
|
1844 |
+
msgid "Process ID"
|
1845 |
+
msgstr "Művelet ID"
|
1846 |
+
|
1847 |
+
#: templates/debug.php:574
|
1848 |
+
msgid "Logger"
|
1849 |
+
msgstr "Logger"
|
1850 |
+
|
1851 |
+
#: templates/debug.php575, templates/debug.php599,
|
1852 |
+
#: templates/debug/logger.php:24
|
1853 |
+
msgid "Message"
|
1854 |
+
msgstr "Message"
|
1855 |
+
|
1856 |
+
#: templates/debug.php:577
|
1857 |
+
msgid "Filter"
|
1858 |
+
msgstr "Filter"
|
1859 |
+
|
1860 |
+
#: templates/debug.php:585
|
1861 |
+
msgid "Download"
|
1862 |
+
msgstr "Download"
|
1863 |
+
|
1864 |
+
#: templates/debug.php596, templates/debug/logger.php:22
|
1865 |
+
msgid "Type"
|
1866 |
+
msgstr "Type"
|
1867 |
+
|
1868 |
+
#: templates/debug.php601, templates/debug/logger.php:26
|
1869 |
+
msgid "Timestamp"
|
1870 |
+
msgstr "Timestamp"
|
1871 |
+
|
1872 |
+
#: templates/secure-https-header.php:28
|
1873 |
+
msgid "Secure HTTPS %s page, running from an external domain"
|
1874 |
+
msgstr "Secure HTTPS %s page, running from an external domain"
|
1875 |
+
|
1876 |
+
#: includes/customizer/class-fs-customizer-support-section.php55,
|
1877 |
+
#: templates/plugin-info/features.php:43
|
1878 |
+
msgid "Support"
|
1879 |
+
msgstr "Support"
|
1880 |
+
|
1881 |
+
#: includes/debug/class-fs-debug-bar-panel.php48,
|
1882 |
+
#: templates/debug/api-calls.php54, templates/debug/logger.php:62
|
1883 |
+
msgctxt "milliseconds"
|
1884 |
+
msgid "ms"
|
1885 |
+
msgstr "ms"
|
1886 |
+
|
1887 |
+
#: includes/debug/debug-bar-start.php:41
|
1888 |
+
msgid "Freemius API"
|
1889 |
+
msgstr "Freemius API"
|
1890 |
+
|
1891 |
+
#: includes/debug/debug-bar-start.php:42
|
1892 |
+
msgid "Requests"
|
1893 |
+
msgstr "Requests"
|
1894 |
+
|
1895 |
+
#: templates/account/billing.php:28
|
1896 |
+
msgctxt "verb"
|
1897 |
+
msgid "Update"
|
1898 |
+
msgstr "Frissítés"
|
1899 |
+
|
1900 |
+
#: templates/account/billing.php:39
|
1901 |
+
msgid "Billing"
|
1902 |
+
msgstr "Számlázás"
|
1903 |
+
|
1904 |
+
#: templates/account/billing.php44, templates/account/billing.php:44
|
1905 |
+
msgid "Business name"
|
1906 |
+
msgstr "Cégnév"
|
1907 |
+
|
1908 |
+
#: templates/account/billing.php45, templates/account/billing.php:45
|
1909 |
+
msgid "Tax / VAT ID"
|
1910 |
+
msgstr "Közösségi adószám"
|
1911 |
+
|
1912 |
+
#: templates/account/billing.php48, templates/account/billing.php48,
|
1913 |
+
#: templates/account/billing.php49, templates/account/billing.php:49
|
1914 |
+
msgid "Address Line %d"
|
1915 |
+
msgstr "Cím %d"
|
1916 |
+
|
1917 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1918 |
+
msgid "City"
|
1919 |
+
msgstr "Város"
|
1920 |
+
|
1921 |
+
#: templates/account/billing.php52, templates/account/billing.php:52
|
1922 |
+
msgid "Town"
|
1923 |
+
msgstr "Town"
|
1924 |
+
|
1925 |
+
#: templates/account/billing.php53, templates/account/billing.php:53
|
1926 |
+
msgid "ZIP / Postal Code"
|
1927 |
+
msgstr "Irányítószám"
|
1928 |
+
|
1929 |
+
#: templates/account/billing.php:308
|
1930 |
+
msgid "Country"
|
1931 |
+
msgstr "Ország"
|
1932 |
+
|
1933 |
+
#: templates/account/billing.php:310
|
1934 |
+
msgid "Select Country"
|
1935 |
+
msgstr "Válaszz országot"
|
1936 |
+
|
1937 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1938 |
+
msgid "State"
|
1939 |
+
msgstr "Megye"
|
1940 |
+
|
1941 |
+
#: templates/account/billing.php317, templates/account/billing.php:318
|
1942 |
+
msgid "Province"
|
1943 |
+
msgstr "Province"
|
1944 |
+
|
1945 |
+
#: templates/account/payments.php:29
|
1946 |
+
msgid "Payments"
|
1947 |
+
msgstr "Fizetési módok"
|
1948 |
+
|
1949 |
+
#: templates/account/payments.php:36
|
1950 |
+
msgid "Date"
|
1951 |
+
msgstr "Dátum"
|
1952 |
+
|
1953 |
+
#: templates/account/payments.php:37
|
1954 |
+
msgid "Amount"
|
1955 |
+
msgstr "Mennyiség"
|
1956 |
+
|
1957 |
+
#: templates/account/payments.php38, templates/account/payments.php:50
|
1958 |
+
msgid "Invoice"
|
1959 |
+
msgstr "Számla"
|
1960 |
+
|
1961 |
+
#: templates/debug/api-calls.php:56
|
1962 |
+
msgid "API"
|
1963 |
+
msgstr "API"
|
1964 |
+
|
1965 |
+
#: templates/debug/api-calls.php:68
|
1966 |
+
msgid "Method"
|
1967 |
+
msgstr "Method"
|
1968 |
+
|
1969 |
+
#: templates/debug/api-calls.php:69
|
1970 |
+
msgid "Code"
|
1971 |
+
msgstr "Kód"
|
1972 |
+
|
1973 |
+
#: templates/debug/api-calls.php:70
|
1974 |
+
msgid "Length"
|
1975 |
+
msgstr "Hossz"
|
1976 |
+
|
1977 |
+
#: templates/debug/api-calls.php:71
|
1978 |
+
msgctxt "as file/folder path"
|
1979 |
+
msgid "Path"
|
1980 |
+
msgstr "Path"
|
1981 |
+
|
1982 |
+
#: templates/debug/api-calls.php:73
|
1983 |
+
msgid "Body"
|
1984 |
+
msgstr "Body"
|
1985 |
+
|
1986 |
+
#: templates/debug/api-calls.php:75
|
1987 |
+
msgid "Result"
|
1988 |
+
msgstr "Result"
|
1989 |
+
|
1990 |
+
#: templates/debug/api-calls.php:76
|
1991 |
+
msgid "Start"
|
1992 |
+
msgstr "Start"
|
1993 |
+
|
1994 |
+
#: templates/debug/api-calls.php:77
|
1995 |
+
msgid "End"
|
1996 |
+
msgstr "End"
|
1997 |
+
|
1998 |
+
#: templates/debug/logger.php:15
|
1999 |
+
msgid "Log"
|
2000 |
+
msgstr "Log"
|
2001 |
+
|
2002 |
+
#. translators: %s: time period (e.g. In "2 hours")
|
2003 |
+
#: templates/debug/plugins-themes-sync.php18,
|
2004 |
+
#: templates/debug/scheduled-crons.php:91
|
2005 |
+
msgid "In %s"
|
2006 |
+
msgstr "In %s"
|
2007 |
+
|
2008 |
+
#. translators: %s: time period (e.g. "2 hours" ago)
|
2009 |
+
#: templates/debug/plugins-themes-sync.php20,
|
2010 |
+
#: templates/debug/scheduled-crons.php:93
|
2011 |
+
msgid "%s ago"
|
2012 |
+
msgstr "%s ago"
|
2013 |
+
|
2014 |
+
#: templates/debug/plugins-themes-sync.php21,
|
2015 |
+
#: templates/debug/scheduled-crons.php:74
|
2016 |
+
msgctxt "seconds"
|
2017 |
+
msgid "sec"
|
2018 |
+
msgstr "sec"
|
2019 |
+
|
2020 |
+
#: templates/debug/plugins-themes-sync.php:23
|
2021 |
+
msgid "Plugins & Themes Sync"
|
2022 |
+
msgstr "Bővítmények és sablonok szinkronizálása"
|
2023 |
+
|
2024 |
+
#: templates/debug/plugins-themes-sync.php:28
|
2025 |
+
msgid "Total"
|
2026 |
+
msgstr "Összesen"
|
2027 |
+
|
2028 |
+
#: templates/debug/plugins-themes-sync.php29,
|
2029 |
+
#: templates/debug/scheduled-crons.php:84
|
2030 |
+
msgid "Last"
|
2031 |
+
msgstr "Last"
|
2032 |
+
|
2033 |
+
#: templates/debug/scheduled-crons.php:76
|
2034 |
+
msgid "Scheduled Crons"
|
2035 |
+
msgstr "Scheduled Crons"
|
2036 |
+
|
2037 |
+
#: templates/debug/scheduled-crons.php:81
|
2038 |
+
msgid "Module"
|
2039 |
+
msgstr "Module"
|
2040 |
+
|
2041 |
+
#: templates/debug/scheduled-crons.php:82
|
2042 |
+
msgid "Module Type"
|
2043 |
+
msgstr "Module Type"
|
2044 |
+
|
2045 |
+
#: templates/debug/scheduled-crons.php:83
|
2046 |
+
msgid "Cron Type"
|
2047 |
+
msgstr "Cron Type"
|
2048 |
+
|
2049 |
+
#: templates/debug/scheduled-crons.php:85
|
2050 |
+
msgid "Next"
|
2051 |
+
msgstr "Next"
|
2052 |
+
|
2053 |
+
#: templates/forms/affiliation.php:82
|
2054 |
+
msgid "Non-expiring"
|
2055 |
+
msgstr "Non-expiring"
|
2056 |
+
|
2057 |
+
#: templates/forms/affiliation.php:85
|
2058 |
+
msgid "Apply to become an affiliate"
|
2059 |
+
msgstr "Apply to become an affiliate"
|
2060 |
+
|
2061 |
+
#: templates/forms/affiliation.php:104
|
2062 |
+
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
2063 |
+
msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
2064 |
+
|
2065 |
+
#: templates/forms/affiliation.php:119
|
2066 |
+
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."
|
2067 |
+
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."
|
2068 |
+
|
2069 |
+
#: templates/forms/affiliation.php:122
|
2070 |
+
msgid "Your affiliation account was temporarily suspended."
|
2071 |
+
msgstr "Your affiliation account was temporarily suspended."
|
2072 |
+
|
2073 |
+
#: templates/forms/affiliation.php:125
|
2074 |
+
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."
|
2075 |
+
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."
|
2076 |
+
|
2077 |
+
#: templates/forms/affiliation.php:128
|
2078 |
+
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
2079 |
+
msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
2080 |
+
|
2081 |
+
#: templates/forms/affiliation.php:141
|
2082 |
+
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
2083 |
+
msgstr "Like the %s? Become our ambassador and earn cash ;-)"
|
2084 |
+
|
2085 |
+
#: templates/forms/affiliation.php:142
|
2086 |
+
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
2087 |
+
msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
2088 |
+
|
2089 |
+
#: templates/forms/affiliation.php:145
|
2090 |
+
msgid "Program Summary"
|
2091 |
+
msgstr "Program Summary"
|
2092 |
+
|
2093 |
+
#: templates/forms/affiliation.php:147
|
2094 |
+
msgid "%s commission when a customer purchases a new license."
|
2095 |
+
msgstr "%s commission when a customer purchases a new license."
|
2096 |
+
|
2097 |
+
#: templates/forms/affiliation.php:149
|
2098 |
+
msgid "Get commission for automated subscription renewals."
|
2099 |
+
msgstr "Get commission for automated subscription renewals."
|
2100 |
+
|
2101 |
+
#: templates/forms/affiliation.php:152
|
2102 |
+
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
2103 |
+
msgstr "%s tracking cookie after the first visit to maximize earnings potential."
|
2104 |
+
|
2105 |
+
#: templates/forms/affiliation.php:155
|
2106 |
+
msgid "Unlimited commissions."
|
2107 |
+
msgstr "Unlimited commissions."
|
2108 |
+
|
2109 |
+
#: templates/forms/affiliation.php:157
|
2110 |
+
msgid "%s minimum payout amount."
|
2111 |
+
msgstr "%s minimum payout amount."
|
2112 |
+
|
2113 |
+
#: templates/forms/affiliation.php:158
|
2114 |
+
msgid "Payouts are in USD and processed monthly via PayPal."
|
2115 |
+
msgstr "Payouts are in USD and processed monthly via PayPal."
|
2116 |
+
|
2117 |
+
#: templates/forms/affiliation.php:159
|
2118 |
+
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2119 |
+
msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2120 |
+
|
2121 |
+
#: templates/forms/affiliation.php:162
|
2122 |
+
msgid "Affiliate"
|
2123 |
+
msgstr "Affiliate"
|
2124 |
+
|
2125 |
+
#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
|
2126 |
+
msgid "Email address"
|
2127 |
+
msgstr "Email cím"
|
2128 |
+
|
2129 |
+
#: templates/forms/affiliation.php:169
|
2130 |
+
msgid "Full name"
|
2131 |
+
msgstr "Teljes név"
|
2132 |
+
|
2133 |
+
#: templates/forms/affiliation.php:173
|
2134 |
+
msgid "PayPal account email address"
|
2135 |
+
msgstr "PayPal fiók email címe"
|
2136 |
+
|
2137 |
+
#: templates/forms/affiliation.php:177
|
2138 |
+
msgid "Where are you going to promote the %s?"
|
2139 |
+
msgstr "Where are you going to promote the %s?"
|
2140 |
+
|
2141 |
+
#: templates/forms/affiliation.php:179
|
2142 |
+
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2143 |
+
msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2144 |
+
|
2145 |
+
#: templates/forms/affiliation.php:181
|
2146 |
+
msgid "Add another domain"
|
2147 |
+
msgstr "Másik domain hozzáadása"
|
2148 |
+
|
2149 |
+
#: templates/forms/affiliation.php:185
|
2150 |
+
msgid "Extra Domains"
|
2151 |
+
msgstr "További domainek"
|
2152 |
+
|
2153 |
+
#: templates/forms/affiliation.php:186
|
2154 |
+
msgid "Extra domains where you will be marketing the product from."
|
2155 |
+
msgstr "Extra domains where you will be marketing the product from."
|
2156 |
+
|
2157 |
+
#: templates/forms/affiliation.php:196
|
2158 |
+
msgid "Promotion methods"
|
2159 |
+
msgstr "Promotion methods"
|
2160 |
+
|
2161 |
+
#: templates/forms/affiliation.php:199
|
2162 |
+
msgid "Social media (Facebook, Twitter, etc.)"
|
2163 |
+
msgstr "Social media (Facebook, Twitter, etc.)"
|
2164 |
+
|
2165 |
+
#: templates/forms/affiliation.php:203
|
2166 |
+
msgid "Mobile apps"
|
2167 |
+
msgstr "Mobile apps"
|
2168 |
+
|
2169 |
+
#: templates/forms/affiliation.php:207
|
2170 |
+
msgid "Website, email, and social media statistics (optional)"
|
2171 |
+
msgstr "Weboldal, email és közösségi média statisztikák (opcionális)"
|
2172 |
+
|
2173 |
+
#: templates/forms/affiliation.php:210
|
2174 |
+
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)."
|
2175 |
+
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)."
|
2176 |
+
|
2177 |
+
#: templates/forms/affiliation.php:214
|
2178 |
+
msgid "How will you promote us?"
|
2179 |
+
msgstr "How will you promote us?"
|
2180 |
+
|
2181 |
+
#: templates/forms/affiliation.php:217
|
2182 |
+
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2183 |
+
msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2184 |
+
|
2185 |
+
#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
|
2186 |
+
msgid "Cancel"
|
2187 |
+
msgstr "Mégsem"
|
2188 |
+
|
2189 |
+
#: templates/forms/affiliation.php:225
|
2190 |
+
msgid "Become an affiliate"
|
2191 |
+
msgstr "Become an affiliate"
|
2192 |
+
|
2193 |
+
#: templates/forms/license-activation.php:20
|
2194 |
+
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2195 |
+
msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:"
|
2196 |
+
|
2197 |
+
#: templates/forms/license-activation.php:25
|
2198 |
+
msgid "Update License"
|
2199 |
+
msgstr "Licensz frissítése"
|
2200 |
+
|
2201 |
+
#: templates/forms/optout.php:30
|
2202 |
+
msgctxt "verb"
|
2203 |
+
msgid "Opt Out"
|
2204 |
+
msgstr "Leiratkozás"
|
2205 |
+
|
2206 |
+
#: templates/forms/optout.php:31
|
2207 |
+
msgctxt "verb"
|
2208 |
+
msgid "Opt In"
|
2209 |
+
msgstr "Feliratkozás"
|
2210 |
+
|
2211 |
+
#: templates/forms/optout.php:33
|
2212 |
+
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."
|
2213 |
+
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."
|
2214 |
+
|
2215 |
+
#: templates/forms/optout.php:35
|
2216 |
+
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2217 |
+
msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2218 |
+
|
2219 |
+
#: templates/forms/premium-versions-upgrade-handler.php:40
|
2220 |
+
msgid "There is a new version of %s available."
|
2221 |
+
msgstr "A(z) %s új verziója érhető el."
|
2222 |
+
|
2223 |
+
#: templates/forms/premium-versions-upgrade-handler.php:41
|
2224 |
+
msgid " %s to access version %s security & feature updates, and support."
|
2225 |
+
msgstr " %s to access version %s security & feature updates, and support."
|
2226 |
+
|
2227 |
+
#: templates/forms/premium-versions-upgrade-handler.php:54
|
2228 |
+
msgid "New Version Available"
|
2229 |
+
msgstr "Új verzió érhető el"
|
2230 |
+
|
2231 |
+
#: templates/forms/premium-versions-upgrade-handler.php:75
|
2232 |
+
msgctxt "close a window"
|
2233 |
+
msgid "Dismiss"
|
2234 |
+
msgstr "Mégsem"
|
2235 |
+
|
2236 |
+
#: templates/forms/resend-key.php:21
|
2237 |
+
msgid "Send License Key"
|
2238 |
+
msgstr "Licensz kulcs küldése"
|
2239 |
+
|
2240 |
+
#: templates/forms/resend-key.php:57
|
2241 |
+
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2242 |
+
msgstr "Add meg az email címet, amit a vásárlás során használtál és újraküldjük a licensz kulcsot."
|
2243 |
+
|
2244 |
+
#: templates/forms/subscription-cancellation.php:37
|
2245 |
+
msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
|
2246 |
+
msgstr "A(z) %s deaktiválása vagy törlése automatikusan törli az oldalhoz tartozó licenszed is, amit így másik weboldalon tudsz újra aktiválni."
|
2247 |
+
|
2248 |
+
#: templates/forms/subscription-cancellation.php:47
|
2249 |
+
msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
|
2250 |
+
msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?"
|
2251 |
+
|
2252 |
+
#: templates/forms/subscription-cancellation.php:52
|
2253 |
+
msgid "license"
|
2254 |
+
msgstr "licensz"
|
2255 |
+
|
2256 |
+
#: templates/forms/subscription-cancellation.php:57
|
2257 |
+
msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
|
2258 |
+
msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site."
|
2259 |
+
|
2260 |
+
#: templates/forms/subscription-cancellation.php:68
|
2261 |
+
msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
|
2262 |
+
msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
|
2263 |
+
|
2264 |
+
#: templates/forms/subscription-cancellation.php:103
|
2265 |
+
msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
|
2266 |
+
msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license."
|
2267 |
+
|
2268 |
+
#: templates/forms/subscription-cancellation.php:136
|
2269 |
+
msgid "Cancel %s?"
|
2270 |
+
msgstr "Cancel %s?"
|
2271 |
+
|
2272 |
+
#: templates/forms/subscription-cancellation.php:143
|
2273 |
+
msgid "Proceed"
|
2274 |
+
msgstr "Proceed"
|
2275 |
+
|
2276 |
+
#: templates/forms/subscription-cancellation.php191,
|
2277 |
+
#: templates/forms/deactivation/form.php:150
|
2278 |
+
msgid "Cancel %s & Proceed"
|
2279 |
+
msgstr "Cancel %s & Proceed"
|
2280 |
+
|
2281 |
+
#: templates/forms/trial-start.php:22
|
2282 |
+
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2283 |
+
msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2284 |
+
|
2285 |
+
#: templates/forms/trial-start.php:28
|
2286 |
+
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."
|
2287 |
+
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."
|
2288 |
+
|
2289 |
+
#: templates/js/style-premium-theme.php:37
|
2290 |
+
msgid "Premium"
|
2291 |
+
msgstr "Prémium"
|
2292 |
+
|
2293 |
+
#: templates/partials/network-activation.php:23
|
2294 |
+
msgid "Activate license on all sites in the network."
|
2295 |
+
msgstr "Activate license on all sites in the network."
|
2296 |
+
|
2297 |
+
#: templates/partials/network-activation.php:24
|
2298 |
+
msgid "Apply on all sites in the network."
|
2299 |
+
msgstr "Apply on all sites in the network."
|
2300 |
+
|
2301 |
+
#: templates/partials/network-activation.php:27
|
2302 |
+
msgid "Activate license on all pending sites."
|
2303 |
+
msgstr "Activate license on all pending sites."
|
2304 |
+
|
2305 |
+
#: templates/partials/network-activation.php:28
|
2306 |
+
msgid "Apply on all pending sites."
|
2307 |
+
msgstr "Apply on all pending sites."
|
2308 |
+
|
2309 |
+
#: templates/partials/network-activation.php36,
|
2310 |
+
#: templates/partials/network-activation.php:68
|
2311 |
+
msgid "allow"
|
2312 |
+
msgstr "allow"
|
2313 |
+
|
2314 |
+
#: templates/partials/network-activation.php38,
|
2315 |
+
#: templates/partials/network-activation.php:70
|
2316 |
+
msgid "delegate"
|
2317 |
+
msgstr "delegate"
|
2318 |
+
|
2319 |
+
#: templates/partials/network-activation.php41,
|
2320 |
+
#: templates/partials/network-activation.php:73
|
2321 |
+
msgid "skip"
|
2322 |
+
msgstr "ugrás"
|
2323 |
+
|
2324 |
+
#: templates/plugin-info/description.php72,
|
2325 |
+
#: templates/plugin-info/screenshots.php:31
|
2326 |
+
msgid "Click to view full-size screenshot %d"
|
2327 |
+
msgstr "Click to view full-size screenshot %d"
|
2328 |
+
|
2329 |
+
#: templates/plugin-info/features.php:56
|
2330 |
+
msgid "Unlimited Updates"
|
2331 |
+
msgstr "Korlátlan frissítés"
|
2332 |
+
|
2333 |
+
#: templates/account/partials/activate-license-button.php:46
|
2334 |
+
msgid "Localhost"
|
2335 |
+
msgstr "Localhost"
|
2336 |
+
|
2337 |
+
#: templates/account/partials/activate-license-button.php:50
|
2338 |
+
msgctxt "as 5 licenses left"
|
2339 |
+
msgid "%s left"
|
2340 |
+
msgstr "%s left"
|
2341 |
+
|
2342 |
+
#: templates/account/partials/activate-license-button.php:51
|
2343 |
+
msgid "Last license"
|
2344 |
+
msgstr "Last license"
|
2345 |
+
|
2346 |
+
#: templates/account/partials/addon.php:115
|
2347 |
+
msgid "Cancelled"
|
2348 |
+
msgstr "Törölve"
|
2349 |
+
|
2350 |
+
#: templates/account/partials/addon.php:125
|
2351 |
+
msgid "No expiration"
|
2352 |
+
msgstr "No expiration"
|
2353 |
+
|
2354 |
+
#: templates/account/partials/addon.php264,
|
2355 |
+
#: templates/account/partials/addon.php:317
|
2356 |
+
msgid "Activate this add-on"
|
2357 |
+
msgstr "Activate this add-on"
|
2358 |
+
|
2359 |
+
#: templates/account/partials/site.php:181
|
2360 |
+
msgid "Owner Name"
|
2361 |
+
msgstr "Tulajdonos neve"
|
2362 |
+
|
2363 |
+
#: templates/account/partials/site.php:193
|
2364 |
+
msgid "Owner Email"
|
2365 |
+
msgstr "Tulajdonos email címe"
|
2366 |
+
|
2367 |
+
#: templates/account/partials/site.php:205
|
2368 |
+
msgid "Owner ID"
|
2369 |
+
msgstr "Tulajdonos ID"
|
2370 |
+
|
2371 |
+
#: templates/account/partials/site.php:270
|
2372 |
+
msgid "Subscription"
|
2373 |
+
msgstr "Előfizetés"
|
2374 |
+
|
2375 |
+
#: templates/forms/deactivation/contact.php:19
|
2376 |
+
msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2377 |
+
msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
|
2378 |
+
|
2379 |
+
#: templates/forms/deactivation/contact.php:22
|
2380 |
+
msgid "Contact Support"
|
2381 |
+
msgstr "Írás az ügyfélszolgálatra"
|
2382 |
+
|
2383 |
+
#: templates/forms/deactivation/form.php:59
|
2384 |
+
msgid "Anonymous feedback"
|
2385 |
+
msgstr "Névtelen visszajelzés"
|
2386 |
+
|
2387 |
+
#: templates/forms/deactivation/form.php:66
|
2388 |
+
msgid "Deactivate"
|
2389 |
+
msgstr "Deaktiválás"
|
2390 |
+
|
2391 |
+
#: templates/forms/deactivation/form.php:68
|
2392 |
+
msgid "Activate %s"
|
2393 |
+
msgstr "%s aktiválása"
|
2394 |
+
|
2395 |
+
#: templates/forms/deactivation/form.php:80
|
2396 |
+
msgid "Quick Feedback"
|
2397 |
+
msgstr "Gyors visszajelzés"
|
2398 |
+
|
2399 |
+
#: templates/forms/deactivation/form.php:84
|
2400 |
+
msgid "If you have a moment, please let us know why you are %s"
|
2401 |
+
msgstr "Kérlek mondd el, miért %s"
|
2402 |
+
|
2403 |
+
#: templates/forms/deactivation/form.php:84
|
2404 |
+
msgid "deactivating"
|
2405 |
+
msgstr "deaktiválod"
|
2406 |
+
|
2407 |
+
#: templates/forms/deactivation/form.php:84
|
2408 |
+
msgid "switching"
|
2409 |
+
msgstr "váltasz"
|
2410 |
+
|
2411 |
+
#: templates/forms/deactivation/form.php:332
|
2412 |
+
msgid "Submit & %s"
|
2413 |
+
msgstr "Küldés & %s"
|
2414 |
+
|
2415 |
+
#: templates/forms/deactivation/form.php:353
|
2416 |
+
msgid "Kindly tell us the reason so we can improve."
|
2417 |
+
msgstr "Ha elmondod az okát, tudunk fejlődni."
|
2418 |
+
|
2419 |
+
#: templates/forms/deactivation/form.php:478
|
2420 |
+
msgid "Yes - %s"
|
2421 |
+
msgstr "Yes - %s"
|
2422 |
+
|
2423 |
+
#: templates/forms/deactivation/form.php:485
|
2424 |
+
msgid "Skip & %s"
|
2425 |
+
msgstr "Kihagyás & %s"
|
2426 |
+
|
2427 |
+
#: templates/forms/deactivation/retry-skip.php:21
|
2428 |
+
msgid "Click here to use the plugin anonymously"
|
2429 |
+
msgstr "Kattints ide, ha névtelenül szeretnéd használni a bővítményt"
|
2430 |
+
|
2431 |
+
#: templates/forms/deactivation/retry-skip.php:23
|
2432 |
+
msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
|
2433 |
+
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-it_IT.mo
CHANGED
Binary file
|
freemius/languages/freemius-it_IT.po
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
|
5 |
# Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2018
|
|
|
6 |
# Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
|
7 |
# Vova Feldman <vova@freemius.com>, 2015-2016
|
8 |
msgid ""
|
@@ -10,8 +11,8 @@ 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: 2018-
|
14 |
-
"Last-Translator:
|
15 |
"Language: it_IT\n"
|
16 |
"Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -24,772 +25,772 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
-
#: includes/class-freemius.php:
|
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:
|
32 |
msgid "Error"
|
33 |
msgstr "Errore"
|
34 |
|
35 |
-
#: includes/class-freemius.php:
|
36 |
msgid "I found a better %s"
|
37 |
msgstr "Ho trovato un migliore %s"
|
38 |
|
39 |
-
#: includes/class-freemius.php:
|
40 |
msgid "What's the %s's name?"
|
41 |
msgstr "Qual è il nome di %s?"
|
42 |
|
43 |
-
#: includes/class-freemius.php:
|
44 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
45 |
msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
|
46 |
|
47 |
-
#: includes/class-freemius.php:
|
48 |
msgid "Deactivation"
|
49 |
msgstr "Disattivazione"
|
50 |
|
51 |
-
#: includes/class-freemius.php:
|
52 |
msgid "Theme Switch"
|
53 |
msgstr "Cambio tema"
|
54 |
|
55 |
-
#: includes/class-freemius.
|
56 |
msgid "Other"
|
57 |
msgstr "Altro"
|
58 |
|
59 |
-
#: includes/class-freemius.php:
|
60 |
msgid "I no longer need the %s"
|
61 |
msgstr "Non ho più bisogno di %s"
|
62 |
|
63 |
-
#: includes/class-freemius.php:
|
64 |
msgid "I only needed the %s for a short period"
|
65 |
msgstr "Ho avuto bisogno di %s per un breve periodo"
|
66 |
|
67 |
-
#: includes/class-freemius.php:
|
68 |
msgid "The %s broke my site"
|
69 |
msgstr "%s ha rotto il mio sito"
|
70 |
|
71 |
-
#: includes/class-freemius.php:
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
msgstr "%s ha improvvisamente smesso di funzionare"
|
74 |
|
75 |
-
#: includes/class-freemius.php:
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "Non posso piú pagarlo"
|
78 |
|
79 |
-
#: includes/class-freemius.php:
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr "Che prezzo ritieni opportuno pagare?"
|
82 |
|
83 |
-
#: includes/class-freemius.php:
|
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:
|
88 |
msgid "The %s didn't work"
|
89 |
msgstr "%s non funziona"
|
90 |
|
91 |
-
#: includes/class-freemius.php:
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "Non capisco come farlo funzionare"
|
94 |
|
95 |
-
#: includes/class-freemius.php:
|
96 |
msgid "The %s is great, but I need specific feature that you don't support"
|
97 |
msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
|
98 |
|
99 |
-
#: includes/class-freemius.php:
|
100 |
msgid "What feature?"
|
101 |
msgstr "Quale funzionalitá?"
|
102 |
|
103 |
-
#: includes/class-freemius.php:
|
104 |
msgid "The %s is not working"
|
105 |
msgstr "%s non funziona"
|
106 |
|
107 |
-
#: includes/class-freemius.php:
|
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:
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "Non é quello che stavo cercando"
|
114 |
|
115 |
-
#: includes/class-freemius.php:
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "Che cosa stai cercando?"
|
118 |
|
119 |
-
#: includes/class-freemius.php:
|
120 |
msgid "The %s didn't work as expected"
|
121 |
msgstr "%s non ha funzionato come mi aspettavo"
|
122 |
|
123 |
-
#: includes/class-freemius.php:
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "Che cosa ti aspettavi?"
|
126 |
|
127 |
-
#: includes/class-freemius.
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Debug Freemius"
|
130 |
|
131 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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 "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
|
142 |
|
143 |
-
#: includes/class-freemius.php:
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "Sì - fai pure"
|
146 |
|
147 |
-
#: includes/class-freemius.php:
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "No - disattiva e basta"
|
150 |
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
-
#: includes/class-freemius.
|
157 |
-
#: includes/class-freemius.
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "Ops"
|
161 |
|
162 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
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.
|
177 |
-
#: includes/class-freemius.php:
|
178 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
179 |
msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
|
180 |
|
181 |
-
#: includes/class-freemius.php:
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
msgstr "La versione 1%s Permium è stata attivata con successo."
|
184 |
|
185 |
-
#: includes/class-freemius.
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "Forte"
|
189 |
|
190 |
-
#: includes/class-freemius.php:
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "Hai la licenza %s."
|
193 |
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.
|
196 |
-
#: includes/class-freemius.
|
197 |
-
#: includes/class-freemius.php:
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "Evvai"
|
201 |
|
202 |
-
#: includes/class-freemius.php:
|
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:
|
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.
|
211 |
#: templates/account/partials/addon.php:288
|
212 |
msgid "More information about %s"
|
213 |
msgstr "Ulteriori informazioni su %s"
|
214 |
|
215 |
-
#: includes/class-freemius.php:
|
216 |
msgid "Purchase License"
|
217 |
msgstr "Acquista licenza"
|
218 |
|
219 |
-
#: includes/class-freemius.
|
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:
|
224 |
msgid "start the trial"
|
225 |
msgstr "Inizia il periodo di prova gratuito"
|
226 |
|
227 |
-
#: includes/class-freemius.
|
228 |
msgid "complete the install"
|
229 |
msgstr "completa l'installazione"
|
230 |
|
231 |
-
#: includes/class-freemius.php:
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "Sei a un passo dalla fine - %s"
|
234 |
|
235 |
-
#: includes/class-freemius.php:
|
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:
|
241 |
msgid "We made a few tweaks to the %s, %s"
|
242 |
msgstr "Abbiamo fatto alcune migliore a %s,%s"
|
243 |
|
244 |
-
#: includes/class-freemius.php:
|
245 |
msgid "Opt in to make \"%s\" better!"
|
246 |
msgstr "Opt in to make \"%s\" better!"
|
247 |
|
248 |
-
#: includes/class-freemius.php:
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "L'aggiornamento di %s è stato completato con successo."
|
251 |
|
252 |
-
#: includes/class-freemius.
|
253 |
-
#: includes/class-fs-plugin-updater.
|
254 |
-
#: includes/class-fs-plugin-updater.
|
255 |
#: templates/auto-installation.php:32
|
256 |
msgid "Add-On"
|
257 |
msgstr "Add-on"
|
258 |
|
259 |
-
#: includes/class-freemius.
|
260 |
#: templates/debug.php:520
|
261 |
msgid "Plugin"
|
262 |
msgstr "Plugin"
|
263 |
|
264 |
-
#: includes/class-freemius.
|
265 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
266 |
msgid "Theme"
|
267 |
msgstr "Tema"
|
268 |
|
269 |
-
#: includes/class-freemius.php:
|
270 |
msgid "Invalid site details collection."
|
271 |
msgstr "Invalid site details collection."
|
272 |
|
273 |
-
#: includes/class-freemius.php:
|
274 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
275 |
msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
278 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
279 |
msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
|
280 |
|
281 |
-
#: includes/class-freemius.php:
|
282 |
msgid "Account is pending activation."
|
283 |
msgstr "Account in attesa di attivazione."
|
284 |
|
285 |
-
#: includes/class-freemius.
|
286 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
287 |
msgid "Buy a license now"
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: includes/class-freemius.
|
291 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
292 |
msgid "Renew your license now"
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#: includes/class-freemius.php:
|
296 |
msgid "%s to access version %s security & feature updates, and support."
|
297 |
msgstr "%s to access version %s security & feature updates, and support."
|
298 |
|
299 |
-
#: includes/class-freemius.php:
|
300 |
msgid "%s activation was successfully completed."
|
301 |
msgstr "%s è stato attivato con successo."
|
302 |
|
303 |
-
#: includes/class-freemius.php:
|
304 |
msgid "Your account was successfully activated with the %s plan."
|
305 |
msgstr "Il tuo account è stato attivato correttamente con il piano %s."
|
306 |
|
307 |
-
#: includes/class-freemius.
|
308 |
msgid "Your trial has been successfully started."
|
309 |
msgstr "La versione di prova è stata avviata correttamente."
|
310 |
|
311 |
-
#: includes/class-freemius.
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgid "Couldn't activate %s."
|
314 |
msgstr "Non é stato possibile attivare %s."
|
315 |
|
316 |
-
#: includes/class-freemius.
|
317 |
-
#: includes/class-freemius.php:
|
318 |
msgid "Please contact us with the following message:"
|
319 |
msgstr "Contattaci con il seguente messaggio:"
|
320 |
|
321 |
-
#: includes/class-freemius.
|
322 |
msgid "Upgrade"
|
323 |
msgstr "Aggiornamento"
|
324 |
|
325 |
-
#: includes/class-freemius.php:
|
326 |
msgid "Start Trial"
|
327 |
msgstr "Inizia il periodo di prova gratuito"
|
328 |
|
329 |
-
#: includes/class-freemius.php:
|
330 |
msgid "Pricing"
|
331 |
msgstr "Prezzi"
|
332 |
|
333 |
-
#: includes/class-freemius.
|
334 |
msgid "Affiliation"
|
335 |
msgstr "Affiliazione"
|
336 |
|
337 |
-
#: includes/class-freemius.
|
338 |
#: templates/account.php150, templates/debug.php:324
|
339 |
msgid "Account"
|
340 |
msgstr "Account"
|
341 |
|
342 |
-
#: includes/class-freemius.
|
343 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
344 |
msgid "Contact Us"
|
345 |
msgstr "Contattaci"
|
346 |
|
347 |
-
#: includes/class-freemius.
|
348 |
-
#: includes/class-freemius.
|
349 |
#: templates/account/partials/addon.php:41
|
350 |
msgid "Add-Ons"
|
351 |
msgstr "Addon"
|
352 |
|
353 |
-
#: includes/class-freemius.php:
|
354 |
msgctxt "ASCII arrow left icon"
|
355 |
msgid "←"
|
356 |
msgstr "←"
|
357 |
|
358 |
-
#: includes/class-freemius.php:
|
359 |
msgctxt "ASCII arrow right icon"
|
360 |
msgid "➤"
|
361 |
msgstr "➤"
|
362 |
|
363 |
-
#: includes/class-freemius.
|
364 |
msgctxt "noun"
|
365 |
msgid "Pricing"
|
366 |
msgstr "Prezzi"
|
367 |
|
368 |
-
#: includes/class-freemius.
|
369 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
370 |
msgid "Support Forum"
|
371 |
msgstr "Forum di supporto"
|
372 |
|
373 |
-
#: includes/class-freemius.php:
|
374 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
375 |
msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
|
376 |
|
377 |
-
#: includes/class-freemius.php:
|
378 |
msgctxt "a positive response"
|
379 |
msgid "Right on"
|
380 |
msgstr "Sì"
|
381 |
|
382 |
-
#: includes/class-freemius.php:
|
383 |
msgid "Your %s Add-on plan was successfully upgraded."
|
384 |
msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
|
385 |
|
386 |
-
#: includes/class-freemius.php:
|
387 |
msgid "%s Add-on was successfully purchased."
|
388 |
msgstr "L' add-on %s è stato acquistato con successo."
|
389 |
|
390 |
-
#: includes/class-freemius.php:
|
391 |
msgid "Download the latest version"
|
392 |
msgstr "Scarica l'ultima versione"
|
393 |
|
394 |
-
#: includes/class-freemius.php:
|
395 |
msgctxt "%1s - plugin title, %2s - API domain"
|
396 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
397 |
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."
|
398 |
|
399 |
-
#: includes/class-freemius.
|
400 |
-
#: includes/class-freemius.php:
|
401 |
msgid "Error received from the server:"
|
402 |
msgstr "Errore ricevuto dal server:"
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
406 |
msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
|
407 |
|
408 |
-
#: includes/class-freemius.
|
409 |
-
#: includes/class-freemius.
|
410 |
msgctxt ""
|
411 |
msgid "Hmm"
|
412 |
msgstr "Uhm"
|
413 |
|
414 |
-
#: includes/class-freemius.php:
|
415 |
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."
|
416 |
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."
|
417 |
|
418 |
-
#: includes/class-freemius.
|
419 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
420 |
msgctxt "trial period"
|
421 |
msgid "Trial"
|
422 |
msgstr "Prova gratuita"
|
423 |
|
424 |
-
#: includes/class-freemius.php:
|
425 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
426 |
msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
|
427 |
|
428 |
-
#: includes/class-freemius.
|
429 |
msgid "Please contact us here"
|
430 |
msgstr "Contattaci qui"
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
433 |
msgid "Your plan was successfully upgraded."
|
434 |
msgstr "Il piano è stato aggiornato con successo."
|
435 |
|
436 |
-
#: includes/class-freemius.php:
|
437 |
msgid "Your plan was successfully changed to %s."
|
438 |
msgstr "Il piano è stato cambiato con successo a %s."
|
439 |
|
440 |
-
#: includes/class-freemius.php:
|
441 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
442 |
msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
|
443 |
|
444 |
-
#: includes/class-freemius.php:
|
445 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
446 |
msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
449 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
450 |
msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
|
451 |
|
452 |
-
#: includes/class-freemius.php:
|
453 |
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."
|
454 |
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."
|
455 |
|
456 |
-
#: includes/class-freemius.php:
|
457 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
458 |
msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
|
459 |
|
460 |
-
#: includes/class-freemius.php:
|
461 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
462 |
msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
465 |
msgid "It looks like the license could not be activated."
|
466 |
msgstr "Sembra che la licenza non possa essere attivata."
|
467 |
|
468 |
-
#: includes/class-freemius.php:
|
469 |
msgid "Your license was successfully activated."
|
470 |
msgstr "La tua licenza è stata attivata correttamente."
|
471 |
|
472 |
-
#: includes/class-freemius.php:
|
473 |
msgid "It looks like your site currently doesn't have an active license."
|
474 |
msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
|
475 |
|
476 |
-
#: includes/class-freemius.php:
|
477 |
msgid "It looks like the license deactivation failed."
|
478 |
msgstr "Sembra che la disattivazione della licenza non sia riuscita."
|
479 |
|
480 |
-
#: includes/class-freemius.php:
|
481 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
482 |
msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
|
483 |
|
484 |
-
#: includes/class-freemius.php:
|
485 |
msgid "O.K"
|
486 |
msgstr "OK"
|
487 |
|
488 |
-
#: includes/class-freemius.php:
|
489 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
490 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
494 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "You are already running the %s in a trial mode."
|
498 |
msgstr "Stai già usando %s in modalità prova."
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "You already utilized a trial before."
|
502 |
msgstr "Hai già utilizzato una prova gratuita in passato."
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
506 |
msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "Plan %s does not support a trial period."
|
510 |
msgstr "Il piano %s non supporta il periodo di prova."
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
513 |
msgid "None of the %s's plans supports a trial period."
|
514 |
msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
|
515 |
|
516 |
-
#: includes/class-freemius.php:
|
517 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
518 |
msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
|
519 |
|
520 |
-
#: includes/class-freemius.php:
|
521 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
522 |
msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
|
523 |
|
524 |
-
#: includes/class-freemius.php:
|
525 |
msgid "Your %s free trial was successfully cancelled."
|
526 |
msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
|
527 |
|
528 |
-
#: includes/class-freemius.php:
|
529 |
msgid "Version %s was released."
|
530 |
msgstr "La versione %s é stata rilasciata."
|
531 |
|
532 |
-
#: includes/class-freemius.php:
|
533 |
msgid "Please download %s."
|
534 |
msgstr "Scarica %s."
|
535 |
|
536 |
-
#: includes/class-freemius.php:
|
537 |
msgid "the latest %s version here"
|
538 |
msgstr "l'ultima versione %s é quì"
|
539 |
|
540 |
-
#: includes/class-freemius.php:
|
541 |
msgid "New"
|
542 |
msgstr "Nuovo"
|
543 |
|
544 |
-
#: includes/class-freemius.php:
|
545 |
msgid "Seems like you got the latest release."
|
546 |
msgstr "Sembra che tu abbia la versione più recente."
|
547 |
|
548 |
-
#: includes/class-freemius.php:
|
549 |
msgid "You are all good!"
|
550 |
msgstr "Sei fantastico!"
|
551 |
|
552 |
-
#: includes/class-freemius.php:
|
553 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
554 |
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."
|
555 |
|
556 |
-
#: includes/class-freemius.php:
|
557 |
msgid "Site successfully opted in."
|
558 |
msgstr "Sito accettato con successo."
|
559 |
|
560 |
-
#: includes/class-freemius.
|
561 |
msgid "Awesome"
|
562 |
msgstr "Fantastico"
|
563 |
|
564 |
-
#: includes/class-freemius.
|
565 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
566 |
msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
|
567 |
|
568 |
-
#: includes/class-freemius.php:
|
569 |
msgid "Thank you!"
|
570 |
msgstr "Grazie!"
|
571 |
|
572 |
-
#: includes/class-freemius.php:
|
573 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
574 |
msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
|
575 |
|
576 |
-
#: includes/class-freemius.php:
|
577 |
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."
|
578 |
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."
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
581 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
582 |
msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
|
583 |
|
584 |
-
#: includes/class-freemius.php:
|
585 |
msgid "%s is the new owner of the account."
|
586 |
msgstr "%s è il nuovo proprietario dell'account."
|
587 |
|
588 |
-
#: includes/class-freemius.php:
|
589 |
msgctxt "as congratulations"
|
590 |
msgid "Congrats"
|
591 |
msgstr "Congratulazioni"
|
592 |
|
593 |
-
#: includes/class-freemius.php:
|
594 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
595 |
msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
|
596 |
|
597 |
-
#: includes/class-freemius.php:
|
598 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
599 |
msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
|
600 |
|
601 |
-
#: includes/class-freemius.php:
|
602 |
msgid "Change Ownership"
|
603 |
msgstr "Cambia Proprietario"
|
604 |
|
605 |
-
#: includes/class-freemius.php:
|
606 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
607 |
msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
|
608 |
|
609 |
-
#: includes/class-freemius.php:
|
610 |
msgid "Please provide your full name."
|
611 |
msgstr "Per favore inserisci il tuo nome completo."
|
612 |
|
613 |
-
#: includes/class-freemius.php:
|
614 |
msgid "Your name was successfully updated."
|
615 |
msgstr "Il tuo nome è stato aggiornato correttamente."
|
616 |
|
617 |
-
#: includes/class-freemius.php:
|
618 |
msgid "You have successfully updated your %s."
|
619 |
msgstr "Hai aggiornato con successo il tuo %s."
|
620 |
|
621 |
-
#: includes/class-freemius.php:
|
622 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
623 |
msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
|
624 |
|
625 |
-
#: includes/class-freemius.php:
|
626 |
msgctxt "advance notice of something that will need attention."
|
627 |
msgid "Heads up"
|
628 |
msgstr "Attenzione"
|
629 |
|
630 |
-
#: includes/class-freemius.php:
|
631 |
msgctxt "exclamation"
|
632 |
msgid "Hey"
|
633 |
msgstr "Hey"
|
634 |
|
635 |
-
#: includes/class-freemius.php:
|
636 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
637 |
msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
|
638 |
|
639 |
-
#: includes/class-freemius.php:
|
640 |
msgid "No commitment for %s days - cancel anytime!"
|
641 |
msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
|
642 |
|
643 |
-
#: includes/class-freemius.php:
|
644 |
msgid "No credit card required"
|
645 |
msgstr "Nessuna carta di credito richiesta"
|
646 |
|
647 |
-
#: includes/class-freemius.
|
648 |
msgctxt "call to action"
|
649 |
msgid "Start free trial"
|
650 |
msgstr "Inizia il periodo di prova gratuito"
|
651 |
|
652 |
-
#: includes/class-freemius.php:
|
653 |
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!"
|
654 |
msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
|
655 |
|
656 |
-
#: includes/class-freemius.php:
|
657 |
msgid "Learn more"
|
658 |
msgstr "Scopri altro"
|
659 |
|
660 |
-
#: includes/class-freemius.
|
661 |
#: templates/account.php509, templates/connect.php171,
|
662 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
663 |
#: templates/account/partials/addon.php:235
|
664 |
msgid "Activate License"
|
665 |
msgstr "Attiva licenza"
|
666 |
|
667 |
-
#: includes/class-freemius.
|
668 |
#: templates/account.php508, templates/account/partials/site.php:256
|
669 |
msgid "Change License"
|
670 |
msgstr "Cambia licenza"
|
671 |
|
672 |
-
#: includes/class-freemius.
|
673 |
msgid "Opt Out"
|
674 |
msgstr "Cancella iscrizione"
|
675 |
|
676 |
-
#: includes/class-freemius.
|
677 |
#: templates/account/partials/site.php43,
|
678 |
#: templates/account/partials/site.php:161
|
679 |
msgid "Opt In"
|
680 |
msgstr "Iscriviti"
|
681 |
|
682 |
-
#: includes/class-freemius.php:
|
683 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: includes/class-freemius.php:
|
687 |
msgid "Activate %s features"
|
688 |
msgstr "Activate %s features"
|
689 |
|
690 |
-
#: includes/class-freemius.php:
|
691 |
msgid "Please follow these steps to complete the upgrade"
|
692 |
msgstr "Segui i passi seguenti per completare l'aggiornamento"
|
693 |
|
694 |
-
#: includes/class-freemius.php:
|
695 |
msgid "Download the latest %s version"
|
696 |
msgstr "Scarica l'ultima versione di %s"
|
697 |
|
698 |
-
#: includes/class-freemius.php:
|
699 |
msgid "Upload and activate the downloaded version"
|
700 |
msgstr "Carica e attiva la versione scaricata"
|
701 |
|
702 |
-
#: includes/class-freemius.php:
|
703 |
msgid "How to upload and activate?"
|
704 |
msgstr "Come faccio a caricare ed attivare?"
|
705 |
|
706 |
-
#: includes/class-freemius.php:
|
707 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
708 |
msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
|
709 |
|
710 |
-
#: includes/class-freemius.php:
|
711 |
msgid "Auto installation only works for opted-in users."
|
712 |
msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
|
713 |
|
714 |
-
#: includes/class-freemius.
|
715 |
-
#: includes/class-fs-plugin-updater.
|
716 |
-
#: includes/class-fs-plugin-updater.php:
|
717 |
msgid "Invalid module ID."
|
718 |
msgstr "ID modulo non valida."
|
719 |
|
720 |
-
#: includes/class-freemius.
|
721 |
msgid "Premium version already active."
|
722 |
msgstr "Versione Premium già attiva."
|
723 |
|
724 |
-
#: includes/class-freemius.php:
|
725 |
msgid "You do not have a valid license to access the premium version."
|
726 |
msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
|
727 |
|
728 |
-
#: includes/class-freemius.php:
|
729 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
730 |
msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
|
731 |
|
732 |
-
#: includes/class-freemius.
|
733 |
msgid "Premium add-on version already installed."
|
734 |
msgstr "Versione Premium dell'add-on già installata."
|
735 |
|
736 |
-
#: includes/class-freemius.php:
|
737 |
msgid "View paid features"
|
738 |
msgstr "Vedi funzionalità a pagamento"
|
739 |
|
740 |
-
#: includes/class-freemius.php:
|
741 |
msgid "Thank you so much for using %s and its add-ons!"
|
742 |
msgstr "Grazie per utilizzare %se i suoi addon!"
|
743 |
|
744 |
-
#: includes/class-freemius.php:
|
745 |
msgid "Thank you so much for using %s!"
|
746 |
msgstr "Grazie per utilizzare %s!"
|
747 |
|
748 |
-
#: includes/class-freemius.php:
|
749 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
750 |
msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
|
751 |
|
752 |
-
#: includes/class-freemius.php:
|
753 |
msgid "Thank you so much for using our products!"
|
754 |
msgstr "Grazie per utilizzare i nostri prodotti!"
|
755 |
|
756 |
-
#: includes/class-freemius.php:
|
757 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
758 |
msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
|
759 |
|
760 |
-
#: includes/class-freemius.php:
|
761 |
msgid "%s and its add-ons"
|
762 |
msgstr "%se i suoi addon"
|
763 |
|
764 |
-
#: includes/class-freemius.php:
|
765 |
msgid "Products"
|
766 |
msgstr "Prodotti"
|
767 |
|
768 |
-
#: includes/class-freemius.
|
769 |
msgid "Yes"
|
770 |
msgstr "Si"
|
771 |
|
772 |
-
#: includes/class-freemius.
|
773 |
msgid "send me security & feature updates, educational content and offers."
|
774 |
msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
775 |
|
776 |
-
#: includes/class-freemius.
|
777 |
msgid "No"
|
778 |
msgstr "No"
|
779 |
|
780 |
-
#: includes/class-freemius.
|
781 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
782 |
msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
783 |
|
784 |
-
#: includes/class-freemius.php:
|
785 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
786 |
msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
|
787 |
|
788 |
-
#: includes/class-freemius.
|
789 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
790 |
msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
|
791 |
|
792 |
-
#: includes/class-freemius.php:
|
793 |
msgid "License key is empty."
|
794 |
msgstr "La chiave licenza è vuota."
|
795 |
|
@@ -811,19 +812,19 @@ msgstr "There is a %s of %s available."
|
|
811 |
msgid "new version"
|
812 |
msgstr "new version"
|
813 |
|
814 |
-
#: includes/class-fs-plugin-updater.php:
|
815 |
msgid "Important Upgrade Notice:"
|
816 |
msgstr "Important Upgrade Notice:"
|
817 |
|
818 |
-
#: includes/class-fs-plugin-updater.php:
|
819 |
msgid "Installing plugin: %s"
|
820 |
msgstr "Installazione plugin: %s"
|
821 |
|
822 |
-
#: includes/class-fs-plugin-updater.php:
|
823 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
824 |
msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
|
825 |
|
826 |
-
#: includes/class-fs-plugin-updater.php:
|
827 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
828 |
msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
|
829 |
|
@@ -1142,7 +1143,7 @@ msgstr "Cancelling the subscription"
|
|
1142 |
#: templates/account/partials/addon.php25,
|
1143 |
#: templates/account/partials/site.php:298
|
1144 |
msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1145 |
-
msgstr "%1s
|
1146 |
|
1147 |
#: templates/account.php85, templates/forms/subscription-cancellation.php100,
|
1148 |
#: templates/account/partials/addon.php26,
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Alessandro Pelly Benassi <plasmax@gmail.com>, 2016
|
5 |
# Daniele Scasciafratte Mte90 <mte90net@gmail.com>, 2015-2018
|
6 |
+
# Dario Curvino <d.curvino@gmail.com>, 2018
|
7 |
# Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
|
8 |
# Vova Feldman <vova@freemius.com>, 2015-2016
|
9 |
msgid ""
|
11 |
"Project-Id-Version: WordPress SDK\n"
|
12 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
13 |
"POT-Creation-Date: \n"
|
14 |
+
"PO-Revision-Date: 2018-12-23 14:23+0000\n"
|
15 |
+
"Last-Translator: Dario Curvino <d.curvino@gmail.com>\n"
|
16 |
"Language: it_IT\n"
|
17 |
"Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
"X-Poedit-SourceCharset: UTF-8\n"
|
27 |
|
28 |
+
#: includes/class-freemius.php:1688
|
29 |
msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
30 |
msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
|
31 |
|
32 |
+
#: includes/class-freemius.php:1690
|
33 |
msgid "Error"
|
34 |
msgstr "Errore"
|
35 |
|
36 |
+
#: includes/class-freemius.php:2011
|
37 |
msgid "I found a better %s"
|
38 |
msgstr "Ho trovato un migliore %s"
|
39 |
|
40 |
+
#: includes/class-freemius.php:2013
|
41 |
msgid "What's the %s's name?"
|
42 |
msgstr "Qual è il nome di %s?"
|
43 |
|
44 |
+
#: includes/class-freemius.php:2019
|
45 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
46 |
msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
|
47 |
|
48 |
+
#: includes/class-freemius.php:2021
|
49 |
msgid "Deactivation"
|
50 |
msgstr "Disattivazione"
|
51 |
|
52 |
+
#: includes/class-freemius.php:2022
|
53 |
msgid "Theme Switch"
|
54 |
msgstr "Cambio tema"
|
55 |
|
56 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
57 |
msgid "Other"
|
58 |
msgstr "Altro"
|
59 |
|
60 |
+
#: includes/class-freemius.php:2039
|
61 |
msgid "I no longer need the %s"
|
62 |
msgstr "Non ho più bisogno di %s"
|
63 |
|
64 |
+
#: includes/class-freemius.php:2046
|
65 |
msgid "I only needed the %s for a short period"
|
66 |
msgstr "Ho avuto bisogno di %s per un breve periodo"
|
67 |
|
68 |
+
#: includes/class-freemius.php:2052
|
69 |
msgid "The %s broke my site"
|
70 |
msgstr "%s ha rotto il mio sito"
|
71 |
|
72 |
+
#: includes/class-freemius.php:2059
|
73 |
msgid "The %s suddenly stopped working"
|
74 |
msgstr "%s ha improvvisamente smesso di funzionare"
|
75 |
|
76 |
+
#: includes/class-freemius.php:2069
|
77 |
msgid "I can't pay for it anymore"
|
78 |
msgstr "Non posso piú pagarlo"
|
79 |
|
80 |
+
#: includes/class-freemius.php:2071
|
81 |
msgid "What price would you feel comfortable paying?"
|
82 |
msgstr "Che prezzo ritieni opportuno pagare?"
|
83 |
|
84 |
+
#: includes/class-freemius.php:2077
|
85 |
msgid "I don't like to share my information with you"
|
86 |
msgstr "Non voglio condividere i miei dati con te"
|
87 |
|
88 |
+
#: includes/class-freemius.php:2098
|
89 |
msgid "The %s didn't work"
|
90 |
msgstr "%s non funziona"
|
91 |
|
92 |
+
#: includes/class-freemius.php:2108
|
93 |
msgid "I couldn't understand how to make it work"
|
94 |
msgstr "Non capisco come farlo funzionare"
|
95 |
|
96 |
+
#: includes/class-freemius.php:2116
|
97 |
msgid "The %s is great, but I need specific feature that you don't support"
|
98 |
msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
|
99 |
|
100 |
+
#: includes/class-freemius.php:2118
|
101 |
msgid "What feature?"
|
102 |
msgstr "Quale funzionalitá?"
|
103 |
|
104 |
+
#: includes/class-freemius.php:2122
|
105 |
msgid "The %s is not working"
|
106 |
msgstr "%s non funziona"
|
107 |
|
108 |
+
#: includes/class-freemius.php:2124
|
109 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
110 |
msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
|
111 |
|
112 |
+
#: includes/class-freemius.php:2128
|
113 |
msgid "It's not what I was looking for"
|
114 |
msgstr "Non é quello che stavo cercando"
|
115 |
|
116 |
+
#: includes/class-freemius.php:2130
|
117 |
msgid "What you've been looking for?"
|
118 |
msgstr "Che cosa stai cercando?"
|
119 |
|
120 |
+
#: includes/class-freemius.php:2134
|
121 |
msgid "The %s didn't work as expected"
|
122 |
msgstr "%s non ha funzionato come mi aspettavo"
|
123 |
|
124 |
+
#: includes/class-freemius.php:2136
|
125 |
msgid "What did you expect?"
|
126 |
msgstr "Che cosa ti aspettavi?"
|
127 |
|
128 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
129 |
msgid "Freemius Debug"
|
130 |
msgstr "Debug Freemius"
|
131 |
|
132 |
+
#: includes/class-freemius.php:3670
|
133 |
msgid "I don't know what is cURL or how to install it, help me!"
|
134 |
msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
|
135 |
|
136 |
+
#: includes/class-freemius.php:3672
|
137 |
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."
|
138 |
msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
|
139 |
|
140 |
+
#: includes/class-freemius.php:3679
|
141 |
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."
|
142 |
msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo."
|
143 |
|
144 |
+
#: includes/class-freemius.php:3784
|
145 |
msgid "Yes - do your thing"
|
146 |
msgstr "Sì - fai pure"
|
147 |
|
148 |
+
#: includes/class-freemius.php:3789
|
149 |
msgid "No - just deactivate"
|
150 |
msgstr "No - disattiva e basta"
|
151 |
|
152 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
153 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
154 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
155 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
156 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
157 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
158 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
159 |
msgctxt "exclamation"
|
160 |
msgid "Oops"
|
161 |
msgstr "Ops"
|
162 |
|
163 |
+
#: includes/class-freemius.php:3903
|
164 |
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."
|
165 |
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."
|
166 |
|
167 |
+
#: includes/class-freemius.php:4340
|
168 |
msgctxt "addonX cannot run without pluginY"
|
169 |
msgid "%s cannot run without %s."
|
170 |
msgstr "%s non può funzionare senza %s."
|
171 |
|
172 |
+
#: includes/class-freemius.php:4341
|
173 |
msgctxt "addonX cannot run..."
|
174 |
msgid "%s cannot run without the plugin."
|
175 |
msgstr "%s non può funzionare senza il plugin."
|
176 |
|
177 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
178 |
+
#: includes/class-freemius.php:17953
|
179 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
180 |
msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
|
181 |
|
182 |
+
#: includes/class-freemius.php:5130
|
183 |
msgid "Premium %s version was successfully activated."
|
184 |
msgstr "La versione 1%s Permium è stata attivata con successo."
|
185 |
|
186 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
187 |
msgctxt ""
|
188 |
msgid "W00t"
|
189 |
msgstr "Forte"
|
190 |
|
191 |
+
#: includes/class-freemius.php:5157
|
192 |
msgid "You have a %s license."
|
193 |
msgstr "Hai la licenza %s."
|
194 |
|
195 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
196 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
197 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
198 |
+
#: includes/class-freemius.php:17707
|
199 |
msgctxt "interjection expressing joy or exuberance"
|
200 |
msgid "Yee-haw"
|
201 |
msgstr "Evvai"
|
202 |
|
203 |
+
#: includes/class-freemius.php:5425
|
204 |
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."
|
205 |
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."
|
206 |
|
207 |
+
#: includes/class-freemius.php:5429
|
208 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
209 |
msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
|
210 |
|
211 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
212 |
#: templates/account/partials/addon.php:288
|
213 |
msgid "More information about %s"
|
214 |
msgstr "Ulteriori informazioni su %s"
|
215 |
|
216 |
+
#: includes/class-freemius.php:5439
|
217 |
msgid "Purchase License"
|
218 |
msgstr "Acquista licenza"
|
219 |
|
220 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
221 |
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."
|
222 |
msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
|
223 |
|
224 |
+
#: includes/class-freemius.php:6376
|
225 |
msgid "start the trial"
|
226 |
msgstr "Inizia il periodo di prova gratuito"
|
227 |
|
228 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
229 |
msgid "complete the install"
|
230 |
msgstr "completa l'installazione"
|
231 |
|
232 |
+
#: includes/class-freemius.php:6490
|
233 |
msgid "You are just one step away - %s"
|
234 |
msgstr "Sei a un passo dalla fine - %s"
|
235 |
|
236 |
+
#: includes/class-freemius.php:6493
|
237 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
238 |
msgid "Complete \"%s\" Activation Now"
|
239 |
msgstr "Completa l'attivazione di \"%s\" ora"
|
240 |
|
241 |
+
#: includes/class-freemius.php:6571
|
242 |
msgid "We made a few tweaks to the %s, %s"
|
243 |
msgstr "Abbiamo fatto alcune migliore a %s,%s"
|
244 |
|
245 |
+
#: includes/class-freemius.php:6575
|
246 |
msgid "Opt in to make \"%s\" better!"
|
247 |
msgstr "Opt in to make \"%s\" better!"
|
248 |
|
249 |
+
#: includes/class-freemius.php:7003
|
250 |
msgid "The upgrade of %s was successfully completed."
|
251 |
msgstr "L'aggiornamento di %s è stato completato con successo."
|
252 |
|
253 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
254 |
+
#: includes/class-fs-plugin-updater.php1081,
|
255 |
+
#: includes/class-fs-plugin-updater.php1088,
|
256 |
#: templates/auto-installation.php:32
|
257 |
msgid "Add-On"
|
258 |
msgstr "Add-on"
|
259 |
|
260 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
261 |
#: templates/debug.php:520
|
262 |
msgid "Plugin"
|
263 |
msgstr "Plugin"
|
264 |
|
265 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
266 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
267 |
msgid "Theme"
|
268 |
msgstr "Tema"
|
269 |
|
270 |
+
#: includes/class-freemius.php:11412
|
271 |
msgid "Invalid site details collection."
|
272 |
msgstr "Invalid site details collection."
|
273 |
|
274 |
+
#: includes/class-freemius.php:11532
|
275 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
276 |
msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
|
277 |
|
278 |
+
#: includes/class-freemius.php:11534
|
279 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
280 |
msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
|
281 |
|
282 |
+
#: includes/class-freemius.php:11808
|
283 |
msgid "Account is pending activation."
|
284 |
msgstr "Account in attesa di attivazione."
|
285 |
|
286 |
+
#: includes/class-freemius.php11920,
|
287 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
288 |
msgid "Buy a license now"
|
289 |
+
msgstr "Compra una licenza ora"
|
290 |
|
291 |
+
#: includes/class-freemius.php11932,
|
292 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
293 |
msgid "Renew your license now"
|
294 |
+
msgstr "Rinnova la tua licenza ora"
|
295 |
|
296 |
+
#: includes/class-freemius.php:11936
|
297 |
msgid "%s to access version %s security & feature updates, and support."
|
298 |
msgstr "%s to access version %s security & feature updates, and support."
|
299 |
|
300 |
+
#: includes/class-freemius.php:14319
|
301 |
msgid "%s activation was successfully completed."
|
302 |
msgstr "%s è stato attivato con successo."
|
303 |
|
304 |
+
#: includes/class-freemius.php:14333
|
305 |
msgid "Your account was successfully activated with the %s plan."
|
306 |
msgstr "Il tuo account è stato attivato correttamente con il piano %s."
|
307 |
|
308 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
309 |
msgid "Your trial has been successfully started."
|
310 |
msgstr "La versione di prova è stata avviata correttamente."
|
311 |
|
312 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
313 |
+
#: includes/class-freemius.php:15028
|
314 |
msgid "Couldn't activate %s."
|
315 |
msgstr "Non é stato possibile attivare %s."
|
316 |
|
317 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
318 |
+
#: includes/class-freemius.php:15029
|
319 |
msgid "Please contact us with the following message:"
|
320 |
msgstr "Contattaci con il seguente messaggio:"
|
321 |
|
322 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
323 |
msgid "Upgrade"
|
324 |
msgstr "Aggiornamento"
|
325 |
|
326 |
+
#: includes/class-freemius.php:15384
|
327 |
msgid "Start Trial"
|
328 |
msgstr "Inizia il periodo di prova gratuito"
|
329 |
|
330 |
+
#: includes/class-freemius.php:15386
|
331 |
msgid "Pricing"
|
332 |
msgstr "Prezzi"
|
333 |
|
334 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
335 |
msgid "Affiliation"
|
336 |
msgstr "Affiliazione"
|
337 |
|
338 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
339 |
#: templates/account.php150, templates/debug.php:324
|
340 |
msgid "Account"
|
341 |
msgstr "Account"
|
342 |
|
343 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
344 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
345 |
msgid "Contact Us"
|
346 |
msgstr "Contattaci"
|
347 |
|
348 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
349 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
350 |
#: templates/account/partials/addon.php:41
|
351 |
msgid "Add-Ons"
|
352 |
msgstr "Addon"
|
353 |
|
354 |
+
#: includes/class-freemius.php:15541
|
355 |
msgctxt "ASCII arrow left icon"
|
356 |
msgid "←"
|
357 |
msgstr "←"
|
358 |
|
359 |
+
#: includes/class-freemius.php:15541
|
360 |
msgctxt "ASCII arrow right icon"
|
361 |
msgid "➤"
|
362 |
msgstr "➤"
|
363 |
|
364 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
365 |
msgctxt "noun"
|
366 |
msgid "Pricing"
|
367 |
msgstr "Prezzi"
|
368 |
|
369 |
+
#: includes/class-freemius.php15756,
|
370 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
371 |
msgid "Support Forum"
|
372 |
msgstr "Forum di supporto"
|
373 |
|
374 |
+
#: includes/class-freemius.php:16542
|
375 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
376 |
msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
|
377 |
|
378 |
+
#: includes/class-freemius.php:16543
|
379 |
msgctxt "a positive response"
|
380 |
msgid "Right on"
|
381 |
msgstr "Sì"
|
382 |
|
383 |
+
#: includes/class-freemius.php:17168
|
384 |
msgid "Your %s Add-on plan was successfully upgraded."
|
385 |
msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
|
386 |
|
387 |
+
#: includes/class-freemius.php:17170
|
388 |
msgid "%s Add-on was successfully purchased."
|
389 |
msgstr "L' add-on %s è stato acquistato con successo."
|
390 |
|
391 |
+
#: includes/class-freemius.php:17173
|
392 |
msgid "Download the latest version"
|
393 |
msgstr "Scarica l'ultima versione"
|
394 |
|
395 |
+
#: includes/class-freemius.php:17259
|
396 |
msgctxt "%1s - plugin title, %2s - API domain"
|
397 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
398 |
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."
|
399 |
|
400 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
401 |
+
#: includes/class-freemius.php:17755
|
402 |
msgid "Error received from the server:"
|
403 |
msgstr "Errore ricevuto dal server:"
|
404 |
|
405 |
+
#: includes/class-freemius.php:17272
|
406 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
407 |
msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
|
408 |
|
409 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
410 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
411 |
msgctxt ""
|
412 |
msgid "Hmm"
|
413 |
msgstr "Uhm"
|
414 |
|
415 |
+
#: includes/class-freemius.php:17467
|
416 |
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."
|
417 |
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."
|
418 |
|
419 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
420 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
421 |
msgctxt "trial period"
|
422 |
msgid "Trial"
|
423 |
msgstr "Prova gratuita"
|
424 |
|
425 |
+
#: includes/class-freemius.php:17473
|
426 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
427 |
msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
|
428 |
|
429 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
430 |
msgid "Please contact us here"
|
431 |
msgstr "Contattaci qui"
|
432 |
|
433 |
+
#: includes/class-freemius.php:17487
|
434 |
msgid "Your plan was successfully upgraded."
|
435 |
msgstr "Il piano è stato aggiornato con successo."
|
436 |
|
437 |
+
#: includes/class-freemius.php:17505
|
438 |
msgid "Your plan was successfully changed to %s."
|
439 |
msgstr "Il piano è stato cambiato con successo a %s."
|
440 |
|
441 |
+
#: includes/class-freemius.php:17521
|
442 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
443 |
msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
|
444 |
|
445 |
+
#: includes/class-freemius.php:17523
|
446 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
447 |
msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
|
448 |
|
449 |
+
#: includes/class-freemius.php:17531
|
450 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
451 |
msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
|
452 |
|
453 |
+
#: includes/class-freemius.php:17544
|
454 |
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."
|
455 |
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."
|
456 |
|
457 |
+
#: includes/class-freemius.php:17567
|
458 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
459 |
msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
|
460 |
|
461 |
+
#: includes/class-freemius.php:17569
|
462 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
463 |
msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
|
464 |
|
465 |
+
#: includes/class-freemius.php:17674
|
466 |
msgid "It looks like the license could not be activated."
|
467 |
msgstr "Sembra che la licenza non possa essere attivata."
|
468 |
|
469 |
+
#: includes/class-freemius.php:17704
|
470 |
msgid "Your license was successfully activated."
|
471 |
msgstr "La tua licenza è stata attivata correttamente."
|
472 |
|
473 |
+
#: includes/class-freemius.php:17730
|
474 |
msgid "It looks like your site currently doesn't have an active license."
|
475 |
msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
|
476 |
|
477 |
+
#: includes/class-freemius.php:17754
|
478 |
msgid "It looks like the license deactivation failed."
|
479 |
msgstr "Sembra che la disattivazione della licenza non sia riuscita."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17782
|
482 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
483 |
msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
|
484 |
|
485 |
+
#: includes/class-freemius.php:17783
|
486 |
msgid "O.K"
|
487 |
msgstr "OK"
|
488 |
|
489 |
+
#: includes/class-freemius.php:17836
|
490 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
491 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
492 |
|
493 |
+
#: includes/class-freemius.php:17845
|
494 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
495 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
496 |
|
497 |
+
#: includes/class-freemius.php:17887
|
498 |
msgid "You are already running the %s in a trial mode."
|
499 |
msgstr "Stai già usando %s in modalità prova."
|
500 |
|
501 |
+
#: includes/class-freemius.php:17898
|
502 |
msgid "You already utilized a trial before."
|
503 |
msgstr "Hai già utilizzato una prova gratuita in passato."
|
504 |
|
505 |
+
#: includes/class-freemius.php:17912
|
506 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
507 |
msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
|
508 |
|
509 |
+
#: includes/class-freemius.php:17923
|
510 |
msgid "Plan %s does not support a trial period."
|
511 |
msgstr "Il piano %s non supporta il periodo di prova."
|
512 |
|
513 |
+
#: includes/class-freemius.php:17934
|
514 |
msgid "None of the %s's plans supports a trial period."
|
515 |
msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
|
516 |
|
517 |
+
#: includes/class-freemius.php:17984
|
518 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
519 |
msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
|
520 |
|
521 |
+
#: includes/class-freemius.php:18020
|
522 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
523 |
msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
|
524 |
|
525 |
+
#: includes/class-freemius.php:18039
|
526 |
msgid "Your %s free trial was successfully cancelled."
|
527 |
msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
|
528 |
|
529 |
+
#: includes/class-freemius.php:18346
|
530 |
msgid "Version %s was released."
|
531 |
msgstr "La versione %s é stata rilasciata."
|
532 |
|
533 |
+
#: includes/class-freemius.php:18346
|
534 |
msgid "Please download %s."
|
535 |
msgstr "Scarica %s."
|
536 |
|
537 |
+
#: includes/class-freemius.php:18353
|
538 |
msgid "the latest %s version here"
|
539 |
msgstr "l'ultima versione %s é quì"
|
540 |
|
541 |
+
#: includes/class-freemius.php:18358
|
542 |
msgid "New"
|
543 |
msgstr "Nuovo"
|
544 |
|
545 |
+
#: includes/class-freemius.php:18363
|
546 |
msgid "Seems like you got the latest release."
|
547 |
msgstr "Sembra che tu abbia la versione più recente."
|
548 |
|
549 |
+
#: includes/class-freemius.php:18364
|
550 |
msgid "You are all good!"
|
551 |
msgstr "Sei fantastico!"
|
552 |
|
553 |
+
#: includes/class-freemius.php:18632
|
554 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
555 |
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."
|
556 |
|
557 |
+
#: includes/class-freemius.php:18769
|
558 |
msgid "Site successfully opted in."
|
559 |
msgstr "Sito accettato con successo."
|
560 |
|
561 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
562 |
msgid "Awesome"
|
563 |
msgstr "Fantastico"
|
564 |
|
565 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
566 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
567 |
msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
|
568 |
|
569 |
+
#: includes/class-freemius.php:18787
|
570 |
msgid "Thank you!"
|
571 |
msgstr "Grazie!"
|
572 |
|
573 |
+
#: includes/class-freemius.php:18794
|
574 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
575 |
msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
|
576 |
|
577 |
+
#: includes/class-freemius.php:18923
|
578 |
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."
|
579 |
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."
|
580 |
|
581 |
+
#: includes/class-freemius.php:18929
|
582 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
583 |
msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
|
584 |
|
585 |
+
#: includes/class-freemius.php:18934
|
586 |
msgid "%s is the new owner of the account."
|
587 |
msgstr "%s è il nuovo proprietario dell'account."
|
588 |
|
589 |
+
#: includes/class-freemius.php:18936
|
590 |
msgctxt "as congratulations"
|
591 |
msgid "Congrats"
|
592 |
msgstr "Congratulazioni"
|
593 |
|
594 |
+
#: includes/class-freemius.php:18956
|
595 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
596 |
msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
|
597 |
|
598 |
+
#: includes/class-freemius.php:18957
|
599 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
600 |
msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
|
601 |
|
602 |
+
#: includes/class-freemius.php:18964
|
603 |
msgid "Change Ownership"
|
604 |
msgstr "Cambia Proprietario"
|
605 |
|
606 |
+
#: includes/class-freemius.php:18972
|
607 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
608 |
msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
|
609 |
|
610 |
+
#: includes/class-freemius.php:18984
|
611 |
msgid "Please provide your full name."
|
612 |
msgstr "Per favore inserisci il tuo nome completo."
|
613 |
|
614 |
+
#: includes/class-freemius.php:18989
|
615 |
msgid "Your name was successfully updated."
|
616 |
msgstr "Il tuo nome è stato aggiornato correttamente."
|
617 |
|
618 |
+
#: includes/class-freemius.php:19050
|
619 |
msgid "You have successfully updated your %s."
|
620 |
msgstr "Hai aggiornato con successo il tuo %s."
|
621 |
|
622 |
+
#: includes/class-freemius.php:19190
|
623 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
624 |
msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
|
625 |
|
626 |
+
#: includes/class-freemius.php:19191
|
627 |
msgctxt "advance notice of something that will need attention."
|
628 |
msgid "Heads up"
|
629 |
msgstr "Attenzione"
|
630 |
|
631 |
+
#: includes/class-freemius.php:19621
|
632 |
msgctxt "exclamation"
|
633 |
msgid "Hey"
|
634 |
msgstr "Hey"
|
635 |
|
636 |
+
#: includes/class-freemius.php:19621
|
637 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
638 |
msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
|
639 |
|
640 |
+
#: includes/class-freemius.php:19629
|
641 |
msgid "No commitment for %s days - cancel anytime!"
|
642 |
msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
|
643 |
|
644 |
+
#: includes/class-freemius.php:19630
|
645 |
msgid "No credit card required"
|
646 |
msgstr "Nessuna carta di credito richiesta"
|
647 |
|
648 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
649 |
msgctxt "call to action"
|
650 |
msgid "Start free trial"
|
651 |
msgstr "Inizia il periodo di prova gratuito"
|
652 |
|
653 |
+
#: includes/class-freemius.php:19714
|
654 |
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!"
|
655 |
msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
|
656 |
|
657 |
+
#: includes/class-freemius.php:19723
|
658 |
msgid "Learn more"
|
659 |
msgstr "Scopri altro"
|
660 |
|
661 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
662 |
#: templates/account.php509, templates/connect.php171,
|
663 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
664 |
#: templates/account/partials/addon.php:235
|
665 |
msgid "Activate License"
|
666 |
msgstr "Attiva licenza"
|
667 |
|
668 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
669 |
#: templates/account.php508, templates/account/partials/site.php:256
|
670 |
msgid "Change License"
|
671 |
msgstr "Cambia licenza"
|
672 |
|
673 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
674 |
msgid "Opt Out"
|
675 |
msgstr "Cancella iscrizione"
|
676 |
|
677 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
678 |
#: templates/account/partials/site.php43,
|
679 |
#: templates/account/partials/site.php:161
|
680 |
msgid "Opt In"
|
681 |
msgstr "Iscriviti"
|
682 |
|
683 |
+
#: includes/class-freemius.php:20187
|
684 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
685 |
+
msgstr " La versione a pagamento di%1s è già installata. Attivala per iniziare a usare le funzionalità di %2s features. %3s"
|
686 |
|
687 |
+
#: includes/class-freemius.php:20195
|
688 |
msgid "Activate %s features"
|
689 |
msgstr "Activate %s features"
|
690 |
|
691 |
+
#: includes/class-freemius.php:20208
|
692 |
msgid "Please follow these steps to complete the upgrade"
|
693 |
msgstr "Segui i passi seguenti per completare l'aggiornamento"
|
694 |
|
695 |
+
#: includes/class-freemius.php:20212
|
696 |
msgid "Download the latest %s version"
|
697 |
msgstr "Scarica l'ultima versione di %s"
|
698 |
|
699 |
+
#: includes/class-freemius.php:20216
|
700 |
msgid "Upload and activate the downloaded version"
|
701 |
msgstr "Carica e attiva la versione scaricata"
|
702 |
|
703 |
+
#: includes/class-freemius.php:20218
|
704 |
msgid "How to upload and activate?"
|
705 |
msgstr "Come faccio a caricare ed attivare?"
|
706 |
|
707 |
+
#: includes/class-freemius.php:20352
|
708 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
709 |
msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
|
710 |
|
711 |
+
#: includes/class-freemius.php:20513
|
712 |
msgid "Auto installation only works for opted-in users."
|
713 |
msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
|
714 |
|
715 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
716 |
+
#: includes/class-fs-plugin-updater.php1060,
|
717 |
+
#: includes/class-fs-plugin-updater.php:1074
|
718 |
msgid "Invalid module ID."
|
719 |
msgstr "ID modulo non valida."
|
720 |
|
721 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
722 |
msgid "Premium version already active."
|
723 |
msgstr "Versione Premium già attiva."
|
724 |
|
725 |
+
#: includes/class-freemius.php:20539
|
726 |
msgid "You do not have a valid license to access the premium version."
|
727 |
msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
|
728 |
|
729 |
+
#: includes/class-freemius.php:20546
|
730 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
731 |
msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
|
732 |
|
733 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
734 |
msgid "Premium add-on version already installed."
|
735 |
msgstr "Versione Premium dell'add-on già installata."
|
736 |
|
737 |
+
#: includes/class-freemius.php:20909
|
738 |
msgid "View paid features"
|
739 |
msgstr "Vedi funzionalità a pagamento"
|
740 |
|
741 |
+
#: includes/class-freemius.php:21229
|
742 |
msgid "Thank you so much for using %s and its add-ons!"
|
743 |
msgstr "Grazie per utilizzare %se i suoi addon!"
|
744 |
|
745 |
+
#: includes/class-freemius.php:21230
|
746 |
msgid "Thank you so much for using %s!"
|
747 |
msgstr "Grazie per utilizzare %s!"
|
748 |
|
749 |
+
#: includes/class-freemius.php:21236
|
750 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
751 |
msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
|
752 |
|
753 |
+
#: includes/class-freemius.php:21240
|
754 |
msgid "Thank you so much for using our products!"
|
755 |
msgstr "Grazie per utilizzare i nostri prodotti!"
|
756 |
|
757 |
+
#: includes/class-freemius.php:21241
|
758 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
759 |
msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
|
760 |
|
761 |
+
#: includes/class-freemius.php:21260
|
762 |
msgid "%s and its add-ons"
|
763 |
msgstr "%se i suoi addon"
|
764 |
|
765 |
+
#: includes/class-freemius.php:21269
|
766 |
msgid "Products"
|
767 |
msgstr "Prodotti"
|
768 |
|
769 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
770 |
msgid "Yes"
|
771 |
msgstr "Si"
|
772 |
|
773 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
774 |
msgid "send me security & feature updates, educational content and offers."
|
775 |
msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
776 |
|
777 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
778 |
msgid "No"
|
779 |
msgstr "No"
|
780 |
|
781 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
782 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
783 |
msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
|
784 |
|
785 |
+
#: includes/class-freemius.php:21290
|
786 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
787 |
msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti"
|
788 |
|
789 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
790 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
791 |
msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
|
792 |
|
793 |
+
#: includes/class-freemius.php:21574
|
794 |
msgid "License key is empty."
|
795 |
msgstr "La chiave licenza è vuota."
|
796 |
|
812 |
msgid "new version"
|
813 |
msgstr "new version"
|
814 |
|
815 |
+
#: includes/class-fs-plugin-updater.php:305
|
816 |
msgid "Important Upgrade Notice:"
|
817 |
msgstr "Important Upgrade Notice:"
|
818 |
|
819 |
+
#: includes/class-fs-plugin-updater.php:1125
|
820 |
msgid "Installing plugin: %s"
|
821 |
msgstr "Installazione plugin: %s"
|
822 |
|
823 |
+
#: includes/class-fs-plugin-updater.php:1166
|
824 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
825 |
msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
|
826 |
|
827 |
+
#: includes/class-fs-plugin-updater.php:1348
|
828 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
829 |
msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
|
830 |
|
1143 |
#: templates/account/partials/addon.php25,
|
1144 |
#: templates/account/partials/site.php:298
|
1145 |
msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1146 |
+
msgstr "%1s fermerà immediatamente ogni futuro pagamento ricorrente e la tua %s licenza scadrà il %s."
|
1147 |
|
1148 |
#: templates/account.php85, templates/forms/subscription-cancellation.php100,
|
1149 |
#: templates/account/partials/addon.php26,
|
freemius/languages/freemius-ja_JP.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Odyssey <8bitodyssey+github@gmail.com>, 2016
|
@@ -24,772 +24,772 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
-
#: includes/class-freemius.php:
|
28 |
msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
29 |
msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
|
30 |
|
31 |
-
#: includes/class-freemius.php:
|
32 |
msgid "Error"
|
33 |
msgstr "エラー"
|
34 |
|
35 |
-
#: includes/class-freemius.php:
|
36 |
msgid "I found a better %s"
|
37 |
msgstr "より良い %sを見つけました"
|
38 |
|
39 |
-
#: includes/class-freemius.php:
|
40 |
msgid "What's the %s's name?"
|
41 |
msgstr "%sの名前は何ですか?"
|
42 |
|
43 |
-
#: includes/class-freemius.php:
|
44 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
45 |
msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
|
46 |
|
47 |
-
#: includes/class-freemius.php:
|
48 |
msgid "Deactivation"
|
49 |
msgstr "無効化"
|
50 |
|
51 |
-
#: includes/class-freemius.php:
|
52 |
msgid "Theme Switch"
|
53 |
msgstr "テーマ変更"
|
54 |
|
55 |
-
#: includes/class-freemius.
|
56 |
msgid "Other"
|
57 |
msgstr "その他"
|
58 |
|
59 |
-
#: includes/class-freemius.php:
|
60 |
msgid "I no longer need the %s"
|
61 |
msgstr "%sはもう不要です"
|
62 |
|
63 |
-
#: includes/class-freemius.php:
|
64 |
msgid "I only needed the %s for a short period"
|
65 |
msgstr "短期間だけ %sが 必要です。"
|
66 |
|
67 |
-
#: includes/class-freemius.php:
|
68 |
msgid "The %s broke my site"
|
69 |
msgstr "%s の影響でサイトを崩れました"
|
70 |
|
71 |
-
#: includes/class-freemius.php:
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
msgstr "%s の動作が突然停止しました"
|
74 |
|
75 |
-
#: includes/class-freemius.php:
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "もう払うことができません"
|
78 |
|
79 |
-
#: includes/class-freemius.php:
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr " 支払ってもよいと思う価格はいくらですか?"
|
82 |
|
83 |
-
#: includes/class-freemius.php:
|
84 |
msgid "I don't like to share my information with you"
|
85 |
msgstr "自分の情報を共有したくありません"
|
86 |
|
87 |
-
#: includes/class-freemius.php:
|
88 |
msgid "The %s didn't work"
|
89 |
msgstr "%s が動作しませんでした"
|
90 |
|
91 |
-
#: includes/class-freemius.php:
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "どうしたら動作するか分かりませんでした。"
|
94 |
|
95 |
-
#: includes/class-freemius.php:
|
96 |
msgid "The %s is great, but I need specific feature that you don't support"
|
97 |
msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
|
98 |
|
99 |
-
#: includes/class-freemius.php:
|
100 |
msgid "What feature?"
|
101 |
msgstr "何の機能ですか?"
|
102 |
|
103 |
-
#: includes/class-freemius.php:
|
104 |
msgid "The %s is not working"
|
105 |
msgstr "%s が動作していません"
|
106 |
|
107 |
-
#: includes/class-freemius.php:
|
108 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
109 |
msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
|
110 |
|
111 |
-
#: includes/class-freemius.php:
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "探していたものではありません"
|
114 |
|
115 |
-
#: includes/class-freemius.php:
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "探していたのは何ですか?"
|
118 |
|
119 |
-
#: includes/class-freemius.php:
|
120 |
msgid "The %s didn't work as expected"
|
121 |
msgstr "%sが期待通りに動きませんでした "
|
122 |
|
123 |
-
#: includes/class-freemius.php:
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "何を期待していましたか?"
|
126 |
|
127 |
-
#: includes/class-freemius.
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Freemius デバッグ"
|
130 |
|
131 |
-
#: includes/class-freemius.php:
|
132 |
msgid "I don't know what is cURL or how to install it, help me!"
|
133 |
msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
|
134 |
|
135 |
-
#: includes/class-freemius.php:
|
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 "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
|
138 |
|
139 |
-
#: includes/class-freemius.php:
|
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 "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
|
142 |
|
143 |
-
#: includes/class-freemius.php:
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "はい - お構いなく"
|
146 |
|
147 |
-
#: includes/class-freemius.php:
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "いいえ - すぐに無効化"
|
150 |
|
151 |
-
#: includes/class-freemius.
|
152 |
-
#: includes/class-freemius.
|
153 |
-
#: includes/class-freemius.
|
154 |
-
#: includes/class-freemius.
|
155 |
-
#: includes/class-freemius.
|
156 |
-
#: includes/class-freemius.
|
157 |
-
#: includes/class-freemius.
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "おっと"
|
161 |
|
162 |
-
#: includes/class-freemius.php:
|
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 "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
|
165 |
|
166 |
-
#: includes/class-freemius.php:
|
167 |
msgctxt "addonX cannot run without pluginY"
|
168 |
msgid "%s cannot run without %s."
|
169 |
msgstr "%s は、%s が無いと実行することができません。"
|
170 |
|
171 |
-
#: includes/class-freemius.php:
|
172 |
msgctxt "addonX cannot run..."
|
173 |
msgid "%s cannot run without the plugin."
|
174 |
msgstr "%s は、プラグインが無いと実行することができません。"
|
175 |
|
176 |
-
#: includes/class-freemius.
|
177 |
-
#: includes/class-freemius.php:
|
178 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
179 |
msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
|
180 |
|
181 |
-
#: includes/class-freemius.php:
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
msgstr "プレミアムバージョンの %sは有効化に成功しました。"
|
184 |
|
185 |
-
#: includes/class-freemius.
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "やったー"
|
189 |
|
190 |
-
#: includes/class-freemius.php:
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "%s ライセンスを持っています。"
|
193 |
|
194 |
-
#: includes/class-freemius.
|
195 |
-
#: includes/class-freemius.
|
196 |
-
#: includes/class-freemius.
|
197 |
-
#: includes/class-freemius.php:
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "ヤッホー"
|
201 |
|
202 |
-
#: includes/class-freemius.php:
|
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 "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
|
205 |
|
206 |
-
#: includes/class-freemius.php:
|
207 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
208 |
msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
|
209 |
|
210 |
-
#: includes/class-freemius.
|
211 |
#: templates/account/partials/addon.php:288
|
212 |
msgid "More information about %s"
|
213 |
msgstr "%s に関する詳細情報"
|
214 |
|
215 |
-
#: includes/class-freemius.php:
|
216 |
msgid "Purchase License"
|
217 |
msgstr "ライセンスを購入"
|
218 |
|
219 |
-
#: includes/class-freemius.
|
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 "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
|
222 |
|
223 |
-
#: includes/class-freemius.php:
|
224 |
msgid "start the trial"
|
225 |
msgstr "トライアルを開始"
|
226 |
|
227 |
-
#: includes/class-freemius.
|
228 |
msgid "complete the install"
|
229 |
msgstr "インストールを完了"
|
230 |
|
231 |
-
#: includes/class-freemius.php:
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "もうあとわずかです - %s"
|
234 |
|
235 |
-
#: includes/class-freemius.php:
|
236 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
237 |
msgid "Complete \"%s\" Activation Now"
|
238 |
msgstr "すぐに \"%s\" 有効化を完了してください"
|
239 |
|
240 |
-
#: includes/class-freemius.php:
|
241 |
msgid "We made a few tweaks to the %s, %s"
|
242 |
msgstr "プラグインを微調整します、 %s, %s"
|
243 |
|
244 |
-
#: includes/class-freemius.php:
|
245 |
msgid "Opt in to make \"%s\" better!"
|
246 |
msgstr "Opt in to make \"%s\" better!"
|
247 |
|
248 |
-
#: includes/class-freemius.php:
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "%s のアップグレードが完了しました。"
|
251 |
|
252 |
-
#: includes/class-freemius.
|
253 |
-
#: includes/class-fs-plugin-updater.
|
254 |
-
#: includes/class-fs-plugin-updater.
|
255 |
#: templates/auto-installation.php:32
|
256 |
msgid "Add-On"
|
257 |
msgstr "アドオン"
|
258 |
|
259 |
-
#: includes/class-freemius.
|
260 |
#: templates/debug.php:520
|
261 |
msgid "Plugin"
|
262 |
msgstr "プラグイン"
|
263 |
|
264 |
-
#: includes/class-freemius.
|
265 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
266 |
msgid "Theme"
|
267 |
msgstr "テーマ"
|
268 |
|
269 |
-
#: includes/class-freemius.php:
|
270 |
msgid "Invalid site details collection."
|
271 |
msgstr "Invalid site details collection."
|
272 |
|
273 |
-
#: includes/class-freemius.php:
|
274 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
275 |
msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
278 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
279 |
msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
|
280 |
|
281 |
-
#: includes/class-freemius.php:
|
282 |
msgid "Account is pending activation."
|
283 |
msgstr "アカウントは有効化待ちです。"
|
284 |
|
285 |
-
#: includes/class-freemius.
|
286 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
287 |
msgid "Buy a license now"
|
288 |
msgstr "Buy a license now"
|
289 |
|
290 |
-
#: includes/class-freemius.
|
291 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
292 |
msgid "Renew your license now"
|
293 |
msgstr "Renew your license now"
|
294 |
|
295 |
-
#: includes/class-freemius.php:
|
296 |
msgid "%s to access version %s security & feature updates, and support."
|
297 |
msgstr "%s to access version %s security & feature updates, and support."
|
298 |
|
299 |
-
#: includes/class-freemius.php:
|
300 |
msgid "%s activation was successfully completed."
|
301 |
msgstr "%s の有効化が成功しました。"
|
302 |
|
303 |
-
#: includes/class-freemius.php:
|
304 |
msgid "Your account was successfully activated with the %s plan."
|
305 |
msgstr "アカウントが %s プランで有効化できました。"
|
306 |
|
307 |
-
#: includes/class-freemius.
|
308 |
msgid "Your trial has been successfully started."
|
309 |
msgstr "トライアル版の利用を開始しました。"
|
310 |
|
311 |
-
#: includes/class-freemius.
|
312 |
-
#: includes/class-freemius.php:
|
313 |
msgid "Couldn't activate %s."
|
314 |
msgstr "%s を有効化できません。"
|
315 |
|
316 |
-
#: includes/class-freemius.
|
317 |
-
#: includes/class-freemius.php:
|
318 |
msgid "Please contact us with the following message:"
|
319 |
msgstr "以下のメッセージとともに私たちに連絡をください。"
|
320 |
|
321 |
-
#: includes/class-freemius.
|
322 |
msgid "Upgrade"
|
323 |
msgstr "アップグレード"
|
324 |
|
325 |
-
#: includes/class-freemius.php:
|
326 |
msgid "Start Trial"
|
327 |
msgstr "トライアルを開始"
|
328 |
|
329 |
-
#: includes/class-freemius.php:
|
330 |
msgid "Pricing"
|
331 |
msgstr "料金表"
|
332 |
|
333 |
-
#: includes/class-freemius.
|
334 |
msgid "Affiliation"
|
335 |
msgstr "アフィリエイト"
|
336 |
|
337 |
-
#: includes/class-freemius.
|
338 |
#: templates/account.php150, templates/debug.php:324
|
339 |
msgid "Account"
|
340 |
msgstr "アカウント"
|
341 |
|
342 |
-
#: includes/class-freemius.
|
343 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
344 |
msgid "Contact Us"
|
345 |
msgstr "連絡"
|
346 |
|
347 |
-
#: includes/class-freemius.
|
348 |
-
#: includes/class-freemius.
|
349 |
#: templates/account/partials/addon.php:41
|
350 |
msgid "Add-Ons"
|
351 |
msgstr "アドオン"
|
352 |
|
353 |
-
#: includes/class-freemius.php:
|
354 |
msgctxt "ASCII arrow left icon"
|
355 |
msgid "←"
|
356 |
msgstr "←"
|
357 |
|
358 |
-
#: includes/class-freemius.php:
|
359 |
msgctxt "ASCII arrow right icon"
|
360 |
msgid "➤"
|
361 |
msgstr "➤"
|
362 |
|
363 |
-
#: includes/class-freemius.
|
364 |
msgctxt "noun"
|
365 |
msgid "Pricing"
|
366 |
msgstr "料金表"
|
367 |
|
368 |
-
#: includes/class-freemius.
|
369 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
370 |
msgid "Support Forum"
|
371 |
msgstr "サポートフォーラム"
|
372 |
|
373 |
-
#: includes/class-freemius.php:
|
374 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
375 |
msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
|
376 |
|
377 |
-
#: includes/class-freemius.php:
|
378 |
msgctxt "a positive response"
|
379 |
msgid "Right on"
|
380 |
msgstr "そうだ"
|
381 |
|
382 |
-
#: includes/class-freemius.php:
|
383 |
msgid "Your %s Add-on plan was successfully upgraded."
|
384 |
msgstr "%s のアドオンのプランのアップグレードが完了しました。"
|
385 |
|
386 |
-
#: includes/class-freemius.php:
|
387 |
msgid "%s Add-on was successfully purchased."
|
388 |
msgstr "%s のアドオンの支払いが完了しました。"
|
389 |
|
390 |
-
#: includes/class-freemius.php:
|
391 |
msgid "Download the latest version"
|
392 |
msgstr "最新版をダウンロード"
|
393 |
|
394 |
-
#: includes/class-freemius.php:
|
395 |
msgctxt "%1s - plugin title, %2s - API domain"
|
396 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
397 |
msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
|
398 |
|
399 |
-
#: includes/class-freemius.
|
400 |
-
#: includes/class-freemius.php:
|
401 |
msgid "Error received from the server:"
|
402 |
msgstr "サーバーからエラーを受信しました。"
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
406 |
msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
|
407 |
|
408 |
-
#: includes/class-freemius.
|
409 |
-
#: includes/class-freemius.
|
410 |
msgctxt ""
|
411 |
msgid "Hmm"
|
412 |
msgstr "ふむ"
|
413 |
|
414 |
-
#: includes/class-freemius.php:
|
415 |
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."
|
416 |
msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
|
417 |
|
418 |
-
#: includes/class-freemius.
|
419 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
420 |
msgctxt "trial period"
|
421 |
msgid "Trial"
|
422 |
msgstr "トライアル"
|
423 |
|
424 |
-
#: includes/class-freemius.php:
|
425 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
426 |
msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
|
427 |
|
428 |
-
#: includes/class-freemius.
|
429 |
msgid "Please contact us here"
|
430 |
msgstr "こちらで私たちに連絡をとってください。"
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
433 |
msgid "Your plan was successfully upgraded."
|
434 |
msgstr "プランのアップグレードが成功しました。"
|
435 |
|
436 |
-
#: includes/class-freemius.php:
|
437 |
msgid "Your plan was successfully changed to %s."
|
438 |
msgstr "プランの %s への変更が成功しました。"
|
439 |
|
440 |
-
#: includes/class-freemius.php:
|
441 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
442 |
msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
|
443 |
|
444 |
-
#: includes/class-freemius.php:
|
445 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
446 |
msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
449 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
450 |
msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
|
451 |
|
452 |
-
#: includes/class-freemius.php:
|
453 |
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."
|
454 |
msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
|
455 |
|
456 |
-
#: includes/class-freemius.php:
|
457 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
458 |
msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
|
459 |
|
460 |
-
#: includes/class-freemius.php:
|
461 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
462 |
msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
465 |
msgid "It looks like the license could not be activated."
|
466 |
msgstr "ライセンスの有効化ができませんでした。"
|
467 |
|
468 |
-
#: includes/class-freemius.php:
|
469 |
msgid "Your license was successfully activated."
|
470 |
msgstr "ライセンスの有効化が成功しました。"
|
471 |
|
472 |
-
#: includes/class-freemius.php:
|
473 |
msgid "It looks like your site currently doesn't have an active license."
|
474 |
msgstr "サイトは有効なライセンスを持っていないようです。"
|
475 |
|
476 |
-
#: includes/class-freemius.php:
|
477 |
msgid "It looks like the license deactivation failed."
|
478 |
msgstr "ライセンスの無効化ができませんでした。"
|
479 |
|
480 |
-
#: includes/class-freemius.php:
|
481 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
482 |
msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
|
483 |
|
484 |
-
#: includes/class-freemius.php:
|
485 |
msgid "O.K"
|
486 |
msgstr "O.K"
|
487 |
|
488 |
-
#: includes/class-freemius.php:
|
489 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
490 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
494 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "You are already running the %s in a trial mode."
|
498 |
msgstr "すでに%sをトライアルモードで利用中です。"
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "You already utilized a trial before."
|
502 |
msgstr "以前すでに試用版を利用しました。"
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
506 |
msgstr "%s プランは存在しないため、試用を開始できません。"
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "Plan %s does not support a trial period."
|
510 |
msgstr "%s プランにはトライアル期間はありません。"
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
513 |
msgid "None of the %s's plans supports a trial period."
|
514 |
msgstr "%sのプランにはトライアル期間はありません。"
|
515 |
|
516 |
-
#: includes/class-freemius.php:
|
517 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
518 |
msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
|
519 |
|
520 |
-
#: includes/class-freemius.php:
|
521 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
522 |
msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
|
523 |
|
524 |
-
#: includes/class-freemius.php:
|
525 |
msgid "Your %s free trial was successfully cancelled."
|
526 |
msgstr "%s のフリートライアルはキャンセルされました。"
|
527 |
|
528 |
-
#: includes/class-freemius.php:
|
529 |
msgid "Version %s was released."
|
530 |
msgstr "バージョン %s をリリースしました。"
|
531 |
|
532 |
-
#: includes/class-freemius.php:
|
533 |
msgid "Please download %s."
|
534 |
msgstr "%s をダウンロードしてください。"
|
535 |
|
536 |
-
#: includes/class-freemius.php:
|
537 |
msgid "the latest %s version here"
|
538 |
msgstr "最新の %s バージョンはこちらです。"
|
539 |
|
540 |
-
#: includes/class-freemius.php:
|
541 |
msgid "New"
|
542 |
msgstr "新規"
|
543 |
|
544 |
-
#: includes/class-freemius.php:
|
545 |
msgid "Seems like you got the latest release."
|
546 |
msgstr "最新版を取得できました。"
|
547 |
|
548 |
-
#: includes/class-freemius.php:
|
549 |
msgid "You are all good!"
|
550 |
msgstr "すべて完璧です!"
|
551 |
|
552 |
-
#: includes/class-freemius.php:
|
553 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
554 |
msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
|
555 |
|
556 |
-
#: includes/class-freemius.php:
|
557 |
msgid "Site successfully opted in."
|
558 |
msgstr "サイトのオプトインに成功しました。"
|
559 |
|
560 |
-
#: includes/class-freemius.
|
561 |
msgid "Awesome"
|
562 |
msgstr "すごい!"
|
563 |
|
564 |
-
#: includes/class-freemius.
|
565 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
566 |
msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
|
567 |
|
568 |
-
#: includes/class-freemius.php:
|
569 |
msgid "Thank you!"
|
570 |
msgstr "ありがとうございます!"
|
571 |
|
572 |
-
#: includes/class-freemius.php:
|
573 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
574 |
msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
|
575 |
|
576 |
-
#: includes/class-freemius.php:
|
577 |
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."
|
578 |
msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
|
579 |
|
580 |
-
#: includes/class-freemius.php:
|
581 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
582 |
msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
|
583 |
|
584 |
-
#: includes/class-freemius.php:
|
585 |
msgid "%s is the new owner of the account."
|
586 |
msgstr "%s は新しいオーナーです。"
|
587 |
|
588 |
-
#: includes/class-freemius.php:
|
589 |
msgctxt "as congratulations"
|
590 |
msgid "Congrats"
|
591 |
msgstr "おめでとう"
|
592 |
|
593 |
-
#: includes/class-freemius.php:
|
594 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
595 |
msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
|
596 |
|
597 |
-
#: includes/class-freemius.php:
|
598 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
599 |
msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
|
600 |
|
601 |
-
#: includes/class-freemius.php:
|
602 |
msgid "Change Ownership"
|
603 |
msgstr "オーナーを変更"
|
604 |
|
605 |
-
#: includes/class-freemius.php:
|
606 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
607 |
msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
|
608 |
|
609 |
-
#: includes/class-freemius.php:
|
610 |
msgid "Please provide your full name."
|
611 |
msgstr "フルネームを入力してください。"
|
612 |
|
613 |
-
#: includes/class-freemius.php:
|
614 |
msgid "Your name was successfully updated."
|
615 |
msgstr "名前のアップデートが成功しました。"
|
616 |
|
617 |
-
#: includes/class-freemius.php:
|
618 |
msgid "You have successfully updated your %s."
|
619 |
msgstr "%s のアップデートが成功しました。"
|
620 |
|
621 |
-
#: includes/class-freemius.php:
|
622 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
623 |
msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
|
624 |
|
625 |
-
#: includes/class-freemius.php:
|
626 |
msgctxt "advance notice of something that will need attention."
|
627 |
msgid "Heads up"
|
628 |
msgstr "警告"
|
629 |
|
630 |
-
#: includes/class-freemius.php:
|
631 |
msgctxt "exclamation"
|
632 |
msgid "Hey"
|
633 |
msgstr "ヘイ"
|
634 |
|
635 |
-
#: includes/class-freemius.php:
|
636 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
637 |
msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
|
638 |
|
639 |
-
#: includes/class-freemius.php:
|
640 |
msgid "No commitment for %s days - cancel anytime!"
|
641 |
msgstr "%s 日以内であればいつでもキャンセルできます。"
|
642 |
|
643 |
-
#: includes/class-freemius.php:
|
644 |
msgid "No credit card required"
|
645 |
msgstr "クレジットカードは必要ありません。"
|
646 |
|
647 |
-
#: includes/class-freemius.
|
648 |
msgctxt "call to action"
|
649 |
msgid "Start free trial"
|
650 |
msgstr "フリートライアルを開始"
|
651 |
|
652 |
-
#: includes/class-freemius.php:
|
653 |
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!"
|
654 |
msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
|
655 |
|
656 |
-
#: includes/class-freemius.php:
|
657 |
msgid "Learn more"
|
658 |
msgstr "詳細はこちら"
|
659 |
|
660 |
-
#: includes/class-freemius.
|
661 |
#: templates/account.php509, templates/connect.php171,
|
662 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
663 |
#: templates/account/partials/addon.php:235
|
664 |
msgid "Activate License"
|
665 |
msgstr "ライセンスを有効化"
|
666 |
|
667 |
-
#: includes/class-freemius.
|
668 |
#: templates/account.php508, templates/account/partials/site.php:256
|
669 |
msgid "Change License"
|
670 |
msgstr "ライセンスを変更"
|
671 |
|
672 |
-
#: includes/class-freemius.
|
673 |
msgid "Opt Out"
|
674 |
msgstr "オプトアウト"
|
675 |
|
676 |
-
#: includes/class-freemius.
|
677 |
#: templates/account/partials/site.php43,
|
678 |
#: templates/account/partials/site.php:161
|
679 |
msgid "Opt In"
|
680 |
msgstr "オプトイン"
|
681 |
|
682 |
-
#: includes/class-freemius.php:
|
683 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
684 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
685 |
|
686 |
-
#: includes/class-freemius.php:
|
687 |
msgid "Activate %s features"
|
688 |
msgstr "Activate %s features"
|
689 |
|
690 |
-
#: includes/class-freemius.php:
|
691 |
msgid "Please follow these steps to complete the upgrade"
|
692 |
msgstr "アップグレードを完了するには以下の手順を完了させてください。"
|
693 |
|
694 |
-
#: includes/class-freemius.php:
|
695 |
msgid "Download the latest %s version"
|
696 |
msgstr "最新の %s をダウンロード"
|
697 |
|
698 |
-
#: includes/class-freemius.php:
|
699 |
msgid "Upload and activate the downloaded version"
|
700 |
msgstr "ダウンロードしたバージョンをアップロードして有効化"
|
701 |
|
702 |
-
#: includes/class-freemius.php:
|
703 |
msgid "How to upload and activate?"
|
704 |
msgstr "アップロードと有効化の方法"
|
705 |
|
706 |
-
#: includes/class-freemius.php:
|
707 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
708 |
msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
|
709 |
|
710 |
-
#: includes/class-freemius.php:
|
711 |
msgid "Auto installation only works for opted-in users."
|
712 |
msgstr "自動インストールはオプトインしたユーザのみで動作します。"
|
713 |
|
714 |
-
#: includes/class-freemius.
|
715 |
-
#: includes/class-fs-plugin-updater.
|
716 |
-
#: includes/class-fs-plugin-updater.php:
|
717 |
msgid "Invalid module ID."
|
718 |
msgstr "モジュール ID が不正です"
|
719 |
|
720 |
-
#: includes/class-freemius.
|
721 |
msgid "Premium version already active."
|
722 |
msgstr "プレミアムバージョンはすでに有効になっています。"
|
723 |
|
724 |
-
#: includes/class-freemius.php:
|
725 |
msgid "You do not have a valid license to access the premium version."
|
726 |
msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
|
727 |
|
728 |
-
#: includes/class-freemius.php:
|
729 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
730 |
msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
|
731 |
|
732 |
-
#: includes/class-freemius.
|
733 |
msgid "Premium add-on version already installed."
|
734 |
msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
|
735 |
|
736 |
-
#: includes/class-freemius.php:
|
737 |
msgid "View paid features"
|
738 |
msgstr "有料の機能を表示する"
|
739 |
|
740 |
-
#: includes/class-freemius.php:
|
741 |
msgid "Thank you so much for using %s and its add-ons!"
|
742 |
msgstr "%sとアドオンのご利用ありがとうございます!"
|
743 |
|
744 |
-
#: includes/class-freemius.php:
|
745 |
msgid "Thank you so much for using %s!"
|
746 |
msgstr "%sのご利用ありがとうございます!"
|
747 |
|
748 |
-
#: includes/class-freemius.php:
|
749 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
750 |
msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
751 |
|
752 |
-
#: includes/class-freemius.php:
|
753 |
msgid "Thank you so much for using our products!"
|
754 |
msgstr "プロダクトのご利用ありがとうございます!"
|
755 |
|
756 |
-
#: includes/class-freemius.php:
|
757 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
758 |
msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
759 |
|
760 |
-
#: includes/class-freemius.php:
|
761 |
msgid "%s and its add-ons"
|
762 |
msgstr "%sとそのアドオン"
|
763 |
|
764 |
-
#: includes/class-freemius.php:
|
765 |
msgid "Products"
|
766 |
msgstr "プロダクト"
|
767 |
|
768 |
-
#: includes/class-freemius.
|
769 |
msgid "Yes"
|
770 |
msgstr "はい"
|
771 |
|
772 |
-
#: includes/class-freemius.
|
773 |
msgid "send me security & feature updates, educational content and offers."
|
774 |
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
|
775 |
|
776 |
-
#: includes/class-freemius.
|
777 |
msgid "No"
|
778 |
msgstr "いいえ"
|
779 |
|
780 |
-
#: includes/class-freemius.
|
781 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
782 |
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
|
783 |
|
784 |
-
#: includes/class-freemius.php:
|
785 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
786 |
msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
|
787 |
|
788 |
-
#: includes/class-freemius.
|
789 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
790 |
msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
|
791 |
|
792 |
-
#: includes/class-freemius.php:
|
793 |
msgid "License key is empty."
|
794 |
msgstr "ライセンスキーが空です。"
|
795 |
|
@@ -811,19 +811,19 @@ msgstr "There is a %s of %s available."
|
|
811 |
msgid "new version"
|
812 |
msgstr "new version"
|
813 |
|
814 |
-
#: includes/class-fs-plugin-updater.php:
|
815 |
msgid "Important Upgrade Notice:"
|
816 |
msgstr "Important Upgrade Notice:"
|
817 |
|
818 |
-
#: includes/class-fs-plugin-updater.php:
|
819 |
msgid "Installing plugin: %s"
|
820 |
msgstr "インストール中プラグイン: %s"
|
821 |
|
822 |
-
#: includes/class-fs-plugin-updater.php:
|
823 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
824 |
msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
|
825 |
|
826 |
-
#: includes/class-fs-plugin-updater.php:
|
827 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
828 |
msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
|
829 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Odyssey <8bitodyssey+github@gmail.com>, 2016
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
25 |
"X-Poedit-SourceCharset: UTF-8\n"
|
26 |
|
27 |
+
#: includes/class-freemius.php:1688
|
28 |
msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
29 |
msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
|
30 |
|
31 |
+
#: includes/class-freemius.php:1690
|
32 |
msgid "Error"
|
33 |
msgstr "エラー"
|
34 |
|
35 |
+
#: includes/class-freemius.php:2011
|
36 |
msgid "I found a better %s"
|
37 |
msgstr "より良い %sを見つけました"
|
38 |
|
39 |
+
#: includes/class-freemius.php:2013
|
40 |
msgid "What's the %s's name?"
|
41 |
msgstr "%sの名前は何ですか?"
|
42 |
|
43 |
+
#: includes/class-freemius.php:2019
|
44 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
45 |
msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
|
46 |
|
47 |
+
#: includes/class-freemius.php:2021
|
48 |
msgid "Deactivation"
|
49 |
msgstr "無効化"
|
50 |
|
51 |
+
#: includes/class-freemius.php:2022
|
52 |
msgid "Theme Switch"
|
53 |
msgstr "テーマ変更"
|
54 |
|
55 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
56 |
msgid "Other"
|
57 |
msgstr "その他"
|
58 |
|
59 |
+
#: includes/class-freemius.php:2039
|
60 |
msgid "I no longer need the %s"
|
61 |
msgstr "%sはもう不要です"
|
62 |
|
63 |
+
#: includes/class-freemius.php:2046
|
64 |
msgid "I only needed the %s for a short period"
|
65 |
msgstr "短期間だけ %sが 必要です。"
|
66 |
|
67 |
+
#: includes/class-freemius.php:2052
|
68 |
msgid "The %s broke my site"
|
69 |
msgstr "%s の影響でサイトを崩れました"
|
70 |
|
71 |
+
#: includes/class-freemius.php:2059
|
72 |
msgid "The %s suddenly stopped working"
|
73 |
msgstr "%s の動作が突然停止しました"
|
74 |
|
75 |
+
#: includes/class-freemius.php:2069
|
76 |
msgid "I can't pay for it anymore"
|
77 |
msgstr "もう払うことができません"
|
78 |
|
79 |
+
#: includes/class-freemius.php:2071
|
80 |
msgid "What price would you feel comfortable paying?"
|
81 |
msgstr " 支払ってもよいと思う価格はいくらですか?"
|
82 |
|
83 |
+
#: includes/class-freemius.php:2077
|
84 |
msgid "I don't like to share my information with you"
|
85 |
msgstr "自分の情報を共有したくありません"
|
86 |
|
87 |
+
#: includes/class-freemius.php:2098
|
88 |
msgid "The %s didn't work"
|
89 |
msgstr "%s が動作しませんでした"
|
90 |
|
91 |
+
#: includes/class-freemius.php:2108
|
92 |
msgid "I couldn't understand how to make it work"
|
93 |
msgstr "どうしたら動作するか分かりませんでした。"
|
94 |
|
95 |
+
#: includes/class-freemius.php:2116
|
96 |
msgid "The %s is great, but I need specific feature that you don't support"
|
97 |
msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
|
98 |
|
99 |
+
#: includes/class-freemius.php:2118
|
100 |
msgid "What feature?"
|
101 |
msgstr "何の機能ですか?"
|
102 |
|
103 |
+
#: includes/class-freemius.php:2122
|
104 |
msgid "The %s is not working"
|
105 |
msgstr "%s が動作していません"
|
106 |
|
107 |
+
#: includes/class-freemius.php:2124
|
108 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
109 |
msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
|
110 |
|
111 |
+
#: includes/class-freemius.php:2128
|
112 |
msgid "It's not what I was looking for"
|
113 |
msgstr "探していたものではありません"
|
114 |
|
115 |
+
#: includes/class-freemius.php:2130
|
116 |
msgid "What you've been looking for?"
|
117 |
msgstr "探していたのは何ですか?"
|
118 |
|
119 |
+
#: includes/class-freemius.php:2134
|
120 |
msgid "The %s didn't work as expected"
|
121 |
msgstr "%sが期待通りに動きませんでした "
|
122 |
|
123 |
+
#: includes/class-freemius.php:2136
|
124 |
msgid "What did you expect?"
|
125 |
msgstr "何を期待していましたか?"
|
126 |
|
127 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr "Freemius デバッグ"
|
130 |
|
131 |
+
#: includes/class-freemius.php:3670
|
132 |
msgid "I don't know what is cURL or how to install it, help me!"
|
133 |
msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
|
134 |
|
135 |
+
#: includes/class-freemius.php:3672
|
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 "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
|
138 |
|
139 |
+
#: includes/class-freemius.php:3679
|
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 "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
|
142 |
|
143 |
+
#: includes/class-freemius.php:3784
|
144 |
msgid "Yes - do your thing"
|
145 |
msgstr "はい - お構いなく"
|
146 |
|
147 |
+
#: includes/class-freemius.php:3789
|
148 |
msgid "No - just deactivate"
|
149 |
msgstr "いいえ - すぐに無効化"
|
150 |
|
151 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
152 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
153 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
154 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
155 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
156 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
157 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
158 |
msgctxt "exclamation"
|
159 |
msgid "Oops"
|
160 |
msgstr "おっと"
|
161 |
|
162 |
+
#: includes/class-freemius.php:3903
|
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 "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
|
165 |
|
166 |
+
#: includes/class-freemius.php:4340
|
167 |
msgctxt "addonX cannot run without pluginY"
|
168 |
msgid "%s cannot run without %s."
|
169 |
msgstr "%s は、%s が無いと実行することができません。"
|
170 |
|
171 |
+
#: includes/class-freemius.php:4341
|
172 |
msgctxt "addonX cannot run..."
|
173 |
msgid "%s cannot run without the plugin."
|
174 |
msgstr "%s は、プラグインが無いと実行することができません。"
|
175 |
|
176 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
177 |
+
#: includes/class-freemius.php:17953
|
178 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
179 |
msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
|
180 |
|
181 |
+
#: includes/class-freemius.php:5130
|
182 |
msgid "Premium %s version was successfully activated."
|
183 |
msgstr "プレミアムバージョンの %sは有効化に成功しました。"
|
184 |
|
185 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
186 |
msgctxt ""
|
187 |
msgid "W00t"
|
188 |
msgstr "やったー"
|
189 |
|
190 |
+
#: includes/class-freemius.php:5157
|
191 |
msgid "You have a %s license."
|
192 |
msgstr "%s ライセンスを持っています。"
|
193 |
|
194 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
195 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
196 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
197 |
+
#: includes/class-freemius.php:17707
|
198 |
msgctxt "interjection expressing joy or exuberance"
|
199 |
msgid "Yee-haw"
|
200 |
msgstr "ヤッホー"
|
201 |
|
202 |
+
#: includes/class-freemius.php:5425
|
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 "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
|
205 |
|
206 |
+
#: includes/class-freemius.php:5429
|
207 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
208 |
msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
|
209 |
|
210 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
211 |
#: templates/account/partials/addon.php:288
|
212 |
msgid "More information about %s"
|
213 |
msgstr "%s に関する詳細情報"
|
214 |
|
215 |
+
#: includes/class-freemius.php:5439
|
216 |
msgid "Purchase License"
|
217 |
msgstr "ライセンスを購入"
|
218 |
|
219 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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 "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
|
222 |
|
223 |
+
#: includes/class-freemius.php:6376
|
224 |
msgid "start the trial"
|
225 |
msgstr "トライアルを開始"
|
226 |
|
227 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
228 |
msgid "complete the install"
|
229 |
msgstr "インストールを完了"
|
230 |
|
231 |
+
#: includes/class-freemius.php:6490
|
232 |
msgid "You are just one step away - %s"
|
233 |
msgstr "もうあとわずかです - %s"
|
234 |
|
235 |
+
#: includes/class-freemius.php:6493
|
236 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
237 |
msgid "Complete \"%s\" Activation Now"
|
238 |
msgstr "すぐに \"%s\" 有効化を完了してください"
|
239 |
|
240 |
+
#: includes/class-freemius.php:6571
|
241 |
msgid "We made a few tweaks to the %s, %s"
|
242 |
msgstr "プラグインを微調整します、 %s, %s"
|
243 |
|
244 |
+
#: includes/class-freemius.php:6575
|
245 |
msgid "Opt in to make \"%s\" better!"
|
246 |
msgstr "Opt in to make \"%s\" better!"
|
247 |
|
248 |
+
#: includes/class-freemius.php:7003
|
249 |
msgid "The upgrade of %s was successfully completed."
|
250 |
msgstr "%s のアップグレードが完了しました。"
|
251 |
|
252 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
253 |
+
#: includes/class-fs-plugin-updater.php1081,
|
254 |
+
#: includes/class-fs-plugin-updater.php1088,
|
255 |
#: templates/auto-installation.php:32
|
256 |
msgid "Add-On"
|
257 |
msgstr "アドオン"
|
258 |
|
259 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
260 |
#: templates/debug.php:520
|
261 |
msgid "Plugin"
|
262 |
msgstr "プラグイン"
|
263 |
|
264 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
265 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
266 |
msgid "Theme"
|
267 |
msgstr "テーマ"
|
268 |
|
269 |
+
#: includes/class-freemius.php:11412
|
270 |
msgid "Invalid site details collection."
|
271 |
msgstr "Invalid site details collection."
|
272 |
|
273 |
+
#: includes/class-freemius.php:11532
|
274 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
275 |
msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
|
276 |
|
277 |
+
#: includes/class-freemius.php:11534
|
278 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
279 |
msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
|
280 |
|
281 |
+
#: includes/class-freemius.php:11808
|
282 |
msgid "Account is pending activation."
|
283 |
msgstr "アカウントは有効化待ちです。"
|
284 |
|
285 |
+
#: includes/class-freemius.php11920,
|
286 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
287 |
msgid "Buy a license now"
|
288 |
msgstr "Buy a license now"
|
289 |
|
290 |
+
#: includes/class-freemius.php11932,
|
291 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
292 |
msgid "Renew your license now"
|
293 |
msgstr "Renew your license now"
|
294 |
|
295 |
+
#: includes/class-freemius.php:11936
|
296 |
msgid "%s to access version %s security & feature updates, and support."
|
297 |
msgstr "%s to access version %s security & feature updates, and support."
|
298 |
|
299 |
+
#: includes/class-freemius.php:14319
|
300 |
msgid "%s activation was successfully completed."
|
301 |
msgstr "%s の有効化が成功しました。"
|
302 |
|
303 |
+
#: includes/class-freemius.php:14333
|
304 |
msgid "Your account was successfully activated with the %s plan."
|
305 |
msgstr "アカウントが %s プランで有効化できました。"
|
306 |
|
307 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
308 |
msgid "Your trial has been successfully started."
|
309 |
msgstr "トライアル版の利用を開始しました。"
|
310 |
|
311 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
312 |
+
#: includes/class-freemius.php:15028
|
313 |
msgid "Couldn't activate %s."
|
314 |
msgstr "%s を有効化できません。"
|
315 |
|
316 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
317 |
+
#: includes/class-freemius.php:15029
|
318 |
msgid "Please contact us with the following message:"
|
319 |
msgstr "以下のメッセージとともに私たちに連絡をください。"
|
320 |
|
321 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
322 |
msgid "Upgrade"
|
323 |
msgstr "アップグレード"
|
324 |
|
325 |
+
#: includes/class-freemius.php:15384
|
326 |
msgid "Start Trial"
|
327 |
msgstr "トライアルを開始"
|
328 |
|
329 |
+
#: includes/class-freemius.php:15386
|
330 |
msgid "Pricing"
|
331 |
msgstr "料金表"
|
332 |
|
333 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
334 |
msgid "Affiliation"
|
335 |
msgstr "アフィリエイト"
|
336 |
|
337 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
338 |
#: templates/account.php150, templates/debug.php:324
|
339 |
msgid "Account"
|
340 |
msgstr "アカウント"
|
341 |
|
342 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
343 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
344 |
msgid "Contact Us"
|
345 |
msgstr "連絡"
|
346 |
|
347 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
348 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
349 |
#: templates/account/partials/addon.php:41
|
350 |
msgid "Add-Ons"
|
351 |
msgstr "アドオン"
|
352 |
|
353 |
+
#: includes/class-freemius.php:15541
|
354 |
msgctxt "ASCII arrow left icon"
|
355 |
msgid "←"
|
356 |
msgstr "←"
|
357 |
|
358 |
+
#: includes/class-freemius.php:15541
|
359 |
msgctxt "ASCII arrow right icon"
|
360 |
msgid "➤"
|
361 |
msgstr "➤"
|
362 |
|
363 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
364 |
msgctxt "noun"
|
365 |
msgid "Pricing"
|
366 |
msgstr "料金表"
|
367 |
|
368 |
+
#: includes/class-freemius.php15756,
|
369 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
370 |
msgid "Support Forum"
|
371 |
msgstr "サポートフォーラム"
|
372 |
|
373 |
+
#: includes/class-freemius.php:16542
|
374 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
375 |
msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
|
376 |
|
377 |
+
#: includes/class-freemius.php:16543
|
378 |
msgctxt "a positive response"
|
379 |
msgid "Right on"
|
380 |
msgstr "そうだ"
|
381 |
|
382 |
+
#: includes/class-freemius.php:17168
|
383 |
msgid "Your %s Add-on plan was successfully upgraded."
|
384 |
msgstr "%s のアドオンのプランのアップグレードが完了しました。"
|
385 |
|
386 |
+
#: includes/class-freemius.php:17170
|
387 |
msgid "%s Add-on was successfully purchased."
|
388 |
msgstr "%s のアドオンの支払いが完了しました。"
|
389 |
|
390 |
+
#: includes/class-freemius.php:17173
|
391 |
msgid "Download the latest version"
|
392 |
msgstr "最新版をダウンロード"
|
393 |
|
394 |
+
#: includes/class-freemius.php:17259
|
395 |
msgctxt "%1s - plugin title, %2s - API domain"
|
396 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
397 |
msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。"
|
398 |
|
399 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
400 |
+
#: includes/class-freemius.php:17755
|
401 |
msgid "Error received from the server:"
|
402 |
msgstr "サーバーからエラーを受信しました。"
|
403 |
|
404 |
+
#: includes/class-freemius.php:17272
|
405 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
406 |
msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
|
407 |
|
408 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
409 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
410 |
msgctxt ""
|
411 |
msgid "Hmm"
|
412 |
msgstr "ふむ"
|
413 |
|
414 |
+
#: includes/class-freemius.php:17467
|
415 |
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."
|
416 |
msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
|
417 |
|
418 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
419 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
420 |
msgctxt "trial period"
|
421 |
msgid "Trial"
|
422 |
msgstr "トライアル"
|
423 |
|
424 |
+
#: includes/class-freemius.php:17473
|
425 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
426 |
msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
|
427 |
|
428 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
429 |
msgid "Please contact us here"
|
430 |
msgstr "こちらで私たちに連絡をとってください。"
|
431 |
|
432 |
+
#: includes/class-freemius.php:17487
|
433 |
msgid "Your plan was successfully upgraded."
|
434 |
msgstr "プランのアップグレードが成功しました。"
|
435 |
|
436 |
+
#: includes/class-freemius.php:17505
|
437 |
msgid "Your plan was successfully changed to %s."
|
438 |
msgstr "プランの %s への変更が成功しました。"
|
439 |
|
440 |
+
#: includes/class-freemius.php:17521
|
441 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
442 |
msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
|
443 |
|
444 |
+
#: includes/class-freemius.php:17523
|
445 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
446 |
msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
|
447 |
|
448 |
+
#: includes/class-freemius.php:17531
|
449 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
450 |
msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
|
451 |
|
452 |
+
#: includes/class-freemius.php:17544
|
453 |
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."
|
454 |
msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
|
455 |
|
456 |
+
#: includes/class-freemius.php:17567
|
457 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
458 |
msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
|
459 |
|
460 |
+
#: includes/class-freemius.php:17569
|
461 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
462 |
msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
|
463 |
|
464 |
+
#: includes/class-freemius.php:17674
|
465 |
msgid "It looks like the license could not be activated."
|
466 |
msgstr "ライセンスの有効化ができませんでした。"
|
467 |
|
468 |
+
#: includes/class-freemius.php:17704
|
469 |
msgid "Your license was successfully activated."
|
470 |
msgstr "ライセンスの有効化が成功しました。"
|
471 |
|
472 |
+
#: includes/class-freemius.php:17730
|
473 |
msgid "It looks like your site currently doesn't have an active license."
|
474 |
msgstr "サイトは有効なライセンスを持っていないようです。"
|
475 |
|
476 |
+
#: includes/class-freemius.php:17754
|
477 |
msgid "It looks like the license deactivation failed."
|
478 |
msgstr "ライセンスの無効化ができませんでした。"
|
479 |
|
480 |
+
#: includes/class-freemius.php:17782
|
481 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
482 |
msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
|
483 |
|
484 |
+
#: includes/class-freemius.php:17783
|
485 |
msgid "O.K"
|
486 |
msgstr "O.K"
|
487 |
|
488 |
+
#: includes/class-freemius.php:17836
|
489 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
490 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
491 |
|
492 |
+
#: includes/class-freemius.php:17845
|
493 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
494 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
495 |
|
496 |
+
#: includes/class-freemius.php:17887
|
497 |
msgid "You are already running the %s in a trial mode."
|
498 |
msgstr "すでに%sをトライアルモードで利用中です。"
|
499 |
|
500 |
+
#: includes/class-freemius.php:17898
|
501 |
msgid "You already utilized a trial before."
|
502 |
msgstr "以前すでに試用版を利用しました。"
|
503 |
|
504 |
+
#: includes/class-freemius.php:17912
|
505 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
506 |
msgstr "%s プランは存在しないため、試用を開始できません。"
|
507 |
|
508 |
+
#: includes/class-freemius.php:17923
|
509 |
msgid "Plan %s does not support a trial period."
|
510 |
msgstr "%s プランにはトライアル期間はありません。"
|
511 |
|
512 |
+
#: includes/class-freemius.php:17934
|
513 |
msgid "None of the %s's plans supports a trial period."
|
514 |
msgstr "%sのプランにはトライアル期間はありません。"
|
515 |
|
516 |
+
#: includes/class-freemius.php:17984
|
517 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
518 |
msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
|
519 |
|
520 |
+
#: includes/class-freemius.php:18020
|
521 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
522 |
msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
|
523 |
|
524 |
+
#: includes/class-freemius.php:18039
|
525 |
msgid "Your %s free trial was successfully cancelled."
|
526 |
msgstr "%s のフリートライアルはキャンセルされました。"
|
527 |
|
528 |
+
#: includes/class-freemius.php:18346
|
529 |
msgid "Version %s was released."
|
530 |
msgstr "バージョン %s をリリースしました。"
|
531 |
|
532 |
+
#: includes/class-freemius.php:18346
|
533 |
msgid "Please download %s."
|
534 |
msgstr "%s をダウンロードしてください。"
|
535 |
|
536 |
+
#: includes/class-freemius.php:18353
|
537 |
msgid "the latest %s version here"
|
538 |
msgstr "最新の %s バージョンはこちらです。"
|
539 |
|
540 |
+
#: includes/class-freemius.php:18358
|
541 |
msgid "New"
|
542 |
msgstr "新規"
|
543 |
|
544 |
+
#: includes/class-freemius.php:18363
|
545 |
msgid "Seems like you got the latest release."
|
546 |
msgstr "最新版を取得できました。"
|
547 |
|
548 |
+
#: includes/class-freemius.php:18364
|
549 |
msgid "You are all good!"
|
550 |
msgstr "すべて完璧です!"
|
551 |
|
552 |
+
#: includes/class-freemius.php:18632
|
553 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
554 |
msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
|
555 |
|
556 |
+
#: includes/class-freemius.php:18769
|
557 |
msgid "Site successfully opted in."
|
558 |
msgstr "サイトのオプトインに成功しました。"
|
559 |
|
560 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
561 |
msgid "Awesome"
|
562 |
msgstr "すごい!"
|
563 |
|
564 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
565 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
566 |
msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
|
567 |
|
568 |
+
#: includes/class-freemius.php:18787
|
569 |
msgid "Thank you!"
|
570 |
msgstr "ありがとうございます!"
|
571 |
|
572 |
+
#: includes/class-freemius.php:18794
|
573 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
574 |
msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
|
575 |
|
576 |
+
#: includes/class-freemius.php:18923
|
577 |
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."
|
578 |
msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
|
579 |
|
580 |
+
#: includes/class-freemius.php:18929
|
581 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
582 |
msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
|
583 |
|
584 |
+
#: includes/class-freemius.php:18934
|
585 |
msgid "%s is the new owner of the account."
|
586 |
msgstr "%s は新しいオーナーです。"
|
587 |
|
588 |
+
#: includes/class-freemius.php:18936
|
589 |
msgctxt "as congratulations"
|
590 |
msgid "Congrats"
|
591 |
msgstr "おめでとう"
|
592 |
|
593 |
+
#: includes/class-freemius.php:18956
|
594 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
595 |
msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
|
596 |
|
597 |
+
#: includes/class-freemius.php:18957
|
598 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
599 |
msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
|
600 |
|
601 |
+
#: includes/class-freemius.php:18964
|
602 |
msgid "Change Ownership"
|
603 |
msgstr "オーナーを変更"
|
604 |
|
605 |
+
#: includes/class-freemius.php:18972
|
606 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
607 |
msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
|
608 |
|
609 |
+
#: includes/class-freemius.php:18984
|
610 |
msgid "Please provide your full name."
|
611 |
msgstr "フルネームを入力してください。"
|
612 |
|
613 |
+
#: includes/class-freemius.php:18989
|
614 |
msgid "Your name was successfully updated."
|
615 |
msgstr "名前のアップデートが成功しました。"
|
616 |
|
617 |
+
#: includes/class-freemius.php:19050
|
618 |
msgid "You have successfully updated your %s."
|
619 |
msgstr "%s のアップデートが成功しました。"
|
620 |
|
621 |
+
#: includes/class-freemius.php:19190
|
622 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
623 |
msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
|
624 |
|
625 |
+
#: includes/class-freemius.php:19191
|
626 |
msgctxt "advance notice of something that will need attention."
|
627 |
msgid "Heads up"
|
628 |
msgstr "警告"
|
629 |
|
630 |
+
#: includes/class-freemius.php:19621
|
631 |
msgctxt "exclamation"
|
632 |
msgid "Hey"
|
633 |
msgstr "ヘイ"
|
634 |
|
635 |
+
#: includes/class-freemius.php:19621
|
636 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
637 |
msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
|
638 |
|
639 |
+
#: includes/class-freemius.php:19629
|
640 |
msgid "No commitment for %s days - cancel anytime!"
|
641 |
msgstr "%s 日以内であればいつでもキャンセルできます。"
|
642 |
|
643 |
+
#: includes/class-freemius.php:19630
|
644 |
msgid "No credit card required"
|
645 |
msgstr "クレジットカードは必要ありません。"
|
646 |
|
647 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
648 |
msgctxt "call to action"
|
649 |
msgid "Start free trial"
|
650 |
msgstr "フリートライアルを開始"
|
651 |
|
652 |
+
#: includes/class-freemius.php:19714
|
653 |
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!"
|
654 |
msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
|
655 |
|
656 |
+
#: includes/class-freemius.php:19723
|
657 |
msgid "Learn more"
|
658 |
msgstr "詳細はこちら"
|
659 |
|
660 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
661 |
#: templates/account.php509, templates/connect.php171,
|
662 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
663 |
#: templates/account/partials/addon.php:235
|
664 |
msgid "Activate License"
|
665 |
msgstr "ライセンスを有効化"
|
666 |
|
667 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
668 |
#: templates/account.php508, templates/account/partials/site.php:256
|
669 |
msgid "Change License"
|
670 |
msgstr "ライセンスを変更"
|
671 |
|
672 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
673 |
msgid "Opt Out"
|
674 |
msgstr "オプトアウト"
|
675 |
|
676 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
677 |
#: templates/account/partials/site.php43,
|
678 |
#: templates/account/partials/site.php:161
|
679 |
msgid "Opt In"
|
680 |
msgstr "オプトイン"
|
681 |
|
682 |
+
#: includes/class-freemius.php:20187
|
683 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
684 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
685 |
|
686 |
+
#: includes/class-freemius.php:20195
|
687 |
msgid "Activate %s features"
|
688 |
msgstr "Activate %s features"
|
689 |
|
690 |
+
#: includes/class-freemius.php:20208
|
691 |
msgid "Please follow these steps to complete the upgrade"
|
692 |
msgstr "アップグレードを完了するには以下の手順を完了させてください。"
|
693 |
|
694 |
+
#: includes/class-freemius.php:20212
|
695 |
msgid "Download the latest %s version"
|
696 |
msgstr "最新の %s をダウンロード"
|
697 |
|
698 |
+
#: includes/class-freemius.php:20216
|
699 |
msgid "Upload and activate the downloaded version"
|
700 |
msgstr "ダウンロードしたバージョンをアップロードして有効化"
|
701 |
|
702 |
+
#: includes/class-freemius.php:20218
|
703 |
msgid "How to upload and activate?"
|
704 |
msgstr "アップロードと有効化の方法"
|
705 |
|
706 |
+
#: includes/class-freemius.php:20352
|
707 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
708 |
msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
|
709 |
|
710 |
+
#: includes/class-freemius.php:20513
|
711 |
msgid "Auto installation only works for opted-in users."
|
712 |
msgstr "自動インストールはオプトインしたユーザのみで動作します。"
|
713 |
|
714 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
715 |
+
#: includes/class-fs-plugin-updater.php1060,
|
716 |
+
#: includes/class-fs-plugin-updater.php:1074
|
717 |
msgid "Invalid module ID."
|
718 |
msgstr "モジュール ID が不正です"
|
719 |
|
720 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
721 |
msgid "Premium version already active."
|
722 |
msgstr "プレミアムバージョンはすでに有効になっています。"
|
723 |
|
724 |
+
#: includes/class-freemius.php:20539
|
725 |
msgid "You do not have a valid license to access the premium version."
|
726 |
msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
|
727 |
|
728 |
+
#: includes/class-freemius.php:20546
|
729 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
730 |
msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
|
731 |
|
732 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
733 |
msgid "Premium add-on version already installed."
|
734 |
msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
|
735 |
|
736 |
+
#: includes/class-freemius.php:20909
|
737 |
msgid "View paid features"
|
738 |
msgstr "有料の機能を表示する"
|
739 |
|
740 |
+
#: includes/class-freemius.php:21229
|
741 |
msgid "Thank you so much for using %s and its add-ons!"
|
742 |
msgstr "%sとアドオンのご利用ありがとうございます!"
|
743 |
|
744 |
+
#: includes/class-freemius.php:21230
|
745 |
msgid "Thank you so much for using %s!"
|
746 |
msgstr "%sのご利用ありがとうございます!"
|
747 |
|
748 |
+
#: includes/class-freemius.php:21236
|
749 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
750 |
msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
751 |
|
752 |
+
#: includes/class-freemius.php:21240
|
753 |
msgid "Thank you so much for using our products!"
|
754 |
msgstr "プロダクトのご利用ありがとうございます!"
|
755 |
|
756 |
+
#: includes/class-freemius.php:21241
|
757 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
758 |
msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
|
759 |
|
760 |
+
#: includes/class-freemius.php:21260
|
761 |
msgid "%s and its add-ons"
|
762 |
msgstr "%sとそのアドオン"
|
763 |
|
764 |
+
#: includes/class-freemius.php:21269
|
765 |
msgid "Products"
|
766 |
msgstr "プロダクト"
|
767 |
|
768 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
769 |
msgid "Yes"
|
770 |
msgstr "はい"
|
771 |
|
772 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
773 |
msgid "send me security & feature updates, educational content and offers."
|
774 |
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
|
775 |
|
776 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
777 |
msgid "No"
|
778 |
msgstr "いいえ"
|
779 |
|
780 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
781 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
782 |
msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
|
783 |
|
784 |
+
#: includes/class-freemius.php:21290
|
785 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
786 |
msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂"
|
787 |
|
788 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
789 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
790 |
msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
|
791 |
|
792 |
+
#: includes/class-freemius.php:21574
|
793 |
msgid "License key is empty."
|
794 |
msgstr "ライセンスキーが空です。"
|
795 |
|
811 |
msgid "new version"
|
812 |
msgstr "new version"
|
813 |
|
814 |
+
#: includes/class-fs-plugin-updater.php:305
|
815 |
msgid "Important Upgrade Notice:"
|
816 |
msgstr "Important Upgrade Notice:"
|
817 |
|
818 |
+
#: includes/class-fs-plugin-updater.php:1125
|
819 |
msgid "Installing plugin: %s"
|
820 |
msgstr "インストール中プラグイン: %s"
|
821 |
|
822 |
+
#: includes/class-fs-plugin-updater.php:1166
|
823 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
824 |
msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
|
825 |
|
826 |
+
#: includes/class-fs-plugin-updater.php:1348
|
827 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
828 |
msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
|
829 |
|
freemius/languages/freemius-nl_NL.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Benny Vluggen <benny@prodevign.com>, 2017-2018
|
@@ -22,772 +22,772 @@ 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 kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout."
|
28 |
|
29 |
-
#: includes/class-freemius.php:
|
30 |
msgid "Error"
|
31 |
msgstr "Fout"
|
32 |
|
33 |
-
#: includes/class-freemius.php:
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "Ik vond een beter %s"
|
36 |
|
37 |
-
#: includes/class-freemius.php:
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "Wat is de naam van het %s?"
|
40 |
|
41 |
-
#: includes/class-freemius.php:
|
42 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
43 |
msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
|
44 |
|
45 |
-
#: includes/class-freemius.php:
|
46 |
msgid "Deactivation"
|
47 |
msgstr "Deactivatie"
|
48 |
|
49 |
-
#: includes/class-freemius.php:
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "Thema Wissel"
|
52 |
|
53 |
-
#: includes/class-freemius.
|
54 |
msgid "Other"
|
55 |
msgstr "Overige"
|
56 |
|
57 |
-
#: includes/class-freemius.php:
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "Ik heb de %s niet meer nodig "
|
60 |
|
61 |
-
#: includes/class-freemius.php:
|
62 |
msgid "I only needed the %s for a short period"
|
63 |
msgstr "Ik had de %s alleen nodig voor een korte periode."
|
64 |
|
65 |
-
#: includes/class-freemius.php:
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "De %s maakte mijn site onbruikbaar"
|
68 |
|
69 |
-
#: includes/class-freemius.php:
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "De %s werkte opeens niet meer"
|
72 |
|
73 |
-
#: includes/class-freemius.php:
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "Ik kan er niet langer meer voor betalen"
|
76 |
|
77 |
-
#: includes/class-freemius.php:
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "Welke bedrag zou je ervoor over hebben?"
|
80 |
|
81 |
-
#: includes/class-freemius.php:
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
|
84 |
|
85 |
-
#: includes/class-freemius.php:
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "De %s werkte niet"
|
88 |
|
89 |
-
#: includes/class-freemius.php:
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
|
92 |
|
93 |
-
#: includes/class-freemius.php:
|
94 |
msgid "The %s is great, but I need specific feature that you don't support"
|
95 |
msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
|
96 |
|
97 |
-
#: includes/class-freemius.php:
|
98 |
msgid "What feature?"
|
99 |
msgstr "Welke feature?"
|
100 |
|
101 |
-
#: includes/class-freemius.php:
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "De %s werkt niet"
|
104 |
|
105 |
-
#: includes/class-freemius.php:
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
|
108 |
|
109 |
-
#: includes/class-freemius.php:
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "Het is niet waarna ik opzoek was"
|
112 |
|
113 |
-
#: includes/class-freemius.php:
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "Waar was je naar op zoek?"
|
116 |
|
117 |
-
#: includes/class-freemius.php:
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "De %s werkte niet zoals verwacht"
|
120 |
|
121 |
-
#: includes/class-freemius.php:
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "Wat had je verwacht?"
|
124 |
|
125 |
-
#: includes/class-freemius.
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "Freemius Debug"
|
128 |
|
129 |
-
#: includes/class-freemius.php:
|
130 |
msgid "I don't know what is cURL or how to install it, help me!"
|
131 |
msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
|
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 doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
|
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 "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
|
140 |
|
141 |
-
#: includes/class-freemius.php:
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "Ja, ga je gang"
|
144 |
|
145 |
-
#: includes/class-freemius.php:
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "Nee - alleen deactiveren"
|
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 "Oeps"
|
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 "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
|
163 |
|
164 |
-
#: includes/class-freemius.php:
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s werkt niet zonder %s."
|
168 |
|
169 |
-
#: includes/class-freemius.php:
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "%s werkt niet zonder de plug-in."
|
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 "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
|
178 |
|
179 |
-
#: includes/class-freemius.php:
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s versie is succesvol geactiveerd."
|
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 "Je hebt een %s licentie"
|
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 "Hoera"
|
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 gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen."
|
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 uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
|
207 |
|
208 |
-
#: includes/class-freemius.
|
209 |
#: templates/account/partials/addon.php:288
|
210 |
msgid "More information about %s"
|
211 |
msgstr "Meer informatie over %s"
|
212 |
|
213 |
-
#: includes/class-freemius.php:
|
214 |
msgid "Purchase License"
|
215 |
msgstr "Licentie Kopen"
|
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 "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
|
220 |
|
221 |
-
#: includes/class-freemius.php:
|
222 |
msgid "start the trial"
|
223 |
msgstr "start de proefperiode"
|
224 |
|
225 |
-
#: includes/class-freemius.
|
226 |
msgid "complete the install"
|
227 |
msgstr "voltooi de installatie"
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "Je bent slechts een stap verwijderd - %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 "Voltooi \"%s\" Activatie Nu"
|
237 |
|
238 |
-
#: includes/class-freemius.php:
|
239 |
msgid "We made a few tweaks to the %s, %s"
|
240 |
msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
|
241 |
|
242 |
-
#: includes/class-freemius.php:
|
243 |
msgid "Opt in to make \"%s\" better!"
|
244 |
msgstr "Opt-in om \"%s\" te verbeteren!"
|
245 |
|
246 |
-
#: includes/class-freemius.php:
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "De upgrade van %s is succesvol voltooid."
|
249 |
|
250 |
-
#: includes/class-freemius.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
-
#: includes/class-fs-plugin-updater.
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Uitbreiding"
|
256 |
|
257 |
-
#: includes/class-freemius.
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "Plug-in"
|
261 |
|
262 |
-
#: includes/class-freemius.
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "Thema"
|
266 |
|
267 |
-
#: includes/class-freemius.php:
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Ongeldige verzameling van Site Details."
|
270 |
|
271 |
-
#: includes/class-freemius.php:
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
|
274 |
|
275 |
-
#: includes/class-freemius.php:
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
|
278 |
|
279 |
-
#: includes/class-freemius.php:
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Account wacht op activatie."
|
282 |
|
283 |
-
#: includes/class-freemius.
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Koop nu een licentie"
|
287 |
|
288 |
-
#: includes/class-freemius.
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Vernieuw je licentie nu"
|
292 |
|
293 |
-
#: includes/class-freemius.php:
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
|
296 |
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "%s activatie is succesvol voltooid."
|
300 |
|
301 |
-
#: includes/class-freemius.php:
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "Je account is succesvol geactiveerd met het %s plan."
|
304 |
|
305 |
-
#: includes/class-freemius.
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "U proefperiode is met succes gestart."
|
308 |
|
309 |
-
#: includes/class-freemius.
|
310 |
-
#: includes/class-freemius.php:
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "Kon %s niet activeren."
|
313 |
|
314 |
-
#: includes/class-freemius.
|
315 |
-
#: includes/class-freemius.php:
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
|
318 |
|
319 |
-
#: includes/class-freemius.
|
320 |
msgid "Upgrade"
|
321 |
msgstr "Upgrade"
|
322 |
|
323 |
-
#: includes/class-freemius.php:
|
324 |
msgid "Start Trial"
|
325 |
msgstr "Start Proefperiode"
|
326 |
|
327 |
-
#: includes/class-freemius.php:
|
328 |
msgid "Pricing"
|
329 |
msgstr "Prijzen"
|
330 |
|
331 |
-
#: includes/class-freemius.
|
332 |
msgid "Affiliation"
|
333 |
msgstr "Affiliatie"
|
334 |
|
335 |
-
#: includes/class-freemius.
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "Account"
|
339 |
|
340 |
-
#: includes/class-freemius.
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "Contacteer Ons"
|
344 |
|
345 |
-
#: includes/class-freemius.
|
346 |
-
#: includes/class-freemius.
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Uitbreidingen"
|
350 |
|
351 |
-
#: includes/class-freemius.php:
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
-
#: includes/class-freemius.php:
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
-
#: includes/class-freemius.
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "Prijzen"
|
365 |
|
366 |
-
#: includes/class-freemius.
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "Supportforum"
|
370 |
|
371 |
-
#: includes/class-freemius.php:
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
|
374 |
|
375 |
-
#: includes/class-freemius.php:
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "Toppie"
|
379 |
|
380 |
-
#: includes/class-freemius.php:
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
|
383 |
|
384 |
-
#: includes/class-freemius.php:
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "%s Add-on werd succesvol aangekocht."
|
387 |
|
388 |
-
#: includes/class-freemius.php:
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "Download de meeste recente versie"
|
391 |
|
392 |
-
#: includes/class-freemius.php:
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Je server blokkeert de toegang tot de Freemius API, welke cruciaal is voor %1s synchronisatie. Neem alsjeblieft contact op met je host om %2s te whitelisten."
|
396 |
|
397 |
-
#: includes/class-freemius.
|
398 |
-
#: includes/class-freemius.php:
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "Foutmelding ontvangen van de server:"
|
401 |
|
402 |
-
#: includes/class-freemius.php:
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
|
405 |
|
406 |
-
#: includes/class-freemius.
|
407 |
-
#: includes/class-freemius.
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "Hmm"
|
411 |
|
412 |
-
#: includes/class-freemius.php:
|
413 |
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."
|
414 |
msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry."
|
415 |
|
416 |
-
#: includes/class-freemius.
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "Proefperiode"
|
421 |
|
422 |
-
#: includes/class-freemius.php:
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
|
425 |
|
426 |
-
#: includes/class-freemius.
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "Neem hier a.u.b. contact met ons op"
|
429 |
|
430 |
-
#: includes/class-freemius.php:
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "Je plan is succesvol geüpgraded."
|
433 |
|
434 |
-
#: includes/class-freemius.php:
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "Je plan is succesvol veranderd naar %s."
|
437 |
|
438 |
-
#: includes/class-freemius.php:
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
|
441 |
|
442 |
-
#: includes/class-freemius.php:
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
|
445 |
|
446 |
-
#: includes/class-freemius.php:
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
|
449 |
|
450 |
-
#: includes/class-freemius.php:
|
451 |
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."
|
452 |
msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen."
|
453 |
|
454 |
-
#: includes/class-freemius.php:
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
|
457 |
|
458 |
-
#: includes/class-freemius.php:
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
|
461 |
|
462 |
-
#: includes/class-freemius.php:
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
|
465 |
|
466 |
-
#: includes/class-freemius.php:
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "Je licentie is succesvol geactiveerd."
|
469 |
|
470 |
-
#: includes/class-freemius.php:
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
|
473 |
|
474 |
-
#: includes/class-freemius.php:
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
|
477 |
|
478 |
-
#: includes/class-freemius.php:
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
|
481 |
|
482 |
-
#: includes/class-freemius.php:
|
483 |
msgid "O.K"
|
484 |
msgstr "Oké"
|
485 |
|
486 |
-
#: includes/class-freemius.php:
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens."
|
489 |
|
490 |
-
#: includes/class-freemius.php:
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
|
493 |
|
494 |
-
#: includes/class-freemius.php:
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "Je draait de %s al in proefmodus."
|
497 |
|
498 |
-
#: includes/class-freemius.php:
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "U heeft reeds een proefperiode gebruikt."
|
501 |
|
502 |
-
#: includes/class-freemius.php:
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
|
505 |
|
506 |
-
#: includes/class-freemius.php:
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "Plan %s ondersteunt geen proefperiode."
|
509 |
|
510 |
-
#: includes/class-freemius.php:
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "Geen van de %s plannen ondersteunt een proefperiode."
|
513 |
|
514 |
-
#: includes/class-freemius.php:
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
|
517 |
|
518 |
-
#: includes/class-freemius.php:
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens."
|
521 |
|
522 |
-
#: includes/class-freemius.php:
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
|
525 |
|
526 |
-
#: includes/class-freemius.php:
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "Versie %s is vrijgegeven."
|
529 |
|
530 |
-
#: includes/class-freemius.php:
|
531 |
msgid "Please download %s."
|
532 |
msgstr "A.u.b. %s downloaden."
|
533 |
|
534 |
-
#: includes/class-freemius.php:
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "de meest recente %s versie hier"
|
537 |
|
538 |
-
#: includes/class-freemius.php:
|
539 |
msgid "New"
|
540 |
msgstr "Nieuw"
|
541 |
|
542 |
-
#: includes/class-freemius.php:
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "Het lijkt erop dat je de meest recente versie hebt."
|
545 |
|
546 |
-
#: includes/class-freemius.php:
|
547 |
msgid "You are all good!"
|
548 |
msgstr "Alles is goed!"
|
549 |
|
550 |
-
#: includes/class-freemius.php:
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
|
553 |
|
554 |
-
#: includes/class-freemius.php:
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Site opt-in geslaagd. "
|
557 |
|
558 |
-
#: includes/class-freemius.
|
559 |
msgid "Awesome"
|
560 |
msgstr "Geweldig"
|
561 |
|
562 |
-
#: includes/class-freemius.
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
|
565 |
|
566 |
-
#: includes/class-freemius.php:
|
567 |
msgid "Thank you!"
|
568 |
msgstr "Bedankt!"
|
569 |
|
570 |
-
#: includes/class-freemius.php:
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
|
573 |
|
574 |
-
#: includes/class-freemius.php:
|
575 |
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."
|
576 |
msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
|
577 |
|
578 |
-
#: includes/class-freemius.php:
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
|
581 |
|
582 |
-
#: includes/class-freemius.php:
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s is de nieuwe eigenaar van het account."
|
585 |
|
586 |
-
#: includes/class-freemius.php:
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "Gefeliciteerd"
|
590 |
|
591 |
-
#: includes/class-freemius.php:
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
|
594 |
|
595 |
-
#: includes/class-freemius.php:
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "Eigendom Overdragen"
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "Geef alsjeblieft je volledige naam."
|
610 |
|
611 |
-
#: includes/class-freemius.php:
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "Je naam is succesvol bijgewerkt."
|
614 |
|
615 |
-
#: includes/class-freemius.php:
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "Je hebt je %s succesvol geüpdatet."
|
618 |
|
619 |
-
#: includes/class-freemius.php:
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
|
622 |
|
623 |
-
#: includes/class-freemius.php:
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "Aankondiging"
|
627 |
|
628 |
-
#: includes/class-freemius.php:
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "Hoi"
|
632 |
|
633 |
-
#: includes/class-freemius.php:
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
|
636 |
|
637 |
-
#: includes/class-freemius.php:
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
|
640 |
|
641 |
-
#: includes/class-freemius.php:
|
642 |
msgid "No credit card required"
|
643 |
msgstr "Geen creditcard nodig"
|
644 |
|
645 |
-
#: includes/class-freemius.
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "Start gratis proefperidoe"
|
649 |
|
650 |
-
#: includes/class-freemius.php:
|
651 |
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!"
|
652 |
msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
|
653 |
|
654 |
-
#: includes/class-freemius.php:
|
655 |
msgid "Learn more"
|
656 |
msgstr "Lees meer"
|
657 |
|
658 |
-
#: includes/class-freemius.
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "Activeer Licentie"
|
664 |
|
665 |
-
#: includes/class-freemius.
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "Verander Licentie"
|
669 |
|
670 |
-
#: includes/class-freemius.
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Opt Out"
|
673 |
|
674 |
-
#: includes/class-freemius.
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Opt In"
|
679 |
|
680 |
-
#: includes/class-freemius.php:
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr "De betaalde versie van%1s is reeds geïnstalleerd. Activeer deze alsjeblieft om te kunnen profiteren van de %2s features. %3s "
|
683 |
|
684 |
-
#: includes/class-freemius.php:
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activeer %s features."
|
687 |
|
688 |
-
#: includes/class-freemius.php:
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
|
691 |
|
692 |
-
#: includes/class-freemius.php:
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "Download de meeste recente %s versie"
|
695 |
|
696 |
-
#: includes/class-freemius.php:
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "Upload en activeer de gedownloade versie"
|
699 |
|
700 |
-
#: includes/class-freemius.php:
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "Hoe te uploaden en activeren?"
|
703 |
|
704 |
-
#: includes/class-freemius.php:
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
|
707 |
|
708 |
-
#: includes/class-freemius.php:
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
|
711 |
|
712 |
-
#: includes/class-freemius.
|
713 |
-
#: includes/class-fs-plugin-updater.
|
714 |
-
#: includes/class-fs-plugin-updater.php:
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "Ongeldige Module-ID"
|
717 |
|
718 |
-
#: includes/class-freemius.
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "Premium versie reeds actief."
|
721 |
|
722 |
-
#: includes/class-freemius.php:
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "Je hebt geen geldige licentie voor de premium versie."
|
725 |
|
726 |
-
#: includes/class-freemius.php:
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
|
729 |
|
730 |
-
#: includes/class-freemius.
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium add-on versie is reeds geïnstalleerd."
|
733 |
|
734 |
-
#: includes/class-freemius.php:
|
735 |
msgid "View paid features"
|
736 |
msgstr "Bekijk betaalde kenmerken"
|
737 |
|
738 |
-
#: includes/class-freemius.php:
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
|
741 |
|
742 |
-
#: includes/class-freemius.php:
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "Hartelijk bedankt voor het gebruik van %s!"
|
745 |
|
746 |
-
#: includes/class-freemius.php:
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
|
749 |
|
750 |
-
#: includes/class-freemius.php:
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
|
753 |
|
754 |
-
#: includes/class-freemius.php:
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
|
757 |
|
758 |
-
#: includes/class-freemius.php:
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%sen bijbehorende uitbreidingen"
|
761 |
|
762 |
-
#: includes/class-freemius.php:
|
763 |
msgid "Products"
|
764 |
msgstr "Producten"
|
765 |
|
766 |
-
#: includes/class-freemius.
|
767 |
msgid "Yes"
|
768 |
msgstr "Ja"
|
769 |
|
770 |
-
#: includes/class-freemius.
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
|
773 |
|
774 |
-
#: includes/class-freemius.
|
775 |
msgid "No"
|
776 |
msgstr "Nee"
|
777 |
|
778 |
-
#: includes/class-freemius.
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
|
781 |
|
782 |
-
#: includes/class-freemius.php:
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Naar aanleiding van de nieuwe %sEU General Data Protection Regulation (GDPR) / Algemene verordening gegevensbescherming (AVG) %s regelgeving is het verplicht dat je je expliciete toestemming geeft, nogmaals, bevestigend dat je 'aan boord' bent 🙂"
|
785 |
|
786 |
-
#: includes/class-freemius.
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:"
|
789 |
|
790 |
-
#: includes/class-freemius.php:
|
791 |
msgid "License key is empty."
|
792 |
msgstr "Licentiesleutel is leeg."
|
793 |
|
@@ -809,19 +809,19 @@ msgstr "Er is een %s van %s beschikbaar."
|
|
809 |
msgid "new version"
|
810 |
msgstr "nieuwe versie"
|
811 |
|
812 |
-
#: includes/class-fs-plugin-updater.php:
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Belangrijke Upgrade Mededeling:"
|
815 |
|
816 |
-
#: includes/class-fs-plugin-updater.php:
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installeren van plug-in: %s"
|
819 |
|
820 |
-
#: includes/class-fs-plugin-updater.php:
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
|
823 |
|
824 |
-
#: includes/class-fs-plugin-updater.php:
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
|
827 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Benny Vluggen <benny@prodevign.com>, 2017-2018
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/class-freemius.php:1688
|
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 kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout."
|
28 |
|
29 |
+
#: includes/class-freemius.php:1690
|
30 |
msgid "Error"
|
31 |
msgstr "Fout"
|
32 |
|
33 |
+
#: includes/class-freemius.php:2011
|
34 |
msgid "I found a better %s"
|
35 |
msgstr "Ik vond een beter %s"
|
36 |
|
37 |
+
#: includes/class-freemius.php:2013
|
38 |
msgid "What's the %s's name?"
|
39 |
msgstr "Wat is de naam van het %s?"
|
40 |
|
41 |
+
#: includes/class-freemius.php:2019
|
42 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
43 |
msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
|
44 |
|
45 |
+
#: includes/class-freemius.php:2021
|
46 |
msgid "Deactivation"
|
47 |
msgstr "Deactivatie"
|
48 |
|
49 |
+
#: includes/class-freemius.php:2022
|
50 |
msgid "Theme Switch"
|
51 |
msgstr "Thema Wissel"
|
52 |
|
53 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
54 |
msgid "Other"
|
55 |
msgstr "Overige"
|
56 |
|
57 |
+
#: includes/class-freemius.php:2039
|
58 |
msgid "I no longer need the %s"
|
59 |
msgstr "Ik heb de %s niet meer nodig "
|
60 |
|
61 |
+
#: includes/class-freemius.php:2046
|
62 |
msgid "I only needed the %s for a short period"
|
63 |
msgstr "Ik had de %s alleen nodig voor een korte periode."
|
64 |
|
65 |
+
#: includes/class-freemius.php:2052
|
66 |
msgid "The %s broke my site"
|
67 |
msgstr "De %s maakte mijn site onbruikbaar"
|
68 |
|
69 |
+
#: includes/class-freemius.php:2059
|
70 |
msgid "The %s suddenly stopped working"
|
71 |
msgstr "De %s werkte opeens niet meer"
|
72 |
|
73 |
+
#: includes/class-freemius.php:2069
|
74 |
msgid "I can't pay for it anymore"
|
75 |
msgstr "Ik kan er niet langer meer voor betalen"
|
76 |
|
77 |
+
#: includes/class-freemius.php:2071
|
78 |
msgid "What price would you feel comfortable paying?"
|
79 |
msgstr "Welke bedrag zou je ervoor over hebben?"
|
80 |
|
81 |
+
#: includes/class-freemius.php:2077
|
82 |
msgid "I don't like to share my information with you"
|
83 |
msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
|
84 |
|
85 |
+
#: includes/class-freemius.php:2098
|
86 |
msgid "The %s didn't work"
|
87 |
msgstr "De %s werkte niet"
|
88 |
|
89 |
+
#: includes/class-freemius.php:2108
|
90 |
msgid "I couldn't understand how to make it work"
|
91 |
msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
|
92 |
|
93 |
+
#: includes/class-freemius.php:2116
|
94 |
msgid "The %s is great, but I need specific feature that you don't support"
|
95 |
msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
|
96 |
|
97 |
+
#: includes/class-freemius.php:2118
|
98 |
msgid "What feature?"
|
99 |
msgstr "Welke feature?"
|
100 |
|
101 |
+
#: includes/class-freemius.php:2122
|
102 |
msgid "The %s is not working"
|
103 |
msgstr "De %s werkt niet"
|
104 |
|
105 |
+
#: includes/class-freemius.php:2124
|
106 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
107 |
msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
|
108 |
|
109 |
+
#: includes/class-freemius.php:2128
|
110 |
msgid "It's not what I was looking for"
|
111 |
msgstr "Het is niet waarna ik opzoek was"
|
112 |
|
113 |
+
#: includes/class-freemius.php:2130
|
114 |
msgid "What you've been looking for?"
|
115 |
msgstr "Waar was je naar op zoek?"
|
116 |
|
117 |
+
#: includes/class-freemius.php:2134
|
118 |
msgid "The %s didn't work as expected"
|
119 |
msgstr "De %s werkte niet zoals verwacht"
|
120 |
|
121 |
+
#: includes/class-freemius.php:2136
|
122 |
msgid "What did you expect?"
|
123 |
msgstr "Wat had je verwacht?"
|
124 |
|
125 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
126 |
msgid "Freemius Debug"
|
127 |
msgstr "Freemius Debug"
|
128 |
|
129 |
+
#: includes/class-freemius.php:3670
|
130 |
msgid "I don't know what is cURL or how to install it, help me!"
|
131 |
msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
|
132 |
|
133 |
+
#: includes/class-freemius.php:3672
|
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 doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. "
|
136 |
|
137 |
+
#: includes/class-freemius.php:3679
|
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 "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw."
|
140 |
|
141 |
+
#: includes/class-freemius.php:3784
|
142 |
msgid "Yes - do your thing"
|
143 |
msgstr "Ja, ga je gang"
|
144 |
|
145 |
+
#: includes/class-freemius.php:3789
|
146 |
msgid "No - just deactivate"
|
147 |
msgstr "Nee - alleen deactiveren"
|
148 |
|
149 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
150 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
151 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
152 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
153 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
154 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
155 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
156 |
msgctxt "exclamation"
|
157 |
msgid "Oops"
|
158 |
msgstr "Oeps"
|
159 |
|
160 |
+
#: includes/class-freemius.php:3903
|
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 "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld."
|
163 |
|
164 |
+
#: includes/class-freemius.php:4340
|
165 |
msgctxt "addonX cannot run without pluginY"
|
166 |
msgid "%s cannot run without %s."
|
167 |
msgstr "%s werkt niet zonder %s."
|
168 |
|
169 |
+
#: includes/class-freemius.php:4341
|
170 |
msgctxt "addonX cannot run..."
|
171 |
msgid "%s cannot run without the plugin."
|
172 |
msgstr "%s werkt niet zonder de plug-in."
|
173 |
|
174 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
175 |
+
#: includes/class-freemius.php:17953
|
176 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
177 |
msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
|
178 |
|
179 |
+
#: includes/class-freemius.php:5130
|
180 |
msgid "Premium %s version was successfully activated."
|
181 |
msgstr "Premium %s versie is succesvol geactiveerd."
|
182 |
|
183 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
184 |
msgctxt ""
|
185 |
msgid "W00t"
|
186 |
msgstr "W00t"
|
187 |
|
188 |
+
#: includes/class-freemius.php:5157
|
189 |
msgid "You have a %s license."
|
190 |
msgstr "Je hebt een %s licentie"
|
191 |
|
192 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
193 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
194 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
195 |
+
#: includes/class-freemius.php:17707
|
196 |
msgctxt "interjection expressing joy or exuberance"
|
197 |
msgid "Yee-haw"
|
198 |
msgstr "Hoera"
|
199 |
|
200 |
+
#: includes/class-freemius.php:5425
|
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 gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen."
|
203 |
|
204 |
+
#: includes/class-freemius.php:5429
|
205 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
206 |
msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
|
207 |
|
208 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
209 |
#: templates/account/partials/addon.php:288
|
210 |
msgid "More information about %s"
|
211 |
msgstr "Meer informatie over %s"
|
212 |
|
213 |
+
#: includes/class-freemius.php:5439
|
214 |
msgid "Purchase License"
|
215 |
msgstr "Licentie Kopen"
|
216 |
|
217 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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 "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s."
|
220 |
|
221 |
+
#: includes/class-freemius.php:6376
|
222 |
msgid "start the trial"
|
223 |
msgstr "start de proefperiode"
|
224 |
|
225 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
226 |
msgid "complete the install"
|
227 |
msgstr "voltooi de installatie"
|
228 |
|
229 |
+
#: includes/class-freemius.php:6490
|
230 |
msgid "You are just one step away - %s"
|
231 |
msgstr "Je bent slechts een stap verwijderd - %s"
|
232 |
|
233 |
+
#: includes/class-freemius.php:6493
|
234 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
235 |
msgid "Complete \"%s\" Activation Now"
|
236 |
msgstr "Voltooi \"%s\" Activatie Nu"
|
237 |
|
238 |
+
#: includes/class-freemius.php:6571
|
239 |
msgid "We made a few tweaks to the %s, %s"
|
240 |
msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
|
241 |
|
242 |
+
#: includes/class-freemius.php:6575
|
243 |
msgid "Opt in to make \"%s\" better!"
|
244 |
msgstr "Opt-in om \"%s\" te verbeteren!"
|
245 |
|
246 |
+
#: includes/class-freemius.php:7003
|
247 |
msgid "The upgrade of %s was successfully completed."
|
248 |
msgstr "De upgrade van %s is succesvol voltooid."
|
249 |
|
250 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
251 |
+
#: includes/class-fs-plugin-updater.php1081,
|
252 |
+
#: includes/class-fs-plugin-updater.php1088,
|
253 |
#: templates/auto-installation.php:32
|
254 |
msgid "Add-On"
|
255 |
msgstr "Uitbreiding"
|
256 |
|
257 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
258 |
#: templates/debug.php:520
|
259 |
msgid "Plugin"
|
260 |
msgstr "Plug-in"
|
261 |
|
262 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
263 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
264 |
msgid "Theme"
|
265 |
msgstr "Thema"
|
266 |
|
267 |
+
#: includes/class-freemius.php:11412
|
268 |
msgid "Invalid site details collection."
|
269 |
msgstr "Ongeldige verzameling van Site Details."
|
270 |
|
271 |
+
#: includes/class-freemius.php:11532
|
272 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
273 |
msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
|
274 |
|
275 |
+
#: includes/class-freemius.php:11534
|
276 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
277 |
msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
|
278 |
|
279 |
+
#: includes/class-freemius.php:11808
|
280 |
msgid "Account is pending activation."
|
281 |
msgstr "Account wacht op activatie."
|
282 |
|
283 |
+
#: includes/class-freemius.php11920,
|
284 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
285 |
msgid "Buy a license now"
|
286 |
msgstr "Koop nu een licentie"
|
287 |
|
288 |
+
#: includes/class-freemius.php11932,
|
289 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
290 |
msgid "Renew your license now"
|
291 |
msgstr "Vernieuw je licentie nu"
|
292 |
|
293 |
+
#: includes/class-freemius.php:11936
|
294 |
msgid "%s to access version %s security & feature updates, and support."
|
295 |
msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
|
296 |
|
297 |
+
#: includes/class-freemius.php:14319
|
298 |
msgid "%s activation was successfully completed."
|
299 |
msgstr "%s activatie is succesvol voltooid."
|
300 |
|
301 |
+
#: includes/class-freemius.php:14333
|
302 |
msgid "Your account was successfully activated with the %s plan."
|
303 |
msgstr "Je account is succesvol geactiveerd met het %s plan."
|
304 |
|
305 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
306 |
msgid "Your trial has been successfully started."
|
307 |
msgstr "U proefperiode is met succes gestart."
|
308 |
|
309 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
310 |
+
#: includes/class-freemius.php:15028
|
311 |
msgid "Couldn't activate %s."
|
312 |
msgstr "Kon %s niet activeren."
|
313 |
|
314 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
315 |
+
#: includes/class-freemius.php:15029
|
316 |
msgid "Please contact us with the following message:"
|
317 |
msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
|
318 |
|
319 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
320 |
msgid "Upgrade"
|
321 |
msgstr "Upgrade"
|
322 |
|
323 |
+
#: includes/class-freemius.php:15384
|
324 |
msgid "Start Trial"
|
325 |
msgstr "Start Proefperiode"
|
326 |
|
327 |
+
#: includes/class-freemius.php:15386
|
328 |
msgid "Pricing"
|
329 |
msgstr "Prijzen"
|
330 |
|
331 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
332 |
msgid "Affiliation"
|
333 |
msgstr "Affiliatie"
|
334 |
|
335 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
336 |
#: templates/account.php150, templates/debug.php:324
|
337 |
msgid "Account"
|
338 |
msgstr "Account"
|
339 |
|
340 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
341 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
342 |
msgid "Contact Us"
|
343 |
msgstr "Contacteer Ons"
|
344 |
|
345 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
346 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
347 |
#: templates/account/partials/addon.php:41
|
348 |
msgid "Add-Ons"
|
349 |
msgstr "Uitbreidingen"
|
350 |
|
351 |
+
#: includes/class-freemius.php:15541
|
352 |
msgctxt "ASCII arrow left icon"
|
353 |
msgid "←"
|
354 |
msgstr "←"
|
355 |
|
356 |
+
#: includes/class-freemius.php:15541
|
357 |
msgctxt "ASCII arrow right icon"
|
358 |
msgid "➤"
|
359 |
msgstr "➤"
|
360 |
|
361 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
362 |
msgctxt "noun"
|
363 |
msgid "Pricing"
|
364 |
msgstr "Prijzen"
|
365 |
|
366 |
+
#: includes/class-freemius.php15756,
|
367 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
368 |
msgid "Support Forum"
|
369 |
msgstr "Supportforum"
|
370 |
|
371 |
+
#: includes/class-freemius.php:16542
|
372 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
373 |
msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
|
374 |
|
375 |
+
#: includes/class-freemius.php:16543
|
376 |
msgctxt "a positive response"
|
377 |
msgid "Right on"
|
378 |
msgstr "Toppie"
|
379 |
|
380 |
+
#: includes/class-freemius.php:17168
|
381 |
msgid "Your %s Add-on plan was successfully upgraded."
|
382 |
msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
|
383 |
|
384 |
+
#: includes/class-freemius.php:17170
|
385 |
msgid "%s Add-on was successfully purchased."
|
386 |
msgstr "%s Add-on werd succesvol aangekocht."
|
387 |
|
388 |
+
#: includes/class-freemius.php:17173
|
389 |
msgid "Download the latest version"
|
390 |
msgstr "Download de meeste recente versie"
|
391 |
|
392 |
+
#: includes/class-freemius.php:17259
|
393 |
msgctxt "%1s - plugin title, %2s - API domain"
|
394 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
395 |
msgstr "Je server blokkeert de toegang tot de Freemius API, welke cruciaal is voor %1s synchronisatie. Neem alsjeblieft contact op met je host om %2s te whitelisten."
|
396 |
|
397 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
398 |
+
#: includes/class-freemius.php:17755
|
399 |
msgid "Error received from the server:"
|
400 |
msgstr "Foutmelding ontvangen van de server:"
|
401 |
|
402 |
+
#: includes/class-freemius.php:17272
|
403 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
404 |
msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
|
405 |
|
406 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
407 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
408 |
msgctxt ""
|
409 |
msgid "Hmm"
|
410 |
msgstr "Hmm"
|
411 |
|
412 |
+
#: includes/class-freemius.php:17467
|
413 |
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."
|
414 |
msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry."
|
415 |
|
416 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
417 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
418 |
msgctxt "trial period"
|
419 |
msgid "Trial"
|
420 |
msgstr "Proefperiode"
|
421 |
|
422 |
+
#: includes/class-freemius.php:17473
|
423 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
424 |
msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
|
425 |
|
426 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
427 |
msgid "Please contact us here"
|
428 |
msgstr "Neem hier a.u.b. contact met ons op"
|
429 |
|
430 |
+
#: includes/class-freemius.php:17487
|
431 |
msgid "Your plan was successfully upgraded."
|
432 |
msgstr "Je plan is succesvol geüpgraded."
|
433 |
|
434 |
+
#: includes/class-freemius.php:17505
|
435 |
msgid "Your plan was successfully changed to %s."
|
436 |
msgstr "Je plan is succesvol veranderd naar %s."
|
437 |
|
438 |
+
#: includes/class-freemius.php:17521
|
439 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
440 |
msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
|
441 |
|
442 |
+
#: includes/class-freemius.php:17523
|
443 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
|
445 |
|
446 |
+
#: includes/class-freemius.php:17531
|
447 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
448 |
msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
|
449 |
|
450 |
+
#: includes/class-freemius.php:17544
|
451 |
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."
|
452 |
msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen."
|
453 |
|
454 |
+
#: includes/class-freemius.php:17567
|
455 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
456 |
msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
|
457 |
|
458 |
+
#: includes/class-freemius.php:17569
|
459 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
|
461 |
|
462 |
+
#: includes/class-freemius.php:17674
|
463 |
msgid "It looks like the license could not be activated."
|
464 |
msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
|
465 |
|
466 |
+
#: includes/class-freemius.php:17704
|
467 |
msgid "Your license was successfully activated."
|
468 |
msgstr "Je licentie is succesvol geactiveerd."
|
469 |
|
470 |
+
#: includes/class-freemius.php:17730
|
471 |
msgid "It looks like your site currently doesn't have an active license."
|
472 |
msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
|
473 |
|
474 |
+
#: includes/class-freemius.php:17754
|
475 |
msgid "It looks like the license deactivation failed."
|
476 |
msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
|
477 |
|
478 |
+
#: includes/class-freemius.php:17782
|
479 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
480 |
msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
|
481 |
|
482 |
+
#: includes/class-freemius.php:17783
|
483 |
msgid "O.K"
|
484 |
msgstr "Oké"
|
485 |
|
486 |
+
#: includes/class-freemius.php:17836
|
487 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens."
|
489 |
|
490 |
+
#: includes/class-freemius.php:17845
|
491 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
|
493 |
|
494 |
+
#: includes/class-freemius.php:17887
|
495 |
msgid "You are already running the %s in a trial mode."
|
496 |
msgstr "Je draait de %s al in proefmodus."
|
497 |
|
498 |
+
#: includes/class-freemius.php:17898
|
499 |
msgid "You already utilized a trial before."
|
500 |
msgstr "U heeft reeds een proefperiode gebruikt."
|
501 |
|
502 |
+
#: includes/class-freemius.php:17912
|
503 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
504 |
msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
|
505 |
|
506 |
+
#: includes/class-freemius.php:17923
|
507 |
msgid "Plan %s does not support a trial period."
|
508 |
msgstr "Plan %s ondersteunt geen proefperiode."
|
509 |
|
510 |
+
#: includes/class-freemius.php:17934
|
511 |
msgid "None of the %s's plans supports a trial period."
|
512 |
msgstr "Geen van de %s plannen ondersteunt een proefperiode."
|
513 |
|
514 |
+
#: includes/class-freemius.php:17984
|
515 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
516 |
msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
|
517 |
|
518 |
+
#: includes/class-freemius.php:18020
|
519 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
520 |
msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens."
|
521 |
|
522 |
+
#: includes/class-freemius.php:18039
|
523 |
msgid "Your %s free trial was successfully cancelled."
|
524 |
msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
|
525 |
|
526 |
+
#: includes/class-freemius.php:18346
|
527 |
msgid "Version %s was released."
|
528 |
msgstr "Versie %s is vrijgegeven."
|
529 |
|
530 |
+
#: includes/class-freemius.php:18346
|
531 |
msgid "Please download %s."
|
532 |
msgstr "A.u.b. %s downloaden."
|
533 |
|
534 |
+
#: includes/class-freemius.php:18353
|
535 |
msgid "the latest %s version here"
|
536 |
msgstr "de meest recente %s versie hier"
|
537 |
|
538 |
+
#: includes/class-freemius.php:18358
|
539 |
msgid "New"
|
540 |
msgstr "Nieuw"
|
541 |
|
542 |
+
#: includes/class-freemius.php:18363
|
543 |
msgid "Seems like you got the latest release."
|
544 |
msgstr "Het lijkt erop dat je de meest recente versie hebt."
|
545 |
|
546 |
+
#: includes/class-freemius.php:18364
|
547 |
msgid "You are all good!"
|
548 |
msgstr "Alles is goed!"
|
549 |
|
550 |
+
#: includes/class-freemius.php:18632
|
551 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
552 |
msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
|
553 |
|
554 |
+
#: includes/class-freemius.php:18769
|
555 |
msgid "Site successfully opted in."
|
556 |
msgstr "Site opt-in geslaagd. "
|
557 |
|
558 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
559 |
msgid "Awesome"
|
560 |
msgstr "Geweldig"
|
561 |
|
562 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
563 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
564 |
msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
|
565 |
|
566 |
+
#: includes/class-freemius.php:18787
|
567 |
msgid "Thank you!"
|
568 |
msgstr "Bedankt!"
|
569 |
|
570 |
+
#: includes/class-freemius.php:18794
|
571 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
|
573 |
|
574 |
+
#: includes/class-freemius.php:18923
|
575 |
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."
|
576 |
msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox."
|
577 |
|
578 |
+
#: includes/class-freemius.php:18929
|
579 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
580 |
msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
|
581 |
|
582 |
+
#: includes/class-freemius.php:18934
|
583 |
msgid "%s is the new owner of the account."
|
584 |
msgstr "%s is de nieuwe eigenaar van het account."
|
585 |
|
586 |
+
#: includes/class-freemius.php:18936
|
587 |
msgctxt "as congratulations"
|
588 |
msgid "Congrats"
|
589 |
msgstr "Gefeliciteerd"
|
590 |
|
591 |
+
#: includes/class-freemius.php:18956
|
592 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
593 |
msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
|
594 |
|
595 |
+
#: includes/class-freemius.php:18957
|
596 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
597 |
msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
|
598 |
|
599 |
+
#: includes/class-freemius.php:18964
|
600 |
msgid "Change Ownership"
|
601 |
msgstr "Eigendom Overdragen"
|
602 |
|
603 |
+
#: includes/class-freemius.php:18972
|
604 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
605 |
msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
|
606 |
|
607 |
+
#: includes/class-freemius.php:18984
|
608 |
msgid "Please provide your full name."
|
609 |
msgstr "Geef alsjeblieft je volledige naam."
|
610 |
|
611 |
+
#: includes/class-freemius.php:18989
|
612 |
msgid "Your name was successfully updated."
|
613 |
msgstr "Je naam is succesvol bijgewerkt."
|
614 |
|
615 |
+
#: includes/class-freemius.php:19050
|
616 |
msgid "You have successfully updated your %s."
|
617 |
msgstr "Je hebt je %s succesvol geüpdatet."
|
618 |
|
619 |
+
#: includes/class-freemius.php:19190
|
620 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
621 |
msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
|
622 |
|
623 |
+
#: includes/class-freemius.php:19191
|
624 |
msgctxt "advance notice of something that will need attention."
|
625 |
msgid "Heads up"
|
626 |
msgstr "Aankondiging"
|
627 |
|
628 |
+
#: includes/class-freemius.php:19621
|
629 |
msgctxt "exclamation"
|
630 |
msgid "Hey"
|
631 |
msgstr "Hoi"
|
632 |
|
633 |
+
#: includes/class-freemius.php:19621
|
634 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
635 |
msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
|
636 |
|
637 |
+
#: includes/class-freemius.php:19629
|
638 |
msgid "No commitment for %s days - cancel anytime!"
|
639 |
msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
|
640 |
|
641 |
+
#: includes/class-freemius.php:19630
|
642 |
msgid "No credit card required"
|
643 |
msgstr "Geen creditcard nodig"
|
644 |
|
645 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
646 |
msgctxt "call to action"
|
647 |
msgid "Start free trial"
|
648 |
msgstr "Start gratis proefperidoe"
|
649 |
|
650 |
+
#: includes/class-freemius.php:19714
|
651 |
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!"
|
652 |
msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
|
653 |
|
654 |
+
#: includes/class-freemius.php:19723
|
655 |
msgid "Learn more"
|
656 |
msgstr "Lees meer"
|
657 |
|
658 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
659 |
#: templates/account.php509, templates/connect.php171,
|
660 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
661 |
#: templates/account/partials/addon.php:235
|
662 |
msgid "Activate License"
|
663 |
msgstr "Activeer Licentie"
|
664 |
|
665 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
666 |
#: templates/account.php508, templates/account/partials/site.php:256
|
667 |
msgid "Change License"
|
668 |
msgstr "Verander Licentie"
|
669 |
|
670 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
671 |
msgid "Opt Out"
|
672 |
msgstr "Opt Out"
|
673 |
|
674 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
675 |
#: templates/account/partials/site.php43,
|
676 |
#: templates/account/partials/site.php:161
|
677 |
msgid "Opt In"
|
678 |
msgstr "Opt In"
|
679 |
|
680 |
+
#: includes/class-freemius.php:20187
|
681 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
msgstr "De betaalde versie van%1s is reeds geïnstalleerd. Activeer deze alsjeblieft om te kunnen profiteren van de %2s features. %3s "
|
683 |
|
684 |
+
#: includes/class-freemius.php:20195
|
685 |
msgid "Activate %s features"
|
686 |
msgstr "Activeer %s features."
|
687 |
|
688 |
+
#: includes/class-freemius.php:20208
|
689 |
msgid "Please follow these steps to complete the upgrade"
|
690 |
msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
|
691 |
|
692 |
+
#: includes/class-freemius.php:20212
|
693 |
msgid "Download the latest %s version"
|
694 |
msgstr "Download de meeste recente %s versie"
|
695 |
|
696 |
+
#: includes/class-freemius.php:20216
|
697 |
msgid "Upload and activate the downloaded version"
|
698 |
msgstr "Upload en activeer de gedownloade versie"
|
699 |
|
700 |
+
#: includes/class-freemius.php:20218
|
701 |
msgid "How to upload and activate?"
|
702 |
msgstr "Hoe te uploaden en activeren?"
|
703 |
|
704 |
+
#: includes/class-freemius.php:20352
|
705 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
|
707 |
|
708 |
+
#: includes/class-freemius.php:20513
|
709 |
msgid "Auto installation only works for opted-in users."
|
710 |
msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
|
711 |
|
712 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
713 |
+
#: includes/class-fs-plugin-updater.php1060,
|
714 |
+
#: includes/class-fs-plugin-updater.php:1074
|
715 |
msgid "Invalid module ID."
|
716 |
msgstr "Ongeldige Module-ID"
|
717 |
|
718 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
719 |
msgid "Premium version already active."
|
720 |
msgstr "Premium versie reeds actief."
|
721 |
|
722 |
+
#: includes/class-freemius.php:20539
|
723 |
msgid "You do not have a valid license to access the premium version."
|
724 |
msgstr "Je hebt geen geldige licentie voor de premium versie."
|
725 |
|
726 |
+
#: includes/class-freemius.php:20546
|
727 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
728 |
msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
|
729 |
|
730 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
731 |
msgid "Premium add-on version already installed."
|
732 |
msgstr "Premium add-on versie is reeds geïnstalleerd."
|
733 |
|
734 |
+
#: includes/class-freemius.php:20909
|
735 |
msgid "View paid features"
|
736 |
msgstr "Bekijk betaalde kenmerken"
|
737 |
|
738 |
+
#: includes/class-freemius.php:21229
|
739 |
msgid "Thank you so much for using %s and its add-ons!"
|
740 |
msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
|
741 |
|
742 |
+
#: includes/class-freemius.php:21230
|
743 |
msgid "Thank you so much for using %s!"
|
744 |
msgstr "Hartelijk bedankt voor het gebruik van %s!"
|
745 |
|
746 |
+
#: includes/class-freemius.php:21236
|
747 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
|
749 |
|
750 |
+
#: includes/class-freemius.php:21240
|
751 |
msgid "Thank you so much for using our products!"
|
752 |
msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
|
753 |
|
754 |
+
#: includes/class-freemius.php:21241
|
755 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
|
757 |
|
758 |
+
#: includes/class-freemius.php:21260
|
759 |
msgid "%s and its add-ons"
|
760 |
msgstr "%sen bijbehorende uitbreidingen"
|
761 |
|
762 |
+
#: includes/class-freemius.php:21269
|
763 |
msgid "Products"
|
764 |
msgstr "Producten"
|
765 |
|
766 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
767 |
msgid "Yes"
|
768 |
msgstr "Ja"
|
769 |
|
770 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
771 |
msgid "send me security & feature updates, educational content and offers."
|
772 |
msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
|
773 |
|
774 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
775 |
msgid "No"
|
776 |
msgstr "Nee"
|
777 |
|
778 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
779 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
|
781 |
|
782 |
+
#: includes/class-freemius.php:21290
|
783 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
msgstr "Naar aanleiding van de nieuwe %sEU General Data Protection Regulation (GDPR) / Algemene verordening gegevensbescherming (AVG) %s regelgeving is het verplicht dat je je expliciete toestemming geeft, nogmaals, bevestigend dat je 'aan boord' bent 🙂"
|
785 |
|
786 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
787 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:"
|
789 |
|
790 |
+
#: includes/class-freemius.php:21574
|
791 |
msgid "License key is empty."
|
792 |
msgstr "Licentiesleutel is leeg."
|
793 |
|
809 |
msgid "new version"
|
810 |
msgstr "nieuwe versie"
|
811 |
|
812 |
+
#: includes/class-fs-plugin-updater.php:305
|
813 |
msgid "Important Upgrade Notice:"
|
814 |
msgstr "Belangrijke Upgrade Mededeling:"
|
815 |
|
816 |
+
#: includes/class-fs-plugin-updater.php:1125
|
817 |
msgid "Installing plugin: %s"
|
818 |
msgstr "Installeren van plug-in: %s"
|
819 |
|
820 |
+
#: includes/class-fs-plugin-updater.php:1166
|
821 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
822 |
msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
|
823 |
|
824 |
+
#: includes/class-fs-plugin-updater.php:1348
|
825 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
826 |
msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
|
827 |
|
freemius/languages/freemius-ru_RU.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Robert Premmerce <info@premmerce.com>, 2018
|
@@ -21,772 +21,772 @@ 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 не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
|
27 |
|
28 |
-
#: includes/class-freemius.php:
|
29 |
msgid "Error"
|
30 |
msgstr "Ошибка"
|
31 |
|
32 |
-
#: includes/class-freemius.php:
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "Я нашел лучший %s"
|
35 |
|
36 |
-
#: includes/class-freemius.php:
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "Какое название %s?"
|
39 |
|
40 |
-
#: includes/class-freemius.php:
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
|
43 |
|
44 |
-
#: includes/class-freemius.php:
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Деактивация"
|
47 |
|
48 |
-
#: includes/class-freemius.php:
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Переключатель шаблона "
|
51 |
|
52 |
-
#: includes/class-freemius.
|
53 |
msgid "Other"
|
54 |
msgstr "Другие"
|
55 |
|
56 |
-
#: includes/class-freemius.php:
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "%s больше не понадобится."
|
59 |
|
60 |
-
#: includes/class-freemius.php:
|
61 |
msgid "I only needed the %s for a short period"
|
62 |
msgstr "%s требовалась на короткое время"
|
63 |
|
64 |
-
#: includes/class-freemius.php:
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s повредила мой сайт"
|
67 |
|
68 |
-
#: includes/class-freemius.php:
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s внезапно перестала работать "
|
71 |
|
72 |
-
#: includes/class-freemius.php:
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "Я больше не могу оплачивать это. "
|
75 |
|
76 |
-
#: includes/class-freemius.php:
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
msgstr "Какая стоимость была бы для Вас приемлемой? "
|
79 |
|
80 |
-
#: includes/class-freemius.php:
|
81 |
msgid "I don't like to share my information with you"
|
82 |
msgstr "Я не хочу делиться личной информацией с Вами"
|
83 |
|
84 |
-
#: includes/class-freemius.php:
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "%s не сработала"
|
87 |
|
88 |
-
#: includes/class-freemius.php:
|
89 |
msgid "I couldn't understand how to make it work"
|
90 |
msgstr "Я не могу понять как сделать так, чтобы оно работало"
|
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 отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
|
95 |
|
96 |
-
#: includes/class-freemius.php:
|
97 |
msgid "What feature?"
|
98 |
msgstr "Какой функционал?"
|
99 |
|
100 |
-
#: includes/class-freemius.php:
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "%s не работает"
|
103 |
|
104 |
-
#: includes/class-freemius.php:
|
105 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
|
107 |
|
108 |
-
#: includes/class-freemius.php:
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "Это не то, что я искал. "
|
111 |
|
112 |
-
#: includes/class-freemius.php:
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "Что именно Вы ищите? "
|
115 |
|
116 |
-
#: includes/class-freemius.php:
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "%s не сработала как ожидалось"
|
119 |
|
120 |
-
#: includes/class-freemius.php:
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "Каковы были Ваши ожидания? "
|
123 |
|
124 |
-
#: includes/class-freemius.
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Исправление ошибок 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 "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
|
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 "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
|
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 "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
|
139 |
|
140 |
-
#: includes/class-freemius.php:
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Да, делайте то, что Вам нужно. "
|
143 |
|
144 |
-
#: includes/class-freemius.php:
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "Нет. Нужно деактивировать. "
|
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 "Упс!"
|
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 "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
|
162 |
|
163 |
-
#: includes/class-freemius.php:
|
164 |
msgctxt "addonX cannot run without pluginY"
|
165 |
msgid "%s cannot run without %s."
|
166 |
msgstr "%s не работает без %s."
|
167 |
|
168 |
-
#: includes/class-freemius.php:
|
169 |
msgctxt "addonX cannot run..."
|
170 |
msgid "%s cannot run without the plugin."
|
171 |
msgstr "%s не может работать без плагина. "
|
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 "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
|
177 |
|
178 |
-
#: includes/class-freemius.php:
|
179 |
msgid "Premium %s version was successfully activated."
|
180 |
msgstr "Премиум версия %s была успешно активирована. "
|
181 |
|
182 |
-
#: includes/class-freemius.
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "Вау!"
|
186 |
|
187 |
-
#: includes/class-freemius.php:
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "У Вас есть лицензия %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 "Ура!"
|
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 "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
|
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 является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
|
206 |
|
207 |
-
#: includes/class-freemius.
|
208 |
#: templates/account/partials/addon.php:288
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Больше информации о %s"
|
211 |
|
212 |
-
#: includes/class-freemius.php:
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Купите лицензию "
|
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 "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
|
219 |
|
220 |
-
#: includes/class-freemius.php:
|
221 |
msgid "start the trial"
|
222 |
msgstr "Начать тестовый период"
|
223 |
|
224 |
-
#: includes/class-freemius.
|
225 |
msgid "complete the install"
|
226 |
msgstr "Закончить установку"
|
227 |
|
228 |
-
#: includes/class-freemius.php:
|
229 |
msgid "You are just one step away - %s"
|
230 |
msgstr "Вам осталось совсем немножко %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 "Закончить активацию %s сейчас "
|
236 |
|
237 |
-
#: includes/class-freemius.php:
|
238 |
msgid "We made a few tweaks to the %s, %s"
|
239 |
msgstr "Мы усовершенствовали в %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 "Обновление %s было успешно завершено"
|
248 |
|
249 |
-
#: includes/class-freemius.
|
250 |
-
#: includes/class-fs-plugin-updater.
|
251 |
-
#: includes/class-fs-plugin-updater.
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Функционал плагина "
|
255 |
|
256 |
-
#: includes/class-freemius.
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Плагин "
|
260 |
|
261 |
-
#: includes/class-freemius.
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Шаблон "
|
265 |
|
266 |
-
#: includes/class-freemius.php:
|
267 |
msgid "Invalid site details collection."
|
268 |
msgstr "Invalid site details collection."
|
269 |
|
270 |
-
#: includes/class-freemius.php:
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
|
273 |
|
274 |
-
#: includes/class-freemius.php:
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
|
277 |
|
278 |
-
#: includes/class-freemius.php:
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Учетная запись в процессе активации"
|
281 |
|
282 |
-
#: includes/class-freemius.
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Buy a license now"
|
286 |
|
287 |
-
#: includes/class-freemius.
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renew your license now"
|
291 |
|
292 |
-
#: includes/class-freemius.php:
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
msgstr "%s to access version %s security & feature updates, and support."
|
295 |
|
296 |
-
#: includes/class-freemius.php:
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "Активация %s была успешно завершена"
|
299 |
|
300 |
-
#: includes/class-freemius.php:
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
|
303 |
|
304 |
-
#: includes/class-freemius.
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Ваш тестовый период успешно начат"
|
307 |
|
308 |
-
#: includes/class-freemius.
|
309 |
-
#: includes/class-freemius.php:
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "Невозможно активировать %s"
|
312 |
|
313 |
-
#: includes/class-freemius.
|
314 |
-
#: includes/class-freemius.php:
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
|
317 |
|
318 |
-
#: includes/class-freemius.
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Сделать апгрейд "
|
321 |
|
322 |
-
#: includes/class-freemius.php:
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Начать тестовый период"
|
325 |
|
326 |
-
#: includes/class-freemius.php:
|
327 |
msgid "Pricing"
|
328 |
msgstr "Цены "
|
329 |
|
330 |
-
#: includes/class-freemius.
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Партнерство "
|
333 |
|
334 |
-
#: includes/class-freemius.
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Личный кабинет"
|
338 |
|
339 |
-
#: includes/class-freemius.
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Контакты "
|
343 |
|
344 |
-
#: includes/class-freemius.
|
345 |
-
#: includes/class-freemius.
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Настройки плагина "
|
349 |
|
350 |
-
#: includes/class-freemius.php:
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
-
#: includes/class-freemius.php:
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
-
#: includes/class-freemius.
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Цены"
|
364 |
|
365 |
-
#: includes/class-freemius.
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Форум поддержки "
|
369 |
|
370 |
-
#: includes/class-freemius.php:
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
|
373 |
|
374 |
-
#: includes/class-freemius.php:
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Все верно!"
|
378 |
|
379 |
-
#: includes/class-freemius.php:
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Ваш %s план был успешно обновлен"
|
382 |
|
383 |
-
#: includes/class-freemius.php:
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "Покупка %s плагина успешно состоялась"
|
386 |
|
387 |
-
#: includes/class-freemius.php:
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Скачай последнюю версию"
|
390 |
|
391 |
-
#: includes/class-freemius.php:
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
msgstr "Ваш сервер блокирует доступ к Freemius' API, что является очень важным для синхронизации с %1s. Пожалуйста, свяжитесь с Вашим хостинг провайдером для разрешения доступа к %2s "
|
395 |
|
396 |
-
#: includes/class-freemius.
|
397 |
-
#: includes/class-freemius.php:
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Ошибка сервера"
|
400 |
|
401 |
-
#: includes/class-freemius.php:
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
|
404 |
|
405 |
-
#: includes/class-freemius.
|
406 |
-
#: includes/class-freemius.
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Хм..."
|
410 |
|
411 |
-
#: includes/class-freemius.php:
|
412 |
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."
|
413 |
msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
|
414 |
|
415 |
-
#: includes/class-freemius.
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Тестовый период"
|
420 |
|
421 |
-
#: includes/class-freemius.php:
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
|
424 |
|
425 |
-
#: includes/class-freemius.
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Пожалуйста, напишите нам сообщение здесь. "
|
428 |
|
429 |
-
#: includes/class-freemius.php:
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Ваш тарифный план был успешно изменен. "
|
432 |
|
433 |
-
#: includes/class-freemius.php:
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Ваш тарифный план был успешно изменен на %s."
|
436 |
|
437 |
-
#: includes/class-freemius.php:
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
|
440 |
|
441 |
-
#: includes/class-freemius.php:
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
|
445 |
-
#: includes/class-freemius.php:
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
|
448 |
|
449 |
-
#: includes/class-freemius.php:
|
450 |
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."
|
451 |
msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
|
452 |
|
453 |
-
#: includes/class-freemius.php:
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Your free trial has expired. You can still continue using all our free features."
|
456 |
|
457 |
-
#: includes/class-freemius.php:
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
|
461 |
-
#: includes/class-freemius.php:
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Вероятно возникли трудности с активацией лицензии. "
|
464 |
|
465 |
-
#: includes/class-freemius.php:
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Ваша лицензия была успешно активирована. "
|
468 |
|
469 |
-
#: includes/class-freemius.php:
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
|
472 |
|
473 |
-
#: includes/class-freemius.php:
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Вероятно деактивация лицензии не состоялась. "
|
476 |
|
477 |
-
#: includes/class-freemius.php:
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
|
480 |
|
481 |
-
#: includes/class-freemius.php:
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K."
|
484 |
|
485 |
-
#: includes/class-freemius.php:
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
|
489 |
-
#: includes/class-freemius.php:
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
|
493 |
-
#: includes/class-freemius.php:
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Вы уже пользуетесь тестовой версией %s "
|
496 |
|
497 |
-
#: includes/class-freemius.php:
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Вы уже использовали Ваш тестовый период"
|
500 |
|
501 |
-
#: includes/class-freemius.php:
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
|
504 |
|
505 |
-
#: includes/class-freemius.php:
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "Тарифный план % не предусматривает тестового периода. "
|
508 |
|
509 |
-
#: includes/class-freemius.php:
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Тарифные планы %s не предусматривают тестовый период. "
|
512 |
|
513 |
-
#: includes/class-freemius.php:
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Возможно, Ваш тестовый период уже закончился. "
|
516 |
|
517 |
-
#: includes/class-freemius.php:
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
|
520 |
|
521 |
-
#: includes/class-freemius.php:
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Ваш бесплатный тестовый период был успешно отменен. "
|
524 |
|
525 |
-
#: includes/class-freemius.php:
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "Релиз версии %s состоялся. "
|
528 |
|
529 |
-
#: includes/class-freemius.php:
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Пожалуйста, скачайте %s"
|
532 |
|
533 |
-
#: includes/class-freemius.php:
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "Последняя версия %s здесь"
|
536 |
|
537 |
-
#: includes/class-freemius.php:
|
538 |
msgid "New"
|
539 |
msgstr "Новое "
|
540 |
|
541 |
-
#: includes/class-freemius.php:
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Вероятно, Вы пользуетесь последней версией"
|
544 |
|
545 |
-
#: includes/class-freemius.php:
|
546 |
msgid "You are all good!"
|
547 |
msgstr "Все прошло хорошо!"
|
548 |
|
549 |
-
#: includes/class-freemius.php:
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
|
552 |
|
553 |
-
#: includes/class-freemius.php:
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Site successfully opted in."
|
556 |
|
557 |
-
#: includes/class-freemius.
|
558 |
msgid "Awesome"
|
559 |
msgstr "Отлично!"
|
560 |
|
561 |
-
#: includes/class-freemius.
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
|
564 |
|
565 |
-
#: includes/class-freemius.php:
|
566 |
msgid "Thank you!"
|
567 |
msgstr "Thank you!"
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
|
573 |
-
#: includes/class-freemius.php:
|
574 |
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."
|
575 |
msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%я является новым владельцем аккаунта"
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Поздравления! "
|
589 |
|
590 |
-
#: includes/class-freemius.php:
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
|
597 |
|
598 |
-
#: includes/class-freemius.php:
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Сменить владельца лицензии "
|
601 |
|
602 |
-
#: includes/class-freemius.php:
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
|
605 |
|
606 |
-
#: includes/class-freemius.php:
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Пожалуйста, введите Ваше полное имя"
|
609 |
|
610 |
-
#: includes/class-freemius.php:
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Ваше имя было успешно обновлено"
|
613 |
|
614 |
-
#: includes/class-freemius.php:
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Вы успешно обновили Ваш %s"
|
617 |
|
618 |
-
#: includes/class-freemius.php:
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
|
621 |
|
622 |
-
#: includes/class-freemius.php:
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Внимание!"
|
626 |
|
627 |
-
#: includes/class-freemius.php:
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Привет!"
|
631 |
|
632 |
-
#: includes/class-freemius.php:
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
|
635 |
|
636 |
-
#: includes/class-freemius.php:
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
|
639 |
|
640 |
-
#: includes/class-freemius.php:
|
641 |
msgid "No credit card required"
|
642 |
msgstr "Не требуются данные платежной карты"
|
643 |
|
644 |
-
#: includes/class-freemius.
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Начни тестовый период!"
|
648 |
|
649 |
-
#: includes/class-freemius.php:
|
650 |
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!"
|
651 |
msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
|
652 |
|
653 |
-
#: includes/class-freemius.php:
|
654 |
msgid "Learn more"
|
655 |
msgstr "Узнать больше"
|
656 |
|
657 |
-
#: includes/class-freemius.
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Активировать лицензию"
|
663 |
|
664 |
-
#: includes/class-freemius.
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Изменить лицензию "
|
668 |
|
669 |
-
#: includes/class-freemius.
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Отказаться от использования"
|
672 |
|
673 |
-
#: includes/class-freemius.
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Присоединиться"
|
678 |
|
679 |
-
#: includes/class-freemius.php:
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
|
683 |
-
#: includes/class-freemius.php:
|
684 |
msgid "Activate %s features"
|
685 |
msgstr "Activate %s features"
|
686 |
|
687 |
-
#: includes/class-freemius.php:
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
|
690 |
|
691 |
-
#: includes/class-freemius.php:
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Скачайте последнюю версию %s"
|
694 |
|
695 |
-
#: includes/class-freemius.php:
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Загрузите и активируйте скачанную версию"
|
698 |
|
699 |
-
#: includes/class-freemius.php:
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "Как загрузить и активировать?"
|
702 |
|
703 |
-
#: includes/class-freemius.php:
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
|
707 |
-
#: includes/class-freemius.php:
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "Авто установка работает только для зарегистрированных пользователей."
|
710 |
|
711 |
-
#: includes/class-freemius.
|
712 |
-
#: includes/class-fs-plugin-updater.
|
713 |
-
#: includes/class-fs-plugin-updater.php:
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "Неверный ID модуля"
|
716 |
|
717 |
-
#: includes/class-freemius.
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Премиум версия уже активирована"
|
720 |
|
721 |
-
#: includes/class-freemius.php:
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
|
724 |
|
725 |
-
#: includes/class-freemius.php:
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
|
728 |
|
729 |
-
#: includes/class-freemius.
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "Премиум версия плагина была установлена"
|
732 |
|
733 |
-
#: includes/class-freemius.php:
|
734 |
msgid "View paid features"
|
735 |
msgstr "Просмотр платных возможностей"
|
736 |
|
737 |
-
#: includes/class-freemius.php:
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "Thank you so much for using %s and its add-ons!"
|
740 |
|
741 |
-
#: includes/class-freemius.php:
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "Thank you so much for using %s!"
|
744 |
|
745 |
-
#: includes/class-freemius.php:
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
|
749 |
-
#: includes/class-freemius.php:
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "Thank you so much for using our products!"
|
752 |
|
753 |
-
#: includes/class-freemius.php:
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
|
757 |
-
#: includes/class-freemius.php:
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s and its add-ons"
|
760 |
|
761 |
-
#: includes/class-freemius.php:
|
762 |
msgid "Products"
|
763 |
msgstr "Products"
|
764 |
|
765 |
-
#: includes/class-freemius.
|
766 |
msgid "Yes"
|
767 |
msgstr "Yes"
|
768 |
|
769 |
-
#: includes/class-freemius.
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "send me security & feature updates, educational content and offers."
|
772 |
|
773 |
-
#: includes/class-freemius.
|
774 |
msgid "No"
|
775 |
msgstr "No"
|
776 |
|
777 |
-
#: includes/class-freemius.
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
|
781 |
-
#: includes/class-freemius.php:
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
|
785 |
-
#: includes/class-freemius.
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
|
789 |
-
#: includes/class-freemius.php:
|
790 |
msgid "License key is empty."
|
791 |
msgstr "License key is empty."
|
792 |
|
@@ -808,19 +808,19 @@ msgstr "There is a %s of %s available."
|
|
808 |
msgid "new version"
|
809 |
msgstr "new version"
|
810 |
|
811 |
-
#: includes/class-fs-plugin-updater.php:
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
msgstr "Important Upgrade Notice:"
|
814 |
|
815 |
-
#: includes/class-fs-plugin-updater.php:
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Установка плагина: %s"
|
818 |
|
819 |
-
#: includes/class-fs-plugin-updater.php:
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
|
822 |
|
823 |
-
#: includes/class-fs-plugin-updater.php:
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
|
826 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
# Translators:
|
4 |
# Robert Premmerce <info@premmerce.com>, 2018
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
+
#: includes/class-freemius.php:1688
|
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 не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой."
|
27 |
|
28 |
+
#: includes/class-freemius.php:1690
|
29 |
msgid "Error"
|
30 |
msgstr "Ошибка"
|
31 |
|
32 |
+
#: includes/class-freemius.php:2011
|
33 |
msgid "I found a better %s"
|
34 |
msgstr "Я нашел лучший %s"
|
35 |
|
36 |
+
#: includes/class-freemius.php:2013
|
37 |
msgid "What's the %s's name?"
|
38 |
msgstr "Какое название %s?"
|
39 |
|
40 |
+
#: includes/class-freemius.php:2019
|
41 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
42 |
msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. "
|
43 |
|
44 |
+
#: includes/class-freemius.php:2021
|
45 |
msgid "Deactivation"
|
46 |
msgstr "Деактивация"
|
47 |
|
48 |
+
#: includes/class-freemius.php:2022
|
49 |
msgid "Theme Switch"
|
50 |
msgstr "Переключатель шаблона "
|
51 |
|
52 |
+
#: includes/class-freemius.php2031, templates/forms/resend-key.php:24
|
53 |
msgid "Other"
|
54 |
msgstr "Другие"
|
55 |
|
56 |
+
#: includes/class-freemius.php:2039
|
57 |
msgid "I no longer need the %s"
|
58 |
msgstr "%s больше не понадобится."
|
59 |
|
60 |
+
#: includes/class-freemius.php:2046
|
61 |
msgid "I only needed the %s for a short period"
|
62 |
msgstr "%s требовалась на короткое время"
|
63 |
|
64 |
+
#: includes/class-freemius.php:2052
|
65 |
msgid "The %s broke my site"
|
66 |
msgstr "%s повредила мой сайт"
|
67 |
|
68 |
+
#: includes/class-freemius.php:2059
|
69 |
msgid "The %s suddenly stopped working"
|
70 |
msgstr "%s внезапно перестала работать "
|
71 |
|
72 |
+
#: includes/class-freemius.php:2069
|
73 |
msgid "I can't pay for it anymore"
|
74 |
msgstr "Я больше не могу оплачивать это. "
|
75 |
|
76 |
+
#: includes/class-freemius.php:2071
|
77 |
msgid "What price would you feel comfortable paying?"
|
78 |
msgstr "Какая стоимость была бы для Вас приемлемой? "
|
79 |
|
80 |
+
#: includes/class-freemius.php:2077
|
81 |
msgid "I don't like to share my information with you"
|
82 |
msgstr "Я не хочу делиться личной информацией с Вами"
|
83 |
|
84 |
+
#: includes/class-freemius.php:2098
|
85 |
msgid "The %s didn't work"
|
86 |
msgstr "%s не сработала"
|
87 |
|
88 |
+
#: includes/class-freemius.php:2108
|
89 |
msgid "I couldn't understand how to make it work"
|
90 |
msgstr "Я не могу понять как сделать так, чтобы оно работало"
|
91 |
|
92 |
+
#: includes/class-freemius.php:2116
|
93 |
msgid "The %s is great, but I need specific feature that you don't support"
|
94 |
msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. "
|
95 |
|
96 |
+
#: includes/class-freemius.php:2118
|
97 |
msgid "What feature?"
|
98 |
msgstr "Какой функционал?"
|
99 |
|
100 |
+
#: includes/class-freemius.php:2122
|
101 |
msgid "The %s is not working"
|
102 |
msgstr "%s не работает"
|
103 |
|
104 |
+
#: includes/class-freemius.php:2124
|
105 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
106 |
msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. "
|
107 |
|
108 |
+
#: includes/class-freemius.php:2128
|
109 |
msgid "It's not what I was looking for"
|
110 |
msgstr "Это не то, что я искал. "
|
111 |
|
112 |
+
#: includes/class-freemius.php:2130
|
113 |
msgid "What you've been looking for?"
|
114 |
msgstr "Что именно Вы ищите? "
|
115 |
|
116 |
+
#: includes/class-freemius.php:2134
|
117 |
msgid "The %s didn't work as expected"
|
118 |
msgstr "%s не сработала как ожидалось"
|
119 |
|
120 |
+
#: includes/class-freemius.php:2136
|
121 |
msgid "What did you expect?"
|
122 |
msgstr "Каковы были Ваши ожидания? "
|
123 |
|
124 |
+
#: includes/class-freemius.php2942, templates/debug.php:20
|
125 |
msgid "Freemius Debug"
|
126 |
msgstr "Исправление ошибок Freemius"
|
127 |
|
128 |
+
#: includes/class-freemius.php:3670
|
129 |
msgid "I don't know what is cURL or how to install it, help me!"
|
130 |
msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне."
|
131 |
|
132 |
+
#: includes/class-freemius.php:3672
|
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 "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. "
|
135 |
|
136 |
+
#: includes/class-freemius.php:3679
|
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 "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. "
|
139 |
|
140 |
+
#: includes/class-freemius.php:3784
|
141 |
msgid "Yes - do your thing"
|
142 |
msgstr "Да, делайте то, что Вам нужно. "
|
143 |
|
144 |
+
#: includes/class-freemius.php:3789
|
145 |
msgid "No - just deactivate"
|
146 |
msgstr "Нет. Нужно деактивировать. "
|
147 |
|
148 |
+
#: includes/class-freemius.php3834, includes/class-freemius.php4343,
|
149 |
+
#: includes/class-freemius.php5442, includes/class-freemius.php11545,
|
150 |
+
#: includes/class-freemius.php14916, includes/class-freemius.php14968,
|
151 |
+
#: includes/class-freemius.php15030, includes/class-freemius.php17263,
|
152 |
+
#: includes/class-freemius.php17273, includes/class-freemius.php17882,
|
153 |
+
#: includes/class-freemius.php18742, includes/class-freemius.php18857,
|
154 |
+
#: includes/class-freemius.php19001, templates/add-ons.php:43
|
155 |
msgctxt "exclamation"
|
156 |
msgid "Oops"
|
157 |
msgstr "Упс!"
|
158 |
|
159 |
+
#: includes/class-freemius.php:3903
|
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 "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. "
|
162 |
|
163 |
+
#: includes/class-freemius.php:4340
|
164 |
msgctxt "addonX cannot run without pluginY"
|
165 |
msgid "%s cannot run without %s."
|
166 |
msgstr "%s не работает без %s."
|
167 |
|
168 |
+
#: includes/class-freemius.php:4341
|
169 |
msgctxt "addonX cannot run..."
|
170 |
msgid "%s cannot run without the plugin."
|
171 |
msgstr "%s не может работать без плагина. "
|
172 |
|
173 |
+
#: includes/class-freemius.php4487, includes/class-freemius.php4512,
|
174 |
+
#: includes/class-freemius.php:17953
|
175 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
176 |
msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. "
|
177 |
|
178 |
+
#: includes/class-freemius.php:5130
|
179 |
msgid "Premium %s version was successfully activated."
|
180 |
msgstr "Премиум версия %s была успешно активирована. "
|
181 |
|
182 |
+
#: includes/class-freemius.php5142, includes/class-freemius.php:7004
|
183 |
msgctxt ""
|
184 |
msgid "W00t"
|
185 |
msgstr "Вау!"
|
186 |
|
187 |
+
#: includes/class-freemius.php:5157
|
188 |
msgid "You have a %s license."
|
189 |
msgstr "У Вас есть лицензия %s."
|
190 |
|
191 |
+
#: includes/class-freemius.php5161, includes/class-freemius.php14337,
|
192 |
+
#: includes/class-freemius.php14348, includes/class-freemius.php17177,
|
193 |
+
#: includes/class-freemius.php17491, includes/class-freemius.php17557,
|
194 |
+
#: includes/class-freemius.php:17707
|
195 |
msgctxt "interjection expressing joy or exuberance"
|
196 |
msgid "Yee-haw"
|
197 |
msgstr "Ура!"
|
198 |
|
199 |
+
#: includes/class-freemius.php:5425
|
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 "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. "
|
202 |
|
203 |
+
#: includes/class-freemius.php:5429
|
204 |
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
205 |
msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. "
|
206 |
|
207 |
+
#: includes/class-freemius.php5438, templates/add-ons.php103,
|
208 |
#: templates/account/partials/addon.php:288
|
209 |
msgid "More information about %s"
|
210 |
msgstr "Больше информации о %s"
|
211 |
|
212 |
+
#: includes/class-freemius.php:5439
|
213 |
msgid "Purchase License"
|
214 |
msgstr "Купите лицензию "
|
215 |
|
216 |
+
#: includes/class-freemius.php6372, templates/connect.php:163
|
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 "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. "
|
219 |
|
220 |
+
#: includes/class-freemius.php:6376
|
221 |
msgid "start the trial"
|
222 |
msgstr "Начать тестовый период"
|
223 |
|
224 |
+
#: includes/class-freemius.php6377, templates/connect.php:167
|
225 |
msgid "complete the install"
|
226 |
msgstr "Закончить установку"
|
227 |
|
228 |
+
#: includes/class-freemius.php:6490
|
229 |
msgid "You are just one step away - %s"
|
230 |
msgstr "Вам осталось совсем немножко %s"
|
231 |
|
232 |
+
#: includes/class-freemius.php:6493
|
233 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
234 |
msgid "Complete \"%s\" Activation Now"
|
235 |
msgstr "Закончить активацию %s сейчас "
|
236 |
|
237 |
+
#: includes/class-freemius.php:6571
|
238 |
msgid "We made a few tweaks to the %s, %s"
|
239 |
msgstr "Мы усовершенствовали в %s, %s для лучшей работы "
|
240 |
|
241 |
+
#: includes/class-freemius.php:6575
|
242 |
msgid "Opt in to make \"%s\" better!"
|
243 |
msgstr "Opt in to make \"%s\" better!"
|
244 |
|
245 |
+
#: includes/class-freemius.php:7003
|
246 |
msgid "The upgrade of %s was successfully completed."
|
247 |
msgstr "Обновление %s было успешно завершено"
|
248 |
|
249 |
+
#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886,
|
250 |
+
#: includes/class-fs-plugin-updater.php1081,
|
251 |
+
#: includes/class-fs-plugin-updater.php1088,
|
252 |
#: templates/auto-installation.php:32
|
253 |
msgid "Add-On"
|
254 |
msgstr "Функционал плагина "
|
255 |
|
256 |
+
#: includes/class-freemius.php8927, templates/debug.php359,
|
257 |
#: templates/debug.php:520
|
258 |
msgid "Plugin"
|
259 |
msgstr "Плагин "
|
260 |
|
261 |
+
#: includes/class-freemius.php8928, templates/debug.php359,
|
262 |
#: templates/debug.php520, templates/forms/deactivation/form.php:67
|
263 |
msgid "Theme"
|
264 |
msgstr "Шаблон "
|
265 |
|
266 |
+
#: includes/class-freemius.php:11412
|
267 |
msgid "Invalid site details collection."
|
268 |
msgstr "Invalid site details collection."
|
269 |
|
270 |
+
#: includes/class-freemius.php:11532
|
271 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
272 |
msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? "
|
273 |
|
274 |
+
#: includes/class-freemius.php:11534
|
275 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
276 |
msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?"
|
277 |
|
278 |
+
#: includes/class-freemius.php:11808
|
279 |
msgid "Account is pending activation."
|
280 |
msgstr "Учетная запись в процессе активации"
|
281 |
|
282 |
+
#: includes/class-freemius.php11920,
|
283 |
#: templates/forms/premium-versions-upgrade-handler.php:47
|
284 |
msgid "Buy a license now"
|
285 |
msgstr "Buy a license now"
|
286 |
|
287 |
+
#: includes/class-freemius.php11932,
|
288 |
#: templates/forms/premium-versions-upgrade-handler.php:46
|
289 |
msgid "Renew your license now"
|
290 |
msgstr "Renew your license now"
|
291 |
|
292 |
+
#: includes/class-freemius.php:11936
|
293 |
msgid "%s to access version %s security & feature updates, and support."
|
294 |
msgstr "%s to access version %s security & feature updates, and support."
|
295 |
|
296 |
+
#: includes/class-freemius.php:14319
|
297 |
msgid "%s activation was successfully completed."
|
298 |
msgstr "Активация %s была успешно завершена"
|
299 |
|
300 |
+
#: includes/class-freemius.php:14333
|
301 |
msgid "Your account was successfully activated with the %s plan."
|
302 |
msgstr "Ваша учетная запись была успешно активирована согласно плану %s"
|
303 |
|
304 |
+
#: includes/class-freemius.php14344, includes/class-freemius.php:17553
|
305 |
msgid "Your trial has been successfully started."
|
306 |
msgstr "Ваш тестовый период успешно начат"
|
307 |
|
308 |
+
#: includes/class-freemius.php14914, includes/class-freemius.php14966,
|
309 |
+
#: includes/class-freemius.php:15028
|
310 |
msgid "Couldn't activate %s."
|
311 |
msgstr "Невозможно активировать %s"
|
312 |
|
313 |
+
#: includes/class-freemius.php14915, includes/class-freemius.php14967,
|
314 |
+
#: includes/class-freemius.php:15029
|
315 |
msgid "Please contact us with the following message:"
|
316 |
msgstr "Пожалуйста, напишите нам сообщение следующего содержания:"
|
317 |
|
318 |
+
#: includes/class-freemius.php15378, includes/class-freemius.php:19839
|
319 |
msgid "Upgrade"
|
320 |
msgstr "Сделать апгрейд "
|
321 |
|
322 |
+
#: includes/class-freemius.php:15384
|
323 |
msgid "Start Trial"
|
324 |
msgstr "Начать тестовый период"
|
325 |
|
326 |
+
#: includes/class-freemius.php:15386
|
327 |
msgid "Pricing"
|
328 |
msgstr "Цены "
|
329 |
|
330 |
+
#: includes/class-freemius.php15448, includes/class-freemius.php:15450
|
331 |
msgid "Affiliation"
|
332 |
msgstr "Партнерство "
|
333 |
|
334 |
+
#: includes/class-freemius.php15478, includes/class-freemius.php15480,
|
335 |
#: templates/account.php150, templates/debug.php:324
|
336 |
msgid "Account"
|
337 |
msgstr "Личный кабинет"
|
338 |
|
339 |
+
#: includes/class-freemius.php15493, includes/class-freemius.php15495,
|
340 |
#: includes/customizer/class-fs-customizer-support-section.php:60
|
341 |
msgid "Contact Us"
|
342 |
msgstr "Контакты "
|
343 |
|
344 |
+
#: includes/class-freemius.php15505, includes/class-freemius.php15507,
|
345 |
+
#: includes/class-freemius.php19849, templates/account.php100,
|
346 |
#: templates/account/partials/addon.php:41
|
347 |
msgid "Add-Ons"
|
348 |
msgstr "Настройки плагина "
|
349 |
|
350 |
+
#: includes/class-freemius.php:15541
|
351 |
msgctxt "ASCII arrow left icon"
|
352 |
msgid "←"
|
353 |
msgstr "←"
|
354 |
|
355 |
+
#: includes/class-freemius.php:15541
|
356 |
msgctxt "ASCII arrow right icon"
|
357 |
msgid "➤"
|
358 |
msgstr "➤"
|
359 |
|
360 |
+
#: includes/class-freemius.php15543, templates/pricing.php:97
|
361 |
msgctxt "noun"
|
362 |
msgid "Pricing"
|
363 |
msgstr "Цены"
|
364 |
|
365 |
+
#: includes/class-freemius.php15756,
|
366 |
#: includes/customizer/class-fs-customizer-support-section.php:67
|
367 |
msgid "Support Forum"
|
368 |
msgstr "Форум поддержки "
|
369 |
|
370 |
+
#: includes/class-freemius.php:16542
|
371 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
372 |
msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!"
|
373 |
|
374 |
+
#: includes/class-freemius.php:16543
|
375 |
msgctxt "a positive response"
|
376 |
msgid "Right on"
|
377 |
msgstr "Все верно!"
|
378 |
|
379 |
+
#: includes/class-freemius.php:17168
|
380 |
msgid "Your %s Add-on plan was successfully upgraded."
|
381 |
msgstr "Ваш %s план был успешно обновлен"
|
382 |
|
383 |
+
#: includes/class-freemius.php:17170
|
384 |
msgid "%s Add-on was successfully purchased."
|
385 |
msgstr "Покупка %s плагина успешно состоялась"
|
386 |
|
387 |
+
#: includes/class-freemius.php:17173
|
388 |
msgid "Download the latest version"
|
389 |
msgstr "Скачай последнюю версию"
|
390 |
|
391 |
+
#: includes/class-freemius.php:17259
|
392 |
msgctxt "%1s - plugin title, %2s - API domain"
|
393 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
394 |
msgstr "Ваш сервер блокирует доступ к Freemius' API, что является очень важным для синхронизации с %1s. Пожалуйста, свяжитесь с Вашим хостинг провайдером для разрешения доступа к %2s "
|
395 |
|
396 |
+
#: includes/class-freemius.php17262, includes/class-freemius.php17678,
|
397 |
+
#: includes/class-freemius.php:17755
|
398 |
msgid "Error received from the server:"
|
399 |
msgstr "Ошибка сервера"
|
400 |
|
401 |
+
#: includes/class-freemius.php:17272
|
402 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
403 |
msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку."
|
404 |
|
405 |
+
#: includes/class-freemius.php17454, includes/class-freemius.php17683,
|
406 |
+
#: includes/class-freemius.php17726, includes/class-freemius.php:17829
|
407 |
msgctxt ""
|
408 |
msgid "Hmm"
|
409 |
msgstr "Хм..."
|
410 |
|
411 |
+
#: includes/class-freemius.php:17467
|
412 |
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."
|
413 |
msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. "
|
414 |
|
415 |
+
#: includes/class-freemius.php17468, templates/account.php102,
|
416 |
#: templates/add-ons.php134, templates/account/partials/addon.php:43
|
417 |
msgctxt "trial period"
|
418 |
msgid "Trial"
|
419 |
msgstr "Тестовый период"
|
420 |
|
421 |
+
#: includes/class-freemius.php:17473
|
422 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
423 |
msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. "
|
424 |
|
425 |
+
#: includes/class-freemius.php17477, includes/class-freemius.php:17535
|
426 |
msgid "Please contact us here"
|
427 |
msgstr "Пожалуйста, напишите нам сообщение здесь. "
|
428 |
|
429 |
+
#: includes/class-freemius.php:17487
|
430 |
msgid "Your plan was successfully upgraded."
|
431 |
msgstr "Ваш тарифный план был успешно изменен. "
|
432 |
|
433 |
+
#: includes/class-freemius.php:17505
|
434 |
msgid "Your plan was successfully changed to %s."
|
435 |
msgstr "Ваш тарифный план был успешно изменен на %s."
|
436 |
|
437 |
+
#: includes/class-freemius.php:17521
|
438 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
439 |
msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе."
|
440 |
|
441 |
+
#: includes/class-freemius.php:17523
|
442 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
443 |
msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
444 |
|
445 |
+
#: includes/class-freemius.php:17531
|
446 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
447 |
msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. "
|
448 |
|
449 |
+
#: includes/class-freemius.php:17544
|
450 |
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."
|
451 |
msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. "
|
452 |
|
453 |
+
#: includes/class-freemius.php:17567
|
454 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
455 |
msgstr "Your free trial has expired. You can still continue using all our free features."
|
456 |
|
457 |
+
#: includes/class-freemius.php:17569
|
458 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
459 |
msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
460 |
|
461 |
+
#: includes/class-freemius.php:17674
|
462 |
msgid "It looks like the license could not be activated."
|
463 |
msgstr "Вероятно возникли трудности с активацией лицензии. "
|
464 |
|
465 |
+
#: includes/class-freemius.php:17704
|
466 |
msgid "Your license was successfully activated."
|
467 |
msgstr "Ваша лицензия была успешно активирована. "
|
468 |
|
469 |
+
#: includes/class-freemius.php:17730
|
470 |
msgid "It looks like your site currently doesn't have an active license."
|
471 |
msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. "
|
472 |
|
473 |
+
#: includes/class-freemius.php:17754
|
474 |
msgid "It looks like the license deactivation failed."
|
475 |
msgstr "Вероятно деактивация лицензии не состоялась. "
|
476 |
|
477 |
+
#: includes/class-freemius.php:17782
|
478 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
479 |
msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s."
|
480 |
|
481 |
+
#: includes/class-freemius.php:17783
|
482 |
msgid "O.K"
|
483 |
msgstr "O.K."
|
484 |
|
485 |
+
#: includes/class-freemius.php:17836
|
486 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
487 |
msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
488 |
|
489 |
+
#: includes/class-freemius.php:17845
|
490 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
491 |
msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
492 |
|
493 |
+
#: includes/class-freemius.php:17887
|
494 |
msgid "You are already running the %s in a trial mode."
|
495 |
msgstr "Вы уже пользуетесь тестовой версией %s "
|
496 |
|
497 |
+
#: includes/class-freemius.php:17898
|
498 |
msgid "You already utilized a trial before."
|
499 |
msgstr "Вы уже использовали Ваш тестовый период"
|
500 |
|
501 |
+
#: includes/class-freemius.php:17912
|
502 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
503 |
msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. "
|
504 |
|
505 |
+
#: includes/class-freemius.php:17923
|
506 |
msgid "Plan %s does not support a trial period."
|
507 |
msgstr "Тарифный план % не предусматривает тестового периода. "
|
508 |
|
509 |
+
#: includes/class-freemius.php:17934
|
510 |
msgid "None of the %s's plans supports a trial period."
|
511 |
msgstr "Тарифные планы %s не предусматривают тестовый период. "
|
512 |
|
513 |
+
#: includes/class-freemius.php:17984
|
514 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
515 |
msgstr "Возможно, Ваш тестовый период уже закончился. "
|
516 |
|
517 |
+
#: includes/class-freemius.php:18020
|
518 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
519 |
msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут."
|
520 |
|
521 |
+
#: includes/class-freemius.php:18039
|
522 |
msgid "Your %s free trial was successfully cancelled."
|
523 |
msgstr "Ваш бесплатный тестовый период был успешно отменен. "
|
524 |
|
525 |
+
#: includes/class-freemius.php:18346
|
526 |
msgid "Version %s was released."
|
527 |
msgstr "Релиз версии %s состоялся. "
|
528 |
|
529 |
+
#: includes/class-freemius.php:18346
|
530 |
msgid "Please download %s."
|
531 |
msgstr "Пожалуйста, скачайте %s"
|
532 |
|
533 |
+
#: includes/class-freemius.php:18353
|
534 |
msgid "the latest %s version here"
|
535 |
msgstr "Последняя версия %s здесь"
|
536 |
|
537 |
+
#: includes/class-freemius.php:18358
|
538 |
msgid "New"
|
539 |
msgstr "Новое "
|
540 |
|
541 |
+
#: includes/class-freemius.php:18363
|
542 |
msgid "Seems like you got the latest release."
|
543 |
msgstr "Вероятно, Вы пользуетесь последней версией"
|
544 |
|
545 |
+
#: includes/class-freemius.php:18364
|
546 |
msgid "You are all good!"
|
547 |
msgstr "Все прошло хорошо!"
|
548 |
|
549 |
+
#: includes/class-freemius.php:18632
|
550 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
551 |
msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам."
|
552 |
|
553 |
+
#: includes/class-freemius.php:18769
|
554 |
msgid "Site successfully opted in."
|
555 |
msgstr "Site successfully opted in."
|
556 |
|
557 |
+
#: includes/class-freemius.php18770, includes/class-freemius.php:19581
|
558 |
msgid "Awesome"
|
559 |
msgstr "Отлично!"
|
560 |
|
561 |
+
#: includes/class-freemius.php18786, templates/forms/optout.php:32
|
562 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
563 |
msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. "
|
564 |
|
565 |
+
#: includes/class-freemius.php:18787
|
566 |
msgid "Thank you!"
|
567 |
msgstr "Thank you!"
|
568 |
|
569 |
+
#: includes/class-freemius.php:18794
|
570 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
571 |
msgstr "We will no longer be sending any usage data of %s on %s to %s."
|
572 |
|
573 |
+
#: includes/class-freemius.php:18923
|
574 |
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."
|
575 |
msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. "
|
576 |
|
577 |
+
#: includes/class-freemius.php:18929
|
578 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
579 |
msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. "
|
580 |
|
581 |
+
#: includes/class-freemius.php:18934
|
582 |
msgid "%s is the new owner of the account."
|
583 |
msgstr "%я является новым владельцем аккаунта"
|
584 |
|
585 |
+
#: includes/class-freemius.php:18936
|
586 |
msgctxt "as congratulations"
|
587 |
msgid "Congrats"
|
588 |
msgstr "Поздравления! "
|
589 |
|
590 |
+
#: includes/class-freemius.php:18956
|
591 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
592 |
msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. "
|
593 |
|
594 |
+
#: includes/class-freemius.php:18957
|
595 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
596 |
msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\""
|
597 |
|
598 |
+
#: includes/class-freemius.php:18964
|
599 |
msgid "Change Ownership"
|
600 |
msgstr "Сменить владельца лицензии "
|
601 |
|
602 |
+
#: includes/class-freemius.php:18972
|
603 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
604 |
msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения"
|
605 |
|
606 |
+
#: includes/class-freemius.php:18984
|
607 |
msgid "Please provide your full name."
|
608 |
msgstr "Пожалуйста, введите Ваше полное имя"
|
609 |
|
610 |
+
#: includes/class-freemius.php:18989
|
611 |
msgid "Your name was successfully updated."
|
612 |
msgstr "Ваше имя было успешно обновлено"
|
613 |
|
614 |
+
#: includes/class-freemius.php:19050
|
615 |
msgid "You have successfully updated your %s."
|
616 |
msgstr "Вы успешно обновили Ваш %s"
|
617 |
|
618 |
+
#: includes/class-freemius.php:19190
|
619 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
620 |
msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. "
|
621 |
|
622 |
+
#: includes/class-freemius.php:19191
|
623 |
msgctxt "advance notice of something that will need attention."
|
624 |
msgid "Heads up"
|
625 |
msgstr "Внимание!"
|
626 |
|
627 |
+
#: includes/class-freemius.php:19621
|
628 |
msgctxt "exclamation"
|
629 |
msgid "Hey"
|
630 |
msgstr "Привет!"
|
631 |
|
632 |
+
#: includes/class-freemius.php:19621
|
633 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
634 |
msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. "
|
635 |
|
636 |
+
#: includes/class-freemius.php:19629
|
637 |
msgid "No commitment for %s days - cancel anytime!"
|
638 |
msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. "
|
639 |
|
640 |
+
#: includes/class-freemius.php:19630
|
641 |
msgid "No credit card required"
|
642 |
msgstr "Не требуются данные платежной карты"
|
643 |
|
644 |
+
#: includes/class-freemius.php19637, templates/forms/trial-start.php:53
|
645 |
msgctxt "call to action"
|
646 |
msgid "Start free trial"
|
647 |
msgstr "Начни тестовый период!"
|
648 |
|
649 |
+
#: includes/class-freemius.php:19714
|
650 |
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!"
|
651 |
msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!"
|
652 |
|
653 |
+
#: includes/class-freemius.php:19723
|
654 |
msgid "Learn more"
|
655 |
msgstr "Узнать больше"
|
656 |
|
657 |
+
#: includes/class-freemius.php19873, templates/account.php406,
|
658 |
#: templates/account.php509, templates/connect.php171,
|
659 |
#: templates/connect.php421, templates/forms/license-activation.php24,
|
660 |
#: templates/account/partials/addon.php:235
|
661 |
msgid "Activate License"
|
662 |
msgstr "Активировать лицензию"
|
663 |
|
664 |
+
#: includes/class-freemius.php19874, templates/account.php469,
|
665 |
#: templates/account.php508, templates/account/partials/site.php:256
|
666 |
msgid "Change License"
|
667 |
msgstr "Изменить лицензию "
|
668 |
|
669 |
+
#: includes/class-freemius.php19956, templates/account/partials/site.php:161
|
670 |
msgid "Opt Out"
|
671 |
msgstr "Отказаться от использования"
|
672 |
|
673 |
+
#: includes/class-freemius.php19958, includes/class-freemius.php19963,
|
674 |
#: templates/account/partials/site.php43,
|
675 |
#: templates/account/partials/site.php:161
|
676 |
msgid "Opt In"
|
677 |
msgstr "Присоединиться"
|
678 |
|
679 |
+
#: includes/class-freemius.php:20187
|
680 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
681 |
msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
682 |
|
683 |
+
#: includes/class-freemius.php:20195
|
684 |
msgid "Activate %s features"
|
685 |
msgstr "Activate %s features"
|
686 |
|
687 |
+
#: includes/class-freemius.php:20208
|
688 |
msgid "Please follow these steps to complete the upgrade"
|
689 |
msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд"
|
690 |
|
691 |
+
#: includes/class-freemius.php:20212
|
692 |
msgid "Download the latest %s version"
|
693 |
msgstr "Скачайте последнюю версию %s"
|
694 |
|
695 |
+
#: includes/class-freemius.php:20216
|
696 |
msgid "Upload and activate the downloaded version"
|
697 |
msgstr "Загрузите и активируйте скачанную версию"
|
698 |
|
699 |
+
#: includes/class-freemius.php:20218
|
700 |
msgid "How to upload and activate?"
|
701 |
msgstr "Как загрузить и активировать?"
|
702 |
|
703 |
+
#: includes/class-freemius.php:20352
|
704 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
705 |
msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
|
706 |
|
707 |
+
#: includes/class-freemius.php:20513
|
708 |
msgid "Auto installation only works for opted-in users."
|
709 |
msgstr "Авто установка работает только для зарегистрированных пользователей."
|
710 |
|
711 |
+
#: includes/class-freemius.php20523, includes/class-freemius.php20556,
|
712 |
+
#: includes/class-fs-plugin-updater.php1060,
|
713 |
+
#: includes/class-fs-plugin-updater.php:1074
|
714 |
msgid "Invalid module ID."
|
715 |
msgstr "Неверный ID модуля"
|
716 |
|
717 |
+
#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096
|
718 |
msgid "Premium version already active."
|
719 |
msgstr "Премиум версия уже активирована"
|
720 |
|
721 |
+
#: includes/class-freemius.php:20539
|
722 |
msgid "You do not have a valid license to access the premium version."
|
723 |
msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией"
|
724 |
|
725 |
+
#: includes/class-freemius.php:20546
|
726 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
727 |
msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. "
|
728 |
|
729 |
+
#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095
|
730 |
msgid "Premium add-on version already installed."
|
731 |
msgstr "Премиум версия плагина была установлена"
|
732 |
|
733 |
+
#: includes/class-freemius.php:20909
|
734 |
msgid "View paid features"
|
735 |
msgstr "Просмотр платных возможностей"
|
736 |
|
737 |
+
#: includes/class-freemius.php:21229
|
738 |
msgid "Thank you so much for using %s and its add-ons!"
|
739 |
msgstr "Thank you so much for using %s and its add-ons!"
|
740 |
|
741 |
+
#: includes/class-freemius.php:21230
|
742 |
msgid "Thank you so much for using %s!"
|
743 |
msgstr "Thank you so much for using %s!"
|
744 |
|
745 |
+
#: includes/class-freemius.php:21236
|
746 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
747 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
748 |
|
749 |
+
#: includes/class-freemius.php:21240
|
750 |
msgid "Thank you so much for using our products!"
|
751 |
msgstr "Thank you so much for using our products!"
|
752 |
|
753 |
+
#: includes/class-freemius.php:21241
|
754 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
755 |
msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
756 |
|
757 |
+
#: includes/class-freemius.php:21260
|
758 |
msgid "%s and its add-ons"
|
759 |
msgstr "%s and its add-ons"
|
760 |
|
761 |
+
#: includes/class-freemius.php:21269
|
762 |
msgid "Products"
|
763 |
msgstr "Products"
|
764 |
|
765 |
+
#: includes/class-freemius.php21276, templates/connect.php:272
|
766 |
msgid "Yes"
|
767 |
msgstr "Yes"
|
768 |
|
769 |
+
#: includes/class-freemius.php21277, templates/connect.php:273
|
770 |
msgid "send me security & feature updates, educational content and offers."
|
771 |
msgstr "send me security & feature updates, educational content and offers."
|
772 |
|
773 |
+
#: includes/class-freemius.php21278, templates/connect.php:278
|
774 |
msgid "No"
|
775 |
msgstr "No"
|
776 |
|
777 |
+
#: includes/class-freemius.php21280, templates/connect.php:280
|
778 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
779 |
msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
|
780 |
|
781 |
+
#: includes/class-freemius.php:21290
|
782 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
783 |
msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
784 |
|
785 |
+
#: includes/class-freemius.php21292, templates/connect.php:287
|
786 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
787 |
msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
788 |
|
789 |
+
#: includes/class-freemius.php:21574
|
790 |
msgid "License key is empty."
|
791 |
msgstr "License key is empty."
|
792 |
|
808 |
msgid "new version"
|
809 |
msgstr "new version"
|
810 |
|
811 |
+
#: includes/class-fs-plugin-updater.php:305
|
812 |
msgid "Important Upgrade Notice:"
|
813 |
msgstr "Important Upgrade Notice:"
|
814 |
|
815 |
+
#: includes/class-fs-plugin-updater.php:1125
|
816 |
msgid "Installing plugin: %s"
|
817 |
msgstr "Установка плагина: %s"
|
818 |
|
819 |
+
#: includes/class-fs-plugin-updater.php:1166
|
820 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
821 |
msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. "
|
822 |
|
823 |
+
#: includes/class-fs-plugin-updater.php:1348
|
824 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
825 |
msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. "
|
826 |
|
freemius/languages/freemius.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
@@ -16,736 +16,736 @@ msgstr ""
|
|
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 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:
|
24 |
msgid "Error"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/class-freemius.php:
|
28 |
msgid "I found a better %s"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: includes/class-freemius.php:
|
32 |
msgid "What's the %s's name?"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/class-freemius.php:
|
36 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/class-freemius.php:
|
40 |
msgid "Deactivation"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/class-freemius.php:
|
44 |
msgid "Theme Switch"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/class-freemius.php:
|
48 |
msgid "Other"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/class-freemius.php:
|
52 |
msgid "I no longer need the %s"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/class-freemius.php:
|
56 |
msgid "I only needed the %s for a short period"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: includes/class-freemius.php:
|
60 |
msgid "The %s broke my site"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/class-freemius.php:
|
64 |
msgid "The %s suddenly stopped working"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/class-freemius.php:
|
68 |
msgid "I can't pay for it anymore"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: includes/class-freemius.php:
|
72 |
msgid "What price would you feel comfortable paying?"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/class-freemius.php:
|
76 |
msgid "I don't like to share my information with you"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: includes/class-freemius.php:
|
80 |
msgid "The %s didn't work"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/class-freemius.php:
|
84 |
msgid "I couldn't understand how to make it work"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/class-freemius.php:
|
88 |
msgid "The %s is great, but I need specific feature that you don't support"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/class-freemius.php:
|
92 |
msgid "What feature?"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/class-freemius.php:
|
96 |
msgid "The %s is not working"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/class-freemius.php:
|
100 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-freemius.php:
|
104 |
msgid "It's not what I was looking for"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/class-freemius.php:
|
108 |
msgid "What you've been looking for?"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-freemius.php:
|
112 |
msgid "The %s didn't work as expected"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/class-freemius.php:
|
116 |
msgid "What did you expect?"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-freemius.php:
|
120 |
msgid "Freemius Debug"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: includes/class-freemius.php:
|
124 |
msgid "I don't know what is cURL or how to install it, help me!"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
136 |
msgid "Yes - do your thing"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-freemius.php:
|
140 |
msgid "No - just deactivate"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-freemius.php:
|
144 |
msgctxt "exclamation"
|
145 |
msgid "Oops"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/class-freemius.php:
|
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:
|
153 |
msgctxt "addonX cannot run without pluginY"
|
154 |
msgid "%s cannot run without %s."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-freemius.php:
|
158 |
msgctxt "addonX cannot run..."
|
159 |
msgid "%s cannot run without the plugin."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/class-freemius.php:
|
163 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/class-freemius.php:
|
167 |
msgid "Premium %s version was successfully activated."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/class-freemius.php:
|
171 |
msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
|
172 |
msgid "W00t"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-freemius.php:
|
176 |
msgid "You have a %s license."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/class-freemius.php:
|
180 |
msgctxt "interjection expressing joy or exuberance"
|
181 |
msgid "Yee-haw"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/class-freemius.php:
|
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:
|
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:
|
193 |
msgid "More information about %s"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/class-freemius.php:
|
197 |
msgid "Purchase License"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/class-freemius.php:
|
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:
|
205 |
msgid "start the trial"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-freemius.php:
|
209 |
msgid "complete the install"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-freemius.php:
|
213 |
msgid "You are just one step away - %s"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-freemius.php:
|
217 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
218 |
msgid "Complete \"%s\" Activation Now"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/class-freemius.php:
|
222 |
msgid "We made a few tweaks to the %s, %s"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/class-freemius.php:
|
226 |
msgid "Opt in to make \"%s\" better!"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/class-freemius.php:
|
230 |
msgid "The upgrade of %s was successfully completed."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/class-freemius.php:
|
234 |
msgid "Add-On"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/class-freemius.php:
|
238 |
msgid "Plugin"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/class-freemius.php:
|
242 |
msgid "Theme"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/class-freemius.php:
|
246 |
msgid "Invalid site details collection."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/class-freemius.php:
|
250 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-freemius.php:
|
254 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-freemius.php:
|
258 |
msgid "Account is pending activation."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/class-freemius.php:
|
262 |
msgid "Buy a license now"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/class-freemius.php:
|
266 |
msgid "Renew your license now"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-freemius.php:
|
270 |
msgid "%s to access version %s security & feature updates, and support."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-freemius.php:
|
274 |
msgid "%s activation was successfully completed."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
278 |
msgid "Your account was successfully activated with the %s plan."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-freemius.php:
|
282 |
msgid "Your trial has been successfully started."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-freemius.php:
|
286 |
msgid "Couldn't activate %s."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-freemius.php:
|
290 |
msgid "Please contact us with the following message:"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-freemius.php:
|
294 |
msgid "Upgrade"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: includes/class-freemius.php:
|
298 |
msgid "Start Trial"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: includes/class-freemius.php:
|
302 |
msgid "Pricing"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/class-freemius.php:
|
306 |
msgid "Affiliation"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: includes/class-freemius.php:
|
310 |
msgid "Account"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: includes/class-freemius.php:
|
314 |
msgid "Contact Us"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: includes/class-freemius.php:
|
318 |
msgid "Add-Ons"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/class-freemius.php:
|
322 |
msgctxt "ASCII arrow left icon"
|
323 |
msgid "←"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes/class-freemius.php:
|
327 |
msgctxt "ASCII arrow right icon"
|
328 |
msgid "➤"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/class-freemius.php:
|
332 |
msgctxt "noun"
|
333 |
msgid "Pricing"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/class-freemius.php:
|
337 |
msgid "Support Forum"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: includes/class-freemius.php:
|
341 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/class-freemius.php:
|
345 |
msgctxt "a positive response"
|
346 |
msgid "Right on"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: includes/class-freemius.php:
|
350 |
msgid "Your %s Add-on plan was successfully upgraded."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/class-freemius.php:
|
354 |
msgid "%s Add-on was successfully purchased."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/class-freemius.php:
|
358 |
msgid "Download the latest version"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: includes/class-freemius.php:
|
362 |
msgctxt "%1s - plugin title, %2s - API domain"
|
363 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/class-freemius.php:
|
367 |
msgid "Error received from the server:"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/class-freemius.php:
|
371 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/class-freemius.php:
|
375 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
376 |
msgid "Hmm"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/class-freemius.php:
|
380 |
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."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/class-freemius.php:
|
384 |
msgctxt "trial period"
|
385 |
msgid "Trial"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: includes/class-freemius.php:
|
389 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: includes/class-freemius.php:
|
393 |
msgid "Please contact us here"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: includes/class-freemius.php:
|
397 |
msgid "Your plan was successfully upgraded."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: includes/class-freemius.php:
|
401 |
msgid "Your plan was successfully changed to %s."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: includes/class-freemius.php:
|
405 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: includes/class-freemius.php:
|
409 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
410 |
msgstr ""
|
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 ""
|
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 ""
|
419 |
|
420 |
-
#: includes/class-freemius.php:
|
421 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: includes/class-freemius.php:
|
425 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/class-freemius.php:
|
429 |
msgid "It looks like the license could not be activated."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/class-freemius.php:
|
433 |
msgid "Your license was successfully activated."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/class-freemius.php:
|
437 |
msgid "It looks like your site currently doesn't have an active license."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/class-freemius.php:
|
441 |
msgid "It looks like the license deactivation failed."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/class-freemius.php:
|
445 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/class-freemius.php:
|
449 |
msgid "O.K"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/class-freemius.php:
|
453 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/class-freemius.php:
|
457 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/class-freemius.php:
|
461 |
msgid "You are already running the %s in a trial mode."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/class-freemius.php:
|
465 |
msgid "You already utilized a trial before."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/class-freemius.php:
|
469 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/class-freemius.php:
|
473 |
msgid "Plan %s does not support a trial period."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: includes/class-freemius.php:
|
477 |
msgid "None of the %s's plans supports a trial period."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: includes/class-freemius.php:
|
481 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
482 |
msgstr ""
|
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 ""
|
487 |
|
488 |
-
#: includes/class-freemius.php:
|
489 |
msgid "Your %s free trial was successfully cancelled."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: includes/class-freemius.php:
|
493 |
msgid "Version %s was released."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/class-freemius.php:
|
497 |
msgid "Please download %s."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/class-freemius.php:
|
501 |
msgid "the latest %s version here"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: includes/class-freemius.php:
|
505 |
msgid "New"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: includes/class-freemius.php:
|
509 |
msgid "Seems like you got the latest release."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/class-freemius.php:
|
513 |
msgid "You are all good!"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/class-freemius.php:
|
517 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/class-freemius.php:
|
521 |
msgid "Site successfully opted in."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/class-freemius.php:
|
525 |
msgid "Awesome"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: includes/class-freemius.php:
|
529 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/class-freemius.php:
|
533 |
msgid "Thank you!"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/class-freemius.php:
|
537 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: includes/class-freemius.php:
|
541 |
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."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: includes/class-freemius.php:
|
545 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/class-freemius.php:
|
549 |
msgid "%s is the new owner of the account."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/class-freemius.php:
|
553 |
msgctxt "as congratulations"
|
554 |
msgid "Congrats"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/class-freemius.php:
|
558 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/class-freemius.php:
|
562 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/class-freemius.php:
|
566 |
msgid "Change Ownership"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/class-freemius.php:
|
570 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/class-freemius.php:
|
574 |
msgid "Please provide your full name."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/class-freemius.php:
|
578 |
msgid "Your name was successfully updated."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/class-freemius.php:
|
582 |
msgid "You have successfully updated your %s."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/class-freemius.php:
|
586 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/class-freemius.php:
|
590 |
msgctxt "advance notice of something that will need attention."
|
591 |
msgid "Heads up"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: includes/class-freemius.php:
|
595 |
msgctxt "exclamation"
|
596 |
msgid "Hey"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/class-freemius.php:
|
600 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: includes/class-freemius.php:
|
604 |
msgid "No commitment for %s days - cancel anytime!"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/class-freemius.php:
|
608 |
msgid "No credit card required"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: includes/class-freemius.php:
|
612 |
msgctxt "call to action"
|
613 |
msgid "Start free trial"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: includes/class-freemius.php:
|
617 |
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!"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: includes/class-freemius.php:
|
621 |
msgid "Learn more"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/class-freemius.php:
|
625 |
msgid "Activate License"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: includes/class-freemius.php:
|
629 |
msgid "Change License"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: includes/class-freemius.php:
|
633 |
msgid "Opt Out"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: includes/class-freemius.php:
|
637 |
msgid "Opt In"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: includes/class-freemius.php:
|
641 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: includes/class-freemius.php:
|
645 |
msgid "Activate %s features"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: includes/class-freemius.php:
|
649 |
msgid "Please follow these steps to complete the upgrade"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: includes/class-freemius.php:
|
653 |
msgid "Download the latest %s version"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: includes/class-freemius.php:
|
657 |
msgid "Upload and activate the downloaded version"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: includes/class-freemius.php:
|
661 |
msgid "How to upload and activate?"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: includes/class-freemius.php:
|
665 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: includes/class-freemius.php:
|
669 |
msgid "Auto installation only works for opted-in users."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: includes/class-freemius.php:
|
673 |
msgid "Invalid module ID."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: includes/class-freemius.php:
|
677 |
msgid "Premium version already active."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/class-freemius.php:
|
681 |
msgid "You do not have a valid license to access the premium version."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/class-freemius.php:
|
685 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: includes/class-freemius.php:
|
689 |
msgid "Premium add-on version already installed."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: includes/class-freemius.php:
|
693 |
msgid "View paid features"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: includes/class-freemius.php:
|
697 |
msgid "Thank you so much for using %s and its add-ons!"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/class-freemius.php:
|
701 |
msgid "Thank you so much for using %s!"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: includes/class-freemius.php:
|
705 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: includes/class-freemius.php:
|
709 |
msgid "Thank you so much for using our products!"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: includes/class-freemius.php:
|
713 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: includes/class-freemius.php:
|
717 |
msgid "%s and its add-ons"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/class-freemius.php:
|
721 |
msgid "Products"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: includes/class-freemius.php:
|
725 |
msgid "Yes"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: includes/class-freemius.php:
|
729 |
msgid "send me security & feature updates, educational content and offers."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: includes/class-freemius.php:
|
733 |
msgid "No"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: includes/class-freemius.php:
|
737 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: includes/class-freemius.php:
|
741 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/class-freemius.php:
|
745 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/class-freemius.php:
|
749 |
msgid "License key is empty."
|
750 |
msgstr ""
|
751 |
|
@@ -765,19 +765,19 @@ msgstr ""
|
|
765 |
msgid "new version"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: includes/class-fs-plugin-updater.php:
|
769 |
msgid "Important Upgrade Notice:"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/class-fs-plugin-updater.php:
|
773 |
msgid "Installing plugin: %s"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: includes/class-fs-plugin-updater.php:
|
777 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: includes/class-fs-plugin-updater.php:
|
781 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
782 |
msgstr ""
|
783 |
|
1 |
+
# Copyright (C) 2019 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
+
#: includes/class-freemius.php:1688
|
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:1690
|
24 |
msgid "Error"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/class-freemius.php:2011
|
28 |
msgid "I found a better %s"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/class-freemius.php:2013
|
32 |
msgid "What's the %s's name?"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: includes/class-freemius.php:2019
|
36 |
msgid "It's a temporary %s. I'm just debugging an issue."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/class-freemius.php:2021
|
40 |
msgid "Deactivation"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/class-freemius.php:2022
|
44 |
msgid "Theme Switch"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: includes/class-freemius.php:2031, templates/forms/resend-key.php:24
|
48 |
msgid "Other"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/class-freemius.php:2039
|
52 |
msgid "I no longer need the %s"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: includes/class-freemius.php:2046
|
56 |
msgid "I only needed the %s for a short period"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: includes/class-freemius.php:2052
|
60 |
msgid "The %s broke my site"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: includes/class-freemius.php:2059
|
64 |
msgid "The %s suddenly stopped working"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: includes/class-freemius.php:2069
|
68 |
msgid "I can't pay for it anymore"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: includes/class-freemius.php:2071
|
72 |
msgid "What price would you feel comfortable paying?"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/class-freemius.php:2077
|
76 |
msgid "I don't like to share my information with you"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: includes/class-freemius.php:2098
|
80 |
msgid "The %s didn't work"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: includes/class-freemius.php:2108
|
84 |
msgid "I couldn't understand how to make it work"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/class-freemius.php:2116
|
88 |
msgid "The %s is great, but I need specific feature that you don't support"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: includes/class-freemius.php:2118
|
92 |
msgid "What feature?"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: includes/class-freemius.php:2122
|
96 |
msgid "The %s is not working"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: includes/class-freemius.php:2124
|
100 |
msgid "Kindly share what didn't work so we can fix it for future users..."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/class-freemius.php:2128
|
104 |
msgid "It's not what I was looking for"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: includes/class-freemius.php:2130
|
108 |
msgid "What you've been looking for?"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-freemius.php:2134
|
112 |
msgid "The %s didn't work as expected"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: includes/class-freemius.php:2136
|
116 |
msgid "What did you expect?"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: includes/class-freemius.php:2947, templates/debug.php:20
|
120 |
msgid "Freemius Debug"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/class-freemius.php:3675
|
124 |
msgid "I don't know what is cURL or how to install it, help me!"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/class-freemius.php:3677
|
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:3684
|
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:3789
|
136 |
msgid "Yes - do your thing"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/class-freemius.php:3794
|
140 |
msgid "No - just deactivate"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-freemius.php:3839, includes/class-freemius.php:4348, includes/class-freemius.php:5447, includes/class-freemius.php:11555, includes/class-freemius.php:14926, includes/class-freemius.php:14978, includes/class-freemius.php:15040, includes/class-freemius.php:17273, includes/class-freemius.php:17283, includes/class-freemius.php:17892, includes/class-freemius.php:18752, includes/class-freemius.php:18867, includes/class-freemius.php:19011, templates/add-ons.php:43
|
144 |
msgctxt "exclamation"
|
145 |
msgid "Oops"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-freemius.php:3908
|
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:4345
|
153 |
msgctxt "addonX cannot run without pluginY"
|
154 |
msgid "%s cannot run without %s."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/class-freemius.php:4346
|
158 |
msgctxt "addonX cannot run..."
|
159 |
msgid "%s cannot run without the plugin."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/class-freemius.php:4492, includes/class-freemius.php:4517, includes/class-freemius.php:17963
|
163 |
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/class-freemius.php:5135
|
167 |
msgid "Premium %s version was successfully activated."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/class-freemius.php:5147, includes/class-freemius.php:7009
|
171 |
msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
|
172 |
msgid "W00t"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/class-freemius.php:5162
|
176 |
msgid "You have a %s license."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/class-freemius.php:5166, includes/class-freemius.php:14347, includes/class-freemius.php:14358, includes/class-freemius.php:17187, includes/class-freemius.php:17501, includes/class-freemius.php:17567, includes/class-freemius.php:17717
|
180 |
msgctxt "interjection expressing joy or exuberance"
|
181 |
msgid "Yee-haw"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/class-freemius.php:5430
|
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:5434
|
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:5443, templates/add-ons.php:103, templates/account/partials/addon.php:288
|
193 |
msgid "More information about %s"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/class-freemius.php:5444
|
197 |
msgid "Purchase License"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/class-freemius.php:6377, templates/connect.php:163
|
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:6381
|
205 |
msgid "start the trial"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/class-freemius.php:6382, templates/connect.php:167
|
209 |
msgid "complete the install"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/class-freemius.php:6495
|
213 |
msgid "You are just one step away - %s"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-freemius.php:6498
|
217 |
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
218 |
msgid "Complete \"%s\" Activation Now"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/class-freemius.php:6576
|
222 |
msgid "We made a few tweaks to the %s, %s"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: includes/class-freemius.php:6580
|
226 |
msgid "Opt in to make \"%s\" better!"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/class-freemius.php:7008
|
230 |
msgid "The upgrade of %s was successfully completed."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-freemius.php:8935, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32
|
234 |
msgid "Add-On"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/class-freemius.php:8937, templates/debug.php:359, templates/debug.php:520
|
238 |
msgid "Plugin"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/class-freemius.php:8938, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67
|
242 |
msgid "Theme"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/class-freemius.php:11422
|
246 |
msgid "Invalid site details collection."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/class-freemius.php:11542
|
250 |
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/class-freemius.php:11544
|
254 |
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/class-freemius.php:11818
|
258 |
msgid "Account is pending activation."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/class-freemius.php:11930, templates/forms/premium-versions-upgrade-handler.php:47
|
262 |
msgid "Buy a license now"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/class-freemius.php:11942, templates/forms/premium-versions-upgrade-handler.php:46
|
266 |
msgid "Renew your license now"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/class-freemius.php:11946
|
270 |
msgid "%s to access version %s security & feature updates, and support."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/class-freemius.php:14329
|
274 |
msgid "%s activation was successfully completed."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/class-freemius.php:14343
|
278 |
msgid "Your account was successfully activated with the %s plan."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-freemius.php:14354, includes/class-freemius.php:17563
|
282 |
msgid "Your trial has been successfully started."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-freemius.php:14924, includes/class-freemius.php:14976, includes/class-freemius.php:15038
|
286 |
msgid "Couldn't activate %s."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/class-freemius.php:14925, includes/class-freemius.php:14977, includes/class-freemius.php:15039
|
290 |
msgid "Please contact us with the following message:"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-freemius.php:15388, includes/class-freemius.php:19849
|
294 |
msgid "Upgrade"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-freemius.php:15394
|
298 |
msgid "Start Trial"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-freemius.php:15396
|
302 |
msgid "Pricing"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-freemius.php:15458, includes/class-freemius.php:15460
|
306 |
msgid "Affiliation"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/class-freemius.php:15488, includes/class-freemius.php:15490, templates/account.php:150, templates/debug.php:324
|
310 |
msgid "Account"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/class-freemius.php:15503, includes/class-freemius.php:15505, includes/customizer/class-fs-customizer-support-section.php:60
|
314 |
msgid "Contact Us"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/class-freemius.php:15515, includes/class-freemius.php:15517, includes/class-freemius.php:19859, templates/account.php:100, templates/account/partials/addon.php:41
|
318 |
msgid "Add-Ons"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/class-freemius.php:15551
|
322 |
msgctxt "ASCII arrow left icon"
|
323 |
msgid "←"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/class-freemius.php:15551
|
327 |
msgctxt "ASCII arrow right icon"
|
328 |
msgid "➤"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/class-freemius.php:15553, templates/pricing.php:97
|
332 |
msgctxt "noun"
|
333 |
msgid "Pricing"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/class-freemius.php:15766, includes/customizer/class-fs-customizer-support-section.php:67
|
337 |
msgid "Support Forum"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: includes/class-freemius.php:16552
|
341 |
msgid "Your email has been successfully verified - you are AWESOME!"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/class-freemius.php:16553
|
345 |
msgctxt "a positive response"
|
346 |
msgid "Right on"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/class-freemius.php:17178
|
350 |
msgid "Your %s Add-on plan was successfully upgraded."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/class-freemius.php:17180
|
354 |
msgid "%s Add-on was successfully purchased."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/class-freemius.php:17183
|
358 |
msgid "Download the latest version"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/class-freemius.php:17269
|
362 |
msgctxt "%1s - plugin title, %2s - API domain"
|
363 |
msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/class-freemius.php:17272, includes/class-freemius.php:17688, includes/class-freemius.php:17765
|
367 |
msgid "Error received from the server:"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/class-freemius.php:17282
|
371 |
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/class-freemius.php:17464, includes/class-freemius.php:17693, includes/class-freemius.php:17736, includes/class-freemius.php:17839
|
375 |
msgctxt "something somebody says when they are thinking about what you have just said."
|
376 |
msgid "Hmm"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/class-freemius.php:17477
|
380 |
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."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: includes/class-freemius.php:17478, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43
|
384 |
msgctxt "trial period"
|
385 |
msgid "Trial"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: includes/class-freemius.php:17483
|
389 |
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/class-freemius.php:17487, includes/class-freemius.php:17545
|
393 |
msgid "Please contact us here"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/class-freemius.php:17497
|
397 |
msgid "Your plan was successfully upgraded."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/class-freemius.php:17515
|
401 |
msgid "Your plan was successfully changed to %s."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/class-freemius.php:17531
|
405 |
msgid "Your license has expired. You can still continue using the free %s forever."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/class-freemius.php:17533
|
409 |
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/class-freemius.php:17541
|
413 |
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/class-freemius.php:17554
|
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 ""
|
419 |
|
420 |
+
#: includes/class-freemius.php:17577
|
421 |
msgid "Your free trial has expired. You can still continue using all our free features."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/class-freemius.php:17579
|
425 |
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/class-freemius.php:17684
|
429 |
msgid "It looks like the license could not be activated."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/class-freemius.php:17714
|
433 |
msgid "Your license was successfully activated."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/class-freemius.php:17740
|
437 |
msgid "It looks like your site currently doesn't have an active license."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/class-freemius.php:17764
|
441 |
msgid "It looks like the license deactivation failed."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/class-freemius.php:17792
|
445 |
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/class-freemius.php:17793
|
449 |
msgid "O.K"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/class-freemius.php:17846
|
453 |
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/class-freemius.php:17855
|
457 |
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/class-freemius.php:17897
|
461 |
msgid "You are already running the %s in a trial mode."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/class-freemius.php:17908
|
465 |
msgid "You already utilized a trial before."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/class-freemius.php:17922
|
469 |
msgid "Plan %s do not exist, therefore, can't start a trial."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/class-freemius.php:17933
|
473 |
msgid "Plan %s does not support a trial period."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/class-freemius.php:17944
|
477 |
msgid "None of the %s's plans supports a trial period."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/class-freemius.php:17994
|
481 |
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/class-freemius.php:18030
|
485 |
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/class-freemius.php:18049
|
489 |
msgid "Your %s free trial was successfully cancelled."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/class-freemius.php:18356
|
493 |
msgid "Version %s was released."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/class-freemius.php:18356
|
497 |
msgid "Please download %s."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/class-freemius.php:18363
|
501 |
msgid "the latest %s version here"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/class-freemius.php:18368
|
505 |
msgid "New"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/class-freemius.php:18373
|
509 |
msgid "Seems like you got the latest release."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/class-freemius.php:18374
|
513 |
msgid "You are all good!"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/class-freemius.php:18642
|
517 |
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/class-freemius.php:18779
|
521 |
msgid "Site successfully opted in."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/class-freemius.php:18780, includes/class-freemius.php:19591
|
525 |
msgid "Awesome"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/class-freemius.php:18796, templates/forms/optout.php:32
|
529 |
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/class-freemius.php:18797
|
533 |
msgid "Thank you!"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/class-freemius.php:18804
|
537 |
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/class-freemius.php:18933
|
541 |
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."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/class-freemius.php:18939
|
545 |
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/class-freemius.php:18944
|
549 |
msgid "%s is the new owner of the account."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/class-freemius.php:18946
|
553 |
msgctxt "as congratulations"
|
554 |
msgid "Congrats"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/class-freemius.php:18966
|
558 |
msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: includes/class-freemius.php:18967
|
562 |
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: includes/class-freemius.php:18974
|
566 |
msgid "Change Ownership"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/class-freemius.php:18982
|
570 |
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/class-freemius.php:18994
|
574 |
msgid "Please provide your full name."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/class-freemius.php:18999
|
578 |
msgid "Your name was successfully updated."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/class-freemius.php:19060
|
582 |
msgid "You have successfully updated your %s."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/class-freemius.php:19200
|
586 |
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/class-freemius.php:19201
|
590 |
msgctxt "advance notice of something that will need attention."
|
591 |
msgid "Heads up"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/class-freemius.php:19631
|
595 |
msgctxt "exclamation"
|
596 |
msgid "Hey"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/class-freemius.php:19631
|
600 |
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: includes/class-freemius.php:19639
|
604 |
msgid "No commitment for %s days - cancel anytime!"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/class-freemius.php:19640
|
608 |
msgid "No credit card required"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: includes/class-freemius.php:19647, templates/forms/trial-start.php:53
|
612 |
msgctxt "call to action"
|
613 |
msgid "Start free trial"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/class-freemius.php:19724
|
617 |
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!"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/class-freemius.php:19733
|
621 |
msgid "Learn more"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/class-freemius.php:19883, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235
|
625 |
msgid "Activate License"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/class-freemius.php:19884, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256
|
629 |
msgid "Change License"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/class-freemius.php:19966, templates/account/partials/site.php:161
|
633 |
msgid "Opt Out"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/class-freemius.php:19968, includes/class-freemius.php:19973, templates/account/partials/site.php:43, templates/account/partials/site.php:161
|
637 |
msgid "Opt In"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/class-freemius.php:20197
|
641 |
msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/class-freemius.php:20205
|
645 |
msgid "Activate %s features"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/class-freemius.php:20218
|
649 |
msgid "Please follow these steps to complete the upgrade"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: includes/class-freemius.php:20222
|
653 |
msgid "Download the latest %s version"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: includes/class-freemius.php:20226
|
657 |
msgid "Upload and activate the downloaded version"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/class-freemius.php:20228
|
661 |
msgid "How to upload and activate?"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/class-freemius.php:20362
|
665 |
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/class-freemius.php:20523
|
669 |
msgid "Auto installation only works for opted-in users."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: includes/class-freemius.php:20533, includes/class-freemius.php:20566, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074
|
673 |
msgid "Invalid module ID."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/class-freemius.php:20542, includes/class-fs-plugin-updater.php:1096
|
677 |
msgid "Premium version already active."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/class-freemius.php:20549
|
681 |
msgid "You do not have a valid license to access the premium version."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/class-freemius.php:20556
|
685 |
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/class-freemius.php:20574, includes/class-fs-plugin-updater.php:1095
|
689 |
msgid "Premium add-on version already installed."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: includes/class-freemius.php:20919
|
693 |
msgid "View paid features"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/class-freemius.php:21239
|
697 |
msgid "Thank you so much for using %s and its add-ons!"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/class-freemius.php:21240
|
701 |
msgid "Thank you so much for using %s!"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/class-freemius.php:21246
|
705 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/class-freemius.php:21250
|
709 |
msgid "Thank you so much for using our products!"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/class-freemius.php:21251
|
713 |
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/class-freemius.php:21270
|
717 |
msgid "%s and its add-ons"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/class-freemius.php:21279
|
721 |
msgid "Products"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: includes/class-freemius.php:21286, templates/connect.php:272
|
725 |
msgid "Yes"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/class-freemius.php:21287, templates/connect.php:273
|
729 |
msgid "send me security & feature updates, educational content and offers."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/class-freemius.php:21288, templates/connect.php:278
|
733 |
msgid "No"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/class-freemius.php:21290, templates/connect.php:280
|
737 |
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/class-freemius.php:21300
|
741 |
msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/class-freemius.php:21302, templates/connect.php:287
|
745 |
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/class-freemius.php:21584
|
749 |
msgid "License key is empty."
|
750 |
msgstr ""
|
751 |
|
765 |
msgid "new version"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/class-fs-plugin-updater.php:305
|
769 |
msgid "Important Upgrade Notice:"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/class-fs-plugin-updater.php:1125
|
773 |
msgid "Installing plugin: %s"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/class-fs-plugin-updater.php:1166
|
777 |
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/class-fs-plugin-updater.php:1348
|
781 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
782 |
msgstr ""
|
783 |
|
freemius/start.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
-
$this_sdk_version = '2.2.
|
19 |
|
20 |
#region SDK Selection Logic --------------------------------------------------------------------
|
21 |
|
@@ -44,9 +44,16 @@
|
|
44 |
* @author Vova Feldman (@svovaf)
|
45 |
* @since 1.2.2.6
|
46 |
*/
|
47 |
-
$file_path
|
48 |
-
$fs_root_path
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
$themes_directory_name = basename( $themes_directory );
|
51 |
$theme_candidate_basename = basename( dirname( $fs_root_path ) ) . '/' . basename( $fs_root_path );
|
52 |
|
@@ -100,7 +107,7 @@
|
|
100 |
*/
|
101 |
$has_changes = false;
|
102 |
foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
|
103 |
-
|
104 |
unset( $fs_active_plugins->plugins[ $sdk_path ] );
|
105 |
$has_changes = true;
|
106 |
}
|
@@ -209,7 +216,7 @@
|
|
209 |
$sdk_starter_path = fs_normalize_path( WP_PLUGIN_DIR . '/' . $this_sdk_relative_path . '/start.php' );
|
210 |
} else {
|
211 |
$sdk_starter_path = fs_normalize_path(
|
212 |
-
|
213 |
. '/'
|
214 |
. str_replace( "../{$themes_directory_name}/", '', $this_sdk_relative_path )
|
215 |
. '/start.php' );
|
@@ -271,7 +278,7 @@
|
|
271 |
|
272 |
$plugins_or_theme_dir_path = ( ! isset( $newest_sdk->type ) || 'theme' !== $newest_sdk->type ) ?
|
273 |
WP_PLUGIN_DIR :
|
274 |
-
|
275 |
|
276 |
$newest_sdk_starter = fs_normalize_path(
|
277 |
$plugins_or_theme_dir_path
|
@@ -379,7 +386,7 @@
|
|
379 |
}
|
380 |
|
381 |
$plugins_or_theme_dir_path = fs_normalize_path( trailingslashit( $is_theme ?
|
382 |
-
|
383 |
WP_PLUGIN_DIR ) );
|
384 |
|
385 |
if ( 0 === strpos( $file_path, $plugins_or_theme_dir_path ) ) {
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
$this_sdk_version = '2.2.4';
|
19 |
|
20 |
#region SDK Selection Logic --------------------------------------------------------------------
|
21 |
|
44 |
* @author Vova Feldman (@svovaf)
|
45 |
* @since 1.2.2.6
|
46 |
*/
|
47 |
+
$file_path = fs_normalize_path( __FILE__ );
|
48 |
+
$fs_root_path = dirname( $file_path );
|
49 |
+
/**
|
50 |
+
* Get the themes directory where the active theme is located (not passing the stylesheet will make WordPress
|
51 |
+
* assume that the themes directory is inside `wp-content`.
|
52 |
+
*
|
53 |
+
* @author Leo Fajardo (@leorw)
|
54 |
+
* @since 2.2.3
|
55 |
+
*/
|
56 |
+
$themes_directory = get_theme_root( get_stylesheet() );
|
57 |
$themes_directory_name = basename( $themes_directory );
|
58 |
$theme_candidate_basename = basename( dirname( $fs_root_path ) ) . '/' . basename( $fs_root_path );
|
59 |
|
107 |
*/
|
108 |
$has_changes = false;
|
109 |
foreach ( $fs_active_plugins->plugins as $sdk_path => $data ) {
|
110 |
+
if ( ! file_exists( ( isset( $data->type ) && 'theme' === $data->type ? $themes_directory : WP_PLUGIN_DIR ) . '/' . $sdk_path ) ) {
|
111 |
unset( $fs_active_plugins->plugins[ $sdk_path ] );
|
112 |
$has_changes = true;
|
113 |
}
|
216 |
$sdk_starter_path = fs_normalize_path( WP_PLUGIN_DIR . '/' . $this_sdk_relative_path . '/start.php' );
|
217 |
} else {
|
218 |
$sdk_starter_path = fs_normalize_path(
|
219 |
+
$themes_directory
|
220 |
. '/'
|
221 |
. str_replace( "../{$themes_directory_name}/", '', $this_sdk_relative_path )
|
222 |
. '/start.php' );
|
278 |
|
279 |
$plugins_or_theme_dir_path = ( ! isset( $newest_sdk->type ) || 'theme' !== $newest_sdk->type ) ?
|
280 |
WP_PLUGIN_DIR :
|
281 |
+
$themes_directory;
|
282 |
|
283 |
$newest_sdk_starter = fs_normalize_path(
|
284 |
$plugins_or_theme_dir_path
|
386 |
}
|
387 |
|
388 |
$plugins_or_theme_dir_path = fs_normalize_path( trailingslashit( $is_theme ?
|
389 |
+
$themes_directory :
|
390 |
WP_PLUGIN_DIR ) );
|
391 |
|
392 |
if ( 0 === strpos( $file_path, $plugins_or_theme_dir_path ) ) {
|
freemius/templates/account/partials/addon.php
CHANGED
@@ -283,7 +283,7 @@
|
|
283 |
|
284 |
if ( $show_upgrade ) {
|
285 |
$buttons[] = sprintf( '<a href="%s" class="thickbox button button-small button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
|
286 |
-
esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
|
287 |
'&TB_iframe=true&width=600&height=550' ) ),
|
288 |
esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
|
289 |
esc_attr( $addon->title ),
|
283 |
|
284 |
if ( $show_upgrade ) {
|
285 |
$buttons[] = sprintf( '<a href="%s" class="thickbox button button-small button-primary" aria-label="%s" data-title="%s"><i class="dashicons dashicons-cart"></i> %s</a>',
|
286 |
+
esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
|
287 |
'&TB_iframe=true&width=600&height=550' ) ),
|
288 |
esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
|
289 |
esc_attr( $addon->title ),
|
freemius/templates/add-ons.php
CHANGED
@@ -98,7 +98,7 @@
|
|
98 |
<li class="fs-card fs-addon" data-slug="<?php echo $addon->slug ?>">
|
99 |
<?php
|
100 |
echo sprintf( '<a href="%s" class="thickbox fs-overlay" aria-label="%s" data-title="%s"></a>',
|
101 |
-
esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
|
102 |
'&TB_iframe=true&width=600&height=550' ) ),
|
103 |
esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
|
104 |
esc_attr( $addon->title )
|
98 |
<li class="fs-card fs-addon" data-slug="<?php echo $addon->slug ?>">
|
99 |
<?php
|
100 |
echo sprintf( '<a href="%s" class="thickbox fs-overlay" aria-label="%s" data-title="%s"></a>',
|
101 |
+
esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug .
|
102 |
'&TB_iframe=true&width=600&height=550' ) ),
|
103 |
esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ),
|
104 |
esc_attr( $addon->title )
|
freemius/templates/admin-notice.php
CHANGED
@@ -11,8 +11,32 @@
|
|
11 |
}
|
12 |
|
13 |
$dismiss_text = fs_text_x_inline( 'Dismiss', 'as close a window', 'dismiss' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
?>
|
15 |
-
<div<?php if ( ! empty( $VARS['id'] ) ) : ?> data-id="<?php echo $VARS['id'] ?>"<?php endif ?><?php if ( ! empty( $VARS['manager_id'] ) ) : ?> data-manager-id="<?php echo $VARS['manager_id'] ?>"<?php endif ?>
|
16 |
class="<?php
|
17 |
switch ( $VARS['type'] ) {
|
18 |
case 'error':
|
@@ -33,6 +57,10 @@
|
|
33 |
echo ' fs-sticky';
|
34 |
} ?><?php if ( ! empty( $VARS['plugin'] ) ) {
|
35 |
echo ' fs-has-title';
|
|
|
|
|
|
|
|
|
36 |
} ?>"><?php if ( ! empty( $VARS['plugin'] ) ) : ?>
|
37 |
<label class="fs-plugin-title"><?php echo $VARS['plugin'] ?></label>
|
38 |
<?php endif ?>
|
11 |
}
|
12 |
|
13 |
$dismiss_text = fs_text_x_inline( 'Dismiss', 'as close a window', 'dismiss' );
|
14 |
+
|
15 |
+
$slug = '';
|
16 |
+
$type = '';
|
17 |
+
|
18 |
+
if ( ! empty( $VARS['manager_id'] ) ) {
|
19 |
+
/**
|
20 |
+
* @var array $VARS
|
21 |
+
*/
|
22 |
+
$slug = $VARS['manager_id'];
|
23 |
+
|
24 |
+
$type = WP_FS__MODULE_TYPE_PLUGIN;
|
25 |
+
|
26 |
+
if ( false !== strpos( $slug, ':' ) ) {
|
27 |
+
$parts = explode( ':', $slug );
|
28 |
+
|
29 |
+
$slug = $parts[0];
|
30 |
+
|
31 |
+
$parts_count = count( $parts );
|
32 |
+
|
33 |
+
if ( 1 < $parts_count && WP_FS__MODULE_TYPE_THEME == $parts[1] ) {
|
34 |
+
$type = $parts[1];
|
35 |
+
}
|
36 |
+
}
|
37 |
+
}
|
38 |
?>
|
39 |
+
<div<?php if ( ! empty( $VARS['id'] ) ) : ?> data-id="<?php echo $VARS['id'] ?>"<?php endif ?><?php if ( ! empty( $VARS['manager_id'] ) ) : ?> data-manager-id="<?php echo $VARS['manager_id'] ?>"<?php endif ?><?php if ( ! empty( $slug ) ) : ?> data-slug="<?php echo $slug ?>"<?php endif ?><?php if ( ! empty( $type ) ) : ?> data-type="<?php echo $type ?>"<?php endif ?>
|
40 |
class="<?php
|
41 |
switch ( $VARS['type'] ) {
|
42 |
case 'error':
|
57 |
echo ' fs-sticky';
|
58 |
} ?><?php if ( ! empty( $VARS['plugin'] ) ) {
|
59 |
echo ' fs-has-title';
|
60 |
+
} ?><?php if ( ! empty( $slug ) ) {
|
61 |
+
echo " fs-slug-{$slug}";
|
62 |
+
} ?><?php if ( ! empty( $type ) ) {
|
63 |
+
echo " fs-type-{$type}";
|
64 |
} ?>"><?php if ( ! empty( $VARS['plugin'] ) ) : ?>
|
65 |
<label class="fs-plugin-title"><?php echo $VARS['plugin'] ?></label>
|
66 |
<?php endif ?>
|
freemius/templates/all-admin-notice.php
DELETED
@@ -1,39 +0,0 @@
|
|
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 |
-
/**
|
14 |
-
* @var array $VARS
|
15 |
-
*/
|
16 |
-
?>
|
17 |
-
<div class="<?php
|
18 |
-
switch ($VARS['type']) {
|
19 |
-
case 'error':
|
20 |
-
echo 'error form-invalid';
|
21 |
-
break;
|
22 |
-
case 'update-nag':
|
23 |
-
echo 'update-nag ';
|
24 |
-
break;
|
25 |
-
case 'update':
|
26 |
-
case 'success':
|
27 |
-
default:
|
28 |
-
echo 'updated success';
|
29 |
-
break;
|
30 |
-
}
|
31 |
-
?> fs-notice">
|
32 |
-
<?php if ('update-nag' !== $VARS['type']) : ?><p><?php endif ?>
|
33 |
-
<?php if (!empty($VARS['title'])) : ?>
|
34 |
-
<b><?php echo $VARS['title'] ?></b>
|
35 |
-
<?php endif ?>
|
36 |
-
<?php echo $VARS['message'] ?>
|
37 |
-
<?php if ('update-nag' !== $VARS['type']) : ?></p><?php endif ?>
|
38 |
-
<?php if ($VARS['sticky']) : ?><i class="dashicons dashicons-no"></i><?php endif ?>
|
39 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freemius/templates/checkout-legacy.php
DELETED
@@ -1,242 +0,0 @@
|
|
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 |
-
wp_enqueue_script( 'jquery' );
|
14 |
-
wp_enqueue_script( 'json2' );
|
15 |
-
fs_enqueue_local_script( 'postmessage', 'nojquery.ba-postmessage.min.js' );
|
16 |
-
fs_enqueue_local_script( 'fs-postmessage', 'postmessage.js' );
|
17 |
-
fs_enqueue_local_style( 'fs_common', '/admin/common.css' );
|
18 |
-
|
19 |
-
/**
|
20 |
-
* @var array $VARS
|
21 |
-
*/
|
22 |
-
$slug = $VARS['slug'];
|
23 |
-
$fs = freemius( $slug );
|
24 |
-
|
25 |
-
$timestamp = time();
|
26 |
-
|
27 |
-
$context_params = array(
|
28 |
-
'plugin_id' => $fs->get_id(),
|
29 |
-
'plugin_public_key' => $fs->get_public_key(),
|
30 |
-
'plugin_version' => $fs->get_plugin_version(),
|
31 |
-
);
|
32 |
-
|
33 |
-
// Get site context secure params.
|
34 |
-
if ( $fs->is_registered() ) {
|
35 |
-
$site = $fs->get_site();
|
36 |
-
$plugin_id = fs_request_get( 'plugin_id', $fs->get_id() );
|
37 |
-
|
38 |
-
if ( $plugin_id != $fs->get_id() ) {
|
39 |
-
if ( $fs->is_addon_activated( $plugin_id ) ) {
|
40 |
-
$fs_addon = Freemius::get_instance_by_id( $plugin_id );
|
41 |
-
$site = $fs_addon->get_site();
|
42 |
-
}
|
43 |
-
}
|
44 |
-
|
45 |
-
$context_params = array_merge( $context_params, FS_Security::instance()->get_context_params(
|
46 |
-
$site,
|
47 |
-
$timestamp,
|
48 |
-
'checkout'
|
49 |
-
) );
|
50 |
-
} else {
|
51 |
-
$current_user = Freemius::_get_current_wp_user();
|
52 |
-
|
53 |
-
// Add site and user info to the request, this information
|
54 |
-
// is NOT being stored unless the user complete the purchase
|
55 |
-
// and agrees to the TOS.
|
56 |
-
$context_params = array_merge( $context_params, array(
|
57 |
-
'user_firstname' => $current_user->user_firstname,
|
58 |
-
'user_lastname' => $current_user->user_lastname,
|
59 |
-
'user_email' => $current_user->user_email,
|
60 |
-
'home_url' => home_url(),
|
61 |
-
) );
|
62 |
-
|
63 |
-
$fs_user = Freemius::_get_user_by_email( $current_user->user_email );
|
64 |
-
|
65 |
-
if ( is_object( $fs_user ) ) {
|
66 |
-
$context_params = array_merge( $context_params, FS_Security::instance()->get_context_params(
|
67 |
-
$fs_user,
|
68 |
-
$timestamp,
|
69 |
-
'checkout'
|
70 |
-
) );
|
71 |
-
}
|
72 |
-
}
|
73 |
-
|
74 |
-
if ( $fs->is_payments_sandbox() ) {
|
75 |
-
// Append plugin secure token for sandbox mode authentication.
|
76 |
-
$context_params['sandbox'] = FS_Security::instance()->get_secure_token(
|
77 |
-
$fs->get_plugin(),
|
78 |
-
$timestamp,
|
79 |
-
'checkout'
|
80 |
-
);
|
81 |
-
|
82 |
-
/**
|
83 |
-
* @since 1.1.7.3 Add security timestamp for sandbox even for anonymous user.
|
84 |
-
*/
|
85 |
-
if ( empty( $context_params['s_ctx_ts'] ) ) {
|
86 |
-
$context_params['s_ctx_ts'] = $timestamp;
|
87 |
-
}
|
88 |
-
}
|
89 |
-
|
90 |
-
$return_url = $fs->_get_sync_license_url( isset( $_GET['plugin_id'] ) ? $_GET['plugin_id'] : $fs->get_id() );
|
91 |
-
|
92 |
-
$query_params = array_merge( $context_params, $_GET, array(
|
93 |
-
// Current plugin version.
|
94 |
-
'plugin_version' => $fs->get_plugin_version(),
|
95 |
-
'sdk_version' => WP_FS__SDK_VERSION,
|
96 |
-
'return_url' => $return_url,
|
97 |
-
// Admin CSS URL for style/design competability.
|
98 |
-
// 'wp_admin_css' => get_bloginfo('wpurl') . "/wp-admin/load-styles.php?c=1&load=buttons,wp-admin,dashicons",
|
99 |
-
) );
|
100 |
-
?>
|
101 |
-
<div id="fs_checkout" class="wrap" style="margin: 0 0 -65px -20px;">
|
102 |
-
<div id="iframe"></div>
|
103 |
-
<script type="text/javascript">
|
104 |
-
// http://stackoverflow.com/questions/4583703/jquery-post-request-not-ajax
|
105 |
-
jQuery(function ($) {
|
106 |
-
$.extend({
|
107 |
-
form: function (url, data, method) {
|
108 |
-
if (method == null) method = 'POST';
|
109 |
-
if (data == null) data = {};
|
110 |
-
|
111 |
-
var form = $('<form>').attr({
|
112 |
-
method: method,
|
113 |
-
action: url
|
114 |
-
}).css({
|
115 |
-
display: 'none'
|
116 |
-
});
|
117 |
-
|
118 |
-
var addData = function (name, data) {
|
119 |
-
if ($.isArray(data)) {
|
120 |
-
for (var i = 0; i < data.length; i++) {
|
121 |
-
var value = data[i];
|
122 |
-
addData(name + '[]', value);
|
123 |
-
}
|
124 |
-
} else if (typeof data === 'object') {
|
125 |
-
for (var key in data) {
|
126 |
-
if (data.hasOwnProperty(key)) {
|
127 |
-
addData(name + '[' + key + ']', data[key]);
|
128 |
-
}
|
129 |
-
}
|
130 |
-
} else if (data != null) {
|
131 |
-
form.append($('<input>').attr({
|
132 |
-
type : 'hidden',
|
133 |
-
name : String(name),
|
134 |
-
value: String(data)
|
135 |
-
}));
|
136 |
-
}
|
137 |
-
};
|
138 |
-
|
139 |
-
for (var key in data) {
|
140 |
-
if (data.hasOwnProperty(key)) {
|
141 |
-
addData(key, data[key]);
|
142 |
-
}
|
143 |
-
}
|
144 |
-
|
145 |
-
return form.appendTo('body');
|
146 |
-
}
|
147 |
-
});
|
148 |
-
});
|
149 |
-
|
150 |
-
(function ($) {
|
151 |
-
$(function () {
|
152 |
-
|
153 |
-
var
|
154 |
-
// Keep track of the iframe height.
|
155 |
-
iframe_height = 800,
|
156 |
-
base_url = '<?php echo WP_FS__ADDRESS ?>',
|
157 |
-
// Pass the parent page URL into the Iframe in a meaningful way (this URL could be
|
158 |
-
// passed via query string or hard coded into the child page, it depends on your needs).
|
159 |
-
src = base_url + '/checkout/?<?php echo ( isset( $_REQUEST['XDEBUG_SESSION'] ) ? 'XDEBUG_SESSION=' . $_REQUEST['XDEBUG_SESSION'] . '&' : '' ) . http_build_query( $query_params ) ?>#' + encodeURIComponent(document.location.href),
|
160 |
-
|
161 |
-
// Append the Iframe into the DOM.
|
162 |
-
iframe = $('<iframe " src="' + src + '" width="100%" height="' + iframe_height + 'px" scrolling="no" frameborder="0" style="background: transparent;"><\/iframe>')
|
163 |
-
.appendTo('#iframe');
|
164 |
-
|
165 |
-
FS.PostMessage.init(base_url, [iframe[0]]);
|
166 |
-
FS.PostMessage.receiveOnce('height', function (data) {
|
167 |
-
var h = data.height;
|
168 |
-
if (!isNaN(h) && h > 0 && h != iframe_height) {
|
169 |
-
iframe_height = h;
|
170 |
-
iframe.height(iframe_height + 'px');
|
171 |
-
|
172 |
-
FS.PostMessage.postScroll(iframe[0]);
|
173 |
-
}
|
174 |
-
});
|
175 |
-
|
176 |
-
FS.PostMessage.receiveOnce('install', function (data) {
|
177 |
-
// Post data to activation URL.
|
178 |
-
$.form('<?php echo fs_nonce_url( $fs->_get_admin_page_url( 'account', array(
|
179 |
-
'fs_action' => $slug . '_activate_new',
|
180 |
-
'plugin_id' => isset( $_GET['plugin_id'] ) ? $_GET['plugin_id'] : $fs->get_id()
|
181 |
-
) ), $slug . '_activate_new' ) ?>', {
|
182 |
-
user_id : data.user.id,
|
183 |
-
user_secret_key : data.user.secret_key,
|
184 |
-
user_public_key : data.user.public_key,
|
185 |
-
install_id : data.install.id,
|
186 |
-
install_secret_key: data.install.secret_key,
|
187 |
-
install_public_key: data.install.public_key
|
188 |
-
}).submit();
|
189 |
-
});
|
190 |
-
|
191 |
-
FS.PostMessage.receiveOnce('pending_activation', function (data) {
|
192 |
-
$.form('<?php echo fs_nonce_url( $fs->_get_admin_page_url( 'account', array(
|
193 |
-
'fs_action' => $slug . '_activate_new',
|
194 |
-
'plugin_id' => fs_request_get( 'plugin_id', $fs->get_id() ),
|
195 |
-
'pending_activation' => true,
|
196 |
-
) ), $slug . '_activate_new' ) ?>', {
|
197 |
-
user_email: data.user_email
|
198 |
-
}).submit();
|
199 |
-
});
|
200 |
-
|
201 |
-
FS.PostMessage.receiveOnce('get_context', function () {
|
202 |
-
console.debug('receiveOnce', 'get_context');
|
203 |
-
|
204 |
-
// If the user didn't connect his account with Freemius,
|
205 |
-
// once he accepts the Terms of Service and Privacy Policy,
|
206 |
-
// and then click the purchase button, the context information
|
207 |
-
// of the user will be shared with Freemius in order to complete the
|
208 |
-
// purchase workflow and activate the license for the right user.
|
209 |
-
<?php $install_data = array_merge( $fs->get_opt_in_params(),
|
210 |
-
array(
|
211 |
-
'activation_url' => fs_nonce_url( $fs->_get_admin_page_url( '',
|
212 |
-
array(
|
213 |
-
'fs_action' => $slug . '_activate_new',
|
214 |
-
'plugin_id' => fs_request_get( 'plugin_id', $fs->get_id() ),
|
215 |
-
|
216 |
-
) ),
|
217 |
-
$slug . '_activate_new' )
|
218 |
-
) ) ?>
|
219 |
-
FS.PostMessage.post('context', <?php echo json_encode( $install_data ) ?>, iframe[0]);
|
220 |
-
});
|
221 |
-
|
222 |
-
FS.PostMessage.receiveOnce('get_dimensions', function (data) {
|
223 |
-
console.debug('receiveOnce', 'get_dimensions');
|
224 |
-
|
225 |
-
FS.PostMessage.post('dimensions', {
|
226 |
-
height : $(document.body).height(),
|
227 |
-
scrollTop: $(document).scrollTop()
|
228 |
-
}, iframe[0]);
|
229 |
-
});
|
230 |
-
});
|
231 |
-
})(jQuery);
|
232 |
-
</script>
|
233 |
-
</div>
|
234 |
-
<?php
|
235 |
-
$params = array(
|
236 |
-
'page' => 'checkout',
|
237 |
-
'module_id' => $fs->get_id(),
|
238 |
-
'module_slug' => $slug,
|
239 |
-
'module_version' => $fs->get_plugin_version(),
|
240 |
-
);
|
241 |
-
fs_require_template( 'powered-by.php', $params );
|
242 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freemius/templates/checkout.php
CHANGED
@@ -174,7 +174,7 @@
|
|
174 |
fs_require_once_template('secure-https-header.php', $view_params);
|
175 |
?>
|
176 |
<div id="fs_checkout" class="wrap fs-section fs-full-size-wrapper">
|
177 |
-
<div id="
|
178 |
<script type="text/javascript">
|
179 |
// http://stackoverflow.com/questions/4583703/jquery-post-request-not-ajax
|
180 |
jQuery(function ($) {
|
@@ -234,7 +234,7 @@
|
|
234 |
src = base_url + '/?<?php echo http_build_query( $query_params ) ?>#' + encodeURIComponent(document.location.href),
|
235 |
// Append the i-frame into the DOM.
|
236 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
237 |
-
.appendTo('#
|
238 |
|
239 |
FS.PostMessage.init(base_url, [frame[0]]);
|
240 |
FS.PostMessage.receiveOnce('height', function (data) {
|
174 |
fs_require_once_template('secure-https-header.php', $view_params);
|
175 |
?>
|
176 |
<div id="fs_checkout" class="wrap fs-section fs-full-size-wrapper">
|
177 |
+
<div id="fs_frame"></div>
|
178 |
<script type="text/javascript">
|
179 |
// http://stackoverflow.com/questions/4583703/jquery-post-request-not-ajax
|
180 |
jQuery(function ($) {
|
234 |
src = base_url + '/?<?php echo http_build_query( $query_params ) ?>#' + encodeURIComponent(document.location.href),
|
235 |
// Append the i-frame into the DOM.
|
236 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
237 |
+
.appendTo('#fs_frame');
|
238 |
|
239 |
FS.PostMessage.init(base_url, [frame[0]]);
|
240 |
FS.PostMessage.receiveOnce('height', function (data) {
|
freemius/templates/contact.php
CHANGED
@@ -86,7 +86,7 @@
|
|
86 |
}
|
87 |
?>
|
88 |
<div id="fs_contact" class="wrap fs-section fs-full-size-wrapper">
|
89 |
-
<div id="
|
90 |
<script type="text/javascript">
|
91 |
(function ($) {
|
92 |
$(function () {
|
@@ -99,14 +99,14 @@
|
|
99 |
|
100 |
// Append the i-frame into the DOM.
|
101 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
102 |
-
.appendTo('#
|
103 |
|
104 |
FS.PostMessage.init(base_url);
|
105 |
FS.PostMessage.receive('height', function (data) {
|
106 |
var h = data.height;
|
107 |
if (!isNaN(h) && h > 0 && h != frame_height) {
|
108 |
frame_height = h;
|
109 |
-
$('#
|
110 |
}
|
111 |
});
|
112 |
});
|
86 |
}
|
87 |
?>
|
88 |
<div id="fs_contact" class="wrap fs-section fs-full-size-wrapper">
|
89 |
+
<div id="fs_frame"></div>
|
90 |
<script type="text/javascript">
|
91 |
(function ($) {
|
92 |
$(function () {
|
99 |
|
100 |
// Append the i-frame into the DOM.
|
101 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
102 |
+
.appendTo('#fs_frame');
|
103 |
|
104 |
FS.PostMessage.init(base_url);
|
105 |
FS.PostMessage.receive('height', function (data) {
|
106 |
var h = data.height;
|
107 |
if (!isNaN(h) && h > 0 && h != frame_height) {
|
108 |
frame_height = h;
|
109 |
+
$('#fs_frame i' + 'frame').height(frame_height + 'px');
|
110 |
}
|
111 |
});
|
112 |
});
|
freemius/templates/debug.php
CHANGED
@@ -113,6 +113,7 @@
|
|
113 |
if (optionName) {
|
114 |
$.post(ajaxurl, {
|
115 |
action : 'fs_get_db_option',
|
|
|
116 |
option_name: optionName
|
117 |
}, function (response) {
|
118 |
if (response.data.value)
|
@@ -132,6 +133,7 @@
|
|
132 |
if (optionValue) {
|
133 |
$.post(ajaxurl, {
|
134 |
action : 'fs_set_db_option',
|
|
|
135 |
option_name : optionName,
|
136 |
option_value: optionValue
|
137 |
}, function () {
|
113 |
if (optionName) {
|
114 |
$.post(ajaxurl, {
|
115 |
action : 'fs_get_db_option',
|
116 |
+
_wpnonce : '<?php echo wp_create_nonce( 'fs_get_db_option' ) ?>',
|
117 |
option_name: optionName
|
118 |
}, function (response) {
|
119 |
if (response.data.value)
|
133 |
if (optionValue) {
|
134 |
$.post(ajaxurl, {
|
135 |
action : 'fs_set_db_option',
|
136 |
+
_wpnonce : '<?php echo wp_create_nonce( 'fs_set_db_option' ) ?>',
|
137 |
option_name : optionName,
|
138 |
option_value: optionValue
|
139 |
}, function () {
|
freemius/templates/pricing.php
CHANGED
@@ -105,7 +105,7 @@
|
|
105 |
}
|
106 |
?>
|
107 |
<div id="fs_pricing" class="wrap fs-section fs-full-size-wrapper">
|
108 |
-
<div id="
|
109 |
<form action="" method="POST">
|
110 |
<input type="hidden" name="user_id"/>
|
111 |
<input type="hidden" name="user_email"/>
|
@@ -128,7 +128,7 @@
|
|
128 |
|
129 |
// Append the I-frame into the DOM.
|
130 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
131 |
-
.appendTo('#
|
132 |
|
133 |
FS.PostMessage.init(base_url, [frame[0]]);
|
134 |
|
105 |
}
|
106 |
?>
|
107 |
<div id="fs_pricing" class="wrap fs-section fs-full-size-wrapper">
|
108 |
+
<div id="fs_frame"></div>
|
109 |
<form action="" method="POST">
|
110 |
<input type="hidden" name="user_id"/>
|
111 |
<input type="hidden" name="user_email"/>
|
128 |
|
129 |
// Append the I-frame into the DOM.
|
130 |
frame = $('<i' + 'frame " src="' + src + '" width="100%" height="' + frame_height + 'px" scrolling="no" frameborder="0" style="background: transparent; width: 1px; min-width: 100%;"><\/i' + 'frame>')
|
131 |
+
.appendTo('#fs_frame');
|
132 |
|
133 |
FS.PostMessage.init(base_url, [frame[0]]);
|
134 |
|
freemius/templates/tabs.php
CHANGED
@@ -30,6 +30,10 @@
|
|
30 |
'support' :
|
31 |
$item['menu_slug'];
|
32 |
|
|
|
|
|
|
|
|
|
33 |
if ( ! $is_free_wp_org_theme || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) {
|
34 |
continue;
|
35 |
}
|
30 |
'support' :
|
31 |
$item['menu_slug'];
|
32 |
|
33 |
+
if ( 'pricing' === $submenu_name && ! $fs->is_pricing_page_visible() ) {
|
34 |
+
continue;
|
35 |
+
}
|
36 |
+
|
37 |
if ( ! $is_free_wp_org_theme || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) {
|
38 |
continue;
|
39 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Buttonizer, freemius
|
|
3 |
Buy plugin: https://buttonizer.pro
|
4 |
Tags: Conversion, action button, call, marketing, Social Sharing
|
5 |
Requires at least: 4.2
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -121,6 +121,11 @@ And the beauty of all: All actions are hidden in one button. The moment a visito
|
|
121 |
In fact the Buttonizer is an addiction to use. You're website visitors will interact as never before.
|
122 |
|
123 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
124 |
= 1.5.5 =
|
125 |
Release date: 9 January 2019
|
126 |
|
@@ -339,4 +344,4 @@ Added new feature:
|
|
339 |
- Exit intent: Let you Floating Action Buttons with a clean ’pop’ when your visitor tries to leave your website. By adding exit intent you can increase the number of conversions and keep your leaving webvisitors
|
340 |
|
341 |
= 1.0.2 =
|
342 |
-
Launch of the Buttonizer Floating Action Button Plugin!
|
3 |
Buy plugin: https://buttonizer.pro
|
4 |
Tags: Conversion, action button, call, marketing, Social Sharing
|
5 |
Requires at least: 4.2
|
6 |
+
Tested up to: 5.2
|
7 |
+
Stable tag: 1.5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
121 |
In fact the Buttonizer is an addiction to use. You're website visitors will interact as never before.
|
122 |
|
123 |
== Changelog ==
|
124 |
+
= 1.5.6 =
|
125 |
+
Release date: 25 February 2019
|
126 |
+
|
127 |
+
Security update
|
128 |
+
|
129 |
= 1.5.5 =
|
130 |
Release date: 9 January 2019
|
131 |
|
344 |
- Exit intent: Let you Floating Action Buttons with a clean ’pop’ when your visitor tries to leave your website. By adding exit intent you can increase the number of conversions and keep your leaving webvisitors
|
345 |
|
346 |
= 1.0.2 =
|
347 |
+
Launch of the Buttonizer Floating Action Button Plugin!
|