Custom Login Page Customizer - Version 2.1.8

Version Description

  • Update immediately - compatible with 5.9

=

Download this release

Release Info

Developer hiddenpearls
Plugin Icon 128x128 Custom Login Page Customizer
Version 2.1.8
Comparing to
See all releases

Code changes from version 2.1.7 to 2.1.8

Files changed (58) hide show
  1. freemius/assets/scss/_colors.scss +85 -0
  2. freemius/assets/scss/_functions.scss +0 -0
  3. freemius/assets/scss/_load.scss +4 -0
  4. freemius/assets/scss/_mixins.scss +270 -0
  5. freemius/assets/scss/_start.scss +4 -0
  6. freemius/assets/scss/_vars.scss +6 -0
  7. freemius/assets/scss/admin/_ajax-loader.scss +49 -0
  8. freemius/assets/scss/admin/_auto-install.scss +33 -0
  9. freemius/assets/scss/admin/_badge.scss +14 -0
  10. freemius/assets/scss/admin/_buttons.scss +28 -0
  11. freemius/assets/scss/admin/_data-debug-mode.scss +7 -0
  12. freemius/assets/scss/admin/_deactivation-feedback.scss +55 -0
  13. freemius/assets/scss/admin/_gdpr-consent.scss +81 -0
  14. freemius/assets/scss/admin/_license-activation.scss +47 -0
  15. freemius/assets/scss/admin/_license-key-resend.scss +68 -0
  16. freemius/assets/scss/admin/_modal-common.scss +199 -0
  17. freemius/assets/scss/admin/_multisite-options.scss +40 -0
  18. freemius/assets/scss/admin/_plugin-upgrade-notice.scss +8 -0
  19. freemius/assets/scss/admin/_subscription-cancellation.scss +30 -0
  20. freemius/assets/scss/admin/_switch.scss +119 -0
  21. freemius/assets/scss/admin/_tag.scss +28 -0
  22. freemius/assets/scss/admin/_themes.scss +28 -0
  23. freemius/assets/scss/admin/_tooltip.scss +69 -0
  24. freemius/assets/scss/admin/_user-change.scss +57 -0
  25. freemius/assets/scss/admin/account.scss +318 -0
  26. freemius/assets/scss/admin/add-ons.scss +614 -0
  27. freemius/assets/scss/admin/affiliation.scss +97 -0
  28. freemius/assets/scss/admin/checkout.scss +5 -0
  29. freemius/assets/scss/admin/common.scss +222 -0
  30. freemius/assets/scss/admin/connect.scss +564 -0
  31. freemius/assets/scss/admin/debug.scss +52 -0
  32. freemius/assets/scss/admin/dialog-boxes.scss +12 -0
  33. freemius/assets/scss/admin/gdpr-optin-notice.scss +17 -0
  34. freemius/assets/scss/admin/index.php +3 -0
  35. freemius/assets/scss/admin/plugins.scss +12 -0
  36. freemius/assets/scss/customizer.scss +165 -0
  37. freemius/assets/scss/index.php +3 -0
  38. freemius/composer.json +10 -0
  39. freemius/gulpfile.js +167 -0
  40. freemius/includes/class-freemius.php +26 -3
  41. freemius/includes/managers/class-fs-admin-notice-manager.php +7 -2
  42. freemius/includes/sdk/Exceptions/ArgumentNotExistException.php +5 -1
  43. freemius/includes/sdk/Exceptions/EmptyArgumentException.php +5 -1
  44. freemius/includes/sdk/Exceptions/Exception.php +5 -1
  45. freemius/includes/sdk/Exceptions/InvalidArgumentException.php +5 -1
  46. freemius/includes/sdk/Exceptions/OAuthException.php +5 -1
  47. freemius/includes/sdk/FreemiusBase.php +4 -0
  48. freemius/includes/sdk/FreemiusWordPress.php +4 -1
  49. freemius/languages/freemius-cs_CZ.po +2685 -0
  50. freemius/languages/freemius-da_DK.po +2687 -0
  51. freemius/languages/freemius-en.po +2559 -0
  52. freemius/languages/freemius-es_ES.po +2686 -0
  53. freemius/languages/freemius-fr_FR.po +2685 -0
  54. freemius/languages/freemius-he_IL.po +2686 -0
  55. freemius/languages/freemius-hu_HU.po +2685 -0
  56. freemius/languages/freemius-it_IT.po +2690 -0
  57. freemius/languages/freemius-ja.po +2687 -0
  58. freemius/languages/freemius-nl_NL.po +1304 -0
freemius/assets/scss/_colors.scss ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $menu-hover-color: #333;
2
+ $darkest-color: #000;
3
+ $fms-live-color: #71ae00;
4
+ $fms-test-color: #f7941d;
5
+ $fms-link-color: #29abe1;
6
+ $fms-link-hover-color: darken(#29abe1, 10%);
7
+ $body-bkg: #111;
8
+ $special-color: #d3135a;
9
+ $body-color: #f1f1f1;
10
+ $fms-white: #f1f1f1;
11
+ $container-bkg: #222;
12
+ $container-bkg-odd: #262626;
13
+ $container-border-color: #333;
14
+ $table-head-bkg: #333;
15
+ $table-head-color: #999;
16
+ $info-color: #999;
17
+ $error-color: #ff0000;
18
+
19
+ $fs-logo-blue-color: #29abe1;
20
+ $fs-logo-green-color: #71ae00;
21
+ $fs-logo-magenta-color: #d3135a;
22
+
23
+ // WordPress colors.
24
+ $page-header-bkg: #333;
25
+ $page-header-color: $fms-white;
26
+ $text-dark-color: #333;
27
+ $text-light-color: #666;
28
+ $text-lightest-color: #999;
29
+
30
+ // Notices.
31
+ $wp-notice-success-color: #f7fff7;
32
+ $wp-notice-success-dark-color: #46b450;
33
+ $wp-notice-error-color: #ffeaea;
34
+ $wp-notice-error-dark-color: #dc3232;
35
+ $wp-notice-warn-color: #fff8e5;
36
+ $wp-notice-warn-dark-color: #ffb900;
37
+ $fs-notice-promotion-border-color: #00a0d2;
38
+ $fs-notice-promotion-bkg: #f2fcff;
39
+
40
+ // WP Buttons.
41
+ $button-primary-bkg: #6bc406;
42
+ $button-primary-color: $fms-white;
43
+ $button-secondary-bkg: #333;
44
+ $button-secondary-color: $fms-white;
45
+ $featured-color: #6bc406;
46
+ $wp-selected-color: #0074a3;
47
+ $wp-button-alert-border-color: #d2593c;
48
+ $wp-button-alert-border-top-color: #ec6544;
49
+ $wp-button-alert-shadow-color: #d2593c;
50
+ $wp-button-alert-focused-shadow1-color: #dd6041;
51
+ $wp-button-alert-focused-shadow2-color: #e4a796;
52
+ $wp-button-alert-background-color: #f56a48;
53
+ $wp-button-alert-hovered-background-color: #fd6d4a;
54
+ $wp-button-alert-active-background-color: #dd6041;
55
+ $wp-button-alert-disabled-color: #f5b3a1;
56
+ $wp-button-alert-disabled-background-color: #e76444;
57
+ $wp-button-alert-disabled-border-color: #d85e40;
58
+ $wp-button-primary-color: #fff;
59
+ $wp-button-primary-background-color: #0085ba;
60
+ $wp-button-primary-hover-background-color: #008ec2;
61
+ $wp-button-primary-focus-background-color: $wp-button-primary-hover-background-color;
62
+ $wp-button-primary-active-background-color: #0073aa;
63
+
64
+
65
+ $wordpress_color: #01749A;
66
+ $blogger_color: #ff8100;
67
+ $wix_color: #fac102;
68
+ $shopify_color: #80d100;
69
+ $addthis_color: #fe6d4e;
70
+ $tumblr_color: #34506b;
71
+ $zepo_color: #00baf2;
72
+ $jquery_color: #000919;
73
+ $javascript_color: #00baf2;
74
+ $squarespace_color: #000;
75
+
76
+ $blog_color: #ff6600;
77
+ $facebook_color: #3b5998;
78
+ $twitter_color: #4099ff;
79
+ $linkedin_color: #4875b4;
80
+ $youtube_color: #ff3333;
81
+ $gplus_color: #c63d2d;
82
+
83
+ // Tooltip
84
+ $tooltip-color: #fff;
85
+ $tooltip-bkg-color: rgba(0,0,0,0.8);
freemius/assets/scss/_functions.scss ADDED
File without changes
freemius/assets/scss/_load.scss ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @import 'mixins';
2
+ @import "vars";
3
+ @import "functions";
4
+ @import "colors";
freemius/assets/scss/_mixins.scss ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // ---- CSS3 SASS MIXINS ----
2
+ // https://github.com/madr/css3-sass-mixins
3
+ //
4
+ // Copyright (C) 2011 by Anders Ytterström
5
+ //
6
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ // of this software and associated documentation files (the "Software"), to deal
8
+ // in the Software without restriction, including without limitation the rights
9
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ // copies of the Software, and to permit persons to whom the Software is
11
+ // furnished to do so, subject to the following conditions:
12
+ //
13
+ // The above copyright notice and this permission notice shall be included in
14
+ // all copies or substantial portions of the Software.
15
+ //
16
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ // THE SOFTWARE.
23
+ //
24
+
25
+ // ---- LEGACY IE SUPPORT USING FILTERS ----
26
+ // Should IE filters be used or not?
27
+ // PROS: gradients, drop shadows etc will be handled by css.
28
+ // CONS: will harm the site performance badly,
29
+ // especially on sites with heavy rendering and scripting.
30
+ $useIEFilters: 0;
31
+ // might be 0 or 1. disabled by default.
32
+ // ---- /LEGACY IE SUPPORT USING FILTERS ----
33
+
34
+
35
+ @mixin background-size ($value) {
36
+ -webkit-background-size: $value;
37
+ background-size: $value;
38
+ }
39
+
40
+ @mixin border-image ($path, $offsets, $repeats) {
41
+ -moz-border-image: $path $offsets $repeats;
42
+ -o-border-image: $path $offsets $repeats;
43
+ -webkit-border-image: $path $offsets $repeats;
44
+ border-image: $path $offsets $repeats;
45
+ }
46
+
47
+ @mixin border-radius ($values...) {
48
+ -moz-border-radius: $values;
49
+ -webkit-border-radius: $values;
50
+ border-radius: $values;
51
+ /*-moz-background-clip: padding;
52
+ -webkit-background-clip: padding-box;
53
+ background-clip: padding-box;*/
54
+ }
55
+
56
+ @mixin box-shadow ($values...) {
57
+ -moz-box-shadow: $values;
58
+ -webkit-box-shadow: $values;
59
+ box-shadow: $values;
60
+ }
61
+
62
+ //@mixin box-shadow ($x, $y, $offset, $hex, $ie: $useIEFilters, $inset: null, $spread:null) {
63
+ // -moz-box-shadow: $x $y $offset $spread $hex $inset;
64
+ // -webkit-box-shadow: $x $y $offset $spread $hex $inset;
65
+ // box-shadow: $x $y $offset $spread $hex $inset;
66
+ //
67
+ // @if $ie == 1 {
68
+ // $iecolor: '#' + red($hex) + green($hex) + blue($hex);
69
+ // filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}');
70
+ // -ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'));
71
+ // }
72
+ //}
73
+
74
+ @mixin box-sizing($value) {
75
+ -moz-box-sizing: $value;
76
+ -webkit-box-sizing: $value;
77
+ box-sizing: $value;
78
+ }
79
+
80
+ // requires sass 3.2
81
+ @mixin keyframes($name){
82
+ @-moz-keyframes #{$name} { @content; }
83
+ @-ms-keyframes #{$name} { @content; }
84
+ @-o-keyframes #{$name} { @content; }
85
+ @-webkit-keyframes #{$name} { @content; }
86
+ @keyframes #{$name} { @content; }
87
+ }
88
+
89
+ @mixin linear-gradient($from, $to, $ie: $useIEFilters) {
90
+ @if $ie != 1 { background-color: $to; }
91
+
92
+ background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $from),color-stop(1, $to));
93
+ background-image: -webkit-linear-gradient(top, $from, $to);
94
+ background-image: -moz-linear-gradient(top, $from, $to);
95
+ background-image: -ms-linear-gradient(top, $from, $to);
96
+ background-image: -o-linear-gradient(top, $from, $to);
97
+ background-image: linear-gradient(top, bottom, $from, $to);
98
+
99
+ @if $ie == 1 {
100
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}');
101
+ }
102
+ }
103
+
104
+ @mixin horizontal-gradient($startColor: #555, $endColor: #333, $ie: $useIEFilters) {
105
+ @if $ie != 1 { background-color: $endColor; }
106
+
107
+ background-color: $endColor;
108
+ background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+
109
+ background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+
110
+ background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+
111
+ background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10
112
+ background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10
113
+ background-repeat: repeat-x;
114
+ @if $ie == 1 {
115
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=1);
116
+ }
117
+ }
118
+
119
+ @mixin radial-gradient($from, $to, $ie: $useIEFilters) {
120
+ @if $ie != 1 { background-color: $to; }
121
+
122
+ background: -moz-radial-gradient(center, circle cover, $from 0%, $to 100%);
123
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, $from), color-stop(100%, $to));
124
+ background: -webkit-radial-gradient(center, circle cover, $from 0%, $to 100%);
125
+ background: -o-radial-gradient(center, circle cover, $from 0%, $to 100%);
126
+ background: -ms-radial-gradient(center, circle cover, $from 0%, $to 100%);
127
+ background: radial-gradient(center, circle cover, $from 0%, $to 100%);
128
+ background-color: $from;
129
+
130
+ @if $ie == 1 {
131
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}', GradientType=1); /* IE6-9 fallback on horizontal gradient */
132
+ }
133
+ }
134
+
135
+ @mixin perspective($perspective) {
136
+ -moz-perspective: $perspective;
137
+ -ms-perspective: $perspective;
138
+ -webkit-perspective: $perspective;
139
+ perspective: $perspective;
140
+ -moz-transform-style: preserve-3d;
141
+ -ms-transform-style: preserve-3d;
142
+ -webkit-transform-style: preserve-3d;
143
+ transform-style: preserve-3d;
144
+ }
145
+
146
+ @mixin transform ($transforms) {
147
+ -moz-transform: $transforms;
148
+ -o-transform: $transforms;
149
+ -ms-transform: $transforms;
150
+ -webkit-transform: $transforms;
151
+ transform: $transforms;
152
+ }
153
+
154
+ @mixin matrix ($a, $b, $c, $d, $e, $f) {
155
+ -moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px);
156
+ -o-transform: matrix($a, $b, $c, $d, $e, $f);
157
+ -ms-transform: matrix($a, $b, $c, $d, $e, $f);
158
+ -webkit-transform: matrix($a, $b, $c, $d, $e, $f);
159
+ transform: matrix($a, $b, $c, $d, $e, $f);
160
+ }
161
+
162
+ @mixin rotate ($deg) {
163
+ @include transform(rotate(#{$deg}deg));
164
+ }
165
+
166
+ @mixin scale ($size) {
167
+ @include transform(scale(#{$size}));
168
+ }
169
+
170
+ @mixin translate ($x, $y) {
171
+ @include transform(translate($x, $y));
172
+ }
173
+
174
+ @mixin transition ($value...) {
175
+ -moz-transition: $value;
176
+ -o-transition: $value;
177
+ -ms-transition: $value;
178
+ -webkit-transition: $value;
179
+ transition: $value;
180
+ }
181
+
182
+ @mixin animation($str) {
183
+ -webkit-animation: #{$str};
184
+ -moz-animation: #{$str};
185
+ -ms-animation: #{$str};
186
+ -o-animation: #{$str};
187
+ animation: #{$str};
188
+ }
189
+
190
+ @mixin animation-name($str) {
191
+ -webkit-animation-name: #{$str};
192
+ -moz-animation-name: #{$str};
193
+ -ms-animation-name: #{$str};
194
+ -o-animation-name: #{$str};
195
+ animation-name: #{$str};
196
+ }
197
+
198
+ @mixin animation-duration($str) {
199
+ -webkit-animation-duration: #{$str};
200
+ -moz-animation-duration: #{$str};
201
+ -ms-animation-duration: #{$str};
202
+ -o-animation-duration: #{$str};
203
+ animation-duration: #{$str};
204
+ }
205
+
206
+ @mixin animation-direction($str) {
207
+ -webkit-animation-direction: #{$str};
208
+ -moz-animation-direction: #{$str};
209
+ -ms-animation-direction: #{$str};
210
+ -o-animation-direction: #{$str};
211
+ animation-direction: #{$str};
212
+ }
213
+
214
+ @mixin animation-delay($str) {
215
+ animation-delay:#{$str};
216
+ -o-animation-delay:#{$str};
217
+ -ms-animation-delay:#{$str};
218
+ -webkit-animation-delay:#{$str};
219
+ -moz-animation-delay:#{$str};
220
+ }
221
+
222
+ @mixin animation-iteration-count($str) {
223
+ animation-iteration-count:#{$str};
224
+ -o-animation-iteration-count:#{$str};
225
+ -ms-animation-iteration-count:#{$str};
226
+ -webkit-animation-iteration-count:#{$str};
227
+ -moz-animation-iteration-count:#{$str};
228
+ }
229
+
230
+ @mixin animation-timing-function($str) {
231
+ -webkit-animation-timing-function: #{$str};
232
+ -moz-animation-timing-function: #{$str};
233
+ -ms-animation-timing-function: #{$str};
234
+ -o-animation-timing-function: #{$str};
235
+ animation-timing-function: #{$str};
236
+ }
237
+
238
+ // ==== /CSS3 SASS MIXINS ====
239
+
240
+ @mixin opacity($opacity) {
241
+ opacity: $opacity;
242
+ $opacity-ie: $opacity * 100;
243
+ filter: alpha(opacity=$opacity-ie); //IE8
244
+ }
245
+
246
+ @mixin size($width, $height: $width)
247
+ {
248
+ width: $width;
249
+ height: $height;
250
+ }
251
+
252
+ @mixin clearfix
253
+ {
254
+ &:after {
255
+ content: "";
256
+ display: table;
257
+ clear: both;
258
+ }
259
+ }
260
+
261
+ // Placeholder text
262
+ @mixin placeholder($color: $input-color-placeholder) {
263
+ // Firefox
264
+ &::-moz-placeholder {
265
+ color: $color;
266
+ opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
267
+ }
268
+ &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+
269
+ &::-webkit-input-placeholder { color: $color; } // Safari and Chrome
270
+ }
freemius/assets/scss/_start.scss ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ @import "vars";
2
+ @import "colors";
3
+ @import "mixins";
4
+ @import "functions";
freemius/assets/scss/_vars.scss ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ $is_production: true;
2
+
3
+ $img_common: if($is_production == true, '//img.freemius.com', 'http://img.freemius:8080');
4
+
5
+ $layout_width: 960px;
6
+ $admin_mobile_max_width: 782px;
freemius/assets/scss/admin/_ajax-loader.scss ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $color: $wp-selected-color;
2
+ $bkg-color: #fff;
3
+ $size: 20;
4
+
5
+ .fs-ajax-loader
6
+ {
7
+ position: relative;
8
+ width: #{8*$size + 10}px;
9
+ height: #{$size}px;
10
+ margin: auto;
11
+
12
+ .fs-ajax-loader-bar
13
+ {
14
+ position: absolute;
15
+ top: 0;
16
+ background-color: $color;
17
+ width: #{$size}px;
18
+ height: #{$size}px;
19
+ @include animation-name(bounce_ajaxLoader);
20
+ @include animation-duration(1.5s);
21
+ @include animation-iteration-count(infinite);
22
+ @include animation-direction(normal);
23
+ @include transform(.3);
24
+ }
25
+
26
+ @for $i from 0 through 7
27
+ {
28
+ .fs-ajax-loader-bar-#{$i + 1}
29
+ {
30
+ left: #{$i*($size - 1)}px;
31
+ @include animation-delay(#{0.6 + $i*0.15}s);
32
+ }
33
+ }
34
+ }
35
+
36
+ @include keyframes(bounce_ajaxLoader)
37
+ {
38
+ 0%
39
+ {
40
+ @include transform(scale(1));
41
+ background-color: $color;
42
+ }
43
+
44
+ 100%
45
+ {
46
+ @include transform(scale(.3));
47
+ background-color: $bkg-color;
48
+ }
49
+ }
freemius/assets/scss/admin/_auto-install.scss ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal-auto-install
2
+ {
3
+ $max-width: 300px;
4
+
5
+ #request-filesystem-credentials-form
6
+ {
7
+ h2,
8
+ .request-filesystem-credentials-action-buttons
9
+ {
10
+ display: none;
11
+ }
12
+
13
+ input[type=password],
14
+ input[type=email],
15
+ input[type=text]
16
+ {
17
+ -webkit-appearance: none;
18
+ padding: 10px 10px 5px 10px;
19
+ width: $max-width;
20
+ max-width: 100%;
21
+ }
22
+
23
+ > div,
24
+ label,
25
+ fieldset
26
+ {
27
+ width: $max-width;
28
+ max-width: 100%;
29
+ margin: 0 auto;
30
+ display: block;
31
+ }
32
+ }
33
+ }
freemius/assets/scss/admin/_badge.scss ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-badge
2
+ {
3
+ position: absolute;
4
+ top: 10px;
5
+ right: 0;
6
+ background: $fs-logo-green-color;
7
+ color: white;
8
+ text-transform: uppercase;
9
+ padding: 5px 10px;
10
+ @include border-radius(3px 0 0 3px);
11
+ font-weight: bold;
12
+ border-right: 0;
13
+ @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3));
14
+ }
freemius/assets/scss/admin/_buttons.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .button-primary.warn {
2
+ box-shadow: 0 1px 0 $wp-button-alert-shadow-color;
3
+ text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color;
4
+ background: $wp-button-alert-background-color;
5
+ border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color;
6
+
7
+ &:hover {
8
+ background: $wp-button-alert-hovered-background-color;
9
+ border-color: $wp-button-alert-border-color;
10
+ }
11
+
12
+ &:focus {
13
+ box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color;
14
+ }
15
+
16
+ &:active {
17
+ background: $wp-button-alert-active-background-color;
18
+ border-color: $wp-button-alert-border-color;
19
+ box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color;
20
+ }
21
+
22
+ &.disabled {
23
+ color: $wp-button-alert-disabled-color !important;
24
+ background: $wp-button-alert-disabled-background-color !important;
25
+ border-color: $wp-button-alert-disabled-border-color !important;
26
+ text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important;
27
+ }
28
+ }
freemius/assets/scss/admin/_data-debug-mode.scss ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-developer-license-debug-mode {
2
+ .fs-modal-body {
3
+ input.fs-license-or-user-key {
4
+ width: 100%;
5
+ }
6
+ }
7
+ }
freemius/assets/scss/admin/_deactivation-feedback.scss ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../colors";
2
+
3
+ .fs-modal.fs-modal-deactivation-feedback {
4
+ .reason-input, .internal-message {
5
+ margin: 3px 0 3px 22px;
6
+
7
+ input, textarea {
8
+ width: 100%;
9
+ }
10
+ }
11
+
12
+ li.reason {
13
+ &.has-internal-message .internal-message {
14
+ border: 1px solid lighten($darkest-color, 80%);
15
+ padding: 7px;
16
+ display: none;
17
+ }
18
+
19
+ @media (max-width: 650px) {
20
+ li.reason {
21
+ margin-bottom: 10px;
22
+
23
+ .reason-input, .internal-message {
24
+ margin-left: 29px;
25
+ }
26
+
27
+ label {
28
+ display: table;
29
+
30
+ > span {
31
+ display: table-cell;
32
+ font-size: 1.3em;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ .anonymous-feedback-label {
40
+ float: left;
41
+ }
42
+
43
+ .fs-modal-panel {
44
+ margin-top: 0 !important;
45
+
46
+ h3 {
47
+ margin-top: 0;
48
+ line-height: 1.5em;
49
+ }
50
+ }
51
+ }
52
+
53
+ #the-list .deactivate > .fs-slug {
54
+ display: none;
55
+ }
freemius/assets/scss/admin/_gdpr-consent.scss ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #fs_marketing_optin
2
+ {
3
+ display: none;
4
+ margin-top: 10px;
5
+ border: 1px solid #ccc;
6
+ padding: 10px;
7
+ line-height: 1.5em;
8
+
9
+ .fs-message
10
+ {
11
+ display: block;
12
+ margin-bottom: 5px;
13
+ font-size: 1.05em;
14
+ font-weight: 600;
15
+ }
16
+
17
+ &.error
18
+ {
19
+ border: 1px solid $fs-logo-magenta-color;
20
+ background: #fee;
21
+
22
+ .fs-message
23
+ {
24
+ color: $fs-logo-magenta-color;
25
+ }
26
+ }
27
+
28
+ .fs-input-container
29
+ {
30
+ margin-top: 5px;
31
+
32
+ label
33
+ {
34
+ margin-top: 5px;
35
+ display: block;
36
+
37
+ input
38
+ {
39
+ float: left;
40
+ margin: 1px 0 0 0;
41
+ }
42
+
43
+ &:first-child
44
+ {
45
+ display: block;
46
+ margin-bottom: 2px;
47
+ }
48
+ }
49
+ }
50
+
51
+ .fs-input-label
52
+ {
53
+ display: block;
54
+ margin-left: 20px;
55
+
56
+ .underlined
57
+ {
58
+ text-decoration: underline;
59
+ }
60
+ }
61
+ }
62
+
63
+ .rtl
64
+ {
65
+ #fs_marketing_optin
66
+ {
67
+ .fs-input-container
68
+ {
69
+ label input
70
+ {
71
+ float: right;
72
+ }
73
+ }
74
+
75
+ .fs-input-label
76
+ {
77
+ margin-left: 0;
78
+ margin-right: 20px;
79
+ }
80
+ }
81
+ }
freemius/assets/scss/admin/_license-activation.scss ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-license-activation {
2
+ .fs-modal-body {
3
+ input.fs-license-key {
4
+ width: 100%;
5
+ }
6
+ }
7
+ }
8
+
9
+ .fs-license-options-container {
10
+ table {
11
+ &, select, .fs-available-license-key {
12
+ width: 100%;
13
+ }
14
+
15
+ td:first-child {
16
+ width: 1%;
17
+ }
18
+
19
+ .fs-other-license-key-container {
20
+ label {
21
+ position: relative;
22
+ top: 6px;
23
+ float: left;
24
+ margin-right: 5px;
25
+ }
26
+
27
+ div {
28
+ overflow: hidden;
29
+ width: auto;
30
+ height: 30px;
31
+ display: block;
32
+ top: 2px;
33
+ position: relative;
34
+
35
+ input {
36
+ margin: 0;
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+
43
+ .fs-sites-list-container {
44
+ td {
45
+ cursor: pointer;
46
+ }
47
+ }
freemius/assets/scss/admin/_license-key-resend.scss ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-license-key-resend
2
+ {
3
+ .email-address-container
4
+ {
5
+ overflow: hidden;
6
+ padding-right: 2px;
7
+ }
8
+
9
+ &.fs-freemium
10
+ {
11
+ input.email-address
12
+ {
13
+ width: 300px;
14
+ }
15
+
16
+ label
17
+ {
18
+ display: block;
19
+ margin-bottom: 10px;
20
+ }
21
+ }
22
+
23
+ &.fs-premium
24
+ {
25
+ input.email-address
26
+ {
27
+ width: 100%;
28
+ }
29
+
30
+ .button-container
31
+ {
32
+ float: right;
33
+ margin-left: 7px;
34
+
35
+ @media (max-width: 650px) {
36
+ margin-top: 2px;
37
+ }
38
+ }
39
+ }
40
+ }
41
+
42
+ .rtl
43
+ {
44
+ .fs-modal.fs-modal-license-key-resend
45
+ {
46
+ .fs-modal-body
47
+ {
48
+ .input-container > .email-address-container
49
+ {
50
+ padding-left: 2px;
51
+ padding-right: 0;
52
+ }
53
+
54
+ .button-container
55
+ {
56
+ float: left;
57
+ margin-right: 7px;
58
+ margin-left: 0;
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ a.show-license-resend-modal
65
+ {
66
+ margin-top: 4px;
67
+ display: inline-block;
68
+ }
freemius/assets/scss/admin/_modal-common.scss ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../colors";
2
+ @import "../mixins";
3
+
4
+ .fs-modal {
5
+ position: fixed;
6
+ overflow: auto;
7
+ height: 100%;
8
+ width: 100%;
9
+ top: 0;
10
+ z-index: 100000;
11
+ display: none;
12
+ background: rgba(0, 0, 0, 0.6);
13
+
14
+ .dashicons
15
+ {
16
+ vertical-align: middle;
17
+ }
18
+
19
+ .fs-modal-dialog {
20
+ background: transparent;
21
+ position: absolute;
22
+ left: 50%;
23
+ margin-left: -298px;
24
+ padding-bottom: 30px;
25
+ top: -100%;
26
+ z-index: 100001;
27
+ width: 596px;
28
+
29
+ @media (max-width: 650px) {
30
+ margin-left: -50%;
31
+ box-sizing: border-box;
32
+ padding-left: 10px;
33
+ padding-right: 10px;
34
+ width: 100%;
35
+
36
+ .fs-modal-panel > h3 > strong {
37
+ font-size: 1.3em;
38
+ }
39
+ }
40
+ }
41
+
42
+ &.active {
43
+ display: block;
44
+
45
+ &:before {
46
+ display: block;
47
+ }
48
+
49
+ .fs-modal-dialog {
50
+ top: 10%;
51
+ }
52
+ }
53
+
54
+ &.fs-success {
55
+ .fs-modal-header {
56
+ border-bottom-color: $wp-notice-success-dark-color;
57
+ }
58
+
59
+ .fs-modal-body {
60
+ background-color: $wp-notice-success-color;
61
+ }
62
+ }
63
+
64
+ &.fs-warn {
65
+ .fs-modal-header {
66
+ border-bottom-color: $wp-notice-warn-dark-color;
67
+ }
68
+
69
+ .fs-modal-body {
70
+ background-color: $wp-notice-warn-color;
71
+ }
72
+ }
73
+
74
+ &.fs-error {
75
+ .fs-modal-header {
76
+ border-bottom-color: $wp-notice-error-dark-color;
77
+ }
78
+
79
+ .fs-modal-body {
80
+ background-color: $wp-notice-error-color;
81
+ }
82
+ }
83
+
84
+
85
+ .fs-modal-body,
86
+ .fs-modal-footer {
87
+ border: 0;
88
+ background: #fefefe;
89
+ padding: 20px;
90
+ }
91
+
92
+ .fs-modal-header {
93
+ border-bottom: #eeeeee solid 1px;
94
+ background: #fbfbfb;
95
+ padding: 15px 20px;
96
+ position: relative;
97
+ margin-bottom: -10px;
98
+ // z-index: 2;
99
+
100
+ h4 {
101
+ margin: 0;
102
+ padding: 0;
103
+ text-transform: uppercase;
104
+ font-size: 1.2em;
105
+ font-weight: bold;
106
+ color: #cacaca;
107
+ text-shadow: 1px 1px 1px #fff;
108
+ letter-spacing: 0.6px;
109
+ -webkit-font-smoothing: antialiased;
110
+ }
111
+
112
+ .fs-close {
113
+ position: absolute;
114
+ right: 10px;
115
+ top: 12px;
116
+ cursor: pointer;
117
+ color: #bbb;
118
+ @include border-radius(20px);
119
+ padding: 3px;
120
+ @include transition(all 0.2s ease-in-out);
121
+
122
+ &:hover {
123
+ color: #fff;
124
+ background: #aaa;
125
+ }
126
+
127
+ &, &:hover
128
+ {
129
+ .dashicons
130
+ {
131
+ text-decoration: none;
132
+ }
133
+ }
134
+ }
135
+ }
136
+
137
+ .fs-modal-body {
138
+ border-bottom: 0;
139
+
140
+ p {
141
+ font-size: 14px;
142
+ }
143
+
144
+ h2 {
145
+ font-size: 20px;
146
+ line-height: 1.5em;
147
+ }
148
+
149
+ > div {
150
+ margin-top: 10px;
151
+
152
+ h2 {
153
+ font-weight: bold;
154
+ font-size: 20px;
155
+ margin-top: 0;
156
+ }
157
+ }
158
+ }
159
+
160
+ .fs-modal-footer {
161
+ border-top: #eeeeee solid 1px;
162
+ text-align: right;
163
+
164
+ > .button {
165
+ margin: 0 7px;
166
+
167
+ &:first-child {
168
+ margin: 0;
169
+ }
170
+ }
171
+ }
172
+
173
+ .fs-modal-panel {
174
+ > .notice.inline {
175
+ margin: 0;
176
+ display: none;
177
+ }
178
+
179
+ &:not(.active) {
180
+ display: none;
181
+ }
182
+ }
183
+ }
184
+
185
+ .rtl
186
+ {
187
+ .fs-modal {
188
+ .fs-modal-header {
189
+ .fs-close {
190
+ right: auto;
191
+ left: 20px;
192
+ }
193
+ }
194
+ }
195
+ }
196
+
197
+ body.has-fs-modal {
198
+ overflow: hidden;
199
+ }
freemius/assets/scss/admin/_multisite-options.scss ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-multisite-options-container {
2
+ margin-top: 10px;
3
+ border: 1px solid #ccc;
4
+ padding: 5px;
5
+
6
+ a {
7
+ text-decoration: none;
8
+
9
+ &:focus {
10
+ box-shadow: none;
11
+ }
12
+
13
+ &.selected {
14
+ font-weight: bold;
15
+ }
16
+ }
17
+
18
+ &.fs-apply-on-all-sites {
19
+ border: 0 none;
20
+ padding: 0;
21
+
22
+ .fs-all-sites-options {
23
+ border-spacing: 0;
24
+
25
+ td:not(:first-child) {
26
+ display: none;
27
+ }
28
+ }
29
+ }
30
+
31
+ .fs-sites-list-container {
32
+ display: none;
33
+ overflow: auto;
34
+
35
+ table td {
36
+ border-top: 1px solid #ccc;
37
+ padding: 4px 2px;
38
+ }
39
+ }
40
+ }
freemius/assets/scss/admin/_plugin-upgrade-notice.scss ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ .plugins p.fs-upgrade-notice
2
+ {
3
+ border: 0;
4
+ background-color: #d54e21;
5
+ padding: 10px;
6
+ color: #f9f9f9;
7
+ margin-top: 10px;
8
+ }
freemius/assets/scss/admin/_subscription-cancellation.scss ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-subscription-cancellation {
2
+ .fs-price-increase-warning {
3
+ color: red;
4
+ font-weight: bold;
5
+ padding: 0 25px;
6
+ margin-bottom: 0;
7
+ }
8
+
9
+ ul.subscription-actions label {
10
+ input {
11
+ float: left;
12
+ top: 5px;
13
+ position: relative;
14
+
15
+ .rtl & {
16
+ float: right;
17
+ }
18
+ }
19
+
20
+ span {
21
+ display: block;
22
+ margin-left: 24px;
23
+
24
+ .rtl & {
25
+ margin-left: 0;
26
+ margin-right: 24px;
27
+ }
28
+ }
29
+ }
30
+ }
freemius/assets/scss/admin/_switch.scss ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $switch-size: 24px;
2
+ $switch-small-size: 0.75 * $switch-size;
3
+ $switch-on-color: $wp-button-primary-background-color;
4
+
5
+ .fs-switch
6
+ {
7
+ position: relative;
8
+ display: inline-block;
9
+ //font-size: 1.6em;
10
+ //font-weight: bold;
11
+ color: #ccc;
12
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
13
+ height: 18px;
14
+ padding: 6px 6px 5px 6px;
15
+ border: 1px solid #ccc;
16
+ border: 1px solid rgba(0, 0, 0, 0.2);
17
+ //border-radius: 4px;
18
+ background: #ececec;
19
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
20
+ cursor: pointer;
21
+
22
+ span
23
+ {
24
+ display: inline-block;
25
+ width: 35px;
26
+ text-transform: uppercase;
27
+ }
28
+
29
+ .fs-toggle
30
+ {
31
+ position: absolute;
32
+ top: 1px;
33
+ width: 37px;
34
+ height: $switch-size + 1px;
35
+ border: 1px solid #ccc;
36
+ border: 1px solid rgba(0, 0, 0, 0.3);
37
+ border-radius: 4px;
38
+ background: #fff;
39
+ @include linear-gradient(#ececec, #fff);
40
+ box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
41
+ z-index: 999;
42
+ @include transition(0.40s cubic-bezier(0.54, 1.6, 0.5, 1));
43
+ }
44
+
45
+ &.fs-off .fs-toggle
46
+ {
47
+ left: 2%;
48
+ }
49
+ &.fs-on .fs-toggle
50
+ {
51
+ left: 54%;
52
+ }
53
+
54
+ /* Round switch */
55
+ &.fs-round
56
+ {
57
+ top: $switch-size / 3;
58
+ padding: 4px ($switch-size + 1px);
59
+ @include border-radius($switch-size);
60
+
61
+ .fs-toggle
62
+ {
63
+ top: 0;
64
+ width: $switch-size;
65
+ height: $switch-size;
66
+ @include border-radius($switch-size);
67
+ }
68
+
69
+ &.fs-off .fs-toggle
70
+ {
71
+ left: -1px;
72
+ }
73
+
74
+ &.fs-on
75
+ {
76
+ background: $switch-on-color;
77
+
78
+ .fs-toggle
79
+ {
80
+ left: $switch-size + 1px;
81
+ }
82
+ }
83
+ }
84
+
85
+ &.fs-small
86
+ {
87
+ &.fs-round
88
+ {
89
+ padding: 1px ($switch-small-size + 1px);
90
+
91
+ .fs-toggle
92
+ {
93
+ top: 0;
94
+ width: $switch-small-size;
95
+ height: $switch-small-size;
96
+ @include border-radius($switch-small-size);
97
+ }
98
+
99
+ &.fs-on .fs-toggle
100
+ {
101
+ left: $switch-small-size + 1px;
102
+ }
103
+ }
104
+ }
105
+ }
106
+
107
+ .fs-switch-feedback {
108
+ margin-left: 10px;
109
+
110
+ &.success {
111
+ color: $fs-logo-green-color;
112
+ }
113
+
114
+ .rtl &
115
+ {
116
+ margin-left: 0;
117
+ margin-right: 10px;
118
+ }
119
+ }
freemius/assets/scss/admin/_tag.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ label.fs-tag, span.fs-tag
2
+ {
3
+ background: #ffba00;
4
+ color: #fff;
5
+ display: inline-block;
6
+ border-radius: 3px;
7
+ padding: 5px;
8
+ font-size: 11px;
9
+ line-height: 11px;
10
+ vertical-align: baseline;
11
+
12
+ &.fs-warn
13
+ {
14
+ background: #ffba00;
15
+ }
16
+ &.fs-info
17
+ {
18
+ background: #00a0d2;
19
+ }
20
+ &.fs-success
21
+ {
22
+ background: #46b450;
23
+ }
24
+ &.fs-error
25
+ {
26
+ background: #dc3232;
27
+ }
28
+ }
freemius/assets/scss/admin/_themes.scss ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "badge";
2
+
3
+ .theme-browser
4
+ {
5
+ .theme
6
+ {
7
+ .fs-premium-theme-badge-container {
8
+ position: absolute;
9
+ right: 0;
10
+ top: 0;
11
+
12
+ .fs-badge {
13
+ position: relative;
14
+ top: 0;
15
+ margin-top: 10px;
16
+ text-align: center;
17
+
18
+ &.fs-premium-theme-badge {
19
+ font-size: 1.1em;
20
+ }
21
+
22
+ &.fs-beta-theme-badge {
23
+ background: #00a0d2;
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
freemius/assets/scss/admin/_tooltip.scss ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-tooltip-trigger
2
+ {
3
+ &:not(a)
4
+ {
5
+ cursor: help;
6
+ }
7
+
8
+ position: relative;
9
+
10
+ .fs-tooltip
11
+ {
12
+ opacity: 0;
13
+ visibility: hidden;
14
+ @include transition(opacity 0.3s ease-in-out);
15
+ position: absolute;
16
+ background: $tooltip-bkg-color;
17
+ color: $tooltip-color !important;
18
+ font-family: 'arial', serif;
19
+ font-size: 12px;
20
+ padding: 10px;
21
+ z-index: 999999;
22
+ bottom: 100%;
23
+ margin-bottom: 5px;
24
+ left: -17px;
25
+ right: 0;
26
+ @include border-radius(5px);
27
+ @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
28
+ line-height: 1.3em;
29
+ font-weight: bold;
30
+ text-align: left;
31
+ text-transform: none !important;
32
+
33
+ .rtl &
34
+ {
35
+ text-align: right;
36
+ left: auto;
37
+ right: -17px;
38
+ }
39
+
40
+ &::after
41
+ {
42
+ content: ' ';
43
+ display: block;
44
+ width: 0;
45
+ height: 0;
46
+ border-style: solid;
47
+ border-width: 5px 5px 0 5px;
48
+ border-color: $tooltip-bkg-color transparent transparent transparent;
49
+ position: absolute;
50
+ top: 100%;
51
+ left: 21px;
52
+
53
+ .rtl &
54
+ {
55
+ right: 21px;
56
+ left: auto;
57
+ }
58
+ }
59
+ }
60
+
61
+ &:hover
62
+ {
63
+ .fs-tooltip
64
+ {
65
+ visibility: visible;
66
+ opacity: 1;
67
+ }
68
+ }
69
+ }
freemius/assets/scss/admin/_user-change.scss ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-modal.fs-modal-user-change {
2
+ .fs-modal-body {
3
+ input#fs_other_email_address {
4
+ width: 100%;
5
+ }
6
+ }
7
+ }
8
+
9
+ .fs-user-change-options-container {
10
+ table {
11
+ width: 100%;
12
+ border-collapse: collapse;
13
+
14
+ tr {
15
+ display: block;
16
+ margin-bottom: 2px;
17
+ }
18
+
19
+ .fs-email-address-container {
20
+ td {
21
+ display: inline-block;
22
+ }
23
+
24
+ input[type="radio"] {
25
+ margin-bottom: 0;
26
+ margin-top: 0;
27
+ }
28
+ }
29
+
30
+ .fs-other-email-address-container {
31
+ width: 100%;
32
+
33
+ > div {
34
+ display: table;
35
+ width: 100%;
36
+
37
+ label, > div {
38
+ display: table-cell;
39
+ }
40
+
41
+ label {
42
+ width: 1%;
43
+ padding-left: 3px;
44
+ padding-right: 3px;
45
+ }
46
+
47
+ > div {
48
+ width: auto;
49
+
50
+ input {
51
+ width: 100%;
52
+ }
53
+ }
54
+ }
55
+ }
56
+ }
57
+ }
freemius/assets/scss/admin/account.scss ADDED
@@ -0,0 +1,318 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "tag";
3
+
4
+ .fs-notice[data-id="license_not_whitelabeled"], .fs-notice[data-id="license_whitelabeled"] {
5
+ &.success {
6
+ color: inherit;
7
+ border-left-color: #00a0d2;
8
+
9
+ label.fs-plugin-title {
10
+ display: none;
11
+ }
12
+ }
13
+ }
14
+
15
+ #fs_account
16
+ {
17
+ .postbox,
18
+ .widefat
19
+ {
20
+ max-width: 800px;
21
+ }
22
+
23
+ h3
24
+ {
25
+ font-size: 1.3em;
26
+ padding: 12px 15px;
27
+ margin: 0 0 12px 0;
28
+ line-height: 1.4;
29
+ border-bottom: 1px solid #F1F1F1;
30
+
31
+ .dashicons {
32
+ width: 26px;
33
+ height: 26px;
34
+ font-size: 1.3em;
35
+ }
36
+ }
37
+
38
+ i.dashicons
39
+ {
40
+ font-size: 1.2em;
41
+ height: 1.2em;
42
+ width: 1.2em;
43
+ }
44
+
45
+ .dashicons
46
+ {
47
+ vertical-align: middle;
48
+ }
49
+
50
+ .fs-header-actions
51
+ {
52
+ position: absolute;
53
+ top: 17px;
54
+ right: 15px;
55
+ font-size: 0.9em;
56
+
57
+ ul
58
+ {
59
+ margin: 0;
60
+ }
61
+
62
+ li
63
+ {
64
+ form
65
+ {
66
+ display: inline-block;
67
+ }
68
+
69
+ float: left;
70
+ a
71
+ {
72
+ text-decoration: none;
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ #fs_account_details .button-group {
79
+ float: right;
80
+ }
81
+
82
+ .rtl #fs_account .fs-header-actions
83
+ {
84
+ left: 15px;
85
+ right: auto;
86
+ }
87
+
88
+ .fs-key-value-table
89
+ {
90
+ width: 100%;
91
+
92
+ form
93
+ {
94
+ display: inline-block;
95
+ }
96
+
97
+ tr
98
+ {
99
+ td:first-child
100
+ {
101
+ nobr
102
+ {
103
+ font-weight: bold;
104
+ }
105
+
106
+ text-align: right;
107
+
108
+ form
109
+ {
110
+ display: block;
111
+ }
112
+ }
113
+
114
+ td.fs-right
115
+ {
116
+ text-align: right;
117
+ }
118
+
119
+ &.fs-odd
120
+ {
121
+ background: #ebebeb;
122
+ }
123
+ }
124
+
125
+ td, th
126
+ {
127
+ padding: 10px;
128
+ }
129
+
130
+ code {
131
+ line-height: 28px;
132
+ }
133
+
134
+ var, code, input[type="text"]
135
+ {
136
+ color: #0073AA;
137
+ font-size: 16px;
138
+ background: none;
139
+ }
140
+
141
+ input[type="text"] {
142
+ width: 100%;
143
+ font-weight: bold;
144
+ }
145
+ }
146
+
147
+ .fs-field-beta_program label {
148
+ margin-left: 7px;
149
+ }
150
+
151
+ label.fs-tag
152
+ {
153
+ background: #ffba00;
154
+ color: #fff;
155
+ display: inline-block;
156
+ border-radius: 3px;
157
+ padding: 5px;
158
+ font-size: 11px;
159
+ line-height: 11px;
160
+ vertical-align: baseline;
161
+
162
+ &.fs-warn
163
+ {
164
+ background: #ffba00;
165
+ }
166
+ &.fs-success
167
+ {
168
+ background: #46b450;
169
+ }
170
+ &.fs-error
171
+ {
172
+ background: #dc3232;
173
+ }
174
+ }
175
+
176
+ #fs_sites
177
+ {
178
+ .fs-scrollable-table
179
+ {
180
+ .fs-table-body {
181
+ max-height: 200px;
182
+ overflow: auto;
183
+ border: 1px solid #e5e5e5;
184
+
185
+ & > table.widefat {
186
+ border: none !important;
187
+ }
188
+ }
189
+
190
+ .fs-main-column {
191
+ width: 100%;
192
+ }
193
+
194
+ .fs-site-details
195
+ {
196
+ td:first-of-type
197
+ {
198
+ text-align: right;
199
+ color: grey;
200
+ width: 1px;
201
+ }
202
+
203
+ td:last-of-type
204
+ {
205
+ text-align: right;
206
+ }
207
+ }
208
+
209
+ .fs-install-details table
210
+ {
211
+ tr td
212
+ {
213
+ width: 1px;
214
+ white-space: nowrap;
215
+
216
+ &:last-of-type
217
+ {
218
+ width: auto;
219
+ }
220
+ }
221
+ }
222
+ }
223
+ }
224
+
225
+ #fs_addons
226
+ {
227
+ h3
228
+ {
229
+ border: none;
230
+ margin-bottom: 0;
231
+ padding: 4px 5px;
232
+ }
233
+
234
+ td
235
+ {
236
+ vertical-align: middle;
237
+ }
238
+
239
+ thead {
240
+ white-space: nowrap;
241
+ }
242
+
243
+ td:first-child,
244
+ th:first-child
245
+ {
246
+ text-align: left;
247
+ font-weight: bold;
248
+ }
249
+ td:last-child,
250
+ th:last-child
251
+ {
252
+ text-align: right;
253
+ }
254
+ th
255
+ {
256
+ font-weight: bold;
257
+ }
258
+ }
259
+
260
+ #fs_billing_address {
261
+ width: 100%;
262
+
263
+ tr {
264
+ td {
265
+ width: 50%;
266
+ padding: 5px;
267
+ }
268
+
269
+ &:first-of-type {
270
+ td {
271
+ padding-top: 0;
272
+ }
273
+ }
274
+ }
275
+
276
+ @mixin read-mode {
277
+ border-color: transparent;
278
+ color: #777;
279
+ border-bottom: 1px dashed #ccc;
280
+ padding-left: 0;
281
+ background: none;
282
+ }
283
+
284
+ span {
285
+ font-weight: bold;
286
+ }
287
+
288
+ input, select {
289
+ @include placeholder(transparent);
290
+
291
+ display: block;
292
+ width: 100%;
293
+ margin-top: 5px;
294
+
295
+ &.fs-read-mode {
296
+ @include read-mode();
297
+ }
298
+ }
299
+
300
+
301
+ &.fs-read-mode {
302
+ td span {
303
+ display: none;
304
+ }
305
+
306
+ input, select
307
+ {
308
+ @include read-mode();
309
+ @include placeholder(#ccc);
310
+ }
311
+ }
312
+
313
+
314
+ button {
315
+ display: block;
316
+ width: 100%;
317
+ }
318
+ }
freemius/assets/scss/admin/add-ons.scss ADDED
@@ -0,0 +1,614 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "badge";
3
+
4
+ #fs_addons
5
+ {
6
+ .fs-cards-list
7
+ {
8
+ list-style: none;
9
+
10
+ .fs-card
11
+ {
12
+ float: left;
13
+ // height: 185px; // With reviews/ratings
14
+ height: 152px;
15
+ width: 310px;
16
+ padding: 0;
17
+ margin: 0 0 30px 30px;
18
+ font-size: 14px;
19
+ list-style: none;
20
+ border: 1px solid #ddd;
21
+ cursor: pointer;
22
+ position: relative;
23
+
24
+ .fs-overlay
25
+ {
26
+ position: absolute;
27
+ left: 0;
28
+ right: 0;
29
+ bottom: 0;
30
+ top: 0;
31
+ z-index: 9;
32
+ }
33
+
34
+ .fs-inner
35
+ {
36
+ background-color: #fff;
37
+ overflow: hidden;
38
+ height: 100%;
39
+ position: relative;
40
+
41
+ & > ul
42
+ {
43
+ @include transition(all, 0.15s);
44
+ left: 0;
45
+ right: 0;
46
+ top: 0;
47
+ position: absolute;
48
+
49
+ & > li
50
+ {
51
+ list-style: none;
52
+ line-height: 18px;
53
+ padding: 0 15px;
54
+ width: 100%;
55
+ display: block;
56
+ @include box-sizing(border-box);
57
+ }
58
+ }
59
+
60
+ .fs-card-banner
61
+ {
62
+ padding: 0;
63
+ margin: 0;
64
+ line-height: 0;
65
+ display: block;
66
+ height: 100px;
67
+ background-repeat: repeat-x;
68
+ background-size: 100% 100%;
69
+ @include transition(all, 0.15s);
70
+
71
+ .fs-badge.fs-installed-addon-badge {
72
+ font-size: 1.02em;
73
+ line-height: 1.3em;
74
+ }
75
+ }
76
+
77
+ .fs-title
78
+ {
79
+ margin: 10px 0 0 0;
80
+ height: 18px;
81
+ overflow: hidden;
82
+ color: #000;
83
+ white-space: nowrap;
84
+ text-overflow: ellipsis;
85
+ font-weight: bold;
86
+ }
87
+
88
+ .fs-offer
89
+ {
90
+ font-size: 0.9em;
91
+ }
92
+
93
+ .fs-description
94
+ {
95
+ background-color: #f9f9f9;
96
+ padding: 10px 15px 100px 15px;
97
+ border-top: 1px solid #eee;
98
+ margin: 0 0 10px 0;
99
+ color: #777;
100
+ }
101
+
102
+ .fs-tag
103
+ {
104
+ position: absolute;
105
+ top: 10px;
106
+ right: 0px;
107
+ background: greenyellow;
108
+ display: block;
109
+ padding: 2px 10px;
110
+ @include box-shadow(1px 1px 1px rgba(0,0,0,0.3));
111
+ text-transform: uppercase;
112
+ font-size: 0.9em;
113
+ font-weight: bold;
114
+ }
115
+
116
+ .fs-cta
117
+ {
118
+ .button, .button-group
119
+ {
120
+ position: absolute;
121
+ top: 112px;
122
+ right: 10px;
123
+ }
124
+ }
125
+ }
126
+
127
+ @media screen and (min-width: 960px) {
128
+ &:hover
129
+ {
130
+ .fs-overlay
131
+ {
132
+ border: 2px solid $fms-link-color;
133
+ margin-left: -1px;
134
+ margin-top: -1px;
135
+ }
136
+
137
+ .fs-inner
138
+ {
139
+ ul
140
+ {
141
+ top: -100px;
142
+ }
143
+
144
+ .fs-card-banner
145
+ {
146
+ // background-position: 50% -100px;
147
+ }
148
+
149
+ .fs-title,
150
+ .fs-offer
151
+ {
152
+ color: $fms-link-color;
153
+ }
154
+ }
155
+ }
156
+ }
157
+ }
158
+ }
159
+ }
160
+
161
+ #TB_window
162
+ {
163
+ &, iframe
164
+ {
165
+ width: 821px !important;
166
+ }
167
+ }
168
+
169
+ #plugin-information
170
+ {
171
+ .fyi {
172
+ width: 266px !important;
173
+ }
174
+
175
+ #section-holder {
176
+ margin-right: 299px;
177
+ }
178
+
179
+ #section-description
180
+ {
181
+ h2, h3, p, b, i, blockquote, li, ul, ol
182
+ {
183
+ clear: none;
184
+ }
185
+
186
+ iframe
187
+ {
188
+ max-width: 100%;
189
+ }
190
+
191
+ .fs-selling-points
192
+ {
193
+ padding-bottom: 10px;
194
+ border-bottom: 1px solid #ddd;
195
+
196
+ ul
197
+ {
198
+ margin: 0;
199
+
200
+ li
201
+ {
202
+ padding: 0;
203
+ list-style: none outside none;
204
+
205
+ i.dashicons
206
+ {
207
+ color: $fs-logo-green-color;
208
+ font-size: 3em;
209
+ vertical-align: middle;
210
+ line-height: 30px;
211
+ float: left;
212
+ margin: 0 0 0 -15px;
213
+ }
214
+
215
+ h3
216
+ {
217
+ margin: 1em 30px !important;
218
+ }
219
+ }
220
+ }
221
+ }
222
+
223
+ .fs-screenshots
224
+ {
225
+ @include clearfix();
226
+ ul
227
+ {
228
+ list-style: none;
229
+ margin: 0;
230
+
231
+ li
232
+ {
233
+ width: 225px;
234
+ height: 225px;
235
+ float: left;
236
+ margin-bottom: 20px;
237
+ @include box-sizing(content-box);
238
+
239
+ a
240
+ {
241
+ display: block;
242
+ width: 100%;
243
+ height: 100%;
244
+ border: 1px solid;
245
+ @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
246
+ background-size: cover;
247
+ }
248
+
249
+ &.odd
250
+ {
251
+ margin-right: 20px;
252
+ }
253
+ }
254
+ }
255
+ }
256
+ }
257
+
258
+ .plugin-information-pricing
259
+ {
260
+ $pricing_color: #FFFEEC;
261
+ $borders_color: #DDD;
262
+ margin: -16px;
263
+ // padding: 20px;
264
+ border-bottom: 1px solid $borders_color;
265
+
266
+ .fs-plan
267
+ {
268
+
269
+ h3
270
+ {
271
+ margin-top: 0;
272
+ padding: 20px;
273
+ font-size: 16px;
274
+ }
275
+
276
+ .nav-tab-wrapper
277
+ {
278
+ border-bottom: 1px solid $borders_color;
279
+
280
+ .nav-tab
281
+ {
282
+ cursor: pointer;
283
+ position: relative;
284
+ padding: 0 10px;
285
+ font-size: 0.9em;
286
+
287
+ label
288
+ {
289
+ text-transform: uppercase;
290
+ color: green;
291
+ background: greenyellow;
292
+ position: absolute;
293
+ left: -1px;
294
+ right: -1px;
295
+ bottom: 100%;
296
+ border: 1px solid darkgreen;
297
+ padding: 2px;
298
+ text-align: center;
299
+ font-size: 0.9em;
300
+ line-height: 1em;
301
+ }
302
+
303
+ &.nav-tab-active
304
+ {
305
+ cursor: default;
306
+ background: $pricing_color;
307
+ border-bottom-color: $pricing_color;
308
+ }
309
+ }
310
+ }
311
+
312
+ &.fs-single-cycle
313
+ {
314
+ h3
315
+ {
316
+ background: $pricing_color;
317
+ margin: 0;
318
+ padding-bottom: 0;
319
+ color: #0073aa;
320
+ }
321
+
322
+ .nav-tab-wrapper,
323
+ .fs-billing-frequency
324
+ {
325
+ display: none;
326
+ }
327
+ }
328
+
329
+ .fs-pricing-body
330
+ {
331
+ background: $pricing_color;
332
+ padding: 20px;
333
+ }
334
+
335
+ .button
336
+ {
337
+ width: 100%;
338
+ text-align: center;
339
+ font-weight: bold;
340
+ text-transform: uppercase;
341
+ font-size: 1.1em;
342
+ }
343
+
344
+ label
345
+ {
346
+ white-space: nowrap;
347
+ }
348
+
349
+ var {
350
+ font-style: normal;
351
+ }
352
+
353
+ .fs-billing-frequency,
354
+ .fs-annual-discount
355
+ {
356
+ text-align: center;
357
+ display: block;
358
+ font-weight: bold;
359
+ margin-bottom: 10px;
360
+ text-transform: uppercase;
361
+ background: #F3F3F3;
362
+ padding: 2px;
363
+ border: 1px solid #ccc;
364
+ }
365
+
366
+ .fs-annual-discount
367
+ {
368
+ text-transform: none;
369
+ color: green;
370
+ background: greenyellow;
371
+ }
372
+
373
+ ul.fs-trial-terms
374
+ {
375
+ font-size: 0.9em;
376
+
377
+ i
378
+ {
379
+ float: left;
380
+ margin: 0 0 0 -15px;
381
+ }
382
+
383
+ li
384
+ {
385
+ margin: 10px 0 0 0;
386
+ }
387
+ }
388
+ }
389
+ }
390
+
391
+ #section-features
392
+ {
393
+ .fs-features
394
+ {
395
+ margin: -20px -26px;
396
+ }
397
+
398
+ table
399
+ {
400
+ width: 100%;
401
+ border-spacing: 0;
402
+ border-collapse: separate;
403
+
404
+ thead
405
+ {
406
+ th
407
+ {
408
+ padding: 10px 0;
409
+ }
410
+
411
+ .fs-price
412
+ {
413
+ color: $fs-logo-green-color;
414
+ font-weight: normal;
415
+ display: block;
416
+ text-align: center;
417
+ }
418
+ }
419
+
420
+ tbody
421
+ {
422
+ td
423
+ {
424
+ border-top: 1px solid #ccc;
425
+ padding: 10px 0;
426
+ text-align: center;
427
+ width: 100px;
428
+ color: $fs-logo-green-color;
429
+
430
+ &:first-child
431
+ {
432
+ text-align: left;
433
+ width: auto;
434
+ color: inherit;
435
+ padding-left: 26px;
436
+ }
437
+ }
438
+ tr.fs-odd
439
+ {
440
+ td
441
+ {
442
+ background: #fefefe;
443
+ }
444
+ }
445
+ }
446
+ }
447
+
448
+ .dashicons-yes
449
+ {
450
+ width: 30px;
451
+ height: 30px;
452
+ font-size: 30px;
453
+ }
454
+ }
455
+ }
456
+
457
+ .fs-dropdown {
458
+ #fs_addons .fs-cards-list .fs-card .fs-inner &, #plugin-information & {
459
+ .button-group {
460
+ .button {
461
+ position: relative;
462
+ width: auto;
463
+ top: 0;
464
+ right: 0;
465
+
466
+ &:focus {
467
+ z-index: 10;
468
+ }
469
+ }
470
+
471
+ .fs-dropdown-arrow {
472
+ border-top: 6px solid white;
473
+ border-right: 4px solid transparent;
474
+ border-left: 4px solid transparent;
475
+ top: 12px;
476
+ position: relative;
477
+ }
478
+ }
479
+
480
+ &.active:not(.up) {
481
+ .button:not(.fs-dropdown-arrow-button) {
482
+ border-bottom-left-radius: 0;
483
+ }
484
+
485
+ .fs-dropdown-arrow-button {
486
+ border-bottom-right-radius: 0;
487
+ }
488
+ }
489
+
490
+ &.active.up {
491
+ .button:not(.fs-dropdown-arrow-button) {
492
+ border-top-left-radius: 0;
493
+ }
494
+
495
+ .fs-dropdown-arrow-button {
496
+ border-top-right-radius: 0;
497
+ }
498
+ }
499
+
500
+ .fs-dropdown-list {
501
+ position: absolute;
502
+ right: -1px;
503
+ top: 100%;
504
+ margin-left: auto;
505
+ padding: 3px 0;
506
+ border: 1px solid lighten($darkest-color, 75%);
507
+ background-color: #fff;
508
+ z-index: 1;
509
+ width: 230px;
510
+ text-align: left;
511
+ @include box-shadow(0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12));
512
+
513
+ li {
514
+ margin: 0;
515
+
516
+ a {
517
+ display: block;
518
+ padding: 5px 10px;
519
+ text-decoration: none;
520
+ text-shadow: none;
521
+ }
522
+
523
+ &:hover {
524
+ background-color: $wp-selected-color;
525
+ color: #fff;
526
+
527
+ a {
528
+ color: #fff;
529
+ }
530
+ }
531
+ }
532
+ }
533
+
534
+ &:not(.up) {
535
+ .fs-dropdown-list {
536
+ @include border-radius(3px 0 3px 3px);
537
+ }
538
+ }
539
+
540
+ &.up {
541
+ .fs-dropdown-list {
542
+ @include border-radius(3px 3px 0 3px);
543
+ }
544
+ }
545
+ }
546
+
547
+ #plugin-information & {
548
+ .button-group {
549
+ width: 100%;
550
+
551
+ .button {
552
+ float: none;
553
+ font-size: 14px;
554
+ font-weight: normal;
555
+ text-transform: none;
556
+ }
557
+ }
558
+
559
+ .fs-dropdown-list {
560
+ margin-top: 1px;
561
+ }
562
+
563
+ &.up {
564
+ .fs-dropdown-list {
565
+ top: auto;
566
+ bottom: 100%;
567
+ margin-bottom: 2px;
568
+ }
569
+ }
570
+ }
571
+ }
572
+
573
+ #plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group {
574
+ text-align: center;
575
+
576
+ display: table;
577
+
578
+ .button {
579
+ display: table-cell;
580
+
581
+ &:not(.fs-dropdown-arrow-button) {
582
+ left: 1px;
583
+ width: 100%;
584
+ }
585
+ }
586
+ }
587
+
588
+ #plugin-information-footer {
589
+ > .button, .fs-dropdown {
590
+ position: relative;
591
+ top: 3px;
592
+
593
+ &.left {
594
+ float: left;
595
+ }
596
+ }
597
+
598
+ > .right, .fs-dropdown {
599
+ float: right;
600
+ }
601
+ }
602
+
603
+ @media screen and (max-width: 961px) {
604
+ #fs_addons
605
+ {
606
+ .fs-cards-list
607
+ {
608
+ .fs-card
609
+ {
610
+ height: 265px;
611
+ }
612
+ }
613
+ }
614
+ }
freemius/assets/scss/admin/affiliation.scss ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ #fs_affiliation_content_wrapper {
4
+ #messages {
5
+ margin-top: 25px;
6
+ }
7
+
8
+ h3 {
9
+ font-size: 24px;
10
+ padding: 0;
11
+ margin-left: 0;
12
+ }
13
+
14
+ ul {
15
+ li {
16
+ @include box-sizing(border-box);
17
+ list-style-type: none;
18
+
19
+ &:before {
20
+ content: '✓';
21
+ margin-right: 10px;
22
+ font-weight: bold;
23
+ }
24
+ }
25
+ }
26
+
27
+ p:not(.description), li, label {
28
+ font-size: 16px !important;
29
+ line-height: 26px !important;
30
+ }
31
+
32
+ .button {
33
+ margin-top: 20px;
34
+ margin-bottom: 7px;
35
+ line-height: 35px;
36
+ height: 40px;
37
+ font-size: 16px;
38
+
39
+ &#cancel_button {
40
+ margin-right: 5px;
41
+ }
42
+ }
43
+
44
+ form {
45
+ .input-container {
46
+ .input-label {
47
+ font-weight: bold;
48
+ display: block;
49
+ width: 100%;
50
+ }
51
+
52
+ &.input-container-text {
53
+ label, input, textarea {
54
+ display: block;
55
+ }
56
+ }
57
+
58
+ margin-bottom: 15px;
59
+
60
+ #add_domain, .remove-domain {
61
+ text-decoration: none;
62
+ display: inline-block;
63
+ margin-top: 3px;
64
+
65
+ &:focus {
66
+ box-shadow: none;
67
+ }
68
+
69
+ &.disabled {
70
+ color: #aaa;
71
+ cursor: default;
72
+ }
73
+ }
74
+ }
75
+
76
+ #extra_domains_container {
77
+ .description {
78
+ margin-top: 0;
79
+ position: relative;
80
+ top: -4px;
81
+ }
82
+
83
+ .extra-domain-input-container {
84
+ margin-bottom: 15px;
85
+
86
+ .domain {
87
+ display: inline-block;
88
+ margin-right: 5px;
89
+
90
+ &:last-of-type {
91
+ margin-bottom: 0;
92
+ }
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
freemius/assets/scss/admin/checkout.scss ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ @media screen and (max-width: 782px) {
2
+ #wpbody-content {
3
+ padding-bottom: 0 !important;
4
+ }
5
+ }
freemius/assets/scss/admin/common.scss ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "themes";
3
+ @import "switch";
4
+
5
+ #fs_frame
6
+ {
7
+ line-height: 0;
8
+ font-size: 0;
9
+ }
10
+
11
+ .fs-full-size-wrapper
12
+ {
13
+ margin: 40px 0 -65px -20px;
14
+
15
+ @media (max-width: 600px) {
16
+ margin: 0 0 -65px -10px;
17
+ }
18
+ }
19
+
20
+ .fs-notice
21
+ {
22
+ position: relative;
23
+
24
+ &.fs-has-title
25
+ {
26
+ margin-bottom: 30px !important;
27
+ }
28
+
29
+ &.success
30
+ {
31
+ color: green;
32
+ // font-weight: normal;
33
+ }
34
+
35
+ &.promotion
36
+ {
37
+ border-color: $fs-notice-promotion-border-color !important;
38
+ background-color: $fs-notice-promotion-bkg !important;
39
+ }
40
+
41
+ .fs-notice-body
42
+ {
43
+ margin: .5em 0;
44
+ padding: 2px;
45
+ }
46
+
47
+ .fs-close
48
+ {
49
+ // position: absolute;
50
+ // top: 2px;
51
+ // bottom: 2px;
52
+ // right: 2px;
53
+ // min-width: 100px;
54
+ // text-align: center;
55
+ // padding-right: 2px;
56
+ cursor: pointer;
57
+ color: #aaa;
58
+ float: right;
59
+
60
+ &:hover
61
+ {
62
+ color: #666;
63
+ // background: #A9A9A9;
64
+ }
65
+
66
+ > *
67
+ {
68
+ margin-top: 7px;
69
+ display: inline-block;
70
+ }
71
+ }
72
+
73
+ label.fs-plugin-title
74
+ {
75
+ background: rgba(0, 0, 0, 0.3);
76
+ color: #fff;
77
+ padding: 2px 10px;
78
+ position: absolute;
79
+ top: 100%;
80
+ bottom: auto;
81
+ right: auto;
82
+ @include border-radius(0 0 3px 3px);
83
+ left: 10px;
84
+ font-size: 12px;
85
+ font-weight: bold;
86
+ cursor: auto;
87
+ }
88
+ }
89
+
90
+ div.fs-notice
91
+ {
92
+ &.updated,
93
+ &.success,
94
+ &.promotion
95
+ {
96
+ display: block !important;
97
+ }
98
+ }
99
+
100
+ .rtl .fs-notice
101
+ {
102
+ .fs-close
103
+ {
104
+ // left: 2px;
105
+ // right: auto;
106
+ // padding-right: 0;
107
+ // padding-left: 2px;
108
+ float: left;
109
+ }
110
+ }
111
+
112
+ .fs-secure-notice
113
+ {
114
+ position: fixed;
115
+ top: 32px;
116
+ left: 160px;
117
+ right: 0;
118
+ background: rgb(235, 253, 235);
119
+ padding: 10px 20px;
120
+ color: green;
121
+ z-index: 9999;
122
+ @include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3));
123
+ @include opacity(0.95);
124
+
125
+ &:hover
126
+ {
127
+ @include opacity(1);
128
+ }
129
+
130
+ a.fs-security-proof
131
+ {
132
+ color: green;
133
+ text-decoration: none;
134
+ }
135
+ }
136
+
137
+ @media screen and (max-width: 960px) {
138
+ .fs-secure-notice
139
+ {
140
+ left: 36px;
141
+ }
142
+ }
143
+
144
+ @media screen and (max-width: 600px) {
145
+ .fs-secure-notice
146
+ {
147
+ display: none;
148
+ }
149
+ }
150
+
151
+ @media screen and (max-width: 1250px) {
152
+ #fs_promo_tab
153
+ {
154
+ display: none;
155
+ }
156
+ }
157
+
158
+ @media screen and (max-width: 782px) {
159
+ .fs-secure-notice
160
+ {
161
+ left: 0;
162
+ top: 46px;
163
+ text-align: center;
164
+ }
165
+ }
166
+
167
+ span.fs-submenu-item.fs-sub:before
168
+ {
169
+ // Add small arrow.
170
+ content: '\21B3';
171
+ padding: 0 5px;
172
+ }
173
+
174
+ .rtl
175
+ {
176
+ span.fs-submenu-item.fs-sub:before
177
+ {
178
+ // Add small RTL arrow.
179
+ content: '\21B2';
180
+ }
181
+ }
182
+
183
+ .fs-submenu-item
184
+ {
185
+ &.pricing
186
+ {
187
+ &.upgrade-mode
188
+ {
189
+ color: greenyellow;
190
+ }
191
+
192
+ &.trial-mode
193
+ {
194
+ color: #83e2ff;
195
+ }
196
+ }
197
+ }
198
+
199
+ #adminmenu .update-plugins.fs-trial
200
+ {
201
+ background-color: #00b9eb;
202
+ }
203
+ .fs-ajax-spinner
204
+ {
205
+ border: 0;
206
+ width: 20px;
207
+ height: 20px;
208
+ margin-right: 5px;
209
+ vertical-align: sub;
210
+ display: inline-block;
211
+ background: url('/wp-admin/images/wpspin_light-2x.gif');
212
+ background-size: contain;
213
+ margin-bottom: -2px;
214
+ }
215
+
216
+ .wrap.fs-section {
217
+ h2 {
218
+ text-align: left;
219
+ }
220
+ }
221
+
222
+ @import "plugin-upgrade-notice";
freemius/assets/scss/admin/connect.scss ADDED
@@ -0,0 +1,564 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ $form_width: 480px;
4
+
5
+ #fs_connect
6
+ {
7
+ width: $form_width;
8
+ @include box-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
9
+ margin: 20px 0;
10
+
11
+ @media screen and (max-width: ($form_width - 1)) {
12
+ @include box-shadow(none);
13
+ width: auto;
14
+ margin: 0 0 0 -10px;
15
+ }
16
+
17
+ .fs-content
18
+ {
19
+ background: #fff;
20
+ padding: 15px 20px;
21
+
22
+ .fs-error {
23
+ background: snow;
24
+ color: $fs-logo-magenta-color;
25
+ border: 1px solid $fs-logo-magenta-color;
26
+ @include box-shadow(0 1px 1px 0 rgba(0,0,0,.1));
27
+ text-align: center;
28
+ padding: 5px;
29
+ margin-bottom: 10px;
30
+ }
31
+
32
+ p
33
+ {
34
+ margin: 0;
35
+ padding: 0;
36
+ font-size: 1.2em;
37
+ }
38
+ }
39
+
40
+ .fs-license-key-container {
41
+ position: relative;
42
+ width: 280px;
43
+ margin: 10px auto 0 auto;
44
+
45
+ input {
46
+ width: 100%;
47
+ }
48
+
49
+ .dashicons {
50
+ position: absolute;
51
+ top: 5px;
52
+ right: 5px;
53
+ }
54
+ }
55
+
56
+ &.require-license-key {
57
+ .fs-sites-list-container {
58
+ td {
59
+ cursor: pointer;
60
+ }
61
+ }
62
+ }
63
+
64
+ #delegate_to_site_admins {
65
+ margin-right: 15px;
66
+ float: right;
67
+ height: 26px;
68
+ vertical-align: middle;
69
+ line-height: 37px;
70
+ font-weight: bold;
71
+ border-bottom: 1px dashed;
72
+ text-decoration: none;
73
+
74
+ &.rtl {
75
+ margin-left: 15px;
76
+ margin-right: 0;
77
+ }
78
+ }
79
+
80
+ .fs-actions
81
+ {
82
+ padding: 10px 20px;
83
+ background: #C0C7CA;
84
+
85
+ .button
86
+ {
87
+ padding: 0 10px 1px;
88
+ line-height: 35px;
89
+ height: 37px;
90
+ font-size: 16px;
91
+ margin-bottom: 0;
92
+
93
+ .dashicons
94
+ {
95
+ font-size: 37px;
96
+ margin-left: -8px;
97
+ margin-right: 12px;
98
+ }
99
+
100
+ &.button-primary
101
+ {
102
+ padding-right: 15px;
103
+ padding-left: 15px;
104
+
105
+ &:after
106
+ {
107
+ content: ' \279C';
108
+ }
109
+
110
+ &.fs-loading
111
+ {
112
+ &:after
113
+ {
114
+ content: '';
115
+ }
116
+ }
117
+ }
118
+
119
+ &.button-secondary
120
+ {
121
+ float: right;
122
+ }
123
+ }
124
+
125
+ // .fs-skip
126
+ // {
127
+ // line-height: 38px;
128
+ // vertical-align: middle;
129
+ // text-decoration: none;
130
+ // margin-left: 10px;
131
+ // }
132
+ }
133
+
134
+ &.fs-anonymous-disabled
135
+ {
136
+ .fs-actions
137
+ {
138
+ .button.button-primary
139
+ {
140
+ width: 100%;
141
+ }
142
+ }
143
+ }
144
+
145
+ .fs-permissions
146
+ {
147
+ padding: 10px 20px;
148
+ background: #FEFEFE;
149
+ // background: #F1F1F1;
150
+ @include transition(background 0.5s ease);
151
+
152
+ .fs-license-sync-disclaimer {
153
+ text-align: center;
154
+ margin-top: 0;
155
+ }
156
+
157
+ & > .fs-trigger
158
+ {
159
+ font-size: 0.9em;
160
+ text-decoration: none;
161
+ text-align: center;
162
+ display: block;
163
+ }
164
+
165
+ ul
166
+ {
167
+ height: 0;
168
+ overflow: hidden;
169
+ margin: 0;
170
+
171
+ li
172
+ {
173
+ margin-bottom: 12px;
174
+
175
+ &:last-child
176
+ {
177
+ margin-bottom: 0;
178
+ }
179
+
180
+ & > i.dashicons
181
+ {
182
+ float: left;
183
+ font-size: 40px;
184
+ width: 40px;
185
+ height: 40px;
186
+ }
187
+
188
+ .fs-switch {
189
+ float: right;
190
+ }
191
+
192
+ .fs-permission-description
193
+ {
194
+ margin-left: 55px;
195
+
196
+ span
197
+ {
198
+ font-weight: bold;
199
+ text-transform: uppercase;
200
+ color: #23282d;
201
+ }
202
+
203
+ p
204
+ {
205
+ margin: 2px 0 0 0;
206
+ }
207
+ }
208
+ }
209
+ }
210
+
211
+ &.fs-open
212
+ {
213
+ background: #fff;
214
+
215
+ ul
216
+ {
217
+ overflow: initial;
218
+ height: auto;
219
+ margin: 20px 20px 10px 20px;
220
+ }
221
+ }
222
+
223
+ @media screen and (max-width: ($form_width - 1)) {
224
+ background: #fff;
225
+
226
+ .fs-trigger
227
+ {
228
+ display: none;
229
+ }
230
+
231
+ ul
232
+ {
233
+ height: auto;
234
+ margin: 20px;
235
+ }
236
+ }
237
+ }
238
+
239
+ .fs-freemium-licensing {
240
+ padding: 8px;
241
+ // background: #0085BA;
242
+ background: #777;
243
+ color: #fff;
244
+
245
+ p {
246
+ text-align: center;
247
+ display: block;
248
+ margin: 0;
249
+ padding: 0;
250
+ }
251
+
252
+ a {
253
+ color: #C2EEFF;
254
+ text-decoration: underline;
255
+ }
256
+ }
257
+
258
+ $icon_size: 80px;
259
+ $wp_logo_padding: $icon_size / 10;
260
+ $icons_top: 10px;
261
+
262
+ .fs-visual
263
+ {
264
+ padding: 12px;
265
+ line-height: 0;
266
+ background: #fafafa;
267
+ height: $icon_size;
268
+ position: relative;
269
+
270
+ .fs-site-icon
271
+ {
272
+ position: absolute;
273
+ left: 20px;
274
+ top: $icons_top;
275
+ }
276
+
277
+ .fs-connect-logo
278
+ {
279
+ position: absolute;
280
+ right: 20px;
281
+ top: $icons_top;
282
+ }
283
+
284
+ .fs-plugin-icon
285
+ {
286
+ position: absolute;
287
+ top: $icons_top;
288
+ left: 50%;
289
+ margin-left: - ($icon_size / 2);
290
+ }
291
+
292
+ .fs-plugin-icon,
293
+ .fs-site-icon,
294
+ img,
295
+ object
296
+ {
297
+ width: $icon_size;
298
+ height: $icon_size;
299
+ }
300
+
301
+ .dashicons-wordpress
302
+ {
303
+ font-size: $icon_size - ($wp_logo_padding * 2);
304
+ background: $wordpress_color;
305
+ color: #fff;
306
+ width: $icon_size - ($wp_logo_padding * 2);
307
+ height: $icon_size - ($wp_logo_padding * 2);
308
+ padding: $wp_logo_padding;
309
+ }
310
+
311
+ .dashicons-plus
312
+ {
313
+ position: absolute;
314
+ top: 50%;
315
+ font-size: 30px;
316
+ margin-top: -10px;
317
+ color: #bbb;
318
+
319
+ &.fs-first
320
+ {
321
+ left: 28%;
322
+ }
323
+ &.fs-second
324
+ {
325
+ left: 65%;
326
+ }
327
+ }
328
+
329
+ .fs-plugin-icon,
330
+ .fs-connect-logo,
331
+ .fs-site-icon
332
+ {
333
+ border: 1px solid #ccc;
334
+ padding: 1px;
335
+ background: #fff;
336
+ }
337
+ }
338
+
339
+ .fs-terms
340
+ {
341
+ text-align: center;
342
+ font-size: 0.85em;
343
+ padding: 5px;
344
+ background: rgba(0, 0, 0, 0.05);
345
+
346
+ &, a
347
+ {
348
+ color: #999;
349
+ }
350
+
351
+ a
352
+ {
353
+ text-decoration: none;
354
+ }
355
+ }
356
+ }
357
+
358
+ @import "multisite-options";
359
+ @import "tooltip";
360
+ @import "gdpr-consent";
361
+
362
+ .rtl
363
+ {
364
+ #fs_connect
365
+ {
366
+ .fs-actions
367
+ {
368
+ padding: 10px 20px;
369
+ background: #C0C7CA;
370
+
371
+ .button
372
+ {
373
+ .dashicons
374
+ {
375
+ font-size: 37px;
376
+ margin-left: -8px;
377
+ margin-right: 12px;
378
+ }
379
+
380
+ &.button-primary
381
+ {
382
+ &:after
383
+ {
384
+ content: ' \000bb';
385
+ }
386
+
387
+ &.fs-loading
388
+ {
389
+ &:after
390
+ {
391
+ content: '';
392
+ }
393
+ }
394
+ }
395
+
396
+ &.button-secondary
397
+ {
398
+ float: left;
399
+ }
400
+ }
401
+ }
402
+
403
+ .fs-permissions
404
+ {
405
+ ul
406
+ {
407
+ li
408
+ {
409
+ .fs-permission-description
410
+ {
411
+ margin-right: 55px;
412
+ margin-left: 0;
413
+ }
414
+
415
+ .fs-switch {
416
+ float: left;
417
+ }
418
+
419
+ i.dashicons
420
+ {
421
+ float: right;
422
+ }
423
+
424
+ }
425
+ }
426
+ }
427
+
428
+ .fs-visual
429
+ {
430
+ .fs-site-icon
431
+ {
432
+ right: 20px;
433
+ left: auto;
434
+ }
435
+
436
+ .fs-connect-logo
437
+ {
438
+ right: auto;
439
+ left: 20px;
440
+ }
441
+ }
442
+ }
443
+ }
444
+
445
+ #fs_theme_connect_wrapper {
446
+ position: fixed;
447
+ top: 0;
448
+ height: 100%;
449
+ width: 100%;
450
+ z-index: 99990;
451
+ background: rgba(0, 0, 0, 0.75);
452
+ text-align: center;
453
+ overflow-y: auto;
454
+
455
+ &:before {
456
+ content: "";
457
+ display: inline-block;
458
+ vertical-align: middle;
459
+ height: 100%;
460
+ }
461
+
462
+ > button.close {
463
+ color: white;
464
+ cursor: pointer;
465
+ height: 40px;
466
+ width: 40px;
467
+ position: absolute;
468
+ right: 0;
469
+ border: 0;
470
+ background-color: transparent;
471
+ top: 32px;
472
+ }
473
+
474
+ #fs_connect {
475
+ top: 0;
476
+ text-align: left;
477
+ display: inline-block;
478
+ vertical-align: middle;
479
+ margin-top: 52px;
480
+ margin-bottom: 20px;
481
+
482
+ .fs-terms
483
+ {
484
+ background: rgba(140, 140, 140, 0.64);
485
+
486
+ &, a
487
+ {
488
+ color: #c5c5c5;
489
+ }
490
+ }
491
+ }
492
+ }
493
+
494
+ .wp-pointer-content
495
+ {
496
+ #fs_connect
497
+ {
498
+ margin: 0;
499
+ @include box-shadow(none);
500
+ }
501
+ }
502
+
503
+ .fs-opt-in-pointer
504
+ {
505
+ .wp-pointer-content
506
+ {
507
+ padding: 0;
508
+ }
509
+
510
+ &.wp-pointer-top
511
+ {
512
+ .wp-pointer-arrow
513
+ {
514
+ border-bottom-color: #dfdfdf;
515
+ }
516
+ .wp-pointer-arrow-inner
517
+ {
518
+ border-bottom-color: #fafafa;
519
+ }
520
+ }
521
+
522
+ &.wp-pointer-bottom
523
+ {
524
+ .wp-pointer-arrow
525
+ {
526
+ border-top-color: #dfdfdf;
527
+ }
528
+ .wp-pointer-arrow-inner
529
+ {
530
+ border-top-color: #fafafa;
531
+ }
532
+ }
533
+
534
+ &.wp-pointer-left
535
+ {
536
+ .wp-pointer-arrow
537
+ {
538
+ border-right-color: #dfdfdf;
539
+ }
540
+ .wp-pointer-arrow-inner
541
+ {
542
+ border-right-color: #fafafa;
543
+ }
544
+ }
545
+
546
+ &.wp-pointer-right
547
+ {
548
+ .wp-pointer-arrow
549
+ {
550
+ border-left-color: #dfdfdf;
551
+ }
552
+ .wp-pointer-arrow-inner
553
+ {
554
+ border-left-color: #fafafa;
555
+ }
556
+ }
557
+ }
558
+
559
+ #license_issues_link {
560
+ display: block;
561
+ text-align: center;
562
+ font-size: 0.9em;
563
+ margin-top: 10px;
564
+ }
freemius/assets/scss/admin/debug.scss ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+
3
+ .fs-switch-label
4
+ {
5
+ font-size: 20px;
6
+ line-height: 31px;
7
+ margin: 0 5px;
8
+ }
9
+
10
+ #fs_log_book {
11
+ table {
12
+ font-family: Consolas,Monaco,monospace;
13
+ font-size: 12px;
14
+
15
+ th {
16
+ color: #ccc;
17
+ }
18
+
19
+ tr {
20
+ background: #232525;
21
+
22
+ &.alternate {
23
+ background: #2b2b2b;
24
+ }
25
+
26
+ td {
27
+ &.fs-col--logger {
28
+ color: #5a7435;
29
+ }
30
+ &.fs-col--type {
31
+ color: #ffc861;
32
+ }
33
+ &.fs-col--function {
34
+ color: #a7b7b1;
35
+ font-weight: bold;
36
+ }
37
+ &.fs-col--message {
38
+ &, a
39
+ {
40
+ color: #9a73ac !important;
41
+ }
42
+ }
43
+ &.fs-col--file {
44
+ color: #d07922;
45
+ }
46
+ &.fs-col--timestamp {
47
+ color: #6596be;
48
+ }
49
+ }
50
+ }
51
+ }
52
+ }
freemius/assets/scss/admin/dialog-boxes.scss ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "modal-common";
3
+ @import "deactivation-feedback";
4
+ @import "subscription-cancellation";
5
+ @import "license-activation";
6
+ @import "user-change";
7
+ @import "data-debug-mode";
8
+ @import "multisite-options";
9
+ @import "license-key-resend";
10
+ @import "ajax-loader";
11
+ @import "auto-install";
12
+ @import "buttons";
freemius/assets/scss/admin/gdpr-optin-notice.scss ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .fs-notice[data-id^="gdpr_optin_actions"]
2
+ {
3
+ .underlined {
4
+ text-decoration: underline;
5
+ }
6
+
7
+ ul {
8
+ .button, .action-description {
9
+ vertical-align: middle;
10
+ }
11
+
12
+ .action-description {
13
+ display: inline-block;
14
+ margin-left: 3px;
15
+ }
16
+ }
17
+ }
freemius/assets/scss/admin/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ // Hide file structure from users on unprotected servers.
freemius/assets/scss/admin/plugins.scss ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "../start";
2
+ @import "tag";
3
+
4
+ .wp-list-table.plugins {
5
+ .plugin-title {
6
+ span.fs-tag {
7
+ display : inline-block;
8
+ margin-left: 5px;
9
+ line-height: 10px;
10
+ }
11
+ }
12
+ }
freemius/assets/scss/customizer.scss ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import "start";
2
+
3
+ #fs_customizer_upsell {
4
+ .fs-customizer-plan {
5
+ padding: 10px 20px 20px 20px;
6
+ border-radius: 3px;
7
+ background: #fff;
8
+
9
+ h2 {
10
+ position: relative;
11
+ margin: 0;
12
+ line-height: 2em;
13
+ text-transform: uppercase;
14
+
15
+ .button-link {
16
+ top: -2px;
17
+ }
18
+ }
19
+ }
20
+
21
+ .fs-feature {
22
+ position: relative;
23
+ }
24
+
25
+ .dashicons-yes {
26
+ color: #0085ba;
27
+ font-size: 2em;
28
+ vertical-align: bottom;
29
+ margin-left: -7px;
30
+ margin-right: 10px;
31
+
32
+ .rtl & {
33
+ margin-left: 10px;
34
+ margin-right: -7px;
35
+ }
36
+ }
37
+
38
+ .dashicons-editor-help
39
+ {
40
+ color: #bbb;
41
+ cursor: help;
42
+
43
+ $tooltip-color: #000;
44
+
45
+ .fs-feature-desc {
46
+ opacity: 0;
47
+ visibility: hidden;
48
+ @include transition(opacity 0.3s ease-in-out);
49
+
50
+ position: absolute;
51
+ background: $tooltip-color;
52
+ color: #fff;
53
+ font-family: 'arial', serif;
54
+ font-size: 12px;
55
+ padding: 10px;
56
+ z-index: 999999;
57
+ bottom: 100%;
58
+ margin-bottom: 5px;
59
+ left: 0;
60
+ right: 0;
61
+ @include border-radius(5px);
62
+ @include box-shadow(1px 1px 1px rgba(0,0,0,0.2));
63
+ line-height: 1.3em;
64
+ font-weight: bold;
65
+ text-align: left;
66
+
67
+ .rtl &
68
+ {
69
+ text-align: right;
70
+ }
71
+
72
+ &::after {
73
+ content: ' ';
74
+ display: block;
75
+ width: 0;
76
+ height: 0;
77
+ border-style: solid;
78
+ border-width: 5px 5px 0 5px;
79
+ border-color: $tooltip-color transparent transparent transparent;
80
+ position: absolute;
81
+ top: 100%;
82
+ left: 21px;
83
+
84
+ .rtl & {
85
+ right: 21px;
86
+ left: auto;
87
+ }
88
+ }
89
+ }
90
+
91
+ &:hover {
92
+ .fs-feature-desc {
93
+ visibility: visible;
94
+ opacity: 1;
95
+ }
96
+ }
97
+ }
98
+
99
+ .button-primary {
100
+ display: block;
101
+ text-align: center;
102
+ margin-top: 10px;
103
+ }
104
+ }
105
+
106
+ #fs_customizer_support
107
+ {
108
+ display: block !important;
109
+
110
+ .button {
111
+ float: right;
112
+ }
113
+
114
+ .button-group {
115
+ width: 100%;
116
+ display: block;
117
+ margin-top: 10px;
118
+
119
+ .button {
120
+ float: none;
121
+ width: 50%;
122
+ text-align: center;
123
+ }
124
+ }
125
+ }
126
+
127
+ #customize-theme-controls #accordion-section-freemius_upsell
128
+ {
129
+ border-top: 1px solid $wp-button-primary-background-color !important;;
130
+ border-bottom: 1px solid $wp-button-primary-background-color !important;;
131
+
132
+ h3.accordion-section-title
133
+ {
134
+ color: $wp-button-primary-color;
135
+ background-color: $wp-button-primary-background-color;
136
+ border-left: 4px solid $wp-button-primary-background-color;
137
+ transition: .15s background-color ease-in-out, .15s border-color ease-in-out;
138
+ outline: none;
139
+ border-bottom: none !important;
140
+
141
+ &:hover
142
+ {
143
+ background-color: $wp-button-primary-hover-background-color;
144
+ border-left-color: $wp-button-primary-active-background-color;
145
+ }
146
+
147
+ &:after {
148
+ color: $wp-button-primary-color;
149
+ }
150
+ }
151
+
152
+ .rtl
153
+ {
154
+ h3.accordion-section-title
155
+ {
156
+ border-left: none;
157
+ border-right: 4px solid $wp-button-primary-background-color;
158
+
159
+ &:hover
160
+ {
161
+ border-right-color: $wp-button-primary-active-background-color;
162
+ }
163
+ }
164
+ }
165
+ }
freemius/assets/scss/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ // Hide file structure from users on unprotected servers.
freemius/composer.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "freemius/wordpress-sdk",
3
+ "description": "Freemius WordPress SDK",
4
+ "keywords": ["freemius", "wordpress", "plugin", "wordpress-plugin", "theme", "wordpress-theme", "sdk"],
5
+ "homepage": "https://freemius.com",
6
+ "license": "GPL-3.0-only",
7
+ "require": {
8
+ "php": ">=5.2"
9
+ }
10
+ }
freemius/gulpfile.js ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -3550,6 +3550,8 @@
3550
  * @since 1.1.7.3
3551
  */
3552
  static function _toggle_debug_mode() {
 
 
3553
  if ( ! is_super_admin() ) {
3554
  return;
3555
  }
@@ -3571,10 +3573,19 @@
3571
  * @since 1.2.1.6
3572
  */
3573
  static function _get_debug_log() {
 
 
 
 
 
 
 
 
 
3574
  $logs = FS_Logger::load_db_logs(
3575
  fs_request_get( 'filters', false, 'post' ),
3576
- ! empty( $_POST['limit'] ) && is_numeric( $_POST['limit'] ) ? $_POST['limit'] : 200,
3577
- ! empty( $_POST['offset'] ) && is_numeric( $_POST['offset'] ) ? $_POST['offset'] : 0
3578
  );
3579
 
3580
  self::shoot_ajax_success( $logs );
@@ -4047,7 +4058,7 @@
4047
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4048
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
4049
 
4050
- $secure_auth = SECURE_AUTH_KEY;
4051
  if ( empty( $secure_auth ) ||
4052
  false !== strpos( $secure_auth, ' ' ) ||
4053
  'put your unique phrase here' === $secure_auth
@@ -4447,6 +4458,12 @@
4447
  * @since 1.0.9
4448
  */
4449
  function _email_about_firewall_issue() {
 
 
 
 
 
 
4450
  $this->_admin_notices->remove_sticky( 'failed_connect_api' );
4451
 
4452
  $pong = $this->ping();
@@ -4521,6 +4538,12 @@
4521
  * @since 1.1.7.4
4522
  */
4523
  function _retry_connectivity_test() {
 
 
 
 
 
 
4524
  $this->_admin_notices->remove_sticky( 'failed_connect_api_first' );
4525
 
4526
  $pong = $this->ping();
3550
  * @since 1.1.7.3
3551
  */
3552
  static function _toggle_debug_mode() {
3553
+ check_admin_referer( 'fs_toggle_debug_mode' );
3554
+
3555
  if ( ! is_super_admin() ) {
3556
  return;
3557
  }
3573
  * @since 1.2.1.6
3574
  */
3575
  static function _get_debug_log() {
3576
+ check_admin_referer( 'fs_get_debug_log' );
3577
+
3578
+ if ( ! is_super_admin() ) {
3579
+ return;
3580
+ }
3581
+
3582
+ $limit = min( ! empty( $_POST['limit'] ) ? absint( $_POST['limit'] ) : 200, 200 );
3583
+ $offset = min( ! empty( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 200, 200 );
3584
+
3585
  $logs = FS_Logger::load_db_logs(
3586
  fs_request_get( 'filters', false, 'post' ),
3587
+ $limit,
3588
+ $offset
3589
  );
3590
 
3591
  self::shoot_ajax_success( $logs );
4058
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4059
  $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
4060
 
4061
+ $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : '';
4062
  if ( empty( $secure_auth ) ||
4063
  false !== strpos( $secure_auth, ' ' ) ||
4064
  'put your unique phrase here' === $secure_auth
4458
  * @since 1.0.9
4459
  */
4460
  function _email_about_firewall_issue() {
4461
+ check_admin_referer( 'fs_resolve_firewall_issues' );
4462
+
4463
+ if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
4464
+ return;
4465
+ }
4466
+
4467
  $this->_admin_notices->remove_sticky( 'failed_connect_api' );
4468
 
4469
  $pong = $this->ping();
4538
  * @since 1.1.7.4
4539
  */
4540
  function _retry_connectivity_test() {
4541
+ check_admin_referer( 'fs_retry_connectivity_test' );
4542
+
4543
+ if ( ! current_user_can( is_multisite() ? 'manage_options' : 'activate_plugins' ) ) {
4544
+ return;
4545
+ }
4546
+
4547
  $this->_admin_notices->remove_sticky( 'failed_connect_api_first' );
4548
 
4549
  $pong = $this->ping();
freemius/includes/managers/class-fs-admin-notice-manager.php CHANGED
@@ -175,7 +175,12 @@
175
  *
176
  */
177
  function dismiss_notice_ajax_callback() {
178
- $this->_sticky_storage->remove( $_POST['message_id'] );
 
 
 
 
 
179
  wp_die();
180
  }
181
 
@@ -469,4 +474,4 @@
469
  }
470
 
471
  #endregion
472
- }
175
  *
176
  */
177
  function dismiss_notice_ajax_callback() {
178
+ check_admin_referer( 'fs_dismiss_notice_action' );
179
+
180
+ if ( ! is_numeric( $_POST['message_id'] ) ) {
181
+ $this->_sticky_storage->remove( $_POST['message_id'] );
182
+ }
183
+
184
  wp_die();
185
  }
186
 
474
  }
475
 
476
  #endregion
477
+ }
freemius/includes/sdk/Exceptions/ArgumentNotExistException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
3
  exit;
4
  }
@@ -6,4 +10,4 @@
6
  if ( ! class_exists( 'Freemius_ArgumentNotExistException' ) ) {
7
  class Freemius_ArgumentNotExistException extends Freemius_InvalidArgumentException {
8
  }
9
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  exit;
8
  }
10
  if ( ! class_exists( 'Freemius_ArgumentNotExistException' ) ) {
11
  class Freemius_ArgumentNotExistException extends Freemius_InvalidArgumentException {
12
  }
13
+ }
freemius/includes/sdk/Exceptions/EmptyArgumentException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
3
  exit;
4
  }
@@ -6,4 +10,4 @@
6
  if ( ! class_exists( 'Freemius_EmptyArgumentException' ) ) {
7
  class Freemius_EmptyArgumentException extends Freemius_InvalidArgumentException {
8
  }
9
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  exit;
8
  }
10
  if ( ! class_exists( 'Freemius_EmptyArgumentException' ) ) {
11
  class Freemius_EmptyArgumentException extends Freemius_InvalidArgumentException {
12
  }
13
+ }
freemius/includes/sdk/Exceptions/Exception.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  /**
4
  * Thrown when an API call returns an exception.
@@ -71,4 +75,4 @@
71
  return $str . $this->getMessage();
72
  }
73
  }
74
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  /**
8
  * Thrown when an API call returns an exception.
75
  return $str . $this->getMessage();
76
  }
77
  }
78
+ }
freemius/includes/sdk/Exceptions/InvalidArgumentException.php CHANGED
@@ -1,8 +1,12 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  exit;
4
  }
5
 
6
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7
  class Freemius_InvalidArgumentException extends Freemius_Exception { }
8
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  exit;
8
  }
9
 
10
  if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
11
  class Freemius_InvalidArgumentException extends Freemius_Exception { }
12
+ }
freemius/includes/sdk/Exceptions/OAuthException.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  if ( ! class_exists( 'Freemius_Exception' ) ) {
3
  exit;
4
  }
@@ -9,4 +13,4 @@
9
  parent::__construct( $pResult );
10
  }
11
  }
12
- }
1
  <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+
6
  if ( ! class_exists( 'Freemius_Exception' ) ) {
7
  exit;
8
  }
13
  parent::__construct( $pResult );
14
  }
15
  }
16
+ }
freemius/includes/sdk/FreemiusBase.php CHANGED
@@ -15,6 +15,10 @@
15
  * under the License.
16
  */
17
 
 
 
 
 
18
  if ( ! defined( 'FS_API__VERSION' ) ) {
19
  define( 'FS_API__VERSION', '1' );
20
  }
15
  * under the License.
16
  */
17
 
18
+ if ( ! defined( 'ABSPATH' ) ) {
19
+ exit;
20
+ }
21
+
22
  if ( ! defined( 'FS_API__VERSION' ) ) {
23
  define( 'FS_API__VERSION', '1' );
24
  }
freemius/includes/sdk/FreemiusWordPress.php CHANGED
@@ -14,6 +14,9 @@
14
  * License for the specific language governing permissions and limitations
15
  * under the License.
16
  */
 
 
 
17
 
18
  require_once dirname( __FILE__ ) . '/FreemiusBase.php';
19
 
@@ -709,4 +712,4 @@
709
  }
710
 
711
  #endregion
712
- }
14
  * License for the specific language governing permissions and limitations
15
  * under the License.
16
  */
17
+ if ( ! defined( 'ABSPATH' ) ) {
18
+ exit;
19
+ }
20
 
21
  require_once dirname( __FILE__ ) . '/FreemiusBase.php';
22
 
712
  }
713
 
714
  #endregion
715
+ }
freemius/languages/freemius-cs_CZ.po ADDED
@@ -0,0 +1,2685 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Karolína Vyskočilová <karolina@kybernaut.cz>, 2019-2020
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: 2021-02-03 09:56+0000\n"
11
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
+ "Language: cs_CZ\n"
13
+ "Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\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.php1919, templates/account.php:912
25
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
26
+ msgstr "Aktualizováním na Beta verzi nahradíte nainstalovanou verzi %s nejnovějším vydáním Beta verze - používejte s opatrností a ne na produkčních webech. Varovali jsme vás."
27
+
28
+ #: includes/class-freemius.php:1926
29
+ msgid "Would you like to proceed with the update?"
30
+ msgstr "Chcete pokračovat v aktualizaci?"
31
+
32
+ #: includes/class-freemius.php:2138
33
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
+ msgstr "Freemius SDK nemohl najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com."
35
+
36
+ #: includes/class-freemius.php:2140
37
+ msgid "Error"
38
+ msgstr "Chyba"
39
+
40
+ #: includes/class-freemius.php:2540
41
+ msgid "I found a better %s"
42
+ msgstr "Našel jsem lepší %s"
43
+
44
+ #: includes/class-freemius.php:2542
45
+ msgid "What's the %s's name?"
46
+ msgstr "Jak se %s jmenuje?"
47
+
48
+ #: includes/class-freemius.php:2548
49
+ msgid "It's a temporary %s. I'm just debugging an issue."
50
+ msgstr "Jen dočasná %s - ladím nějaký problém."
51
+
52
+ #: includes/class-freemius.php:2550
53
+ msgid "Deactivation"
54
+ msgstr "Deaktivace"
55
+
56
+ #: includes/class-freemius.php:2551
57
+ msgid "Theme Switch"
58
+ msgstr "Změna šablony"
59
+
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
+ #: templates/forms/user-change.php:29
62
+ msgid "Other"
63
+ msgstr "Jiné"
64
+
65
+ #: includes/class-freemius.php:2568
66
+ msgid "I no longer need the %s"
67
+ msgstr "Již nepotřebuji %s"
68
+
69
+ #: includes/class-freemius.php:2575
70
+ msgid "I only needed the %s for a short period"
71
+ msgstr "Potřeboval %s jsem jen krátkou dobu"
72
+
73
+ #: includes/class-freemius.php:2581
74
+ msgid "The %s broke my site"
75
+ msgstr "%s rozbil můj web"
76
+
77
+ #: includes/class-freemius.php:2588
78
+ msgid "The %s suddenly stopped working"
79
+ msgstr "%s náhle přestal pracovat"
80
+
81
+ #: includes/class-freemius.php:2598
82
+ msgid "I can't pay for it anymore"
83
+ msgstr "Už si to nemohu dovolit"
84
+
85
+ #: includes/class-freemius.php:2600
86
+ msgid "What price would you feel comfortable paying?"
87
+ msgstr "Jakou cenu byste byli ochotni platit?"
88
+
89
+ #: includes/class-freemius.php:2606
90
+ msgid "I don't like to share my information with you"
91
+ msgstr "Nechci s vámi sdílet své informace"
92
+
93
+ #: includes/class-freemius.php:2627
94
+ msgid "The %s didn't work"
95
+ msgstr "%s nefungoval"
96
+
97
+ #: includes/class-freemius.php:2637
98
+ msgid "I couldn't understand how to make it work"
99
+ msgstr "Nedokázal jsem jej zprovoznit"
100
+
101
+ #: includes/class-freemius.php:2645
102
+ msgid "The %s is great, but I need specific feature that you don't support"
103
+ msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná"
104
+
105
+ #: includes/class-freemius.php:2647
106
+ msgid "What feature?"
107
+ msgstr "Jaká funkce?"
108
+
109
+ #: includes/class-freemius.php:2651
110
+ msgid "The %s is not working"
111
+ msgstr "%s nefunguje"
112
+
113
+ #: includes/class-freemius.php:2653
114
+ msgid "Kindly share what didn't work so we can fix it for future users..."
115
+ msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..."
116
+
117
+ #: includes/class-freemius.php:2657
118
+ msgid "It's not what I was looking for"
119
+ msgstr "Není to to, co jsem hledal"
120
+
121
+ #: includes/class-freemius.php:2659
122
+ msgid "What you've been looking for?"
123
+ msgstr "Co jste hledali?"
124
+
125
+ #: includes/class-freemius.php:2663
126
+ msgid "The %s didn't work as expected"
127
+ msgstr "%s nefungoval podle očekávání"
128
+
129
+ #: includes/class-freemius.php:2665
130
+ msgid "What did you expect?"
131
+ msgstr "Co jste očekávali?"
132
+
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
+ msgid "Freemius Debug"
135
+ msgstr "Freemius Debug"
136
+
137
+ #: includes/class-freemius.php:4272
138
+ msgid "I don't know what is cURL or how to install it, help me!"
139
+ msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!"
140
+
141
+ #: includes/class-freemius.php:4274
142
+ 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."
143
+ msgstr "Zkontaktujeme vaší hostingovou společnost a zkusíme vyřešit tento problém. Na %s dostanete upozornění, jakmile budeme vědět něco nového."
144
+
145
+ #: includes/class-freemius.php:4281
146
+ 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."
147
+ msgstr "Výborně, nainstalujte prosím cURL a povolte ji v souboru php.ini. Dále vyhledejte v souboru php.ini direktivu 'disable_functions ' a odeberte všechny zakázané metody začínající na \"curl_\". Chcete-li se ujistit, že byla úspěšně aktivována, použijte 'phpinfo() '. Jakmile je aktivován, deaktivujte %s a znovu jej aktivujte."
148
+
149
+ #: includes/class-freemius.php:4386
150
+ msgid "Yes - do your thing"
151
+ msgstr "Ano - udělejte, co potřebujete"
152
+
153
+ #: includes/class-freemius.php:4391
154
+ msgid "No - just deactivate"
155
+ msgstr "Ne - jen deaktivovat"
156
+
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
+ msgctxt "exclamation"
166
+ msgid "Oops"
167
+ msgstr "Jejda"
168
+
169
+ #: includes/class-freemius.php:4505
170
+ 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."
171
+ 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."
172
+
173
+ #: includes/class-freemius.php:4927
174
+ msgctxt "addonX cannot run without pluginY"
175
+ msgid "%s cannot run without %s."
176
+ msgstr "%s nelze spustit bez %s."
177
+
178
+ #: includes/class-freemius.php:4928
179
+ msgctxt "addonX cannot run..."
180
+ msgid "%s cannot run without the plugin."
181
+ msgstr "%s nelze spustit bez tohoto pluginu."
182
+
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
186
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
+
188
+ #: includes/class-freemius.php:5857
189
+ msgid "Premium %s version was successfully activated."
190
+ msgstr "Premium %s version was successfully activated."
191
+
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
+ msgctxt ""
194
+ msgid "W00t"
195
+ msgstr "W00t"
196
+
197
+ #: includes/class-freemius.php:5884
198
+ msgid "You have a %s license."
199
+ msgstr "Máte licenci „%s“."
200
+
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
+ msgctxt "interjection expressing joy or exuberance"
206
+ msgid "Yee-haw"
207
+ msgstr "Jupí"
208
+
209
+ #: includes/class-freemius.php:6174
210
+ 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."
211
+ msgstr "%s bezplatná zkušební verze byla úspěšně zrušena. Jelikož toto rozšíření nenabízí bezplatnou verzi, bylo automaticky deaktivováno. Chcete-li jej v budoucnu používat, budete si muset zakoupit licenci."
212
+
213
+ #: includes/class-freemius.php:6178
214
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
+ msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci."
216
+
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
+ #: templates/account/partials/addon.php:381
219
+ msgid "More information about %s"
220
+ msgstr "Více informací o %s"
221
+
222
+ #: includes/class-freemius.php:6188
223
+ msgid "Purchase License"
224
+ msgstr "Koupit licenci"
225
+
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
+ 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."
228
+ msgstr "Aktivační email od %s by měl dorazit do vašeho mailboxu (%s). Ujistěte se, že v emailu kliknete na tlačítko aktivovat, abyste %s."
229
+
230
+ #: includes/class-freemius.php:7129
231
+ msgid "start the trial"
232
+ msgstr "spustit zkušební verzi"
233
+
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
+ msgid "complete the install"
236
+ msgstr "dokončit installaci"
237
+
238
+ #: includes/class-freemius.php:7249
239
+ msgid "You are just one step away - %s"
240
+ msgstr "Jste jen na krok od - %s"
241
+
242
+ #: includes/class-freemius.php:7252
243
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
+ msgid "Complete \"%s\" Activation Now"
245
+ msgstr "Dokončit aktivaci „%s“"
246
+
247
+ #: includes/class-freemius.php:7334
248
+ msgid "We made a few tweaks to the %s, %s"
249
+ msgstr "Udělali jsme několik vylepšení %s, %s"
250
+
251
+ #: includes/class-freemius.php:7338
252
+ msgid "Opt in to make \"%s\" better!"
253
+ msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!"
254
+
255
+ #: includes/class-freemius.php:7773
256
+ msgid "The upgrade of %s was successfully completed."
257
+ msgstr "Aktualizace %s byla úspěšně dokončena."
258
+
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
+ #: templates/auto-installation.php:32
263
+ msgid "Add-On"
264
+ msgstr "Doplněk"
265
+
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
+ msgid "Plugin"
269
+ msgstr "Plugin"
270
+
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
+ #: templates/forms/deactivation/form.php:71
274
+ msgid "Theme"
275
+ msgstr "Šablona"
276
+
277
+ #: includes/class-freemius.php:13188
278
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+
281
+ #: includes/class-freemius.php:13202
282
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
283
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+
285
+ #: includes/class-freemius.php:13207
286
+ msgid "User Dashboard"
287
+ msgstr "User Dashboard"
288
+
289
+ #: includes/class-freemius.php:13208
290
+ msgid "revert it now"
291
+ msgstr "revert it now"
292
+
293
+ #: includes/class-freemius.php:13266
294
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
295
+ msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě."
296
+
297
+ #: includes/class-freemius.php:13339
298
+ msgid "Invalid new user ID or email address."
299
+ msgstr "Neplatné ID uživatele nebo emailová adresa."
300
+
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
+ msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován."
304
+
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
+
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
+ msgid "Change Ownership"
311
+ msgstr "Změnit vlastnictví"
312
+
313
+ #: includes/class-freemius.php:13977
314
+ msgid "Invalid site details collection."
315
+ msgstr "Invalid site details collection."
316
+
317
+ #: includes/class-freemius.php:14097
318
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
+ msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?"
320
+
321
+ #: includes/class-freemius.php:14099
322
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
+
325
+ #: includes/class-freemius.php:14373
326
+ msgid "Account is pending activation."
327
+ msgstr "Účet čeká na aktivaci."
328
+
329
+ #: includes/class-freemius.php14485,
330
+ #: templates/forms/premium-versions-upgrade-handler.php:47
331
+ msgid "Buy a license now"
332
+ msgstr "Koupit licenci nyní"
333
+
334
+ #: includes/class-freemius.php14497,
335
+ #: templates/forms/premium-versions-upgrade-handler.php:46
336
+ msgid "Renew your license now"
337
+ msgstr "Obnovte svou licenci teď"
338
+
339
+ #: includes/class-freemius.php:14501
340
+ msgid "%s to access version %s security & feature updates, and support."
341
+ msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
342
+
343
+ #: includes/class-freemius.php:16929
344
+ msgid "%s activation was successfully completed."
345
+ msgstr "Aktivace %s byla úspěšně dokončena."
346
+
347
+ #: includes/class-freemius.php:16943
348
+ msgid "Your account was successfully activated with the %s plan."
349
+ msgstr "Účet byl úspěšně aktivován s %s plánem."
350
+
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
+ msgid "Your trial has been successfully started."
353
+ msgstr "Vaše zkušebí verze byla úspěšně spuštěna."
354
+
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
+ msgid "Couldn't activate %s."
358
+ msgstr "Nelze aktivovat %s."
359
+
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
+ msgid "Please contact us with the following message:"
363
+ msgstr "Kontaktujte nás prosím s následující zprávou:"
364
+
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
+ msgid "An unknown error has occurred."
367
+ msgstr "Došlo k neznámé chybě."
368
+
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
+ msgid "Upgrade"
371
+ msgstr "Upgrade"
372
+
373
+ #: includes/class-freemius.php:18184
374
+ msgid "Start Trial"
375
+ msgstr "Začít Trial"
376
+
377
+ #: includes/class-freemius.php:18186
378
+ msgid "Pricing"
379
+ msgstr "Ceník"
380
+
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
+ msgid "Affiliation"
383
+ msgstr "Affiliation"
384
+
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
+ msgid "Account"
388
+ msgstr "Účet"
389
+
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
+ #: includes/customizer/class-fs-customizer-support-section.php:60
392
+ msgid "Contact Us"
393
+ msgstr "Support"
394
+
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
+ #: templates/account/partials/addon.php:44
398
+ msgid "Add-Ons"
399
+ msgstr "Doplňky"
400
+
401
+ #: includes/class-freemius.php:18361
402
+ msgctxt "ASCII arrow left icon"
403
+ msgid "&#x2190;"
404
+ msgstr "&#x2190;"
405
+
406
+ #: includes/class-freemius.php:18361
407
+ msgctxt "ASCII arrow right icon"
408
+ msgid "&#x27a4;"
409
+ msgstr "&#x27a4;"
410
+
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
+ msgctxt "noun"
413
+ msgid "Pricing"
414
+ msgstr "Ceník"
415
+
416
+ #: includes/class-freemius.php18576,
417
+ #: includes/customizer/class-fs-customizer-support-section.php:67
418
+ msgid "Support Forum"
419
+ msgstr "Fórum podpory"
420
+
421
+ #: includes/class-freemius.php:19550
422
+ msgid "Your email has been successfully verified - you are AWESOME!"
423
+ msgstr "Your email has been successfully verified - you are AWESOME!"
424
+
425
+ #: includes/class-freemius.php:19551
426
+ msgctxt "a positive response"
427
+ msgid "Right on"
428
+ msgstr "Right on"
429
+
430
+ #: includes/class-freemius.php:20057
431
+ msgid "seems like the key you entered doesn't match our records."
432
+ msgstr "seems like the key you entered doesn't match our records."
433
+
434
+ #: includes/class-freemius.php:20081
435
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
436
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+
438
+ #: includes/class-freemius.php:20316
439
+ msgid "Your %s Add-on plan was successfully upgraded."
440
+ msgstr "Your %s Add-on plan was successfully upgraded."
441
+
442
+ #: includes/class-freemius.php:20318
443
+ msgid "%s Add-on was successfully purchased."
444
+ msgstr "Rozšíření %s bylo úspěšně zakoupeno."
445
+
446
+ #: includes/class-freemius.php:20321
447
+ msgid "Download the latest version"
448
+ msgstr "Stáhnout nejnovější verzi"
449
+
450
+ #: includes/class-freemius.php:20407
451
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
452
+ msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2s"
453
+
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
+ msgid "Error received from the server:"
457
+ msgstr "Chyba přijatá ze serveru:"
458
+
459
+ #: includes/class-freemius.php:20423
460
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
+
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
+ msgctxt ""
466
+ msgid "Hmm"
467
+ msgstr "Hmm"
468
+
469
+ #: includes/class-freemius.php:20664
470
+ 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."
471
+ 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."
472
+
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
+ msgctxt "trial period"
476
+ msgid "Trial"
477
+ msgstr "Trial"
478
+
479
+ #: includes/class-freemius.php:20670
480
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
+
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
+ msgid "Please contact us here"
485
+ msgstr "Kontaktujte nás prosím zde"
486
+
487
+ #: includes/class-freemius.php:20685
488
+ msgid "Your plan was successfully activated."
489
+ msgstr "Vaše licence byla úspěšně aktivována."
490
+
491
+ #: includes/class-freemius.php:20686
492
+ msgid "Your plan was successfully upgraded."
493
+ msgstr "Váš plán byl úspěšně aktualizován."
494
+
495
+ #: includes/class-freemius.php:20703
496
+ msgid "Your plan was successfully changed to %s."
497
+ msgstr "Váše předplatné bylo úspěšně změněn na %s."
498
+
499
+ #: includes/class-freemius.php:20719
500
+ msgid "Your license has expired. You can still continue using the free %s forever."
501
+ msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení."
502
+
503
+ #: includes/class-freemius.php:20721
504
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
+ msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení."
506
+
507
+ #: includes/class-freemius.php:20729
508
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
+ msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu."
510
+
511
+ #: includes/class-freemius.php:20742
512
+ 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."
513
+ msgstr "Vaše licence vypršela. Stále však můžete používat všechny funkce verze %s, ale pro získání technické podpory a nejnovějších aktualizací budete muset obnovit svou licenci."
514
+
515
+ #: includes/class-freemius.php:20768
516
+ msgid "Your free trial has expired. You can still continue using all our free features."
517
+ msgstr "Your free trial has expired. You can still continue using all our free features."
518
+
519
+ #: includes/class-freemius.php:20770
520
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
+
523
+ #: includes/class-freemius.php:20885
524
+ msgid "It looks like the license could not be activated."
525
+ msgstr "Licenci se nepodařilo aktivovat."
526
+
527
+ #: includes/class-freemius.php:20927
528
+ msgid "Your license was successfully activated."
529
+ msgstr "Vaše licence byla úspěšně aktivována."
530
+
531
+ #: includes/class-freemius.php:20953
532
+ msgid "It looks like your site currently doesn't have an active license."
533
+ msgstr "It looks like your site currently doesn't have an active license."
534
+
535
+ #: includes/class-freemius.php:20977
536
+ msgid "It looks like the license deactivation failed."
537
+ msgstr "Deaktivace licence pravděpodobně selhala."
538
+
539
+ #: includes/class-freemius.php:21006
540
+ msgid "Your %s license was successfully deactivated."
541
+ msgstr "Your %s license was successfully deactivated."
542
+
543
+ #: includes/class-freemius.php:21007
544
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
545
+ msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s."
546
+
547
+ #: includes/class-freemius.php:21010
548
+ msgid "O.K"
549
+ msgstr "OK"
550
+
551
+ #: includes/class-freemius.php:21063
552
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
+
555
+ #: includes/class-freemius.php:21072
556
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
+ msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s."
558
+
559
+ #: includes/class-freemius.php:21114
560
+ msgid "You are already running the %s in a trial mode."
561
+ msgstr "You are already running the %s in a trial mode."
562
+
563
+ #: includes/class-freemius.php:21125
564
+ msgid "You already utilized a trial before."
565
+ msgstr "O zkušební licenci nelze žádat dvakrát."
566
+
567
+ #: includes/class-freemius.php:21139
568
+ msgid "Plan %s do not exist, therefore, can't start a trial."
569
+ msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi."
570
+
571
+ #: includes/class-freemius.php:21150
572
+ msgid "Plan %s does not support a trial period."
573
+ msgstr "Plán %s nepodporuje zkušební období."
574
+
575
+ #: includes/class-freemius.php:21161
576
+ msgid "None of the %s's plans supports a trial period."
577
+ msgstr "None of the %s's plans supports a trial period."
578
+
579
+ #: includes/class-freemius.php:21211
580
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
+ msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)"
582
+
583
+ #: includes/class-freemius.php:21247
584
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
+ msgstr "Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší zkušební licence. Zkuste to znovu za několik minut."
586
+
587
+ #: includes/class-freemius.php:21266
588
+ msgid "Your %s free trial was successfully cancelled."
589
+ msgstr "Your %s free trial was successfully cancelled."
590
+
591
+ #: includes/class-freemius.php:21582
592
+ msgid "Version %s was released."
593
+ msgstr "Byla vydána verze %s."
594
+
595
+ #: includes/class-freemius.php:21582
596
+ msgid "Please download %s."
597
+ msgstr "Stáhněte si prosím %s."
598
+
599
+ #: includes/class-freemius.php:21589
600
+ msgid "the latest %s version here"
601
+ msgstr "nejnovější %s verze zde"
602
+
603
+ #: includes/class-freemius.php:21594
604
+ msgid "New"
605
+ msgstr "Nový"
606
+
607
+ #: includes/class-freemius.php:21599
608
+ msgid "Seems like you got the latest release."
609
+ msgstr "Pravděpodobně máte nejnovější verzi."
610
+
611
+ #: includes/class-freemius.php:21600
612
+ msgid "You are all good!"
613
+ msgstr "You are all good!"
614
+
615
+ #: includes/class-freemius.php:21903
616
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
+ msgstr "Ověřovací zpráva byla právě odeslána na email %s. Pokud ji nenajdete do 5 min, zkontrolujte prosím složku pro spam."
618
+
619
+ #: includes/class-freemius.php:22043
620
+ msgid "Site successfully opted in."
621
+ msgstr "Site successfully opted in."
622
+
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
+ msgid "Awesome"
625
+ msgstr "Úžasný"
626
+
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
+ msgstr "Vážíme si vaší pomoci při zlepšování %s tím, že nám umožníte sledovat některá data o jeho používání."
630
+
631
+ #: includes/class-freemius.php:22061
632
+ msgid "Thank you!"
633
+ msgstr "Děkujeme!"
634
+
635
+ #: includes/class-freemius.php:22068
636
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
637
+ msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s."
638
+
639
+ #: includes/class-freemius.php:22226
640
+ 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."
641
+ msgstr "Zkontrolujte si prosím emailovou schránku, měli byste obdržet zprávu od %s pro potvrzení změny vlastnictví. Z bezpečnostních důvodů je nutné potvrdit tuto změnu během následujících 15 minut. Pokud email nemůžete najít, zkontrolujte složku se spamem."
642
+
643
+ #: includes/class-freemius.php:22232
644
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
+ msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení."
646
+
647
+ #: includes/class-freemius.php:22237
648
+ msgid "%s is the new owner of the account."
649
+ msgstr "%s je nový vlastník účtu."
650
+
651
+ #: includes/class-freemius.php:22239
652
+ msgctxt "as congratulations"
653
+ msgid "Congrats"
654
+ msgstr "Gratulujeme"
655
+
656
+ #: includes/class-freemius.php:22275
657
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
+
660
+ #: includes/class-freemius.php:22287
661
+ msgid "Please provide your full name."
662
+ msgstr "Zadejte prosím jméno a příjmení."
663
+
664
+ #: includes/class-freemius.php:22292
665
+ msgid "Your name was successfully updated."
666
+ msgstr "Vaše jméno bylo úspěšně aktualizováno."
667
+
668
+ #: includes/class-freemius.php:22353
669
+ msgid "You have successfully updated your %s."
670
+ msgstr "Úspěšně jste aktualizovali %s."
671
+
672
+ #: includes/class-freemius.php:22412
673
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
674
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+
676
+ #: includes/class-freemius.php:22415
677
+ msgid "Click here"
678
+ msgstr "Click here"
679
+
680
+ #: includes/class-freemius.php:22513
681
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
+
684
+ #: includes/class-freemius.php:22514
685
+ msgctxt "advance notice of something that will need attention."
686
+ msgid "Heads up"
687
+ msgstr "Heads up"
688
+
689
+ #: includes/class-freemius.php:23090
690
+ msgctxt "exclamation"
691
+ msgid "Hey"
692
+ msgstr "Dobrý den"
693
+
694
+ #: includes/class-freemius.php:23090
695
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
+ msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma."
697
+
698
+ #: includes/class-freemius.php:23098
699
+ msgid "No commitment for %s days - cancel anytime!"
700
+ msgstr "No commitment for %s days - cancel anytime!"
701
+
702
+ #: includes/class-freemius.php:23099
703
+ msgid "No credit card required"
704
+ msgstr "Kreditní karta není vyžadována"
705
+
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
+ msgctxt "call to action"
708
+ msgid "Start free trial"
709
+ msgstr "Start free trial"
710
+
711
+ #: includes/class-freemius.php:23183
712
+ 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!"
713
+ 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!"
714
+
715
+ #: includes/class-freemius.php:23192
716
+ msgid "Learn more"
717
+ msgstr "Přečtěte si více"
718
+
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
+ #: templates/account/partials/addon.php:321
723
+ msgid "Activate License"
724
+ msgstr "Aktivovat licenci"
725
+
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
+ #: templates/account/partials/site.php:271
729
+ msgid "Change License"
730
+ msgstr "Změnit licenci"
731
+
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
+ msgid "Opt Out"
734
+ msgstr "Odhlásit se"
735
+
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
+ #: templates/account/partials/site.php49,
738
+ #: templates/account/partials/site.php:169
739
+ msgid "Opt In"
740
+ msgstr "Zúčastnit se"
741
+
742
+ #: includes/class-freemius.php:23738
743
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
+ msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s"
745
+
746
+ #: includes/class-freemius.php:23746
747
+ msgid "Activate %s features"
748
+ msgstr "Aktivovat %s funkce"
749
+
750
+ #: includes/class-freemius.php:23759
751
+ msgid "Please follow these steps to complete the upgrade"
752
+ msgstr "Dokončete upgrade provedením následujících kroků"
753
+
754
+ #: includes/class-freemius.php:23763
755
+ msgid "Download the latest %s version"
756
+ msgstr "Stáhnout nejnovější verzi %s"
757
+
758
+ #: includes/class-freemius.php:23767
759
+ msgid "Upload and activate the downloaded version"
760
+ msgstr "Nahrát a aktivovat stáhnutou verzi"
761
+
762
+ #: includes/class-freemius.php:23769
763
+ msgid "How to upload and activate?"
764
+ msgstr "Jak nahrát a aktivovat?"
765
+
766
+ #: includes/class-freemius.php:23903
767
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
+
770
+ #: includes/class-freemius.php:24072
771
+ msgid "Auto installation only works for opted-in users."
772
+ msgstr "Auto installation only works for opted-in users."
773
+
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
+ msgid "Invalid module ID."
778
+ msgstr "Neplatné ID modulu."
779
+
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
+ msgid "Premium version already active."
782
+ msgstr "Prémiová verze je již aktivní."
783
+
784
+ #: includes/class-freemius.php:24098
785
+ msgid "You do not have a valid license to access the premium version."
786
+ msgstr "You do not have a valid license to access the premium version."
787
+
788
+ #: includes/class-freemius.php:24105
789
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
+
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
+ msgid "Premium add-on version already installed."
794
+ msgstr "Premium add-on version already installed."
795
+
796
+ #: includes/class-freemius.php:24473
797
+ msgid "View paid features"
798
+ msgstr "Zobrazit placené funkce"
799
+
800
+ #: includes/class-freemius.php:24795
801
+ msgid "Thank you so much for using %s and its add-ons!"
802
+ msgstr "Thank you so much for using %s and its add-ons!"
803
+
804
+ #: includes/class-freemius.php:24796
805
+ msgid "Thank you so much for using %s!"
806
+ msgstr "Thank you so much for using %s!"
807
+
808
+ #: includes/class-freemius.php:24802
809
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
+
812
+ #: includes/class-freemius.php:24806
813
+ msgid "Thank you so much for using our products!"
814
+ msgstr "Thank you so much for using our products!"
815
+
816
+ #: includes/class-freemius.php:24807
817
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
+
820
+ #: includes/class-freemius.php:24826
821
+ msgid "%s and its add-ons"
822
+ msgstr "%s a jeho doplňky"
823
+
824
+ #: includes/class-freemius.php:24835
825
+ msgid "Products"
826
+ msgstr "Produkty"
827
+
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
+ msgid "Yes"
830
+ msgstr "Ano"
831
+
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
+ msgid "send me security & feature updates, educational content and offers."
834
+ msgstr "send me security & feature updates, educational content and offers."
835
+
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
+ msgid "No"
838
+ msgstr "Ne"
839
+
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
+ msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
+
844
+ #: includes/class-freemius.php:24856
845
+ 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 :-)"
846
+ 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 :-)"
847
+
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
+
852
+ #: includes/class-freemius.php:25140
853
+ msgid "License key is empty."
854
+ msgstr "Licenční klíč je prázdný."
855
+
856
+ #: includes/class-fs-plugin-updater.php206,
857
+ #: templates/forms/premium-versions-upgrade-handler.php:57
858
+ msgid "Renew license"
859
+ msgstr "Obnovit licenci"
860
+
861
+ #: includes/class-fs-plugin-updater.php211,
862
+ #: templates/forms/premium-versions-upgrade-handler.php:58
863
+ msgid "Buy license"
864
+ msgstr "Koupit licenci"
865
+
866
+ #: includes/class-fs-plugin-updater.php327,
867
+ #: includes/class-fs-plugin-updater.php:360
868
+ msgid "There is a %s of %s available."
869
+ msgstr "There is a %s of %s available."
870
+
871
+ #: includes/class-fs-plugin-updater.php329,
872
+ #: includes/class-fs-plugin-updater.php:365
873
+ msgid "new Beta version"
874
+ msgstr "nová Beta verze"
875
+
876
+ #: includes/class-fs-plugin-updater.php330,
877
+ #: includes/class-fs-plugin-updater.php:366
878
+ msgid "new version"
879
+ msgstr "nová verze"
880
+
881
+ #: includes/class-fs-plugin-updater.php:389
882
+ msgid "Important Upgrade Notice:"
883
+ msgstr "Important Upgrade Notice:"
884
+
885
+ #: includes/class-fs-plugin-updater.php:1326
886
+ msgid "Installing plugin: %s"
887
+ msgstr "Instaluji plugin: %s"
888
+
889
+ #: includes/class-fs-plugin-updater.php:1367
890
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
+ msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření."
892
+
893
+ #: includes/class-fs-plugin-updater.php:1549
894
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
+ msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje."
896
+
897
+ #: includes/fs-plugin-info-dialog.php:541
898
+ msgid "Purchase More"
899
+ msgstr "Zakoupit další"
900
+
901
+ #: includes/fs-plugin-info-dialog.php542,
902
+ #: templates/account/partials/addon.php:385
903
+ msgctxt "verb"
904
+ msgid "Purchase"
905
+ msgstr "Zakoupit"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:546
908
+ msgid "Start my free %s"
909
+ msgstr "Začít můj bezplatný %s"
910
+
911
+ #: includes/fs-plugin-info-dialog.php:744
912
+ msgid "Install Free Version Update Now"
913
+ msgstr "Install Free Version Update Now"
914
+
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
+ msgid "Install Update Now"
917
+ msgstr "Nainstalovat aktualizaci"
918
+
919
+ #: includes/fs-plugin-info-dialog.php:754
920
+ msgid "Install Free Version Now"
921
+ msgstr "Nainstalovat verzi zdarma"
922
+
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
+ #: templates/auto-installation.php111,
925
+ #: templates/account/partials/addon.php365,
926
+ #: templates/account/partials/addon.php:418
927
+ msgid "Install Now"
928
+ msgstr "Instalovat"
929
+
930
+ #: includes/fs-plugin-info-dialog.php:771
931
+ msgctxt "as download latest version"
932
+ msgid "Download Latest Free Version"
933
+ msgstr "Stáhněte si nejnovější bezplatnou verzi"
934
+
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
+ msgctxt "as download latest version"
938
+ msgid "Download Latest"
939
+ msgstr "Stáhněte si nejnovější"
940
+
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
+ #: templates/account/partials/addon.php356,
943
+ #: templates/account/partials/addon.php:412
944
+ msgid "Activate this add-on"
945
+ msgstr "Aktivovat toto rozšíření"
946
+
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
+ msgid "Activate Free Version"
949
+ msgstr "Aktivovat bezplatnou verzi"
950
+
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
+ msgid "Activate"
954
+ msgstr "Aktivovat"
955
+
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
+ msgctxt "Plugin installer section title"
958
+ msgid "Description"
959
+ msgstr "Popis"
960
+
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
+ msgctxt "Plugin installer section title"
963
+ msgid "Installation"
964
+ msgstr "Instalace"
965
+
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
+ msgctxt "Plugin installer section title"
968
+ msgid "FAQ"
969
+ msgstr "FAQ"
970
+
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
+ #: templates/plugin-info/description.php:55
973
+ msgid "Screenshots"
974
+ msgstr "Snímky obrazovky"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
+ msgctxt "Plugin installer section title"
978
+ msgid "Changelog"
979
+ msgstr "Historie změn"
980
+
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
+ msgctxt "Plugin installer section title"
983
+ msgid "Reviews"
984
+ msgstr "Vaše hodnocení"
985
+
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
+ msgctxt "Plugin installer section title"
988
+ msgid "Other Notes"
989
+ msgstr "Other Notes"
990
+
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
+ msgctxt "Plugin installer section title"
993
+ msgid "Features & Pricing"
994
+ msgstr "Vlastnosti a ceník"
995
+
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
+ msgid "Plugin Install"
998
+ msgstr "Instalace pluginu"
999
+
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
+ msgctxt "e.g. Professional Plan"
1002
+ msgid "%s Plan"
1003
+ msgstr "%s plán"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
+ msgctxt "e.g. the best product"
1007
+ msgid "Best"
1008
+ msgstr "Nejlepší"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
+ msgctxt "as every month"
1013
+ msgid "Monthly"
1014
+ msgstr "Měsíčně"
1015
+
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
+ msgctxt "as once a year"
1018
+ msgid "Annual"
1019
+ msgstr "Ročně"
1020
+
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
+ msgid "Lifetime"
1023
+ msgstr "Doživotní"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
+ msgctxt "e.g. billed monthly"
1029
+ msgid "Billed %s"
1030
+ msgstr "Účtováno %s"
1031
+
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
+ msgctxt "as once a year"
1034
+ msgid "Annually"
1035
+ msgstr "Ročně"
1036
+
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
+ msgctxt "as once a year"
1039
+ msgid "Once"
1040
+ msgstr "Jedenkrát"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
+ msgid "Single Site License"
1044
+ msgstr "Licence pro jednu instalaci"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
+ msgid "Unlimited Licenses"
1048
+ msgstr "Neomezené množství instalací"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
+ msgid "Up to %s Sites"
1052
+ msgstr "Až pro %s webů"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
+ #: templates/plugin-info/features.php:82
1056
+ msgctxt "as monthly period"
1057
+ msgid "mo"
1058
+ msgstr "po"
1059
+
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
+ #: templates/plugin-info/features.php:80
1062
+ msgctxt "as annual period"
1063
+ msgid "year"
1064
+ msgstr "rok"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
+ msgctxt "noun"
1068
+ msgid "Price"
1069
+ msgstr "Cena"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
+ msgid "Save %s"
1073
+ msgstr "Uložit %s"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
+ msgid "No commitment for %s - cancel anytime"
1077
+ msgstr "No commitment for %s - cancel anytime"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
+ msgid "After your free %s, pay as little as %s"
1081
+ msgstr "Po bezplatné %s platit jen v %s"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1314
1084
+ msgid "Details"
1085
+ msgstr "Detaily"
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
+ #: templates/account/partials/addon.php:36
1090
+ msgctxt "product version"
1091
+ msgid "Version"
1092
+ msgstr "Verze"
1093
+
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
+ msgctxt "as the plugin author"
1096
+ msgid "Author"
1097
+ msgstr "Autor"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1332
1100
+ msgid "Last Updated"
1101
+ msgstr "Poslední aktualizace"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
+ msgctxt "x-ago"
1105
+ msgid "%s ago"
1106
+ msgstr "Před %s"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
+ msgid "Requires WordPress Version"
1110
+ msgstr "Vyžaduje verzi WordPress"
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
+ msgid "%s or higher"
1114
+ msgstr "%s nebo vyšší"
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
+ msgid "Compatible up to"
1118
+ msgstr "Kompatibilní až po"
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
+ msgid "Downloaded"
1122
+ msgstr "Staženo"
1123
+
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
+ msgid "%s time"
1126
+ msgstr "%s krát"
1127
+
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
+ msgid "%s times"
1130
+ msgstr "%s krát"
1131
+
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
+ msgid "WordPress.org Plugin Page"
1134
+ msgstr "Název pluginu na WordPress.org"
1135
+
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
+ msgid "Plugin Homepage"
1138
+ msgstr "Hlavní stránka pluginu"
1139
+
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
+ msgid "Donate to this plugin"
1143
+ msgstr "Přispějte na tento plugin"
1144
+
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
+ msgid "Average Rating"
1147
+ msgstr "Průměrné hodnocení"
1148
+
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
+ msgid "based on %s"
1151
+ msgstr "založeno na %s"
1152
+
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
+ msgid "%s rating"
1155
+ msgstr "%s hodnocení"
1156
+
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
+ msgid "%s ratings"
1159
+ msgstr "%s hodnocení"
1160
+
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
+ msgid "%s star"
1163
+ msgstr "%s hvězda"
1164
+
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
+ msgid "%s stars"
1167
+ msgstr "%s hvězd"
1168
+
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
+ msgid "Click to see reviews that provided a rating of %s"
1171
+ msgstr "Click to see reviews that provided a rating of %s"
1172
+
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
+ msgid "Contributors"
1175
+ msgstr "Přispěvatelé"
1176
+
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
+ msgid "Warning"
1180
+ msgstr "Varování"
1181
+
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
+ msgid "This plugin has not been tested with your current version of WordPress."
1184
+ msgstr "This plugin has not been tested with your current version of WordPress."
1185
+
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1189
+
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
+ msgid "Paid add-on must be deployed to Freemius."
1192
+ msgstr "Placený doplněk musí být nasazen na Freemius."
1193
+
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
+ msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius."
1197
+
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
+ msgid "Newer Version (%s) Installed"
1200
+ msgstr "Novější verze (%s) nainstalována"
1201
+
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
+ msgid "Newer Free Version (%s) Installed"
1204
+ msgstr "Novější verze zdarma (%s) nainstalována"
1205
+
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
+ msgid "Latest Version Installed"
1208
+ msgstr "Nainstalována nejnovější verze"
1209
+
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
+ msgid "Latest Free Version Installed"
1212
+ msgstr "Nainstalována nejnovější verze zdarma"
1213
+
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
+ #: templates/account/partials/addon.php26,
1216
+ #: templates/account/partials/site.php:311
1217
+ msgid "Downgrading your plan"
1218
+ msgstr "Snižuji vaše předplatné"
1219
+
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
+ #: templates/account/partials/addon.php27,
1222
+ #: templates/account/partials/site.php:312
1223
+ msgid "Cancelling the subscription"
1224
+ msgstr "Ruším předplatné"
1225
+
1226
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
+ #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
+ #: templates/account/partials/site.php:314
1230
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
+ msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
1232
+
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
+ #: templates/account/partials/addon.php30,
1235
+ #: templates/account/partials/site.php:315
1236
+ 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."
1237
+ 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."
1238
+
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
+ #: templates/account/partials/addon.php:31
1241
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
+ msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?"
1243
+
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
+ #: templates/account/partials/addon.php32,
1246
+ #: templates/account/partials/site.php:316
1247
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
+
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
+ #: templates/account/partials/addon.php33,
1252
+ #: templates/account/partials/site.php:317
1253
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
+
1256
+ #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
+ #: templates/account/partials/activate-license-button.php31,
1259
+ #: templates/account/partials/addon.php:35
1260
+ msgid "Activate %s Plan"
1261
+ msgstr "Aktivovat %s plán"
1262
+
1263
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
+ #: templates/account/partials/site.php:291
1266
+ msgid "Auto renews in %s"
1267
+ msgstr "Automaticky se obnoví za %s"
1268
+
1269
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
+ #: templates/account/partials/site.php:293
1272
+ msgid "Expires in %s"
1273
+ msgstr "Vyprší za %s"
1274
+
1275
+ #: templates/account.php:117
1276
+ msgctxt "as synchronize license"
1277
+ msgid "Sync License"
1278
+ msgstr "Synchronizovat licence"
1279
+
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
+ msgid "Cancel Trial"
1282
+ msgstr "Zrušit zkušební verzi"
1283
+
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
+ msgid "Change Plan"
1286
+ msgstr "Změnit plán"
1287
+
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
+ msgctxt "verb"
1290
+ msgid "Upgrade"
1291
+ msgstr "Vylepšit"
1292
+
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
+ #: templates/account/partials/site.php:318
1295
+ msgctxt "verb"
1296
+ msgid "Downgrade"
1297
+ msgstr "Přejít na nižší verzi"
1298
+
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
+ #: templates/plugin-info/features.php72,
1301
+ #: templates/account/partials/addon.php47,
1302
+ #: templates/account/partials/site.php:33
1303
+ msgid "Free"
1304
+ msgstr "Zdarma"
1305
+
1306
+ #: templates/account.php126, templates/debug.php371,
1307
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
+ #: templates/account/partials/addon.php:49
1309
+ msgctxt "as product pricing plan"
1310
+ msgid "Plan"
1311
+ msgstr "Druh členství"
1312
+
1313
+ #: templates/account.php:127
1314
+ msgid "Bundle Plan"
1315
+ msgstr "Bundle Plan"
1316
+
1317
+ #: templates/account.php:250
1318
+ msgid "Free Trial"
1319
+ msgstr "Zkušební verze zdarma"
1320
+
1321
+ #: templates/account.php:261
1322
+ msgid "Account Details"
1323
+ msgstr "Detaily účtu"
1324
+
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
+ msgid "Start Debug"
1327
+ msgstr "Start Debug"
1328
+
1329
+ #: templates/account.php:270
1330
+ msgid "Stop Debug"
1331
+ msgstr "Stop Debug"
1332
+
1333
+ #: templates/account.php:277
1334
+ msgid "Billing & Invoices"
1335
+ msgstr "Fakturace a platby"
1336
+
1337
+ #: templates/account.php:288
1338
+ 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?"
1339
+ 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?"
1340
+
1341
+ #: templates/account.php:290
1342
+ 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?"
1343
+ 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?"
1344
+
1345
+ #: templates/account.php:293
1346
+ msgid "Delete Account"
1347
+ msgstr "Smazat účet"
1348
+
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
+ #: templates/account/partials/deactivate-license-button.php:35
1351
+ msgid "Deactivate License"
1352
+ msgstr "Deaktivovat licenci"
1353
+
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
+ msgid "Are you sure you want to proceed?"
1356
+ msgstr "Opravdu chcete pokračovat?"
1357
+
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
+ msgid "Cancel Subscription"
1360
+ msgstr "Zrušit předplatné"
1361
+
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
+ msgctxt "as synchronize"
1364
+ msgid "Sync"
1365
+ msgstr "Synchronizovat"
1366
+
1367
+ #: templates/account.php372, templates/debug.php:505
1368
+ msgid "Name"
1369
+ msgstr "Jméno"
1370
+
1371
+ #: templates/account.php378, templates/debug.php:506
1372
+ msgid "Email"
1373
+ msgstr "Email"
1374
+
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
+ msgid "User ID"
1377
+ msgstr "ID uživatele"
1378
+
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
+ #: templates/debug.php632, templates/account/payments.php35,
1383
+ #: templates/debug/logger.php:21
1384
+ msgid "ID"
1385
+ msgstr "ID"
1386
+
1387
+ #: templates/account.php:410
1388
+ msgid "Site ID"
1389
+ msgstr "ID stránky"
1390
+
1391
+ #: templates/account.php:413
1392
+ msgid "No ID"
1393
+ msgstr "Žádné ID"
1394
+
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
+ #: templates/debug.php456, templates/debug.php508,
1397
+ #: templates/account/partials/site.php:227
1398
+ msgid "Public Key"
1399
+ msgstr "Veřejný klíč"
1400
+
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
+ #: templates/debug.php509, templates/account/partials/site.php:239
1403
+ msgid "Secret Key"
1404
+ msgstr "Tajný klíč"
1405
+
1406
+ #: templates/account.php:427
1407
+ msgctxt "as secret encryption key missing"
1408
+ msgid "No Secret"
1409
+ msgstr "Tajný klíč chybí"
1410
+
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
+ #: templates/account/partials/site.php:122
1413
+ msgid "Trial"
1414
+ msgstr "Zkouška"
1415
+
1416
+ #: templates/account.php481, templates/debug.php561,
1417
+ #: templates/account/partials/site.php:260
1418
+ msgid "License Key"
1419
+ msgstr "Licenční klíč"
1420
+
1421
+ #: templates/account.php:512
1422
+ msgid "Join the Beta program"
1423
+ msgstr "Odebírat betaverze"
1424
+
1425
+ #: templates/account.php:518
1426
+ msgid "not verified"
1427
+ msgstr "není ověřeno"
1428
+
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
+ msgid "Expired"
1431
+ msgstr "Vypršelo"
1432
+
1433
+ #: templates/account.php:587
1434
+ msgid "Premium version"
1435
+ msgstr "Prémiová verze"
1436
+
1437
+ #: templates/account.php:589
1438
+ msgid "Free version"
1439
+ msgstr "Verze zdarma"
1440
+
1441
+ #: templates/account.php:601
1442
+ msgid "Verify Email"
1443
+ msgstr "Ověřit e-mail"
1444
+
1445
+ #: templates/account.php:615
1446
+ msgid "Download %s Version"
1447
+ msgstr "Stáhnout verzi %s"
1448
+
1449
+ #: templates/account.php:631
1450
+ msgid "Download Paid Version"
1451
+ msgstr "Download Paid Version"
1452
+
1453
+ #: templates/account.php649, templates/account.php892,
1454
+ #: templates/account/partials/site.php248,
1455
+ #: templates/account/partials/site.php:270
1456
+ msgctxt "verb"
1457
+ msgid "Show"
1458
+ msgstr "Zobrazit"
1459
+
1460
+ #: templates/account.php:664
1461
+ msgid "What is your %s?"
1462
+ msgstr "Jaké je vaše \"%s\"?"
1463
+
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
+ msgctxt "verb"
1466
+ msgid "Edit"
1467
+ msgstr "Upravit"
1468
+
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
+ msgid "Change User"
1471
+ msgstr "Change User"
1472
+
1473
+ #: templates/account.php:700
1474
+ msgid "Sites"
1475
+ msgstr "Weby"
1476
+
1477
+ #: templates/account.php:713
1478
+ msgid "Search by address"
1479
+ msgstr "Hledat podle adresy"
1480
+
1481
+ #: templates/account.php722, templates/debug.php:366
1482
+ msgid "Address"
1483
+ msgstr "Adresa"
1484
+
1485
+ #: templates/account.php:723
1486
+ msgid "License"
1487
+ msgstr "Licence"
1488
+
1489
+ #: templates/account.php:724
1490
+ msgid "Plan"
1491
+ msgstr "Druh členství"
1492
+
1493
+ #: templates/account.php:757
1494
+ msgctxt "as software license"
1495
+ msgid "License"
1496
+ msgstr "Licence"
1497
+
1498
+ #: templates/account.php:886
1499
+ msgctxt "verb"
1500
+ msgid "Hide"
1501
+ msgstr "Skrýt"
1502
+
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
+ msgid "Processing"
1505
+ msgstr "Processing"
1506
+
1507
+ #: templates/account.php:911
1508
+ msgid "Get updates for bleeding edge Beta versions of %s."
1509
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1510
+
1511
+ #: templates/account.php:969
1512
+ msgid "Cancelling %s"
1513
+ msgstr "Ruším %s"
1514
+
1515
+ #: templates/account.php969, templates/account.php986,
1516
+ #: templates/forms/subscription-cancellation.php27,
1517
+ #: templates/forms/deactivation/form.php:133
1518
+ msgid "trial"
1519
+ msgstr "zkušební"
1520
+
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
+ msgid "Cancelling %s..."
1523
+ msgstr "Ruším %s..."
1524
+
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
+ #: templates/forms/deactivation/form.php:134
1527
+ msgid "subscription"
1528
+ msgstr "předplatné"
1529
+
1530
+ #: templates/account.php:1001
1531
+ 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?"
1532
+ msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1533
+
1534
+ #: templates/account.php:1075
1535
+ msgid "Disabling white-label mode"
1536
+ msgstr "Disabling white-label mode"
1537
+
1538
+ #: templates/account.php:1076
1539
+ msgid "Enabling white-label mode"
1540
+ msgstr "Enabling white-label mode"
1541
+
1542
+ #: templates/add-ons.php:38
1543
+ msgid "View details"
1544
+ msgstr "Zobrazit podrobnosti"
1545
+
1546
+ #: templates/add-ons.php:48
1547
+ msgid "Add Ons for %s"
1548
+ msgstr "Rozšíření pro %s"
1549
+
1550
+ #: templates/add-ons.php:58
1551
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1552
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+
1554
+ #: templates/add-ons.php:229
1555
+ msgctxt "active add-on"
1556
+ msgid "Active"
1557
+ msgstr "Active"
1558
+
1559
+ #: templates/add-ons.php:230
1560
+ msgctxt "installed add-on"
1561
+ msgid "Installed"
1562
+ msgstr "Installed"
1563
+
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
+ #: templates/forms/resend-key.php:77
1566
+ msgctxt "as close a window"
1567
+ msgid "Dismiss"
1568
+ msgstr "Skrýt"
1569
+
1570
+ #: templates/auto-installation.php:45
1571
+ msgid "%s sec"
1572
+ msgstr "%s s"
1573
+
1574
+ #: templates/auto-installation.php:83
1575
+ msgid "Automatic Installation"
1576
+ msgstr "Automatic Installation"
1577
+
1578
+ #: templates/auto-installation.php:93
1579
+ 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."
1580
+ 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."
1581
+
1582
+ #: templates/auto-installation.php:104
1583
+ 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."
1584
+ msgstr "Proces instalace byl zahájen a může trvat několik minut. Počkejte prosím na dokončení - neobnovujte tuto stránku."
1585
+
1586
+ #: templates/auto-installation.php:109
1587
+ msgid "Cancel Installation"
1588
+ msgstr "Cancel Installation"
1589
+
1590
+ #: templates/checkout.php:180
1591
+ msgid "Checkout"
1592
+ msgstr "Pokladna"
1593
+
1594
+ #: templates/checkout.php:180
1595
+ msgid "PCI compliant"
1596
+ msgstr "Kompatibilní s PCI"
1597
+
1598
+ #. translators: %s: name (e.g. Hey John,)
1599
+ #: templates/connect.php:112
1600
+ msgctxt "greeting"
1601
+ msgid "Hey %s,"
1602
+ msgstr "Dobrý den %s,"
1603
+
1604
+ #: templates/connect.php:162
1605
+ msgid "Allow & Continue"
1606
+ msgstr "Povolit a pokračovat"
1607
+
1608
+ #: templates/connect.php:166
1609
+ msgid "Re-send activation email"
1610
+ msgstr "Znovu poslat aktivační email"
1611
+
1612
+ #: templates/connect.php:170
1613
+ msgid "Thanks %s!"
1614
+ msgstr "Děkujeme %s!"
1615
+
1616
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1617
+ msgid "Agree & Activate License"
1618
+ msgstr "Aktivovat licenci"
1619
+
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
+
1624
+ #: templates/connect.php:191
1625
+ 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."
1626
+ msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace."
1627
+
1628
+ #: templates/connect.php:192
1629
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
+ msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace."
1631
+
1632
+ #: templates/connect.php:198
1633
+ 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."
1634
+ msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1635
+
1636
+ #: templates/connect.php:199
1637
+ 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."
1638
+ msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat."
1639
+
1640
+ #: templates/connect.php:233
1641
+ msgid "We're excited to introduce the Freemius network-level integration."
1642
+ msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů."
1643
+
1644
+ #: templates/connect.php:236
1645
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
+
1648
+ #: templates/connect.php:238
1649
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
+ msgstr "Pokud chcete použít %s na těchto stránkách, zadejte platný licenční klíč a klikněte na tlačítko aktivovat."
1651
+
1652
+ #: templates/connect.php:240
1653
+ msgid "%s's paid features"
1654
+ msgstr "%s's paid features"
1655
+
1656
+ #: templates/connect.php:245
1657
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
+
1660
+ #: templates/connect.php:247
1661
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
+
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
+ #: templates/forms/license-activation.php:49
1666
+ msgid "License key"
1667
+ msgstr "Licenční klíč"
1668
+
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
+ msgid "Can't find your license key?"
1671
+ msgstr "Nemůžete najít svůj licenční klíč?"
1672
+
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
+ #: templates/forms/deactivation/retry-skip.php:20
1675
+ msgctxt "verb"
1676
+ msgid "Skip"
1677
+ msgstr "Přeskočit"
1678
+
1679
+ #: templates/connect.php:321
1680
+ msgid "Delegate to Site Admins"
1681
+ msgstr "Delegate to Site Admins"
1682
+
1683
+ #: templates/connect.php:321
1684
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1685
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
+
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
+ msgid "Your Profile Overview"
1693
+ msgstr "Informace o vašem profilu"
1694
+
1695
+ #: templates/connect.php:363
1696
+ msgid "Name and email address"
1697
+ msgstr "Jméno a emailová adresa"
1698
+
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
+ msgid "Your Site Overview"
1705
+ msgstr "Informace o vaší stránce"
1706
+
1707
+ #: templates/connect.php:372
1708
+ msgid "Site URL, WP version, PHP info"
1709
+ msgstr "Site URL, WP version, PHP info"
1710
+
1711
+ #: templates/connect.php:379
1712
+ msgid "Admin Notices"
1713
+ msgstr "Zobrazení oznámení v adminu"
1714
+
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
+ msgid "Updates, announcements, marketing, no spam"
1717
+ msgstr "Aktualizace, oznámení, marketing, žádný spam"
1718
+
1719
+ #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
+
1731
+ #: templates/connect.php:397
1732
+ msgid "Newsletter"
1733
+ msgstr "Newsletter"
1734
+
1735
+ #: templates/connect.php:405
1736
+ msgid "Plugins & Themes"
1737
+ msgstr "Plugins & Themes"
1738
+
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
+ msgid "Title, slug, version, and is active"
1749
+ msgstr "Title, slug, version, and is active"
1750
+
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+
1755
+ #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
+ msgid "What permissions are being granted?"
1765
+ msgstr "Jaká oprávnění budou udělena?"
1766
+
1767
+ #: templates/connect.php:457
1768
+ msgid "Don't have a license key?"
1769
+ msgstr "Nemáte licenční klíč?"
1770
+
1771
+ #: templates/connect.php:460
1772
+ msgid "Have a license key?"
1773
+ msgstr "Máte licenční klíč?"
1774
+
1775
+ #: templates/connect.php:468
1776
+ msgid "Privacy Policy"
1777
+ msgstr "Zásady ochrany osobních údajů"
1778
+
1779
+ #: templates/connect.php:470
1780
+ msgid "License Agreement"
1781
+ msgstr "Licenční smlouva"
1782
+
1783
+ #: templates/connect.php:470
1784
+ msgid "Terms of Service"
1785
+ msgstr "Podmínky služby"
1786
+
1787
+ #: templates/connect.php:866
1788
+ msgctxt "as in the process of sending an email"
1789
+ msgid "Sending email"
1790
+ msgstr "Probíhá odesílání emailů"
1791
+
1792
+ #: templates/connect.php:867
1793
+ msgctxt "as activating plugin"
1794
+ msgid "Activating"
1795
+ msgstr "Probíhá aktivace"
1796
+
1797
+ #: templates/contact.php:78
1798
+ msgid "Contact"
1799
+ msgstr "Kontakt"
1800
+
1801
+ #: templates/debug.php:17
1802
+ msgctxt "as turned off"
1803
+ msgid "Off"
1804
+ msgstr "Vypnuto"
1805
+
1806
+ #: templates/debug.php:18
1807
+ msgctxt "as turned on"
1808
+ msgid "On"
1809
+ msgstr "Zapnuto"
1810
+
1811
+ #: templates/debug.php:20
1812
+ msgid "SDK"
1813
+ msgstr "SDK"
1814
+
1815
+ #: templates/debug.php:24
1816
+ msgctxt "as code debugging"
1817
+ msgid "Debugging"
1818
+ msgstr "Debugging"
1819
+
1820
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1821
+ #: templates/debug.php:510
1822
+ msgid "Actions"
1823
+ msgstr "Akce"
1824
+
1825
+ #: templates/debug.php:62
1826
+ msgid "Are you sure you want to delete all Freemius data?"
1827
+ msgstr "Opravdu chcete smazat veškerá Freemius data?"
1828
+
1829
+ #: templates/debug.php:62
1830
+ msgid "Delete All Accounts"
1831
+ msgstr "Delete All Accounts"
1832
+
1833
+ #: templates/debug.php:69
1834
+ msgid "Clear API Cache"
1835
+ msgstr "Vyčistit API cache"
1836
+
1837
+ #: templates/debug.php:77
1838
+ msgid "Clear Updates Transients"
1839
+ msgstr "Vyčistit transitenty aktualizací"
1840
+
1841
+ #: templates/debug.php:84
1842
+ msgid "Sync Data From Server"
1843
+ msgstr "Synchronizovat data ze serveru"
1844
+
1845
+ #: templates/debug.php:93
1846
+ msgid "Migrate Options to Network"
1847
+ msgstr "Migrate Options to Network"
1848
+
1849
+ #: templates/debug.php:98
1850
+ msgid "Load DB Option"
1851
+ msgstr "Load DB Option"
1852
+
1853
+ #: templates/debug.php:101
1854
+ msgid "Set DB Option"
1855
+ msgstr "Set DB Option"
1856
+
1857
+ #: templates/debug.php:180
1858
+ msgid "Key"
1859
+ msgstr "Klíč"
1860
+
1861
+ #: templates/debug.php:181
1862
+ msgid "Value"
1863
+ msgstr "Hodnota"
1864
+
1865
+ #: templates/debug.php:197
1866
+ msgctxt "as software development kit versions"
1867
+ msgid "SDK Versions"
1868
+ msgstr "SDK verze"
1869
+
1870
+ #: templates/debug.php:202
1871
+ msgid "SDK Path"
1872
+ msgstr "Cesta l SDK"
1873
+
1874
+ #: templates/debug.php203, templates/debug.php:242
1875
+ msgid "Module Path"
1876
+ msgstr "Cesta k modulu"
1877
+
1878
+ #: templates/debug.php:204
1879
+ msgid "Is Active"
1880
+ msgstr "Je aktivní"
1881
+
1882
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1883
+ msgid "Plugins"
1884
+ msgstr "Pluginy"
1885
+
1886
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1887
+ msgid "Themes"
1888
+ msgstr "Šablony"
1889
+
1890
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1891
+ #: templates/debug/scheduled-crons.php:80
1892
+ msgid "Slug"
1893
+ msgstr "Zkratka"
1894
+
1895
+ #: templates/debug.php239, templates/debug.php:453
1896
+ msgid "Title"
1897
+ msgstr "Nadpis"
1898
+
1899
+ #: templates/debug.php:240
1900
+ msgctxt "as application program interface"
1901
+ msgid "API"
1902
+ msgstr "API"
1903
+
1904
+ #: templates/debug.php:241
1905
+ msgid "Freemius State"
1906
+ msgstr "Stav Freemius"
1907
+
1908
+ #: templates/debug.php:245
1909
+ msgid "Network Blog"
1910
+ msgstr "Network Blog"
1911
+
1912
+ #: templates/debug.php:246
1913
+ msgid "Network User"
1914
+ msgstr "Network User"
1915
+
1916
+ #: templates/debug.php:283
1917
+ msgctxt "as connection was successful"
1918
+ msgid "Connected"
1919
+ msgstr "Připojeno"
1920
+
1921
+ #: templates/debug.php:284
1922
+ msgctxt "as connection blocked"
1923
+ msgid "Blocked"
1924
+ msgstr "Zablokováno"
1925
+
1926
+ #: templates/debug.php:320
1927
+ msgid "Simulate Trial Promotion"
1928
+ msgstr "Simulate Trial Promotion"
1929
+
1930
+ #: templates/debug.php:332
1931
+ msgid "Simulate Network Upgrade"
1932
+ msgstr "Simulate Network Upgrade"
1933
+
1934
+ #: templates/debug.php:357
1935
+ msgid "%s Installs"
1936
+ msgstr "%s instalací"
1937
+
1938
+ #: templates/debug.php:359
1939
+ msgctxt "like websites"
1940
+ msgid "Sites"
1941
+ msgstr "Weby"
1942
+
1943
+ #: templates/debug.php365, templates/account/partials/site.php:156
1944
+ msgid "Blog ID"
1945
+ msgstr "Blog ID"
1946
+
1947
+ #: templates/debug.php:370
1948
+ msgid "License ID"
1949
+ msgstr "License ID"
1950
+
1951
+ #: templates/debug.php434, templates/debug.php533,
1952
+ #: templates/account/partials/addon.php:435
1953
+ msgctxt "verb"
1954
+ msgid "Delete"
1955
+ msgstr "Smazat"
1956
+
1957
+ #: templates/debug.php:448
1958
+ msgid "Add Ons of module %s"
1959
+ msgstr "Add Ons of module %s"
1960
+
1961
+ #: templates/debug.php:500
1962
+ msgid "Users"
1963
+ msgstr "Uživatelé"
1964
+
1965
+ #: templates/debug.php:507
1966
+ msgid "Verified"
1967
+ msgstr "Ověřeno"
1968
+
1969
+ #: templates/debug.php:549
1970
+ msgid "%s Licenses"
1971
+ msgstr "%s licencí"
1972
+
1973
+ #: templates/debug.php:554
1974
+ msgid "Plugin ID"
1975
+ msgstr "ID pluginu"
1976
+
1977
+ #: templates/debug.php:556
1978
+ msgid "Plan ID"
1979
+ msgstr "ID členství"
1980
+
1981
+ #: templates/debug.php:557
1982
+ msgid "Quota"
1983
+ msgstr "Quota"
1984
+
1985
+ #: templates/debug.php:558
1986
+ msgid "Activated"
1987
+ msgstr "Aktivovaný"
1988
+
1989
+ #: templates/debug.php:559
1990
+ msgid "Blocking"
1991
+ msgstr "Blokování"
1992
+
1993
+ #: templates/debug.php560, templates/debug.php631,
1994
+ #: templates/debug/logger.php:22
1995
+ msgid "Type"
1996
+ msgstr "Typ"
1997
+
1998
+ #: templates/debug.php:562
1999
+ msgctxt "as expiration date"
2000
+ msgid "Expiration"
2001
+ msgstr "Expirace"
2002
+
2003
+ #: templates/debug.php:590
2004
+ msgid "Debug Log"
2005
+ msgstr "Ladící log"
2006
+
2007
+ #: templates/debug.php:594
2008
+ msgid "All Types"
2009
+ msgstr "Všechny typy"
2010
+
2011
+ #: templates/debug.php:601
2012
+ msgid "All Requests"
2013
+ msgstr "All Requests"
2014
+
2015
+ #: templates/debug.php606, templates/debug.php635,
2016
+ #: templates/debug/logger.php:25
2017
+ msgid "File"
2018
+ msgstr "Soubor"
2019
+
2020
+ #: templates/debug.php607, templates/debug.php633,
2021
+ #: templates/debug/logger.php:23
2022
+ msgid "Function"
2023
+ msgstr "Funkce"
2024
+
2025
+ #: templates/debug.php:608
2026
+ msgid "Process ID"
2027
+ msgstr "Process ID"
2028
+
2029
+ #: templates/debug.php:609
2030
+ msgid "Logger"
2031
+ msgstr "Logger"
2032
+
2033
+ #: templates/debug.php610, templates/debug.php634,
2034
+ #: templates/debug/logger.php:24
2035
+ msgid "Message"
2036
+ msgstr "Zpráva"
2037
+
2038
+ #: templates/debug.php:612
2039
+ msgid "Filter"
2040
+ msgstr "Filtr"
2041
+
2042
+ #: templates/debug.php:620
2043
+ msgid "Download"
2044
+ msgstr "Stáhnout"
2045
+
2046
+ #: templates/debug.php636, templates/debug/logger.php:26
2047
+ msgid "Timestamp"
2048
+ msgstr "Datum a čas"
2049
+
2050
+ #: templates/secure-https-header.php:28
2051
+ msgid "Secure HTTPS %s page, running from an external domain"
2052
+ msgstr "Zabezpečená stránka HTTPS %s spuštěná z externí domény"
2053
+
2054
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2055
+ #: templates/plugin-info/features.php:43
2056
+ msgid "Support"
2057
+ msgstr "Podpora"
2058
+
2059
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2060
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2061
+ msgctxt "milliseconds"
2062
+ msgid "ms"
2063
+ msgstr "ms"
2064
+
2065
+ #: includes/debug/debug-bar-start.php:41
2066
+ msgid "Freemius API"
2067
+ msgstr "Freemius API"
2068
+
2069
+ #: includes/debug/debug-bar-start.php:42
2070
+ msgid "Requests"
2071
+ msgstr "Žádosti"
2072
+
2073
+ #: templates/account/billing.php:22
2074
+ msgctxt "verb"
2075
+ msgid "Update"
2076
+ msgstr "Aktualizovat"
2077
+
2078
+ #: templates/account/billing.php:33
2079
+ msgid "Billing"
2080
+ msgstr "Fakturace"
2081
+
2082
+ #: templates/account/billing.php38, templates/account/billing.php:38
2083
+ msgid "Business name"
2084
+ msgstr "Jméno firmy"
2085
+
2086
+ #: templates/account/billing.php39, templates/account/billing.php:39
2087
+ msgid "Tax / VAT ID"
2088
+ msgstr "DIČ"
2089
+
2090
+ #: templates/account/billing.php42, templates/account/billing.php42,
2091
+ #: templates/account/billing.php43, templates/account/billing.php:43
2092
+ msgid "Address Line %d"
2093
+ msgstr "Address Line %d"
2094
+
2095
+ #: templates/account/billing.php46, templates/account/billing.php:46
2096
+ msgid "City"
2097
+ msgstr "Město"
2098
+
2099
+ #: templates/account/billing.php46, templates/account/billing.php:46
2100
+ msgid "Town"
2101
+ msgstr "Město"
2102
+
2103
+ #: templates/account/billing.php47, templates/account/billing.php:47
2104
+ msgid "ZIP / Postal Code"
2105
+ msgstr "PSČ / směrovací číslo"
2106
+
2107
+ #: templates/account/billing.php:302
2108
+ msgid "Country"
2109
+ msgstr "Země"
2110
+
2111
+ #: templates/account/billing.php:304
2112
+ msgid "Select Country"
2113
+ msgstr "Vyberte zemi"
2114
+
2115
+ #: templates/account/billing.php311, templates/account/billing.php:312
2116
+ msgid "State"
2117
+ msgstr "Kraj"
2118
+
2119
+ #: templates/account/billing.php311, templates/account/billing.php:312
2120
+ msgid "Province"
2121
+ msgstr "Okres"
2122
+
2123
+ #: templates/account/payments.php:29
2124
+ msgid "Payments"
2125
+ msgstr "Platby"
2126
+
2127
+ #: templates/account/payments.php:36
2128
+ msgid "Date"
2129
+ msgstr "Datum"
2130
+
2131
+ #: templates/account/payments.php:37
2132
+ msgid "Amount"
2133
+ msgstr "Částka"
2134
+
2135
+ #: templates/account/payments.php38, templates/account/payments.php:50
2136
+ msgid "Invoice"
2137
+ msgstr "Faktura"
2138
+
2139
+ #: templates/debug/api-calls.php:56
2140
+ msgid "API"
2141
+ msgstr "API"
2142
+
2143
+ #: templates/debug/api-calls.php:68
2144
+ msgid "Method"
2145
+ msgstr "Metoda"
2146
+
2147
+ #: templates/debug/api-calls.php:69
2148
+ msgid "Code"
2149
+ msgstr "Kód"
2150
+
2151
+ #: templates/debug/api-calls.php:70
2152
+ msgid "Length"
2153
+ msgstr "Délka"
2154
+
2155
+ #: templates/debug/api-calls.php:71
2156
+ msgctxt "as file/folder path"
2157
+ msgid "Path"
2158
+ msgstr "Složka"
2159
+
2160
+ #: templates/debug/api-calls.php:73
2161
+ msgid "Body"
2162
+ msgstr "Tělo"
2163
+
2164
+ #: templates/debug/api-calls.php:75
2165
+ msgid "Result"
2166
+ msgstr "Výsledek"
2167
+
2168
+ #: templates/debug/api-calls.php:76
2169
+ msgid "Start"
2170
+ msgstr "Začátek"
2171
+
2172
+ #: templates/debug/api-calls.php:77
2173
+ msgid "End"
2174
+ msgstr "Konec"
2175
+
2176
+ #: templates/debug/logger.php:15
2177
+ msgid "Log"
2178
+ msgstr "Záznam"
2179
+
2180
+ #. translators: %s: time period (e.g. In "2 hours")
2181
+ #: templates/debug/plugins-themes-sync.php18,
2182
+ #: templates/debug/scheduled-crons.php:91
2183
+ msgid "In %s"
2184
+ msgstr "Za %s"
2185
+
2186
+ #. translators: %s: time period (e.g. "2 hours" ago)
2187
+ #: templates/debug/plugins-themes-sync.php20,
2188
+ #: templates/debug/scheduled-crons.php:93
2189
+ msgid "%s ago"
2190
+ msgstr "Před %s"
2191
+
2192
+ #: templates/debug/plugins-themes-sync.php21,
2193
+ #: templates/debug/scheduled-crons.php:74
2194
+ msgctxt "seconds"
2195
+ msgid "sec"
2196
+ msgstr "s"
2197
+
2198
+ #: templates/debug/plugins-themes-sync.php:23
2199
+ msgid "Plugins & Themes Sync"
2200
+ msgstr "Pluginy a synchronizace šablon"
2201
+
2202
+ #: templates/debug/plugins-themes-sync.php:28
2203
+ msgid "Total"
2204
+ msgstr "Celkem"
2205
+
2206
+ #: templates/debug/plugins-themes-sync.php29,
2207
+ #: templates/debug/scheduled-crons.php:84
2208
+ msgid "Last"
2209
+ msgstr "Poslední"
2210
+
2211
+ #: templates/debug/scheduled-crons.php:76
2212
+ msgid "Scheduled Crons"
2213
+ msgstr "Plánované crony"
2214
+
2215
+ #: templates/debug/scheduled-crons.php:81
2216
+ msgid "Module"
2217
+ msgstr "Modul"
2218
+
2219
+ #: templates/debug/scheduled-crons.php:82
2220
+ msgid "Module Type"
2221
+ msgstr "Typ modulu"
2222
+
2223
+ #: templates/debug/scheduled-crons.php:83
2224
+ msgid "Cron Type"
2225
+ msgstr "Cron Type"
2226
+
2227
+ #: templates/debug/scheduled-crons.php:85
2228
+ msgid "Next"
2229
+ msgstr "Následující"
2230
+
2231
+ #: templates/forms/affiliation.php:82
2232
+ msgid "Non-expiring"
2233
+ msgstr "Non-expiring"
2234
+
2235
+ #: templates/forms/affiliation.php:85
2236
+ msgid "Apply to become an affiliate"
2237
+ msgstr "Apply to become an affiliate"
2238
+
2239
+ #: templates/forms/affiliation.php:107
2240
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2241
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2242
+
2243
+ #: templates/forms/affiliation.php:122
2244
+ 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."
2245
+ 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."
2246
+
2247
+ #: templates/forms/affiliation.php:125
2248
+ msgid "Your affiliation account was temporarily suspended."
2249
+ msgstr "Your affiliation account was temporarily suspended."
2250
+
2251
+ #: templates/forms/affiliation.php:128
2252
+ 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."
2253
+ 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."
2254
+
2255
+ #: templates/forms/affiliation.php:131
2256
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2257
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2258
+
2259
+ #: templates/forms/affiliation.php:144
2260
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2261
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2262
+
2263
+ #: templates/forms/affiliation.php:145
2264
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2265
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2266
+
2267
+ #: templates/forms/affiliation.php:148
2268
+ msgid "Program Summary"
2269
+ msgstr "Program Summary"
2270
+
2271
+ #: templates/forms/affiliation.php:150
2272
+ msgid "%s commission when a customer purchases a new license."
2273
+ msgstr "%s provizi, když zákazník zakoupí novou licenci."
2274
+
2275
+ #: templates/forms/affiliation.php:152
2276
+ msgid "Get commission for automated subscription renewals."
2277
+ msgstr "Get commission for automated subscription renewals."
2278
+
2279
+ #: templates/forms/affiliation.php:155
2280
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2281
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2282
+
2283
+ #: templates/forms/affiliation.php:158
2284
+ msgid "Unlimited commissions."
2285
+ msgstr "Unlimited commissions."
2286
+
2287
+ #: templates/forms/affiliation.php:160
2288
+ msgid "%s minimum payout amount."
2289
+ msgstr "%s minimální částka výplaty."
2290
+
2291
+ #: templates/forms/affiliation.php:161
2292
+ msgid "Payouts are in USD and processed monthly via PayPal."
2293
+ msgstr "Vyplácení probíhá přes PayPal jednou za měsíc a v USD."
2294
+
2295
+ #: templates/forms/affiliation.php:162
2296
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2297
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2298
+
2299
+ #: templates/forms/affiliation.php:165
2300
+ msgid "Affiliate"
2301
+ msgstr "Partner"
2302
+
2303
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2304
+ msgid "Email address"
2305
+ msgstr "Emailová adresa"
2306
+
2307
+ #: templates/forms/affiliation.php:172
2308
+ msgid "Full name"
2309
+ msgstr "Celé jméno"
2310
+
2311
+ #: templates/forms/affiliation.php:176
2312
+ msgid "PayPal account email address"
2313
+ msgstr "E-mailová adresa účtu PayPal"
2314
+
2315
+ #: templates/forms/affiliation.php:180
2316
+ msgid "Where are you going to promote the %s?"
2317
+ msgstr "Where are you going to promote the %s?"
2318
+
2319
+ #: templates/forms/affiliation.php:182
2320
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2321
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2322
+
2323
+ #: templates/forms/affiliation.php:184
2324
+ msgid "Add another domain"
2325
+ msgstr "Add another domain"
2326
+
2327
+ #: templates/forms/affiliation.php:188
2328
+ msgid "Extra Domains"
2329
+ msgstr "Další domény"
2330
+
2331
+ #: templates/forms/affiliation.php:189
2332
+ msgid "Extra domains where you will be marketing the product from."
2333
+ msgstr "Extra domains where you will be marketing the product from."
2334
+
2335
+ #: templates/forms/affiliation.php:199
2336
+ msgid "Promotion methods"
2337
+ msgstr "Promotion methods"
2338
+
2339
+ #: templates/forms/affiliation.php:202
2340
+ msgid "Social media (Facebook, Twitter, etc.)"
2341
+ msgstr "Social media (Facebook, Twitter, etc.)"
2342
+
2343
+ #: templates/forms/affiliation.php:206
2344
+ msgid "Mobile apps"
2345
+ msgstr "Mobile apps"
2346
+
2347
+ #: templates/forms/affiliation.php:210
2348
+ msgid "Website, email, and social media statistics (optional)"
2349
+ msgstr "Statistika o webová stránc, emaiul a sociálních médiích"
2350
+
2351
+ #: templates/forms/affiliation.php:213
2352
+ 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)."
2353
+ 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)."
2354
+
2355
+ #: templates/forms/affiliation.php:217
2356
+ msgid "How will you promote us?"
2357
+ msgstr "Jakým způsobem budete mé produkty propagovat?"
2358
+
2359
+ #: templates/forms/affiliation.php:220
2360
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2361
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2362
+
2363
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2364
+ msgid "Cancel"
2365
+ msgstr "Zrušit"
2366
+
2367
+ #: templates/forms/affiliation.php:234
2368
+ msgid "Become an affiliate"
2369
+ msgstr "Staňte se naším afiliátem"
2370
+
2371
+ #: templates/forms/data-debug-mode.php:25
2372
+ msgid "Please enter the license key to enable the debug mode:"
2373
+ msgstr "Pro povolení módu ladění chyb zadejte licenční klíč."
2374
+
2375
+ #: templates/forms/data-debug-mode.php:27
2376
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2377
+ msgstr "Pro zapnutí módu ladění chyb zadejte tajný klíč vlastníka licence (uživatel s ID = %d), který najdete v sekci \"Můj profil\" vaší nástěnky."
2378
+
2379
+ #: templates/forms/data-debug-mode.php:32
2380
+ msgid "Submit"
2381
+ msgstr "Submit"
2382
+
2383
+ #: templates/forms/data-debug-mode.php:36
2384
+ msgid "User key"
2385
+ msgstr "User key"
2386
+
2387
+ #: templates/forms/license-activation.php:23
2388
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2389
+ msgstr "Zadejte licenční klíč, který najdete v emailu odeslaném po provedení objednávky:"
2390
+
2391
+ #: templates/forms/license-activation.php:28
2392
+ msgid "Update License"
2393
+ msgstr "Aktualizovat licenci"
2394
+
2395
+ #: templates/forms/license-activation.php:41
2396
+ 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."
2397
+ msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
+ msgid "Associate with the license owner's account."
2401
+ msgstr "Associate with the license owner's account."
2402
+
2403
+ #: templates/forms/optout.php:30
2404
+ msgctxt "verb"
2405
+ msgid "Opt Out"
2406
+ msgstr "Odhlásit se"
2407
+
2408
+ #: templates/forms/optout.php:31
2409
+ msgctxt "verb"
2410
+ msgid "Opt In"
2411
+ msgstr "Zúčastnit se"
2412
+
2413
+ #: templates/forms/optout.php:34
2414
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2415
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+
2417
+ #: templates/forms/optout.php:36
2418
+ msgid "Warning: Opting out will block automatic updates"
2419
+ msgstr "Warning: Opting out will block automatic updates"
2420
+
2421
+ #: templates/forms/optout.php:37
2422
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2423
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+
2425
+ #: templates/forms/optout.php:39
2426
+ msgid "I'd like to keep automatic updates"
2427
+ msgstr "I'd like to keep automatic updates"
2428
+
2429
+ #: templates/forms/optout.php:44
2430
+ 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."
2431
+ 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."
2432
+
2433
+ #: templates/forms/optout.php:45
2434
+ msgid "On second thought - I want to continue helping"
2435
+ msgstr "On second thought - I want to continue helping"
2436
+
2437
+ #: templates/forms/optout.php:49
2438
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2439
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2440
+
2441
+ #: templates/forms/optout.php:74
2442
+ msgid "Plugins & themes tracking"
2443
+ msgstr "Plugins & themes tracking"
2444
+
2445
+ #: templates/forms/optout.php:261
2446
+ msgid "Saved"
2447
+ msgstr "Saved"
2448
+
2449
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2450
+ msgid "There is a new version of %s available."
2451
+ msgstr "Je k dispozici nová verze %s."
2452
+
2453
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2454
+ msgid " %s to access version %s security & feature updates, and support."
2455
+ msgstr " %s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace."
2456
+
2457
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2458
+ msgid "New Version Available"
2459
+ msgstr "Nová verze k dispozici"
2460
+
2461
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2462
+ msgctxt "close a window"
2463
+ msgid "Dismiss"
2464
+ msgstr "Skrýt"
2465
+
2466
+ #: templates/forms/resend-key.php:21
2467
+ msgid "Send License Key"
2468
+ msgstr "Odeslat licenční klíč"
2469
+
2470
+ #: templates/forms/resend-key.php:57
2471
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2472
+ msgstr "Zadejte emailovou adresu použitou při objednávce, abychom vám na něj mohli znovu poslat licenční klíč."
2473
+
2474
+ #: templates/forms/subscription-cancellation.php:37
2475
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2476
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2477
+
2478
+ #: templates/forms/subscription-cancellation.php:47
2479
+ 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?"
2480
+ 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?"
2481
+
2482
+ #: templates/forms/subscription-cancellation.php:52
2483
+ msgid "license"
2484
+ msgstr "licence"
2485
+
2486
+ #: templates/forms/subscription-cancellation.php:57
2487
+ 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."
2488
+ 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."
2489
+
2490
+ #: templates/forms/subscription-cancellation.php:68
2491
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2492
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2493
+
2494
+ #: templates/forms/subscription-cancellation.php:103
2495
+ 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."
2496
+ 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."
2497
+
2498
+ #: templates/forms/subscription-cancellation.php:136
2499
+ msgid "Cancel %s?"
2500
+ msgstr "Cancel %s?"
2501
+
2502
+ #: templates/forms/subscription-cancellation.php:143
2503
+ msgid "Proceed"
2504
+ msgstr "Pokračovat"
2505
+
2506
+ #: templates/forms/subscription-cancellation.php191,
2507
+ #: templates/forms/deactivation/form.php:171
2508
+ msgid "Cancel %s & Proceed"
2509
+ msgstr "Zrušit %s &gt; pokračovat"
2510
+
2511
+ #: templates/forms/trial-start.php:22
2512
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2513
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2514
+
2515
+ #: templates/forms/trial-start.php:28
2516
+ 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."
2517
+ msgstr "Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období vás žádáme, abyste se rozhodli pro uživatele a necitlivé informace o webu, aby %s umožňoval periodicky odesílat data do %s za účelem kontroly aktualizací verzí a ověření zkušební verze."
2518
+
2519
+ #: templates/forms/user-change.php:26
2520
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2521
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2522
+
2523
+ #: templates/forms/user-change.php:28
2524
+ msgid "I Agree - Change User"
2525
+ msgstr "I Agree - Change User"
2526
+
2527
+ #: templates/forms/user-change.php:30
2528
+ msgid "Enter email address"
2529
+ msgstr "Enter email address"
2530
+
2531
+ #: templates/forms/user-change.php:81
2532
+ msgctxt "close window"
2533
+ msgid "Dismiss"
2534
+ msgstr "Skrýt"
2535
+
2536
+ #: templates/js/style-premium-theme.php:39
2537
+ msgid "Premium"
2538
+ msgstr "Prémium"
2539
+
2540
+ #: templates/js/style-premium-theme.php:42
2541
+ msgid "Beta"
2542
+ msgstr "Beta"
2543
+
2544
+ #: templates/partials/network-activation.php:27
2545
+ msgid "Activate license on all sites in the network."
2546
+ msgstr "Activate license on all sites in the network."
2547
+
2548
+ #: templates/partials/network-activation.php:28
2549
+ msgid "Apply on all sites in the network."
2550
+ msgstr "Apply on all sites in the network."
2551
+
2552
+ #: templates/partials/network-activation.php:31
2553
+ msgid "Activate license on all pending sites."
2554
+ msgstr "Activate license on all pending sites."
2555
+
2556
+ #: templates/partials/network-activation.php:32
2557
+ msgid "Apply on all pending sites."
2558
+ msgstr "Apply on all pending sites."
2559
+
2560
+ #: templates/partials/network-activation.php40,
2561
+ #: templates/partials/network-activation.php:74
2562
+ msgid "allow"
2563
+ msgstr "povolit"
2564
+
2565
+ #: templates/partials/network-activation.php43,
2566
+ #: templates/partials/network-activation.php:77
2567
+ msgid "delegate"
2568
+ msgstr "delegovat"
2569
+
2570
+ #: templates/partials/network-activation.php47,
2571
+ #: templates/partials/network-activation.php:81
2572
+ msgid "skip"
2573
+ msgstr "přeskočit"
2574
+
2575
+ #: templates/plugin-info/description.php72,
2576
+ #: templates/plugin-info/screenshots.php:31
2577
+ msgid "Click to view full-size screenshot %d"
2578
+ msgstr "Klikněte pro zobrazení plné velikosti snímku obrazovky %d"
2579
+
2580
+ #: templates/plugin-info/features.php:56
2581
+ msgid "Unlimited Updates"
2582
+ msgstr "Neomezené aktualizace"
2583
+
2584
+ #: templates/account/partials/activate-license-button.php:46
2585
+ msgid "Localhost"
2586
+ msgstr "Localhost"
2587
+
2588
+ #: templates/account/partials/activate-license-button.php:50
2589
+ msgctxt "as 5 licenses left"
2590
+ msgid "%s left"
2591
+ msgstr "Zbývá %s"
2592
+
2593
+ #: templates/account/partials/activate-license-button.php:51
2594
+ msgid "Last license"
2595
+ msgstr "Poslední licence"
2596
+
2597
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2598
+ #. subscription'
2599
+ #: templates/account/partials/addon.php:29
2600
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2601
+ msgstr "%1$s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s."
2602
+
2603
+ #: templates/account/partials/addon.php:185
2604
+ msgid "Cancelled"
2605
+ msgstr "Zrušena"
2606
+
2607
+ #: templates/account/partials/addon.php:195
2608
+ msgid "No expiration"
2609
+ msgstr "Bez vypršení"
2610
+
2611
+ #: templates/account/partials/site.php:189
2612
+ msgid "Owner Name"
2613
+ msgstr "Jméno vlastníka"
2614
+
2615
+ #: templates/account/partials/site.php:201
2616
+ msgid "Owner Email"
2617
+ msgstr "E-mail vlastníka"
2618
+
2619
+ #: templates/account/partials/site.php:213
2620
+ msgid "Owner ID"
2621
+ msgstr "ID vlastníka"
2622
+
2623
+ #: templates/account/partials/site.php:286
2624
+ msgid "Subscription"
2625
+ msgstr "Předplatné"
2626
+
2627
+ #: templates/forms/deactivation/contact.php:19
2628
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2629
+ msgstr "Omlouváme se za způsobené nepříjemnosti, ale když se nám dáte šanci, tak se vám ze všech sil pokusíme pomoci."
2630
+
2631
+ #: templates/forms/deactivation/contact.php:22
2632
+ msgid "Contact Support"
2633
+ msgstr "Kontaktovat podporu"
2634
+
2635
+ #: templates/forms/deactivation/form.php:64
2636
+ msgid "Anonymous feedback"
2637
+ msgstr "Anonymní zpětná vazba"
2638
+
2639
+ #: templates/forms/deactivation/form.php:70
2640
+ msgid "Deactivate"
2641
+ msgstr "Deaktivovat"
2642
+
2643
+ #: templates/forms/deactivation/form.php:72
2644
+ msgid "Activate %s"
2645
+ msgstr "Aktivovat %s"
2646
+
2647
+ #: templates/forms/deactivation/form.php:87
2648
+ msgid "Quick Feedback"
2649
+ msgstr "Rychlá zpětná vazba"
2650
+
2651
+ #: templates/forms/deactivation/form.php:91
2652
+ msgid "If you have a moment, please let us know why you are %s"
2653
+ msgstr "Máte-li chvilku, dejte nám vědět, proč %s"
2654
+
2655
+ #: templates/forms/deactivation/form.php:91
2656
+ msgid "deactivating"
2657
+ msgstr "deaktivujete"
2658
+
2659
+ #: templates/forms/deactivation/form.php:91
2660
+ msgid "switching"
2661
+ msgstr "přepínám"
2662
+
2663
+ #: templates/forms/deactivation/form.php:369
2664
+ msgid "Submit & %s"
2665
+ msgstr "Odeslat & %s"
2666
+
2667
+ #: templates/forms/deactivation/form.php:390
2668
+ msgid "Kindly tell us the reason so we can improve."
2669
+ msgstr "Dejte nám prosím vědět z jakého důvodu, ať to můžeme zlepšit."
2670
+
2671
+ #: templates/forms/deactivation/form.php:515
2672
+ msgid "Yes - %s"
2673
+ msgstr "Ano - %s"
2674
+
2675
+ #: templates/forms/deactivation/form.php:522
2676
+ msgid "Skip & %s"
2677
+ msgstr "Přeskočit & %s"
2678
+
2679
+ #: templates/forms/deactivation/retry-skip.php:21
2680
+ msgid "Click here to use the plugin anonymously"
2681
+ msgstr "Klikněte zde pro anonymní používání tohoto pluginu"
2682
+
2683
+ #: templates/forms/deactivation/retry-skip.php:23
2684
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2685
+ 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-da_DK.po ADDED
@@ -0,0 +1,2687 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Joachim Jensen, 2019-2020
5
+ # Joachim Jensen, 2016-2018
6
+ # Lars Koudal, 2018-2019
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WordPress SDK\n"
10
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
+ "POT-Creation-Date: \n"
12
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
13
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
+ "Language: da_DK\n"
15
+ "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "MIME-Version: 1.0\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "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"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
24
+ "X-Poedit-SourceCharset: UTF-8\n"
25
+
26
+ #: includes/class-freemius.php1919, templates/account.php:912
27
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
28
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
29
+
30
+ #: includes/class-freemius.php:1926
31
+ msgid "Would you like to proceed with the update?"
32
+ msgstr "Vil du fortsætte med opdateringen?"
33
+
34
+ #: includes/class-freemius.php:2138
35
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
37
+
38
+ #: includes/class-freemius.php:2140
39
+ msgid "Error"
40
+ msgstr "Fejl"
41
+
42
+ #: includes/class-freemius.php:2540
43
+ msgid "I found a better %s"
44
+ msgstr "Jeg fandt et bedre %s"
45
+
46
+ #: includes/class-freemius.php:2542
47
+ msgid "What's the %s's name?"
48
+ msgstr "Hvad er navnet på %s?"
49
+
50
+ #: includes/class-freemius.php:2548
51
+ msgid "It's a temporary %s. I'm just debugging an issue."
52
+ msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser."
53
+
54
+ #: includes/class-freemius.php:2550
55
+ msgid "Deactivation"
56
+ msgstr "Deaktivering"
57
+
58
+ #: includes/class-freemius.php:2551
59
+ msgid "Theme Switch"
60
+ msgstr "Temaskift"
61
+
62
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
63
+ #: templates/forms/user-change.php:29
64
+ msgid "Other"
65
+ msgstr "Andet"
66
+
67
+ #: includes/class-freemius.php:2568
68
+ msgid "I no longer need the %s"
69
+ msgstr "Jeg har ikke længere brug for %s"
70
+
71
+ #: includes/class-freemius.php:2575
72
+ msgid "I only needed the %s for a short period"
73
+ msgstr "Jeg behøvede kun %s i en kort periode"
74
+
75
+ #: includes/class-freemius.php:2581
76
+ msgid "The %s broke my site"
77
+ msgstr "%s ødelagde min webside"
78
+
79
+ #: includes/class-freemius.php:2588
80
+ msgid "The %s suddenly stopped working"
81
+ msgstr "%s stoppede pludseligt med at virke"
82
+
83
+ #: includes/class-freemius.php:2598
84
+ msgid "I can't pay for it anymore"
85
+ msgstr "Jeg kan ikke længere betale for det"
86
+
87
+ #: includes/class-freemius.php:2600
88
+ msgid "What price would you feel comfortable paying?"
89
+ msgstr "Hvilken pris ville du foretrække at betale?"
90
+
91
+ #: includes/class-freemius.php:2606
92
+ msgid "I don't like to share my information with you"
93
+ msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
94
+
95
+ #: includes/class-freemius.php:2627
96
+ msgid "The %s didn't work"
97
+ msgstr "%s virkede ikke"
98
+
99
+ #: includes/class-freemius.php:2637
100
+ msgid "I couldn't understand how to make it work"
101
+ msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
102
+
103
+ #: includes/class-freemius.php:2645
104
+ msgid "The %s is great, but I need specific feature that you don't support"
105
+ msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
106
+
107
+ #: includes/class-freemius.php:2647
108
+ msgid "What feature?"
109
+ msgstr "Hvilken feature?"
110
+
111
+ #: includes/class-freemius.php:2651
112
+ msgid "The %s is not working"
113
+ msgstr "%s virker ikke"
114
+
115
+ #: includes/class-freemius.php:2653
116
+ msgid "Kindly share what didn't work so we can fix it for future users..."
117
+ msgstr "Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende brugere...."
118
+
119
+ #: includes/class-freemius.php:2657
120
+ msgid "It's not what I was looking for"
121
+ msgstr "Det er ikke, hvad jeg søgte"
122
+
123
+ #: includes/class-freemius.php:2659
124
+ msgid "What you've been looking for?"
125
+ msgstr "Hvad ledte du efter?"
126
+
127
+ #: includes/class-freemius.php:2663
128
+ msgid "The %s didn't work as expected"
129
+ msgstr "%s virkede ikke som forventet"
130
+
131
+ #: includes/class-freemius.php:2665
132
+ msgid "What did you expect?"
133
+ msgstr "Hvad forventede du?"
134
+
135
+ #: includes/class-freemius.php3520, templates/debug.php:20
136
+ msgid "Freemius Debug"
137
+ msgstr "Freemius Debug"
138
+
139
+ #: includes/class-freemius.php:4272
140
+ msgid "I don't know what is cURL or how to install it, help me!"
141
+ msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
142
+
143
+ #: includes/class-freemius.php:4274
144
+ 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."
145
+ 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."
146
+
147
+ #: includes/class-freemius.php:4281
148
+ 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."
149
+ 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."
150
+
151
+ #: includes/class-freemius.php:4386
152
+ msgid "Yes - do your thing"
153
+ msgstr "Ja - fortsæt bare"
154
+
155
+ #: includes/class-freemius.php:4391
156
+ msgid "No - just deactivate"
157
+ msgstr "Nej - bare deaktiver"
158
+
159
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
160
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
161
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
162
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
163
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
164
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
165
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
166
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
167
+ msgctxt "exclamation"
168
+ msgid "Oops"
169
+ msgstr "Ups"
170
+
171
+ #: includes/class-freemius.php:4505
172
+ 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."
173
+ 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."
174
+
175
+ #: includes/class-freemius.php:4927
176
+ msgctxt "addonX cannot run without pluginY"
177
+ msgid "%s cannot run without %s."
178
+ msgstr "%s virker ikke uden %s."
179
+
180
+ #: includes/class-freemius.php:4928
181
+ msgctxt "addonX cannot run..."
182
+ msgid "%s cannot run without the plugin."
183
+ msgstr "%s virker ikke uden pluginnet."
184
+
185
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
186
+ #: includes/class-freemius.php:21180
187
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
188
+ msgstr "Uventet API-fejl. Kontakt %s's forfatter med følgende fejl."
189
+
190
+ #: includes/class-freemius.php:5857
191
+ msgid "Premium %s version was successfully activated."
192
+ msgstr "Premium-versionen af %s blev aktiveret."
193
+
194
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
195
+ msgctxt ""
196
+ msgid "W00t"
197
+ msgstr "W00t"
198
+
199
+ #: includes/class-freemius.php:5884
200
+ msgid "You have a %s license."
201
+ msgstr "Du har en %s licens."
202
+
203
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
204
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
205
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
206
+ #: includes/class-freemius.php:20930
207
+ msgctxt "interjection expressing joy or exuberance"
208
+ msgid "Yee-haw"
209
+ msgstr "Yee-haw"
210
+
211
+ #: includes/class-freemius.php:6174
212
+ 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."
213
+ 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."
214
+
215
+ #: includes/class-freemius.php:6178
216
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
218
+
219
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
220
+ #: templates/account/partials/addon.php:381
221
+ msgid "More information about %s"
222
+ msgstr "Mere information om %s"
223
+
224
+ #: includes/class-freemius.php:6188
225
+ msgid "Purchase License"
226
+ msgstr "Køb licens"
227
+
228
+ #: includes/class-freemius.php7125, templates/connect.php:171
229
+ 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."
230
+ 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."
231
+
232
+ #: includes/class-freemius.php:7129
233
+ msgid "start the trial"
234
+ msgstr "start prøveperioden"
235
+
236
+ #: includes/class-freemius.php7130, templates/connect.php:175
237
+ msgid "complete the install"
238
+ msgstr "færdiggør installeringen"
239
+
240
+ #: includes/class-freemius.php:7249
241
+ msgid "You are just one step away - %s"
242
+ msgstr "Du mangler kun ét skridt - %s"
243
+
244
+ #: includes/class-freemius.php:7252
245
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
+ msgid "Complete \"%s\" Activation Now"
247
+ msgstr "Færdiggør aktivering af \"%s\" nu"
248
+
249
+ #: includes/class-freemius.php:7334
250
+ msgid "We made a few tweaks to the %s, %s"
251
+ msgstr "Vi har foretaget nogle rettelser til %s, %s"
252
+
253
+ #: includes/class-freemius.php:7338
254
+ msgid "Opt in to make \"%s\" better!"
255
+ msgstr "Accepter for at gøre \"%s\" bedre!"
256
+
257
+ #: includes/class-freemius.php:7773
258
+ msgid "The upgrade of %s was successfully completed."
259
+ msgstr "Opgraderingen af %s blev fuldendt."
260
+
261
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
262
+ #: includes/class-fs-plugin-updater.php1282,
263
+ #: includes/class-fs-plugin-updater.php1289,
264
+ #: templates/auto-installation.php:32
265
+ msgid "Add-On"
266
+ msgstr "Tilføjelse"
267
+
268
+ #: includes/class-freemius.php10257, templates/account.php394,
269
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
270
+ msgid "Plugin"
271
+ msgstr "Plugin"
272
+
273
+ #: includes/class-freemius.php10258, templates/account.php395,
274
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
275
+ #: templates/forms/deactivation/form.php:71
276
+ msgid "Theme"
277
+ msgstr "Tema"
278
+
279
+ #: includes/class-freemius.php:13188
280
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
+
283
+ #: includes/class-freemius.php:13202
284
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
285
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
286
+
287
+ #: includes/class-freemius.php:13207
288
+ msgid "User Dashboard"
289
+ msgstr "User Dashboard"
290
+
291
+ #: includes/class-freemius.php:13208
292
+ msgid "revert it now"
293
+ msgstr "revert it now"
294
+
295
+ #: includes/class-freemius.php:13266
296
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
297
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
+
299
+ #: includes/class-freemius.php:13339
300
+ msgid "Invalid new user ID or email address."
301
+ msgstr "Invalid new user ID or email address."
302
+
303
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
304
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
+ msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail."
306
+
307
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
308
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
310
+
311
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
312
+ msgid "Change Ownership"
313
+ msgstr "Skift ejerskab"
314
+
315
+ #: includes/class-freemius.php:13977
316
+ msgid "Invalid site details collection."
317
+ msgstr "Invalid site details collection."
318
+
319
+ #: includes/class-freemius.php:14097
320
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
+ msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?"
322
+
323
+ #: includes/class-freemius.php:14099
324
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
+ msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?"
326
+
327
+ #: includes/class-freemius.php:14373
328
+ msgid "Account is pending activation."
329
+ msgstr "Konto afventer aktivering."
330
+
331
+ #: includes/class-freemius.php14485,
332
+ #: templates/forms/premium-versions-upgrade-handler.php:47
333
+ msgid "Buy a license now"
334
+ msgstr "Køb en licens nu"
335
+
336
+ #: includes/class-freemius.php14497,
337
+ #: templates/forms/premium-versions-upgrade-handler.php:46
338
+ msgid "Renew your license now"
339
+ msgstr "Forny din licens nu"
340
+
341
+ #: includes/class-freemius.php:14501
342
+ msgid "%s to access version %s security & feature updates, and support."
343
+ msgstr "%s to access version %s security & feature updates, and support."
344
+
345
+ #: includes/class-freemius.php:16929
346
+ msgid "%s activation was successfully completed."
347
+ msgstr "Aktivering af %s blev gennemført."
348
+
349
+ #: includes/class-freemius.php:16943
350
+ msgid "Your account was successfully activated with the %s plan."
351
+ msgstr "Din konto blev aktiveret med planen %s."
352
+
353
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
354
+ msgid "Your trial has been successfully started."
355
+ msgstr "Din prøveperiode er begyndt."
356
+
357
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
358
+ #: includes/class-freemius.php:17820
359
+ msgid "Couldn't activate %s."
360
+ msgstr "Kunne ikke aktivere %s."
361
+
362
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
363
+ #: includes/class-freemius.php:17821
364
+ msgid "Please contact us with the following message:"
365
+ msgstr "Kontakt os venligst med følgende besked:"
366
+
367
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
368
+ msgid "An unknown error has occurred."
369
+ msgstr "Der skete en ukendt fejl."
370
+
371
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
372
+ msgid "Upgrade"
373
+ msgstr "Opgrader"
374
+
375
+ #: includes/class-freemius.php:18184
376
+ msgid "Start Trial"
377
+ msgstr "Start prøveperiode"
378
+
379
+ #: includes/class-freemius.php:18186
380
+ msgid "Pricing"
381
+ msgstr "Priser"
382
+
383
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
384
+ msgid "Affiliation"
385
+ msgstr "Affiliation"
386
+
387
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
388
+ #: templates/account.php242, templates/debug.php:324
389
+ msgid "Account"
390
+ msgstr "Konto"
391
+
392
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
393
+ #: includes/customizer/class-fs-customizer-support-section.php:60
394
+ msgid "Contact Us"
395
+ msgstr "Kontakt os"
396
+
397
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
398
+ #: includes/class-freemius.php23354, templates/account.php121,
399
+ #: templates/account/partials/addon.php:44
400
+ msgid "Add-Ons"
401
+ msgstr "Tilføjelser"
402
+
403
+ #: includes/class-freemius.php:18361
404
+ msgctxt "ASCII arrow left icon"
405
+ msgid "&#x2190;"
406
+ msgstr "&#x2190;"
407
+
408
+ #: includes/class-freemius.php:18361
409
+ msgctxt "ASCII arrow right icon"
410
+ msgid "&#x27a4;"
411
+ msgstr "&#x27a4;"
412
+
413
+ #: includes/class-freemius.php18363, templates/pricing.php:109
414
+ msgctxt "noun"
415
+ msgid "Pricing"
416
+ msgstr "Priser"
417
+
418
+ #: includes/class-freemius.php18576,
419
+ #: includes/customizer/class-fs-customizer-support-section.php:67
420
+ msgid "Support Forum"
421
+ msgstr "Supportforum"
422
+
423
+ #: includes/class-freemius.php:19550
424
+ msgid "Your email has been successfully verified - you are AWESOME!"
425
+ msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
426
+
427
+ #: includes/class-freemius.php:19551
428
+ msgctxt "a positive response"
429
+ msgid "Right on"
430
+ msgstr "Sådan"
431
+
432
+ #: includes/class-freemius.php:20057
433
+ msgid "seems like the key you entered doesn't match our records."
434
+ msgstr "seems like the key you entered doesn't match our records."
435
+
436
+ #: includes/class-freemius.php:20081
437
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
438
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
439
+
440
+ #: includes/class-freemius.php:20316
441
+ msgid "Your %s Add-on plan was successfully upgraded."
442
+ msgstr "Your %s Add-on plan was successfully upgraded."
443
+
444
+ #: includes/class-freemius.php:20318
445
+ msgid "%s Add-on was successfully purchased."
446
+ msgstr "Betalingen for tilføjelsen %s blev gennemført."
447
+
448
+ #: includes/class-freemius.php:20321
449
+ msgid "Download the latest version"
450
+ msgstr "Download den seneste version"
451
+
452
+ #: includes/class-freemius.php:20407
453
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
454
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
455
+
456
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
457
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
458
+ msgid "Error received from the server:"
459
+ msgstr "Fejl modtager fra serveren:"
460
+
461
+ #: includes/class-freemius.php:20423
462
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
464
+
465
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
466
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
467
+ msgctxt ""
468
+ msgid "Hmm"
469
+ msgstr "Hmm"
470
+
471
+ #: includes/class-freemius.php:20664
472
+ 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."
473
+ 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."
474
+
475
+ #: includes/class-freemius.php20665, templates/account.php123,
476
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
+ msgctxt "trial period"
478
+ msgid "Trial"
479
+ msgstr "Prøveperiode"
480
+
481
+ #: includes/class-freemius.php:20670
482
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
+ msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s."
484
+
485
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
486
+ msgid "Please contact us here"
487
+ msgstr "Kontakt os her"
488
+
489
+ #: includes/class-freemius.php:20685
490
+ msgid "Your plan was successfully activated."
491
+ msgstr "Din plan er blevet aktiveret."
492
+
493
+ #: includes/class-freemius.php:20686
494
+ msgid "Your plan was successfully upgraded."
495
+ msgstr "Din plan er blevet opgraderet."
496
+
497
+ #: includes/class-freemius.php:20703
498
+ msgid "Your plan was successfully changed to %s."
499
+ msgstr "Din plan er blevet ændret til %s."
500
+
501
+ #: includes/class-freemius.php:20719
502
+ msgid "Your license has expired. You can still continue using the free %s forever."
503
+ msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s."
504
+
505
+ #: includes/class-freemius.php:20721
506
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
+ msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser."
508
+
509
+ #: includes/class-freemius.php:20729
510
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
+ msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
512
+
513
+ #: includes/class-freemius.php:20742
514
+ 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."
515
+ 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."
516
+
517
+ #: includes/class-freemius.php:20768
518
+ msgid "Your free trial has expired. You can still continue using all our free features."
519
+ msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features."
520
+
521
+ #: includes/class-freemius.php:20770
522
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
524
+
525
+ #: includes/class-freemius.php:20885
526
+ msgid "It looks like the license could not be activated."
527
+ msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
528
+
529
+ #: includes/class-freemius.php:20927
530
+ msgid "Your license was successfully activated."
531
+ msgstr "Din licens er blevet aktiveret."
532
+
533
+ #: includes/class-freemius.php:20953
534
+ msgid "It looks like your site currently doesn't have an active license."
535
+ msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
536
+
537
+ #: includes/class-freemius.php:20977
538
+ msgid "It looks like the license deactivation failed."
539
+ msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
540
+
541
+ #: includes/class-freemius.php:21006
542
+ msgid "Your %s license was successfully deactivated."
543
+ msgstr "Your %s license was successfully deactivated."
544
+
545
+ #: includes/class-freemius.php:21007
546
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
547
+ msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
548
+
549
+ #: includes/class-freemius.php:21010
550
+ msgid "O.K"
551
+ msgstr "O.K"
552
+
553
+ #: includes/class-freemius.php:21063
554
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
+
557
+ #: includes/class-freemius.php:21072
558
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
+
561
+ #: includes/class-freemius.php:21114
562
+ msgid "You are already running the %s in a trial mode."
563
+ msgstr "Du benytter allerede %s under en prøveperiode."
564
+
565
+ #: includes/class-freemius.php:21125
566
+ msgid "You already utilized a trial before."
567
+ msgstr "Du har allerede brugt din prøveperiode."
568
+
569
+ #: includes/class-freemius.php:21139
570
+ msgid "Plan %s do not exist, therefore, can't start a trial."
571
+ msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
572
+
573
+ #: includes/class-freemius.php:21150
574
+ msgid "Plan %s does not support a trial period."
575
+ msgstr "Plan %s understøtter ikke en prøveperiode."
576
+
577
+ #: includes/class-freemius.php:21161
578
+ msgid "None of the %s's plans supports a trial period."
579
+ msgstr "Ingen af %s's planer understøtter prøveperiode."
580
+
581
+ #: includes/class-freemius.php:21211
582
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
+ msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)"
584
+
585
+ #: includes/class-freemius.php:21247
586
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
588
+
589
+ #: includes/class-freemius.php:21266
590
+ msgid "Your %s free trial was successfully cancelled."
591
+ msgstr "Din gratis prøveperiode for %s er blevet annulleret."
592
+
593
+ #: includes/class-freemius.php:21582
594
+ msgid "Version %s was released."
595
+ msgstr "Version %s er blevet udgivet."
596
+
597
+ #: includes/class-freemius.php:21582
598
+ msgid "Please download %s."
599
+ msgstr "Download venligst %s."
600
+
601
+ #: includes/class-freemius.php:21589
602
+ msgid "the latest %s version here"
603
+ msgstr "den seneste version af %s her"
604
+
605
+ #: includes/class-freemius.php:21594
606
+ msgid "New"
607
+ msgstr "Ny"
608
+
609
+ #: includes/class-freemius.php:21599
610
+ msgid "Seems like you got the latest release."
611
+ msgstr "Det ser ud til, at du har den seneste udgivelse."
612
+
613
+ #: includes/class-freemius.php:21600
614
+ msgid "You are all good!"
615
+ msgstr "Det var det!"
616
+
617
+ #: includes/class-freemius.php:21903
618
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
620
+
621
+ #: includes/class-freemius.php:22043
622
+ msgid "Site successfully opted in."
623
+ msgstr "Websted er tilmeldt."
624
+
625
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
626
+ msgid "Awesome"
627
+ msgstr "Sejt"
628
+
629
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
630
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
+ msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata."
632
+
633
+ #: includes/class-freemius.php:22061
634
+ msgid "Thank you!"
635
+ msgstr "Mange tak!"
636
+
637
+ #: includes/class-freemius.php:22068
638
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
639
+ msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s."
640
+
641
+ #: includes/class-freemius.php:22226
642
+ 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."
643
+ 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."
644
+
645
+ #: includes/class-freemius.php:22232
646
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
+ msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse."
648
+
649
+ #: includes/class-freemius.php:22237
650
+ msgid "%s is the new owner of the account."
651
+ msgstr "%s er den nye ejer af kontoen."
652
+
653
+ #: includes/class-freemius.php:22239
654
+ msgctxt "as congratulations"
655
+ msgid "Congrats"
656
+ msgstr "Tillykke"
657
+
658
+ #: includes/class-freemius.php:22275
659
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
661
+
662
+ #: includes/class-freemius.php:22287
663
+ msgid "Please provide your full name."
664
+ msgstr "Indtast venligst dit fulde navn."
665
+
666
+ #: includes/class-freemius.php:22292
667
+ msgid "Your name was successfully updated."
668
+ msgstr "Dit navn er blevet opdateret."
669
+
670
+ #: includes/class-freemius.php:22353
671
+ msgid "You have successfully updated your %s."
672
+ msgstr "Opdatering af %s blev gennemført."
673
+
674
+ #: includes/class-freemius.php:22412
675
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
676
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
677
+
678
+ #: includes/class-freemius.php:22415
679
+ msgid "Click here"
680
+ msgstr "Click here"
681
+
682
+ #: includes/class-freemius.php:22513
683
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
685
+
686
+ #: includes/class-freemius.php:22514
687
+ msgctxt "advance notice of something that will need attention."
688
+ msgid "Heads up"
689
+ msgstr "Se her"
690
+
691
+ #: includes/class-freemius.php:23090
692
+ msgctxt "exclamation"
693
+ msgid "Hey"
694
+ msgstr "Hey"
695
+
696
+ #: includes/class-freemius.php:23090
697
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
+ msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode."
699
+
700
+ #: includes/class-freemius.php:23098
701
+ msgid "No commitment for %s days - cancel anytime!"
702
+ msgstr "Ingen bindinger i %s dage - annuller når som helst!"
703
+
704
+ #: includes/class-freemius.php:23099
705
+ msgid "No credit card required"
706
+ msgstr "Betalingskort ikke påkrævet"
707
+
708
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
709
+ msgctxt "call to action"
710
+ msgid "Start free trial"
711
+ msgstr "Start gratis prøveperiode"
712
+
713
+ #: includes/class-freemius.php:23183
714
+ 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!"
715
+ 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!"
716
+
717
+ #: includes/class-freemius.php:23192
718
+ msgid "Learn more"
719
+ msgstr "Læs mere"
720
+
721
+ #: includes/class-freemius.php23378, templates/account.php558,
722
+ #: templates/account.php708, templates/connect.php179,
723
+ #: templates/connect.php461, templates/forms/license-activation.php27,
724
+ #: templates/account/partials/addon.php:321
725
+ msgid "Activate License"
726
+ msgstr "Aktiver licens"
727
+
728
+ #: includes/class-freemius.php23379, templates/account.php652,
729
+ #: templates/account.php707, templates/account/partials/addon.php322,
730
+ #: templates/account/partials/site.php:271
731
+ msgid "Change License"
732
+ msgstr "Skift licens"
733
+
734
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
735
+ msgid "Opt Out"
736
+ msgstr "Frameld"
737
+
738
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
739
+ #: templates/account/partials/site.php49,
740
+ #: templates/account/partials/site.php:169
741
+ msgid "Opt In"
742
+ msgstr "Tilmeld"
743
+
744
+ #: includes/class-freemius.php:23738
745
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
+
748
+ #: includes/class-freemius.php:23746
749
+ msgid "Activate %s features"
750
+ msgstr "Aktiver funktioner i %s"
751
+
752
+ #: includes/class-freemius.php:23759
753
+ msgid "Please follow these steps to complete the upgrade"
754
+ msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
755
+
756
+ #: includes/class-freemius.php:23763
757
+ msgid "Download the latest %s version"
758
+ msgstr "Download den seneste version af %s"
759
+
760
+ #: includes/class-freemius.php:23767
761
+ msgid "Upload and activate the downloaded version"
762
+ msgstr "Upload og aktiver den downloadede version"
763
+
764
+ #: includes/class-freemius.php:23769
765
+ msgid "How to upload and activate?"
766
+ msgstr "Upload og aktivering, hvordan?"
767
+
768
+ #: includes/class-freemius.php:23903
769
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
771
+
772
+ #: includes/class-freemius.php:24072
773
+ msgid "Auto installation only works for opted-in users."
774
+ msgstr "Auto-installation fungerer kun for tilmeldte brugere."
775
+
776
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
777
+ #: includes/class-fs-plugin-updater.php1261,
778
+ #: includes/class-fs-plugin-updater.php:1275
779
+ msgid "Invalid module ID."
780
+ msgstr "Ugyldigt modul-ID."
781
+
782
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
783
+ msgid "Premium version already active."
784
+ msgstr "Premium version allerede aktiv."
785
+
786
+ #: includes/class-freemius.php:24098
787
+ msgid "You do not have a valid license to access the premium version."
788
+ msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
789
+
790
+ #: includes/class-freemius.php:24105
791
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
793
+
794
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
795
+ msgid "Premium add-on version already installed."
796
+ msgstr "Premium tilføjelse er allerede installeret."
797
+
798
+ #: includes/class-freemius.php:24473
799
+ msgid "View paid features"
800
+ msgstr "Vis betalte features"
801
+
802
+ #: includes/class-freemius.php:24795
803
+ msgid "Thank you so much for using %s and its add-ons!"
804
+ msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!"
805
+
806
+ #: includes/class-freemius.php:24796
807
+ msgid "Thank you so much for using %s!"
808
+ msgstr "Tak fordi du benytter %s!"
809
+
810
+ #: includes/class-freemius.php:24802
811
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
+ msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s."
813
+
814
+ #: includes/class-freemius.php:24806
815
+ msgid "Thank you so much for using our products!"
816
+ msgstr "Mange tak for at benytte vores produkter!"
817
+
818
+ #: includes/class-freemius.php:24807
819
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
+ msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem."
821
+
822
+ #: includes/class-freemius.php:24826
823
+ msgid "%s and its add-ons"
824
+ msgstr "%s og tilføjelser"
825
+
826
+ #: includes/class-freemius.php:24835
827
+ msgid "Products"
828
+ msgstr "Produkter"
829
+
830
+ #: includes/class-freemius.php24842, templates/connect.php:275
831
+ msgid "Yes"
832
+ msgstr "Ja"
833
+
834
+ #: includes/class-freemius.php24843, templates/connect.php:276
835
+ msgid "send me security & feature updates, educational content and offers."
836
+ msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
837
+
838
+ #: includes/class-freemius.php24844, templates/connect.php:281
839
+ msgid "No"
840
+ msgstr "Nej"
841
+
842
+ #: includes/class-freemius.php24846, templates/connect.php:283
843
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
+ msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud."
845
+
846
+ #: includes/class-freemius.php:24856
847
+ 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 :-)"
848
+ 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 :-)"
849
+
850
+ #: includes/class-freemius.php24858, templates/connect.php:290
851
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
+ msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:"
853
+
854
+ #: includes/class-freemius.php:25140
855
+ msgid "License key is empty."
856
+ msgstr "Licensnøglen er tom."
857
+
858
+ #: includes/class-fs-plugin-updater.php206,
859
+ #: templates/forms/premium-versions-upgrade-handler.php:57
860
+ msgid "Renew license"
861
+ msgstr "Forny licens"
862
+
863
+ #: includes/class-fs-plugin-updater.php211,
864
+ #: templates/forms/premium-versions-upgrade-handler.php:58
865
+ msgid "Buy license"
866
+ msgstr "Køb licens"
867
+
868
+ #: includes/class-fs-plugin-updater.php327,
869
+ #: includes/class-fs-plugin-updater.php:360
870
+ msgid "There is a %s of %s available."
871
+ msgstr "There is a %s of %s available."
872
+
873
+ #: includes/class-fs-plugin-updater.php329,
874
+ #: includes/class-fs-plugin-updater.php:365
875
+ msgid "new Beta version"
876
+ msgstr "ny Beta-version"
877
+
878
+ #: includes/class-fs-plugin-updater.php330,
879
+ #: includes/class-fs-plugin-updater.php:366
880
+ msgid "new version"
881
+ msgstr "ny version"
882
+
883
+ #: includes/class-fs-plugin-updater.php:389
884
+ msgid "Important Upgrade Notice:"
885
+ msgstr "Vigtig meddelelse til opgradering:"
886
+
887
+ #: includes/class-fs-plugin-updater.php:1326
888
+ msgid "Installing plugin: %s"
889
+ msgstr "Installerer plugin: %s"
890
+
891
+ #: includes/class-fs-plugin-updater.php:1367
892
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
894
+
895
+ #: includes/class-fs-plugin-updater.php:1549
896
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
898
+
899
+ #: includes/fs-plugin-info-dialog.php:541
900
+ msgid "Purchase More"
901
+ msgstr "Køb flere"
902
+
903
+ #: includes/fs-plugin-info-dialog.php542,
904
+ #: templates/account/partials/addon.php:385
905
+ msgctxt "verb"
906
+ msgid "Purchase"
907
+ msgstr "Køb"
908
+
909
+ #: includes/fs-plugin-info-dialog.php:546
910
+ msgid "Start my free %s"
911
+ msgstr "Start mine gratis %s"
912
+
913
+ #: includes/fs-plugin-info-dialog.php:744
914
+ msgid "Install Free Version Update Now"
915
+ msgstr "Installer opdatering til gratis version nu"
916
+
917
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
918
+ msgid "Install Update Now"
919
+ msgstr "Installer opdatering nu"
920
+
921
+ #: includes/fs-plugin-info-dialog.php:754
922
+ msgid "Install Free Version Now"
923
+ msgstr "Installer gratis version nu"
924
+
925
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
926
+ #: templates/auto-installation.php111,
927
+ #: templates/account/partials/addon.php365,
928
+ #: templates/account/partials/addon.php:418
929
+ msgid "Install Now"
930
+ msgstr "Installer nu"
931
+
932
+ #: includes/fs-plugin-info-dialog.php:771
933
+ msgctxt "as download latest version"
934
+ msgid "Download Latest Free Version"
935
+ msgstr "Download seneste gratis version"
936
+
937
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
938
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
+ msgctxt "as download latest version"
940
+ msgid "Download Latest"
941
+ msgstr "Download seneste"
942
+
943
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
944
+ #: templates/account/partials/addon.php356,
945
+ #: templates/account/partials/addon.php:412
946
+ msgid "Activate this add-on"
947
+ msgstr "Aktiver denne tilføjelse"
948
+
949
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
950
+ msgid "Activate Free Version"
951
+ msgstr "Aktiver gratis version"
952
+
953
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
954
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
+ msgid "Activate"
956
+ msgstr "Aktiver"
957
+
958
+ #: includes/fs-plugin-info-dialog.php:1002
959
+ msgctxt "Plugin installer section title"
960
+ msgid "Description"
961
+ msgstr "Beskrivelse"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:1003
964
+ msgctxt "Plugin installer section title"
965
+ msgid "Installation"
966
+ msgstr "Installering"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:1004
969
+ msgctxt "Plugin installer section title"
970
+ msgid "FAQ"
971
+ msgstr "FAQ"
972
+
973
+ #: includes/fs-plugin-info-dialog.php1005,
974
+ #: templates/plugin-info/description.php:55
975
+ msgid "Screenshots"
976
+ msgstr "Skærmbilleder"
977
+
978
+ #: includes/fs-plugin-info-dialog.php:1006
979
+ msgctxt "Plugin installer section title"
980
+ msgid "Changelog"
981
+ msgstr "Ændringslog"
982
+
983
+ #: includes/fs-plugin-info-dialog.php:1007
984
+ msgctxt "Plugin installer section title"
985
+ msgid "Reviews"
986
+ msgstr "Anmeldelser"
987
+
988
+ #: includes/fs-plugin-info-dialog.php:1008
989
+ msgctxt "Plugin installer section title"
990
+ msgid "Other Notes"
991
+ msgstr "Andre noter"
992
+
993
+ #: includes/fs-plugin-info-dialog.php:1023
994
+ msgctxt "Plugin installer section title"
995
+ msgid "Features & Pricing"
996
+ msgstr "Funktioner og priser"
997
+
998
+ #: includes/fs-plugin-info-dialog.php:1033
999
+ msgid "Plugin Install"
1000
+ msgstr "Plugin-installering"
1001
+
1002
+ #: includes/fs-plugin-info-dialog.php:1105
1003
+ msgctxt "e.g. Professional Plan"
1004
+ msgid "%s Plan"
1005
+ msgstr "%s Plan"
1006
+
1007
+ #: includes/fs-plugin-info-dialog.php:1131
1008
+ msgctxt "e.g. the best product"
1009
+ msgid "Best"
1010
+ msgstr "Bedste"
1011
+
1012
+ #: includes/fs-plugin-info-dialog.php1137,
1013
+ #: includes/fs-plugin-info-dialog.php:1157
1014
+ msgctxt "as every month"
1015
+ msgid "Monthly"
1016
+ msgstr "Månedligt"
1017
+
1018
+ #: includes/fs-plugin-info-dialog.php:1140
1019
+ msgctxt "as once a year"
1020
+ msgid "Annual"
1021
+ msgstr "Årligt"
1022
+
1023
+ #: includes/fs-plugin-info-dialog.php:1143
1024
+ msgid "Lifetime"
1025
+ msgstr "Livstid"
1026
+
1027
+ #: includes/fs-plugin-info-dialog.php1157,
1028
+ #: includes/fs-plugin-info-dialog.php1159,
1029
+ #: includes/fs-plugin-info-dialog.php:1161
1030
+ msgctxt "e.g. billed monthly"
1031
+ msgid "Billed %s"
1032
+ msgstr "Faktureret %s"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:1159
1035
+ msgctxt "as once a year"
1036
+ msgid "Annually"
1037
+ msgstr "Årligt"
1038
+
1039
+ #: includes/fs-plugin-info-dialog.php:1161
1040
+ msgctxt "as once a year"
1041
+ msgid "Once"
1042
+ msgstr "Engangsbeløb"
1043
+
1044
+ #: includes/fs-plugin-info-dialog.php:1167
1045
+ msgid "Single Site License"
1046
+ msgstr "Enkelt site licens"
1047
+
1048
+ #: includes/fs-plugin-info-dialog.php:1169
1049
+ msgid "Unlimited Licenses"
1050
+ msgstr "Ubegrænsede licenser"
1051
+
1052
+ #: includes/fs-plugin-info-dialog.php:1171
1053
+ msgid "Up to %s Sites"
1054
+ msgstr "Op til %s websteder"
1055
+
1056
+ #: includes/fs-plugin-info-dialog.php1181,
1057
+ #: templates/plugin-info/features.php:82
1058
+ msgctxt "as monthly period"
1059
+ msgid "mo"
1060
+ msgstr "md"
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php1188,
1063
+ #: templates/plugin-info/features.php:80
1064
+ msgctxt "as annual period"
1065
+ msgid "year"
1066
+ msgstr "år"
1067
+
1068
+ #: includes/fs-plugin-info-dialog.php:1242
1069
+ msgctxt "noun"
1070
+ msgid "Price"
1071
+ msgstr "Pris"
1072
+
1073
+ #: includes/fs-plugin-info-dialog.php:1290
1074
+ msgid "Save %s"
1075
+ msgstr "Spar %s"
1076
+
1077
+ #: includes/fs-plugin-info-dialog.php:1300
1078
+ msgid "No commitment for %s - cancel anytime"
1079
+ msgstr "Ingen bindinger i %s - annuller når som helst"
1080
+
1081
+ #: includes/fs-plugin-info-dialog.php:1303
1082
+ msgid "After your free %s, pay as little as %s"
1083
+ msgstr "Efter dine gratis %s er prisen kun %s"
1084
+
1085
+ #: includes/fs-plugin-info-dialog.php:1314
1086
+ msgid "Details"
1087
+ msgstr "Detaljer"
1088
+
1089
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1090
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
+ #: templates/account/partials/addon.php:36
1092
+ msgctxt "product version"
1093
+ msgid "Version"
1094
+ msgstr "Version"
1095
+
1096
+ #: includes/fs-plugin-info-dialog.php:1325
1097
+ msgctxt "as the plugin author"
1098
+ msgid "Author"
1099
+ msgstr "Forfatter"
1100
+
1101
+ #: includes/fs-plugin-info-dialog.php:1332
1102
+ msgid "Last Updated"
1103
+ msgstr "Senest opdateret"
1104
+
1105
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1106
+ msgctxt "x-ago"
1107
+ msgid "%s ago"
1108
+ msgstr "%s siden"
1109
+
1110
+ #: includes/fs-plugin-info-dialog.php:1346
1111
+ msgid "Requires WordPress Version"
1112
+ msgstr "Kræver WordPress-version"
1113
+
1114
+ #: includes/fs-plugin-info-dialog.php:1347
1115
+ msgid "%s or higher"
1116
+ msgstr "%s eller højere"
1117
+
1118
+ #: includes/fs-plugin-info-dialog.php:1354
1119
+ msgid "Compatible up to"
1120
+ msgstr "Kompatibel op til"
1121
+
1122
+ #: includes/fs-plugin-info-dialog.php:1362
1123
+ msgid "Downloaded"
1124
+ msgstr "Downloadet"
1125
+
1126
+ #: includes/fs-plugin-info-dialog.php:1366
1127
+ msgid "%s time"
1128
+ msgstr "%s gang"
1129
+
1130
+ #: includes/fs-plugin-info-dialog.php:1368
1131
+ msgid "%s times"
1132
+ msgstr "%s gange"
1133
+
1134
+ #: includes/fs-plugin-info-dialog.php:1379
1135
+ msgid "WordPress.org Plugin Page"
1136
+ msgstr "WordPress.org Plugin-side"
1137
+
1138
+ #: includes/fs-plugin-info-dialog.php:1388
1139
+ msgid "Plugin Homepage"
1140
+ msgstr "Plugin-websted"
1141
+
1142
+ #: includes/fs-plugin-info-dialog.php1397,
1143
+ #: includes/fs-plugin-info-dialog.php:1481
1144
+ msgid "Donate to this plugin"
1145
+ msgstr "Donér til dette plugin"
1146
+
1147
+ #: includes/fs-plugin-info-dialog.php:1404
1148
+ msgid "Average Rating"
1149
+ msgstr "Gennemsnitlig vurdering"
1150
+
1151
+ #: includes/fs-plugin-info-dialog.php:1411
1152
+ msgid "based on %s"
1153
+ msgstr "baseret på %s"
1154
+
1155
+ #: includes/fs-plugin-info-dialog.php:1415
1156
+ msgid "%s rating"
1157
+ msgstr "%s vurdering"
1158
+
1159
+ #: includes/fs-plugin-info-dialog.php:1417
1160
+ msgid "%s ratings"
1161
+ msgstr "%s vurderinger"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1432
1164
+ msgid "%s star"
1165
+ msgstr "%s stjerne"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1434
1168
+ msgid "%s stars"
1169
+ msgstr "%s stjerner"
1170
+
1171
+ #: includes/fs-plugin-info-dialog.php:1446
1172
+ msgid "Click to see reviews that provided a rating of %s"
1173
+ msgstr "Click to see reviews that provided a rating of %s"
1174
+
1175
+ #: includes/fs-plugin-info-dialog.php:1459
1176
+ msgid "Contributors"
1177
+ msgstr "Bidragsydere"
1178
+
1179
+ #: includes/fs-plugin-info-dialog.php1489,
1180
+ #: includes/fs-plugin-info-dialog.php:1491
1181
+ msgid "Warning"
1182
+ msgstr "Advarsel"
1183
+
1184
+ #: includes/fs-plugin-info-dialog.php:1489
1185
+ msgid "This plugin has not been tested with your current version of WordPress."
1186
+ msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
1187
+
1188
+ #: includes/fs-plugin-info-dialog.php:1491
1189
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1190
+ msgstr "Dette plugin er ikke markeret som kompatibel med din nuværende version af WordPress."
1191
+
1192
+ #: includes/fs-plugin-info-dialog.php:1510
1193
+ msgid "Paid add-on must be deployed to Freemius."
1194
+ msgstr "Paid add-on must be deployed to Freemius."
1195
+
1196
+ #: includes/fs-plugin-info-dialog.php:1511
1197
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1198
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1199
+
1200
+ #: includes/fs-plugin-info-dialog.php:1532
1201
+ msgid "Newer Version (%s) Installed"
1202
+ msgstr "Nyere version (%s) installeret"
1203
+
1204
+ #: includes/fs-plugin-info-dialog.php:1533
1205
+ msgid "Newer Free Version (%s) Installed"
1206
+ msgstr "Nyere gratis version (%s) installeret"
1207
+
1208
+ #: includes/fs-plugin-info-dialog.php:1540
1209
+ msgid "Latest Version Installed"
1210
+ msgstr "Seneste version installeret"
1211
+
1212
+ #: includes/fs-plugin-info-dialog.php:1541
1213
+ msgid "Latest Free Version Installed"
1214
+ msgstr "Seneste gratis version installeret"
1215
+
1216
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1217
+ #: templates/account/partials/addon.php26,
1218
+ #: templates/account/partials/site.php:311
1219
+ msgid "Downgrading your plan"
1220
+ msgstr "Nedgraderer din plan"
1221
+
1222
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1223
+ #: templates/account/partials/addon.php27,
1224
+ #: templates/account/partials/site.php:312
1225
+ msgid "Cancelling the subscription"
1226
+ msgstr "Annullerer abonnementet"
1227
+
1228
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
+ #. subscription'
1230
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1231
+ #: templates/account/partials/site.php:314
1232
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
+
1235
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1236
+ #: templates/account/partials/addon.php30,
1237
+ #: templates/account/partials/site.php:315
1238
+ 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."
1239
+ 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."
1240
+
1241
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1242
+ #: templates/account/partials/addon.php:31
1243
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1245
+
1246
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1247
+ #: templates/account/partials/addon.php32,
1248
+ #: templates/account/partials/site.php:316
1249
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
+
1252
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1253
+ #: templates/account/partials/addon.php33,
1254
+ #: templates/account/partials/site.php:317
1255
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1257
+
1258
+ #. translators: %s: Plan title (e.g. "Professional")
1259
+ #: templates/account.php111,
1260
+ #: templates/account/partials/activate-license-button.php31,
1261
+ #: templates/account/partials/addon.php:35
1262
+ msgid "Activate %s Plan"
1263
+ msgstr "Aktiver %s plan"
1264
+
1265
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
+ #: templates/account.php114, templates/account/partials/addon.php38,
1267
+ #: templates/account/partials/site.php:291
1268
+ msgid "Auto renews in %s"
1269
+ msgstr "Auto-fornyer om %s"
1270
+
1271
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1272
+ #: templates/account.php116, templates/account/partials/addon.php40,
1273
+ #: templates/account/partials/site.php:293
1274
+ msgid "Expires in %s"
1275
+ msgstr "Udløber om %s"
1276
+
1277
+ #: templates/account.php:117
1278
+ msgctxt "as synchronize license"
1279
+ msgid "Sync License"
1280
+ msgstr "Synkroniser licens"
1281
+
1282
+ #: templates/account.php118, templates/account/partials/addon.php:41
1283
+ msgid "Cancel Trial"
1284
+ msgstr "Annuller prøveperiode"
1285
+
1286
+ #: templates/account.php119, templates/account/partials/addon.php:42
1287
+ msgid "Change Plan"
1288
+ msgstr "Skift plan"
1289
+
1290
+ #: templates/account.php120, templates/account/partials/addon.php:43
1291
+ msgctxt "verb"
1292
+ msgid "Upgrade"
1293
+ msgstr "Opgrader"
1294
+
1295
+ #: templates/account.php122, templates/account/partials/addon.php45,
1296
+ #: templates/account/partials/site.php:318
1297
+ msgctxt "verb"
1298
+ msgid "Downgrade"
1299
+ msgstr "Nedgrader"
1300
+
1301
+ #: templates/account.php124, templates/add-ons.php246,
1302
+ #: templates/plugin-info/features.php72,
1303
+ #: templates/account/partials/addon.php47,
1304
+ #: templates/account/partials/site.php:33
1305
+ msgid "Free"
1306
+ msgstr "Gratis"
1307
+
1308
+ #: templates/account.php126, templates/debug.php371,
1309
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
+ #: templates/account/partials/addon.php:49
1311
+ msgctxt "as product pricing plan"
1312
+ msgid "Plan"
1313
+ msgstr "Plan"
1314
+
1315
+ #: templates/account.php:127
1316
+ msgid "Bundle Plan"
1317
+ msgstr "Bundle Plan"
1318
+
1319
+ #: templates/account.php:250
1320
+ msgid "Free Trial"
1321
+ msgstr "Gratis prøveperiode"
1322
+
1323
+ #: templates/account.php:261
1324
+ msgid "Account Details"
1325
+ msgstr "Kontodetaljer"
1326
+
1327
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1328
+ msgid "Start Debug"
1329
+ msgstr "Start Debug"
1330
+
1331
+ #: templates/account.php:270
1332
+ msgid "Stop Debug"
1333
+ msgstr "Stop Debug"
1334
+
1335
+ #: templates/account.php:277
1336
+ msgid "Billing & Invoices"
1337
+ msgstr "Fakturering"
1338
+
1339
+ #: templates/account.php:288
1340
+ 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?"
1341
+ 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?"
1342
+
1343
+ #: templates/account.php:290
1344
+ 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?"
1345
+ 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?"
1346
+
1347
+ #: templates/account.php:293
1348
+ msgid "Delete Account"
1349
+ msgstr "Slet konto"
1350
+
1351
+ #: templates/account.php305, templates/account/partials/addon.php231,
1352
+ #: templates/account/partials/deactivate-license-button.php:35
1353
+ msgid "Deactivate License"
1354
+ msgstr "Deaktiver licens"
1355
+
1356
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1357
+ msgid "Are you sure you want to proceed?"
1358
+ msgstr "Er du sikker på, du vil fortsætte?"
1359
+
1360
+ #: templates/account.php328, templates/account/partials/addon.php:255
1361
+ msgid "Cancel Subscription"
1362
+ msgstr "Annuller abonnement"
1363
+
1364
+ #: templates/account.php357, templates/account/partials/addon.php:340
1365
+ msgctxt "as synchronize"
1366
+ msgid "Sync"
1367
+ msgstr "Synkroniser"
1368
+
1369
+ #: templates/account.php372, templates/debug.php:505
1370
+ msgid "Name"
1371
+ msgstr "Navn"
1372
+
1373
+ #: templates/account.php378, templates/debug.php:506
1374
+ msgid "Email"
1375
+ msgstr "E-mail"
1376
+
1377
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1378
+ msgid "User ID"
1379
+ msgstr "Bruger-ID"
1380
+
1381
+ #: templates/account.php403, templates/account.php721,
1382
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1383
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
+ #: templates/debug.php632, templates/account/payments.php35,
1385
+ #: templates/debug/logger.php:21
1386
+ msgid "ID"
1387
+ msgstr "ID"
1388
+
1389
+ #: templates/account.php:410
1390
+ msgid "Site ID"
1391
+ msgstr "Websteds-ID"
1392
+
1393
+ #: templates/account.php:413
1394
+ msgid "No ID"
1395
+ msgstr "Intet ID"
1396
+
1397
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1398
+ #: templates/debug.php456, templates/debug.php508,
1399
+ #: templates/account/partials/site.php:227
1400
+ msgid "Public Key"
1401
+ msgstr "Offentlig nøgle"
1402
+
1403
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1404
+ #: templates/debug.php509, templates/account/partials/site.php:239
1405
+ msgid "Secret Key"
1406
+ msgstr "Privat nøgle"
1407
+
1408
+ #: templates/account.php:427
1409
+ msgctxt "as secret encryption key missing"
1410
+ msgid "No Secret"
1411
+ msgstr "Ingen privat nøgle"
1412
+
1413
+ #: templates/account.php454, templates/account/partials/site.php120,
1414
+ #: templates/account/partials/site.php:122
1415
+ msgid "Trial"
1416
+ msgstr "Prøveperiode"
1417
+
1418
+ #: templates/account.php481, templates/debug.php561,
1419
+ #: templates/account/partials/site.php:260
1420
+ msgid "License Key"
1421
+ msgstr "Licensnøgle"
1422
+
1423
+ #: templates/account.php:512
1424
+ msgid "Join the Beta program"
1425
+ msgstr "Deltag i Beta-programmet"
1426
+
1427
+ #: templates/account.php:518
1428
+ msgid "not verified"
1429
+ msgstr "ikke verificeret"
1430
+
1431
+ #: templates/account.php527, templates/account/partials/addon.php:190
1432
+ msgid "Expired"
1433
+ msgstr "Udløbet"
1434
+
1435
+ #: templates/account.php:587
1436
+ msgid "Premium version"
1437
+ msgstr "Premium version"
1438
+
1439
+ #: templates/account.php:589
1440
+ msgid "Free version"
1441
+ msgstr "Gratis version"
1442
+
1443
+ #: templates/account.php:601
1444
+ msgid "Verify Email"
1445
+ msgstr "Verificer e-mail"
1446
+
1447
+ #: templates/account.php:615
1448
+ msgid "Download %s Version"
1449
+ msgstr "Download 1%s version"
1450
+
1451
+ #: templates/account.php:631
1452
+ msgid "Download Paid Version"
1453
+ msgstr "Download Paid Version"
1454
+
1455
+ #: templates/account.php649, templates/account.php892,
1456
+ #: templates/account/partials/site.php248,
1457
+ #: templates/account/partials/site.php:270
1458
+ msgctxt "verb"
1459
+ msgid "Show"
1460
+ msgstr "Vis"
1461
+
1462
+ #: templates/account.php:664
1463
+ msgid "What is your %s?"
1464
+ msgstr "Angiv venligst %s?"
1465
+
1466
+ #: templates/account.php672, templates/account/billing.php:21
1467
+ msgctxt "verb"
1468
+ msgid "Edit"
1469
+ msgstr "Rediger"
1470
+
1471
+ #: templates/account.php676, templates/forms/user-change.php:27
1472
+ msgid "Change User"
1473
+ msgstr "Change User"
1474
+
1475
+ #: templates/account.php:700
1476
+ msgid "Sites"
1477
+ msgstr "Websteder"
1478
+
1479
+ #: templates/account.php:713
1480
+ msgid "Search by address"
1481
+ msgstr "Søg efter adresse"
1482
+
1483
+ #: templates/account.php722, templates/debug.php:366
1484
+ msgid "Address"
1485
+ msgstr "Adresse"
1486
+
1487
+ #: templates/account.php:723
1488
+ msgid "License"
1489
+ msgstr "Licens"
1490
+
1491
+ #: templates/account.php:724
1492
+ msgid "Plan"
1493
+ msgstr "Plan"
1494
+
1495
+ #: templates/account.php:757
1496
+ msgctxt "as software license"
1497
+ msgid "License"
1498
+ msgstr "Licens"
1499
+
1500
+ #: templates/account.php:886
1501
+ msgctxt "verb"
1502
+ msgid "Hide"
1503
+ msgstr "Skjul"
1504
+
1505
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1506
+ msgid "Processing"
1507
+ msgstr "Arbejder"
1508
+
1509
+ #: templates/account.php:911
1510
+ msgid "Get updates for bleeding edge Beta versions of %s."
1511
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1512
+
1513
+ #: templates/account.php:969
1514
+ msgid "Cancelling %s"
1515
+ msgstr "Annullerer %s"
1516
+
1517
+ #: templates/account.php969, templates/account.php986,
1518
+ #: templates/forms/subscription-cancellation.php27,
1519
+ #: templates/forms/deactivation/form.php:133
1520
+ msgid "trial"
1521
+ msgstr "prøveperiode"
1522
+
1523
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1524
+ msgid "Cancelling %s..."
1525
+ msgstr "Annullerer %s..."
1526
+
1527
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1528
+ #: templates/forms/deactivation/form.php:134
1529
+ msgid "subscription"
1530
+ msgstr "abonnement"
1531
+
1532
+ #: templates/account.php:1001
1533
+ 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?"
1534
+ msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1535
+
1536
+ #: templates/account.php:1075
1537
+ msgid "Disabling white-label mode"
1538
+ msgstr "Disabling white-label mode"
1539
+
1540
+ #: templates/account.php:1076
1541
+ msgid "Enabling white-label mode"
1542
+ msgstr "Enabling white-label mode"
1543
+
1544
+ #: templates/add-ons.php:38
1545
+ msgid "View details"
1546
+ msgstr "Vis detaljer"
1547
+
1548
+ #: templates/add-ons.php:48
1549
+ msgid "Add Ons for %s"
1550
+ msgstr "Tilføjelser til %s"
1551
+
1552
+ #: templates/add-ons.php:58
1553
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1554
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1555
+
1556
+ #: templates/add-ons.php:229
1557
+ msgctxt "active add-on"
1558
+ msgid "Active"
1559
+ msgstr "Aktiv"
1560
+
1561
+ #: templates/add-ons.php:230
1562
+ msgctxt "installed add-on"
1563
+ msgid "Installed"
1564
+ msgstr "Installeret"
1565
+
1566
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1567
+ #: templates/forms/resend-key.php:77
1568
+ msgctxt "as close a window"
1569
+ msgid "Dismiss"
1570
+ msgstr "Fjern"
1571
+
1572
+ #: templates/auto-installation.php:45
1573
+ msgid "%s sec"
1574
+ msgstr "1%s sek"
1575
+
1576
+ #: templates/auto-installation.php:83
1577
+ msgid "Automatic Installation"
1578
+ msgstr "Automatisk installering"
1579
+
1580
+ #: templates/auto-installation.php:93
1581
+ 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."
1582
+ 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."
1583
+
1584
+ #: templates/auto-installation.php:104
1585
+ 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."
1586
+ 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."
1587
+
1588
+ #: templates/auto-installation.php:109
1589
+ msgid "Cancel Installation"
1590
+ msgstr "Annuller installering"
1591
+
1592
+ #: templates/checkout.php:180
1593
+ msgid "Checkout"
1594
+ msgstr "Udtjekning"
1595
+
1596
+ #: templates/checkout.php:180
1597
+ msgid "PCI compliant"
1598
+ msgstr "PCI-kompatibel"
1599
+
1600
+ #. translators: %s: name (e.g. Hey John,)
1601
+ #: templates/connect.php:112
1602
+ msgctxt "greeting"
1603
+ msgid "Hey %s,"
1604
+ msgstr "Hey %s,"
1605
+
1606
+ #: templates/connect.php:162
1607
+ msgid "Allow & Continue"
1608
+ msgstr "Tillad & Fortsæt"
1609
+
1610
+ #: templates/connect.php:166
1611
+ msgid "Re-send activation email"
1612
+ msgstr "Gensend e-mail om aktivering"
1613
+
1614
+ #: templates/connect.php:170
1615
+ msgid "Thanks %s!"
1616
+ msgstr "Tak %s!"
1617
+
1618
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1619
+ msgid "Agree & Activate License"
1620
+ msgstr "Accepter & aktiver licens"
1621
+
1622
+ #: templates/connect.php:184
1623
+ msgid "Welcome to %s! To get started, please enter your license key:"
1624
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1625
+
1626
+ #: templates/connect.php:191
1627
+ 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."
1628
+ msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. "
1629
+
1630
+ #: templates/connect.php:192
1631
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
+ msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %%4$s."
1633
+
1634
+ #: templates/connect.php:198
1635
+ 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."
1636
+ msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1637
+
1638
+ #: templates/connect.php:199
1639
+ 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."
1640
+ msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint."
1641
+
1642
+ #: templates/connect.php:233
1643
+ msgid "We're excited to introduce the Freemius network-level integration."
1644
+ msgstr "We're excited to introduce the Freemius network-level integration."
1645
+
1646
+ #: templates/connect.php:236
1647
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1649
+
1650
+ #: templates/connect.php:238
1651
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1653
+
1654
+ #: templates/connect.php:240
1655
+ msgid "%s's paid features"
1656
+ msgstr "%s's betalte features"
1657
+
1658
+ #: templates/connect.php:245
1659
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1661
+
1662
+ #: templates/connect.php:247
1663
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1665
+
1666
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1667
+ #: templates/forms/license-activation.php:49
1668
+ msgid "License key"
1669
+ msgstr "Licensnøgle"
1670
+
1671
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1672
+ msgid "Can't find your license key?"
1673
+ msgstr "Kan du ikke finde din licensnøgle?"
1674
+
1675
+ #: templates/connect.php318, templates/connect.php700,
1676
+ #: templates/forms/deactivation/retry-skip.php:20
1677
+ msgctxt "verb"
1678
+ msgid "Skip"
1679
+ msgstr "Spring over"
1680
+
1681
+ #: templates/connect.php:321
1682
+ msgid "Delegate to Site Admins"
1683
+ msgstr "Uddeleger til webstedsadministratorer"
1684
+
1685
+ #: templates/connect.php:321
1686
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1687
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1688
+
1689
+ #: templates/connect.php:346
1690
+ msgid "License issues?"
1691
+ msgstr "License issues?"
1692
+
1693
+ #: templates/connect.php:362
1694
+ msgid "Your Profile Overview"
1695
+ msgstr "Overblik af din profil"
1696
+
1697
+ #: templates/connect.php:363
1698
+ msgid "Name and email address"
1699
+ msgstr "Navn og e-mailadresse"
1700
+
1701
+ #: templates/connect.php:370
1702
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1703
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1704
+
1705
+ #: templates/connect.php:371
1706
+ msgid "Your Site Overview"
1707
+ msgstr "Overblik af dit websted"
1708
+
1709
+ #: templates/connect.php:372
1710
+ msgid "Site URL, WP version, PHP info"
1711
+ msgstr "Site URL, WP version, PHP info"
1712
+
1713
+ #: templates/connect.php:379
1714
+ msgid "Admin Notices"
1715
+ msgstr "Admin-meddelelser"
1716
+
1717
+ #: templates/connect.php380, templates/connect.php:398
1718
+ msgid "Updates, announcements, marketing, no spam"
1719
+ msgstr "Opdateringer, annonceringer, marketing, ingen spam"
1720
+
1721
+ #: templates/connect.php:387
1722
+ msgid "So you can reuse the license when the %s is no longer active."
1723
+ msgstr "So you can reuse the license when the %s is no longer active."
1724
+
1725
+ #: templates/connect.php:388
1726
+ msgid "Current %s Status"
1727
+ msgstr "Current %s Status"
1728
+
1729
+ #: templates/connect.php:389
1730
+ msgid "Active, deactivated, or uninstalled"
1731
+ msgstr "Active, deactivated, or uninstalled"
1732
+
1733
+ #: templates/connect.php:397
1734
+ msgid "Newsletter"
1735
+ msgstr "Nyhedsbrev"
1736
+
1737
+ #: templates/connect.php:405
1738
+ msgid "Plugins & Themes"
1739
+ msgstr "Plugins & Temaer"
1740
+
1741
+ #: templates/connect.php:405
1742
+ msgid "optional"
1743
+ msgstr "optional"
1744
+
1745
+ #: templates/connect.php:406
1746
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1748
+
1749
+ #: templates/connect.php:407
1750
+ msgid "Title, slug, version, and is active"
1751
+ msgstr "Title, slug, version, and is active"
1752
+
1753
+ #: templates/connect.php:424
1754
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1756
+
1757
+ #: templates/connect.php:426
1758
+ msgid "diagnostic data"
1759
+ msgstr "diagnostic data"
1760
+
1761
+ #: templates/connect.php:427
1762
+ msgid "Freemius is our licensing and software updates engine"
1763
+ msgstr "Freemius is our licensing and software updates engine"
1764
+
1765
+ #: templates/connect.php:430
1766
+ msgid "What permissions are being granted?"
1767
+ msgstr "Hvilke tilladelser bliver givet?"
1768
+
1769
+ #: templates/connect.php:457
1770
+ msgid "Don't have a license key?"
1771
+ msgstr "Har du ikke en licensnøgle?"
1772
+
1773
+ #: templates/connect.php:460
1774
+ msgid "Have a license key?"
1775
+ msgstr "Har du en licensnøgle?"
1776
+
1777
+ #: templates/connect.php:468
1778
+ msgid "Privacy Policy"
1779
+ msgstr "Privatlivspolitik"
1780
+
1781
+ #: templates/connect.php:470
1782
+ msgid "License Agreement"
1783
+ msgstr "Licensaftale"
1784
+
1785
+ #: templates/connect.php:470
1786
+ msgid "Terms of Service"
1787
+ msgstr "Servicevilkår"
1788
+
1789
+ #: templates/connect.php:866
1790
+ msgctxt "as in the process of sending an email"
1791
+ msgid "Sending email"
1792
+ msgstr "Sender e-mail"
1793
+
1794
+ #: templates/connect.php:867
1795
+ msgctxt "as activating plugin"
1796
+ msgid "Activating"
1797
+ msgstr "Aktiverer"
1798
+
1799
+ #: templates/contact.php:78
1800
+ msgid "Contact"
1801
+ msgstr "Kontakt"
1802
+
1803
+ #: templates/debug.php:17
1804
+ msgctxt "as turned off"
1805
+ msgid "Off"
1806
+ msgstr "Fra"
1807
+
1808
+ #: templates/debug.php:18
1809
+ msgctxt "as turned on"
1810
+ msgid "On"
1811
+ msgstr "Til"
1812
+
1813
+ #: templates/debug.php:20
1814
+ msgid "SDK"
1815
+ msgstr "SDK"
1816
+
1817
+ #: templates/debug.php:24
1818
+ msgctxt "as code debugging"
1819
+ msgid "Debugging"
1820
+ msgstr "Fejlfinding"
1821
+
1822
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1823
+ #: templates/debug.php:510
1824
+ msgid "Actions"
1825
+ msgstr "Handlinger"
1826
+
1827
+ #: templates/debug.php:62
1828
+ msgid "Are you sure you want to delete all Freemius data?"
1829
+ msgstr "Er du sikker på, du vil slette al Freemius data?"
1830
+
1831
+ #: templates/debug.php:62
1832
+ msgid "Delete All Accounts"
1833
+ msgstr "Slet alle konti"
1834
+
1835
+ #: templates/debug.php:69
1836
+ msgid "Clear API Cache"
1837
+ msgstr "Ryd API-cache"
1838
+
1839
+ #: templates/debug.php:77
1840
+ msgid "Clear Updates Transients"
1841
+ msgstr "Clear Updates Transients"
1842
+
1843
+ #: templates/debug.php:84
1844
+ msgid "Sync Data From Server"
1845
+ msgstr "Synkroniser data fra server"
1846
+
1847
+ #: templates/debug.php:93
1848
+ msgid "Migrate Options to Network"
1849
+ msgstr "Migrate Options to Network"
1850
+
1851
+ #: templates/debug.php:98
1852
+ msgid "Load DB Option"
1853
+ msgstr "Hent DB-indstilling"
1854
+
1855
+ #: templates/debug.php:101
1856
+ msgid "Set DB Option"
1857
+ msgstr "Sæt DB-indstilling"
1858
+
1859
+ #: templates/debug.php:180
1860
+ msgid "Key"
1861
+ msgstr "Nøgle"
1862
+
1863
+ #: templates/debug.php:181
1864
+ msgid "Value"
1865
+ msgstr "Værdi"
1866
+
1867
+ #: templates/debug.php:197
1868
+ msgctxt "as software development kit versions"
1869
+ msgid "SDK Versions"
1870
+ msgstr "SDK-versioner"
1871
+
1872
+ #: templates/debug.php:202
1873
+ msgid "SDK Path"
1874
+ msgstr "SDK-sti"
1875
+
1876
+ #: templates/debug.php203, templates/debug.php:242
1877
+ msgid "Module Path"
1878
+ msgstr "Modul-sti"
1879
+
1880
+ #: templates/debug.php:204
1881
+ msgid "Is Active"
1882
+ msgstr "Er aktiv"
1883
+
1884
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1885
+ msgid "Plugins"
1886
+ msgstr "Plugins"
1887
+
1888
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1889
+ msgid "Themes"
1890
+ msgstr "Temaer"
1891
+
1892
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1893
+ #: templates/debug/scheduled-crons.php:80
1894
+ msgid "Slug"
1895
+ msgstr "Kortnavn"
1896
+
1897
+ #: templates/debug.php239, templates/debug.php:453
1898
+ msgid "Title"
1899
+ msgstr "Titel"
1900
+
1901
+ #: templates/debug.php:240
1902
+ msgctxt "as application program interface"
1903
+ msgid "API"
1904
+ msgstr "API"
1905
+
1906
+ #: templates/debug.php:241
1907
+ msgid "Freemius State"
1908
+ msgstr "Freemius tilstand"
1909
+
1910
+ #: templates/debug.php:245
1911
+ msgid "Network Blog"
1912
+ msgstr "Netværksblog"
1913
+
1914
+ #: templates/debug.php:246
1915
+ msgid "Network User"
1916
+ msgstr "Netværksbruger"
1917
+
1918
+ #: templates/debug.php:283
1919
+ msgctxt "as connection was successful"
1920
+ msgid "Connected"
1921
+ msgstr "Forbundet"
1922
+
1923
+ #: templates/debug.php:284
1924
+ msgctxt "as connection blocked"
1925
+ msgid "Blocked"
1926
+ msgstr "Blokeret"
1927
+
1928
+ #: templates/debug.php:320
1929
+ msgid "Simulate Trial Promotion"
1930
+ msgstr "Simulate Trial Promotion"
1931
+
1932
+ #: templates/debug.php:332
1933
+ msgid "Simulate Network Upgrade"
1934
+ msgstr "Simuler netværksopgradering"
1935
+
1936
+ #: templates/debug.php:357
1937
+ msgid "%s Installs"
1938
+ msgstr "%s installeringer"
1939
+
1940
+ #: templates/debug.php:359
1941
+ msgctxt "like websites"
1942
+ msgid "Sites"
1943
+ msgstr "Websteder"
1944
+
1945
+ #: templates/debug.php365, templates/account/partials/site.php:156
1946
+ msgid "Blog ID"
1947
+ msgstr "Blog-ID"
1948
+
1949
+ #: templates/debug.php:370
1950
+ msgid "License ID"
1951
+ msgstr "License ID"
1952
+
1953
+ #: templates/debug.php434, templates/debug.php533,
1954
+ #: templates/account/partials/addon.php:435
1955
+ msgctxt "verb"
1956
+ msgid "Delete"
1957
+ msgstr "Slet"
1958
+
1959
+ #: templates/debug.php:448
1960
+ msgid "Add Ons of module %s"
1961
+ msgstr "Tilføjelser til modul %s"
1962
+
1963
+ #: templates/debug.php:500
1964
+ msgid "Users"
1965
+ msgstr "Brugere"
1966
+
1967
+ #: templates/debug.php:507
1968
+ msgid "Verified"
1969
+ msgstr "Verificeret"
1970
+
1971
+ #: templates/debug.php:549
1972
+ msgid "%s Licenses"
1973
+ msgstr "1%s licenser"
1974
+
1975
+ #: templates/debug.php:554
1976
+ msgid "Plugin ID"
1977
+ msgstr "Plugin-ID"
1978
+
1979
+ #: templates/debug.php:556
1980
+ msgid "Plan ID"
1981
+ msgstr "Plan-ID"
1982
+
1983
+ #: templates/debug.php:557
1984
+ msgid "Quota"
1985
+ msgstr "Kvote"
1986
+
1987
+ #: templates/debug.php:558
1988
+ msgid "Activated"
1989
+ msgstr "Aktiveret"
1990
+
1991
+ #: templates/debug.php:559
1992
+ msgid "Blocking"
1993
+ msgstr "Blokerer"
1994
+
1995
+ #: templates/debug.php560, templates/debug.php631,
1996
+ #: templates/debug/logger.php:22
1997
+ msgid "Type"
1998
+ msgstr "Type"
1999
+
2000
+ #: templates/debug.php:562
2001
+ msgctxt "as expiration date"
2002
+ msgid "Expiration"
2003
+ msgstr "Udløber"
2004
+
2005
+ #: templates/debug.php:590
2006
+ msgid "Debug Log"
2007
+ msgstr "Fejlfindingslog"
2008
+
2009
+ #: templates/debug.php:594
2010
+ msgid "All Types"
2011
+ msgstr "Alle typer"
2012
+
2013
+ #: templates/debug.php:601
2014
+ msgid "All Requests"
2015
+ msgstr "Alle forespørgsler"
2016
+
2017
+ #: templates/debug.php606, templates/debug.php635,
2018
+ #: templates/debug/logger.php:25
2019
+ msgid "File"
2020
+ msgstr "Fil"
2021
+
2022
+ #: templates/debug.php607, templates/debug.php633,
2023
+ #: templates/debug/logger.php:23
2024
+ msgid "Function"
2025
+ msgstr "Funktion"
2026
+
2027
+ #: templates/debug.php:608
2028
+ msgid "Process ID"
2029
+ msgstr "Proces-ID"
2030
+
2031
+ #: templates/debug.php:609
2032
+ msgid "Logger"
2033
+ msgstr "Logger"
2034
+
2035
+ #: templates/debug.php610, templates/debug.php634,
2036
+ #: templates/debug/logger.php:24
2037
+ msgid "Message"
2038
+ msgstr "Besked"
2039
+
2040
+ #: templates/debug.php:612
2041
+ msgid "Filter"
2042
+ msgstr "Filter"
2043
+
2044
+ #: templates/debug.php:620
2045
+ msgid "Download"
2046
+ msgstr "Download"
2047
+
2048
+ #: templates/debug.php636, templates/debug/logger.php:26
2049
+ msgid "Timestamp"
2050
+ msgstr "Tidsstempel"
2051
+
2052
+ #: templates/secure-https-header.php:28
2053
+ msgid "Secure HTTPS %s page, running from an external domain"
2054
+ msgstr "Secure HTTPS %s page, running from an external domain"
2055
+
2056
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2057
+ #: templates/plugin-info/features.php:43
2058
+ msgid "Support"
2059
+ msgstr "Support"
2060
+
2061
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2062
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2063
+ msgctxt "milliseconds"
2064
+ msgid "ms"
2065
+ msgstr "ms"
2066
+
2067
+ #: includes/debug/debug-bar-start.php:41
2068
+ msgid "Freemius API"
2069
+ msgstr "Freemius API"
2070
+
2071
+ #: includes/debug/debug-bar-start.php:42
2072
+ msgid "Requests"
2073
+ msgstr "Forespørgsler"
2074
+
2075
+ #: templates/account/billing.php:22
2076
+ msgctxt "verb"
2077
+ msgid "Update"
2078
+ msgstr "Opdater"
2079
+
2080
+ #: templates/account/billing.php:33
2081
+ msgid "Billing"
2082
+ msgstr "Betaling"
2083
+
2084
+ #: templates/account/billing.php38, templates/account/billing.php:38
2085
+ msgid "Business name"
2086
+ msgstr "Firmanavn"
2087
+
2088
+ #: templates/account/billing.php39, templates/account/billing.php:39
2089
+ msgid "Tax / VAT ID"
2090
+ msgstr "Moms / VAT ID"
2091
+
2092
+ #: templates/account/billing.php42, templates/account/billing.php42,
2093
+ #: templates/account/billing.php43, templates/account/billing.php:43
2094
+ msgid "Address Line %d"
2095
+ msgstr "Adresselinje %d"
2096
+
2097
+ #: templates/account/billing.php46, templates/account/billing.php:46
2098
+ msgid "City"
2099
+ msgstr "By"
2100
+
2101
+ #: templates/account/billing.php46, templates/account/billing.php:46
2102
+ msgid "Town"
2103
+ msgstr "By"
2104
+
2105
+ #: templates/account/billing.php47, templates/account/billing.php:47
2106
+ msgid "ZIP / Postal Code"
2107
+ msgstr "ZIP / Postnummer"
2108
+
2109
+ #: templates/account/billing.php:302
2110
+ msgid "Country"
2111
+ msgstr "Land"
2112
+
2113
+ #: templates/account/billing.php:304
2114
+ msgid "Select Country"
2115
+ msgstr "Vælg land"
2116
+
2117
+ #: templates/account/billing.php311, templates/account/billing.php:312
2118
+ msgid "State"
2119
+ msgstr "Stat"
2120
+
2121
+ #: templates/account/billing.php311, templates/account/billing.php:312
2122
+ msgid "Province"
2123
+ msgstr "Provins"
2124
+
2125
+ #: templates/account/payments.php:29
2126
+ msgid "Payments"
2127
+ msgstr "Betalinger"
2128
+
2129
+ #: templates/account/payments.php:36
2130
+ msgid "Date"
2131
+ msgstr "Dato"
2132
+
2133
+ #: templates/account/payments.php:37
2134
+ msgid "Amount"
2135
+ msgstr "Beløb"
2136
+
2137
+ #: templates/account/payments.php38, templates/account/payments.php:50
2138
+ msgid "Invoice"
2139
+ msgstr "Faktura"
2140
+
2141
+ #: templates/debug/api-calls.php:56
2142
+ msgid "API"
2143
+ msgstr "API"
2144
+
2145
+ #: templates/debug/api-calls.php:68
2146
+ msgid "Method"
2147
+ msgstr "Metode"
2148
+
2149
+ #: templates/debug/api-calls.php:69
2150
+ msgid "Code"
2151
+ msgstr "Kode"
2152
+
2153
+ #: templates/debug/api-calls.php:70
2154
+ msgid "Length"
2155
+ msgstr "Længde"
2156
+
2157
+ #: templates/debug/api-calls.php:71
2158
+ msgctxt "as file/folder path"
2159
+ msgid "Path"
2160
+ msgstr "Sti"
2161
+
2162
+ #: templates/debug/api-calls.php:73
2163
+ msgid "Body"
2164
+ msgstr "Body"
2165
+
2166
+ #: templates/debug/api-calls.php:75
2167
+ msgid "Result"
2168
+ msgstr "Resultat"
2169
+
2170
+ #: templates/debug/api-calls.php:76
2171
+ msgid "Start"
2172
+ msgstr "Start"
2173
+
2174
+ #: templates/debug/api-calls.php:77
2175
+ msgid "End"
2176
+ msgstr "Slut"
2177
+
2178
+ #: templates/debug/logger.php:15
2179
+ msgid "Log"
2180
+ msgstr "Log"
2181
+
2182
+ #. translators: %s: time period (e.g. In "2 hours")
2183
+ #: templates/debug/plugins-themes-sync.php18,
2184
+ #: templates/debug/scheduled-crons.php:91
2185
+ msgid "In %s"
2186
+ msgstr "Om %s"
2187
+
2188
+ #. translators: %s: time period (e.g. "2 hours" ago)
2189
+ #: templates/debug/plugins-themes-sync.php20,
2190
+ #: templates/debug/scheduled-crons.php:93
2191
+ msgid "%s ago"
2192
+ msgstr "%s siden"
2193
+
2194
+ #: templates/debug/plugins-themes-sync.php21,
2195
+ #: templates/debug/scheduled-crons.php:74
2196
+ msgctxt "seconds"
2197
+ msgid "sec"
2198
+ msgstr "sek"
2199
+
2200
+ #: templates/debug/plugins-themes-sync.php:23
2201
+ msgid "Plugins & Themes Sync"
2202
+ msgstr "Synkronisering af plugins og temaer"
2203
+
2204
+ #: templates/debug/plugins-themes-sync.php:28
2205
+ msgid "Total"
2206
+ msgstr "Total"
2207
+
2208
+ #: templates/debug/plugins-themes-sync.php29,
2209
+ #: templates/debug/scheduled-crons.php:84
2210
+ msgid "Last"
2211
+ msgstr "Sidste"
2212
+
2213
+ #: templates/debug/scheduled-crons.php:76
2214
+ msgid "Scheduled Crons"
2215
+ msgstr "Planlagte cron jobs"
2216
+
2217
+ #: templates/debug/scheduled-crons.php:81
2218
+ msgid "Module"
2219
+ msgstr "Modul"
2220
+
2221
+ #: templates/debug/scheduled-crons.php:82
2222
+ msgid "Module Type"
2223
+ msgstr "Modultype"
2224
+
2225
+ #: templates/debug/scheduled-crons.php:83
2226
+ msgid "Cron Type"
2227
+ msgstr "Cron Type"
2228
+
2229
+ #: templates/debug/scheduled-crons.php:85
2230
+ msgid "Next"
2231
+ msgstr "Næste"
2232
+
2233
+ #: templates/forms/affiliation.php:82
2234
+ msgid "Non-expiring"
2235
+ msgstr "Udløber ikke"
2236
+
2237
+ #: templates/forms/affiliation.php:85
2238
+ msgid "Apply to become an affiliate"
2239
+ msgstr "Ansøg om at blive en affiliate"
2240
+
2241
+ #: templates/forms/affiliation.php:107
2242
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2243
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2244
+
2245
+ #: templates/forms/affiliation.php:122
2246
+ 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."
2247
+ 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."
2248
+
2249
+ #: templates/forms/affiliation.php:125
2250
+ msgid "Your affiliation account was temporarily suspended."
2251
+ msgstr "Your affiliation account was temporarily suspended."
2252
+
2253
+ #: templates/forms/affiliation.php:128
2254
+ 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."
2255
+ 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."
2256
+
2257
+ #: templates/forms/affiliation.php:131
2258
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2259
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2260
+
2261
+ #: templates/forms/affiliation.php:144
2262
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2263
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2264
+
2265
+ #: templates/forms/affiliation.php:145
2266
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2267
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2268
+
2269
+ #: templates/forms/affiliation.php:148
2270
+ msgid "Program Summary"
2271
+ msgstr "Programoversigt"
2272
+
2273
+ #: templates/forms/affiliation.php:150
2274
+ msgid "%s commission when a customer purchases a new license."
2275
+ msgstr "%s commission when a customer purchases a new license."
2276
+
2277
+ #: templates/forms/affiliation.php:152
2278
+ msgid "Get commission for automated subscription renewals."
2279
+ msgstr "Get commission for automated subscription renewals."
2280
+
2281
+ #: templates/forms/affiliation.php:155
2282
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2283
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2284
+
2285
+ #: templates/forms/affiliation.php:158
2286
+ msgid "Unlimited commissions."
2287
+ msgstr "Ubegrænset provision."
2288
+
2289
+ #: templates/forms/affiliation.php:160
2290
+ msgid "%s minimum payout amount."
2291
+ msgstr "%s minimum payout amount."
2292
+
2293
+ #: templates/forms/affiliation.php:161
2294
+ msgid "Payouts are in USD and processed monthly via PayPal."
2295
+ msgstr "Udbetalinger er i USD og behandles hver måned via PayPal."
2296
+
2297
+ #: templates/forms/affiliation.php:162
2298
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2299
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2300
+
2301
+ #: templates/forms/affiliation.php:165
2302
+ msgid "Affiliate"
2303
+ msgstr "Affiliate"
2304
+
2305
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2306
+ msgid "Email address"
2307
+ msgstr "E-mailadresse"
2308
+
2309
+ #: templates/forms/affiliation.php:172
2310
+ msgid "Full name"
2311
+ msgstr "Fulde navn"
2312
+
2313
+ #: templates/forms/affiliation.php:176
2314
+ msgid "PayPal account email address"
2315
+ msgstr "E-mailadresse til PayPal-konto"
2316
+
2317
+ #: templates/forms/affiliation.php:180
2318
+ msgid "Where are you going to promote the %s?"
2319
+ msgstr "Hvor vil du promovere %s?"
2320
+
2321
+ #: templates/forms/affiliation.php:182
2322
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2323
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2324
+
2325
+ #: templates/forms/affiliation.php:184
2326
+ msgid "Add another domain"
2327
+ msgstr "Tilføj andet domæne"
2328
+
2329
+ #: templates/forms/affiliation.php:188
2330
+ msgid "Extra Domains"
2331
+ msgstr "Ekstra domæner"
2332
+
2333
+ #: templates/forms/affiliation.php:189
2334
+ msgid "Extra domains where you will be marketing the product from."
2335
+ msgstr "Andre domæner du vil markedsføre produktet fra."
2336
+
2337
+ #: templates/forms/affiliation.php:199
2338
+ msgid "Promotion methods"
2339
+ msgstr "Promoveringsmetoder"
2340
+
2341
+ #: templates/forms/affiliation.php:202
2342
+ msgid "Social media (Facebook, Twitter, etc.)"
2343
+ msgstr "Sociale medier (Facebook, Twitter osv.)"
2344
+
2345
+ #: templates/forms/affiliation.php:206
2346
+ msgid "Mobile apps"
2347
+ msgstr "Mobil-apps"
2348
+
2349
+ #: templates/forms/affiliation.php:210
2350
+ msgid "Website, email, and social media statistics (optional)"
2351
+ msgstr "Websted, e-mail, og statistikker for sociale medier (valgfrit)"
2352
+
2353
+ #: templates/forms/affiliation.php:213
2354
+ 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)."
2355
+ 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)."
2356
+
2357
+ #: templates/forms/affiliation.php:217
2358
+ msgid "How will you promote us?"
2359
+ msgstr "Hvordan vil du promovere os?"
2360
+
2361
+ #: templates/forms/affiliation.php:220
2362
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2363
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2364
+
2365
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2366
+ msgid "Cancel"
2367
+ msgstr "Annuller"
2368
+
2369
+ #: templates/forms/affiliation.php:234
2370
+ msgid "Become an affiliate"
2371
+ msgstr "Bliv en affiliate"
2372
+
2373
+ #: templates/forms/data-debug-mode.php:25
2374
+ msgid "Please enter the license key to enable the debug mode:"
2375
+ msgstr "Please enter the license key to enable the debug mode:"
2376
+
2377
+ #: templates/forms/data-debug-mode.php:27
2378
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2379
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2380
+
2381
+ #: templates/forms/data-debug-mode.php:32
2382
+ msgid "Submit"
2383
+ msgstr "Submit"
2384
+
2385
+ #: templates/forms/data-debug-mode.php:36
2386
+ msgid "User key"
2387
+ msgstr "User key"
2388
+
2389
+ #: templates/forms/license-activation.php:23
2390
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2391
+ msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:"
2392
+
2393
+ #: templates/forms/license-activation.php:28
2394
+ msgid "Update License"
2395
+ msgstr "Opdater licens"
2396
+
2397
+ #: templates/forms/license-activation.php:41
2398
+ 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."
2399
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2400
+
2401
+ #: templates/forms/license-activation.php:183
2402
+ msgid "Associate with the license owner's account."
2403
+ msgstr "Associate with the license owner's account."
2404
+
2405
+ #: templates/forms/optout.php:30
2406
+ msgctxt "verb"
2407
+ msgid "Opt Out"
2408
+ msgstr "Frameld"
2409
+
2410
+ #: templates/forms/optout.php:31
2411
+ msgctxt "verb"
2412
+ msgid "Opt In"
2413
+ msgstr "Tilmeld"
2414
+
2415
+ #: templates/forms/optout.php:34
2416
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2417
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2418
+
2419
+ #: templates/forms/optout.php:36
2420
+ msgid "Warning: Opting out will block automatic updates"
2421
+ msgstr "Warning: Opting out will block automatic updates"
2422
+
2423
+ #: templates/forms/optout.php:37
2424
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2425
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2426
+
2427
+ #: templates/forms/optout.php:39
2428
+ msgid "I'd like to keep automatic updates"
2429
+ msgstr "I'd like to keep automatic updates"
2430
+
2431
+ #: templates/forms/optout.php:44
2432
+ 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."
2433
+ 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."
2434
+
2435
+ #: templates/forms/optout.php:45
2436
+ msgid "On second thought - I want to continue helping"
2437
+ msgstr "Ved nærmere eftertanke - Jeg vil fortsætte med at hjælpe"
2438
+
2439
+ #: templates/forms/optout.php:49
2440
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2441
+ msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
2442
+
2443
+ #: templates/forms/optout.php:74
2444
+ msgid "Plugins & themes tracking"
2445
+ msgstr "Plugins & themes tracking"
2446
+
2447
+ #: templates/forms/optout.php:261
2448
+ msgid "Saved"
2449
+ msgstr "Saved"
2450
+
2451
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2452
+ msgid "There is a new version of %s available."
2453
+ msgstr "En ny version af %s er tilgængelig."
2454
+
2455
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2456
+ msgid " %s to access version %s security & feature updates, and support."
2457
+ msgstr " %s to access version %s security & feature updates, and support."
2458
+
2459
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2460
+ msgid "New Version Available"
2461
+ msgstr "Ny version tilgængelig"
2462
+
2463
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2464
+ msgctxt "close a window"
2465
+ msgid "Dismiss"
2466
+ msgstr "Fjern"
2467
+
2468
+ #: templates/forms/resend-key.php:21
2469
+ msgid "Send License Key"
2470
+ msgstr "Send licensnøgle"
2471
+
2472
+ #: templates/forms/resend-key.php:57
2473
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2474
+ msgstr "Indtast e-mailadressen, som du benyttede ved opgraderingen, nedenfor og vi vil gensende licensnøglen til dig."
2475
+
2476
+ #: templates/forms/subscription-cancellation.php:37
2477
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2478
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2479
+
2480
+ #: templates/forms/subscription-cancellation.php:47
2481
+ 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?"
2482
+ 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?"
2483
+
2484
+ #: templates/forms/subscription-cancellation.php:52
2485
+ msgid "license"
2486
+ msgstr "licens"
2487
+
2488
+ #: templates/forms/subscription-cancellation.php:57
2489
+ 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."
2490
+ 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."
2491
+
2492
+ #: templates/forms/subscription-cancellation.php:68
2493
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2494
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2495
+
2496
+ #: templates/forms/subscription-cancellation.php:103
2497
+ 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."
2498
+ 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."
2499
+
2500
+ #: templates/forms/subscription-cancellation.php:136
2501
+ msgid "Cancel %s?"
2502
+ msgstr "Annuller %s?"
2503
+
2504
+ #: templates/forms/subscription-cancellation.php:143
2505
+ msgid "Proceed"
2506
+ msgstr "Fortsæt"
2507
+
2508
+ #: templates/forms/subscription-cancellation.php191,
2509
+ #: templates/forms/deactivation/form.php:171
2510
+ msgid "Cancel %s & Proceed"
2511
+ msgstr "Annuller %s og fortsæt"
2512
+
2513
+ #: templates/forms/trial-start.php:22
2514
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2515
+ msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
2516
+
2517
+ #: templates/forms/trial-start.php:28
2518
+ 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."
2519
+ 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."
2520
+
2521
+ #: templates/forms/user-change.php:26
2522
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2523
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2524
+
2525
+ #: templates/forms/user-change.php:28
2526
+ msgid "I Agree - Change User"
2527
+ msgstr "I Agree - Change User"
2528
+
2529
+ #: templates/forms/user-change.php:30
2530
+ msgid "Enter email address"
2531
+ msgstr "Enter email address"
2532
+
2533
+ #: templates/forms/user-change.php:81
2534
+ msgctxt "close window"
2535
+ msgid "Dismiss"
2536
+ msgstr "Fjern"
2537
+
2538
+ #: templates/js/style-premium-theme.php:39
2539
+ msgid "Premium"
2540
+ msgstr "Premium"
2541
+
2542
+ #: templates/js/style-premium-theme.php:42
2543
+ msgid "Beta"
2544
+ msgstr "Beta"
2545
+
2546
+ #: templates/partials/network-activation.php:27
2547
+ msgid "Activate license on all sites in the network."
2548
+ msgstr "Aktiver licens på alle websteder i netværket."
2549
+
2550
+ #: templates/partials/network-activation.php:28
2551
+ msgid "Apply on all sites in the network."
2552
+ msgstr "Anvend på alle websteder i netværket."
2553
+
2554
+ #: templates/partials/network-activation.php:31
2555
+ msgid "Activate license on all pending sites."
2556
+ msgstr "Akiver licens på alle afventende websteder."
2557
+
2558
+ #: templates/partials/network-activation.php:32
2559
+ msgid "Apply on all pending sites."
2560
+ msgstr "Anvend på alle afventende websteder."
2561
+
2562
+ #: templates/partials/network-activation.php40,
2563
+ #: templates/partials/network-activation.php:74
2564
+ msgid "allow"
2565
+ msgstr "tillad"
2566
+
2567
+ #: templates/partials/network-activation.php43,
2568
+ #: templates/partials/network-activation.php:77
2569
+ msgid "delegate"
2570
+ msgstr "delegér"
2571
+
2572
+ #: templates/partials/network-activation.php47,
2573
+ #: templates/partials/network-activation.php:81
2574
+ msgid "skip"
2575
+ msgstr "spring over"
2576
+
2577
+ #: templates/plugin-info/description.php72,
2578
+ #: templates/plugin-info/screenshots.php:31
2579
+ msgid "Click to view full-size screenshot %d"
2580
+ msgstr "Klik for at vise skærmbillede %d i fuld skærm"
2581
+
2582
+ #: templates/plugin-info/features.php:56
2583
+ msgid "Unlimited Updates"
2584
+ msgstr "Ubegrænsede opdateringer"
2585
+
2586
+ #: templates/account/partials/activate-license-button.php:46
2587
+ msgid "Localhost"
2588
+ msgstr "Localhost"
2589
+
2590
+ #: templates/account/partials/activate-license-button.php:50
2591
+ msgctxt "as 5 licenses left"
2592
+ msgid "%s left"
2593
+ msgstr "%s tilbage"
2594
+
2595
+ #: templates/account/partials/activate-license-button.php:51
2596
+ msgid "Last license"
2597
+ msgstr "Seneste license"
2598
+
2599
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2600
+ #. subscription'
2601
+ #: templates/account/partials/addon.php:29
2602
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2603
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2604
+
2605
+ #: templates/account/partials/addon.php:185
2606
+ msgid "Cancelled"
2607
+ msgstr "Annulleret"
2608
+
2609
+ #: templates/account/partials/addon.php:195
2610
+ msgid "No expiration"
2611
+ msgstr "Udløber ikke"
2612
+
2613
+ #: templates/account/partials/site.php:189
2614
+ msgid "Owner Name"
2615
+ msgstr "Ejer-navn"
2616
+
2617
+ #: templates/account/partials/site.php:201
2618
+ msgid "Owner Email"
2619
+ msgstr "E-mailadresse for ejer"
2620
+
2621
+ #: templates/account/partials/site.php:213
2622
+ msgid "Owner ID"
2623
+ msgstr "Ejer-ID"
2624
+
2625
+ #: templates/account/partials/site.php:286
2626
+ msgid "Subscription"
2627
+ msgstr "Abonnement"
2628
+
2629
+ #: templates/forms/deactivation/contact.php:19
2630
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2631
+ msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
2632
+
2633
+ #: templates/forms/deactivation/contact.php:22
2634
+ msgid "Contact Support"
2635
+ msgstr "Kontakt support"
2636
+
2637
+ #: templates/forms/deactivation/form.php:64
2638
+ msgid "Anonymous feedback"
2639
+ msgstr "Anonym feedback"
2640
+
2641
+ #: templates/forms/deactivation/form.php:70
2642
+ msgid "Deactivate"
2643
+ msgstr "Deaktiver"
2644
+
2645
+ #: templates/forms/deactivation/form.php:72
2646
+ msgid "Activate %s"
2647
+ msgstr "Aktiver %s"
2648
+
2649
+ #: templates/forms/deactivation/form.php:87
2650
+ msgid "Quick Feedback"
2651
+ msgstr "Hurtig feedback"
2652
+
2653
+ #: templates/forms/deactivation/form.php:91
2654
+ msgid "If you have a moment, please let us know why you are %s"
2655
+ msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
2656
+
2657
+ #: templates/forms/deactivation/form.php:91
2658
+ msgid "deactivating"
2659
+ msgstr "deaktiverer"
2660
+
2661
+ #: templates/forms/deactivation/form.php:91
2662
+ msgid "switching"
2663
+ msgstr "skifter"
2664
+
2665
+ #: templates/forms/deactivation/form.php:369
2666
+ msgid "Submit & %s"
2667
+ msgstr "Send & %s"
2668
+
2669
+ #: templates/forms/deactivation/form.php:390
2670
+ msgid "Kindly tell us the reason so we can improve."
2671
+ msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
2672
+
2673
+ #: templates/forms/deactivation/form.php:515
2674
+ msgid "Yes - %s"
2675
+ msgstr "Ja - %s"
2676
+
2677
+ #: templates/forms/deactivation/form.php:522
2678
+ msgid "Skip & %s"
2679
+ msgstr "Spring over & %s"
2680
+
2681
+ #: templates/forms/deactivation/retry-skip.php:21
2682
+ msgid "Click here to use the plugin anonymously"
2683
+ msgstr "Klik her for at benytte pluginnet anonymt"
2684
+
2685
+ #: templates/forms/deactivation/retry-skip.php:23
2686
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2687
+ msgstr "Du har måske overset det, men du behøver ikke at dele data og kan blot %s tilmeldingen."
freemius/languages/freemius-en.po ADDED
@@ -0,0 +1,2559 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: freemius\n"
6
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
7
+ "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: \n"
9
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
10
+ "Language: \n"
11
+ "Language-Team: Freemius Team <admin@freemius.com>\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "MIME-Version: 1.0\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+
22
+ #: includes/class-freemius.php:1919, templates/account.php:912
23
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
24
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
25
+
26
+ #: includes/class-freemius.php:1926
27
+ msgid "Would you like to proceed with the update?"
28
+ msgstr "Would you like to proceed with the update?"
29
+
30
+ #: includes/class-freemius.php:2138
31
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
32
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
33
+
34
+ #: includes/class-freemius.php:2140
35
+ msgid "Error"
36
+ msgstr "Error"
37
+
38
+ #: includes/class-freemius.php:2540
39
+ msgid "I found a better %s"
40
+ msgstr "I found a better %s"
41
+
42
+ #: includes/class-freemius.php:2542
43
+ msgid "What's the %s's name?"
44
+ msgstr "What's the %s's name?"
45
+
46
+ #: includes/class-freemius.php:2548
47
+ msgid "It's a temporary %s. I'm just debugging an issue."
48
+ msgstr "It's a temporary %s. I'm just debugging an issue."
49
+
50
+ #: includes/class-freemius.php:2550
51
+ msgid "Deactivation"
52
+ msgstr "Deactivation"
53
+
54
+ #: includes/class-freemius.php:2551
55
+ msgid "Theme Switch"
56
+ msgstr "Theme Switch"
57
+
58
+ #: includes/class-freemius.php:2560, templates/forms/resend-key.php:24, templates/forms/user-change.php:29
59
+ msgid "Other"
60
+ msgstr "Other"
61
+
62
+ #: includes/class-freemius.php:2568
63
+ msgid "I no longer need the %s"
64
+ msgstr "I no longer need the %s"
65
+
66
+ #: includes/class-freemius.php:2575
67
+ msgid "I only needed the %s for a short period"
68
+ msgstr "I only needed the %s for a short period"
69
+
70
+ #: includes/class-freemius.php:2581
71
+ msgid "The %s broke my site"
72
+ msgstr "The %s broke my site"
73
+
74
+ #: includes/class-freemius.php:2588
75
+ msgid "The %s suddenly stopped working"
76
+ msgstr "The %s suddenly stopped working"
77
+
78
+ #: includes/class-freemius.php:2598
79
+ msgid "I can't pay for it anymore"
80
+ msgstr "I can't pay for it anymore"
81
+
82
+ #: includes/class-freemius.php:2600
83
+ msgid "What price would you feel comfortable paying?"
84
+ msgstr "What price would you feel comfortable paying?"
85
+
86
+ #: includes/class-freemius.php:2606
87
+ msgid "I don't like to share my information with you"
88
+ msgstr "I don't like to share my information with you"
89
+
90
+ #: includes/class-freemius.php:2627
91
+ msgid "The %s didn't work"
92
+ msgstr "The %s didn't work"
93
+
94
+ #: includes/class-freemius.php:2637
95
+ msgid "I couldn't understand how to make it work"
96
+ msgstr "I couldn't understand how to make it work"
97
+
98
+ #: includes/class-freemius.php:2645
99
+ msgid "The %s is great, but I need specific feature that you don't support"
100
+ msgstr "The %s is great, but I need specific feature that you don't support"
101
+
102
+ #: includes/class-freemius.php:2647
103
+ msgid "What feature?"
104
+ msgstr "What feature?"
105
+
106
+ #: includes/class-freemius.php:2651
107
+ msgid "The %s is not working"
108
+ msgstr "The %s is not working"
109
+
110
+ #: includes/class-freemius.php:2653
111
+ msgid "Kindly share what didn't work so we can fix it for future users..."
112
+ msgstr "Kindly share what didn't work so we can fix it for future users..."
113
+
114
+ #: includes/class-freemius.php:2657
115
+ msgid "It's not what I was looking for"
116
+ msgstr "It's not what I was looking for"
117
+
118
+ #: includes/class-freemius.php:2659
119
+ msgid "What you've been looking for?"
120
+ msgstr "What you've been looking for?"
121
+
122
+ #: includes/class-freemius.php:2663
123
+ msgid "The %s didn't work as expected"
124
+ msgstr "The %s didn't work as expected"
125
+
126
+ #: includes/class-freemius.php:2665
127
+ msgid "What did you expect?"
128
+ msgstr "What did you expect?"
129
+
130
+ #: includes/class-freemius.php:3520, templates/debug.php:20
131
+ msgid "Freemius Debug"
132
+ msgstr "Freemius Debug"
133
+
134
+ #: includes/class-freemius.php:4272
135
+ msgid "I don't know what is cURL or how to install it, help me!"
136
+ msgstr "I don't know what is cURL or how to install it, help me!"
137
+
138
+ #: includes/class-freemius.php:4274
139
+ 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."
140
+ 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."
141
+
142
+ #: includes/class-freemius.php:4281
143
+ 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."
144
+ 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."
145
+
146
+ #: includes/class-freemius.php:4386
147
+ msgid "Yes - do your thing"
148
+ msgstr "Yes - do your thing"
149
+
150
+ #: includes/class-freemius.php:4391
151
+ msgid "No - just deactivate"
152
+ msgstr "No - just deactivate"
153
+
154
+ #: includes/class-freemius.php:4436, includes/class-freemius.php:4930, includes/class-freemius.php:6191, includes/class-freemius.php:13368, includes/class-freemius.php:14110, includes/class-freemius.php:17542, includes/class-freemius.php:17647, includes/class-freemius.php:17822, includes/class-freemius.php:20056, includes/class-freemius.php:20414, includes/class-freemius.php:20424, includes/class-freemius.php:21109, includes/class-freemius.php:22015, includes/class-freemius.php:22148, includes/class-freemius.php:22304, templates/add-ons.php:57
155
+ msgctxt "exclamation"
156
+ msgid "Oops"
157
+ msgstr "Oops"
158
+
159
+ #: includes/class-freemius.php:4505
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:4927
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:4928
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.php:5127, includes/class-freemius.php:5152, includes/class-freemius.php:21180
174
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
175
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
176
+
177
+ #: includes/class-freemius.php:5857
178
+ msgid "Premium %s version was successfully activated."
179
+ msgstr "Premium %s version was successfully activated."
180
+
181
+ #: includes/class-freemius.php:5869, includes/class-freemius.php:7774
182
+ msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
183
+ msgid "W00t"
184
+ msgstr "W00t"
185
+
186
+ #: includes/class-freemius.php:5884
187
+ msgid "You have a %s license."
188
+ msgstr "You have a %s license."
189
+
190
+ #: includes/class-freemius.php:5888, includes/class-freemius.php:16947, includes/class-freemius.php:16958, includes/class-freemius.php:20325, includes/class-freemius.php:20689, includes/class-freemius.php:20758, includes/class-freemius.php:20930
191
+ msgctxt "interjection expressing joy or exuberance"
192
+ msgid "Yee-haw"
193
+ msgstr "Yee-haw"
194
+
195
+ #: includes/class-freemius.php:6174
196
+ 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."
197
+ 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."
198
+
199
+ #: includes/class-freemius.php:6178
200
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
201
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
202
+
203
+ #: includes/class-freemius.php:6187, templates/add-ons.php:186, templates/account/partials/addon.php:381
204
+ msgid "More information about %s"
205
+ msgstr "More information about %s"
206
+
207
+ #: includes/class-freemius.php:6188
208
+ msgid "Purchase License"
209
+ msgstr "Purchase License"
210
+
211
+ #: includes/class-freemius.php:7125, templates/connect.php:171
212
+ 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."
213
+ 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."
214
+
215
+ #: includes/class-freemius.php:7129
216
+ msgid "start the trial"
217
+ msgstr "start the trial"
218
+
219
+ #: includes/class-freemius.php:7130, templates/connect.php:175
220
+ msgid "complete the install"
221
+ msgstr "complete the install"
222
+
223
+ #: includes/class-freemius.php:7249
224
+ msgid "You are just one step away - %s"
225
+ msgstr "You are just one step away - %s"
226
+
227
+ #: includes/class-freemius.php:7252
228
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
229
+ msgid "Complete \"%s\" Activation Now"
230
+ msgstr "Complete \"%s\" Activation Now"
231
+
232
+ #: includes/class-freemius.php:7334
233
+ msgid "We made a few tweaks to the %s, %s"
234
+ msgstr "We made a few tweaks to the %s, %s"
235
+
236
+ #: includes/class-freemius.php:7338
237
+ msgid "Opt in to make \"%s\" better!"
238
+ msgstr "Opt in to make \"%s\" better!"
239
+
240
+ #: includes/class-freemius.php:7773
241
+ msgid "The upgrade of %s was successfully completed."
242
+ msgstr "The upgrade of %s was successfully completed."
243
+
244
+ #: includes/class-freemius.php:10255, includes/class-fs-plugin-updater.php:1087, includes/class-fs-plugin-updater.php:1282, includes/class-fs-plugin-updater.php:1289, templates/auto-installation.php:32
245
+ msgid "Add-On"
246
+ msgstr "Add-On"
247
+
248
+ #: includes/class-freemius.php:10257, templates/account.php:394, templates/account.php:402, templates/debug.php:358, templates/debug.php:549
249
+ msgid "Plugin"
250
+ msgstr "Plugin"
251
+
252
+ #: includes/class-freemius.php:10258, templates/account.php:395, templates/account.php:403, templates/debug.php:358, templates/debug.php:549, templates/forms/deactivation/form.php:71
253
+ msgid "Theme"
254
+ msgstr "Theme"
255
+
256
+ #: includes/class-freemius.php:13188
257
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
258
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
259
+
260
+ #: includes/class-freemius.php:13202
261
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
262
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
263
+
264
+ #: includes/class-freemius.php:13207
265
+ msgid "User Dashboard"
266
+ msgstr "User Dashboard"
267
+
268
+ #: includes/class-freemius.php:13208
269
+ msgid "revert it now"
270
+ msgstr "revert it now"
271
+
272
+ #: includes/class-freemius.php:13266
273
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
274
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
275
+
276
+ #: includes/class-freemius.php:13339
277
+ msgid "Invalid new user ID or email address."
278
+ msgstr "Invalid new user ID or email address."
279
+
280
+ #: includes/class-freemius.php:13369, includes/class-freemius.php:22259
281
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
282
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
283
+
284
+ #: includes/class-freemius.php:13370, includes/class-freemius.php:22260
285
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
286
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
287
+
288
+ #: includes/class-freemius.php:13377, includes/class-freemius.php:22267
289
+ msgid "Change Ownership"
290
+ msgstr "Change Ownership"
291
+
292
+ #: includes/class-freemius.php:13977
293
+ msgid "Invalid site details collection."
294
+ msgstr "Invalid site details collection."
295
+
296
+ #: includes/class-freemius.php:14097
297
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
298
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
299
+
300
+ #: includes/class-freemius.php:14099
301
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
302
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
303
+
304
+ #: includes/class-freemius.php:14373
305
+ msgid "Account is pending activation."
306
+ msgstr "Account is pending activation."
307
+
308
+ #: includes/class-freemius.php:14485, templates/forms/premium-versions-upgrade-handler.php:47
309
+ msgid "Buy a license now"
310
+ msgstr "Buy a license now"
311
+
312
+ #: includes/class-freemius.php:14497, templates/forms/premium-versions-upgrade-handler.php:46
313
+ msgid "Renew your license now"
314
+ msgstr "Renew your license now"
315
+
316
+ #: includes/class-freemius.php:14501
317
+ msgid "%s to access version %s security & feature updates, and support."
318
+ msgstr "%s to access version %s security & feature updates, and support."
319
+
320
+ #: includes/class-freemius.php:16929
321
+ msgid "%s activation was successfully completed."
322
+ msgstr "%s activation was successfully completed."
323
+
324
+ #: includes/class-freemius.php:16943
325
+ msgid "Your account was successfully activated with the %s plan."
326
+ msgstr "Your account was successfully activated with the %s plan."
327
+
328
+ #: includes/class-freemius.php:16954, includes/class-freemius.php:20754
329
+ msgid "Your trial has been successfully started."
330
+ msgstr "Your trial has been successfully started."
331
+
332
+ #: includes/class-freemius.php:17540, includes/class-freemius.php:17645, includes/class-freemius.php:17820
333
+ msgid "Couldn't activate %s."
334
+ msgstr "Couldn't activate %s."
335
+
336
+ #: includes/class-freemius.php:17541, includes/class-freemius.php:17646, includes/class-freemius.php:17821
337
+ msgid "Please contact us with the following message:"
338
+ msgstr "Please contact us with the following message:"
339
+
340
+ #: includes/class-freemius.php:17642, templates/forms/data-debug-mode.php:162
341
+ msgid "An unknown error has occurred."
342
+ msgstr "An unknown error has occurred."
343
+
344
+ #: includes/class-freemius.php:18178, includes/class-freemius.php:23340
345
+ msgid "Upgrade"
346
+ msgstr "Upgrade"
347
+
348
+ #: includes/class-freemius.php:18184
349
+ msgid "Start Trial"
350
+ msgstr "Start Trial"
351
+
352
+ #: includes/class-freemius.php:18186
353
+ msgid "Pricing"
354
+ msgstr "Pricing"
355
+
356
+ #: includes/class-freemius.php:18266, includes/class-freemius.php:18268
357
+ msgid "Affiliation"
358
+ msgstr "Affiliation"
359
+
360
+ #: includes/class-freemius.php:18296, includes/class-freemius.php:18298, templates/account.php:242, templates/debug.php:324
361
+ msgid "Account"
362
+ msgstr "Account"
363
+
364
+ #: includes/class-freemius.php:18312, includes/class-freemius.php:18314, includes/customizer/class-fs-customizer-support-section.php:60
365
+ msgid "Contact Us"
366
+ msgstr "Contact Us"
367
+
368
+ #: includes/class-freemius.php:18325, includes/class-freemius.php:18327, includes/class-freemius.php:23354, templates/account.php:121, templates/account/partials/addon.php:44
369
+ msgid "Add-Ons"
370
+ msgstr "Add-Ons"
371
+
372
+ #: includes/class-freemius.php:18361
373
+ msgctxt "ASCII arrow left icon"
374
+ msgid "&#x2190;"
375
+ msgstr "&#x2190;"
376
+
377
+ #: includes/class-freemius.php:18361
378
+ msgctxt "ASCII arrow right icon"
379
+ msgid "&#x27a4;"
380
+ msgstr "&#x27a4;"
381
+
382
+ #: includes/class-freemius.php:18363, templates/pricing.php:109
383
+ msgctxt "noun"
384
+ msgid "Pricing"
385
+ msgstr "Pricing"
386
+
387
+ #: includes/class-freemius.php:18576, includes/customizer/class-fs-customizer-support-section.php:67
388
+ msgid "Support Forum"
389
+ msgstr "Support Forum"
390
+
391
+ #: includes/class-freemius.php:19550
392
+ msgid "Your email has been successfully verified - you are AWESOME!"
393
+ msgstr "Your email has been successfully verified - you are AWESOME!"
394
+
395
+ #: includes/class-freemius.php:19551
396
+ msgctxt "a positive response"
397
+ msgid "Right on"
398
+ msgstr "Right on"
399
+
400
+ #: includes/class-freemius.php:20057
401
+ msgid "seems like the key you entered doesn't match our records."
402
+ msgstr "seems like the key you entered doesn't match our records."
403
+
404
+ #: includes/class-freemius.php:20081
405
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
406
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
407
+
408
+ #: includes/class-freemius.php:20316
409
+ msgid "Your %s Add-on plan was successfully upgraded."
410
+ msgstr "Your %s Add-on plan was successfully upgraded."
411
+
412
+ #: includes/class-freemius.php:20318
413
+ msgid "%s Add-on was successfully purchased."
414
+ msgstr "%s Add-on was successfully purchased."
415
+
416
+ #: includes/class-freemius.php:20321
417
+ msgid "Download the latest version"
418
+ msgstr "Download the latest version"
419
+
420
+ #: includes/class-freemius.php:20407
421
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
422
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
423
+
424
+ #: includes/class-freemius.php:20413, includes/class-freemius.php:20423, includes/class-freemius.php:20889, includes/class-freemius.php:20978
425
+ msgid "Error received from the server:"
426
+ msgstr "Error received from the server:"
427
+
428
+ #: includes/class-freemius.php:20423
429
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
430
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
431
+
432
+ #: includes/class-freemius.php:20651, includes/class-freemius.php:20894, includes/class-freemius.php:20949, includes/class-freemius.php:21056
433
+ msgctxt "something somebody says when they are thinking about what you have just said."
434
+ msgid "Hmm"
435
+ msgstr "Hmm"
436
+
437
+ #: includes/class-freemius.php:20664
438
+ 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."
439
+ 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."
440
+
441
+ #: includes/class-freemius.php:20665, templates/account.php:123, templates/add-ons.php:250, templates/account/partials/addon.php:46
442
+ msgctxt "trial period"
443
+ msgid "Trial"
444
+ msgstr "Trial"
445
+
446
+ #: includes/class-freemius.php:20670
447
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
448
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
449
+
450
+ #: includes/class-freemius.php:20674, includes/class-freemius.php:20733
451
+ msgid "Please contact us here"
452
+ msgstr "Please contact us here"
453
+
454
+ #: includes/class-freemius.php:20685
455
+ msgid "Your plan was successfully activated."
456
+ msgstr "Your plan was successfully activated."
457
+
458
+ #: includes/class-freemius.php:20686
459
+ msgid "Your plan was successfully upgraded."
460
+ msgstr "Your plan was successfully upgraded."
461
+
462
+ #: includes/class-freemius.php:20703
463
+ msgid "Your plan was successfully changed to %s."
464
+ msgstr "Your plan was successfully changed to %s."
465
+
466
+ #: includes/class-freemius.php:20719
467
+ msgid "Your license has expired. You can still continue using the free %s forever."
468
+ msgstr "Your license has expired. You can still continue using the free %s forever."
469
+
470
+ #: includes/class-freemius.php:20721
471
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
472
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
473
+
474
+ #: includes/class-freemius.php:20729
475
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
476
+ msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
477
+
478
+ #: includes/class-freemius.php:20742
479
+ 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."
480
+ 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."
481
+
482
+ #: includes/class-freemius.php:20768
483
+ msgid "Your free trial has expired. You can still continue using all our free features."
484
+ msgstr "Your free trial has expired. You can still continue using all our free features."
485
+
486
+ #: includes/class-freemius.php:20770
487
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
488
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
489
+
490
+ #: includes/class-freemius.php:20885
491
+ msgid "It looks like the license could not be activated."
492
+ msgstr "It looks like the license could not be activated."
493
+
494
+ #: includes/class-freemius.php:20927
495
+ msgid "Your license was successfully activated."
496
+ msgstr "Your license was successfully activated."
497
+
498
+ #: includes/class-freemius.php:20953
499
+ msgid "It looks like your site currently doesn't have an active license."
500
+ msgstr "It looks like your site currently doesn't have an active license."
501
+
502
+ #: includes/class-freemius.php:20977
503
+ msgid "It looks like the license deactivation failed."
504
+ msgstr "It looks like the license deactivation failed."
505
+
506
+ #: includes/class-freemius.php:21006
507
+ msgid "Your %s license was successfully deactivated."
508
+ msgstr "Your %s license was successfully deactivated."
509
+
510
+ #: includes/class-freemius.php:21007
511
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
512
+ msgstr "Your license was successfully deactivated, you are back to the %s plan."
513
+
514
+ #: includes/class-freemius.php:21010
515
+ msgid "O.K"
516
+ msgstr "O.K"
517
+
518
+ #: includes/class-freemius.php:21063
519
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
520
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
521
+
522
+ #: includes/class-freemius.php:21072
523
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
524
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
525
+
526
+ #: includes/class-freemius.php:21114
527
+ msgid "You are already running the %s in a trial mode."
528
+ msgstr "You are already running the %s in a trial mode."
529
+
530
+ #: includes/class-freemius.php:21125
531
+ msgid "You already utilized a trial before."
532
+ msgstr "You already utilized a trial before."
533
+
534
+ #: includes/class-freemius.php:21139
535
+ msgid "Plan %s do not exist, therefore, can't start a trial."
536
+ msgstr "Plan %s do not exist, therefore, can't start a trial."
537
+
538
+ #: includes/class-freemius.php:21150
539
+ msgid "Plan %s does not support a trial period."
540
+ msgstr "Plan %s does not support a trial period."
541
+
542
+ #: includes/class-freemius.php:21161
543
+ msgid "None of the %s's plans supports a trial period."
544
+ msgstr "None of the %s's plans supports a trial period."
545
+
546
+ #: includes/class-freemius.php:21211
547
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
548
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
549
+
550
+ #: includes/class-freemius.php:21247
551
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
552
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
553
+
554
+ #: includes/class-freemius.php:21266
555
+ msgid "Your %s free trial was successfully cancelled."
556
+ msgstr "Your %s free trial was successfully cancelled."
557
+
558
+ #: includes/class-freemius.php:21582
559
+ msgid "Version %s was released."
560
+ msgstr "Version %s was released."
561
+
562
+ #: includes/class-freemius.php:21582
563
+ msgid "Please download %s."
564
+ msgstr "Please download %s."
565
+
566
+ #: includes/class-freemius.php:21589
567
+ msgid "the latest %s version here"
568
+ msgstr "the latest %s version here"
569
+
570
+ #: includes/class-freemius.php:21594
571
+ msgid "New"
572
+ msgstr "New"
573
+
574
+ #: includes/class-freemius.php:21599
575
+ msgid "Seems like you got the latest release."
576
+ msgstr "Seems like you got the latest release."
577
+
578
+ #: includes/class-freemius.php:21600
579
+ msgid "You are all good!"
580
+ msgstr "You are all good!"
581
+
582
+ #: includes/class-freemius.php:21903
583
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
584
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
585
+
586
+ #: includes/class-freemius.php:22043
587
+ msgid "Site successfully opted in."
588
+ msgstr "Site successfully opted in."
589
+
590
+ #: includes/class-freemius.php:22044, includes/class-freemius.php:23050
591
+ msgid "Awesome"
592
+ msgstr "Awesome"
593
+
594
+ #: includes/class-freemius.php:22060, templates/forms/optout.php:41
595
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
596
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
597
+
598
+ #: includes/class-freemius.php:22061
599
+ msgid "Thank you!"
600
+ msgstr "Thank you!"
601
+
602
+ #: includes/class-freemius.php:22068
603
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
604
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
605
+
606
+ #: includes/class-freemius.php:22226
607
+ 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."
608
+ 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."
609
+
610
+ #: includes/class-freemius.php:22232
611
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
612
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
613
+
614
+ #: includes/class-freemius.php:22237
615
+ msgid "%s is the new owner of the account."
616
+ msgstr "%s is the new owner of the account."
617
+
618
+ #: includes/class-freemius.php:22239
619
+ msgctxt "as congratulations"
620
+ msgid "Congrats"
621
+ msgstr "Congrats"
622
+
623
+ #: includes/class-freemius.php:22275
624
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
625
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
626
+
627
+ #: includes/class-freemius.php:22287
628
+ msgid "Please provide your full name."
629
+ msgstr "Please provide your full name."
630
+
631
+ #: includes/class-freemius.php:22292
632
+ msgid "Your name was successfully updated."
633
+ msgstr "Your name was successfully updated."
634
+
635
+ #: includes/class-freemius.php:22353
636
+ msgid "You have successfully updated your %s."
637
+ msgstr "You have successfully updated your %s."
638
+
639
+ #: includes/class-freemius.php:22412
640
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
641
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
642
+
643
+ #: includes/class-freemius.php:22415
644
+ msgid "Click here"
645
+ msgstr "Click here"
646
+
647
+ #: includes/class-freemius.php:22513
648
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
649
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
650
+
651
+ #: includes/class-freemius.php:22514
652
+ msgctxt "advance notice of something that will need attention."
653
+ msgid "Heads up"
654
+ msgstr "Heads up"
655
+
656
+ #: includes/class-freemius.php:23090
657
+ msgctxt "exclamation"
658
+ msgid "Hey"
659
+ msgstr "Hey"
660
+
661
+ #: includes/class-freemius.php:23090
662
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
663
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
664
+
665
+ #: includes/class-freemius.php:23098
666
+ msgid "No commitment for %s days - cancel anytime!"
667
+ msgstr "No commitment for %s days - cancel anytime!"
668
+
669
+ #: includes/class-freemius.php:23099
670
+ msgid "No credit card required"
671
+ msgstr "No credit card required"
672
+
673
+ #: includes/class-freemius.php:23106, templates/forms/trial-start.php:53
674
+ msgctxt "call to action"
675
+ msgid "Start free trial"
676
+ msgstr "Start free trial"
677
+
678
+ #: includes/class-freemius.php:23183
679
+ 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!"
680
+ 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!"
681
+
682
+ #: includes/class-freemius.php:23192
683
+ msgid "Learn more"
684
+ msgstr "Learn more"
685
+
686
+ #: includes/class-freemius.php:23378, templates/account.php:558, templates/account.php:708, templates/connect.php:179, templates/connect.php:461, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321
687
+ msgid "Activate License"
688
+ msgstr "Activate License"
689
+
690
+ #: includes/class-freemius.php:23379, templates/account.php:652, templates/account.php:707, templates/account/partials/addon.php:322, templates/account/partials/site.php:271
691
+ msgid "Change License"
692
+ msgstr "Change License"
693
+
694
+ #: includes/class-freemius.php:23500, templates/account/partials/site.php:169
695
+ msgid "Opt Out"
696
+ msgstr "Opt Out"
697
+
698
+ #: includes/class-freemius.php:23502, includes/class-freemius.php:23508, templates/account/partials/site.php:49, templates/account/partials/site.php:169
699
+ msgid "Opt In"
700
+ msgstr "Opt In"
701
+
702
+ #: includes/class-freemius.php:23738
703
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
704
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
705
+
706
+ #: includes/class-freemius.php:23746
707
+ msgid "Activate %s features"
708
+ msgstr "Activate %s features"
709
+
710
+ #: includes/class-freemius.php:23759
711
+ msgid "Please follow these steps to complete the upgrade"
712
+ msgstr "Please follow these steps to complete the upgrade"
713
+
714
+ #: includes/class-freemius.php:23763
715
+ msgid "Download the latest %s version"
716
+ msgstr "Download the latest %s version"
717
+
718
+ #: includes/class-freemius.php:23767
719
+ msgid "Upload and activate the downloaded version"
720
+ msgstr "Upload and activate the downloaded version"
721
+
722
+ #: includes/class-freemius.php:23769
723
+ msgid "How to upload and activate?"
724
+ msgstr "How to upload and activate?"
725
+
726
+ #: includes/class-freemius.php:23903
727
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
728
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
729
+
730
+ #: includes/class-freemius.php:24072
731
+ msgid "Auto installation only works for opted-in users."
732
+ msgstr "Auto installation only works for opted-in users."
733
+
734
+ #: includes/class-freemius.php:24082, includes/class-freemius.php:24115, includes/class-fs-plugin-updater.php:1261, includes/class-fs-plugin-updater.php:1275
735
+ msgid "Invalid module ID."
736
+ msgstr "Invalid module ID."
737
+
738
+ #: includes/class-freemius.php:24091, includes/class-fs-plugin-updater.php:1297
739
+ msgid "Premium version already active."
740
+ msgstr "Premium version already active."
741
+
742
+ #: includes/class-freemius.php:24098
743
+ msgid "You do not have a valid license to access the premium version."
744
+ msgstr "You do not have a valid license to access the premium version."
745
+
746
+ #: includes/class-freemius.php:24105
747
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
748
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
749
+
750
+ #: includes/class-freemius.php:24123, includes/class-fs-plugin-updater.php:1296
751
+ msgid "Premium add-on version already installed."
752
+ msgstr "Premium add-on version already installed."
753
+
754
+ #: includes/class-freemius.php:24473
755
+ msgid "View paid features"
756
+ msgstr "View paid features"
757
+
758
+ #: includes/class-freemius.php:24795
759
+ msgid "Thank you so much for using %s and its add-ons!"
760
+ msgstr "Thank you so much for using %s and its add-ons!"
761
+
762
+ #: includes/class-freemius.php:24796
763
+ msgid "Thank you so much for using %s!"
764
+ msgstr "Thank you so much for using %s!"
765
+
766
+ #: includes/class-freemius.php:24802
767
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
768
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
769
+
770
+ #: includes/class-freemius.php:24806
771
+ msgid "Thank you so much for using our products!"
772
+ msgstr "Thank you so much for using our products!"
773
+
774
+ #: includes/class-freemius.php:24807
775
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
776
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
777
+
778
+ #: includes/class-freemius.php:24826
779
+ msgid "%s and its add-ons"
780
+ msgstr "%s and its add-ons"
781
+
782
+ #: includes/class-freemius.php:24835
783
+ msgid "Products"
784
+ msgstr "Products"
785
+
786
+ #: includes/class-freemius.php:24842, templates/connect.php:275
787
+ msgid "Yes"
788
+ msgstr "Yes"
789
+
790
+ #: includes/class-freemius.php:24843, templates/connect.php:276
791
+ msgid "send me security & feature updates, educational content and offers."
792
+ msgstr "send me security & feature updates, educational content and offers."
793
+
794
+ #: includes/class-freemius.php:24844, templates/connect.php:281
795
+ msgid "No"
796
+ msgstr "No"
797
+
798
+ #: includes/class-freemius.php:24846, templates/connect.php:283
799
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
800
+ msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
801
+
802
+ #: includes/class-freemius.php:24856
803
+ 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 :-)"
804
+ 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 :-)"
805
+
806
+ #: includes/class-freemius.php:24858, templates/connect.php:290
807
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
808
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
809
+
810
+ #: includes/class-freemius.php:25140
811
+ msgid "License key is empty."
812
+ msgstr "License key is empty."
813
+
814
+ #: includes/class-fs-plugin-updater.php:206, templates/forms/premium-versions-upgrade-handler.php:57
815
+ msgid "Renew license"
816
+ msgstr "Renew license"
817
+
818
+ #: includes/class-fs-plugin-updater.php:211, templates/forms/premium-versions-upgrade-handler.php:58
819
+ msgid "Buy license"
820
+ msgstr "Buy license"
821
+
822
+ #: includes/class-fs-plugin-updater.php:327, includes/class-fs-plugin-updater.php:360
823
+ msgid "There is a %s of %s available."
824
+ msgstr "There is a %s of %s available."
825
+
826
+ #: includes/class-fs-plugin-updater.php:329, includes/class-fs-plugin-updater.php:365
827
+ msgid "new Beta version"
828
+ msgstr "new Beta version"
829
+
830
+ #: includes/class-fs-plugin-updater.php:330, includes/class-fs-plugin-updater.php:366
831
+ msgid "new version"
832
+ msgstr "new version"
833
+
834
+ #: includes/class-fs-plugin-updater.php:389
835
+ msgid "Important Upgrade Notice:"
836
+ msgstr "Important Upgrade Notice:"
837
+
838
+ #: includes/class-fs-plugin-updater.php:1326
839
+ msgid "Installing plugin: %s"
840
+ msgstr "Installing plugin: %s"
841
+
842
+ #: includes/class-fs-plugin-updater.php:1367
843
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
844
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
845
+
846
+ #: includes/class-fs-plugin-updater.php:1549
847
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
848
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
849
+
850
+ #: includes/fs-plugin-info-dialog.php:541
851
+ msgid "Purchase More"
852
+ msgstr "Purchase More"
853
+
854
+ #: includes/fs-plugin-info-dialog.php:542, templates/account/partials/addon.php:385
855
+ msgctxt "verb"
856
+ msgid "Purchase"
857
+ msgstr "Purchase"
858
+
859
+ #: includes/fs-plugin-info-dialog.php:546
860
+ msgid "Start my free %s"
861
+ msgstr "Start my free %s"
862
+
863
+ #: includes/fs-plugin-info-dialog.php:744
864
+ msgid "Install Free Version Update Now"
865
+ msgstr "Install Free Version Update Now"
866
+
867
+ #: includes/fs-plugin-info-dialog.php:745, templates/account.php:641
868
+ msgid "Install Update Now"
869
+ msgstr "Install Update Now"
870
+
871
+ #: includes/fs-plugin-info-dialog.php:754
872
+ msgid "Install Free Version Now"
873
+ msgstr "Install Free Version Now"
874
+
875
+ #: includes/fs-plugin-info-dialog.php:755, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:365, templates/account/partials/addon.php:418
876
+ msgid "Install Now"
877
+ msgstr "Install Now"
878
+
879
+ #: includes/fs-plugin-info-dialog.php:771
880
+ msgctxt "as download latest version"
881
+ msgid "Download Latest Free Version"
882
+ msgstr "Download Latest Free Version"
883
+
884
+ #: includes/fs-plugin-info-dialog.php:772, templates/account.php:101, templates/add-ons.php:37, templates/account/partials/addon.php:25
885
+ msgctxt "as download latest version"
886
+ msgid "Download Latest"
887
+ msgstr "Download Latest"
888
+
889
+ #: includes/fs-plugin-info-dialog.php:787, templates/add-ons.php:329, templates/account/partials/addon.php:356, templates/account/partials/addon.php:412
890
+ msgid "Activate this add-on"
891
+ msgstr "Activate this add-on"
892
+
893
+ #: includes/fs-plugin-info-dialog.php:789, templates/connect.php:458
894
+ msgid "Activate Free Version"
895
+ msgstr "Activate Free Version"
896
+
897
+ #: includes/fs-plugin-info-dialog.php:790, templates/account.php:125, templates/add-ons.php:330, templates/account/partials/addon.php:48
898
+ msgid "Activate"
899
+ msgstr "Activate"
900
+
901
+ #: includes/fs-plugin-info-dialog.php:1002
902
+ msgctxt "Plugin installer section title"
903
+ msgid "Description"
904
+ msgstr "Description"
905
+
906
+ #: includes/fs-plugin-info-dialog.php:1003
907
+ msgctxt "Plugin installer section title"
908
+ msgid "Installation"
909
+ msgstr "Installation"
910
+
911
+ #: includes/fs-plugin-info-dialog.php:1004
912
+ msgctxt "Plugin installer section title"
913
+ msgid "FAQ"
914
+ msgstr "FAQ"
915
+
916
+ #: includes/fs-plugin-info-dialog.php:1005, templates/plugin-info/description.php:55
917
+ msgid "Screenshots"
918
+ msgstr "Screenshots"
919
+
920
+ #: includes/fs-plugin-info-dialog.php:1006
921
+ msgctxt "Plugin installer section title"
922
+ msgid "Changelog"
923
+ msgstr "Changelog"
924
+
925
+ #: includes/fs-plugin-info-dialog.php:1007
926
+ msgctxt "Plugin installer section title"
927
+ msgid "Reviews"
928
+ msgstr "Reviews"
929
+
930
+ #: includes/fs-plugin-info-dialog.php:1008
931
+ msgctxt "Plugin installer section title"
932
+ msgid "Other Notes"
933
+ msgstr "Other Notes"
934
+
935
+ #: includes/fs-plugin-info-dialog.php:1023
936
+ msgctxt "Plugin installer section title"
937
+ msgid "Features & Pricing"
938
+ msgstr "Features & Pricing"
939
+
940
+ #: includes/fs-plugin-info-dialog.php:1033
941
+ msgid "Plugin Install"
942
+ msgstr "Plugin Install"
943
+
944
+ #: includes/fs-plugin-info-dialog.php:1105
945
+ msgctxt "e.g. Professional Plan"
946
+ msgid "%s Plan"
947
+ msgstr "%s Plan"
948
+
949
+ #: includes/fs-plugin-info-dialog.php:1131
950
+ msgctxt "e.g. the best product"
951
+ msgid "Best"
952
+ msgstr "Best"
953
+
954
+ #: includes/fs-plugin-info-dialog.php:1137, includes/fs-plugin-info-dialog.php:1157
955
+ msgctxt "as every month"
956
+ msgid "Monthly"
957
+ msgstr "Monthly"
958
+
959
+ #: includes/fs-plugin-info-dialog.php:1140
960
+ msgctxt "as once a year"
961
+ msgid "Annual"
962
+ msgstr "Annual"
963
+
964
+ #: includes/fs-plugin-info-dialog.php:1143
965
+ msgid "Lifetime"
966
+ msgstr "Lifetime"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:1157, includes/fs-plugin-info-dialog.php:1159, includes/fs-plugin-info-dialog.php:1161
969
+ msgctxt "e.g. billed monthly"
970
+ msgid "Billed %s"
971
+ msgstr "Billed %s"
972
+
973
+ #: includes/fs-plugin-info-dialog.php:1159
974
+ msgctxt "as once a year"
975
+ msgid "Annually"
976
+ msgstr "Annually"
977
+
978
+ #: includes/fs-plugin-info-dialog.php:1161
979
+ msgctxt "as once a year"
980
+ msgid "Once"
981
+ msgstr "Once"
982
+
983
+ #: includes/fs-plugin-info-dialog.php:1167
984
+ msgid "Single Site License"
985
+ msgstr "Single Site License"
986
+
987
+ #: includes/fs-plugin-info-dialog.php:1169
988
+ msgid "Unlimited Licenses"
989
+ msgstr "Unlimited Licenses"
990
+
991
+ #: includes/fs-plugin-info-dialog.php:1171
992
+ msgid "Up to %s Sites"
993
+ msgstr "Up to %s Sites"
994
+
995
+ #: includes/fs-plugin-info-dialog.php:1181, templates/plugin-info/features.php:82
996
+ msgctxt "as monthly period"
997
+ msgid "mo"
998
+ msgstr "mo"
999
+
1000
+ #: includes/fs-plugin-info-dialog.php:1188, templates/plugin-info/features.php:80
1001
+ msgctxt "as annual period"
1002
+ msgid "year"
1003
+ msgstr "year"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:1242
1006
+ msgctxt "noun"
1007
+ msgid "Price"
1008
+ msgstr "Price"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php:1290
1011
+ msgid "Save %s"
1012
+ msgstr "Save %s"
1013
+
1014
+ #: includes/fs-plugin-info-dialog.php:1300
1015
+ msgid "No commitment for %s - cancel anytime"
1016
+ msgstr "No commitment for %s - cancel anytime"
1017
+
1018
+ #: includes/fs-plugin-info-dialog.php:1303
1019
+ msgid "After your free %s, pay as little as %s"
1020
+ msgstr "After your free %s, pay as little as %s"
1021
+
1022
+ #: includes/fs-plugin-info-dialog.php:1314
1023
+ msgid "Details"
1024
+ msgstr "Details"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php:1318, templates/account.php:112, templates/debug.php:201, templates/debug.php:238, templates/debug.php:455, templates/account/partials/addon.php:36
1027
+ msgctxt "product version"
1028
+ msgid "Version"
1029
+ msgstr "Version"
1030
+
1031
+ #: includes/fs-plugin-info-dialog.php:1325
1032
+ msgctxt "as the plugin author"
1033
+ msgid "Author"
1034
+ msgstr "Author"
1035
+
1036
+ #: includes/fs-plugin-info-dialog.php:1332
1037
+ msgid "Last Updated"
1038
+ msgstr "Last Updated"
1039
+
1040
+ #: includes/fs-plugin-info-dialog.php:1337, templates/account.php:527
1041
+ msgctxt "x-ago"
1042
+ msgid "%s ago"
1043
+ msgstr "%s ago"
1044
+
1045
+ #: includes/fs-plugin-info-dialog.php:1346
1046
+ msgid "Requires WordPress Version"
1047
+ msgstr "Requires WordPress Version"
1048
+
1049
+ #: includes/fs-plugin-info-dialog.php:1347
1050
+ msgid "%s or higher"
1051
+ msgstr "%s or higher"
1052
+
1053
+ #: includes/fs-plugin-info-dialog.php:1354
1054
+ msgid "Compatible up to"
1055
+ msgstr "Compatible up to"
1056
+
1057
+ #: includes/fs-plugin-info-dialog.php:1362
1058
+ msgid "Downloaded"
1059
+ msgstr "Downloaded"
1060
+
1061
+ #: includes/fs-plugin-info-dialog.php:1366
1062
+ msgid "%s time"
1063
+ msgstr "%s time"
1064
+
1065
+ #: includes/fs-plugin-info-dialog.php:1368
1066
+ msgid "%s times"
1067
+ msgstr "%s times"
1068
+
1069
+ #: includes/fs-plugin-info-dialog.php:1379
1070
+ msgid "WordPress.org Plugin Page"
1071
+ msgstr "WordPress.org Plugin Page"
1072
+
1073
+ #: includes/fs-plugin-info-dialog.php:1388
1074
+ msgid "Plugin Homepage"
1075
+ msgstr "Plugin Homepage"
1076
+
1077
+ #: includes/fs-plugin-info-dialog.php:1397, includes/fs-plugin-info-dialog.php:1481
1078
+ msgid "Donate to this plugin"
1079
+ msgstr "Donate to this plugin"
1080
+
1081
+ #: includes/fs-plugin-info-dialog.php:1404
1082
+ msgid "Average Rating"
1083
+ msgstr "Average Rating"
1084
+
1085
+ #: includes/fs-plugin-info-dialog.php:1411
1086
+ msgid "based on %s"
1087
+ msgstr "based on %s"
1088
+
1089
+ #: includes/fs-plugin-info-dialog.php:1415
1090
+ msgid "%s rating"
1091
+ msgstr "%s rating"
1092
+
1093
+ #: includes/fs-plugin-info-dialog.php:1417
1094
+ msgid "%s ratings"
1095
+ msgstr "%s ratings"
1096
+
1097
+ #: includes/fs-plugin-info-dialog.php:1432
1098
+ msgid "%s star"
1099
+ msgstr "%s star"
1100
+
1101
+ #: includes/fs-plugin-info-dialog.php:1434
1102
+ msgid "%s stars"
1103
+ msgstr "%s stars"
1104
+
1105
+ #: includes/fs-plugin-info-dialog.php:1446
1106
+ msgid "Click to see reviews that provided a rating of %s"
1107
+ msgstr "Click to see reviews that provided a rating of %s"
1108
+
1109
+ #: includes/fs-plugin-info-dialog.php:1459
1110
+ msgid "Contributors"
1111
+ msgstr "Contributors"
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1489, includes/fs-plugin-info-dialog.php:1491
1114
+ msgid "Warning"
1115
+ msgstr "Warning"
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1489
1118
+ msgid "This plugin has not been tested with your current version of WordPress."
1119
+ msgstr "This plugin has not been tested with your current version of WordPress."
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1491
1122
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1123
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1124
+
1125
+ #: includes/fs-plugin-info-dialog.php:1510
1126
+ msgid "Paid add-on must be deployed to Freemius."
1127
+ msgstr "Paid add-on must be deployed to Freemius."
1128
+
1129
+ #: includes/fs-plugin-info-dialog.php:1511
1130
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1131
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1132
+
1133
+ #: includes/fs-plugin-info-dialog.php:1532
1134
+ msgid "Newer Version (%s) Installed"
1135
+ msgstr "Newer Version (%s) Installed"
1136
+
1137
+ #: includes/fs-plugin-info-dialog.php:1533
1138
+ msgid "Newer Free Version (%s) Installed"
1139
+ msgstr "Newer Free Version (%s) Installed"
1140
+
1141
+ #: includes/fs-plugin-info-dialog.php:1540
1142
+ msgid "Latest Version Installed"
1143
+ msgstr "Latest Version Installed"
1144
+
1145
+ #: includes/fs-plugin-info-dialog.php:1541
1146
+ msgid "Latest Free Version Installed"
1147
+ msgstr "Latest Free Version Installed"
1148
+
1149
+ #: templates/account.php:102, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:311
1150
+ msgid "Downgrading your plan"
1151
+ msgstr "Downgrading your plan"
1152
+
1153
+ #: templates/account.php:103, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:312
1154
+ msgid "Cancelling the subscription"
1155
+ msgstr "Cancelling the subscription"
1156
+
1157
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
1158
+ #: templates/account.php:105, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314
1159
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1160
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1161
+
1162
+ #: templates/account.php:106, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:315
1163
+ 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."
1164
+ 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."
1165
+
1166
+ #: templates/account.php:107, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31
1167
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1168
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1169
+
1170
+ #: templates/account.php:108, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:316
1171
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1172
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1173
+
1174
+ #: templates/account.php:109, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:317
1175
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1176
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1177
+
1178
+ #. translators: %s: Plan title (e.g. "Professional")
1179
+ #: templates/account.php:111, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35
1180
+ msgid "Activate %s Plan"
1181
+ msgstr "Activate %s Plan"
1182
+
1183
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1184
+ #: templates/account.php:114, templates/account/partials/addon.php:38, templates/account/partials/site.php:291
1185
+ msgid "Auto renews in %s"
1186
+ msgstr "Auto renews in %s"
1187
+
1188
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1189
+ #: templates/account.php:116, templates/account/partials/addon.php:40, templates/account/partials/site.php:293
1190
+ msgid "Expires in %s"
1191
+ msgstr "Expires in %s"
1192
+
1193
+ #: templates/account.php:117
1194
+ msgctxt "as synchronize license"
1195
+ msgid "Sync License"
1196
+ msgstr "Sync License"
1197
+
1198
+ #: templates/account.php:118, templates/account/partials/addon.php:41
1199
+ msgid "Cancel Trial"
1200
+ msgstr "Cancel Trial"
1201
+
1202
+ #: templates/account.php:119, templates/account/partials/addon.php:42
1203
+ msgid "Change Plan"
1204
+ msgstr "Change Plan"
1205
+
1206
+ #: templates/account.php:120, templates/account/partials/addon.php:43
1207
+ msgctxt "verb"
1208
+ msgid "Upgrade"
1209
+ msgstr "Upgrade"
1210
+
1211
+ #: templates/account.php:122, templates/account/partials/addon.php:45, templates/account/partials/site.php:318
1212
+ msgctxt "verb"
1213
+ msgid "Downgrade"
1214
+ msgstr "Downgrade"
1215
+
1216
+ #: templates/account.php:124, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:47, templates/account/partials/site.php:33
1217
+ msgid "Free"
1218
+ msgstr "Free"
1219
+
1220
+ #: templates/account.php:126, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:49
1221
+ msgctxt "as product pricing plan"
1222
+ msgid "Plan"
1223
+ msgstr "Plan"
1224
+
1225
+ #: templates/account.php:127
1226
+ msgid "Bundle Plan"
1227
+ msgstr "Bundle Plan"
1228
+
1229
+ #: templates/account.php:250
1230
+ msgid "Free Trial"
1231
+ msgstr "Free Trial"
1232
+
1233
+ #: templates/account.php:261
1234
+ msgid "Account Details"
1235
+ msgstr "Account Details"
1236
+
1237
+ #: templates/account.php:268, templates/forms/data-debug-mode.php:33
1238
+ msgid "Start Debug"
1239
+ msgstr "Start Debug"
1240
+
1241
+ #: templates/account.php:270
1242
+ msgid "Stop Debug"
1243
+ msgstr "Stop Debug"
1244
+
1245
+ #: templates/account.php:277
1246
+ msgid "Billing & Invoices"
1247
+ msgstr "Billing & Invoices"
1248
+
1249
+ #: templates/account.php:288
1250
+ 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?"
1251
+ 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?"
1252
+
1253
+ #: templates/account.php:290
1254
+ 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?"
1255
+ 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?"
1256
+
1257
+ #: templates/account.php:293
1258
+ msgid "Delete Account"
1259
+ msgstr "Delete Account"
1260
+
1261
+ #: templates/account.php:305, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35
1262
+ msgid "Deactivate License"
1263
+ msgstr "Deactivate License"
1264
+
1265
+ #: templates/account.php:328, templates/forms/subscription-cancellation.php:125
1266
+ msgid "Are you sure you want to proceed?"
1267
+ msgstr "Are you sure you want to proceed?"
1268
+
1269
+ #: templates/account.php:328, templates/account/partials/addon.php:255
1270
+ msgid "Cancel Subscription"
1271
+ msgstr "Cancel Subscription"
1272
+
1273
+ #: templates/account.php:357, templates/account/partials/addon.php:340
1274
+ msgctxt "as synchronize"
1275
+ msgid "Sync"
1276
+ msgstr "Sync"
1277
+
1278
+ #: templates/account.php:372, templates/debug.php:505
1279
+ msgid "Name"
1280
+ msgstr "Name"
1281
+
1282
+ #: templates/account.php:378, templates/debug.php:506
1283
+ msgid "Email"
1284
+ msgstr "Email"
1285
+
1286
+ #: templates/account.php:385, templates/debug.php:369, templates/debug.php:555
1287
+ msgid "User ID"
1288
+ msgstr "User ID"
1289
+
1290
+ #: templates/account.php:403, templates/account.php:721, templates/account.php:754, templates/debug.php:236, templates/debug.php:363, templates/debug.php:452, templates/debug.php:504, templates/debug.php:553, templates/debug.php:632, templates/account/payments.php:35, templates/debug/logger.php:21
1291
+ msgid "ID"
1292
+ msgstr "ID"
1293
+
1294
+ #: templates/account.php:410
1295
+ msgid "Site ID"
1296
+ msgstr "Site ID"
1297
+
1298
+ #: templates/account.php:413
1299
+ msgid "No ID"
1300
+ msgstr "No ID"
1301
+
1302
+ #: templates/account.php:418, templates/debug.php:243, templates/debug.php:372, templates/debug.php:456, templates/debug.php:508, templates/account/partials/site.php:227
1303
+ msgid "Public Key"
1304
+ msgstr "Public Key"
1305
+
1306
+ #: templates/account.php:424, templates/debug.php:373, templates/debug.php:457, templates/debug.php:509, templates/account/partials/site.php:239
1307
+ msgid "Secret Key"
1308
+ msgstr "Secret Key"
1309
+
1310
+ #: templates/account.php:427
1311
+ msgctxt "as secret encryption key missing"
1312
+ msgid "No Secret"
1313
+ msgstr "No Secret"
1314
+
1315
+ #: templates/account.php:454, templates/account/partials/site.php:120, templates/account/partials/site.php:122
1316
+ msgid "Trial"
1317
+ msgstr "Trial"
1318
+
1319
+ #: templates/account.php:481, templates/debug.php:561, templates/account/partials/site.php:260
1320
+ msgid "License Key"
1321
+ msgstr "License Key"
1322
+
1323
+ #: templates/account.php:512
1324
+ msgid "Join the Beta program"
1325
+ msgstr "Join the Beta program"
1326
+
1327
+ #: templates/account.php:518
1328
+ msgid "not verified"
1329
+ msgstr "not verified"
1330
+
1331
+ #: templates/account.php:527, templates/account/partials/addon.php:190
1332
+ msgid "Expired"
1333
+ msgstr "Expired"
1334
+
1335
+ #: templates/account.php:587
1336
+ msgid "Premium version"
1337
+ msgstr "Premium version"
1338
+
1339
+ #: templates/account.php:589
1340
+ msgid "Free version"
1341
+ msgstr "Free version"
1342
+
1343
+ #: templates/account.php:601
1344
+ msgid "Verify Email"
1345
+ msgstr "Verify Email"
1346
+
1347
+ #: templates/account.php:615
1348
+ msgid "Download %s Version"
1349
+ msgstr "Download %s Version"
1350
+
1351
+ #: templates/account.php:631
1352
+ msgid "Download Paid Version"
1353
+ msgstr "Download Paid Version"
1354
+
1355
+ #: templates/account.php:649, templates/account.php:892, templates/account/partials/site.php:248, templates/account/partials/site.php:270
1356
+ msgctxt "verb"
1357
+ msgid "Show"
1358
+ msgstr "Show"
1359
+
1360
+ #: templates/account.php:664
1361
+ msgid "What is your %s?"
1362
+ msgstr "What is your %s?"
1363
+
1364
+ #: templates/account.php:672, templates/account/billing.php:21
1365
+ msgctxt "verb"
1366
+ msgid "Edit"
1367
+ msgstr "Edit"
1368
+
1369
+ #: templates/account.php:676, templates/forms/user-change.php:27
1370
+ msgid "Change User"
1371
+ msgstr "Change User"
1372
+
1373
+ #: templates/account.php:700
1374
+ msgid "Sites"
1375
+ msgstr "Sites"
1376
+
1377
+ #: templates/account.php:713
1378
+ msgid "Search by address"
1379
+ msgstr "Search by address"
1380
+
1381
+ #: templates/account.php:722, templates/debug.php:366
1382
+ msgid "Address"
1383
+ msgstr "Address"
1384
+
1385
+ #: templates/account.php:723
1386
+ msgid "License"
1387
+ msgstr "License"
1388
+
1389
+ #: templates/account.php:724
1390
+ msgid "Plan"
1391
+ msgstr "Plan"
1392
+
1393
+ #: templates/account.php:757
1394
+ msgctxt "as software license"
1395
+ msgid "License"
1396
+ msgstr "License"
1397
+
1398
+ #: templates/account.php:886
1399
+ msgctxt "verb"
1400
+ msgid "Hide"
1401
+ msgstr "Hide"
1402
+
1403
+ #: templates/account.php:908, templates/forms/data-debug-mode.php:31
1404
+ msgid "Processing"
1405
+ msgstr "Processing"
1406
+
1407
+ #: templates/account.php:911
1408
+ msgid "Get updates for bleeding edge Beta versions of %s."
1409
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1410
+
1411
+ #: templates/account.php:969
1412
+ msgid "Cancelling %s"
1413
+ msgstr "Cancelling %s"
1414
+
1415
+ #: templates/account.php:969, templates/account.php:986, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133
1416
+ msgid "trial"
1417
+ msgstr "trial"
1418
+
1419
+ #: templates/account.php:984, templates/forms/deactivation/form.php:150
1420
+ msgid "Cancelling %s..."
1421
+ msgstr "Cancelling %s..."
1422
+
1423
+ #: templates/account.php:987, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134
1424
+ msgid "subscription"
1425
+ msgstr "subscription"
1426
+
1427
+ #: templates/account.php:1001
1428
+ 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?"
1429
+ msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
1430
+
1431
+ #: templates/account.php:1075
1432
+ msgid "Disabling white-label mode"
1433
+ msgstr "Disabling white-label mode"
1434
+
1435
+ #: templates/account.php:1076
1436
+ msgid "Enabling white-label mode"
1437
+ msgstr "Enabling white-label mode"
1438
+
1439
+ #: templates/add-ons.php:38
1440
+ msgid "View details"
1441
+ msgstr "View details"
1442
+
1443
+ #: templates/add-ons.php:48
1444
+ msgid "Add Ons for %s"
1445
+ msgstr "Add Ons for %s"
1446
+
1447
+ #: templates/add-ons.php:58
1448
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1449
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1450
+
1451
+ #: templates/add-ons.php:229
1452
+ msgctxt "active add-on"
1453
+ msgid "Active"
1454
+ msgstr "Active"
1455
+
1456
+ #: templates/add-ons.php:230
1457
+ msgctxt "installed add-on"
1458
+ msgid "Installed"
1459
+ msgstr "Installed"
1460
+
1461
+ #: templates/admin-notice.php:13, templates/forms/license-activation.php:222, templates/forms/resend-key.php:77
1462
+ msgctxt "as close a window"
1463
+ msgid "Dismiss"
1464
+ msgstr "Dismiss"
1465
+
1466
+ #: templates/auto-installation.php:45
1467
+ msgid "%s sec"
1468
+ msgstr "%s sec"
1469
+
1470
+ #: templates/auto-installation.php:83
1471
+ msgid "Automatic Installation"
1472
+ msgstr "Automatic Installation"
1473
+
1474
+ #: templates/auto-installation.php:93
1475
+ 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."
1476
+ 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."
1477
+
1478
+ #: templates/auto-installation.php:104
1479
+ 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."
1480
+ 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."
1481
+
1482
+ #: templates/auto-installation.php:109
1483
+ msgid "Cancel Installation"
1484
+ msgstr "Cancel Installation"
1485
+
1486
+ #: templates/checkout.php:180
1487
+ msgid "Checkout"
1488
+ msgstr "Checkout"
1489
+
1490
+ #: templates/checkout.php:180
1491
+ msgid "PCI compliant"
1492
+ msgstr "PCI compliant"
1493
+
1494
+ #. translators: %s: name (e.g. Hey John,)
1495
+ #: templates/connect.php:112
1496
+ msgctxt "greeting"
1497
+ msgid "Hey %s,"
1498
+ msgstr "Hey %s,"
1499
+
1500
+ #: templates/connect.php:162
1501
+ msgid "Allow & Continue"
1502
+ msgstr "Allow & Continue"
1503
+
1504
+ #: templates/connect.php:166
1505
+ msgid "Re-send activation email"
1506
+ msgstr "Re-send activation email"
1507
+
1508
+ #: templates/connect.php:170
1509
+ msgid "Thanks %s!"
1510
+ msgstr "Thanks %s!"
1511
+
1512
+ #: templates/connect.php:180, templates/forms/license-activation.php:46
1513
+ msgid "Agree & Activate License"
1514
+ msgstr "Agree & Activate License"
1515
+
1516
+ #: templates/connect.php:184
1517
+ msgid "Welcome to %s! To get started, please enter your license key:"
1518
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1519
+
1520
+ #: templates/connect.php:191
1521
+ 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."
1522
+ 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."
1523
+
1524
+ #: templates/connect.php:192
1525
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1526
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1527
+
1528
+ #: templates/connect.php:198
1529
+ 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."
1530
+ 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."
1531
+
1532
+ #: templates/connect.php:199
1533
+ 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."
1534
+ 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."
1535
+
1536
+ #: templates/connect.php:233
1537
+ msgid "We're excited to introduce the Freemius network-level integration."
1538
+ msgstr "We're excited to introduce the Freemius network-level integration."
1539
+
1540
+ #: templates/connect.php:236
1541
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1542
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1543
+
1544
+ #: templates/connect.php:238
1545
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1546
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1547
+
1548
+ #: templates/connect.php:240
1549
+ msgid "%s's paid features"
1550
+ msgstr "%s's paid features"
1551
+
1552
+ #: templates/connect.php:245
1553
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1554
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1555
+
1556
+ #: templates/connect.php:247
1557
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1558
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1559
+
1560
+ #: templates/connect.php:256, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49
1561
+ msgid "License key"
1562
+ msgstr "License key"
1563
+
1564
+ #: templates/connect.php:259, templates/forms/license-activation.php:22
1565
+ msgid "Can't find your license key?"
1566
+ msgstr "Can't find your license key?"
1567
+
1568
+ #: templates/connect.php:318, templates/connect.php:700, templates/forms/deactivation/retry-skip.php:20
1569
+ msgctxt "verb"
1570
+ msgid "Skip"
1571
+ msgstr "Skip"
1572
+
1573
+ #: templates/connect.php:321
1574
+ msgid "Delegate to Site Admins"
1575
+ msgstr "Delegate to Site Admins"
1576
+
1577
+ #: templates/connect.php:321
1578
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1579
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1580
+
1581
+ #: templates/connect.php:346
1582
+ msgid "License issues?"
1583
+ msgstr "License issues?"
1584
+
1585
+ #: templates/connect.php:362
1586
+ msgid "Your Profile Overview"
1587
+ msgstr "Your Profile Overview"
1588
+
1589
+ #: templates/connect.php:363
1590
+ msgid "Name and email address"
1591
+ msgstr "Name and email address"
1592
+
1593
+ #: templates/connect.php:370
1594
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1595
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1596
+
1597
+ #: templates/connect.php:371
1598
+ msgid "Your Site Overview"
1599
+ msgstr "Your Site Overview"
1600
+
1601
+ #: templates/connect.php:372
1602
+ msgid "Site URL, WP version, PHP info"
1603
+ msgstr "Site URL, WP version, PHP info"
1604
+
1605
+ #: templates/connect.php:379
1606
+ msgid "Admin Notices"
1607
+ msgstr "Admin Notices"
1608
+
1609
+ #: templates/connect.php:380, templates/connect.php:398
1610
+ msgid "Updates, announcements, marketing, no spam"
1611
+ msgstr "Updates, announcements, marketing, no spam"
1612
+
1613
+ #: templates/connect.php:387
1614
+ msgid "So you can reuse the license when the %s is no longer active."
1615
+ msgstr "So you can reuse the license when the %s is no longer active."
1616
+
1617
+ #: templates/connect.php:388
1618
+ msgid "Current %s Status"
1619
+ msgstr "Current %s Status"
1620
+
1621
+ #: templates/connect.php:389
1622
+ msgid "Active, deactivated, or uninstalled"
1623
+ msgstr "Active, deactivated, or uninstalled"
1624
+
1625
+ #: templates/connect.php:397
1626
+ msgid "Newsletter"
1627
+ msgstr "Newsletter"
1628
+
1629
+ #: templates/connect.php:405
1630
+ msgid "Plugins & Themes"
1631
+ msgstr "Plugins & Themes"
1632
+
1633
+ #: templates/connect.php:405
1634
+ msgid "optional"
1635
+ msgstr "optional"
1636
+
1637
+ #: templates/connect.php:406
1638
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1639
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1640
+
1641
+ #: templates/connect.php:407
1642
+ msgid "Title, slug, version, and is active"
1643
+ msgstr "Title, slug, version, and is active"
1644
+
1645
+ #: templates/connect.php:424
1646
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1647
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1648
+
1649
+ #: templates/connect.php:426
1650
+ msgid "diagnostic data"
1651
+ msgstr "diagnostic data"
1652
+
1653
+ #: templates/connect.php:427
1654
+ msgid "Freemius is our licensing and software updates engine"
1655
+ msgstr "Freemius is our licensing and software updates engine"
1656
+
1657
+ #: templates/connect.php:430
1658
+ msgid "What permissions are being granted?"
1659
+ msgstr "What permissions are being granted?"
1660
+
1661
+ #: templates/connect.php:457
1662
+ msgid "Don't have a license key?"
1663
+ msgstr "Don't have a license key?"
1664
+
1665
+ #: templates/connect.php:460
1666
+ msgid "Have a license key?"
1667
+ msgstr "Have a license key?"
1668
+
1669
+ #: templates/connect.php:468
1670
+ msgid "Privacy Policy"
1671
+ msgstr "Privacy Policy"
1672
+
1673
+ #: templates/connect.php:470
1674
+ msgid "License Agreement"
1675
+ msgstr "License Agreement"
1676
+
1677
+ #: templates/connect.php:470
1678
+ msgid "Terms of Service"
1679
+ msgstr "Terms of Service"
1680
+
1681
+ #: templates/connect.php:866
1682
+ msgctxt "as in the process of sending an email"
1683
+ msgid "Sending email"
1684
+ msgstr "Sending email"
1685
+
1686
+ #: templates/connect.php:867
1687
+ msgctxt "as activating plugin"
1688
+ msgid "Activating"
1689
+ msgstr "Activating"
1690
+
1691
+ #: templates/contact.php:78
1692
+ msgid "Contact"
1693
+ msgstr "Contact"
1694
+
1695
+ #: templates/debug.php:17
1696
+ msgctxt "as turned off"
1697
+ msgid "Off"
1698
+ msgstr "Off"
1699
+
1700
+ #: templates/debug.php:18
1701
+ msgctxt "as turned on"
1702
+ msgid "On"
1703
+ msgstr "On"
1704
+
1705
+ #: templates/debug.php:20
1706
+ msgid "SDK"
1707
+ msgstr "SDK"
1708
+
1709
+ #: templates/debug.php:24
1710
+ msgctxt "as code debugging"
1711
+ msgid "Debugging"
1712
+ msgstr "Debugging"
1713
+
1714
+ #: templates/debug.php:52, templates/debug.php:248, templates/debug.php:374, templates/debug.php:510
1715
+ msgid "Actions"
1716
+ msgstr "Actions"
1717
+
1718
+ #: templates/debug.php:62
1719
+ msgid "Are you sure you want to delete all Freemius data?"
1720
+ msgstr "Are you sure you want to delete all Freemius data?"
1721
+
1722
+ #: templates/debug.php:62
1723
+ msgid "Delete All Accounts"
1724
+ msgstr "Delete All Accounts"
1725
+
1726
+ #: templates/debug.php:69
1727
+ msgid "Clear API Cache"
1728
+ msgstr "Clear API Cache"
1729
+
1730
+ #: templates/debug.php:77
1731
+ msgid "Clear Updates Transients"
1732
+ msgstr "Clear Updates Transients"
1733
+
1734
+ #: templates/debug.php:84
1735
+ msgid "Sync Data From Server"
1736
+ msgstr "Sync Data From Server"
1737
+
1738
+ #: templates/debug.php:93
1739
+ msgid "Migrate Options to Network"
1740
+ msgstr "Migrate Options to Network"
1741
+
1742
+ #: templates/debug.php:98
1743
+ msgid "Load DB Option"
1744
+ msgstr "Load DB Option"
1745
+
1746
+ #: templates/debug.php:101
1747
+ msgid "Set DB Option"
1748
+ msgstr "Set DB Option"
1749
+
1750
+ #: templates/debug.php:180
1751
+ msgid "Key"
1752
+ msgstr "Key"
1753
+
1754
+ #: templates/debug.php:181
1755
+ msgid "Value"
1756
+ msgstr "Value"
1757
+
1758
+ #: templates/debug.php:197
1759
+ msgctxt "as software development kit versions"
1760
+ msgid "SDK Versions"
1761
+ msgstr "SDK Versions"
1762
+
1763
+ #: templates/debug.php:202
1764
+ msgid "SDK Path"
1765
+ msgstr "SDK Path"
1766
+
1767
+ #: templates/debug.php:203, templates/debug.php:242
1768
+ msgid "Module Path"
1769
+ msgstr "Module Path"
1770
+
1771
+ #: templates/debug.php:204
1772
+ msgid "Is Active"
1773
+ msgstr "Is Active"
1774
+
1775
+ #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35
1776
+ msgid "Plugins"
1777
+ msgstr "Plugins"
1778
+
1779
+ #: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56
1780
+ msgid "Themes"
1781
+ msgstr "Themes"
1782
+
1783
+ #: templates/debug.php:237, templates/debug.php:368, templates/debug.php:454, templates/debug/scheduled-crons.php:80
1784
+ msgid "Slug"
1785
+ msgstr "Slug"
1786
+
1787
+ #: templates/debug.php:239, templates/debug.php:453
1788
+ msgid "Title"
1789
+ msgstr "Title"
1790
+
1791
+ #: templates/debug.php:240
1792
+ msgctxt "as application program interface"
1793
+ msgid "API"
1794
+ msgstr "API"
1795
+
1796
+ #: templates/debug.php:241
1797
+ msgid "Freemius State"
1798
+ msgstr "Freemius State"
1799
+
1800
+ #: templates/debug.php:245
1801
+ msgid "Network Blog"
1802
+ msgstr "Network Blog"
1803
+
1804
+ #: templates/debug.php:246
1805
+ msgid "Network User"
1806
+ msgstr "Network User"
1807
+
1808
+ #: templates/debug.php:283
1809
+ msgctxt "as connection was successful"
1810
+ msgid "Connected"
1811
+ msgstr "Connected"
1812
+
1813
+ #: templates/debug.php:284
1814
+ msgctxt "as connection blocked"
1815
+ msgid "Blocked"
1816
+ msgstr "Blocked"
1817
+
1818
+ #: templates/debug.php:320
1819
+ msgid "Simulate Trial Promotion"
1820
+ msgstr "Simulate Trial Promotion"
1821
+
1822
+ #: templates/debug.php:332
1823
+ msgid "Simulate Network Upgrade"
1824
+ msgstr "Simulate Network Upgrade"
1825
+
1826
+ #: templates/debug.php:357
1827
+ msgid "%s Installs"
1828
+ msgstr "%s Installs"
1829
+
1830
+ #: templates/debug.php:359
1831
+ msgctxt "like websites"
1832
+ msgid "Sites"
1833
+ msgstr "Sites"
1834
+
1835
+ #: templates/debug.php:365, templates/account/partials/site.php:156
1836
+ msgid "Blog ID"
1837
+ msgstr "Blog ID"
1838
+
1839
+ #: templates/debug.php:370
1840
+ msgid "License ID"
1841
+ msgstr "License ID"
1842
+
1843
+ #: templates/debug.php:434, templates/debug.php:533, templates/account/partials/addon.php:435
1844
+ msgctxt "verb"
1845
+ msgid "Delete"
1846
+ msgstr "Delete"
1847
+
1848
+ #: templates/debug.php:448
1849
+ msgid "Add Ons of module %s"
1850
+ msgstr "Add Ons of module %s"
1851
+
1852
+ #: templates/debug.php:500
1853
+ msgid "Users"
1854
+ msgstr "Users"
1855
+
1856
+ #: templates/debug.php:507
1857
+ msgid "Verified"
1858
+ msgstr "Verified"
1859
+
1860
+ #: templates/debug.php:549
1861
+ msgid "%s Licenses"
1862
+ msgstr "%s Licenses"
1863
+
1864
+ #: templates/debug.php:554
1865
+ msgid "Plugin ID"
1866
+ msgstr "Plugin ID"
1867
+
1868
+ #: templates/debug.php:556
1869
+ msgid "Plan ID"
1870
+ msgstr "Plan ID"
1871
+
1872
+ #: templates/debug.php:557
1873
+ msgid "Quota"
1874
+ msgstr "Quota"
1875
+
1876
+ #: templates/debug.php:558
1877
+ msgid "Activated"
1878
+ msgstr "Activated"
1879
+
1880
+ #: templates/debug.php:559
1881
+ msgid "Blocking"
1882
+ msgstr "Blocking"
1883
+
1884
+ #: templates/debug.php:560, templates/debug.php:631, templates/debug/logger.php:22
1885
+ msgid "Type"
1886
+ msgstr "Type"
1887
+
1888
+ #: templates/debug.php:562
1889
+ msgctxt "as expiration date"
1890
+ msgid "Expiration"
1891
+ msgstr "Expiration"
1892
+
1893
+ #: templates/debug.php:590
1894
+ msgid "Debug Log"
1895
+ msgstr "Debug Log"
1896
+
1897
+ #: templates/debug.php:594
1898
+ msgid "All Types"
1899
+ msgstr "All Types"
1900
+
1901
+ #: templates/debug.php:601
1902
+ msgid "All Requests"
1903
+ msgstr "All Requests"
1904
+
1905
+ #: templates/debug.php:606, templates/debug.php:635, templates/debug/logger.php:25
1906
+ msgid "File"
1907
+ msgstr "File"
1908
+
1909
+ #: templates/debug.php:607, templates/debug.php:633, templates/debug/logger.php:23
1910
+ msgid "Function"
1911
+ msgstr "Function"
1912
+
1913
+ #: templates/debug.php:608
1914
+ msgid "Process ID"
1915
+ msgstr "Process ID"
1916
+
1917
+ #: templates/debug.php:609
1918
+ msgid "Logger"
1919
+ msgstr "Logger"
1920
+
1921
+ #: templates/debug.php:610, templates/debug.php:634, templates/debug/logger.php:24
1922
+ msgid "Message"
1923
+ msgstr "Message"
1924
+
1925
+ #: templates/debug.php:612
1926
+ msgid "Filter"
1927
+ msgstr "Filter"
1928
+
1929
+ #: templates/debug.php:620
1930
+ msgid "Download"
1931
+ msgstr "Download"
1932
+
1933
+ #: templates/debug.php:636, templates/debug/logger.php:26
1934
+ msgid "Timestamp"
1935
+ msgstr "Timestamp"
1936
+
1937
+ #: templates/secure-https-header.php:28
1938
+ msgid "Secure HTTPS %s page, running from an external domain"
1939
+ msgstr "Secure HTTPS %s page, running from an external domain"
1940
+
1941
+ #: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
1942
+ msgid "Support"
1943
+ msgstr "Support"
1944
+
1945
+ #: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
1946
+ msgctxt "milliseconds"
1947
+ msgid "ms"
1948
+ msgstr "ms"
1949
+
1950
+ #: includes/debug/debug-bar-start.php:41
1951
+ msgid "Freemius API"
1952
+ msgstr "Freemius API"
1953
+
1954
+ #: includes/debug/debug-bar-start.php:42
1955
+ msgid "Requests"
1956
+ msgstr "Requests"
1957
+
1958
+ #: templates/account/billing.php:22
1959
+ msgctxt "verb"
1960
+ msgid "Update"
1961
+ msgstr "Update"
1962
+
1963
+ #: templates/account/billing.php:33
1964
+ msgid "Billing"
1965
+ msgstr "Billing"
1966
+
1967
+ #: templates/account/billing.php:38, templates/account/billing.php:38
1968
+ msgid "Business name"
1969
+ msgstr "Business name"
1970
+
1971
+ #: templates/account/billing.php:39, templates/account/billing.php:39
1972
+ msgid "Tax / VAT ID"
1973
+ msgstr "Tax / VAT ID"
1974
+
1975
+ #: templates/account/billing.php:42, templates/account/billing.php:42, templates/account/billing.php:43, templates/account/billing.php:43
1976
+ msgid "Address Line %d"
1977
+ msgstr "Address Line %d"
1978
+
1979
+ #: templates/account/billing.php:46, templates/account/billing.php:46
1980
+ msgid "City"
1981
+ msgstr "City"
1982
+
1983
+ #: templates/account/billing.php:46, templates/account/billing.php:46
1984
+ msgid "Town"
1985
+ msgstr "Town"
1986
+
1987
+ #: templates/account/billing.php:47, templates/account/billing.php:47
1988
+ msgid "ZIP / Postal Code"
1989
+ msgstr "ZIP / Postal Code"
1990
+
1991
+ #: templates/account/billing.php:302
1992
+ msgid "Country"
1993
+ msgstr "Country"
1994
+
1995
+ #: templates/account/billing.php:304
1996
+ msgid "Select Country"
1997
+ msgstr "Select Country"
1998
+
1999
+ #: templates/account/billing.php:311, templates/account/billing.php:312
2000
+ msgid "State"
2001
+ msgstr "State"
2002
+
2003
+ #: templates/account/billing.php:311, templates/account/billing.php:312
2004
+ msgid "Province"
2005
+ msgstr "Province"
2006
+
2007
+ #: templates/account/payments.php:29
2008
+ msgid "Payments"
2009
+ msgstr "Payments"
2010
+
2011
+ #: templates/account/payments.php:36
2012
+ msgid "Date"
2013
+ msgstr "Date"
2014
+
2015
+ #: templates/account/payments.php:37
2016
+ msgid "Amount"
2017
+ msgstr "Amount"
2018
+
2019
+ #: templates/account/payments.php:38, templates/account/payments.php:50
2020
+ msgid "Invoice"
2021
+ msgstr "Invoice"
2022
+
2023
+ #: templates/debug/api-calls.php:56
2024
+ msgid "API"
2025
+ msgstr "API"
2026
+
2027
+ #: templates/debug/api-calls.php:68
2028
+ msgid "Method"
2029
+ msgstr "Method"
2030
+
2031
+ #: templates/debug/api-calls.php:69
2032
+ msgid "Code"
2033
+ msgstr "Code"
2034
+
2035
+ #: templates/debug/api-calls.php:70
2036
+ msgid "Length"
2037
+ msgstr "Length"
2038
+
2039
+ #: templates/debug/api-calls.php:71
2040
+ msgctxt "as file/folder path"
2041
+ msgid "Path"
2042
+ msgstr "Path"
2043
+
2044
+ #: templates/debug/api-calls.php:73
2045
+ msgid "Body"
2046
+ msgstr "Body"
2047
+
2048
+ #: templates/debug/api-calls.php:75
2049
+ msgid "Result"
2050
+ msgstr "Result"
2051
+
2052
+ #: templates/debug/api-calls.php:76
2053
+ msgid "Start"
2054
+ msgstr "Start"
2055
+
2056
+ #: templates/debug/api-calls.php:77
2057
+ msgid "End"
2058
+ msgstr "End"
2059
+
2060
+ #: templates/debug/logger.php:15
2061
+ msgid "Log"
2062
+ msgstr "Log"
2063
+
2064
+ #. translators: %s: time period (e.g. In "2 hours")
2065
+ #: templates/debug/plugins-themes-sync.php:18, templates/debug/scheduled-crons.php:91
2066
+ msgid "In %s"
2067
+ msgstr "In %s"
2068
+
2069
+ #. translators: %s: time period (e.g. "2 hours" ago)
2070
+ #: templates/debug/plugins-themes-sync.php:20, templates/debug/scheduled-crons.php:93
2071
+ msgid "%s ago"
2072
+ msgstr "%s ago"
2073
+
2074
+ #: templates/debug/plugins-themes-sync.php:21, templates/debug/scheduled-crons.php:74
2075
+ msgctxt "seconds"
2076
+ msgid "sec"
2077
+ msgstr "sec"
2078
+
2079
+ #: templates/debug/plugins-themes-sync.php:23
2080
+ msgid "Plugins & Themes Sync"
2081
+ msgstr "Plugins & Themes Sync"
2082
+
2083
+ #: templates/debug/plugins-themes-sync.php:28
2084
+ msgid "Total"
2085
+ msgstr "Total"
2086
+
2087
+ #: templates/debug/plugins-themes-sync.php:29, templates/debug/scheduled-crons.php:84
2088
+ msgid "Last"
2089
+ msgstr "Last"
2090
+
2091
+ #: templates/debug/scheduled-crons.php:76
2092
+ msgid "Scheduled Crons"
2093
+ msgstr "Scheduled Crons"
2094
+
2095
+ #: templates/debug/scheduled-crons.php:81
2096
+ msgid "Module"
2097
+ msgstr "Module"
2098
+
2099
+ #: templates/debug/scheduled-crons.php:82
2100
+ msgid "Module Type"
2101
+ msgstr "Module Type"
2102
+
2103
+ #: templates/debug/scheduled-crons.php:83
2104
+ msgid "Cron Type"
2105
+ msgstr "Cron Type"
2106
+
2107
+ #: templates/debug/scheduled-crons.php:85
2108
+ msgid "Next"
2109
+ msgstr "Next"
2110
+
2111
+ #: templates/forms/affiliation.php:82
2112
+ msgid "Non-expiring"
2113
+ msgstr "Non-expiring"
2114
+
2115
+ #: templates/forms/affiliation.php:85
2116
+ msgid "Apply to become an affiliate"
2117
+ msgstr "Apply to become an affiliate"
2118
+
2119
+ #: templates/forms/affiliation.php:107
2120
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2121
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2122
+
2123
+ #: templates/forms/affiliation.php:122
2124
+ 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."
2125
+ 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."
2126
+
2127
+ #: templates/forms/affiliation.php:125
2128
+ msgid "Your affiliation account was temporarily suspended."
2129
+ msgstr "Your affiliation account was temporarily suspended."
2130
+
2131
+ #: templates/forms/affiliation.php:128
2132
+ 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."
2133
+ 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."
2134
+
2135
+ #: templates/forms/affiliation.php:131
2136
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2137
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2138
+
2139
+ #: templates/forms/affiliation.php:144
2140
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2141
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2142
+
2143
+ #: templates/forms/affiliation.php:145
2144
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2145
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2146
+
2147
+ #: templates/forms/affiliation.php:148
2148
+ msgid "Program Summary"
2149
+ msgstr "Program Summary"
2150
+
2151
+ #: templates/forms/affiliation.php:150
2152
+ msgid "%s commission when a customer purchases a new license."
2153
+ msgstr "%s commission when a customer purchases a new license."
2154
+
2155
+ #: templates/forms/affiliation.php:152
2156
+ msgid "Get commission for automated subscription renewals."
2157
+ msgstr "Get commission for automated subscription renewals."
2158
+
2159
+ #: templates/forms/affiliation.php:155
2160
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2161
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2162
+
2163
+ #: templates/forms/affiliation.php:158
2164
+ msgid "Unlimited commissions."
2165
+ msgstr "Unlimited commissions."
2166
+
2167
+ #: templates/forms/affiliation.php:160
2168
+ msgid "%s minimum payout amount."
2169
+ msgstr "%s minimum payout amount."
2170
+
2171
+ #: templates/forms/affiliation.php:161
2172
+ msgid "Payouts are in USD and processed monthly via PayPal."
2173
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2174
+
2175
+ #: templates/forms/affiliation.php:162
2176
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2177
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2178
+
2179
+ #: templates/forms/affiliation.php:165
2180
+ msgid "Affiliate"
2181
+ msgstr "Affiliate"
2182
+
2183
+ #: templates/forms/affiliation.php:168, templates/forms/resend-key.php:23
2184
+ msgid "Email address"
2185
+ msgstr "Email address"
2186
+
2187
+ #: templates/forms/affiliation.php:172
2188
+ msgid "Full name"
2189
+ msgstr "Full name"
2190
+
2191
+ #: templates/forms/affiliation.php:176
2192
+ msgid "PayPal account email address"
2193
+ msgstr "PayPal account email address"
2194
+
2195
+ #: templates/forms/affiliation.php:180
2196
+ msgid "Where are you going to promote the %s?"
2197
+ msgstr "Where are you going to promote the %s?"
2198
+
2199
+ #: templates/forms/affiliation.php:182
2200
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2201
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2202
+
2203
+ #: templates/forms/affiliation.php:184
2204
+ msgid "Add another domain"
2205
+ msgstr "Add another domain"
2206
+
2207
+ #: templates/forms/affiliation.php:188
2208
+ msgid "Extra Domains"
2209
+ msgstr "Extra Domains"
2210
+
2211
+ #: templates/forms/affiliation.php:189
2212
+ msgid "Extra domains where you will be marketing the product from."
2213
+ msgstr "Extra domains where you will be marketing the product from."
2214
+
2215
+ #: templates/forms/affiliation.php:199
2216
+ msgid "Promotion methods"
2217
+ msgstr "Promotion methods"
2218
+
2219
+ #: templates/forms/affiliation.php:202
2220
+ msgid "Social media (Facebook, Twitter, etc.)"
2221
+ msgstr "Social media (Facebook, Twitter, etc.)"
2222
+
2223
+ #: templates/forms/affiliation.php:206
2224
+ msgid "Mobile apps"
2225
+ msgstr "Mobile apps"
2226
+
2227
+ #: templates/forms/affiliation.php:210
2228
+ msgid "Website, email, and social media statistics (optional)"
2229
+ msgstr "Website, email, and social media statistics (optional)"
2230
+
2231
+ #: templates/forms/affiliation.php:213
2232
+ 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)."
2233
+ 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)."
2234
+
2235
+ #: templates/forms/affiliation.php:217
2236
+ msgid "How will you promote us?"
2237
+ msgstr "How will you promote us?"
2238
+
2239
+ #: templates/forms/affiliation.php:220
2240
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2241
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2242
+
2243
+ #: templates/forms/affiliation.php:232, templates/forms/resend-key.php:22
2244
+ msgid "Cancel"
2245
+ msgstr "Cancel"
2246
+
2247
+ #: templates/forms/affiliation.php:234
2248
+ msgid "Become an affiliate"
2249
+ msgstr "Become an affiliate"
2250
+
2251
+ #: templates/forms/data-debug-mode.php:25
2252
+ msgid "Please enter the license key to enable the debug mode:"
2253
+ msgstr "Please enter the license key to enable the debug mode:"
2254
+
2255
+ #: templates/forms/data-debug-mode.php:27
2256
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2257
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2258
+
2259
+ #: templates/forms/data-debug-mode.php:32
2260
+ msgid "Submit"
2261
+ msgstr "Submit"
2262
+
2263
+ #: templates/forms/data-debug-mode.php:36
2264
+ msgid "User key"
2265
+ msgstr "User key"
2266
+
2267
+ #: templates/forms/license-activation.php:23
2268
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2269
+ msgstr "Please enter the license key that you received in the email right after the purchase:"
2270
+
2271
+ #: templates/forms/license-activation.php:28
2272
+ msgid "Update License"
2273
+ msgstr "Update License"
2274
+
2275
+ #: templates/forms/license-activation.php:41
2276
+ 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."
2277
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2278
+
2279
+ #: templates/forms/license-activation.php:183
2280
+ msgid "Associate with the license owner's account."
2281
+ msgstr "Associate with the license owner's account."
2282
+
2283
+ #: templates/forms/optout.php:30
2284
+ msgctxt "verb"
2285
+ msgid "Opt Out"
2286
+ msgstr "Opt Out"
2287
+
2288
+ #: templates/forms/optout.php:31
2289
+ msgctxt "verb"
2290
+ msgid "Opt In"
2291
+ msgstr "Opt In"
2292
+
2293
+ #: templates/forms/optout.php:34
2294
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2295
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2296
+
2297
+ #: templates/forms/optout.php:36
2298
+ msgid "Warning: Opting out will block automatic updates"
2299
+ msgstr "Warning: Opting out will block automatic updates"
2300
+
2301
+ #: templates/forms/optout.php:37
2302
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2303
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2304
+
2305
+ #: templates/forms/optout.php:39
2306
+ msgid "I'd like to keep automatic updates"
2307
+ msgstr "I'd like to keep automatic updates"
2308
+
2309
+ #: templates/forms/optout.php:44
2310
+ 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."
2311
+ 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."
2312
+
2313
+ #: templates/forms/optout.php:45
2314
+ msgid "On second thought - I want to continue helping"
2315
+ msgstr "On second thought - I want to continue helping"
2316
+
2317
+ #: templates/forms/optout.php:49
2318
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2319
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2320
+
2321
+ #: templates/forms/optout.php:74
2322
+ msgid "Plugins & themes tracking"
2323
+ msgstr "Plugins & themes tracking"
2324
+
2325
+ #: templates/forms/optout.php:261
2326
+ msgid "Saved"
2327
+ msgstr "Saved"
2328
+
2329
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2330
+ msgid "There is a new version of %s available."
2331
+ msgstr "There is a new version of %s available."
2332
+
2333
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2334
+ msgid " %s to access version %s security & feature updates, and support."
2335
+ msgstr " %s to access version %s security & feature updates, and support."
2336
+
2337
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2338
+ msgid "New Version Available"
2339
+ msgstr "New Version Available"
2340
+
2341
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2342
+ msgctxt "close a window"
2343
+ msgid "Dismiss"
2344
+ msgstr "Dismiss"
2345
+
2346
+ #: templates/forms/resend-key.php:21
2347
+ msgid "Send License Key"
2348
+ msgstr "Send License Key"
2349
+
2350
+ #: templates/forms/resend-key.php:57
2351
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2352
+ msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
2353
+
2354
+ #: templates/forms/subscription-cancellation.php:37
2355
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2356
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2357
+
2358
+ #: templates/forms/subscription-cancellation.php:47
2359
+ 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?"
2360
+ 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?"
2361
+
2362
+ #: templates/forms/subscription-cancellation.php:52
2363
+ msgid "license"
2364
+ msgstr "license"
2365
+
2366
+ #: templates/forms/subscription-cancellation.php:57
2367
+ 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."
2368
+ 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."
2369
+
2370
+ #: templates/forms/subscription-cancellation.php:68
2371
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2372
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2373
+
2374
+ #: templates/forms/subscription-cancellation.php:103
2375
+ 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."
2376
+ 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."
2377
+
2378
+ #: templates/forms/subscription-cancellation.php:136
2379
+ msgid "Cancel %s?"
2380
+ msgstr "Cancel %s?"
2381
+
2382
+ #: templates/forms/subscription-cancellation.php:143
2383
+ msgid "Proceed"
2384
+ msgstr "Proceed"
2385
+
2386
+ #: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:171
2387
+ msgid "Cancel %s & Proceed"
2388
+ msgstr "Cancel %s & Proceed"
2389
+
2390
+ #: templates/forms/trial-start.php:22
2391
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2392
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2393
+
2394
+ #: templates/forms/trial-start.php:28
2395
+ 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."
2396
+ 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."
2397
+
2398
+ #: templates/forms/user-change.php:26
2399
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2400
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2401
+
2402
+ #: templates/forms/user-change.php:28
2403
+ msgid "I Agree - Change User"
2404
+ msgstr "I Agree - Change User"
2405
+
2406
+ #: templates/forms/user-change.php:30
2407
+ msgid "Enter email address"
2408
+ msgstr "Enter email address"
2409
+
2410
+ #: templates/forms/user-change.php:81
2411
+ msgctxt "close window"
2412
+ msgid "Dismiss"
2413
+ msgstr "Dismiss"
2414
+
2415
+ #: templates/js/style-premium-theme.php:39
2416
+ msgid "Premium"
2417
+ msgstr "Premium"
2418
+
2419
+ #: templates/js/style-premium-theme.php:42
2420
+ msgid "Beta"
2421
+ msgstr "Beta"
2422
+
2423
+ #: templates/partials/network-activation.php:27
2424
+ msgid "Activate license on all sites in the network."
2425
+ msgstr "Activate license on all sites in the network."
2426
+
2427
+ #: templates/partials/network-activation.php:28
2428
+ msgid "Apply on all sites in the network."
2429
+ msgstr "Apply on all sites in the network."
2430
+
2431
+ #: templates/partials/network-activation.php:31
2432
+ msgid "Activate license on all pending sites."
2433
+ msgstr "Activate license on all pending sites."
2434
+
2435
+ #: templates/partials/network-activation.php:32
2436
+ msgid "Apply on all pending sites."
2437
+ msgstr "Apply on all pending sites."
2438
+
2439
+ #: templates/partials/network-activation.php:40, templates/partials/network-activation.php:74
2440
+ msgid "allow"
2441
+ msgstr "allow"
2442
+
2443
+ #: templates/partials/network-activation.php:43, templates/partials/network-activation.php:77
2444
+ msgid "delegate"
2445
+ msgstr "delegate"
2446
+
2447
+ #: templates/partials/network-activation.php:47, templates/partials/network-activation.php:81
2448
+ msgid "skip"
2449
+ msgstr "skip"
2450
+
2451
+ #: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31
2452
+ msgid "Click to view full-size screenshot %d"
2453
+ msgstr "Click to view full-size screenshot %d"
2454
+
2455
+ #: templates/plugin-info/features.php:56
2456
+ msgid "Unlimited Updates"
2457
+ msgstr "Unlimited Updates"
2458
+
2459
+ #: templates/account/partials/activate-license-button.php:46
2460
+ msgid "Localhost"
2461
+ msgstr "Localhost"
2462
+
2463
+ #: templates/account/partials/activate-license-button.php:50
2464
+ msgctxt "as 5 licenses left"
2465
+ msgid "%s left"
2466
+ msgstr "%s left"
2467
+
2468
+ #: templates/account/partials/activate-license-button.php:51
2469
+ msgid "Last license"
2470
+ msgstr "Last license"
2471
+
2472
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
2473
+ #: templates/account/partials/addon.php:29
2474
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2475
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2476
+
2477
+ #: templates/account/partials/addon.php:185
2478
+ msgid "Cancelled"
2479
+ msgstr "Cancelled"
2480
+
2481
+ #: templates/account/partials/addon.php:195
2482
+ msgid "No expiration"
2483
+ msgstr "No expiration"
2484
+
2485
+ #: templates/account/partials/site.php:189
2486
+ msgid "Owner Name"
2487
+ msgstr "Owner Name"
2488
+
2489
+ #: templates/account/partials/site.php:201
2490
+ msgid "Owner Email"
2491
+ msgstr "Owner Email"
2492
+
2493
+ #: templates/account/partials/site.php:213
2494
+ msgid "Owner ID"
2495
+ msgstr "Owner ID"
2496
+
2497
+ #: templates/account/partials/site.php:286
2498
+ msgid "Subscription"
2499
+ msgstr "Subscription"
2500
+
2501
+ #: templates/forms/deactivation/contact.php:19
2502
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2503
+ msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
2504
+
2505
+ #: templates/forms/deactivation/contact.php:22
2506
+ msgid "Contact Support"
2507
+ msgstr "Contact Support"
2508
+
2509
+ #: templates/forms/deactivation/form.php:64
2510
+ msgid "Anonymous feedback"
2511
+ msgstr "Anonymous feedback"
2512
+
2513
+ #: templates/forms/deactivation/form.php:70
2514
+ msgid "Deactivate"
2515
+ msgstr "Deactivate"
2516
+
2517
+ #: templates/forms/deactivation/form.php:72
2518
+ msgid "Activate %s"
2519
+ msgstr "Activate %s"
2520
+
2521
+ #: templates/forms/deactivation/form.php:87
2522
+ msgid "Quick Feedback"
2523
+ msgstr "Quick Feedback"
2524
+
2525
+ #: templates/forms/deactivation/form.php:91
2526
+ msgid "If you have a moment, please let us know why you are %s"
2527
+ msgstr "If you have a moment, please let us know why you are %s"
2528
+
2529
+ #: templates/forms/deactivation/form.php:91
2530
+ msgid "deactivating"
2531
+ msgstr "deactivating"
2532
+
2533
+ #: templates/forms/deactivation/form.php:91
2534
+ msgid "switching"
2535
+ msgstr "switching"
2536
+
2537
+ #: templates/forms/deactivation/form.php:369
2538
+ msgid "Submit & %s"
2539
+ msgstr "Submit & %s"
2540
+
2541
+ #: templates/forms/deactivation/form.php:390
2542
+ msgid "Kindly tell us the reason so we can improve."
2543
+ msgstr "Kindly tell us the reason so we can improve."
2544
+
2545
+ #: templates/forms/deactivation/form.php:515
2546
+ msgid "Yes - %s"
2547
+ msgstr "Yes - %s"
2548
+
2549
+ #: templates/forms/deactivation/form.php:522
2550
+ msgid "Skip & %s"
2551
+ msgstr "Skip & %s"
2552
+
2553
+ #: templates/forms/deactivation/retry-skip.php:21
2554
+ msgid "Click here to use the plugin anonymously"
2555
+ msgstr "Click here to use the plugin anonymously"
2556
+
2557
+ #: templates/forms/deactivation/retry-skip.php:23
2558
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2559
+ msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
freemius/languages/freemius-es_ES.po ADDED
@@ -0,0 +1,2686 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Carlos Longarela <carlos@longarela.eu>, 2017-2019
5
+ # David Perez <david@closemarketing.es>, 2020
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WordPress SDK\n"
9
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
+ "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
+ "Language: es_ES\n"
14
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "MIME-Version: 1.0\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
27
+ msgstr "Una actualización a una versión Beta reemplazará tu versión instalada de %s con la última versión Beta - úsalo con precaución, y no en sitios de producción. Te hemos avisado."
28
+
29
+ #: includes/class-freemius.php:1926
30
+ msgid "Would you like to proceed with the update?"
31
+ msgstr "¿Deseas continuar con la actualización?"
32
+
33
+ #: includes/class-freemius.php:2138
34
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
+ msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual."
36
+
37
+ #: includes/class-freemius.php:2140
38
+ msgid "Error"
39
+ msgstr "Error"
40
+
41
+ #: includes/class-freemius.php:2540
42
+ msgid "I found a better %s"
43
+ msgstr "He encontrado un %s mejor"
44
+
45
+ #: includes/class-freemius.php:2542
46
+ msgid "What's the %s's name?"
47
+ msgstr "¿Cuál es el nombre de %s?"
48
+
49
+ #: includes/class-freemius.php:2548
50
+ msgid "It's a temporary %s. I'm just debugging an issue."
51
+ msgstr "Es una %stemporal . Sólo estoy depurando un problema"
52
+
53
+ #: includes/class-freemius.php:2550
54
+ msgid "Deactivation"
55
+ msgstr "Desactivación"
56
+
57
+ #: includes/class-freemius.php:2551
58
+ msgid "Theme Switch"
59
+ msgstr "Cambiar tema"
60
+
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
+ #: templates/forms/user-change.php:29
63
+ msgid "Other"
64
+ msgstr "Otra"
65
+
66
+ #: includes/class-freemius.php:2568
67
+ msgid "I no longer need the %s"
68
+ msgstr "Ya no necesito el %s"
69
+
70
+ #: includes/class-freemius.php:2575
71
+ msgid "I only needed the %s for a short period"
72
+ msgstr "Sólo necesitaba la %s por un corto período"
73
+
74
+ #: includes/class-freemius.php:2581
75
+ msgid "The %s broke my site"
76
+ msgstr "%s ha roto mi sitio"
77
+
78
+ #: includes/class-freemius.php:2588
79
+ msgid "The %s suddenly stopped working"
80
+ msgstr "%s de repente ha dejado de funcionar"
81
+
82
+ #: includes/class-freemius.php:2598
83
+ msgid "I can't pay for it anymore"
84
+ msgstr "No puedo pagarlo durante más tiempo"
85
+
86
+ #: includes/class-freemius.php:2600
87
+ msgid "What price would you feel comfortable paying?"
88
+ msgstr "¿Con qué precio te sentirías cómodo pagando?"
89
+
90
+ #: includes/class-freemius.php:2606
91
+ msgid "I don't like to share my information with you"
92
+ msgstr "No me gusta compartir mi información contigo"
93
+
94
+ #: includes/class-freemius.php:2627
95
+ msgid "The %s didn't work"
96
+ msgstr "El %s no funcionaba"
97
+
98
+ #: includes/class-freemius.php:2637
99
+ msgid "I couldn't understand how to make it work"
100
+ msgstr "No entiendo cómo hacerlo funcionar"
101
+
102
+ #: includes/class-freemius.php:2645
103
+ msgid "The %s is great, but I need specific feature that you don't support"
104
+ msgstr "%s es genial, pero necesito una característica que no soportáis"
105
+
106
+ #: includes/class-freemius.php:2647
107
+ msgid "What feature?"
108
+ msgstr "¿Qué característica?"
109
+
110
+ #: includes/class-freemius.php:2651
111
+ msgid "The %s is not working"
112
+ msgstr " El %s no funciona"
113
+
114
+ #: includes/class-freemius.php:2653
115
+ msgid "Kindly share what didn't work so we can fix it for future users..."
116
+ msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..."
117
+
118
+ #: includes/class-freemius.php:2657
119
+ msgid "It's not what I was looking for"
120
+ msgstr "No es lo que estaba buscando"
121
+
122
+ #: includes/class-freemius.php:2659
123
+ msgid "What you've been looking for?"
124
+ msgstr "¿Que has estado buscando?"
125
+
126
+ #: includes/class-freemius.php:2663
127
+ msgid "The %s didn't work as expected"
128
+ msgstr " El %s no funciona como esperaba"
129
+
130
+ #: includes/class-freemius.php:2665
131
+ msgid "What did you expect?"
132
+ msgstr "¿Qué esperas?"
133
+
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
+ msgid "Freemius Debug"
136
+ msgstr "Debug Freemius"
137
+
138
+ #: includes/class-freemius.php:4272
139
+ msgid "I don't know what is cURL or how to install it, help me!"
140
+ msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!"
141
+
142
+ #: includes/class-freemius.php:4274
143
+ 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."
144
+ 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."
145
+
146
+ #: includes/class-freemius.php:4281
147
+ 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."
148
+ 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."
149
+
150
+ #: includes/class-freemius.php:4386
151
+ msgid "Yes - do your thing"
152
+ msgstr "Vamos, adelante"
153
+
154
+ #: includes/class-freemius.php:4391
155
+ msgid "No - just deactivate"
156
+ msgstr "No - sólo desactivar"
157
+
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
+ msgctxt "exclamation"
167
+ msgid "Oops"
168
+ msgstr "Oops"
169
+
170
+ #: includes/class-freemius.php:4505
171
+ 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."
172
+ 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."
173
+
174
+ #: includes/class-freemius.php:4927
175
+ msgctxt "addonX cannot run without pluginY"
176
+ msgid "%s cannot run without %s."
177
+ msgstr "%s no se puede ejecutar sin %s."
178
+
179
+ #: includes/class-freemius.php:4928
180
+ msgctxt "addonX cannot run..."
181
+ msgid "%s cannot run without the plugin."
182
+ msgstr "%s no se puede ejecutar sin el plugin."
183
+
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
187
+ msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error."
188
+
189
+ #: includes/class-freemius.php:5857
190
+ msgid "Premium %s version was successfully activated."
191
+ msgstr "La versión Premium %s ha sido activada con éxito."
192
+
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
+ msgctxt ""
195
+ msgid "W00t"
196
+ msgstr "W00t"
197
+
198
+ #: includes/class-freemius.php:5884
199
+ msgid "You have a %s license."
200
+ msgstr "Tienes una licencia %s."
201
+
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
+ msgctxt "interjection expressing joy or exuberance"
207
+ msgid "Yee-haw"
208
+ msgstr "Vaya"
209
+
210
+ #: includes/class-freemius.php:6174
211
+ 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."
212
+ 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."
213
+
214
+ #: includes/class-freemius.php:6178
215
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
+ msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin."
217
+
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
+ #: templates/account/partials/addon.php:381
220
+ msgid "More information about %s"
221
+ msgstr "Más información sobre %s"
222
+
223
+ #: includes/class-freemius.php:6188
224
+ msgid "Purchase License"
225
+ msgstr "Comprar licencia"
226
+
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
+ 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."
229
+ 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."
230
+
231
+ #: includes/class-freemius.php:7129
232
+ msgid "start the trial"
233
+ msgstr "comenzar el período de prueba"
234
+
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
+ msgid "complete the install"
237
+ msgstr "completar la instalación"
238
+
239
+ #: includes/class-freemius.php:7249
240
+ msgid "You are just one step away - %s"
241
+ msgstr "Estás a sólo un paso - %s"
242
+
243
+ #: includes/class-freemius.php:7252
244
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
+ msgid "Complete \"%s\" Activation Now"
246
+ msgstr "Completar la activación de \"%s\" ahora"
247
+
248
+ #: includes/class-freemius.php:7334
249
+ msgid "We made a few tweaks to the %s, %s"
250
+ msgstr "Hemos realizado algunas optimizaciones al %s, %s"
251
+
252
+ #: includes/class-freemius.php:7338
253
+ msgid "Opt in to make \"%s\" better!"
254
+ msgstr "¡Inscríbite para hacer \"%s\" Mejor!"
255
+
256
+ #: includes/class-freemius.php:7773
257
+ msgid "The upgrade of %s was successfully completed."
258
+ msgstr "La actualización de %s se completó con éxito."
259
+
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
+ #: templates/auto-installation.php:32
264
+ msgid "Add-On"
265
+ msgstr "Complemento"
266
+
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
+ msgid "Plugin"
270
+ msgstr "Plugin"
271
+
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
+ #: templates/forms/deactivation/form.php:71
275
+ msgid "Theme"
276
+ msgstr "Tema"
277
+
278
+ #: includes/class-freemius.php:13188
279
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
+
282
+ #: includes/class-freemius.php:13202
283
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
285
+
286
+ #: includes/class-freemius.php:13207
287
+ msgid "User Dashboard"
288
+ msgstr "User Dashboard"
289
+
290
+ #: includes/class-freemius.php:13208
291
+ msgid "revert it now"
292
+ msgstr "revert it now"
293
+
294
+ #: includes/class-freemius.php:13266
295
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
296
+ msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario."
297
+
298
+ #: includes/class-freemius.php:13339
299
+ msgid "Invalid new user ID or email address."
300
+ msgstr "Nuevo ID de usuario o dirección de correo electrónico no válido."
301
+
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
+ 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."
305
+
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
+ msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad."
309
+
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
+ msgid "Change Ownership"
312
+ msgstr "Cambiar propietario"
313
+
314
+ #: includes/class-freemius.php:13977
315
+ msgid "Invalid site details collection."
316
+ msgstr "Colección de detalles del sitio no válida."
317
+
318
+ #: includes/class-freemius.php:14097
319
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
+ 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?"
321
+
322
+ #: includes/class-freemius.php:14099
323
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
+ 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?"
325
+
326
+ #: includes/class-freemius.php:14373
327
+ msgid "Account is pending activation."
328
+ msgstr "La cuenta está pendiente de activación"
329
+
330
+ #: includes/class-freemius.php14485,
331
+ #: templates/forms/premium-versions-upgrade-handler.php:47
332
+ msgid "Buy a license now"
333
+ msgstr "Compra una licencia ahora"
334
+
335
+ #: includes/class-freemius.php14497,
336
+ #: templates/forms/premium-versions-upgrade-handler.php:46
337
+ msgid "Renew your license now"
338
+ msgstr "Renueva tu licencia ahora"
339
+
340
+ #: includes/class-freemius.php:14501
341
+ msgid "%s to access version %s security & feature updates, and support."
342
+ msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
343
+
344
+ #: includes/class-freemius.php:16929
345
+ msgid "%s activation was successfully completed."
346
+ msgstr "%s activación se completó con éxito."
347
+
348
+ #: includes/class-freemius.php:16943
349
+ msgid "Your account was successfully activated with the %s plan."
350
+ msgstr "Tu cuenta se ha activado correctamente con el plan %s."
351
+
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
+ msgid "Your trial has been successfully started."
354
+ msgstr "Tu versión de prueba se ha iniciado con éxito."
355
+
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
+ msgid "Couldn't activate %s."
359
+ msgstr "No se puede activar %s."
360
+
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
+ msgid "Please contact us with the following message:"
364
+ msgstr "Por favor contáctanos con el siguiente mensaje:"
365
+
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
+ msgid "An unknown error has occurred."
368
+ msgstr "Se ha producido un error desconocido."
369
+
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
+ msgid "Upgrade"
372
+ msgstr "Actualizar"
373
+
374
+ #: includes/class-freemius.php:18184
375
+ msgid "Start Trial"
376
+ msgstr "Comenzar el período de prueba"
377
+
378
+ #: includes/class-freemius.php:18186
379
+ msgid "Pricing"
380
+ msgstr "Precio"
381
+
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
+ msgid "Affiliation"
384
+ msgstr "Afiliación"
385
+
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
+ msgid "Account"
389
+ msgstr "Cuenta"
390
+
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
+ #: includes/customizer/class-fs-customizer-support-section.php:60
393
+ msgid "Contact Us"
394
+ msgstr "Contáctanos"
395
+
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
+ #: templates/account/partials/addon.php:44
399
+ msgid "Add-Ons"
400
+ msgstr "Complementos"
401
+
402
+ #: includes/class-freemius.php:18361
403
+ msgctxt "ASCII arrow left icon"
404
+ msgid "&#x2190;"
405
+ msgstr "&#x2190;"
406
+
407
+ #: includes/class-freemius.php:18361
408
+ msgctxt "ASCII arrow right icon"
409
+ msgid "&#x27a4;"
410
+ msgstr "&#x27a4;"
411
+
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
+ msgctxt "noun"
414
+ msgid "Pricing"
415
+ msgstr "Precio"
416
+
417
+ #: includes/class-freemius.php18576,
418
+ #: includes/customizer/class-fs-customizer-support-section.php:67
419
+ msgid "Support Forum"
420
+ msgstr "Foro de soporte"
421
+
422
+ #: includes/class-freemius.php:19550
423
+ msgid "Your email has been successfully verified - you are AWESOME!"
424
+ msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!"
425
+
426
+ #: includes/class-freemius.php:19551
427
+ msgctxt "a positive response"
428
+ msgid "Right on"
429
+ msgstr "Bien hecho"
430
+
431
+ #: includes/class-freemius.php:20057
432
+ msgid "seems like the key you entered doesn't match our records."
433
+ msgstr "parece que la clave que has introducido no coincide con nuestros registros."
434
+
435
+ #: includes/class-freemius.php:20081
436
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+ msgstr "El modo de depuración se ha activado con éxito y se desactivará automáticamente en 60 minutos. También puedes desactivarlo antes haciendo clic en el enlace \"Detener depuración\"."
438
+
439
+ #: includes/class-freemius.php:20316
440
+ msgid "Your %s Add-on plan was successfully upgraded."
441
+ msgstr "Tu complemento %s del plan se actualizó con éxito."
442
+
443
+ #: includes/class-freemius.php:20318
444
+ msgid "%s Add-on was successfully purchased."
445
+ msgstr "El complemento %s ha sido comprado correctamente."
446
+
447
+ #: includes/class-freemius.php:20321
448
+ msgid "Download the latest version"
449
+ msgstr "Descargar la última versión"
450
+
451
+ #: includes/class-freemius.php:20407
452
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
453
+ msgstr "Tu servidor está bloqueando el acceso al API de Freemius, que es crucial para sincronizar %1$s. Por favor, contacta a tu proveedor de hosting para permitir el acceso de %2$s"
454
+
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
+ msgid "Error received from the server:"
458
+ msgstr "Error recibido del servidor:"
459
+
460
+ #: includes/class-freemius.php:20423
461
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
+ 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."
463
+
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
+ msgctxt ""
467
+ msgid "Hmm"
468
+ msgstr "Hmm"
469
+
470
+ #: includes/class-freemius.php:20664
471
+ 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."
472
+ 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."
473
+
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
+ msgctxt "trial period"
477
+ msgid "Trial"
478
+ msgstr "Período de Prueba Gratuito"
479
+
480
+ #: includes/class-freemius.php:20670
481
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
+ msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s."
483
+
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
+ msgid "Please contact us here"
486
+ msgstr "Contacta aquí con nosotros"
487
+
488
+ #: includes/class-freemius.php:20685
489
+ msgid "Your plan was successfully activated."
490
+ msgstr "Tu plan se activó con éxito."
491
+
492
+ #: includes/class-freemius.php:20686
493
+ msgid "Your plan was successfully upgraded."
494
+ msgstr "Tu plan se actualizó con éxito."
495
+
496
+ #: includes/class-freemius.php:20703
497
+ msgid "Your plan was successfully changed to %s."
498
+ msgstr "Tu plan se cambió correctamente a %s."
499
+
500
+ #: includes/class-freemius.php:20719
501
+ msgid "Your license has expired. You can still continue using the free %s forever."
502
+ msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre."
503
+
504
+ #: includes/class-freemius.php:20721
505
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
+ msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
507
+
508
+ #: includes/class-freemius.php:20729
509
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
+ msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia."
511
+
512
+ #: includes/class-freemius.php:20742
513
+ 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."
514
+ 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."
515
+
516
+ #: includes/class-freemius.php:20768
517
+ msgid "Your free trial has expired. You can still continue using all our free features."
518
+ msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas."
519
+
520
+ #: includes/class-freemius.php:20770
521
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
+ msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones."
523
+
524
+ #: includes/class-freemius.php:20885
525
+ msgid "It looks like the license could not be activated."
526
+ msgstr "Parece que la licencia no se pudo activar."
527
+
528
+ #: includes/class-freemius.php:20927
529
+ msgid "Your license was successfully activated."
530
+ msgstr "Tu licencia fue activada correctamente."
531
+
532
+ #: includes/class-freemius.php:20953
533
+ msgid "It looks like your site currently doesn't have an active license."
534
+ msgstr "Parece que tu sitio actualmente no tiene una licencia activa."
535
+
536
+ #: includes/class-freemius.php:20977
537
+ msgid "It looks like the license deactivation failed."
538
+ msgstr "Parece que la desactivación de licencia ha fallado."
539
+
540
+ #: includes/class-freemius.php:21006
541
+ msgid "Your %s license was successfully deactivated."
542
+ msgstr "Tu licencia %s ha sido desactivada correctamente."
543
+
544
+ #: includes/class-freemius.php:21007
545
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
546
+ msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s."
547
+
548
+ #: includes/class-freemius.php:21010
549
+ msgid "O.K"
550
+ msgstr "O.K"
551
+
552
+ #: includes/class-freemius.php:21063
553
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
+ msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos."
555
+
556
+ #: includes/class-freemius.php:21072
557
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
+ msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s."
559
+
560
+ #: includes/class-freemius.php:21114
561
+ msgid "You are already running the %s in a trial mode."
562
+ msgstr "Estás ejecutando %s en modo de prueba."
563
+
564
+ #: includes/class-freemius.php:21125
565
+ msgid "You already utilized a trial before."
566
+ msgstr "Ya utilizaste un período de prueba antes."
567
+
568
+ #: includes/class-freemius.php:21139
569
+ msgid "Plan %s do not exist, therefore, can't start a trial."
570
+ msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba."
571
+
572
+ #: includes/class-freemius.php:21150
573
+ msgid "Plan %s does not support a trial period."
574
+ msgstr "El plan %s no admite un período de prueba."
575
+
576
+ #: includes/class-freemius.php:21161
577
+ msgid "None of the %s's plans supports a trial period."
578
+ msgstr "Ninguno de los planes de %s soportan un período de prueba."
579
+
580
+ #: includes/class-freemius.php:21211
581
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
+ msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)"
583
+
584
+ #: includes/class-freemius.php:21247
585
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
+ msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos."
587
+
588
+ #: includes/class-freemius.php:21266
589
+ msgid "Your %s free trial was successfully cancelled."
590
+ msgstr "Tu prueba gratuita de %s fue cancelada con éxito."
591
+
592
+ #: includes/class-freemius.php:21582
593
+ msgid "Version %s was released."
594
+ msgstr "La versión %s se ha lanzado."
595
+
596
+ #: includes/class-freemius.php:21582
597
+ msgid "Please download %s."
598
+ msgstr "Por favor descarga %s."
599
+
600
+ #: includes/class-freemius.php:21589
601
+ msgid "the latest %s version here"
602
+ msgstr "la última versión %s aquí"
603
+
604
+ #: includes/class-freemius.php:21594
605
+ msgid "New"
606
+ msgstr "Nuevo"
607
+
608
+ #: includes/class-freemius.php:21599
609
+ msgid "Seems like you got the latest release."
610
+ msgstr "Parece que tienes la última versión."
611
+
612
+ #: includes/class-freemius.php:21600
613
+ msgid "You are all good!"
614
+ msgstr "¡Está todo listo!"
615
+
616
+ #: includes/class-freemius.php:21903
617
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
+ 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."
619
+
620
+ #: includes/class-freemius.php:22043
621
+ msgid "Site successfully opted in."
622
+ msgstr "Sitio dado de alta correctamente."
623
+
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
+ msgid "Awesome"
626
+ msgstr "Increíble"
627
+
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
+ msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso."
631
+
632
+ #: includes/class-freemius.php:22061
633
+ msgid "Thank you!"
634
+ msgstr "¡Gracias!"
635
+
636
+ #: includes/class-freemius.php:22068
637
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
638
+ msgstr "No continuaremos enviando datos de uso de %s en %s a %s."
639
+
640
+ #: includes/class-freemius.php:22226
641
+ 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."
642
+ 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."
643
+
644
+ #: includes/class-freemius.php:22232
645
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
+ msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final."
647
+
648
+ #: includes/class-freemius.php:22237
649
+ msgid "%s is the new owner of the account."
650
+ msgstr "%s es el nuevo dueño de la cuenta."
651
+
652
+ #: includes/class-freemius.php:22239
653
+ msgctxt "as congratulations"
654
+ msgid "Congrats"
655
+ msgstr "Felicidades"
656
+
657
+ #: includes/class-freemius.php:22275
658
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
+ msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos."
660
+
661
+ #: includes/class-freemius.php:22287
662
+ msgid "Please provide your full name."
663
+ msgstr "Por favor, dinos tu nombre completo."
664
+
665
+ #: includes/class-freemius.php:22292
666
+ msgid "Your name was successfully updated."
667
+ msgstr "Tu nombre fue actualizado correctamente."
668
+
669
+ #: includes/class-freemius.php:22353
670
+ msgid "You have successfully updated your %s."
671
+ msgstr "Has actualizado correctamente tu %s."
672
+
673
+ #: includes/class-freemius.php:22412
674
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
676
+
677
+ #: includes/class-freemius.php:22415
678
+ msgid "Click here"
679
+ msgstr "Click here"
680
+
681
+ #: includes/class-freemius.php:22513
682
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
+ msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo."
684
+
685
+ #: includes/class-freemius.php:22514
686
+ msgctxt "advance notice of something that will need attention."
687
+ msgid "Heads up"
688
+ msgstr "Atención"
689
+
690
+ #: includes/class-freemius.php:23090
691
+ msgctxt "exclamation"
692
+ msgid "Hey"
693
+ msgstr "Hey"
694
+
695
+ #: includes/class-freemius.php:23090
696
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
+ msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días."
698
+
699
+ #: includes/class-freemius.php:23098
700
+ msgid "No commitment for %s days - cancel anytime!"
701
+ msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!"
702
+
703
+ #: includes/class-freemius.php:23099
704
+ msgid "No credit card required"
705
+ msgstr "No se necesita tarjeta de crédito"
706
+
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
+ msgctxt "call to action"
709
+ msgid "Start free trial"
710
+ msgstr "Comenzar el período de prueba gratuito"
711
+
712
+ #: includes/class-freemius.php:23183
713
+ 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!"
714
+ msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!"
715
+
716
+ #: includes/class-freemius.php:23192
717
+ msgid "Learn more"
718
+ msgstr "Saber más"
719
+
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
+ #: templates/account/partials/addon.php:321
724
+ msgid "Activate License"
725
+ msgstr "Activar licencia"
726
+
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
+ #: templates/account/partials/site.php:271
730
+ msgid "Change License"
731
+ msgstr "Cambiar licencia"
732
+
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
+ msgid "Opt Out"
735
+ msgstr "Darse de baja"
736
+
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
+ #: templates/account/partials/site.php49,
739
+ #: templates/account/partials/site.php:169
740
+ msgid "Opt In"
741
+ msgstr "Inscribirse"
742
+
743
+ #: includes/class-freemius.php:23738
744
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
+ msgstr " La versión de pago de %1$s ya está instalada. Por favor, actívala para empezar a beneficiarte de las características de %2$s. %3$s"
746
+
747
+ #: includes/class-freemius.php:23746
748
+ msgid "Activate %s features"
749
+ msgstr "Activar características %s"
750
+
751
+ #: includes/class-freemius.php:23759
752
+ msgid "Please follow these steps to complete the upgrade"
753
+ msgstr "Por favor, sigue estos pasos para completar la actualización"
754
+
755
+ #: includes/class-freemius.php:23763
756
+ msgid "Download the latest %s version"
757
+ msgstr "Descargar la última versión %s"
758
+
759
+ #: includes/class-freemius.php:23767
760
+ msgid "Upload and activate the downloaded version"
761
+ msgstr "Cargar y activar la versión descargada"
762
+
763
+ #: includes/class-freemius.php:23769
764
+ msgid "How to upload and activate?"
765
+ msgstr "¿Cómo subirlo y activarlo?"
766
+
767
+ #: includes/class-freemius.php:23903
768
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
+ msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia."
770
+
771
+ #: includes/class-freemius.php:24072
772
+ msgid "Auto installation only works for opted-in users."
773
+ msgstr "La instalación automática sólo funciona para usuarios que aceptaron."
774
+
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
+ msgid "Invalid module ID."
779
+ msgstr "Id de módulo no válido."
780
+
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
+ msgid "Premium version already active."
783
+ msgstr "Versión premium ya activa."
784
+
785
+ #: includes/class-freemius.php:24098
786
+ msgid "You do not have a valid license to access the premium version."
787
+ msgstr "No tienes una licencia válida para acceder a la versión premium."
788
+
789
+ #: includes/class-freemius.php:24105
790
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
+ msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium."
792
+
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
+ msgid "Premium add-on version already installed."
795
+ msgstr "Versión del complemento premium ya instalada."
796
+
797
+ #: includes/class-freemius.php:24473
798
+ msgid "View paid features"
799
+ msgstr "Ver las funciones de pago"
800
+
801
+ #: includes/class-freemius.php:24795
802
+ msgid "Thank you so much for using %s and its add-ons!"
803
+ msgstr "¡Muchas gracias por utilizar %s y sus complementos!"
804
+
805
+ #: includes/class-freemius.php:24796
806
+ msgid "Thank you so much for using %s!"
807
+ msgstr "¡Muchas gracias por utilizar %s!"
808
+
809
+ #: includes/class-freemius.php:24802
810
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
+ msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s."
812
+
813
+ #: includes/class-freemius.php:24806
814
+ msgid "Thank you so much for using our products!"
815
+ msgstr "¡Muchas gracias por utilizar nuestros productos!"
816
+
817
+ #: includes/class-freemius.php:24807
818
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
+ msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando."
820
+
821
+ #: includes/class-freemius.php:24826
822
+ msgid "%s and its add-ons"
823
+ msgstr "%s y sus complementos"
824
+
825
+ #: includes/class-freemius.php:24835
826
+ msgid "Products"
827
+ msgstr "Productos"
828
+
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
+ msgid "Yes"
831
+ msgstr "Si"
832
+
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
+ msgid "send me security & feature updates, educational content and offers."
835
+ msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
836
+
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
+ msgid "No"
839
+ msgstr "No"
840
+
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
+ msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas."
844
+
845
+ #: includes/class-freemius.php:24856
846
+ 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 :-)"
847
+ msgstr "Debido al nuevo %sEU Reglamento General de Protección de Datos (RGPD)%s los requisitos de obligado cumplimiento requieren que proporciones tu consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)"
848
+
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
+ msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:"
852
+
853
+ #: includes/class-freemius.php:25140
854
+ msgid "License key is empty."
855
+ msgstr "La clave de licencia está vacía."
856
+
857
+ #: includes/class-fs-plugin-updater.php206,
858
+ #: templates/forms/premium-versions-upgrade-handler.php:57
859
+ msgid "Renew license"
860
+ msgstr "Renovar la licencia"
861
+
862
+ #: includes/class-fs-plugin-updater.php211,
863
+ #: templates/forms/premium-versions-upgrade-handler.php:58
864
+ msgid "Buy license"
865
+ msgstr "Comprar licencia"
866
+
867
+ #: includes/class-fs-plugin-updater.php327,
868
+ #: includes/class-fs-plugin-updater.php:360
869
+ msgid "There is a %s of %s available."
870
+ msgstr "Hay una %s de %s disponible."
871
+
872
+ #: includes/class-fs-plugin-updater.php329,
873
+ #: includes/class-fs-plugin-updater.php:365
874
+ msgid "new Beta version"
875
+ msgstr "nueva versión Beta"
876
+
877
+ #: includes/class-fs-plugin-updater.php330,
878
+ #: includes/class-fs-plugin-updater.php:366
879
+ msgid "new version"
880
+ msgstr "nueva versión"
881
+
882
+ #: includes/class-fs-plugin-updater.php:389
883
+ msgid "Important Upgrade Notice:"
884
+ msgstr "Aviso importante de actualización:"
885
+
886
+ #: includes/class-fs-plugin-updater.php:1326
887
+ msgid "Installing plugin: %s"
888
+ msgstr "Instalando plugin: %s"
889
+
890
+ #: includes/class-fs-plugin-updater.php:1367
891
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
+ msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales."
893
+
894
+ #: includes/class-fs-plugin-updater.php:1549
895
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
+ msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó."
897
+
898
+ #: includes/fs-plugin-info-dialog.php:541
899
+ msgid "Purchase More"
900
+ msgstr "Comprar más"
901
+
902
+ #: includes/fs-plugin-info-dialog.php542,
903
+ #: templates/account/partials/addon.php:385
904
+ msgctxt "verb"
905
+ msgid "Purchase"
906
+ msgstr "Comprar"
907
+
908
+ #: includes/fs-plugin-info-dialog.php:546
909
+ msgid "Start my free %s"
910
+ msgstr "Comenzar mi período gratuito de %s"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:744
913
+ msgid "Install Free Version Update Now"
914
+ msgstr "Instalar la actualización gratuita ahora"
915
+
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
+ msgid "Install Update Now"
918
+ msgstr "Instalar actualización ahora"
919
+
920
+ #: includes/fs-plugin-info-dialog.php:754
921
+ msgid "Install Free Version Now"
922
+ msgstr "Instalar la versión gratuita ahora"
923
+
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
+ #: templates/auto-installation.php111,
926
+ #: templates/account/partials/addon.php365,
927
+ #: templates/account/partials/addon.php:418
928
+ msgid "Install Now"
929
+ msgstr "Instalar ahora"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:771
932
+ msgctxt "as download latest version"
933
+ msgid "Download Latest Free Version"
934
+ msgstr "Descargar la última versión gratuita"
935
+
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
+ msgctxt "as download latest version"
939
+ msgid "Download Latest"
940
+ msgstr "Descargar la última"
941
+
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
+ #: templates/account/partials/addon.php356,
944
+ #: templates/account/partials/addon.php:412
945
+ msgid "Activate this add-on"
946
+ msgstr "Activar este complemento"
947
+
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
+ msgid "Activate Free Version"
950
+ msgstr "Activar versión gratuita"
951
+
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
+ msgid "Activate"
955
+ msgstr "Activar"
956
+
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
+ msgctxt "Plugin installer section title"
959
+ msgid "Description"
960
+ msgstr "Descripción"
961
+
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
+ msgctxt "Plugin installer section title"
964
+ msgid "Installation"
965
+ msgstr "Instalación"
966
+
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
+ msgctxt "Plugin installer section title"
969
+ msgid "FAQ"
970
+ msgstr "FAQ"
971
+
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
+ #: templates/plugin-info/description.php:55
974
+ msgid "Screenshots"
975
+ msgstr "Capturas de pantalla"
976
+
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
+ msgctxt "Plugin installer section title"
979
+ msgid "Changelog"
980
+ msgstr "Registro de cambios"
981
+
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
+ msgctxt "Plugin installer section title"
984
+ msgid "Reviews"
985
+ msgstr "Valoraciones"
986
+
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
+ msgctxt "Plugin installer section title"
989
+ msgid "Other Notes"
990
+ msgstr "Otras notas"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
+ msgctxt "Plugin installer section title"
994
+ msgid "Features & Pricing"
995
+ msgstr "Características y precios"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
+ msgid "Plugin Install"
999
+ msgstr "Instalar plugin"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
+ msgctxt "e.g. Professional Plan"
1003
+ msgid "%s Plan"
1004
+ msgstr "Plan %s"
1005
+
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
+ msgctxt "e.g. the best product"
1008
+ msgid "Best"
1009
+ msgstr "El mejor"
1010
+
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
+ msgctxt "as every month"
1014
+ msgid "Monthly"
1015
+ msgstr "Mensual"
1016
+
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
+ msgctxt "as once a year"
1019
+ msgid "Annual"
1020
+ msgstr "Anual"
1021
+
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
+ msgid "Lifetime"
1024
+ msgstr "Permanente"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
+ msgctxt "e.g. billed monthly"
1030
+ msgid "Billed %s"
1031
+ msgstr "Facturado %s"
1032
+
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
+ msgctxt "as once a year"
1035
+ msgid "Annually"
1036
+ msgstr "Anualmente"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
+ msgctxt "as once a year"
1040
+ msgid "Once"
1041
+ msgstr "Una vez"
1042
+
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
+ msgid "Single Site License"
1045
+ msgstr "Licencia para un único sitio"
1046
+
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
+ msgid "Unlimited Licenses"
1049
+ msgstr "Licencias ilimitadas"
1050
+
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
+ msgid "Up to %s Sites"
1053
+ msgstr "Hasta %s sitios"
1054
+
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
+ #: templates/plugin-info/features.php:82
1057
+ msgctxt "as monthly period"
1058
+ msgid "mo"
1059
+ msgstr "me"
1060
+
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
+ #: templates/plugin-info/features.php:80
1063
+ msgctxt "as annual period"
1064
+ msgid "year"
1065
+ msgstr "año"
1066
+
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
+ msgctxt "noun"
1069
+ msgid "Price"
1070
+ msgstr "Precio"
1071
+
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
+ msgid "Save %s"
1074
+ msgstr "Guardar %s"
1075
+
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
+ msgid "No commitment for %s - cancel anytime"
1078
+ msgstr "Sin compromiso para %s - cancelar en cualquier momento"
1079
+
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
+ msgid "After your free %s, pay as little as %s"
1082
+ msgstr "Después de su período gratuito %s, pague sólo %s"
1083
+
1084
+ #: includes/fs-plugin-info-dialog.php:1314
1085
+ msgid "Details"
1086
+ msgstr "Detalles"
1087
+
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
+ #: templates/account/partials/addon.php:36
1091
+ msgctxt "product version"
1092
+ msgid "Version"
1093
+ msgstr "Versión"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
+ msgctxt "as the plugin author"
1097
+ msgid "Author"
1098
+ msgstr "Autor"
1099
+
1100
+ #: includes/fs-plugin-info-dialog.php:1332
1101
+ msgid "Last Updated"
1102
+ msgstr "Última actualización"
1103
+
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
+ msgctxt "x-ago"
1106
+ msgid "%s ago"
1107
+ msgstr "hace %s"
1108
+
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
+ msgid "Requires WordPress Version"
1111
+ msgstr "Necesita la versión de WordPress"
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
+ msgid "%s or higher"
1115
+ msgstr "%s o mayor"
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
+ msgid "Compatible up to"
1119
+ msgstr "Compatible hasta"
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
+ msgid "Downloaded"
1123
+ msgstr "Descargado"
1124
+
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
+ msgid "%s time"
1127
+ msgstr "% vez"
1128
+
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
+ msgid "%s times"
1131
+ msgstr "%s veces"
1132
+
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
+ msgid "WordPress.org Plugin Page"
1135
+ msgstr "Página del plugin en WordPress.org"
1136
+
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
+ msgid "Plugin Homepage"
1139
+ msgstr "Página web del plugin"
1140
+
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
+ msgid "Donate to this plugin"
1144
+ msgstr "Donar a este plugin"
1145
+
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
+ msgid "Average Rating"
1148
+ msgstr "Calificación media"
1149
+
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
+ msgid "based on %s"
1152
+ msgstr "basado en %s"
1153
+
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
+ msgid "%s rating"
1156
+ msgstr "%s calificación"
1157
+
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
+ msgid "%s ratings"
1160
+ msgstr "%s calificaciones"
1161
+
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
+ msgid "%s star"
1164
+ msgstr "%s estrella"
1165
+
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
+ msgid "%s stars"
1168
+ msgstr "%s estrellas"
1169
+
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
+ msgid "Click to see reviews that provided a rating of %s"
1172
+ msgstr "Haz clic para ver los comentarios con una valoración de %s"
1173
+
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
+ msgid "Contributors"
1176
+ msgstr "Colaboradores"
1177
+
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
+ msgid "Warning"
1181
+ msgstr "Atencion"
1182
+
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
+ msgid "This plugin has not been tested with your current version of WordPress."
1185
+ msgstr "Este plugin no ha sido probado con tu versión actual de WordPress."
1186
+
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
+ msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress."
1190
+
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
+ msgid "Paid add-on must be deployed to Freemius."
1193
+ msgstr "El complemento de pago se debe implementar en Freemius."
1194
+
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
+ msgstr "El complemento debe implementarse en WordPress.org o en Freemius."
1198
+
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
+ msgid "Newer Version (%s) Installed"
1201
+ msgstr "Versión más reciente (%s) instalada"
1202
+
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
+ msgid "Newer Free Version (%s) Installed"
1205
+ msgstr "Versión gratuita más reciente (%s) instalada"
1206
+
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
+ msgid "Latest Version Installed"
1209
+ msgstr "Última versión instalada"
1210
+
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
+ msgid "Latest Free Version Installed"
1213
+ msgstr "Última versión gratuita instalada"
1214
+
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
+ #: templates/account/partials/addon.php26,
1217
+ #: templates/account/partials/site.php:311
1218
+ msgid "Downgrading your plan"
1219
+ msgstr "Bajando tu plan"
1220
+
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
+ #: templates/account/partials/addon.php27,
1223
+ #: templates/account/partials/site.php:312
1224
+ msgid "Cancelling the subscription"
1225
+ msgstr "Cancelando la suscripción"
1226
+
1227
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
+ #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
+ #: templates/account/partials/site.php:314
1231
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
+ msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %2$s caducará en %3$s."
1233
+
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
+ #: templates/account/partials/addon.php30,
1236
+ #: templates/account/partials/site.php:315
1237
+ 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."
1238
+ msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado."
1239
+
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
+ #: templates/account/partials/addon.php:31
1242
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
+ msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?"
1244
+
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
+ #: templates/account/partials/addon.php32,
1247
+ #: templates/account/partials/site.php:316
1248
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
+ msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s."
1250
+
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
+ #: templates/account/partials/addon.php33,
1253
+ #: templates/account/partials/site.php:317
1254
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
+ msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s."
1256
+
1257
+ #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
+ #: templates/account/partials/activate-license-button.php31,
1260
+ #: templates/account/partials/addon.php:35
1261
+ msgid "Activate %s Plan"
1262
+ msgstr "Activar plan %s"
1263
+
1264
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
+ #: templates/account/partials/site.php:291
1267
+ msgid "Auto renews in %s"
1268
+ msgstr "Auto renovaciones en %s"
1269
+
1270
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
+ #: templates/account/partials/site.php:293
1273
+ msgid "Expires in %s"
1274
+ msgstr "Caduca en %s"
1275
+
1276
+ #: templates/account.php:117
1277
+ msgctxt "as synchronize license"
1278
+ msgid "Sync License"
1279
+ msgstr "Sincronizar licencia"
1280
+
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
+ msgid "Cancel Trial"
1283
+ msgstr "Cancelar período de prueba"
1284
+
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
+ msgid "Change Plan"
1287
+ msgstr "Cambiar Plan"
1288
+
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
+ msgctxt "verb"
1291
+ msgid "Upgrade"
1292
+ msgstr "Actualizar"
1293
+
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
+ #: templates/account/partials/site.php:318
1296
+ msgctxt "verb"
1297
+ msgid "Downgrade"
1298
+ msgstr "Degradar"
1299
+
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
+ #: templates/plugin-info/features.php72,
1302
+ #: templates/account/partials/addon.php47,
1303
+ #: templates/account/partials/site.php:33
1304
+ msgid "Free"
1305
+ msgstr "Gratis"
1306
+
1307
+ #: templates/account.php126, templates/debug.php371,
1308
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
+ #: templates/account/partials/addon.php:49
1310
+ msgctxt "as product pricing plan"
1311
+ msgid "Plan"
1312
+ msgstr "Plan"
1313
+
1314
+ #: templates/account.php:127
1315
+ msgid "Bundle Plan"
1316
+ msgstr "Plan combinado"
1317
+
1318
+ #: templates/account.php:250
1319
+ msgid "Free Trial"
1320
+ msgstr "Período de prueba gratuito"
1321
+
1322
+ #: templates/account.php:261
1323
+ msgid "Account Details"
1324
+ msgstr "Detalles de la cuenta"
1325
+
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
+ msgid "Start Debug"
1328
+ msgstr "Iniciar Depuración"
1329
+
1330
+ #: templates/account.php:270
1331
+ msgid "Stop Debug"
1332
+ msgstr "Detener la depuración"
1333
+
1334
+ #: templates/account.php:277
1335
+ msgid "Billing & Invoices"
1336
+ msgstr "Facturación y facturas"
1337
+
1338
+ #: templates/account.php:288
1339
+ 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?"
1340
+ msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?"
1341
+
1342
+ #: templates/account.php:290
1343
+ 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?"
1344
+ msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?"
1345
+
1346
+ #: templates/account.php:293
1347
+ msgid "Delete Account"
1348
+ msgstr "Borrar cuenta"
1349
+
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
+ #: templates/account/partials/deactivate-license-button.php:35
1352
+ msgid "Deactivate License"
1353
+ msgstr "Desactivar licencia"
1354
+
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
+ msgid "Are you sure you want to proceed?"
1357
+ msgstr "¿Estás seguro que quieres proceder?"
1358
+
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
+ msgid "Cancel Subscription"
1361
+ msgstr "Cancelar suscripción"
1362
+
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
+ msgctxt "as synchronize"
1365
+ msgid "Sync"
1366
+ msgstr "Sincronizar"
1367
+
1368
+ #: templates/account.php372, templates/debug.php:505
1369
+ msgid "Name"
1370
+ msgstr "Nombre"
1371
+
1372
+ #: templates/account.php378, templates/debug.php:506
1373
+ msgid "Email"
1374
+ msgstr "Correo electrónico"
1375
+
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
+ msgid "User ID"
1378
+ msgstr "ID de usuario"
1379
+
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
+ #: templates/debug.php632, templates/account/payments.php35,
1384
+ #: templates/debug/logger.php:21
1385
+ msgid "ID"
1386
+ msgstr "ID"
1387
+
1388
+ #: templates/account.php:410
1389
+ msgid "Site ID"
1390
+ msgstr "ID del sitio"
1391
+
1392
+ #: templates/account.php:413
1393
+ msgid "No ID"
1394
+ msgstr "Sin ID"
1395
+
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
+ #: templates/debug.php456, templates/debug.php508,
1398
+ #: templates/account/partials/site.php:227
1399
+ msgid "Public Key"
1400
+ msgstr "Clave pública"
1401
+
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
+ #: templates/debug.php509, templates/account/partials/site.php:239
1404
+ msgid "Secret Key"
1405
+ msgstr "Clave secreta"
1406
+
1407
+ #: templates/account.php:427
1408
+ msgctxt "as secret encryption key missing"
1409
+ msgid "No Secret"
1410
+ msgstr "Sin clave secreta"
1411
+
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
+ #: templates/account/partials/site.php:122
1414
+ msgid "Trial"
1415
+ msgstr "Período de prueba gratuito"
1416
+
1417
+ #: templates/account.php481, templates/debug.php561,
1418
+ #: templates/account/partials/site.php:260
1419
+ msgid "License Key"
1420
+ msgstr "Clave de licencia"
1421
+
1422
+ #: templates/account.php:512
1423
+ msgid "Join the Beta program"
1424
+ msgstr "Únete al programa Beta"
1425
+
1426
+ #: templates/account.php:518
1427
+ msgid "not verified"
1428
+ msgstr "no verificado"
1429
+
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
+ msgid "Expired"
1432
+ msgstr "Caducado"
1433
+
1434
+ #: templates/account.php:587
1435
+ msgid "Premium version"
1436
+ msgstr "Versión premium"
1437
+
1438
+ #: templates/account.php:589
1439
+ msgid "Free version"
1440
+ msgstr "Versión gratuita"
1441
+
1442
+ #: templates/account.php:601
1443
+ msgid "Verify Email"
1444
+ msgstr "Verificar correo electrónico"
1445
+
1446
+ #: templates/account.php:615
1447
+ msgid "Download %s Version"
1448
+ msgstr "Descargar versión %s"
1449
+
1450
+ #: templates/account.php:631
1451
+ msgid "Download Paid Version"
1452
+ msgstr "Descargar la versión de pago"
1453
+
1454
+ #: templates/account.php649, templates/account.php892,
1455
+ #: templates/account/partials/site.php248,
1456
+ #: templates/account/partials/site.php:270
1457
+ msgctxt "verb"
1458
+ msgid "Show"
1459
+ msgstr "Mostrar"
1460
+
1461
+ #: templates/account.php:664
1462
+ msgid "What is your %s?"
1463
+ msgstr "¿Cual es tú %s?"
1464
+
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
+ msgctxt "verb"
1467
+ msgid "Edit"
1468
+ msgstr "Editar"
1469
+
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
+ msgid "Change User"
1472
+ msgstr "Cambiar usuario"
1473
+
1474
+ #: templates/account.php:700
1475
+ msgid "Sites"
1476
+ msgstr "Sitios"
1477
+
1478
+ #: templates/account.php:713
1479
+ msgid "Search by address"
1480
+ msgstr "Buscar por dirección"
1481
+
1482
+ #: templates/account.php722, templates/debug.php:366
1483
+ msgid "Address"
1484
+ msgstr "Dirección"
1485
+
1486
+ #: templates/account.php:723
1487
+ msgid "License"
1488
+ msgstr "Licencia"
1489
+
1490
+ #: templates/account.php:724
1491
+ msgid "Plan"
1492
+ msgstr "Plan"
1493
+
1494
+ #: templates/account.php:757
1495
+ msgctxt "as software license"
1496
+ msgid "License"
1497
+ msgstr "Licencia"
1498
+
1499
+ #: templates/account.php:886
1500
+ msgctxt "verb"
1501
+ msgid "Hide"
1502
+ msgstr "Ocultar"
1503
+
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
+ msgid "Processing"
1506
+ msgstr "Procesando"
1507
+
1508
+ #: templates/account.php:911
1509
+ msgid "Get updates for bleeding edge Beta versions of %s."
1510
+ msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s."
1511
+
1512
+ #: templates/account.php:969
1513
+ msgid "Cancelling %s"
1514
+ msgstr "Cancelando %s"
1515
+
1516
+ #: templates/account.php969, templates/account.php986,
1517
+ #: templates/forms/subscription-cancellation.php27,
1518
+ #: templates/forms/deactivation/form.php:133
1519
+ msgid "trial"
1520
+ msgstr "período de prueba"
1521
+
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
+ msgid "Cancelling %s..."
1524
+ msgstr "Cancelando %s..."
1525
+
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
+ #: templates/forms/deactivation/form.php:134
1528
+ msgid "subscription"
1529
+ msgstr "suscripción"
1530
+
1531
+ #: templates/account.php:1001
1532
+ 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?"
1533
+ msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?"
1534
+
1535
+ #: templates/account.php:1075
1536
+ msgid "Disabling white-label mode"
1537
+ msgstr "Disabling white-label mode"
1538
+
1539
+ #: templates/account.php:1076
1540
+ msgid "Enabling white-label mode"
1541
+ msgstr "Enabling white-label mode"
1542
+
1543
+ #: templates/add-ons.php:38
1544
+ msgid "View details"
1545
+ msgstr "Ver detalles"
1546
+
1547
+ #: templates/add-ons.php:48
1548
+ msgid "Add Ons for %s"
1549
+ msgstr "Complementos para %s"
1550
+
1551
+ #: templates/add-ons.php:58
1552
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+ msgstr "No pudimos cargar la lista de complementos. Probablemente sea un problema por nuestra parte, por favor, inténtalo de nuevo en unos minutos."
1554
+
1555
+ #: templates/add-ons.php:229
1556
+ msgctxt "active add-on"
1557
+ msgid "Active"
1558
+ msgstr "Activo"
1559
+
1560
+ #: templates/add-ons.php:230
1561
+ msgctxt "installed add-on"
1562
+ msgid "Installed"
1563
+ msgstr "Instalado"
1564
+
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
+ #: templates/forms/resend-key.php:77
1567
+ msgctxt "as close a window"
1568
+ msgid "Dismiss"
1569
+ msgstr "Descartar"
1570
+
1571
+ #: templates/auto-installation.php:45
1572
+ msgid "%s sec"
1573
+ msgstr "%s seg"
1574
+
1575
+ #: templates/auto-installation.php:83
1576
+ msgid "Automatic Installation"
1577
+ msgstr "Instalación automática"
1578
+
1579
+ #: templates/auto-installation.php:93
1580
+ 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."
1581
+ msgstr "Una descarga automatizada y la instalación de %s (versión de pago) de %s comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de cancelación."
1582
+
1583
+ #: templates/auto-installation.php:104
1584
+ 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."
1585
+ msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en completarse. Por favor, espera hasta que se finalice - no actualices esta página."
1586
+
1587
+ #: templates/auto-installation.php:109
1588
+ msgid "Cancel Installation"
1589
+ msgstr "Cancelar instalación"
1590
+
1591
+ #: templates/checkout.php:180
1592
+ msgid "Checkout"
1593
+ msgstr "Pagar"
1594
+
1595
+ #: templates/checkout.php:180
1596
+ msgid "PCI compliant"
1597
+ msgstr "Compatible con PCI"
1598
+
1599
+ #. translators: %s: name (e.g. Hey John,)
1600
+ #: templates/connect.php:112
1601
+ msgctxt "greeting"
1602
+ msgid "Hey %s,"
1603
+ msgstr "Hey %s,"
1604
+
1605
+ #: templates/connect.php:162
1606
+ msgid "Allow & Continue"
1607
+ msgstr "Permitir y continuar"
1608
+
1609
+ #: templates/connect.php:166
1610
+ msgid "Re-send activation email"
1611
+ msgstr "Reenviar correo electrónico de activación"
1612
+
1613
+ #: templates/connect.php:170
1614
+ msgid "Thanks %s!"
1615
+ msgstr "¡Gracias %s!"
1616
+
1617
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1618
+ msgid "Agree & Activate License"
1619
+ msgstr "De acuerdo y activar licencia"
1620
+
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
+
1625
+ #: templates/connect.php:191
1626
+ 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."
1627
+ msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s."
1628
+
1629
+ #: templates/connect.php:192
1630
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
+ msgstr "No te pierdas ninguna actualización importante - acepta para notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s."
1632
+
1633
+ #: templates/connect.php:198
1634
+ 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."
1635
+ msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones, contenido educacional, ofertas y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1636
+
1637
+ #: templates/connect.php:199
1638
+ 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."
1639
+ msgstr "No te pierdas ninguna actualización importante - acepta las notificaciones de seguridad y de actualizaciones y seguimiento de diagnóstico con datos no sensibles con %4$s. ¡Si te saltas esto, no pasa nada! %1$s seguirá funcionando bien."
1640
+
1641
+ #: templates/connect.php:233
1642
+ msgid "We're excited to introduce the Freemius network-level integration."
1643
+ msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red."
1644
+
1645
+ #: templates/connect.php:236
1646
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
+ msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia."
1648
+
1649
+ #: templates/connect.php:238
1650
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
+ msgstr "Si quieres utilizar %s en estos sitios, introduce por favor tu clave de licencia abajo y haz click en el botón de activación."
1652
+
1653
+ #: templates/connect.php:240
1654
+ msgid "%s's paid features"
1655
+ msgstr "%s características de pago"
1656
+
1657
+ #: templates/connect.php:245
1658
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
+ msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red."
1660
+
1661
+ #: templates/connect.php:247
1662
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
+ msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención."
1664
+
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
+ #: templates/forms/license-activation.php:49
1667
+ msgid "License key"
1668
+ msgstr "Clave de licencia"
1669
+
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
+ msgid "Can't find your license key?"
1672
+ msgstr "¿No puedes encontrar tu clave de licencia?"
1673
+
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
+ #: templates/forms/deactivation/retry-skip.php:20
1676
+ msgctxt "verb"
1677
+ msgid "Skip"
1678
+ msgstr "Saltar"
1679
+
1680
+ #: templates/connect.php:321
1681
+ msgid "Delegate to Site Admins"
1682
+ msgstr "Delegar a administradores del sitio"
1683
+
1684
+ #: templates/connect.php:321
1685
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1686
+ msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios."
1687
+
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
+ msgid "Your Profile Overview"
1694
+ msgstr "Resumen del perfil"
1695
+
1696
+ #: templates/connect.php:363
1697
+ msgid "Name and email address"
1698
+ msgstr "Nombre y dirección de correo electrónico"
1699
+
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
+ msgid "Your Site Overview"
1706
+ msgstr "Resumen del sitio"
1707
+
1708
+ #: templates/connect.php:372
1709
+ msgid "Site URL, WP version, PHP info"
1710
+ msgstr "URL del sitio, versión de WP, información de PHP"
1711
+
1712
+ #: templates/connect.php:379
1713
+ msgid "Admin Notices"
1714
+ msgstr "Avisos de administración"
1715
+
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
+ msgid "Updates, announcements, marketing, no spam"
1718
+ msgstr "Actualizaciones, anuncios, marketing, sin spam"
1719
+
1720
+ #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
+
1732
+ #: templates/connect.php:397
1733
+ msgid "Newsletter"
1734
+ msgstr "Boletín"
1735
+
1736
+ #: templates/connect.php:405
1737
+ msgid "Plugins & Themes"
1738
+ msgstr "Plugins y Temas"
1739
+
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
+ msgid "Title, slug, version, and is active"
1750
+ msgstr "Título, slug, versión y está activo"
1751
+
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+
1756
+ #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
+ msgid "What permissions are being granted?"
1766
+ msgstr "¿Qué permisos se otorgan?"
1767
+
1768
+ #: templates/connect.php:457
1769
+ msgid "Don't have a license key?"
1770
+ msgstr "¿No tienes una clave de licencia?"
1771
+
1772
+ #: templates/connect.php:460
1773
+ msgid "Have a license key?"
1774
+ msgstr "¿Tienes una clave de licencia?"
1775
+
1776
+ #: templates/connect.php:468
1777
+ msgid "Privacy Policy"
1778
+ msgstr "Política de privacidad"
1779
+
1780
+ #: templates/connect.php:470
1781
+ msgid "License Agreement"
1782
+ msgstr "Acuerdo de licencia"
1783
+
1784
+ #: templates/connect.php:470
1785
+ msgid "Terms of Service"
1786
+ msgstr "Términos de servicio"
1787
+
1788
+ #: templates/connect.php:866
1789
+ msgctxt "as in the process of sending an email"
1790
+ msgid "Sending email"
1791
+ msgstr "Enviando correo electrónico"
1792
+
1793
+ #: templates/connect.php:867
1794
+ msgctxt "as activating plugin"
1795
+ msgid "Activating"
1796
+ msgstr "Activando"
1797
+
1798
+ #: templates/contact.php:78
1799
+ msgid "Contact"
1800
+ msgstr "Contacto"
1801
+
1802
+ #: templates/debug.php:17
1803
+ msgctxt "as turned off"
1804
+ msgid "Off"
1805
+ msgstr "Apagado"
1806
+
1807
+ #: templates/debug.php:18
1808
+ msgctxt "as turned on"
1809
+ msgid "On"
1810
+ msgstr "Encendido"
1811
+
1812
+ #: templates/debug.php:20
1813
+ msgid "SDK"
1814
+ msgstr "SDK"
1815
+
1816
+ #: templates/debug.php:24
1817
+ msgctxt "as code debugging"
1818
+ msgid "Debugging"
1819
+ msgstr "Depurando"
1820
+
1821
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1822
+ #: templates/debug.php:510
1823
+ msgid "Actions"
1824
+ msgstr "Acciones"
1825
+
1826
+ #: templates/debug.php:62
1827
+ msgid "Are you sure you want to delete all Freemius data?"
1828
+ msgstr "¿Está seguro que desea eliminar todos los datos de Freemius?"
1829
+
1830
+ #: templates/debug.php:62
1831
+ msgid "Delete All Accounts"
1832
+ msgstr "Borrar todas las cuentas"
1833
+
1834
+ #: templates/debug.php:69
1835
+ msgid "Clear API Cache"
1836
+ msgstr "Borrar caché de la API"
1837
+
1838
+ #: templates/debug.php:77
1839
+ msgid "Clear Updates Transients"
1840
+ msgstr "Borrar transients de actualizaciones"
1841
+
1842
+ #: templates/debug.php:84
1843
+ msgid "Sync Data From Server"
1844
+ msgstr "Sincronizar datos desde el servidor"
1845
+
1846
+ #: templates/debug.php:93
1847
+ msgid "Migrate Options to Network"
1848
+ msgstr "Migrar opciones a la red"
1849
+
1850
+ #: templates/debug.php:98
1851
+ msgid "Load DB Option"
1852
+ msgstr "Cargar opción de BD"
1853
+
1854
+ #: templates/debug.php:101
1855
+ msgid "Set DB Option"
1856
+ msgstr "Guardar opción en BD"
1857
+
1858
+ #: templates/debug.php:180
1859
+ msgid "Key"
1860
+ msgstr "Clave"
1861
+
1862
+ #: templates/debug.php:181
1863
+ msgid "Value"
1864
+ msgstr "Valor"
1865
+
1866
+ #: templates/debug.php:197
1867
+ msgctxt "as software development kit versions"
1868
+ msgid "SDK Versions"
1869
+ msgstr "Versiones SDK"
1870
+
1871
+ #: templates/debug.php:202
1872
+ msgid "SDK Path"
1873
+ msgstr "Ruta del SDK"
1874
+
1875
+ #: templates/debug.php203, templates/debug.php:242
1876
+ msgid "Module Path"
1877
+ msgstr "Ruta del módulo"
1878
+
1879
+ #: templates/debug.php:204
1880
+ msgid "Is Active"
1881
+ msgstr "Está activo"
1882
+
1883
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1884
+ msgid "Plugins"
1885
+ msgstr "Plugins"
1886
+
1887
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1888
+ msgid "Themes"
1889
+ msgstr "Temas"
1890
+
1891
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1892
+ #: templates/debug/scheduled-crons.php:80
1893
+ msgid "Slug"
1894
+ msgstr "Ruta"
1895
+
1896
+ #: templates/debug.php239, templates/debug.php:453
1897
+ msgid "Title"
1898
+ msgstr "Título"
1899
+
1900
+ #: templates/debug.php:240
1901
+ msgctxt "as application program interface"
1902
+ msgid "API"
1903
+ msgstr "API"
1904
+
1905
+ #: templates/debug.php:241
1906
+ msgid "Freemius State"
1907
+ msgstr "Estado Freemius"
1908
+
1909
+ #: templates/debug.php:245
1910
+ msgid "Network Blog"
1911
+ msgstr "Blog de red"
1912
+
1913
+ #: templates/debug.php:246
1914
+ msgid "Network User"
1915
+ msgstr "Usuario de red"
1916
+
1917
+ #: templates/debug.php:283
1918
+ msgctxt "as connection was successful"
1919
+ msgid "Connected"
1920
+ msgstr "Conectado"
1921
+
1922
+ #: templates/debug.php:284
1923
+ msgctxt "as connection blocked"
1924
+ msgid "Blocked"
1925
+ msgstr "Bloqueado"
1926
+
1927
+ #: templates/debug.php:320
1928
+ msgid "Simulate Trial Promotion"
1929
+ msgstr "Simular período de prueba"
1930
+
1931
+ #: templates/debug.php:332
1932
+ msgid "Simulate Network Upgrade"
1933
+ msgstr "Simular actualización de red"
1934
+
1935
+ #: templates/debug.php:357
1936
+ msgid "%s Installs"
1937
+ msgstr "%s Instalaciones"
1938
+
1939
+ #: templates/debug.php:359
1940
+ msgctxt "like websites"
1941
+ msgid "Sites"
1942
+ msgstr "Sitios"
1943
+
1944
+ #: templates/debug.php365, templates/account/partials/site.php:156
1945
+ msgid "Blog ID"
1946
+ msgstr "ID del blog"
1947
+
1948
+ #: templates/debug.php:370
1949
+ msgid "License ID"
1950
+ msgstr "ID de licencia"
1951
+
1952
+ #: templates/debug.php434, templates/debug.php533,
1953
+ #: templates/account/partials/addon.php:435
1954
+ msgctxt "verb"
1955
+ msgid "Delete"
1956
+ msgstr "Borrar"
1957
+
1958
+ #: templates/debug.php:448
1959
+ msgid "Add Ons of module %s"
1960
+ msgstr "Complementos del módulo %s"
1961
+
1962
+ #: templates/debug.php:500
1963
+ msgid "Users"
1964
+ msgstr "Usuarios"
1965
+
1966
+ #: templates/debug.php:507
1967
+ msgid "Verified"
1968
+ msgstr "Verificado"
1969
+
1970
+ #: templates/debug.php:549
1971
+ msgid "%s Licenses"
1972
+ msgstr "%s Licencias"
1973
+
1974
+ #: templates/debug.php:554
1975
+ msgid "Plugin ID"
1976
+ msgstr "ID del plugin"
1977
+
1978
+ #: templates/debug.php:556
1979
+ msgid "Plan ID"
1980
+ msgstr "ID del plan"
1981
+
1982
+ #: templates/debug.php:557
1983
+ msgid "Quota"
1984
+ msgstr "Cuota"
1985
+
1986
+ #: templates/debug.php:558
1987
+ msgid "Activated"
1988
+ msgstr "Activado"
1989
+
1990
+ #: templates/debug.php:559
1991
+ msgid "Blocking"
1992
+ msgstr "Bloqueando"
1993
+
1994
+ #: templates/debug.php560, templates/debug.php631,
1995
+ #: templates/debug/logger.php:22
1996
+ msgid "Type"
1997
+ msgstr "Tipo"
1998
+
1999
+ #: templates/debug.php:562
2000
+ msgctxt "as expiration date"
2001
+ msgid "Expiration"
2002
+ msgstr "Caducidad"
2003
+
2004
+ #: templates/debug.php:590
2005
+ msgid "Debug Log"
2006
+ msgstr "Log de Debug"
2007
+
2008
+ #: templates/debug.php:594
2009
+ msgid "All Types"
2010
+ msgstr "Todos los Tipos"
2011
+
2012
+ #: templates/debug.php:601
2013
+ msgid "All Requests"
2014
+ msgstr "Todas las peticiones"
2015
+
2016
+ #: templates/debug.php606, templates/debug.php635,
2017
+ #: templates/debug/logger.php:25
2018
+ msgid "File"
2019
+ msgstr "Archivo"
2020
+
2021
+ #: templates/debug.php607, templates/debug.php633,
2022
+ #: templates/debug/logger.php:23
2023
+ msgid "Function"
2024
+ msgstr "Función"
2025
+
2026
+ #: templates/debug.php:608
2027
+ msgid "Process ID"
2028
+ msgstr "ID del proceso"
2029
+
2030
+ #: templates/debug.php:609
2031
+ msgid "Logger"
2032
+ msgstr "Logger"
2033
+
2034
+ #: templates/debug.php610, templates/debug.php634,
2035
+ #: templates/debug/logger.php:24
2036
+ msgid "Message"
2037
+ msgstr "Mensaje"
2038
+
2039
+ #: templates/debug.php:612
2040
+ msgid "Filter"
2041
+ msgstr "Filtro"
2042
+
2043
+ #: templates/debug.php:620
2044
+ msgid "Download"
2045
+ msgstr "Descarga"
2046
+
2047
+ #: templates/debug.php636, templates/debug/logger.php:26
2048
+ msgid "Timestamp"
2049
+ msgstr "Timestamp"
2050
+
2051
+ #: templates/secure-https-header.php:28
2052
+ msgid "Secure HTTPS %s page, running from an external domain"
2053
+ msgstr "Página segura HTTPS %s, desde un dominio externo"
2054
+
2055
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2056
+ #: templates/plugin-info/features.php:43
2057
+ msgid "Support"
2058
+ msgstr "Soporte"
2059
+
2060
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2061
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2062
+ msgctxt "milliseconds"
2063
+ msgid "ms"
2064
+ msgstr "ms"
2065
+
2066
+ #: includes/debug/debug-bar-start.php:41
2067
+ msgid "Freemius API"
2068
+ msgstr "API Freemius"
2069
+
2070
+ #: includes/debug/debug-bar-start.php:42
2071
+ msgid "Requests"
2072
+ msgstr "Peticiones"
2073
+
2074
+ #: templates/account/billing.php:22
2075
+ msgctxt "verb"
2076
+ msgid "Update"
2077
+ msgstr "Actualizar"
2078
+
2079
+ #: templates/account/billing.php:33
2080
+ msgid "Billing"
2081
+ msgstr "Facturación"
2082
+
2083
+ #: templates/account/billing.php38, templates/account/billing.php:38
2084
+ msgid "Business name"
2085
+ msgstr "Nombre de la empresa"
2086
+
2087
+ #: templates/account/billing.php39, templates/account/billing.php:39
2088
+ msgid "Tax / VAT ID"
2089
+ msgstr "Tax / Núm IVA"
2090
+
2091
+ #: templates/account/billing.php42, templates/account/billing.php42,
2092
+ #: templates/account/billing.php43, templates/account/billing.php:43
2093
+ msgid "Address Line %d"
2094
+ msgstr "Línea de la dirección %d"
2095
+
2096
+ #: templates/account/billing.php46, templates/account/billing.php:46
2097
+ msgid "City"
2098
+ msgstr "Ciudad"
2099
+
2100
+ #: templates/account/billing.php46, templates/account/billing.php:46
2101
+ msgid "Town"
2102
+ msgstr "Municipio"
2103
+
2104
+ #: templates/account/billing.php47, templates/account/billing.php:47
2105
+ msgid "ZIP / Postal Code"
2106
+ msgstr "Código postal"
2107
+
2108
+ #: templates/account/billing.php:302
2109
+ msgid "Country"
2110
+ msgstr "País"
2111
+
2112
+ #: templates/account/billing.php:304
2113
+ msgid "Select Country"
2114
+ msgstr "Seleccionar país"
2115
+
2116
+ #: templates/account/billing.php311, templates/account/billing.php:312
2117
+ msgid "State"
2118
+ msgstr "Estado"
2119
+
2120
+ #: templates/account/billing.php311, templates/account/billing.php:312
2121
+ msgid "Province"
2122
+ msgstr "Provincia"
2123
+
2124
+ #: templates/account/payments.php:29
2125
+ msgid "Payments"
2126
+ msgstr "Pagos"
2127
+
2128
+ #: templates/account/payments.php:36
2129
+ msgid "Date"
2130
+ msgstr "Fecha"
2131
+
2132
+ #: templates/account/payments.php:37
2133
+ msgid "Amount"
2134
+ msgstr "Cantidad"
2135
+
2136
+ #: templates/account/payments.php38, templates/account/payments.php:50
2137
+ msgid "Invoice"
2138
+ msgstr "Factura"
2139
+
2140
+ #: templates/debug/api-calls.php:56
2141
+ msgid "API"
2142
+ msgstr "API"
2143
+
2144
+ #: templates/debug/api-calls.php:68
2145
+ msgid "Method"
2146
+ msgstr "Método"
2147
+
2148
+ #: templates/debug/api-calls.php:69
2149
+ msgid "Code"
2150
+ msgstr "Código"
2151
+
2152
+ #: templates/debug/api-calls.php:70
2153
+ msgid "Length"
2154
+ msgstr "Longitud"
2155
+
2156
+ #: templates/debug/api-calls.php:71
2157
+ msgctxt "as file/folder path"
2158
+ msgid "Path"
2159
+ msgstr "Ruta"
2160
+
2161
+ #: templates/debug/api-calls.php:73
2162
+ msgid "Body"
2163
+ msgstr "Cuerpo"
2164
+
2165
+ #: templates/debug/api-calls.php:75
2166
+ msgid "Result"
2167
+ msgstr "Resultado"
2168
+
2169
+ #: templates/debug/api-calls.php:76
2170
+ msgid "Start"
2171
+ msgstr "Inicio"
2172
+
2173
+ #: templates/debug/api-calls.php:77
2174
+ msgid "End"
2175
+ msgstr "Fin"
2176
+
2177
+ #: templates/debug/logger.php:15
2178
+ msgid "Log"
2179
+ msgstr "Log"
2180
+
2181
+ #. translators: %s: time period (e.g. In "2 hours")
2182
+ #: templates/debug/plugins-themes-sync.php18,
2183
+ #: templates/debug/scheduled-crons.php:91
2184
+ msgid "In %s"
2185
+ msgstr "En %s"
2186
+
2187
+ #. translators: %s: time period (e.g. "2 hours" ago)
2188
+ #: templates/debug/plugins-themes-sync.php20,
2189
+ #: templates/debug/scheduled-crons.php:93
2190
+ msgid "%s ago"
2191
+ msgstr "hace %s"
2192
+
2193
+ #: templates/debug/plugins-themes-sync.php21,
2194
+ #: templates/debug/scheduled-crons.php:74
2195
+ msgctxt "seconds"
2196
+ msgid "sec"
2197
+ msgstr "seg"
2198
+
2199
+ #: templates/debug/plugins-themes-sync.php:23
2200
+ msgid "Plugins & Themes Sync"
2201
+ msgstr "Sincronizar plugins y temas"
2202
+
2203
+ #: templates/debug/plugins-themes-sync.php:28
2204
+ msgid "Total"
2205
+ msgstr "Total"
2206
+
2207
+ #: templates/debug/plugins-themes-sync.php29,
2208
+ #: templates/debug/scheduled-crons.php:84
2209
+ msgid "Last"
2210
+ msgstr "Último"
2211
+
2212
+ #: templates/debug/scheduled-crons.php:76
2213
+ msgid "Scheduled Crons"
2214
+ msgstr "Crons programados"
2215
+
2216
+ #: templates/debug/scheduled-crons.php:81
2217
+ msgid "Module"
2218
+ msgstr "Módulo"
2219
+
2220
+ #: templates/debug/scheduled-crons.php:82
2221
+ msgid "Module Type"
2222
+ msgstr "Tipo de módulo"
2223
+
2224
+ #: templates/debug/scheduled-crons.php:83
2225
+ msgid "Cron Type"
2226
+ msgstr "Tipo de cron"
2227
+
2228
+ #: templates/debug/scheduled-crons.php:85
2229
+ msgid "Next"
2230
+ msgstr "Siguiente"
2231
+
2232
+ #: templates/forms/affiliation.php:82
2233
+ msgid "Non-expiring"
2234
+ msgstr "Sin caducidad"
2235
+
2236
+ #: templates/forms/affiliation.php:85
2237
+ msgid "Apply to become an affiliate"
2238
+ msgstr "Aceptar para hacerse afiliado"
2239
+
2240
+ #: templates/forms/affiliation.php:107
2241
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2242
+ msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s."
2243
+
2244
+ #: templates/forms/affiliation.php:122
2245
+ 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."
2246
+ msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional."
2247
+
2248
+ #: templates/forms/affiliation.php:125
2249
+ msgid "Your affiliation account was temporarily suspended."
2250
+ msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente."
2251
+
2252
+ #: templates/forms/affiliation.php:128
2253
+ 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."
2254
+ msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días."
2255
+
2256
+ #: templates/forms/affiliation.php:131
2257
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2258
+ msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte."
2259
+
2260
+ #: templates/forms/affiliation.php:144
2261
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2262
+ msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)"
2263
+
2264
+ #: templates/forms/affiliation.php:145
2265
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2266
+ msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!"
2267
+
2268
+ #: templates/forms/affiliation.php:148
2269
+ msgid "Program Summary"
2270
+ msgstr "Sumario del programa"
2271
+
2272
+ #: templates/forms/affiliation.php:150
2273
+ msgid "%s commission when a customer purchases a new license."
2274
+ msgstr "%s comisión cuando un cliente compra una nueva licencia."
2275
+
2276
+ #: templates/forms/affiliation.php:152
2277
+ msgid "Get commission for automated subscription renewals."
2278
+ msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones."
2279
+
2280
+ #: templates/forms/affiliation.php:155
2281
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2282
+ msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales."
2283
+
2284
+ #: templates/forms/affiliation.php:158
2285
+ msgid "Unlimited commissions."
2286
+ msgstr "Comisiones Ilimitadas"
2287
+
2288
+ #: templates/forms/affiliation.php:160
2289
+ msgid "%s minimum payout amount."
2290
+ msgstr "%s cantidad mínima a pagar."
2291
+
2292
+ #: templates/forms/affiliation.php:161
2293
+ msgid "Payouts are in USD and processed monthly via PayPal."
2294
+ msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal."
2295
+
2296
+ #: templates/forms/affiliation.php:162
2297
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2298
+ msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días."
2299
+
2300
+ #: templates/forms/affiliation.php:165
2301
+ msgid "Affiliate"
2302
+ msgstr "Afiliado"
2303
+
2304
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2305
+ msgid "Email address"
2306
+ msgstr "Dirección de correo electrónico"
2307
+
2308
+ #: templates/forms/affiliation.php:172
2309
+ msgid "Full name"
2310
+ msgstr "Nombre completo"
2311
+
2312
+ #: templates/forms/affiliation.php:176
2313
+ msgid "PayPal account email address"
2314
+ msgstr "Dirección de correo electrónico de PayPal"
2315
+
2316
+ #: templates/forms/affiliation.php:180
2317
+ msgid "Where are you going to promote the %s?"
2318
+ msgstr "¿Dónde vas a promocionar %s?"
2319
+
2320
+ #: templates/forms/affiliation.php:182
2321
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2322
+ msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s."
2323
+
2324
+ #: templates/forms/affiliation.php:184
2325
+ msgid "Add another domain"
2326
+ msgstr "Añadir otro dominio"
2327
+
2328
+ #: templates/forms/affiliation.php:188
2329
+ msgid "Extra Domains"
2330
+ msgstr "Dominios extra"
2331
+
2332
+ #: templates/forms/affiliation.php:189
2333
+ msgid "Extra domains where you will be marketing the product from."
2334
+ msgstr "Dominios extra desde donde promocionarás el producto."
2335
+
2336
+ #: templates/forms/affiliation.php:199
2337
+ msgid "Promotion methods"
2338
+ msgstr "Métodos de promoción"
2339
+
2340
+ #: templates/forms/affiliation.php:202
2341
+ msgid "Social media (Facebook, Twitter, etc.)"
2342
+ msgstr "Social media (Facebook, Twitter, etc.)"
2343
+
2344
+ #: templates/forms/affiliation.php:206
2345
+ msgid "Mobile apps"
2346
+ msgstr "Apps móviles "
2347
+
2348
+ #: templates/forms/affiliation.php:210
2349
+ msgid "Website, email, and social media statistics (optional)"
2350
+ msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)"
2351
+
2352
+ #: templates/forms/affiliation.php:213
2353
+ 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)."
2354
+ msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)"
2355
+
2356
+ #: templates/forms/affiliation.php:217
2357
+ msgid "How will you promote us?"
2358
+ msgstr "¿Como nos promocionarás?"
2359
+
2360
+ #: templates/forms/affiliation.php:220
2361
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2362
+ msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)"
2363
+
2364
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2365
+ msgid "Cancel"
2366
+ msgstr "Cancelar"
2367
+
2368
+ #: templates/forms/affiliation.php:234
2369
+ msgid "Become an affiliate"
2370
+ msgstr "Hacerse afiliado"
2371
+
2372
+ #: templates/forms/data-debug-mode.php:25
2373
+ msgid "Please enter the license key to enable the debug mode:"
2374
+ msgstr "Por favor, introduce la clave de licencia para activar el modo de depuración:"
2375
+
2376
+ #: templates/forms/data-debug-mode.php:27
2377
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2378
+ msgstr "Para entrar en el modo de depuración, introduce la clave secreta del propietario de la licencia (UserID = %d), que puedes encontrar en la sección \"Mi perfil\" de tu panel de control de usuario:"
2379
+
2380
+ #: templates/forms/data-debug-mode.php:32
2381
+ msgid "Submit"
2382
+ msgstr "Enviar"
2383
+
2384
+ #: templates/forms/data-debug-mode.php:36
2385
+ msgid "User key"
2386
+ msgstr "Clave de usuario"
2387
+
2388
+ #: templates/forms/license-activation.php:23
2389
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2390
+ msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:"
2391
+
2392
+ #: templates/forms/license-activation.php:28
2393
+ msgid "Update License"
2394
+ msgstr "Activar licencia"
2395
+
2396
+ #: templates/forms/license-activation.php:41
2397
+ 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."
2398
+ msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia."
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
+ msgid "Associate with the license owner's account."
2402
+ msgstr "Asocia con la cuenta del propietario de la licencia."
2403
+
2404
+ #: templates/forms/optout.php:30
2405
+ msgctxt "verb"
2406
+ msgid "Opt Out"
2407
+ msgstr "Darse de baja"
2408
+
2409
+ #: templates/forms/optout.php:31
2410
+ msgctxt "verb"
2411
+ msgid "Opt In"
2412
+ msgstr "Inscribirse"
2413
+
2414
+ #: templates/forms/optout.php:34
2415
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+ msgstr "La conectividad con el motor de licencias se restableció correctamente. Las actualizaciones automáticas de seguridad y características ahora están disponibles a través del Panel de administración de WP."
2417
+
2418
+ #: templates/forms/optout.php:36
2419
+ msgid "Warning: Opting out will block automatic updates"
2420
+ msgstr "Advertencia: Si se opta por no participar, se bloquearán las actualizaciones automáticas"
2421
+
2422
+ #: templates/forms/optout.php:37
2423
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+ msgstr "La conectividad continua con el motor de licencias es esencial para recibir actualizaciones automáticas de seguridad y características del producto de pago. Para recibir estas actualizaciones, datos como su clave de licencia, la versión %1$s y la versión de WordPress, se envían periódicamente al servidor para buscar actualizaciones. Al optar por no participar, entiendes que tu sitio no recibirá actualizaciones automáticas por %2$s desde el Panel de administración de WP. Esto puede poner su sitio en riesgo, y le recomendamos encarecidamente que mantenga esta conexión activa. Si opta por no participar, deberá comprobar si hay actualizaciones de %1$s e instalarlas manualmente."
2425
+
2426
+ #: templates/forms/optout.php:39
2427
+ msgid "I'd like to keep automatic updates"
2428
+ msgstr "Me gustaría mantener actualizaciones automáticas"
2429
+
2430
+ #: templates/forms/optout.php:44
2431
+ 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."
2432
+ msgstr "El uso del seguimiento se hace con la intención de mejorar %s. Crear una mejor experiencia de usuario, priorizando nuevas características y cosas mejores. Realmente apreciaríamos que considerases permitirnos continuar con el seguimiento."
2433
+
2434
+ #: templates/forms/optout.php:45
2435
+ msgid "On second thought - I want to continue helping"
2436
+ msgstr "Pensándolo bien - quiero seguir ayudando"
2437
+
2438
+ #: templates/forms/optout.php:49
2439
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2440
+ msgstr "Haciendo clic en \"Desistir\", ya no enviaremos los datos de %s a %s."
2441
+
2442
+ #: templates/forms/optout.php:74
2443
+ msgid "Plugins & themes tracking"
2444
+ msgstr "Rastreo en Plugins y Temas"
2445
+
2446
+ #: templates/forms/optout.php:261
2447
+ msgid "Saved"
2448
+ msgstr "Guardado"
2449
+
2450
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2451
+ msgid "There is a new version of %s available."
2452
+ msgstr "Hay una nueva versión de %s disponible."
2453
+
2454
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2455
+ msgid " %s to access version %s security & feature updates, and support."
2456
+ msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte."
2457
+
2458
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2459
+ msgid "New Version Available"
2460
+ msgstr "Nueva versión disponible"
2461
+
2462
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2463
+ msgctxt "close a window"
2464
+ msgid "Dismiss"
2465
+ msgstr "Descartar"
2466
+
2467
+ #: templates/forms/resend-key.php:21
2468
+ msgid "Send License Key"
2469
+ msgstr "Enviar clave de licencia"
2470
+
2471
+ #: templates/forms/resend-key.php:57
2472
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2473
+ msgstr "Escribe abajo la dirección de correo electrónico que has usado para la actualización y te reenviaremos la clave de licencia."
2474
+
2475
+ #: templates/forms/subscription-cancellation.php:37
2476
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2477
+ msgstr "Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que podrás usar en otro sitio."
2478
+
2479
+ #: templates/forms/subscription-cancellation.php:47
2480
+ 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?"
2481
+ msgstr "En caso de que NO estés planeando utilizar este %s en este sitio (o en cualquier otro sitio), ¿te gustaría cancelar también %s?"
2482
+
2483
+ #: templates/forms/subscription-cancellation.php:52
2484
+ msgid "license"
2485
+ msgstr "licencia"
2486
+
2487
+ #: templates/forms/subscription-cancellation.php:57
2488
+ 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."
2489
+ msgstr "Cancelar %s - No necesito más actualizaciones de características y seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro sitio."
2490
+
2491
+ #: templates/forms/subscription-cancellation.php:68
2492
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2493
+ msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte."
2494
+
2495
+ #: templates/forms/subscription-cancellation.php:103
2496
+ 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."
2497
+ msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida."
2498
+
2499
+ #: templates/forms/subscription-cancellation.php:136
2500
+ msgid "Cancel %s?"
2501
+ msgstr "¿Cancelar %s?"
2502
+
2503
+ #: templates/forms/subscription-cancellation.php:143
2504
+ msgid "Proceed"
2505
+ msgstr "Proceder"
2506
+
2507
+ #: templates/forms/subscription-cancellation.php191,
2508
+ #: templates/forms/deactivation/form.php:171
2509
+ msgid "Cancel %s & Proceed"
2510
+ msgstr "Cancelar %s y proceder"
2511
+
2512
+ #: templates/forms/trial-start.php:22
2513
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2514
+ msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan %2$s."
2515
+
2516
+ #: templates/forms/trial-start.php:28
2517
+ 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."
2518
+ msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba."
2519
+
2520
+ #: templates/forms/user-change.php:26
2521
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2522
+ msgstr "Al cambiar al usuario, usted acepta transferir la propiedad de la cuenta a:"
2523
+
2524
+ #: templates/forms/user-change.php:28
2525
+ msgid "I Agree - Change User"
2526
+ msgstr "Estoy de acuerdo - Cambiar usuario"
2527
+
2528
+ #: templates/forms/user-change.php:30
2529
+ msgid "Enter email address"
2530
+ msgstr "Introduce el correo electrónico"
2531
+
2532
+ #: templates/forms/user-change.php:81
2533
+ msgctxt "close window"
2534
+ msgid "Dismiss"
2535
+ msgstr "Descartar"
2536
+
2537
+ #: templates/js/style-premium-theme.php:39
2538
+ msgid "Premium"
2539
+ msgstr "Premium"
2540
+
2541
+ #: templates/js/style-premium-theme.php:42
2542
+ msgid "Beta"
2543
+ msgstr "Beta"
2544
+
2545
+ #: templates/partials/network-activation.php:27
2546
+ msgid "Activate license on all sites in the network."
2547
+ msgstr "Activar licencia en todos los sitios de la red"
2548
+
2549
+ #: templates/partials/network-activation.php:28
2550
+ msgid "Apply on all sites in the network."
2551
+ msgstr "Aplicar en todos los sitios de la red"
2552
+
2553
+ #: templates/partials/network-activation.php:31
2554
+ msgid "Activate license on all pending sites."
2555
+ msgstr "Aplicar licencia en todos los sitios pendientes"
2556
+
2557
+ #: templates/partials/network-activation.php:32
2558
+ msgid "Apply on all pending sites."
2559
+ msgstr "Aplicar en todos los sitios pendientes"
2560
+
2561
+ #: templates/partials/network-activation.php40,
2562
+ #: templates/partials/network-activation.php:74
2563
+ msgid "allow"
2564
+ msgstr "permitir"
2565
+
2566
+ #: templates/partials/network-activation.php43,
2567
+ #: templates/partials/network-activation.php:77
2568
+ msgid "delegate"
2569
+ msgstr "delegar"
2570
+
2571
+ #: templates/partials/network-activation.php47,
2572
+ #: templates/partials/network-activation.php:81
2573
+ msgid "skip"
2574
+ msgstr "saltar"
2575
+
2576
+ #: templates/plugin-info/description.php72,
2577
+ #: templates/plugin-info/screenshots.php:31
2578
+ msgid "Click to view full-size screenshot %d"
2579
+ msgstr "Click para ver la captura de pantalla a tamaño completo %d"
2580
+
2581
+ #: templates/plugin-info/features.php:56
2582
+ msgid "Unlimited Updates"
2583
+ msgstr "Actualizaciones Ilimitadas"
2584
+
2585
+ #: templates/account/partials/activate-license-button.php:46
2586
+ msgid "Localhost"
2587
+ msgstr "Localhost"
2588
+
2589
+ #: templates/account/partials/activate-license-button.php:50
2590
+ msgctxt "as 5 licenses left"
2591
+ msgid "%s left"
2592
+ msgstr "quedan %s"
2593
+
2594
+ #: templates/account/partials/activate-license-button.php:51
2595
+ msgid "Last license"
2596
+ msgstr "Última licencia"
2597
+
2598
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2599
+ #. subscription'
2600
+ #: templates/account/partials/addon.php:29
2601
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2602
+ msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan caducará en %s."
2603
+
2604
+ #: templates/account/partials/addon.php:185
2605
+ msgid "Cancelled"
2606
+ msgstr "Cancelado"
2607
+
2608
+ #: templates/account/partials/addon.php:195
2609
+ msgid "No expiration"
2610
+ msgstr "Sin caducidad"
2611
+
2612
+ #: templates/account/partials/site.php:189
2613
+ msgid "Owner Name"
2614
+ msgstr "Nombre del propietario"
2615
+
2616
+ #: templates/account/partials/site.php:201
2617
+ msgid "Owner Email"
2618
+ msgstr "Correo electrónico del propietario"
2619
+
2620
+ #: templates/account/partials/site.php:213
2621
+ msgid "Owner ID"
2622
+ msgstr "ID del propietario"
2623
+
2624
+ #: templates/account/partials/site.php:286
2625
+ msgid "Subscription"
2626
+ msgstr "Suscripción"
2627
+
2628
+ #: templates/forms/deactivation/contact.php:19
2629
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2630
+ msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una oportunidad."
2631
+
2632
+ #: templates/forms/deactivation/contact.php:22
2633
+ msgid "Contact Support"
2634
+ msgstr "Contactar soporte"
2635
+
2636
+ #: templates/forms/deactivation/form.php:64
2637
+ msgid "Anonymous feedback"
2638
+ msgstr "Comentarios anónimos"
2639
+
2640
+ #: templates/forms/deactivation/form.php:70
2641
+ msgid "Deactivate"
2642
+ msgstr "Desactivar"
2643
+
2644
+ #: templates/forms/deactivation/form.php:72
2645
+ msgid "Activate %s"
2646
+ msgstr "Activar %s"
2647
+
2648
+ #: templates/forms/deactivation/form.php:87
2649
+ msgid "Quick Feedback"
2650
+ msgstr "Comentarios rápidos"
2651
+
2652
+ #: templates/forms/deactivation/form.php:91
2653
+ msgid "If you have a moment, please let us know why you are %s"
2654
+ msgstr "Si tienes un momento, por favor, dinos por qué estás %s"
2655
+
2656
+ #: templates/forms/deactivation/form.php:91
2657
+ msgid "deactivating"
2658
+ msgstr "desactivando"
2659
+
2660
+ #: templates/forms/deactivation/form.php:91
2661
+ msgid "switching"
2662
+ msgstr "cambiando"
2663
+
2664
+ #: templates/forms/deactivation/form.php:369
2665
+ msgid "Submit & %s"
2666
+ msgstr "Enviar y %s"
2667
+
2668
+ #: templates/forms/deactivation/form.php:390
2669
+ msgid "Kindly tell us the reason so we can improve."
2670
+ msgstr "Por favor, dínos la razón para que podamos mejorar."
2671
+
2672
+ #: templates/forms/deactivation/form.php:515
2673
+ msgid "Yes - %s"
2674
+ msgstr "Si - %s"
2675
+
2676
+ #: templates/forms/deactivation/form.php:522
2677
+ msgid "Skip & %s"
2678
+ msgstr "Saltar y %s"
2679
+
2680
+ #: templates/forms/deactivation/retry-skip.php:21
2681
+ msgid "Click here to use the plugin anonymously"
2682
+ msgstr "Haz click aquí para utilizar el plugin de forma anónima"
2683
+
2684
+ #: templates/forms/deactivation/retry-skip.php:23
2685
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2686
+ msgstr "Es posible que te lo hayas perdido, pero no tienes que compartir ningún dato y puedes solo aceptar %s."
freemius/languages/freemius-fr_FR.po ADDED
@@ -0,0 +1,2685 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Boris Colombier <transifex.com@wba.fr>, 2018
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: 2021-02-03 09:56+0000\n"
11
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
12
+ "Language: fr_FR\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\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.php1919, templates/account.php:912
25
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
26
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
27
+
28
+ #: includes/class-freemius.php:1926
29
+ msgid "Would you like to proceed with the update?"
30
+ msgstr "Would you like to proceed with the update?"
31
+
32
+ #: includes/class-freemius.php:2138
33
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
+ msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur."
35
+
36
+ #: includes/class-freemius.php:2140
37
+ msgid "Error"
38
+ msgstr "Erreur"
39
+
40
+ #: includes/class-freemius.php:2540
41
+ msgid "I found a better %s"
42
+ msgstr "J'ai trouvé un meilleur %s"
43
+
44
+ #: includes/class-freemius.php:2542
45
+ msgid "What's the %s's name?"
46
+ msgstr "Quel est le nom du %s ?"
47
+
48
+ #: includes/class-freemius.php:2548
49
+ msgid "It's a temporary %s. I'm just debugging an issue."
50
+ msgstr "C'est une %s temporaire. Je corrige un problème."
51
+
52
+ #: includes/class-freemius.php:2550
53
+ msgid "Deactivation"
54
+ msgstr "Désactivation"
55
+
56
+ #: includes/class-freemius.php:2551
57
+ msgid "Theme Switch"
58
+ msgstr "Changement de Thème"
59
+
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
+ #: templates/forms/user-change.php:29
62
+ msgid "Other"
63
+ msgstr "Autre"
64
+
65
+ #: includes/class-freemius.php:2568
66
+ msgid "I no longer need the %s"
67
+ msgstr "Je n'ai plus besoin du %s"
68
+
69
+ #: includes/class-freemius.php:2575
70
+ msgid "I only needed the %s for a short period"
71
+ msgstr "Je n'ai besoin de %s que pour une courte période"
72
+
73
+ #: includes/class-freemius.php:2581
74
+ msgid "The %s broke my site"
75
+ msgstr "Le %s a cassé mon site"
76
+
77
+ #: includes/class-freemius.php:2588
78
+ msgid "The %s suddenly stopped working"
79
+ msgstr "Le %s a soudainement arrêté de fonctionner"
80
+
81
+ #: includes/class-freemius.php:2598
82
+ msgid "I can't pay for it anymore"
83
+ msgstr "Je ne peux plus payer pour ça"
84
+
85
+ #: includes/class-freemius.php:2600
86
+ msgid "What price would you feel comfortable paying?"
87
+ msgstr "Quel prix seriez-vous prêt à payer ?"
88
+
89
+ #: includes/class-freemius.php:2606
90
+ msgid "I don't like to share my information with you"
91
+ msgstr "Je ne veux pas partager mes informations avec vous"
92
+
93
+ #: includes/class-freemius.php:2627
94
+ msgid "The %s didn't work"
95
+ msgstr "Le %s n'a pas fonctionné"
96
+
97
+ #: includes/class-freemius.php:2637
98
+ msgid "I couldn't understand how to make it work"
99
+ msgstr "Je ne comprends pas comment le faire fonctionner"
100
+
101
+ #: includes/class-freemius.php:2645
102
+ msgid "The %s is great, but I need specific feature that you don't support"
103
+ msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas"
104
+
105
+ #: includes/class-freemius.php:2647
106
+ msgid "What feature?"
107
+ msgstr "Quelle fonctionnalité ?"
108
+
109
+ #: includes/class-freemius.php:2651
110
+ msgid "The %s is not working"
111
+ msgstr "Le %s ne fonctionne pas"
112
+
113
+ #: includes/class-freemius.php:2653
114
+ msgid "Kindly share what didn't work so we can fix it for future users..."
115
+ msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..."
116
+
117
+ #: includes/class-freemius.php:2657
118
+ msgid "It's not what I was looking for"
119
+ msgstr "Ce n'est pas ce que je recherche"
120
+
121
+ #: includes/class-freemius.php:2659
122
+ msgid "What you've been looking for?"
123
+ msgstr "Que recherchez-vous ?"
124
+
125
+ #: includes/class-freemius.php:2663
126
+ msgid "The %s didn't work as expected"
127
+ msgstr "Le %s n'a pas fonctionné comme prévu"
128
+
129
+ #: includes/class-freemius.php:2665
130
+ msgid "What did you expect?"
131
+ msgstr "À quoi vous attendiez-vous ?"
132
+
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
+ msgid "Freemius Debug"
135
+ msgstr "Débuggage Freemius"
136
+
137
+ #: includes/class-freemius.php:4272
138
+ msgid "I don't know what is cURL or how to install it, help me!"
139
+ msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !"
140
+
141
+ #: includes/class-freemius.php:4274
142
+ 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."
143
+ 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."
144
+
145
+ #: includes/class-freemius.php:4281
146
+ 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."
147
+ 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."
148
+
149
+ #: includes/class-freemius.php:4386
150
+ msgid "Yes - do your thing"
151
+ msgstr "Oui - allez-y"
152
+
153
+ #: includes/class-freemius.php:4391
154
+ msgid "No - just deactivate"
155
+ msgstr "Non - désactivation seulement"
156
+
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
+ msgctxt "exclamation"
166
+ msgid "Oops"
167
+ msgstr "Oups"
168
+
169
+ #: includes/class-freemius.php:4505
170
+ 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."
171
+ 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."
172
+
173
+ #: includes/class-freemius.php:4927
174
+ msgctxt "addonX cannot run without pluginY"
175
+ msgid "%s cannot run without %s."
176
+ msgstr "%s ne peut pas fonctionner sans %s."
177
+
178
+ #: includes/class-freemius.php:4928
179
+ msgctxt "addonX cannot run..."
180
+ msgid "%s cannot run without the plugin."
181
+ msgstr "%s ne peut pas fonctionner sans le plugin."
182
+
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
186
+ msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur."
187
+
188
+ #: includes/class-freemius.php:5857
189
+ msgid "Premium %s version was successfully activated."
190
+ msgstr "La version premium de %s a été activée avec succès."
191
+
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
+ msgctxt ""
194
+ msgid "W00t"
195
+ msgstr "Génial"
196
+
197
+ #: includes/class-freemius.php:5884
198
+ msgid "You have a %s license."
199
+ msgstr "Vous avez une license pour %s."
200
+
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
+ msgctxt "interjection expressing joy or exuberance"
206
+ msgid "Yee-haw"
207
+ msgstr "Youpi"
208
+
209
+ #: includes/class-freemius.php:6174
210
+ 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."
211
+ 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."
212
+
213
+ #: includes/class-freemius.php:6178
214
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
+ msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin."
216
+
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
+ #: templates/account/partials/addon.php:381
219
+ msgid "More information about %s"
220
+ msgstr "Plus d'informations à propos de %s"
221
+
222
+ #: includes/class-freemius.php:6188
223
+ msgid "Purchase License"
224
+ msgstr "Acheter une licence"
225
+
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
+ 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."
228
+ 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."
229
+
230
+ #: includes/class-freemius.php:7129
231
+ msgid "start the trial"
232
+ msgstr "commencer la période d'essai"
233
+
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
+ msgid "complete the install"
236
+ msgstr "compléter l'installation"
237
+
238
+ #: includes/class-freemius.php:7249
239
+ msgid "You are just one step away - %s"
240
+ msgstr "Il ne reste qu'une étape - %s"
241
+
242
+ #: includes/class-freemius.php:7252
243
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
+ msgid "Complete \"%s\" Activation Now"
245
+ msgstr "Compléter \"%s\" Activer Maintenant"
246
+
247
+ #: includes/class-freemius.php:7334
248
+ msgid "We made a few tweaks to the %s, %s"
249
+ msgstr "Nous avons fait quelques modifications au %s, %s"
250
+
251
+ #: includes/class-freemius.php:7338
252
+ msgid "Opt in to make \"%s\" better!"
253
+ msgstr "Inscrivez-vous pour améliorer \"%s\" !"
254
+
255
+ #: includes/class-freemius.php:7773
256
+ msgid "The upgrade of %s was successfully completed."
257
+ msgstr "La mise à jour du %s s'est terminée avec succès "
258
+
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
+ #: templates/auto-installation.php:32
263
+ msgid "Add-On"
264
+ msgstr "Add-On"
265
+
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
+ msgid "Plugin"
269
+ msgstr "Plugin"
270
+
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
+ #: templates/forms/deactivation/form.php:71
274
+ msgid "Theme"
275
+ msgstr "Thème"
276
+
277
+ #: includes/class-freemius.php:13188
278
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+
281
+ #: includes/class-freemius.php:13202
282
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
283
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+
285
+ #: includes/class-freemius.php:13207
286
+ msgid "User Dashboard"
287
+ msgstr "User Dashboard"
288
+
289
+ #: includes/class-freemius.php:13208
290
+ msgid "revert it now"
291
+ msgstr "revert it now"
292
+
293
+ #: includes/class-freemius.php:13266
294
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
295
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
+
297
+ #: includes/class-freemius.php:13339
298
+ msgid "Invalid new user ID or email address."
299
+ msgstr "Invalid new user ID or email address."
300
+
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
+ msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse."
304
+
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
+ msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire"
308
+
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
+ msgid "Change Ownership"
311
+ msgstr "Changement De Propriétaire"
312
+
313
+ #: includes/class-freemius.php:13977
314
+ msgid "Invalid site details collection."
315
+ msgstr "Récupération des détails du site non valide."
316
+
317
+ #: includes/class-freemius.php:14097
318
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
+ msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?"
320
+
321
+ #: includes/class-freemius.php:14099
322
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
+ msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?"
324
+
325
+ #: includes/class-freemius.php:14373
326
+ msgid "Account is pending activation."
327
+ msgstr "Compte en cours d'activation."
328
+
329
+ #: includes/class-freemius.php14485,
330
+ #: templates/forms/premium-versions-upgrade-handler.php:47
331
+ msgid "Buy a license now"
332
+ msgstr "Acheter une licence maintenant"
333
+
334
+ #: includes/class-freemius.php14497,
335
+ #: templates/forms/premium-versions-upgrade-handler.php:46
336
+ msgid "Renew your license now"
337
+ msgstr "Renouvelez votre licence maintenant"
338
+
339
+ #: includes/class-freemius.php:14501
340
+ msgid "%s to access version %s security & feature updates, and support."
341
+ msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support."
342
+
343
+ #: includes/class-freemius.php:16929
344
+ msgid "%s activation was successfully completed."
345
+ msgstr "L'activation de %s s'est terminée avec succès."
346
+
347
+ #: includes/class-freemius.php:16943
348
+ msgid "Your account was successfully activated with the %s plan."
349
+ msgstr "Votre compte a été activé avec succès avec la formule %s."
350
+
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
+ msgid "Your trial has been successfully started."
353
+ msgstr "Votre période d'essai a bien démarré."
354
+
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
+ msgid "Couldn't activate %s."
358
+ msgstr "Impossible d'activer %s."
359
+
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
+ msgid "Please contact us with the following message:"
363
+ msgstr "Merci de nous contacter avec le message suivant :"
364
+
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
+ msgid "An unknown error has occurred."
367
+ msgstr "An unknown error has occurred."
368
+
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
+ msgid "Upgrade"
371
+ msgstr "Mise à jour"
372
+
373
+ #: includes/class-freemius.php:18184
374
+ msgid "Start Trial"
375
+ msgstr "Essai gratuit"
376
+
377
+ #: includes/class-freemius.php:18186
378
+ msgid "Pricing"
379
+ msgstr "Tarifs"
380
+
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
+ msgid "Affiliation"
383
+ msgstr "Affiliation"
384
+
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
+ msgid "Account"
388
+ msgstr "Compte"
389
+
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
+ #: includes/customizer/class-fs-customizer-support-section.php:60
392
+ msgid "Contact Us"
393
+ msgstr "Contactez Nous"
394
+
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
+ #: templates/account/partials/addon.php:44
398
+ msgid "Add-Ons"
399
+ msgstr "Add-Ons"
400
+
401
+ #: includes/class-freemius.php:18361
402
+ msgctxt "ASCII arrow left icon"
403
+ msgid "&#x2190;"
404
+ msgstr "&#x2190;"
405
+
406
+ #: includes/class-freemius.php:18361
407
+ msgctxt "ASCII arrow right icon"
408
+ msgid "&#x27a4;"
409
+ msgstr "&#x27a4;"
410
+
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
+ msgctxt "noun"
413
+ msgid "Pricing"
414
+ msgstr "Tarifs"
415
+
416
+ #: includes/class-freemius.php18576,
417
+ #: includes/customizer/class-fs-customizer-support-section.php:67
418
+ msgid "Support Forum"
419
+ msgstr "Forum de Support"
420
+
421
+ #: includes/class-freemius.php:19550
422
+ msgid "Your email has been successfully verified - you are AWESOME!"
423
+ msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !"
424
+
425
+ #: includes/class-freemius.php:19551
426
+ msgctxt "a positive response"
427
+ msgid "Right on"
428
+ msgstr "Directement"
429
+
430
+ #: includes/class-freemius.php:20057
431
+ msgid "seems like the key you entered doesn't match our records."
432
+ msgstr "seems like the key you entered doesn't match our records."
433
+
434
+ #: includes/class-freemius.php:20081
435
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
436
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+
438
+ #: includes/class-freemius.php:20316
439
+ msgid "Your %s Add-on plan was successfully upgraded."
440
+ msgstr "Votre Add-on %s a bien été mis à jour."
441
+
442
+ #: includes/class-freemius.php:20318
443
+ msgid "%s Add-on was successfully purchased."
444
+ msgstr "L'Add-on %s a bien été acheté."
445
+
446
+ #: includes/class-freemius.php:20321
447
+ msgid "Download the latest version"
448
+ msgstr "Télécharger la dernière version"
449
+
450
+ #: includes/class-freemius.php:20407
451
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
452
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
453
+
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
+ msgid "Error received from the server:"
457
+ msgstr "Une erreur a été reçu depuis le serveur :"
458
+
459
+ #: includes/class-freemius.php:20423
460
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
+ 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."
462
+
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
+ msgctxt ""
466
+ msgid "Hmm"
467
+ msgstr "Hmm"
468
+
469
+ #: includes/class-freemius.php:20664
470
+ 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."
471
+ 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é."
472
+
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
+ msgctxt "trial period"
476
+ msgid "Trial"
477
+ msgstr "Période d'essai"
478
+
479
+ #: includes/class-freemius.php:20670
480
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
+ msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s."
482
+
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
+ msgid "Please contact us here"
485
+ msgstr "Merci de nous contacter ici"
486
+
487
+ #: includes/class-freemius.php:20685
488
+ msgid "Your plan was successfully activated."
489
+ msgstr "Your plan was successfully activated."
490
+
491
+ #: includes/class-freemius.php:20686
492
+ msgid "Your plan was successfully upgraded."
493
+ msgstr "Votre formule a bien été mise à jour."
494
+
495
+ #: includes/class-freemius.php:20703
496
+ msgid "Your plan was successfully changed to %s."
497
+ msgstr "Votre formule a bien été modifié vers %s. "
498
+
499
+ #: includes/class-freemius.php:20719
500
+ msgid "Your license has expired. You can still continue using the free %s forever."
501
+ msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment."
502
+
503
+ #: includes/class-freemius.php:20721
504
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
+ msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption."
506
+
507
+ #: includes/class-freemius.php:20729
508
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
+ msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support."
510
+
511
+ #: includes/class-freemius.php:20742
512
+ 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."
513
+ 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."
514
+
515
+ #: includes/class-freemius.php:20768
516
+ msgid "Your free trial has expired. You can still continue using all our free features."
517
+ msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites."
518
+
519
+ #: includes/class-freemius.php:20770
520
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
+ 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."
522
+
523
+ #: includes/class-freemius.php:20885
524
+ msgid "It looks like the license could not be activated."
525
+ msgstr "Il semble que la licence ne puisse être activée."
526
+
527
+ #: includes/class-freemius.php:20927
528
+ msgid "Your license was successfully activated."
529
+ msgstr "Votre licence a bien été activée."
530
+
531
+ #: includes/class-freemius.php:20953
532
+ msgid "It looks like your site currently doesn't have an active license."
533
+ msgstr "Il semble que votre site n'ait pas de licence active."
534
+
535
+ #: includes/class-freemius.php:20977
536
+ msgid "It looks like the license deactivation failed."
537
+ msgstr "Il semble que la désactivation de la licence a échoué."
538
+
539
+ #: includes/class-freemius.php:21006
540
+ msgid "Your %s license was successfully deactivated."
541
+ msgstr "Your %s license was successfully deactivated."
542
+
543
+ #: includes/class-freemius.php:21007
544
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
545
+ msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s."
546
+
547
+ #: includes/class-freemius.php:21010
548
+ msgid "O.K"
549
+ msgstr "O.K"
550
+
551
+ #: includes/class-freemius.php:21063
552
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
+ msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes."
554
+
555
+ #: includes/class-freemius.php:21072
556
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
+ msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s."
558
+
559
+ #: includes/class-freemius.php:21114
560
+ msgid "You are already running the %s in a trial mode."
561
+ msgstr "Vous utilisez déjà le %s en période d'essai. "
562
+
563
+ #: includes/class-freemius.php:21125
564
+ msgid "You already utilized a trial before."
565
+ msgstr "Vous avez déjà utilisé la période d'essai."
566
+
567
+ #: includes/class-freemius.php:21139
568
+ msgid "Plan %s do not exist, therefore, can't start a trial."
569
+ msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai."
570
+
571
+ #: includes/class-freemius.php:21150
572
+ msgid "Plan %s does not support a trial period."
573
+ msgstr "La formule %s ne propose pas de période d'essai."
574
+
575
+ #: includes/class-freemius.php:21161
576
+ msgid "None of the %s's plans supports a trial period."
577
+ msgstr "Aucune formule du %s ne propose de période d'essai."
578
+
579
+ #: includes/class-freemius.php:21211
580
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
+ msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)"
582
+
583
+ #: includes/class-freemius.php:21247
584
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
+ msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes."
586
+
587
+ #: includes/class-freemius.php:21266
588
+ msgid "Your %s free trial was successfully cancelled."
589
+ msgstr "Votre période d'essai %s a bien été annulé."
590
+
591
+ #: includes/class-freemius.php:21582
592
+ msgid "Version %s was released."
593
+ msgstr "La version %s vient d'être publiée."
594
+
595
+ #: includes/class-freemius.php:21582
596
+ msgid "Please download %s."
597
+ msgstr "Merci de télécharger %s."
598
+
599
+ #: includes/class-freemius.php:21589
600
+ msgid "the latest %s version here"
601
+ msgstr "la dernière version de %s ici"
602
+
603
+ #: includes/class-freemius.php:21594
604
+ msgid "New"
605
+ msgstr "Nouveau"
606
+
607
+ #: includes/class-freemius.php:21599
608
+ msgid "Seems like you got the latest release."
609
+ msgstr "Il semble que vous ayez la dernière version."
610
+
611
+ #: includes/class-freemius.php:21600
612
+ msgid "You are all good!"
613
+ msgstr "Vous êtes tout bon !"
614
+
615
+ #: includes/class-freemius.php:21903
616
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
+ 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."
618
+
619
+ #: includes/class-freemius.php:22043
620
+ msgid "Site successfully opted in."
621
+ msgstr "Site ajouté avec succès."
622
+
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
+ msgid "Awesome"
625
+ msgstr "Formidable"
626
+
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
+ msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage."
630
+
631
+ #: includes/class-freemius.php:22061
632
+ msgid "Thank you!"
633
+ msgstr "Merci !"
634
+
635
+ #: includes/class-freemius.php:22068
636
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
637
+ msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s."
638
+
639
+ #: includes/class-freemius.php:22226
640
+ 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."
641
+ 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."
642
+
643
+ #: includes/class-freemius.php:22232
644
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
+ msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale."
646
+
647
+ #: includes/class-freemius.php:22237
648
+ msgid "%s is the new owner of the account."
649
+ msgstr "%s est le nouveau propriétaire du compte."
650
+
651
+ #: includes/class-freemius.php:22239
652
+ msgctxt "as congratulations"
653
+ msgid "Congrats"
654
+ msgstr "Félicitations"
655
+
656
+ #: includes/class-freemius.php:22275
657
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
+ msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation."
659
+
660
+ #: includes/class-freemius.php:22287
661
+ msgid "Please provide your full name."
662
+ msgstr "Merci d'indiquer vos prénom et nom."
663
+
664
+ #: includes/class-freemius.php:22292
665
+ msgid "Your name was successfully updated."
666
+ msgstr "Votre nom a été mis à jour."
667
+
668
+ #: includes/class-freemius.php:22353
669
+ msgid "You have successfully updated your %s."
670
+ msgstr "Votre %s a bien été mis à jour."
671
+
672
+ #: includes/class-freemius.php:22412
673
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
674
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+
676
+ #: includes/class-freemius.php:22415
677
+ msgid "Click here"
678
+ msgstr "Click here"
679
+
680
+ #: includes/class-freemius.php:22513
681
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
+ msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe."
683
+
684
+ #: includes/class-freemius.php:22514
685
+ msgctxt "advance notice of something that will need attention."
686
+ msgid "Heads up"
687
+ msgstr "Avertissement"
688
+
689
+ #: includes/class-freemius.php:23090
690
+ msgctxt "exclamation"
691
+ msgid "Hey"
692
+ msgstr "Hey"
693
+
694
+ #: includes/class-freemius.php:23090
695
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
+ msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit."
697
+
698
+ #: includes/class-freemius.php:23098
699
+ msgid "No commitment for %s days - cancel anytime!"
700
+ msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !"
701
+
702
+ #: includes/class-freemius.php:23099
703
+ msgid "No credit card required"
704
+ msgstr "Pas besoin de carte bancaire"
705
+
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
+ msgctxt "call to action"
708
+ msgid "Start free trial"
709
+ msgstr "Commencer l'essai gratuit"
710
+
711
+ #: includes/class-freemius.php:23183
712
+ 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!"
713
+ 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 !"
714
+
715
+ #: includes/class-freemius.php:23192
716
+ msgid "Learn more"
717
+ msgstr "En savoir plus"
718
+
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
+ #: templates/account/partials/addon.php:321
723
+ msgid "Activate License"
724
+ msgstr "Activer la licence"
725
+
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
+ #: templates/account/partials/site.php:271
729
+ msgid "Change License"
730
+ msgstr "Changer la licence"
731
+
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
+ msgid "Opt Out"
734
+ msgstr "Désinscription"
735
+
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
+ #: templates/account/partials/site.php49,
738
+ #: templates/account/partials/site.php:169
739
+ msgid "Opt In"
740
+ msgstr "Inscription"
741
+
742
+ #: includes/class-freemius.php:23738
743
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
+
746
+ #: includes/class-freemius.php:23746
747
+ msgid "Activate %s features"
748
+ msgstr "Activer les fonctionnalités %s"
749
+
750
+ #: includes/class-freemius.php:23759
751
+ msgid "Please follow these steps to complete the upgrade"
752
+ msgstr "Merci de suivre ces étapes pour finaliser la mise à jour"
753
+
754
+ #: includes/class-freemius.php:23763
755
+ msgid "Download the latest %s version"
756
+ msgstr "Télécharger la dernière version %s"
757
+
758
+ #: includes/class-freemius.php:23767
759
+ msgid "Upload and activate the downloaded version"
760
+ msgstr "Téléverser et activer la version téléchargée"
761
+
762
+ #: includes/class-freemius.php:23769
763
+ msgid "How to upload and activate?"
764
+ msgstr "Comment téléverser et activer ?"
765
+
766
+ #: includes/class-freemius.php:23903
767
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
+ msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence."
769
+
770
+ #: includes/class-freemius.php:24072
771
+ msgid "Auto installation only works for opted-in users."
772
+ msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits."
773
+
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
+ msgid "Invalid module ID."
778
+ msgstr "ID du module non valide."
779
+
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
+ msgid "Premium version already active."
782
+ msgstr "Version premium déjà active."
783
+
784
+ #: includes/class-freemius.php:24098
785
+ msgid "You do not have a valid license to access the premium version."
786
+ msgstr "Vous n'avez pas de licence valide pour accéder à la version premium."
787
+
788
+ #: includes/class-freemius.php:24105
789
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
+ msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code."
791
+
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
+ msgid "Premium add-on version already installed."
794
+ msgstr "La version premium de l'add-on est déjà installée."
795
+
796
+ #: includes/class-freemius.php:24473
797
+ msgid "View paid features"
798
+ msgstr "Voir les fonctionnalités payantes"
799
+
800
+ #: includes/class-freemius.php:24795
801
+ msgid "Thank you so much for using %s and its add-ons!"
802
+ msgstr "Merci beaucoup d'utiliser %s et ses add-ons !"
803
+
804
+ #: includes/class-freemius.php:24796
805
+ msgid "Thank you so much for using %s!"
806
+ msgstr "Merci beaucoup d'utiliser %s !"
807
+
808
+ #: includes/class-freemius.php:24802
809
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
+ msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s."
811
+
812
+ #: includes/class-freemius.php:24806
813
+ msgid "Thank you so much for using our products!"
814
+ msgstr "Merci beaucoup d'utiliser nos produits !"
815
+
816
+ #: includes/class-freemius.php:24807
817
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
+ msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer."
819
+
820
+ #: includes/class-freemius.php:24826
821
+ msgid "%s and its add-ons"
822
+ msgstr "%s et ses add-ons"
823
+
824
+ #: includes/class-freemius.php:24835
825
+ msgid "Products"
826
+ msgstr "Produits"
827
+
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
+ msgid "Yes"
830
+ msgstr "Oui"
831
+
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
+ msgid "send me security & feature updates, educational content and offers."
834
+ msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres."
835
+
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
+ msgid "No"
838
+ msgstr "Non"
839
+
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
+ msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre."
843
+
844
+ #: includes/class-freemius.php:24856
845
+ 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 :-)"
846
+ 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 :-)"
847
+
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
+ 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 :"
851
+
852
+ #: includes/class-freemius.php:25140
853
+ msgid "License key is empty."
854
+ msgstr "La clé de licence est vide."
855
+
856
+ #: includes/class-fs-plugin-updater.php206,
857
+ #: templates/forms/premium-versions-upgrade-handler.php:57
858
+ msgid "Renew license"
859
+ msgstr "Renouvelez votre licence"
860
+
861
+ #: includes/class-fs-plugin-updater.php211,
862
+ #: templates/forms/premium-versions-upgrade-handler.php:58
863
+ msgid "Buy license"
864
+ msgstr "Acheter une licence"
865
+
866
+ #: includes/class-fs-plugin-updater.php327,
867
+ #: includes/class-fs-plugin-updater.php:360
868
+ msgid "There is a %s of %s available."
869
+ msgstr "Il y a une %s de %s disponible."
870
+
871
+ #: includes/class-fs-plugin-updater.php329,
872
+ #: includes/class-fs-plugin-updater.php:365
873
+ msgid "new Beta version"
874
+ msgstr "new Beta version"
875
+
876
+ #: includes/class-fs-plugin-updater.php330,
877
+ #: includes/class-fs-plugin-updater.php:366
878
+ msgid "new version"
879
+ msgstr "Nouvelle version"
880
+
881
+ #: includes/class-fs-plugin-updater.php:389
882
+ msgid "Important Upgrade Notice:"
883
+ msgstr "Information importante de mise à jour :"
884
+
885
+ #: includes/class-fs-plugin-updater.php:1326
886
+ msgid "Installing plugin: %s"
887
+ msgstr "Installation du plugin : %s"
888
+
889
+ #: includes/class-fs-plugin-updater.php:1367
890
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
+ msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations."
892
+
893
+ #: includes/class-fs-plugin-updater.php:1549
894
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
+ 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."
896
+
897
+ #: includes/fs-plugin-info-dialog.php:541
898
+ msgid "Purchase More"
899
+ msgstr "Purchase More"
900
+
901
+ #: includes/fs-plugin-info-dialog.php542,
902
+ #: templates/account/partials/addon.php:385
903
+ msgctxt "verb"
904
+ msgid "Purchase"
905
+ msgstr "Acheter"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:546
908
+ msgid "Start my free %s"
909
+ msgstr "Commencer ma %s gratuite"
910
+
911
+ #: includes/fs-plugin-info-dialog.php:744
912
+ msgid "Install Free Version Update Now"
913
+ msgstr "Installer la dernière mise à jour gratuite maintenant"
914
+
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
+ msgid "Install Update Now"
917
+ msgstr "Installer la mise à jour maintenant"
918
+
919
+ #: includes/fs-plugin-info-dialog.php:754
920
+ msgid "Install Free Version Now"
921
+ msgstr "Installer la version gratuite maintenant"
922
+
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
+ #: templates/auto-installation.php111,
925
+ #: templates/account/partials/addon.php365,
926
+ #: templates/account/partials/addon.php:418
927
+ msgid "Install Now"
928
+ msgstr "Installer maintenant"
929
+
930
+ #: includes/fs-plugin-info-dialog.php:771
931
+ msgctxt "as download latest version"
932
+ msgid "Download Latest Free Version"
933
+ msgstr "Télécharger la dernière version gratuite"
934
+
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
+ msgctxt "as download latest version"
938
+ msgid "Download Latest"
939
+ msgstr "Télécharger la dernière version"
940
+
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
+ #: templates/account/partials/addon.php356,
943
+ #: templates/account/partials/addon.php:412
944
+ msgid "Activate this add-on"
945
+ msgstr "Activer cet add-on"
946
+
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
+ msgid "Activate Free Version"
949
+ msgstr "Activez la version gratuite"
950
+
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
+ msgid "Activate"
954
+ msgstr "Activer"
955
+
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
+ msgctxt "Plugin installer section title"
958
+ msgid "Description"
959
+ msgstr "Description"
960
+
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
+ msgctxt "Plugin installer section title"
963
+ msgid "Installation"
964
+ msgstr "Installation"
965
+
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
+ msgctxt "Plugin installer section title"
968
+ msgid "FAQ"
969
+ msgstr "FAQ"
970
+
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
+ #: templates/plugin-info/description.php:55
973
+ msgid "Screenshots"
974
+ msgstr "Captures d'écran"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
+ msgctxt "Plugin installer section title"
978
+ msgid "Changelog"
979
+ msgstr "Changelog"
980
+
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
+ msgctxt "Plugin installer section title"
983
+ msgid "Reviews"
984
+ msgstr "Commentaires"
985
+
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
+ msgctxt "Plugin installer section title"
988
+ msgid "Other Notes"
989
+ msgstr "Autres Informations"
990
+
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
+ msgctxt "Plugin installer section title"
993
+ msgid "Features & Pricing"
994
+ msgstr "Fonctionnalités & Tarifs"
995
+
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
+ msgid "Plugin Install"
998
+ msgstr "Installation du Plugin"
999
+
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
+ msgctxt "e.g. Professional Plan"
1002
+ msgid "%s Plan"
1003
+ msgstr "Formule %s"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
+ msgctxt "e.g. the best product"
1007
+ msgid "Best"
1008
+ msgstr "Best"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
+ msgctxt "as every month"
1013
+ msgid "Monthly"
1014
+ msgstr "Mensuel"
1015
+
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
+ msgctxt "as once a year"
1018
+ msgid "Annual"
1019
+ msgstr "Annuel"
1020
+
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
+ msgid "Lifetime"
1023
+ msgstr "À vie"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
+ msgctxt "e.g. billed monthly"
1029
+ msgid "Billed %s"
1030
+ msgstr "%s Facturé"
1031
+
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
+ msgctxt "as once a year"
1034
+ msgid "Annually"
1035
+ msgstr "Annuel"
1036
+
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
+ msgctxt "as once a year"
1039
+ msgid "Once"
1040
+ msgstr "Une fois"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
+ msgid "Single Site License"
1044
+ msgstr "Licence 1 site"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
+ msgid "Unlimited Licenses"
1048
+ msgstr "Licences sites illimités"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
+ msgid "Up to %s Sites"
1052
+ msgstr "Jusqu'à %s Sites"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
+ #: templates/plugin-info/features.php:82
1056
+ msgctxt "as monthly period"
1057
+ msgid "mo"
1058
+ msgstr "mois"
1059
+
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
+ #: templates/plugin-info/features.php:80
1062
+ msgctxt "as annual period"
1063
+ msgid "year"
1064
+ msgstr "année"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
+ msgctxt "noun"
1068
+ msgid "Price"
1069
+ msgstr "Tarif"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
+ msgid "Save %s"
1073
+ msgstr "Économisez %s"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
+ msgid "No commitment for %s - cancel anytime"
1077
+ msgstr "Pas d'engagement durant %s - annuler quand vous voulez"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
+ msgid "After your free %s, pay as little as %s"
1081
+ msgstr "Après vos %s gratuits, payez seulement %s"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1314
1084
+ msgid "Details"
1085
+ msgstr "Détails"
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
+ #: templates/account/partials/addon.php:36
1090
+ msgctxt "product version"
1091
+ msgid "Version"
1092
+ msgstr "Version"
1093
+
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
+ msgctxt "as the plugin author"
1096
+ msgid "Author"
1097
+ msgstr "Auteur"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1332
1100
+ msgid "Last Updated"
1101
+ msgstr "Dernière mise à jour"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
+ msgctxt "x-ago"
1105
+ msgid "%s ago"
1106
+ msgstr "Il y a %s"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
+ msgid "Requires WordPress Version"
1110
+ msgstr "Version de WordPress requise"
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
+ msgid "%s or higher"
1114
+ msgstr "%s ou plus"
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
+ msgid "Compatible up to"
1118
+ msgstr "Compatible jusqu'à"
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
+ msgid "Downloaded"
1122
+ msgstr "Téléchargé"
1123
+
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
+ msgid "%s time"
1126
+ msgstr "%s fois"
1127
+
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
+ msgid "%s times"
1130
+ msgstr "%s fois"
1131
+
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
+ msgid "WordPress.org Plugin Page"
1134
+ msgstr "Page WordPress.org du plugin"
1135
+
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
+ msgid "Plugin Homepage"
1138
+ msgstr "Site Web du plugin"
1139
+
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
+ msgid "Donate to this plugin"
1143
+ msgstr "Faire une donation pour ce plugin"
1144
+
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
+ msgid "Average Rating"
1147
+ msgstr "Note moyenne"
1148
+
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
+ msgid "based on %s"
1151
+ msgstr "Basé sur %s"
1152
+
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
+ msgid "%s rating"
1155
+ msgstr "%s notation"
1156
+
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
+ msgid "%s ratings"
1159
+ msgstr "%snotations "
1160
+
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
+ msgid "%s star"
1163
+ msgstr "%s étoile"
1164
+
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
+ msgid "%s stars"
1167
+ msgstr "%s étoiles"
1168
+
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
+ msgid "Click to see reviews that provided a rating of %s"
1171
+ msgstr "Cliquez pour voir les avis avec une notation de %s"
1172
+
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
+ msgid "Contributors"
1175
+ msgstr "Contributeurs"
1176
+
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
+ msgid "Warning"
1180
+ msgstr "Attention"
1181
+
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
+ msgid "This plugin has not been tested with your current version of WordPress."
1184
+ msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress"
1185
+
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
+ msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress"
1189
+
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
+ msgid "Paid add-on must be deployed to Freemius."
1192
+ msgstr "Les add-ons payant doivent être déposés sur Freemius"
1193
+
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
+ msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius."
1197
+
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
+ msgid "Newer Version (%s) Installed"
1200
+ msgstr "Nouvelle Version (%s) Installée"
1201
+
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
+ msgid "Newer Free Version (%s) Installed"
1204
+ msgstr "La nouvelle version gratuite ( %s ) a été installé"
1205
+
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
+ msgid "Latest Version Installed"
1208
+ msgstr "Dernière Version Installée"
1209
+
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
+ msgid "Latest Free Version Installed"
1212
+ msgstr "La dernière version gratuite a été installé"
1213
+
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
+ #: templates/account/partials/addon.php26,
1216
+ #: templates/account/partials/site.php:311
1217
+ msgid "Downgrading your plan"
1218
+ msgstr "Rétrograder votre formule"
1219
+
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
+ #: templates/account/partials/addon.php27,
1222
+ #: templates/account/partials/site.php:312
1223
+ msgid "Cancelling the subscription"
1224
+ msgstr "Annuler votre abonnement"
1225
+
1226
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
+ #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
+ #: templates/account/partials/site.php:314
1230
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
+
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
+ #: templates/account/partials/addon.php30,
1235
+ #: templates/account/partials/site.php:315
1236
+ 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."
1237
+ 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é."
1238
+
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
+ #: templates/account/partials/addon.php:31
1241
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
+ msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?"
1243
+
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
+ #: templates/account/partials/addon.php32,
1246
+ #: templates/account/partials/site.php:316
1247
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
+ 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."
1249
+
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
+ #: templates/account/partials/addon.php33,
1252
+ #: templates/account/partials/site.php:317
1253
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
+ msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s."
1255
+
1256
+ #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
+ #: templates/account/partials/activate-license-button.php31,
1259
+ #: templates/account/partials/addon.php:35
1260
+ msgid "Activate %s Plan"
1261
+ msgstr "Activer la formule %s"
1262
+
1263
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
+ #: templates/account/partials/site.php:291
1266
+ msgid "Auto renews in %s"
1267
+ msgstr "Renouvellements automatique dans %s"
1268
+
1269
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
+ #: templates/account/partials/site.php:293
1272
+ msgid "Expires in %s"
1273
+ msgstr "Expire dans %s"
1274
+
1275
+ #: templates/account.php:117
1276
+ msgctxt "as synchronize license"
1277
+ msgid "Sync License"
1278
+ msgstr "Synchroniser la licence"
1279
+
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
+ msgid "Cancel Trial"
1282
+ msgstr "Annuler la période d'essai"
1283
+
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
+ msgid "Change Plan"
1286
+ msgstr "Changer de formule"
1287
+
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
+ msgctxt "verb"
1290
+ msgid "Upgrade"
1291
+ msgstr "Mise à jour"
1292
+
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
+ #: templates/account/partials/site.php:318
1295
+ msgctxt "verb"
1296
+ msgid "Downgrade"
1297
+ msgstr "Rétrograder"
1298
+
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
+ #: templates/plugin-info/features.php72,
1301
+ #: templates/account/partials/addon.php47,
1302
+ #: templates/account/partials/site.php:33
1303
+ msgid "Free"
1304
+ msgstr "Gratuit"
1305
+
1306
+ #: templates/account.php126, templates/debug.php371,
1307
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
+ #: templates/account/partials/addon.php:49
1309
+ msgctxt "as product pricing plan"
1310
+ msgid "Plan"
1311
+ msgstr "Formule"
1312
+
1313
+ #: templates/account.php:127
1314
+ msgid "Bundle Plan"
1315
+ msgstr "Bundle Plan"
1316
+
1317
+ #: templates/account.php:250
1318
+ msgid "Free Trial"
1319
+ msgstr "Essai gratuit"
1320
+
1321
+ #: templates/account.php:261
1322
+ msgid "Account Details"
1323
+ msgstr "Détails du compte"
1324
+
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
+ msgid "Start Debug"
1327
+ msgstr "Start Debug"
1328
+
1329
+ #: templates/account.php:270
1330
+ msgid "Stop Debug"
1331
+ msgstr "Stop Debug"
1332
+
1333
+ #: templates/account.php:277
1334
+ msgid "Billing & Invoices"
1335
+ msgstr "Billing & Invoices"
1336
+
1337
+ #: templates/account.php:288
1338
+ 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?"
1339
+ msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? "
1340
+
1341
+ #: templates/account.php:290
1342
+ 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?"
1343
+ msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?"
1344
+
1345
+ #: templates/account.php:293
1346
+ msgid "Delete Account"
1347
+ msgstr "Supprimer le compte"
1348
+
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
+ #: templates/account/partials/deactivate-license-button.php:35
1351
+ msgid "Deactivate License"
1352
+ msgstr "Désactiver la licence"
1353
+
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
+ msgid "Are you sure you want to proceed?"
1356
+ msgstr "Êtes-vous de vouloir continuer ?"
1357
+
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
+ msgid "Cancel Subscription"
1360
+ msgstr "Annuler l'abonnement"
1361
+
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
+ msgctxt "as synchronize"
1364
+ msgid "Sync"
1365
+ msgstr "Synchroniser"
1366
+
1367
+ #: templates/account.php372, templates/debug.php:505
1368
+ msgid "Name"
1369
+ msgstr "Nom"
1370
+
1371
+ #: templates/account.php378, templates/debug.php:506
1372
+ msgid "Email"
1373
+ msgstr "Email"
1374
+
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
+ msgid "User ID"
1377
+ msgstr "User ID"
1378
+
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
+ #: templates/debug.php632, templates/account/payments.php35,
1383
+ #: templates/debug/logger.php:21
1384
+ msgid "ID"
1385
+ msgstr "ID"
1386
+
1387
+ #: templates/account.php:410
1388
+ msgid "Site ID"
1389
+ msgstr "Site ID"
1390
+
1391
+ #: templates/account.php:413
1392
+ msgid "No ID"
1393
+ msgstr "ID manquant"
1394
+
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
+ #: templates/debug.php456, templates/debug.php508,
1397
+ #: templates/account/partials/site.php:227
1398
+ msgid "Public Key"
1399
+ msgstr "Clef publique"
1400
+
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
+ #: templates/debug.php509, templates/account/partials/site.php:239
1403
+ msgid "Secret Key"
1404
+ msgstr "Clef secrête"
1405
+
1406
+ #: templates/account.php:427
1407
+ msgctxt "as secret encryption key missing"
1408
+ msgid "No Secret"
1409
+ msgstr "Clef secrète manquante"
1410
+
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
+ #: templates/account/partials/site.php:122
1413
+ msgid "Trial"
1414
+ msgstr "Période d'essai"
1415
+
1416
+ #: templates/account.php481, templates/debug.php561,
1417
+ #: templates/account/partials/site.php:260
1418
+ msgid "License Key"
1419
+ msgstr "Clef de licence"
1420
+
1421
+ #: templates/account.php:512
1422
+ msgid "Join the Beta program"
1423
+ msgstr "Join the Beta program"
1424
+
1425
+ #: templates/account.php:518
1426
+ msgid "not verified"
1427
+ msgstr "Non vérifié"
1428
+
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
+ msgid "Expired"
1431
+ msgstr "Expiré"
1432
+
1433
+ #: templates/account.php:587
1434
+ msgid "Premium version"
1435
+ msgstr "Version premium"
1436
+
1437
+ #: templates/account.php:589
1438
+ msgid "Free version"
1439
+ msgstr "Version gratuite"
1440
+
1441
+ #: templates/account.php:601
1442
+ msgid "Verify Email"
1443
+ msgstr "Vérifier l'email"
1444
+
1445
+ #: templates/account.php:615
1446
+ msgid "Download %s Version"
1447
+ msgstr "Télécharger la version %s"
1448
+
1449
+ #: templates/account.php:631
1450
+ msgid "Download Paid Version"
1451
+ msgstr "Download Paid Version"
1452
+
1453
+ #: templates/account.php649, templates/account.php892,
1454
+ #: templates/account/partials/site.php248,
1455
+ #: templates/account/partials/site.php:270
1456
+ msgctxt "verb"
1457
+ msgid "Show"
1458
+ msgstr "Afficher"
1459
+
1460
+ #: templates/account.php:664
1461
+ msgid "What is your %s?"
1462
+ msgstr "Quel est votre %s ?"
1463
+
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
+ msgctxt "verb"
1466
+ msgid "Edit"
1467
+ msgstr "Éditer"
1468
+
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
+ msgid "Change User"
1471
+ msgstr "Change User"
1472
+
1473
+ #: templates/account.php:700
1474
+ msgid "Sites"
1475
+ msgstr "Sites"
1476
+
1477
+ #: templates/account.php:713
1478
+ msgid "Search by address"
1479
+ msgstr "Recherche par adresse"
1480
+
1481
+ #: templates/account.php722, templates/debug.php:366
1482
+ msgid "Address"
1483
+ msgstr "Adresse"
1484
+
1485
+ #: templates/account.php:723
1486
+ msgid "License"
1487
+ msgstr "Licence"
1488
+
1489
+ #: templates/account.php:724
1490
+ msgid "Plan"
1491
+ msgstr "Formule"
1492
+
1493
+ #: templates/account.php:757
1494
+ msgctxt "as software license"
1495
+ msgid "License"
1496
+ msgstr "Licence"
1497
+
1498
+ #: templates/account.php:886
1499
+ msgctxt "verb"
1500
+ msgid "Hide"
1501
+ msgstr "Cacher"
1502
+
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
+ msgid "Processing"
1505
+ msgstr "Traitement en cours"
1506
+
1507
+ #: templates/account.php:911
1508
+ msgid "Get updates for bleeding edge Beta versions of %s."
1509
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1510
+
1511
+ #: templates/account.php:969
1512
+ msgid "Cancelling %s"
1513
+ msgstr "Annulation de %s"
1514
+
1515
+ #: templates/account.php969, templates/account.php986,
1516
+ #: templates/forms/subscription-cancellation.php27,
1517
+ #: templates/forms/deactivation/form.php:133
1518
+ msgid "trial"
1519
+ msgstr "essai"
1520
+
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
+ msgid "Cancelling %s..."
1523
+ msgstr "Annulation de %s..."
1524
+
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
+ #: templates/forms/deactivation/form.php:134
1527
+ msgid "subscription"
1528
+ msgstr "abonnement"
1529
+
1530
+ #: templates/account.php:1001
1531
+ 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?"
1532
+ msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?"
1533
+
1534
+ #: templates/account.php:1075
1535
+ msgid "Disabling white-label mode"
1536
+ msgstr "Disabling white-label mode"
1537
+
1538
+ #: templates/account.php:1076
1539
+ msgid "Enabling white-label mode"
1540
+ msgstr "Enabling white-label mode"
1541
+
1542
+ #: templates/add-ons.php:38
1543
+ msgid "View details"
1544
+ msgstr "Voir les détails"
1545
+
1546
+ #: templates/add-ons.php:48
1547
+ msgid "Add Ons for %s"
1548
+ msgstr "Add Ons pour %s"
1549
+
1550
+ #: templates/add-ons.php:58
1551
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1552
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+
1554
+ #: templates/add-ons.php:229
1555
+ msgctxt "active add-on"
1556
+ msgid "Active"
1557
+ msgstr "Active"
1558
+
1559
+ #: templates/add-ons.php:230
1560
+ msgctxt "installed add-on"
1561
+ msgid "Installed"
1562
+ msgstr "Installed"
1563
+
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
+ #: templates/forms/resend-key.php:77
1566
+ msgctxt "as close a window"
1567
+ msgid "Dismiss"
1568
+ msgstr "Fermer"
1569
+
1570
+ #: templates/auto-installation.php:45
1571
+ msgid "%s sec"
1572
+ msgstr "%s sec"
1573
+
1574
+ #: templates/auto-installation.php:83
1575
+ msgid "Automatic Installation"
1576
+ msgstr "Installation automatique"
1577
+
1578
+ #: templates/auto-installation.php:93
1579
+ 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."
1580
+ msgstr "Un téléchargement et une installation automatique de %s (version premium) de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez sur le bouton d'annulation maintenant."
1581
+
1582
+ #: templates/auto-installation.php:104
1583
+ 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."
1584
+ msgstr "L'installation a commencé et peut prendre quelques minutes pour se finir. Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas rafraichir cette page."
1585
+
1586
+ #: templates/auto-installation.php:109
1587
+ msgid "Cancel Installation"
1588
+ msgstr "Annuler l'installation"
1589
+
1590
+ #: templates/checkout.php:180
1591
+ msgid "Checkout"
1592
+ msgstr "Paiement"
1593
+
1594
+ #: templates/checkout.php:180
1595
+ msgid "PCI compliant"
1596
+ msgstr "Compatible PCI"
1597
+
1598
+ #. translators: %s: name (e.g. Hey John,)
1599
+ #: templates/connect.php:112
1600
+ msgctxt "greeting"
1601
+ msgid "Hey %s,"
1602
+ msgstr "Hey %s,"
1603
+
1604
+ #: templates/connect.php:162
1605
+ msgid "Allow & Continue"
1606
+ msgstr "Autoriser & Continuer"
1607
+
1608
+ #: templates/connect.php:166
1609
+ msgid "Re-send activation email"
1610
+ msgstr "Renvoyer l'email d'activation"
1611
+
1612
+ #: templates/connect.php:170
1613
+ msgid "Thanks %s!"
1614
+ msgstr "Merci %s !"
1615
+
1616
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1617
+ msgid "Agree & Activate License"
1618
+ msgstr "Valider & Activer la licence"
1619
+
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
+
1624
+ #: templates/connect.php:191
1625
+ 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."
1626
+ msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s."
1627
+
1628
+ #: templates/connect.php:192
1629
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
+ msgstr "Ne manquez jamais une mise à jour importante - optez pour nos notifications de mises à jour de sécurité et de fonctionnalités, et un suivi diagnostique non sensible avec %4$s."
1631
+
1632
+ #: templates/connect.php:198
1633
+ 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."
1634
+ msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités, de contenu instructif, d'offres ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1635
+
1636
+ #: templates/connect.php:199
1637
+ 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."
1638
+ msgstr "Ne ratez jamais une mise à jour importante - acceptez nos notifications de mises à jour de sécurité et de fonctionnalités ainsi que le suivi d'activité non sensible avec %4$s. Dans le cas contraire, pas de problème ! %1$s fonctionnera parfaitement aussi."
1639
+
1640
+ #: templates/connect.php:233
1641
+ msgid "We're excited to introduce the Freemius network-level integration."
1642
+ msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau."
1643
+
1644
+ #: templates/connect.php:236
1645
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
+ msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence."
1647
+
1648
+ #: templates/connect.php:238
1649
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
+ msgstr "Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de licence ci-dessous et de cliquer sur le bouton d'activation."
1651
+
1652
+ #: templates/connect.php:240
1653
+ msgid "%s's paid features"
1654
+ msgstr "Fonctionnalités payantes de %s"
1655
+
1656
+ #: templates/connect.php:245
1657
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
+ msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s."
1659
+
1660
+ #: templates/connect.php:247
1661
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
+ msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier."
1663
+
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
+ #: templates/forms/license-activation.php:49
1666
+ msgid "License key"
1667
+ msgstr "Clef de licence"
1668
+
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
+ msgid "Can't find your license key?"
1671
+ msgstr "Vous ne trouvez pas votre clef de licence ?"
1672
+
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
+ #: templates/forms/deactivation/retry-skip.php:20
1675
+ msgctxt "verb"
1676
+ msgid "Skip"
1677
+ msgstr "Passer"
1678
+
1679
+ #: templates/connect.php:321
1680
+ msgid "Delegate to Site Admins"
1681
+ msgstr "Déléguer aux administrateurs du site"
1682
+
1683
+ #: templates/connect.php:321
1684
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1685
+ msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites."
1686
+
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
+ msgid "Your Profile Overview"
1693
+ msgstr "Résumé de votre profil"
1694
+
1695
+ #: templates/connect.php:363
1696
+ msgid "Name and email address"
1697
+ msgstr "Nom et adresse email"
1698
+
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
+ msgid "Your Site Overview"
1705
+ msgstr "Résumé de votre site"
1706
+
1707
+ #: templates/connect.php:372
1708
+ msgid "Site URL, WP version, PHP info"
1709
+ msgstr "Site URL, WP version, PHP info"
1710
+
1711
+ #: templates/connect.php:379
1712
+ msgid "Admin Notices"
1713
+ msgstr "Notifications Administrateur"
1714
+
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
+ msgid "Updates, announcements, marketing, no spam"
1717
+ msgstr "Mises à jour, annonces, marketing, pas de spam"
1718
+
1719
+ #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
+
1731
+ #: templates/connect.php:397
1732
+ msgid "Newsletter"
1733
+ msgstr "Newsletter"
1734
+
1735
+ #: templates/connect.php:405
1736
+ msgid "Plugins & Themes"
1737
+ msgstr "Plugins & Themes"
1738
+
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
+ msgid "Title, slug, version, and is active"
1749
+ msgstr "Title, slug, version, and is active"
1750
+
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+
1755
+ #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
+ msgid "What permissions are being granted?"
1765
+ msgstr "Quelles autorisations sont accordées ?"
1766
+
1767
+ #: templates/connect.php:457
1768
+ msgid "Don't have a license key?"
1769
+ msgstr "Vous n'avez pas de clef de licence ?"
1770
+
1771
+ #: templates/connect.php:460
1772
+ msgid "Have a license key?"
1773
+ msgstr "Vous avez une clef de licence ?"
1774
+
1775
+ #: templates/connect.php:468
1776
+ msgid "Privacy Policy"
1777
+ msgstr "Politique de confidentialité"
1778
+
1779
+ #: templates/connect.php:470
1780
+ msgid "License Agreement"
1781
+ msgstr "Contrat de licence"
1782
+
1783
+ #: templates/connect.php:470
1784
+ msgid "Terms of Service"
1785
+ msgstr "Conditions générales de service"
1786
+
1787
+ #: templates/connect.php:866
1788
+ msgctxt "as in the process of sending an email"
1789
+ msgid "Sending email"
1790
+ msgstr "Email en cours d'envoi"
1791
+
1792
+ #: templates/connect.php:867
1793
+ msgctxt "as activating plugin"
1794
+ msgid "Activating"
1795
+ msgstr "Activation en cours"
1796
+
1797
+ #: templates/contact.php:78
1798
+ msgid "Contact"
1799
+ msgstr "Contact"
1800
+
1801
+ #: templates/debug.php:17
1802
+ msgctxt "as turned off"
1803
+ msgid "Off"
1804
+ msgstr "Off"
1805
+
1806
+ #: templates/debug.php:18
1807
+ msgctxt "as turned on"
1808
+ msgid "On"
1809
+ msgstr "On"
1810
+
1811
+ #: templates/debug.php:20
1812
+ msgid "SDK"
1813
+ msgstr "SDK"
1814
+
1815
+ #: templates/debug.php:24
1816
+ msgctxt "as code debugging"
1817
+ msgid "Debugging"
1818
+ msgstr "Debuggage"
1819
+
1820
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1821
+ #: templates/debug.php:510
1822
+ msgid "Actions"
1823
+ msgstr "Actions"
1824
+
1825
+ #: templates/debug.php:62
1826
+ msgid "Are you sure you want to delete all Freemius data?"
1827
+ msgstr "Êtes-vous sûr de vouloir supprimer toutes les données de Freemius ?"
1828
+
1829
+ #: templates/debug.php:62
1830
+ msgid "Delete All Accounts"
1831
+ msgstr "Supprimer tous les comptes"
1832
+
1833
+ #: templates/debug.php:69
1834
+ msgid "Clear API Cache"
1835
+ msgstr "Vider le cache API"
1836
+
1837
+ #: templates/debug.php:77
1838
+ msgid "Clear Updates Transients"
1839
+ msgstr "Vider les transients de mise à jour"
1840
+
1841
+ #: templates/debug.php:84
1842
+ msgid "Sync Data From Server"
1843
+ msgstr "Synchronisation des données depuis le serveur"
1844
+
1845
+ #: templates/debug.php:93
1846
+ msgid "Migrate Options to Network"
1847
+ msgstr "Migrer les options vers le réseau"
1848
+
1849
+ #: templates/debug.php:98
1850
+ msgid "Load DB Option"
1851
+ msgstr "Chargement des options de la base de données"
1852
+
1853
+ #: templates/debug.php:101
1854
+ msgid "Set DB Option"
1855
+ msgstr "Mise en place des options de la base de données"
1856
+
1857
+ #: templates/debug.php:180
1858
+ msgid "Key"
1859
+ msgstr "Clef"
1860
+
1861
+ #: templates/debug.php:181
1862
+ msgid "Value"
1863
+ msgstr "Valeur"
1864
+
1865
+ #: templates/debug.php:197
1866
+ msgctxt "as software development kit versions"
1867
+ msgid "SDK Versions"
1868
+ msgstr "Versions du SDK"
1869
+
1870
+ #: templates/debug.php:202
1871
+ msgid "SDK Path"
1872
+ msgstr "Chemin d'accès du SDK"
1873
+
1874
+ #: templates/debug.php203, templates/debug.php:242
1875
+ msgid "Module Path"
1876
+ msgstr "Chemin d'accès du module"
1877
+
1878
+ #: templates/debug.php:204
1879
+ msgid "Is Active"
1880
+ msgstr "Est actif"
1881
+
1882
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1883
+ msgid "Plugins"
1884
+ msgstr "Plugins"
1885
+
1886
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1887
+ msgid "Themes"
1888
+ msgstr "Thèmes"
1889
+
1890
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1891
+ #: templates/debug/scheduled-crons.php:80
1892
+ msgid "Slug"
1893
+ msgstr "Slug"
1894
+
1895
+ #: templates/debug.php239, templates/debug.php:453
1896
+ msgid "Title"
1897
+ msgstr "Titre"
1898
+
1899
+ #: templates/debug.php:240
1900
+ msgctxt "as application program interface"
1901
+ msgid "API"
1902
+ msgstr "API"
1903
+
1904
+ #: templates/debug.php:241
1905
+ msgid "Freemius State"
1906
+ msgstr "État de Freemius"
1907
+
1908
+ #: templates/debug.php:245
1909
+ msgid "Network Blog"
1910
+ msgstr "Réseau de Blog"
1911
+
1912
+ #: templates/debug.php:246
1913
+ msgid "Network User"
1914
+ msgstr "Réseau d'Utilisateur"
1915
+
1916
+ #: templates/debug.php:283
1917
+ msgctxt "as connection was successful"
1918
+ msgid "Connected"
1919
+ msgstr "Connecté"
1920
+
1921
+ #: templates/debug.php:284
1922
+ msgctxt "as connection blocked"
1923
+ msgid "Blocked"
1924
+ msgstr "Bloqué"
1925
+
1926
+ #: templates/debug.php:320
1927
+ msgid "Simulate Trial Promotion"
1928
+ msgstr "Simuler la promotion d'essai"
1929
+
1930
+ #: templates/debug.php:332
1931
+ msgid "Simulate Network Upgrade"
1932
+ msgstr "Simuler la mise à jour du réseau"
1933
+
1934
+ #: templates/debug.php:357
1935
+ msgid "%s Installs"
1936
+ msgstr "%s Installations"
1937
+
1938
+ #: templates/debug.php:359
1939
+ msgctxt "like websites"
1940
+ msgid "Sites"
1941
+ msgstr "Sites"
1942
+
1943
+ #: templates/debug.php365, templates/account/partials/site.php:156
1944
+ msgid "Blog ID"
1945
+ msgstr "Blog ID"
1946
+
1947
+ #: templates/debug.php:370
1948
+ msgid "License ID"
1949
+ msgstr "License ID"
1950
+
1951
+ #: templates/debug.php434, templates/debug.php533,
1952
+ #: templates/account/partials/addon.php:435
1953
+ msgctxt "verb"
1954
+ msgid "Delete"
1955
+ msgstr "Supprimer"
1956
+
1957
+ #: templates/debug.php:448
1958
+ msgid "Add Ons of module %s"
1959
+ msgstr "Add Ons du module %s"
1960
+
1961
+ #: templates/debug.php:500
1962
+ msgid "Users"
1963
+ msgstr "Utilisateurs"
1964
+
1965
+ #: templates/debug.php:507
1966
+ msgid "Verified"
1967
+ msgstr "Vérifié"
1968
+
1969
+ #: templates/debug.php:549
1970
+ msgid "%s Licenses"
1971
+ msgstr "%s Licences"
1972
+
1973
+ #: templates/debug.php:554
1974
+ msgid "Plugin ID"
1975
+ msgstr "ID du plugin"
1976
+
1977
+ #: templates/debug.php:556
1978
+ msgid "Plan ID"
1979
+ msgstr "ID de la formule"
1980
+
1981
+ #: templates/debug.php:557
1982
+ msgid "Quota"
1983
+ msgstr "Quota"
1984
+
1985
+ #: templates/debug.php:558
1986
+ msgid "Activated"
1987
+ msgstr "Activé"
1988
+
1989
+ #: templates/debug.php:559
1990
+ msgid "Blocking"
1991
+ msgstr "Bloquant"
1992
+
1993
+ #: templates/debug.php560, templates/debug.php631,
1994
+ #: templates/debug/logger.php:22
1995
+ msgid "Type"
1996
+ msgstr "Type"
1997
+
1998
+ #: templates/debug.php:562
1999
+ msgctxt "as expiration date"
2000
+ msgid "Expiration"
2001
+ msgstr "Expiration"
2002
+
2003
+ #: templates/debug.php:590
2004
+ msgid "Debug Log"
2005
+ msgstr "Debug Log"
2006
+
2007
+ #: templates/debug.php:594
2008
+ msgid "All Types"
2009
+ msgstr "Tous les types"
2010
+
2011
+ #: templates/debug.php:601
2012
+ msgid "All Requests"
2013
+ msgstr "Toutes les demandes"
2014
+
2015
+ #: templates/debug.php606, templates/debug.php635,
2016
+ #: templates/debug/logger.php:25
2017
+ msgid "File"
2018
+ msgstr "Fichier"
2019
+
2020
+ #: templates/debug.php607, templates/debug.php633,
2021
+ #: templates/debug/logger.php:23
2022
+ msgid "Function"
2023
+ msgstr "Fonction"
2024
+
2025
+ #: templates/debug.php:608
2026
+ msgid "Process ID"
2027
+ msgstr "ID du processus"
2028
+
2029
+ #: templates/debug.php:609
2030
+ msgid "Logger"
2031
+ msgstr "Logger"
2032
+
2033
+ #: templates/debug.php610, templates/debug.php634,
2034
+ #: templates/debug/logger.php:24
2035
+ msgid "Message"
2036
+ msgstr "Message"
2037
+
2038
+ #: templates/debug.php:612
2039
+ msgid "Filter"
2040
+ msgstr "Filter"
2041
+
2042
+ #: templates/debug.php:620
2043
+ msgid "Download"
2044
+ msgstr "Téléchargement"
2045
+
2046
+ #: templates/debug.php636, templates/debug/logger.php:26
2047
+ msgid "Timestamp"
2048
+ msgstr "Timestamp"
2049
+
2050
+ #: templates/secure-https-header.php:28
2051
+ msgid "Secure HTTPS %s page, running from an external domain"
2052
+ msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe"
2053
+
2054
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2055
+ #: templates/plugin-info/features.php:43
2056
+ msgid "Support"
2057
+ msgstr "Support"
2058
+
2059
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2060
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2061
+ msgctxt "milliseconds"
2062
+ msgid "ms"
2063
+ msgstr "ms"
2064
+
2065
+ #: includes/debug/debug-bar-start.php:41
2066
+ msgid "Freemius API"
2067
+ msgstr "API Freemius"
2068
+
2069
+ #: includes/debug/debug-bar-start.php:42
2070
+ msgid "Requests"
2071
+ msgstr "Demandes"
2072
+
2073
+ #: templates/account/billing.php:22
2074
+ msgctxt "verb"
2075
+ msgid "Update"
2076
+ msgstr "Mise à jour"
2077
+
2078
+ #: templates/account/billing.php:33
2079
+ msgid "Billing"
2080
+ msgstr "Facturation"
2081
+
2082
+ #: templates/account/billing.php38, templates/account/billing.php:38
2083
+ msgid "Business name"
2084
+ msgstr "Raison sociale"
2085
+
2086
+ #: templates/account/billing.php39, templates/account/billing.php:39
2087
+ msgid "Tax / VAT ID"
2088
+ msgstr "Code TVA"
2089
+
2090
+ #: templates/account/billing.php42, templates/account/billing.php42,
2091
+ #: templates/account/billing.php43, templates/account/billing.php:43
2092
+ msgid "Address Line %d"
2093
+ msgstr "Adresse ligne %d"
2094
+
2095
+ #: templates/account/billing.php46, templates/account/billing.php:46
2096
+ msgid "City"
2097
+ msgstr "Ville"
2098
+
2099
+ #: templates/account/billing.php46, templates/account/billing.php:46
2100
+ msgid "Town"
2101
+ msgstr "Ville"
2102
+
2103
+ #: templates/account/billing.php47, templates/account/billing.php:47
2104
+ msgid "ZIP / Postal Code"
2105
+ msgstr "Code postal"
2106
+
2107
+ #: templates/account/billing.php:302
2108
+ msgid "Country"
2109
+ msgstr "Pays"
2110
+
2111
+ #: templates/account/billing.php:304
2112
+ msgid "Select Country"
2113
+ msgstr "Choisir le pays"
2114
+
2115
+ #: templates/account/billing.php311, templates/account/billing.php:312
2116
+ msgid "State"
2117
+ msgstr "État"
2118
+
2119
+ #: templates/account/billing.php311, templates/account/billing.php:312
2120
+ msgid "Province"
2121
+ msgstr "Région"
2122
+
2123
+ #: templates/account/payments.php:29
2124
+ msgid "Payments"
2125
+ msgstr "Paiements"
2126
+
2127
+ #: templates/account/payments.php:36
2128
+ msgid "Date"
2129
+ msgstr "Date"
2130
+
2131
+ #: templates/account/payments.php:37
2132
+ msgid "Amount"
2133
+ msgstr "Montant"
2134
+
2135
+ #: templates/account/payments.php38, templates/account/payments.php:50
2136
+ msgid "Invoice"
2137
+ msgstr "Facture"
2138
+
2139
+ #: templates/debug/api-calls.php:56
2140
+ msgid "API"
2141
+ msgstr "API"
2142
+
2143
+ #: templates/debug/api-calls.php:68
2144
+ msgid "Method"
2145
+ msgstr "Méthode"
2146
+
2147
+ #: templates/debug/api-calls.php:69
2148
+ msgid "Code"
2149
+ msgstr "Code"
2150
+
2151
+ #: templates/debug/api-calls.php:70
2152
+ msgid "Length"
2153
+ msgstr "Longueur"
2154
+
2155
+ #: templates/debug/api-calls.php:71
2156
+ msgctxt "as file/folder path"
2157
+ msgid "Path"
2158
+ msgstr "Chemin"
2159
+
2160
+ #: templates/debug/api-calls.php:73
2161
+ msgid "Body"
2162
+ msgstr "Body"
2163
+
2164
+ #: templates/debug/api-calls.php:75
2165
+ msgid "Result"
2166
+ msgstr "Résultat"
2167
+
2168
+ #: templates/debug/api-calls.php:76
2169
+ msgid "Start"
2170
+ msgstr "Début"
2171
+
2172
+ #: templates/debug/api-calls.php:77
2173
+ msgid "End"
2174
+ msgstr "Fin"
2175
+
2176
+ #: templates/debug/logger.php:15
2177
+ msgid "Log"
2178
+ msgstr "Log"
2179
+
2180
+ #. translators: %s: time period (e.g. In "2 hours")
2181
+ #: templates/debug/plugins-themes-sync.php18,
2182
+ #: templates/debug/scheduled-crons.php:91
2183
+ msgid "In %s"
2184
+ msgstr "Dans %s"
2185
+
2186
+ #. translators: %s: time period (e.g. "2 hours" ago)
2187
+ #: templates/debug/plugins-themes-sync.php20,
2188
+ #: templates/debug/scheduled-crons.php:93
2189
+ msgid "%s ago"
2190
+ msgstr "Il y a %s"
2191
+
2192
+ #: templates/debug/plugins-themes-sync.php21,
2193
+ #: templates/debug/scheduled-crons.php:74
2194
+ msgctxt "seconds"
2195
+ msgid "sec"
2196
+ msgstr "sec"
2197
+
2198
+ #: templates/debug/plugins-themes-sync.php:23
2199
+ msgid "Plugins & Themes Sync"
2200
+ msgstr "Synchronisation des plugin et des thèmes"
2201
+
2202
+ #: templates/debug/plugins-themes-sync.php:28
2203
+ msgid "Total"
2204
+ msgstr "Total"
2205
+
2206
+ #: templates/debug/plugins-themes-sync.php29,
2207
+ #: templates/debug/scheduled-crons.php:84
2208
+ msgid "Last"
2209
+ msgstr "Dernier"
2210
+
2211
+ #: templates/debug/scheduled-crons.php:76
2212
+ msgid "Scheduled Crons"
2213
+ msgstr "Crons programmés"
2214
+
2215
+ #: templates/debug/scheduled-crons.php:81
2216
+ msgid "Module"
2217
+ msgstr "Module"
2218
+
2219
+ #: templates/debug/scheduled-crons.php:82
2220
+ msgid "Module Type"
2221
+ msgstr "Type de module"
2222
+
2223
+ #: templates/debug/scheduled-crons.php:83
2224
+ msgid "Cron Type"
2225
+ msgstr "Type de Cron"
2226
+
2227
+ #: templates/debug/scheduled-crons.php:85
2228
+ msgid "Next"
2229
+ msgstr "Suivant"
2230
+
2231
+ #: templates/forms/affiliation.php:82
2232
+ msgid "Non-expiring"
2233
+ msgstr "Sans expiration"
2234
+
2235
+ #: templates/forms/affiliation.php:85
2236
+ msgid "Apply to become an affiliate"
2237
+ msgstr "Postuler pour devenir un affilié"
2238
+
2239
+ #: templates/forms/affiliation.php:107
2240
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2241
+ msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s."
2242
+
2243
+ #: templates/forms/affiliation.php:122
2244
+ 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."
2245
+ msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations."
2246
+
2247
+ #: templates/forms/affiliation.php:125
2248
+ msgid "Your affiliation account was temporarily suspended."
2249
+ msgstr "Votre compte affilié a été suspendu temporairement."
2250
+
2251
+ #: templates/forms/affiliation.php:128
2252
+ 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."
2253
+ msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours."
2254
+
2255
+ #: templates/forms/affiliation.php:131
2256
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2257
+ msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support."
2258
+
2259
+ #: templates/forms/affiliation.php:144
2260
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2261
+ msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)"
2262
+
2263
+ #: templates/forms/affiliation.php:145
2264
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2265
+ msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez."
2266
+
2267
+ #: templates/forms/affiliation.php:148
2268
+ msgid "Program Summary"
2269
+ msgstr "Sommaire du programme"
2270
+
2271
+ #: templates/forms/affiliation.php:150
2272
+ msgid "%s commission when a customer purchases a new license."
2273
+ msgstr "Commission de %s quand un client achète une nouvelle licence."
2274
+
2275
+ #: templates/forms/affiliation.php:152
2276
+ msgid "Get commission for automated subscription renewals."
2277
+ msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement."
2278
+
2279
+ #: templates/forms/affiliation.php:155
2280
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2281
+ msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain."
2282
+
2283
+ #: templates/forms/affiliation.php:158
2284
+ msgid "Unlimited commissions."
2285
+ msgstr "Commissions illimitées."
2286
+
2287
+ #: templates/forms/affiliation.php:160
2288
+ msgid "%s minimum payout amount."
2289
+ msgstr "Montant de paiement minimum %s."
2290
+
2291
+ #: templates/forms/affiliation.php:161
2292
+ msgid "Payouts are in USD and processed monthly via PayPal."
2293
+ msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal."
2294
+
2295
+ #: templates/forms/affiliation.php:162
2296
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2297
+ msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours."
2298
+
2299
+ #: templates/forms/affiliation.php:165
2300
+ msgid "Affiliate"
2301
+ msgstr "Affiliation"
2302
+
2303
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2304
+ msgid "Email address"
2305
+ msgstr "Adresse email"
2306
+
2307
+ #: templates/forms/affiliation.php:172
2308
+ msgid "Full name"
2309
+ msgstr "Nom complet"
2310
+
2311
+ #: templates/forms/affiliation.php:176
2312
+ msgid "PayPal account email address"
2313
+ msgstr "Adresse email du compte PayPal"
2314
+
2315
+ #: templates/forms/affiliation.php:180
2316
+ msgid "Where are you going to promote the %s?"
2317
+ msgstr "Où allez-vous faire la promotion du %s ? "
2318
+
2319
+ #: templates/forms/affiliation.php:182
2320
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2321
+ msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s"
2322
+
2323
+ #: templates/forms/affiliation.php:184
2324
+ msgid "Add another domain"
2325
+ msgstr "Ajouter une autre adresse"
2326
+
2327
+ #: templates/forms/affiliation.php:188
2328
+ msgid "Extra Domains"
2329
+ msgstr "Adresses supplémentaires"
2330
+
2331
+ #: templates/forms/affiliation.php:189
2332
+ msgid "Extra domains where you will be marketing the product from."
2333
+ msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit."
2334
+
2335
+ #: templates/forms/affiliation.php:199
2336
+ msgid "Promotion methods"
2337
+ msgstr "Méthodes de promotion"
2338
+
2339
+ #: templates/forms/affiliation.php:202
2340
+ msgid "Social media (Facebook, Twitter, etc.)"
2341
+ msgstr "Réseaux sociaux (Facebook, Twitter, etc.)"
2342
+
2343
+ #: templates/forms/affiliation.php:206
2344
+ msgid "Mobile apps"
2345
+ msgstr "Applications mobiles"
2346
+
2347
+ #: templates/forms/affiliation.php:210
2348
+ msgid "Website, email, and social media statistics (optional)"
2349
+ msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)"
2350
+
2351
+ #: templates/forms/affiliation.php:213
2352
+ 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)."
2353
+ msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)"
2354
+
2355
+ #: templates/forms/affiliation.php:217
2356
+ msgid "How will you promote us?"
2357
+ msgstr "Comment allez-vous faire de la promotion ?"
2358
+
2359
+ #: templates/forms/affiliation.php:220
2360
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2361
+ msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)"
2362
+
2363
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2364
+ msgid "Cancel"
2365
+ msgstr "Annuler"
2366
+
2367
+ #: templates/forms/affiliation.php:234
2368
+ msgid "Become an affiliate"
2369
+ msgstr "Devenir un affilié"
2370
+
2371
+ #: templates/forms/data-debug-mode.php:25
2372
+ msgid "Please enter the license key to enable the debug mode:"
2373
+ msgstr "Please enter the license key to enable the debug mode:"
2374
+
2375
+ #: templates/forms/data-debug-mode.php:27
2376
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2377
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2378
+
2379
+ #: templates/forms/data-debug-mode.php:32
2380
+ msgid "Submit"
2381
+ msgstr "Submit"
2382
+
2383
+ #: templates/forms/data-debug-mode.php:36
2384
+ msgid "User key"
2385
+ msgstr "User key"
2386
+
2387
+ #: templates/forms/license-activation.php:23
2388
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2389
+ msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :"
2390
+
2391
+ #: templates/forms/license-activation.php:28
2392
+ msgid "Update License"
2393
+ msgstr "Mettre à jour la licence"
2394
+
2395
+ #: templates/forms/license-activation.php:41
2396
+ 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."
2397
+ msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
+ msgid "Associate with the license owner's account."
2401
+ msgstr "Associate with the license owner's account."
2402
+
2403
+ #: templates/forms/optout.php:30
2404
+ msgctxt "verb"
2405
+ msgid "Opt Out"
2406
+ msgstr "Désinscription"
2407
+
2408
+ #: templates/forms/optout.php:31
2409
+ msgctxt "verb"
2410
+ msgid "Opt In"
2411
+ msgstr "Inscription"
2412
+
2413
+ #: templates/forms/optout.php:34
2414
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2415
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+
2417
+ #: templates/forms/optout.php:36
2418
+ msgid "Warning: Opting out will block automatic updates"
2419
+ msgstr "Warning: Opting out will block automatic updates"
2420
+
2421
+ #: templates/forms/optout.php:37
2422
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2423
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+
2425
+ #: templates/forms/optout.php:39
2426
+ msgid "I'd like to keep automatic updates"
2427
+ msgstr "I'd like to keep automatic updates"
2428
+
2429
+ #: templates/forms/optout.php:44
2430
+ 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."
2431
+ msgstr "Le suivi d'utilisation de %s nous permet de l'améliorer. Apporter une meilleure expérience pour l'utilisateur, définir quelles seront les nouvelles fonctionnalités, ce genre de choses. Aussi nous vous serions reconnaissant si vous acceptiez de nous permettre de continuer à récupérer des informations."
2432
+
2433
+ #: templates/forms/optout.php:45
2434
+ msgid "On second thought - I want to continue helping"
2435
+ msgstr "On second thought - I want to continue helping"
2436
+
2437
+ #: templates/forms/optout.php:49
2438
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2439
+ msgstr "En cliquant \"Désincription\", nous n'enverrons plus d'informations de %s à %s."
2440
+
2441
+ #: templates/forms/optout.php:74
2442
+ msgid "Plugins & themes tracking"
2443
+ msgstr "Plugins & themes tracking"
2444
+
2445
+ #: templates/forms/optout.php:261
2446
+ msgid "Saved"
2447
+ msgstr "Saved"
2448
+
2449
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2450
+ msgid "There is a new version of %s available."
2451
+ msgstr "Il y a une nouvelle version disponible de %s. "
2452
+
2453
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2454
+ msgid " %s to access version %s security & feature updates, and support."
2455
+ msgstr "%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la version %s, et au support."
2456
+
2457
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2458
+ msgid "New Version Available"
2459
+ msgstr "Une nouvelle version est disponible"
2460
+
2461
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2462
+ msgctxt "close a window"
2463
+ msgid "Dismiss"
2464
+ msgstr "Fermer"
2465
+
2466
+ #: templates/forms/resend-key.php:21
2467
+ msgid "Send License Key"
2468
+ msgstr "Envoyer le code de la licence"
2469
+
2470
+ #: templates/forms/resend-key.php:57
2471
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2472
+ msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence."
2473
+
2474
+ #: templates/forms/subscription-cancellation.php:37
2475
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2476
+ msgstr "Désactiver ou désinstaller le %s désactivera automatiquement la licence, que vous pourrez utiliser sur un autre site."
2477
+
2478
+ #: templates/forms/subscription-cancellation.php:47
2479
+ 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?"
2480
+ 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 ?"
2481
+
2482
+ #: templates/forms/subscription-cancellation.php:52
2483
+ msgid "license"
2484
+ msgstr "licence"
2485
+
2486
+ #: templates/forms/subscription-cancellation.php:57
2487
+ 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."
2488
+ 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."
2489
+
2490
+ #: templates/forms/subscription-cancellation.php:68
2491
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2492
+ 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."
2493
+
2494
+ #: templates/forms/subscription-cancellation.php:103
2495
+ 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."
2496
+ 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."
2497
+
2498
+ #: templates/forms/subscription-cancellation.php:136
2499
+ msgid "Cancel %s?"
2500
+ msgstr "Annuler %s ?"
2501
+
2502
+ #: templates/forms/subscription-cancellation.php:143
2503
+ msgid "Proceed"
2504
+ msgstr "Poursuivre"
2505
+
2506
+ #: templates/forms/subscription-cancellation.php191,
2507
+ #: templates/forms/deactivation/form.php:171
2508
+ msgid "Cancel %s & Proceed"
2509
+ msgstr "Annuler %s et poursuivre"
2510
+
2511
+ #: templates/forms/trial-start.php:22
2512
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2513
+ msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s."
2514
+
2515
+ #: templates/forms/trial-start.php:28
2516
+ 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."
2517
+ msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai."
2518
+
2519
+ #: templates/forms/user-change.php:26
2520
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2521
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2522
+
2523
+ #: templates/forms/user-change.php:28
2524
+ msgid "I Agree - Change User"
2525
+ msgstr "I Agree - Change User"
2526
+
2527
+ #: templates/forms/user-change.php:30
2528
+ msgid "Enter email address"
2529
+ msgstr "Enter email address"
2530
+
2531
+ #: templates/forms/user-change.php:81
2532
+ msgctxt "close window"
2533
+ msgid "Dismiss"
2534
+ msgstr "Fermer"
2535
+
2536
+ #: templates/js/style-premium-theme.php:39
2537
+ msgid "Premium"
2538
+ msgstr "Premium"
2539
+
2540
+ #: templates/js/style-premium-theme.php:42
2541
+ msgid "Beta"
2542
+ msgstr "Beta"
2543
+
2544
+ #: templates/partials/network-activation.php:27
2545
+ msgid "Activate license on all sites in the network."
2546
+ msgstr "Activer la licence sur tous les sites du réseau."
2547
+
2548
+ #: templates/partials/network-activation.php:28
2549
+ msgid "Apply on all sites in the network."
2550
+ msgstr "Effectuer sur tous les sites dans le réseau."
2551
+
2552
+ #: templates/partials/network-activation.php:31
2553
+ msgid "Activate license on all pending sites."
2554
+ msgstr "Activer la licence sur tous les sites en attente."
2555
+
2556
+ #: templates/partials/network-activation.php:32
2557
+ msgid "Apply on all pending sites."
2558
+ msgstr "Activer sur tous les sites en attente."
2559
+
2560
+ #: templates/partials/network-activation.php40,
2561
+ #: templates/partials/network-activation.php:74
2562
+ msgid "allow"
2563
+ msgstr "autoriser"
2564
+
2565
+ #: templates/partials/network-activation.php43,
2566
+ #: templates/partials/network-activation.php:77
2567
+ msgid "delegate"
2568
+ msgstr "déléguer"
2569
+
2570
+ #: templates/partials/network-activation.php47,
2571
+ #: templates/partials/network-activation.php:81
2572
+ msgid "skip"
2573
+ msgstr "passer"
2574
+
2575
+ #: templates/plugin-info/description.php72,
2576
+ #: templates/plugin-info/screenshots.php:31
2577
+ msgid "Click to view full-size screenshot %d"
2578
+ msgstr "Cliquez pour voir la capture d'écran %d en pleine taille"
2579
+
2580
+ #: templates/plugin-info/features.php:56
2581
+ msgid "Unlimited Updates"
2582
+ msgstr "Mises à jour illimitées"
2583
+
2584
+ #: templates/account/partials/activate-license-button.php:46
2585
+ msgid "Localhost"
2586
+ msgstr "Localhost"
2587
+
2588
+ #: templates/account/partials/activate-license-button.php:50
2589
+ msgctxt "as 5 licenses left"
2590
+ msgid "%s left"
2591
+ msgstr "%s restante(s)"
2592
+
2593
+ #: templates/account/partials/activate-license-button.php:51
2594
+ msgid "Last license"
2595
+ msgstr "Dernière licence"
2596
+
2597
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2598
+ #. subscription'
2599
+ #: templates/account/partials/addon.php:29
2600
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2601
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2602
+
2603
+ #: templates/account/partials/addon.php:185
2604
+ msgid "Cancelled"
2605
+ msgstr "Annulé"
2606
+
2607
+ #: templates/account/partials/addon.php:195
2608
+ msgid "No expiration"
2609
+ msgstr "Pas d'expiration"
2610
+
2611
+ #: templates/account/partials/site.php:189
2612
+ msgid "Owner Name"
2613
+ msgstr "Nom du propriétaire"
2614
+
2615
+ #: templates/account/partials/site.php:201
2616
+ msgid "Owner Email"
2617
+ msgstr "Email du propriétaire"
2618
+
2619
+ #: templates/account/partials/site.php:213
2620
+ msgid "Owner ID"
2621
+ msgstr "ID du propriétaire"
2622
+
2623
+ #: templates/account/partials/site.php:286
2624
+ msgid "Subscription"
2625
+ msgstr "Inscription"
2626
+
2627
+ #: templates/forms/deactivation/contact.php:19
2628
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2629
+ msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez."
2630
+
2631
+ #: templates/forms/deactivation/contact.php:22
2632
+ msgid "Contact Support"
2633
+ msgstr "Contacter l'Assistance"
2634
+
2635
+ #: templates/forms/deactivation/form.php:64
2636
+ msgid "Anonymous feedback"
2637
+ msgstr "Commentaire anonyme"
2638
+
2639
+ #: templates/forms/deactivation/form.php:70
2640
+ msgid "Deactivate"
2641
+ msgstr "Désactiver"
2642
+
2643
+ #: templates/forms/deactivation/form.php:72
2644
+ msgid "Activate %s"
2645
+ msgstr "Activer %s"
2646
+
2647
+ #: templates/forms/deactivation/form.php:87
2648
+ msgid "Quick Feedback"
2649
+ msgstr "Commentaires rapides"
2650
+
2651
+ #: templates/forms/deactivation/form.php:91
2652
+ msgid "If you have a moment, please let us know why you are %s"
2653
+ msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s"
2654
+
2655
+ #: templates/forms/deactivation/form.php:91
2656
+ msgid "deactivating"
2657
+ msgstr "Désactivation"
2658
+
2659
+ #: templates/forms/deactivation/form.php:91
2660
+ msgid "switching"
2661
+ msgstr "Changement"
2662
+
2663
+ #: templates/forms/deactivation/form.php:369
2664
+ msgid "Submit & %s"
2665
+ msgstr "Envoyer & %s"
2666
+
2667
+ #: templates/forms/deactivation/form.php:390
2668
+ msgid "Kindly tell us the reason so we can improve."
2669
+ msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer."
2670
+
2671
+ #: templates/forms/deactivation/form.php:515
2672
+ msgid "Yes - %s"
2673
+ msgstr "Oui - %s"
2674
+
2675
+ #: templates/forms/deactivation/form.php:522
2676
+ msgid "Skip & %s"
2677
+ msgstr "Passer & %s"
2678
+
2679
+ #: templates/forms/deactivation/retry-skip.php:21
2680
+ msgid "Click here to use the plugin anonymously"
2681
+ msgstr "Cliquer ici pour utiliser le plugin anonymement"
2682
+
2683
+ #: templates/forms/deactivation/retry-skip.php:23
2684
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2685
+ msgstr "Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager la moindre information et vous pouvez juste %s l'enregistrement."
freemius/languages/freemius-he_IL.po ADDED
@@ -0,0 +1,2686 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 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
5
+ # Vova Feldman <vova@freemius.com>, 2017-2018
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WordPress SDK\n"
9
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
+ "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
+ "Language: he_IL\n"
14
+ "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
18
+ "MIME-Version: 1.0\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
27
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
28
+
29
+ #: includes/class-freemius.php:1926
30
+ msgid "Would you like to proceed with the update?"
31
+ msgstr "Would you like to proceed with the update?"
32
+
33
+ #: includes/class-freemius.php:2138
34
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
+
37
+ #: includes/class-freemius.php:2140
38
+ msgid "Error"
39
+ msgstr "שגיאה"
40
+
41
+ #: includes/class-freemius.php:2540
42
+ msgid "I found a better %s"
43
+ msgstr "מצאתי %s יותר טוב"
44
+
45
+ #: includes/class-freemius.php:2542
46
+ msgid "What's the %s's name?"
47
+ msgstr "What's the %s's name?"
48
+
49
+ #: includes/class-freemius.php:2548
50
+ msgid "It's a temporary %s. I'm just debugging an issue."
51
+ msgstr "It's a temporary %s. I'm just debugging an issue."
52
+
53
+ #: includes/class-freemius.php:2550
54
+ msgid "Deactivation"
55
+ msgstr "דיאקטיבציה"
56
+
57
+ #: includes/class-freemius.php:2551
58
+ msgid "Theme Switch"
59
+ msgstr "החלפת תֵמָה"
60
+
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
+ #: templates/forms/user-change.php:29
63
+ msgid "Other"
64
+ msgstr "אחר"
65
+
66
+ #: includes/class-freemius.php:2568
67
+ msgid "I no longer need the %s"
68
+ msgstr "I no longer need the %s"
69
+
70
+ #: includes/class-freemius.php:2575
71
+ msgid "I only needed the %s for a short period"
72
+ msgstr "I only needed the %s for a short period"
73
+
74
+ #: includes/class-freemius.php:2581
75
+ msgid "The %s broke my site"
76
+ msgstr "ה%s הרס לי את האתר"
77
+
78
+ #: includes/class-freemius.php:2588
79
+ msgid "The %s suddenly stopped working"
80
+ msgstr "ה%s הפסיק פתאום לעבוד"
81
+
82
+ #: includes/class-freemius.php:2598
83
+ msgid "I can't pay for it anymore"
84
+ msgstr "אני לא יכול/ה להמשיך לשלם על זה"
85
+
86
+ #: includes/class-freemius.php:2600
87
+ msgid "What price would you feel comfortable paying?"
88
+ msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?"
89
+
90
+ #: includes/class-freemius.php:2606
91
+ msgid "I don't like to share my information with you"
92
+ msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם"
93
+
94
+ #: includes/class-freemius.php:2627
95
+ msgid "The %s didn't work"
96
+ msgstr "ה%s לא עבד"
97
+
98
+ #: includes/class-freemius.php:2637
99
+ msgid "I couldn't understand how to make it work"
100
+ msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד"
101
+
102
+ #: includes/class-freemius.php:2645
103
+ msgid "The %s is great, but I need specific feature that you don't support"
104
+ msgstr "The %s is great, but I need specific feature that you don't support"
105
+
106
+ #: includes/class-freemius.php:2647
107
+ msgid "What feature?"
108
+ msgstr "איזה פיטצ'ר?"
109
+
110
+ #: includes/class-freemius.php:2651
111
+ msgid "The %s is not working"
112
+ msgstr "ה%s לא עובד"
113
+
114
+ #: includes/class-freemius.php:2653
115
+ msgid "Kindly share what didn't work so we can fix it for future users..."
116
+ msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..."
117
+
118
+ #: includes/class-freemius.php:2657
119
+ msgid "It's not what I was looking for"
120
+ msgstr "חיפשתי משהו אחר"
121
+
122
+ #: includes/class-freemius.php:2659
123
+ msgid "What you've been looking for?"
124
+ msgstr "מה חיפשת?"
125
+
126
+ #: includes/class-freemius.php:2663
127
+ msgid "The %s didn't work as expected"
128
+ msgstr "ה%s לא עבד כמצופה"
129
+
130
+ #: includes/class-freemius.php:2665
131
+ msgid "What did you expect?"
132
+ msgstr "למה ציפית?"
133
+
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
+ msgid "Freemius Debug"
136
+ msgstr "ניפוי תקלות פרימיוס"
137
+
138
+ #: includes/class-freemius.php:4272
139
+ msgid "I don't know what is cURL or how to install it, help me!"
140
+ msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!"
141
+
142
+ #: includes/class-freemius.php:4274
143
+ 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."
144
+ 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."
145
+
146
+ #: includes/class-freemius.php:4281
147
+ 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."
148
+ 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."
149
+
150
+ #: includes/class-freemius.php:4386
151
+ msgid "Yes - do your thing"
152
+ msgstr "כן - בצעו את מה שצריך"
153
+
154
+ #: includes/class-freemius.php:4391
155
+ msgid "No - just deactivate"
156
+ msgstr "לא - פשוט כבה"
157
+
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
+ msgctxt "exclamation"
167
+ msgid "Oops"
168
+ msgstr "אופס"
169
+
170
+ #: includes/class-freemius.php:4505
171
+ 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."
172
+ 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."
173
+
174
+ #: includes/class-freemius.php:4927
175
+ msgctxt "addonX cannot run without pluginY"
176
+ msgid "%s cannot run without %s."
177
+ msgstr "%s לא יכול לעבוד ללא %s."
178
+
179
+ #: includes/class-freemius.php:4928
180
+ msgctxt "addonX cannot run..."
181
+ msgid "%s cannot run without the plugin."
182
+ msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף."
183
+
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
187
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
188
+
189
+ #: includes/class-freemius.php:5857
190
+ msgid "Premium %s version was successfully activated."
191
+ msgstr "Premium %s version was successfully activated."
192
+
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
+ msgctxt ""
195
+ msgid "W00t"
196
+ msgstr "יש"
197
+
198
+ #: includes/class-freemius.php:5884
199
+ msgid "You have a %s license."
200
+ msgstr "יש לך רישיון %s."
201
+
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
+ msgctxt "interjection expressing joy or exuberance"
207
+ msgid "Yee-haw"
208
+ msgstr "יששש"
209
+
210
+ #: includes/class-freemius.php:6174
211
+ 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."
212
+ 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."
213
+
214
+ #: includes/class-freemius.php:6178
215
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
+
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
+ #: templates/account/partials/addon.php:381
220
+ msgid "More information about %s"
221
+ msgstr "מידע נוסף אודות %s"
222
+
223
+ #: includes/class-freemius.php:6188
224
+ msgid "Purchase License"
225
+ msgstr "קניית רישיון"
226
+
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
+ 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."
229
+ 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."
230
+
231
+ #: includes/class-freemius.php:7129
232
+ msgid "start the trial"
233
+ msgstr "התחל תקופת ניסיון"
234
+
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
+ msgid "complete the install"
237
+ msgstr "השלם התקנה"
238
+
239
+ #: includes/class-freemius.php:7249
240
+ msgid "You are just one step away - %s"
241
+ msgstr "You are just one step away - %s"
242
+
243
+ #: includes/class-freemius.php:7252
244
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
+ msgid "Complete \"%s\" Activation Now"
246
+ msgstr "השלם הפעלת \"%s\" עכשיו"
247
+
248
+ #: includes/class-freemius.php:7334
249
+ msgid "We made a few tweaks to the %s, %s"
250
+ msgstr "We made a few tweaks to the %s, %s"
251
+
252
+ #: includes/class-freemius.php:7338
253
+ msgid "Opt in to make \"%s\" better!"
254
+ msgstr "Opt in to make \"%s\" better!"
255
+
256
+ #: includes/class-freemius.php:7773
257
+ msgid "The upgrade of %s was successfully completed."
258
+ msgstr "The upgrade of %s was successfully completed."
259
+
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
+ #: templates/auto-installation.php:32
264
+ msgid "Add-On"
265
+ msgstr "Add-On"
266
+
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
+ msgid "Plugin"
270
+ msgstr "תוסף"
271
+
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
+ #: templates/forms/deactivation/form.php:71
275
+ msgid "Theme"
276
+ msgstr "תבנית"
277
+
278
+ #: includes/class-freemius.php:13188
279
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
+
282
+ #: includes/class-freemius.php:13202
283
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
285
+
286
+ #: includes/class-freemius.php:13207
287
+ msgid "User Dashboard"
288
+ msgstr "User Dashboard"
289
+
290
+ #: includes/class-freemius.php:13208
291
+ msgid "revert it now"
292
+ msgstr "revert it now"
293
+
294
+ #: includes/class-freemius.php:13266
295
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
296
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
+
298
+ #: includes/class-freemius.php:13339
299
+ msgid "Invalid new user ID or email address."
300
+ msgstr "Invalid new user ID or email address."
301
+
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
+
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
+
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
+ msgid "Change Ownership"
312
+ msgstr "עדכון בעלות"
313
+
314
+ #: includes/class-freemius.php:13977
315
+ msgid "Invalid site details collection."
316
+ msgstr "Invalid site details collection."
317
+
318
+ #: includes/class-freemius.php:14097
319
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
321
+
322
+ #: includes/class-freemius.php:14099
323
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
+
326
+ #: includes/class-freemius.php:14373
327
+ msgid "Account is pending activation."
328
+ msgstr "Account is pending activation."
329
+
330
+ #: includes/class-freemius.php14485,
331
+ #: templates/forms/premium-versions-upgrade-handler.php:47
332
+ msgid "Buy a license now"
333
+ msgstr "Buy a license now"
334
+
335
+ #: includes/class-freemius.php14497,
336
+ #: templates/forms/premium-versions-upgrade-handler.php:46
337
+ msgid "Renew your license now"
338
+ msgstr "Renew your license now"
339
+
340
+ #: includes/class-freemius.php:14501
341
+ msgid "%s to access version %s security & feature updates, and support."
342
+ msgstr "%s to access version %s security & feature updates, and support."
343
+
344
+ #: includes/class-freemius.php:16929
345
+ msgid "%s activation was successfully completed."
346
+ msgstr "הפעלת %s הושלמה בהצלחה."
347
+
348
+ #: includes/class-freemius.php:16943
349
+ msgid "Your account was successfully activated with the %s plan."
350
+ msgstr "חשבונך הופעל בהצלחה עם חבילת %s."
351
+
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
+ msgid "Your trial has been successfully started."
354
+ msgstr "הניסיון שלך הופעל בהצלחה."
355
+
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
+ msgid "Couldn't activate %s."
359
+ msgstr "לא ניתן להפעיל את %s."
360
+
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
+ msgid "Please contact us with the following message:"
364
+ msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:"
365
+
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
+ msgid "An unknown error has occurred."
368
+ msgstr "An unknown error has occurred."
369
+
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
+ msgid "Upgrade"
372
+ msgstr "שדרג"
373
+
374
+ #: includes/class-freemius.php:18184
375
+ msgid "Start Trial"
376
+ msgstr "התחל תקופת ניסיון"
377
+
378
+ #: includes/class-freemius.php:18186
379
+ msgid "Pricing"
380
+ msgstr "מחירון"
381
+
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
+ msgid "Affiliation"
384
+ msgstr "אפיליאציה"
385
+
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
+ msgid "Account"
389
+ msgstr "חשבון"
390
+
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
+ #: includes/customizer/class-fs-customizer-support-section.php:60
393
+ msgid "Contact Us"
394
+ msgstr "יצירת קשר"
395
+
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
+ #: templates/account/partials/addon.php:44
399
+ msgid "Add-Ons"
400
+ msgstr "Add-Ons"
401
+
402
+ #: includes/class-freemius.php:18361
403
+ msgctxt "ASCII arrow left icon"
404
+ msgid "&#x2190;"
405
+ msgstr "&#x2190;"
406
+
407
+ #: includes/class-freemius.php:18361
408
+ msgctxt "ASCII arrow right icon"
409
+ msgid "&#x27a4;"
410
+ msgstr "&#x27a4;"
411
+
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
+ msgctxt "noun"
414
+ msgid "Pricing"
415
+ msgstr "מחירון"
416
+
417
+ #: includes/class-freemius.php18576,
418
+ #: includes/customizer/class-fs-customizer-support-section.php:67
419
+ msgid "Support Forum"
420
+ msgstr "פורום תמיכה"
421
+
422
+ #: includes/class-freemius.php:19550
423
+ msgid "Your email has been successfully verified - you are AWESOME!"
424
+ msgstr "Your email has been successfully verified - you are AWESOME!"
425
+
426
+ #: includes/class-freemius.php:19551
427
+ msgctxt "a positive response"
428
+ msgid "Right on"
429
+ msgstr "מעולה"
430
+
431
+ #: includes/class-freemius.php:20057
432
+ msgid "seems like the key you entered doesn't match our records."
433
+ msgstr "seems like the key you entered doesn't match our records."
434
+
435
+ #: includes/class-freemius.php:20081
436
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
438
+
439
+ #: includes/class-freemius.php:20316
440
+ msgid "Your %s Add-on plan was successfully upgraded."
441
+ msgstr "חבילת ההרחבה %s שודרגה בהצלחה."
442
+
443
+ #: includes/class-freemius.php:20318
444
+ msgid "%s Add-on was successfully purchased."
445
+ msgstr "ההרחבה %s נרכשה בהצלחה."
446
+
447
+ #: includes/class-freemius.php:20321
448
+ msgid "Download the latest version"
449
+ msgstr "הורד את הגרסה האחרונה"
450
+
451
+ #: includes/class-freemius.php:20407
452
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
453
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
454
+
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
+ msgid "Error received from the server:"
458
+ msgstr "הוחזרה שגיאה מהשרת:"
459
+
460
+ #: includes/class-freemius.php:20423
461
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
+
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
+ msgctxt ""
467
+ msgid "Hmm"
468
+ msgstr "אממ"
469
+
470
+ #: includes/class-freemius.php:20664
471
+ 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."
472
+ 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."
473
+
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
+ msgctxt "trial period"
477
+ msgid "Trial"
478
+ msgstr "ניסיון"
479
+
480
+ #: includes/class-freemius.php:20670
481
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
+ msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s."
483
+
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
+ msgid "Please contact us here"
486
+ msgstr "אנא צור איתנו קשר כאן"
487
+
488
+ #: includes/class-freemius.php:20685
489
+ msgid "Your plan was successfully activated."
490
+ msgstr "Your plan was successfully activated."
491
+
492
+ #: includes/class-freemius.php:20686
493
+ msgid "Your plan was successfully upgraded."
494
+ msgstr "החבילה שודרגה בהצלחה."
495
+
496
+ #: includes/class-freemius.php:20703
497
+ msgid "Your plan was successfully changed to %s."
498
+ msgstr "החבילה עודכנה בהצלחה אל %s."
499
+
500
+ #: includes/class-freemius.php:20719
501
+ msgid "Your license has expired. You can still continue using the free %s forever."
502
+ msgstr "Your license has expired. You can still continue using the free %s forever."
503
+
504
+ #: includes/class-freemius.php:20721
505
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
+
508
+ #: includes/class-freemius.php:20729
509
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
+ msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה."
511
+
512
+ #: includes/class-freemius.php:20742
513
+ 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."
514
+ 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."
515
+
516
+ #: includes/class-freemius.php:20768
517
+ msgid "Your free trial has expired. You can still continue using all our free features."
518
+ msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
519
+
520
+ #: includes/class-freemius.php:20770
521
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
+
524
+ #: includes/class-freemius.php:20885
525
+ msgid "It looks like the license could not be activated."
526
+ msgstr "נראה שלא ניתן להפעיל את הרישיון."
527
+
528
+ #: includes/class-freemius.php:20927
529
+ msgid "Your license was successfully activated."
530
+ msgstr "הרישיון הופעל בהצלחה."
531
+
532
+ #: includes/class-freemius.php:20953
533
+ msgid "It looks like your site currently doesn't have an active license."
534
+ msgstr "נראה לאתר עדיין אין רישיון פעיל."
535
+
536
+ #: includes/class-freemius.php:20977
537
+ msgid "It looks like the license deactivation failed."
538
+ msgstr "נראה שניתוק הרישיון נכשל."
539
+
540
+ #: includes/class-freemius.php:21006
541
+ msgid "Your %s license was successfully deactivated."
542
+ msgstr "Your %s license was successfully deactivated."
543
+
544
+ #: includes/class-freemius.php:21007
545
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
546
+ msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s"
547
+
548
+ #: includes/class-freemius.php:21010
549
+ msgid "O.K"
550
+ msgstr "אוקיי"
551
+
552
+ #: includes/class-freemius.php:21063
553
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
+
556
+ #: includes/class-freemius.php:21072
557
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
+
560
+ #: includes/class-freemius.php:21114
561
+ msgid "You are already running the %s in a trial mode."
562
+ msgstr "You are already running the %s in a trial mode."
563
+
564
+ #: includes/class-freemius.php:21125
565
+ msgid "You already utilized a trial before."
566
+ msgstr "הניסיון כבר נוצל בעבר."
567
+
568
+ #: includes/class-freemius.php:21139
569
+ msgid "Plan %s do not exist, therefore, can't start a trial."
570
+ msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון."
571
+
572
+ #: includes/class-freemius.php:21150
573
+ msgid "Plan %s does not support a trial period."
574
+ msgstr "תוכנית %s אינה תומכת בתקופת ניסיון."
575
+
576
+ #: includes/class-freemius.php:21161
577
+ msgid "None of the %s's plans supports a trial period."
578
+ msgstr "None of the %s's plans supports a trial period."
579
+
580
+ #: includes/class-freemius.php:21211
581
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
+
584
+ #: includes/class-freemius.php:21247
585
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
+ msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות."
587
+
588
+ #: includes/class-freemius.php:21266
589
+ msgid "Your %s free trial was successfully cancelled."
590
+ msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה."
591
+
592
+ #: includes/class-freemius.php:21582
593
+ msgid "Version %s was released."
594
+ msgstr "גרסה %s הושקה."
595
+
596
+ #: includes/class-freemius.php:21582
597
+ msgid "Please download %s."
598
+ msgstr "נא להוריד את %s."
599
+
600
+ #: includes/class-freemius.php:21589
601
+ msgid "the latest %s version here"
602
+ msgstr "גרסת ה-%s האחרונה כאן"
603
+
604
+ #: includes/class-freemius.php:21594
605
+ msgid "New"
606
+ msgstr "חדש"
607
+
608
+ #: includes/class-freemius.php:21599
609
+ msgid "Seems like you got the latest release."
610
+ msgstr "נראה שיש לך את הגרסה האחרונה."
611
+
612
+ #: includes/class-freemius.php:21600
613
+ msgid "You are all good!"
614
+ msgstr "את\\ה מסודר!"
615
+
616
+ #: includes/class-freemius.php:21903
617
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
+
620
+ #: includes/class-freemius.php:22043
621
+ msgid "Site successfully opted in."
622
+ msgstr "Site successfully opted in."
623
+
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
+ msgid "Awesome"
626
+ msgstr "אדיר"
627
+
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
631
+
632
+ #: includes/class-freemius.php:22061
633
+ msgid "Thank you!"
634
+ msgstr "תודה רבה!"
635
+
636
+ #: includes/class-freemius.php:22068
637
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
638
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
639
+
640
+ #: includes/class-freemius.php:22226
641
+ 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."
642
+ 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."
643
+
644
+ #: includes/class-freemius.php:22232
645
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
+ msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי."
647
+
648
+ #: includes/class-freemius.php:22237
649
+ msgid "%s is the new owner of the account."
650
+ msgstr "%s הינו הבעלים החד של חשבון זה."
651
+
652
+ #: includes/class-freemius.php:22239
653
+ msgctxt "as congratulations"
654
+ msgid "Congrats"
655
+ msgstr "מזל טוב"
656
+
657
+ #: includes/class-freemius.php:22275
658
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
+ msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים."
660
+
661
+ #: includes/class-freemius.php:22287
662
+ msgid "Please provide your full name."
663
+ msgstr "נא למלא את שמך המלא."
664
+
665
+ #: includes/class-freemius.php:22292
666
+ msgid "Your name was successfully updated."
667
+ msgstr "שמך עודכן בהצלחה."
668
+
669
+ #: includes/class-freemius.php:22353
670
+ msgid "You have successfully updated your %s."
671
+ msgstr "עידכנת בהצלחה את ה%s."
672
+
673
+ #: includes/class-freemius.php:22412
674
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
676
+
677
+ #: includes/class-freemius.php:22415
678
+ msgid "Click here"
679
+ msgstr "Click here"
680
+
681
+ #: includes/class-freemius.php:22513
682
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
+
685
+ #: includes/class-freemius.php:22514
686
+ msgctxt "advance notice of something that will need attention."
687
+ msgid "Heads up"
688
+ msgstr "לתשמות לבך"
689
+
690
+ #: includes/class-freemius.php:23090
691
+ msgctxt "exclamation"
692
+ msgid "Hey"
693
+ msgstr "היי"
694
+
695
+ #: includes/class-freemius.php:23090
696
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
+
699
+ #: includes/class-freemius.php:23098
700
+ msgid "No commitment for %s days - cancel anytime!"
701
+ msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!"
702
+
703
+ #: includes/class-freemius.php:23099
704
+ msgid "No credit card required"
705
+ msgstr "לא נדרש כרטיס אשראי"
706
+
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
+ msgctxt "call to action"
709
+ msgid "Start free trial"
710
+ msgstr "התחלת ניסיון חינם"
711
+
712
+ #: includes/class-freemius.php:23183
713
+ 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!"
714
+ 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!"
715
+
716
+ #: includes/class-freemius.php:23192
717
+ msgid "Learn more"
718
+ msgstr "Learn more"
719
+
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
+ #: templates/account/partials/addon.php:321
724
+ msgid "Activate License"
725
+ msgstr "הפעלת רישיון"
726
+
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
+ #: templates/account/partials/site.php:271
730
+ msgid "Change License"
731
+ msgstr "שינוי רישיון"
732
+
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
+ msgid "Opt Out"
735
+ msgstr "Opt Out"
736
+
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
+ #: templates/account/partials/site.php49,
739
+ #: templates/account/partials/site.php:169
740
+ msgid "Opt In"
741
+ msgstr "Opt In"
742
+
743
+ #: includes/class-freemius.php:23738
744
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
+
747
+ #: includes/class-freemius.php:23746
748
+ msgid "Activate %s features"
749
+ msgstr "Activate %s features"
750
+
751
+ #: includes/class-freemius.php:23759
752
+ msgid "Please follow these steps to complete the upgrade"
753
+ msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג"
754
+
755
+ #: includes/class-freemius.php:23763
756
+ msgid "Download the latest %s version"
757
+ msgstr "הורד\\י את גרסת ה-%s העדכנית"
758
+
759
+ #: includes/class-freemius.php:23767
760
+ msgid "Upload and activate the downloaded version"
761
+ msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת"
762
+
763
+ #: includes/class-freemius.php:23769
764
+ msgid "How to upload and activate?"
765
+ msgstr "איך להעלות ולהפעיל?"
766
+
767
+ #: includes/class-freemius.php:23903
768
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
770
+
771
+ #: includes/class-freemius.php:24072
772
+ msgid "Auto installation only works for opted-in users."
773
+ msgstr "Auto installation only works for opted-in users."
774
+
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
+ msgid "Invalid module ID."
779
+ msgstr "מזהה המודול לא תקני."
780
+
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
+ msgid "Premium version already active."
783
+ msgstr "הגרסה בתשלום כבר פעילה."
784
+
785
+ #: includes/class-freemius.php:24098
786
+ msgid "You do not have a valid license to access the premium version."
787
+ msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
788
+
789
+ #: includes/class-freemius.php:24105
790
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
+
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
+ msgid "Premium add-on version already installed."
795
+ msgstr "Premium add-on version already installed."
796
+
797
+ #: includes/class-freemius.php:24473
798
+ msgid "View paid features"
799
+ msgstr "צפה בפיטצ'רים שבתשלום"
800
+
801
+ #: includes/class-freemius.php:24795
802
+ msgid "Thank you so much for using %s and its add-ons!"
803
+ msgstr "Thank you so much for using %s and its add-ons!"
804
+
805
+ #: includes/class-freemius.php:24796
806
+ msgid "Thank you so much for using %s!"
807
+ msgstr "אנו מודים לך על היותך כמשתמש של %s!"
808
+
809
+ #: includes/class-freemius.php:24802
810
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
+
813
+ #: includes/class-freemius.php:24806
814
+ msgid "Thank you so much for using our products!"
815
+ msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
816
+
817
+ #: includes/class-freemius.php:24807
818
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
+
821
+ #: includes/class-freemius.php:24826
822
+ msgid "%s and its add-ons"
823
+ msgstr "%s and its add-ons"
824
+
825
+ #: includes/class-freemius.php:24835
826
+ msgid "Products"
827
+ msgstr "מוצרים"
828
+
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
+ msgid "Yes"
831
+ msgstr "כן"
832
+
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
+ msgid "send me security & feature updates, educational content and offers."
835
+ msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
836
+
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
+ msgid "No"
839
+ msgstr "לא"
840
+
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
+ msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
844
+
845
+ #: includes/class-freemius.php:24856
846
+ 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 :-)"
847
+ 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 :-)"
848
+
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
+
853
+ #: includes/class-freemius.php:25140
854
+ msgid "License key is empty."
855
+ msgstr "מפתח הרישיון ריק."
856
+
857
+ #: includes/class-fs-plugin-updater.php206,
858
+ #: templates/forms/premium-versions-upgrade-handler.php:57
859
+ msgid "Renew license"
860
+ msgstr "חידוש רישיון"
861
+
862
+ #: includes/class-fs-plugin-updater.php211,
863
+ #: templates/forms/premium-versions-upgrade-handler.php:58
864
+ msgid "Buy license"
865
+ msgstr "Buy license"
866
+
867
+ #: includes/class-fs-plugin-updater.php327,
868
+ #: includes/class-fs-plugin-updater.php:360
869
+ msgid "There is a %s of %s available."
870
+ msgstr "There is a %s of %s available."
871
+
872
+ #: includes/class-fs-plugin-updater.php329,
873
+ #: includes/class-fs-plugin-updater.php:365
874
+ msgid "new Beta version"
875
+ msgstr "new Beta version"
876
+
877
+ #: includes/class-fs-plugin-updater.php330,
878
+ #: includes/class-fs-plugin-updater.php:366
879
+ msgid "new version"
880
+ msgstr "new version"
881
+
882
+ #: includes/class-fs-plugin-updater.php:389
883
+ msgid "Important Upgrade Notice:"
884
+ msgstr "Important Upgrade Notice:"
885
+
886
+ #: includes/class-fs-plugin-updater.php:1326
887
+ msgid "Installing plugin: %s"
888
+ msgstr "Installing plugin: %s"
889
+
890
+ #: includes/class-fs-plugin-updater.php:1367
891
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
893
+
894
+ #: includes/class-fs-plugin-updater.php:1549
895
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
+
898
+ #: includes/fs-plugin-info-dialog.php:541
899
+ msgid "Purchase More"
900
+ msgstr "Purchase More"
901
+
902
+ #: includes/fs-plugin-info-dialog.php542,
903
+ #: templates/account/partials/addon.php:385
904
+ msgctxt "verb"
905
+ msgid "Purchase"
906
+ msgstr "רכישה"
907
+
908
+ #: includes/fs-plugin-info-dialog.php:546
909
+ msgid "Start my free %s"
910
+ msgstr "התחל את %s הניסיון שלי"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:744
913
+ msgid "Install Free Version Update Now"
914
+ msgstr "התקן עדכון גרסה חינאמית עכשיו"
915
+
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
+ msgid "Install Update Now"
918
+ msgstr "התקן עדכון במיידי"
919
+
920
+ #: includes/fs-plugin-info-dialog.php:754
921
+ msgid "Install Free Version Now"
922
+ msgstr "התקן גרסה חינאמית עכשיו"
923
+
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
+ #: templates/auto-installation.php111,
926
+ #: templates/account/partials/addon.php365,
927
+ #: templates/account/partials/addon.php:418
928
+ msgid "Install Now"
929
+ msgstr "התקן עכשיו"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:771
932
+ msgctxt "as download latest version"
933
+ msgid "Download Latest Free Version"
934
+ msgstr "Download Latest Free Version"
935
+
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
+ msgctxt "as download latest version"
939
+ msgid "Download Latest"
940
+ msgstr "הורד גרסה אחרונה"
941
+
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
+ #: templates/account/partials/addon.php356,
944
+ #: templates/account/partials/addon.php:412
945
+ msgid "Activate this add-on"
946
+ msgstr "הפעל את ההרחבה"
947
+
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
+ msgid "Activate Free Version"
950
+ msgstr "הפעלת גירסה חינאמית"
951
+
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
+ msgid "Activate"
955
+ msgstr "הפעלה"
956
+
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
+ msgctxt "Plugin installer section title"
959
+ msgid "Description"
960
+ msgstr "תיאור"
961
+
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
+ msgctxt "Plugin installer section title"
964
+ msgid "Installation"
965
+ msgstr "התקנה"
966
+
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
+ msgctxt "Plugin installer section title"
969
+ msgid "FAQ"
970
+ msgstr "שאלות נפוצות"
971
+
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
+ #: templates/plugin-info/description.php:55
974
+ msgid "Screenshots"
975
+ msgstr "צילומי מסך"
976
+
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
+ msgctxt "Plugin installer section title"
979
+ msgid "Changelog"
980
+ msgstr "לוג שינויים"
981
+
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
+ msgctxt "Plugin installer section title"
984
+ msgid "Reviews"
985
+ msgstr "ביקורות"
986
+
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
+ msgctxt "Plugin installer section title"
989
+ msgid "Other Notes"
990
+ msgstr "היערות נוספות"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
+ msgctxt "Plugin installer section title"
994
+ msgid "Features & Pricing"
995
+ msgstr "פיטצ'רים ומחירים"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
+ msgid "Plugin Install"
999
+ msgstr "התקנת תוסף"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
+ msgctxt "e.g. Professional Plan"
1003
+ msgid "%s Plan"
1004
+ msgstr "חבילה %s"
1005
+
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
+ msgctxt "e.g. the best product"
1008
+ msgid "Best"
1009
+ msgstr "הכי טוב"
1010
+
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
+ msgctxt "as every month"
1014
+ msgid "Monthly"
1015
+ msgstr "חודשי"
1016
+
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
+ msgctxt "as once a year"
1019
+ msgid "Annual"
1020
+ msgstr "שנתי"
1021
+
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
+ msgid "Lifetime"
1024
+ msgstr "לכל החיים"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
+ msgctxt "e.g. billed monthly"
1030
+ msgid "Billed %s"
1031
+ msgstr "מחוייב על בסיס %s"
1032
+
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
+ msgctxt "as once a year"
1035
+ msgid "Annually"
1036
+ msgstr "שנתי"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
+ msgctxt "as once a year"
1040
+ msgid "Once"
1041
+ msgstr "פעם אחת"
1042
+
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
+ msgid "Single Site License"
1045
+ msgstr "רשיון לאתר אחד"
1046
+
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
+ msgid "Unlimited Licenses"
1049
+ msgstr "רשיונות ללא הגבלה"
1050
+
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
+ msgid "Up to %s Sites"
1053
+ msgstr "עד %s אתרים"
1054
+
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
+ #: templates/plugin-info/features.php:82
1057
+ msgctxt "as monthly period"
1058
+ msgid "mo"
1059
+ msgstr "חודשים"
1060
+
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
+ #: templates/plugin-info/features.php:80
1063
+ msgctxt "as annual period"
1064
+ msgid "year"
1065
+ msgstr "שנה"
1066
+
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
+ msgctxt "noun"
1069
+ msgid "Price"
1070
+ msgstr "מחיר"
1071
+
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
+ msgid "Save %s"
1074
+ msgstr "שמירת %s"
1075
+
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
+ msgid "No commitment for %s - cancel anytime"
1078
+ msgstr "No commitment for %s - cancel anytime"
1079
+
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
+ msgid "After your free %s, pay as little as %s"
1082
+ msgstr "After your free %s, pay as little as %s"
1083
+
1084
+ #: includes/fs-plugin-info-dialog.php:1314
1085
+ msgid "Details"
1086
+ msgstr "פרטים"
1087
+
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
+ #: templates/account/partials/addon.php:36
1091
+ msgctxt "product version"
1092
+ msgid "Version"
1093
+ msgstr "גרסה"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
+ msgctxt "as the plugin author"
1097
+ msgid "Author"
1098
+ msgstr "Author"
1099
+
1100
+ #: includes/fs-plugin-info-dialog.php:1332
1101
+ msgid "Last Updated"
1102
+ msgstr "עודכן לאחרונה"
1103
+
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
+ msgctxt "x-ago"
1106
+ msgid "%s ago"
1107
+ msgstr "לפני %s"
1108
+
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
+ msgid "Requires WordPress Version"
1111
+ msgstr "Requires WordPress Version"
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
+ msgid "%s or higher"
1115
+ msgstr "%s ומעלה"
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
+ msgid "Compatible up to"
1119
+ msgstr "Compatible up to"
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
+ msgid "Downloaded"
1123
+ msgstr "Downloaded"
1124
+
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
+ msgid "%s time"
1127
+ msgstr "פעם %s"
1128
+
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
+ msgid "%s times"
1131
+ msgstr "%s פעמים"
1132
+
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
+ msgid "WordPress.org Plugin Page"
1135
+ msgstr "WordPress.org Plugin Page"
1136
+
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
+ msgid "Plugin Homepage"
1139
+ msgstr "עמוד התוסף"
1140
+
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
+ msgid "Donate to this plugin"
1144
+ msgstr "תרום לתוסף"
1145
+
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
+ msgid "Average Rating"
1148
+ msgstr "דירוג ממוצע"
1149
+
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
+ msgid "based on %s"
1152
+ msgstr "מבוסס על %s"
1153
+
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
+ msgid "%s rating"
1156
+ msgstr "דרוג %s"
1157
+
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
+ msgid "%s ratings"
1160
+ msgstr "%s דרוגים"
1161
+
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
+ msgid "%s star"
1164
+ msgstr "כוכב %s"
1165
+
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
+ msgid "%s stars"
1168
+ msgstr "%s כוכבים"
1169
+
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
+ msgid "Click to see reviews that provided a rating of %s"
1172
+ msgstr "Click to see reviews that provided a rating of %s"
1173
+
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
+ msgid "Contributors"
1176
+ msgstr "תורמים"
1177
+
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
+ msgid "Warning"
1181
+ msgstr "Warning"
1182
+
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
+ msgid "This plugin has not been tested with your current version of WordPress."
1185
+ msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
1186
+
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
+ msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
1190
+
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
+ msgid "Paid add-on must be deployed to Freemius."
1193
+ msgstr "Paid add-on must be deployed to Freemius."
1194
+
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1198
+
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
+ msgid "Newer Version (%s) Installed"
1201
+ msgstr "גרסה חדשה (%s) הותקנה"
1202
+
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
+ msgid "Newer Free Version (%s) Installed"
1205
+ msgstr "Newer Free Version (%s) Installed"
1206
+
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
+ msgid "Latest Version Installed"
1209
+ msgstr "הגרסה האחרונה הותקנה"
1210
+
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
+ msgid "Latest Free Version Installed"
1213
+ msgstr "גרסה חינאמית עדכנית הותקנה"
1214
+
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
+ #: templates/account/partials/addon.php26,
1217
+ #: templates/account/partials/site.php:311
1218
+ msgid "Downgrading your plan"
1219
+ msgstr "Downgrading your plan"
1220
+
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
+ #: templates/account/partials/addon.php27,
1223
+ #: templates/account/partials/site.php:312
1224
+ msgid "Cancelling the subscription"
1225
+ msgstr "Cancelling the subscription"
1226
+
1227
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
+ #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
+ #: templates/account/partials/site.php:314
1231
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
+
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
+ #: templates/account/partials/addon.php30,
1236
+ #: templates/account/partials/site.php:315
1237
+ 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."
1238
+ 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."
1239
+
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
+ #: templates/account/partials/addon.php:31
1242
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
+ msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?"
1244
+
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
+ #: templates/account/partials/addon.php32,
1247
+ #: templates/account/partials/site.php:316
1248
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
+
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
+ #: templates/account/partials/addon.php33,
1253
+ #: templates/account/partials/site.php:317
1254
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
+
1257
+ #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
+ #: templates/account/partials/activate-license-button.php31,
1260
+ #: templates/account/partials/addon.php:35
1261
+ msgid "Activate %s Plan"
1262
+ msgstr "הפעל חבילה %s"
1263
+
1264
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
+ #: templates/account/partials/site.php:291
1267
+ msgid "Auto renews in %s"
1268
+ msgstr "עדכן אוטומטית בעוד %s"
1269
+
1270
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
+ #: templates/account/partials/site.php:293
1273
+ msgid "Expires in %s"
1274
+ msgstr "פג תוקף בעוד %s"
1275
+
1276
+ #: templates/account.php:117
1277
+ msgctxt "as synchronize license"
1278
+ msgid "Sync License"
1279
+ msgstr "סינכרן רישיון"
1280
+
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
+ msgid "Cancel Trial"
1283
+ msgstr "ביט"
1284
+
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
+ msgid "Change Plan"
1287
+ msgstr "שינוי חבילה"
1288
+
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
+ msgctxt "verb"
1291
+ msgid "Upgrade"
1292
+ msgstr "שדרג"
1293
+
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
+ #: templates/account/partials/site.php:318
1296
+ msgctxt "verb"
1297
+ msgid "Downgrade"
1298
+ msgstr "שנמך"
1299
+
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
+ #: templates/plugin-info/features.php72,
1302
+ #: templates/account/partials/addon.php47,
1303
+ #: templates/account/partials/site.php:33
1304
+ msgid "Free"
1305
+ msgstr "חינם"
1306
+
1307
+ #: templates/account.php126, templates/debug.php371,
1308
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1309
+ #: templates/account/partials/addon.php:49
1310
+ msgctxt "as product pricing plan"
1311
+ msgid "Plan"
1312
+ msgstr "חבילה"
1313
+
1314
+ #: templates/account.php:127
1315
+ msgid "Bundle Plan"
1316
+ msgstr "Bundle Plan"
1317
+
1318
+ #: templates/account.php:250
1319
+ msgid "Free Trial"
1320
+ msgstr "ניסיון חינם"
1321
+
1322
+ #: templates/account.php:261
1323
+ msgid "Account Details"
1324
+ msgstr "פרטי חשבון"
1325
+
1326
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1327
+ msgid "Start Debug"
1328
+ msgstr "Start Debug"
1329
+
1330
+ #: templates/account.php:270
1331
+ msgid "Stop Debug"
1332
+ msgstr "Stop Debug"
1333
+
1334
+ #: templates/account.php:277
1335
+ msgid "Billing & Invoices"
1336
+ msgstr "Billing & Invoices"
1337
+
1338
+ #: templates/account.php:288
1339
+ 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?"
1340
+ 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?"
1341
+
1342
+ #: templates/account.php:290
1343
+ 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?"
1344
+ 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?"
1345
+
1346
+ #: templates/account.php:293
1347
+ msgid "Delete Account"
1348
+ msgstr "מחיקת חשבון"
1349
+
1350
+ #: templates/account.php305, templates/account/partials/addon.php231,
1351
+ #: templates/account/partials/deactivate-license-button.php:35
1352
+ msgid "Deactivate License"
1353
+ msgstr "שיחרור רישיון"
1354
+
1355
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1356
+ msgid "Are you sure you want to proceed?"
1357
+ msgstr "האם את/ה בטוח רוצה להמשיך?"
1358
+
1359
+ #: templates/account.php328, templates/account/partials/addon.php:255
1360
+ msgid "Cancel Subscription"
1361
+ msgstr "בטל מנוי"
1362
+
1363
+ #: templates/account.php357, templates/account/partials/addon.php:340
1364
+ msgctxt "as synchronize"
1365
+ msgid "Sync"
1366
+ msgstr "סינכרון"
1367
+
1368
+ #: templates/account.php372, templates/debug.php:505
1369
+ msgid "Name"
1370
+ msgstr "שם"
1371
+
1372
+ #: templates/account.php378, templates/debug.php:506
1373
+ msgid "Email"
1374
+ msgstr "דוא\"ל"
1375
+
1376
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1377
+ msgid "User ID"
1378
+ msgstr "מזהה משתמש"
1379
+
1380
+ #: templates/account.php403, templates/account.php721,
1381
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1382
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1383
+ #: templates/debug.php632, templates/account/payments.php35,
1384
+ #: templates/debug/logger.php:21
1385
+ msgid "ID"
1386
+ msgstr "מזהה"
1387
+
1388
+ #: templates/account.php:410
1389
+ msgid "Site ID"
1390
+ msgstr "מזהה אתר"
1391
+
1392
+ #: templates/account.php:413
1393
+ msgid "No ID"
1394
+ msgstr "אין מזהה"
1395
+
1396
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1397
+ #: templates/debug.php456, templates/debug.php508,
1398
+ #: templates/account/partials/site.php:227
1399
+ msgid "Public Key"
1400
+ msgstr "מפתח פומבי"
1401
+
1402
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1403
+ #: templates/debug.php509, templates/account/partials/site.php:239
1404
+ msgid "Secret Key"
1405
+ msgstr "מפתח סודי"
1406
+
1407
+ #: templates/account.php:427
1408
+ msgctxt "as secret encryption key missing"
1409
+ msgid "No Secret"
1410
+ msgstr "אין מפתח סודי"
1411
+
1412
+ #: templates/account.php454, templates/account/partials/site.php120,
1413
+ #: templates/account/partials/site.php:122
1414
+ msgid "Trial"
1415
+ msgstr "ניסיון"
1416
+
1417
+ #: templates/account.php481, templates/debug.php561,
1418
+ #: templates/account/partials/site.php:260
1419
+ msgid "License Key"
1420
+ msgstr "License Key"
1421
+
1422
+ #: templates/account.php:512
1423
+ msgid "Join the Beta program"
1424
+ msgstr "Join the Beta program"
1425
+
1426
+ #: templates/account.php:518
1427
+ msgid "not verified"
1428
+ msgstr "לא מאומת"
1429
+
1430
+ #: templates/account.php527, templates/account/partials/addon.php:190
1431
+ msgid "Expired"
1432
+ msgstr "פג תוקף"
1433
+
1434
+ #: templates/account.php:587
1435
+ msgid "Premium version"
1436
+ msgstr "גירסת פרימיום"
1437
+
1438
+ #: templates/account.php:589
1439
+ msgid "Free version"
1440
+ msgstr "גירסה חינאמית"
1441
+
1442
+ #: templates/account.php:601
1443
+ msgid "Verify Email"
1444
+ msgstr "אמת כתובת דוא\"ל"
1445
+
1446
+ #: templates/account.php:615
1447
+ msgid "Download %s Version"
1448
+ msgstr "הורד גרסת %s"
1449
+
1450
+ #: templates/account.php:631
1451
+ msgid "Download Paid Version"
1452
+ msgstr "Download Paid Version"
1453
+
1454
+ #: templates/account.php649, templates/account.php892,
1455
+ #: templates/account/partials/site.php248,
1456
+ #: templates/account/partials/site.php:270
1457
+ msgctxt "verb"
1458
+ msgid "Show"
1459
+ msgstr "הצג"
1460
+
1461
+ #: templates/account.php:664
1462
+ msgid "What is your %s?"
1463
+ msgstr "מה ה%s שלך?"
1464
+
1465
+ #: templates/account.php672, templates/account/billing.php:21
1466
+ msgctxt "verb"
1467
+ msgid "Edit"
1468
+ msgstr "ערוך"
1469
+
1470
+ #: templates/account.php676, templates/forms/user-change.php:27
1471
+ msgid "Change User"
1472
+ msgstr "Change User"
1473
+
1474
+ #: templates/account.php:700
1475
+ msgid "Sites"
1476
+ msgstr "אתרים"
1477
+
1478
+ #: templates/account.php:713
1479
+ msgid "Search by address"
1480
+ msgstr "חפש לפי כתובת"
1481
+
1482
+ #: templates/account.php722, templates/debug.php:366
1483
+ msgid "Address"
1484
+ msgstr "כתובת"
1485
+
1486
+ #: templates/account.php:723
1487
+ msgid "License"
1488
+ msgstr "רישיון"
1489
+
1490
+ #: templates/account.php:724
1491
+ msgid "Plan"
1492
+ msgstr "חבילה"
1493
+
1494
+ #: templates/account.php:757
1495
+ msgctxt "as software license"
1496
+ msgid "License"
1497
+ msgstr "רישיון"
1498
+
1499
+ #: templates/account.php:886
1500
+ msgctxt "verb"
1501
+ msgid "Hide"
1502
+ msgstr "הסתר"
1503
+
1504
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1505
+ msgid "Processing"
1506
+ msgstr "Processing"
1507
+
1508
+ #: templates/account.php:911
1509
+ msgid "Get updates for bleeding edge Beta versions of %s."
1510
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1511
+
1512
+ #: templates/account.php:969
1513
+ msgid "Cancelling %s"
1514
+ msgstr "Cancelling %s"
1515
+
1516
+ #: templates/account.php969, templates/account.php986,
1517
+ #: templates/forms/subscription-cancellation.php27,
1518
+ #: templates/forms/deactivation/form.php:133
1519
+ msgid "trial"
1520
+ msgstr "trial"
1521
+
1522
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1523
+ msgid "Cancelling %s..."
1524
+ msgstr "Cancelling %s..."
1525
+
1526
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1527
+ #: templates/forms/deactivation/form.php:134
1528
+ msgid "subscription"
1529
+ msgstr "subscription"
1530
+
1531
+ #: templates/account.php:1001
1532
+ 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?"
1533
+ msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
1534
+
1535
+ #: templates/account.php:1075
1536
+ msgid "Disabling white-label mode"
1537
+ msgstr "Disabling white-label mode"
1538
+
1539
+ #: templates/account.php:1076
1540
+ msgid "Enabling white-label mode"
1541
+ msgstr "Enabling white-label mode"
1542
+
1543
+ #: templates/add-ons.php:38
1544
+ msgid "View details"
1545
+ msgstr "פרטים נוספים"
1546
+
1547
+ #: templates/add-ons.php:48
1548
+ msgid "Add Ons for %s"
1549
+ msgstr "הרחבות עבור %s"
1550
+
1551
+ #: templates/add-ons.php:58
1552
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1554
+
1555
+ #: templates/add-ons.php:229
1556
+ msgctxt "active add-on"
1557
+ msgid "Active"
1558
+ msgstr "Active"
1559
+
1560
+ #: templates/add-ons.php:230
1561
+ msgctxt "installed add-on"
1562
+ msgid "Installed"
1563
+ msgstr "Installed"
1564
+
1565
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1566
+ #: templates/forms/resend-key.php:77
1567
+ msgctxt "as close a window"
1568
+ msgid "Dismiss"
1569
+ msgstr "סגירה"
1570
+
1571
+ #: templates/auto-installation.php:45
1572
+ msgid "%s sec"
1573
+ msgstr "%s שניות"
1574
+
1575
+ #: templates/auto-installation.php:83
1576
+ msgid "Automatic Installation"
1577
+ msgstr "התקנה אוטומטית"
1578
+
1579
+ #: templates/auto-installation.php:93
1580
+ 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."
1581
+ msgstr "הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו."
1582
+
1583
+ #: templates/auto-installation.php:104
1584
+ 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."
1585
+ msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום מבלי לרענן את הדפדפן."
1586
+
1587
+ #: templates/auto-installation.php:109
1588
+ msgid "Cancel Installation"
1589
+ msgstr "בטל התקנה"
1590
+
1591
+ #: templates/checkout.php:180
1592
+ msgid "Checkout"
1593
+ msgstr "Checkout"
1594
+
1595
+ #: templates/checkout.php:180
1596
+ msgid "PCI compliant"
1597
+ msgstr "עומד בתקן PCI"
1598
+
1599
+ #. translators: %s: name (e.g. Hey John,)
1600
+ #: templates/connect.php:112
1601
+ msgctxt "greeting"
1602
+ msgid "Hey %s,"
1603
+ msgstr "היי %s,"
1604
+
1605
+ #: templates/connect.php:162
1606
+ msgid "Allow & Continue"
1607
+ msgstr "אפשר\\י והמשכ\\י"
1608
+
1609
+ #: templates/connect.php:166
1610
+ msgid "Re-send activation email"
1611
+ msgstr "שליחה חוזרת של מייל האקטיבציה"
1612
+
1613
+ #: templates/connect.php:170
1614
+ msgid "Thanks %s!"
1615
+ msgstr "תודה %s!"
1616
+
1617
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1618
+ msgid "Agree & Activate License"
1619
+ msgstr "הסכמה והפעלת רישיון"
1620
+
1621
+ #: templates/connect.php:184
1622
+ msgid "Welcome to %s! To get started, please enter your license key:"
1623
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1624
+
1625
+ #: templates/connect.php:191
1626
+ 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."
1627
+ 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."
1628
+
1629
+ #: templates/connect.php:192
1630
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
+
1633
+ #: templates/connect.php:198
1634
+ 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."
1635
+ 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."
1636
+
1637
+ #: templates/connect.php:199
1638
+ 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."
1639
+ 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."
1640
+
1641
+ #: templates/connect.php:233
1642
+ msgid "We're excited to introduce the Freemius network-level integration."
1643
+ msgstr "We're excited to introduce the Freemius network-level integration."
1644
+
1645
+ #: templates/connect.php:236
1646
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1647
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1648
+
1649
+ #: templates/connect.php:238
1650
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
+
1653
+ #: templates/connect.php:240
1654
+ msgid "%s's paid features"
1655
+ msgstr "%s's paid features"
1656
+
1657
+ #: templates/connect.php:245
1658
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
+
1661
+ #: templates/connect.php:247
1662
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
+
1665
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1666
+ #: templates/forms/license-activation.php:49
1667
+ msgid "License key"
1668
+ msgstr "מפתח רישיון"
1669
+
1670
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1671
+ msgid "Can't find your license key?"
1672
+ msgstr "האם אינך מוצא את מפתח הרישיון?"
1673
+
1674
+ #: templates/connect.php318, templates/connect.php700,
1675
+ #: templates/forms/deactivation/retry-skip.php:20
1676
+ msgctxt "verb"
1677
+ msgid "Skip"
1678
+ msgstr "דלג"
1679
+
1680
+ #: templates/connect.php:321
1681
+ msgid "Delegate to Site Admins"
1682
+ msgstr "האצלה למנהלי האתרים"
1683
+
1684
+ #: templates/connect.php:321
1685
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1686
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1687
+
1688
+ #: templates/connect.php:346
1689
+ msgid "License issues?"
1690
+ msgstr "License issues?"
1691
+
1692
+ #: templates/connect.php:362
1693
+ msgid "Your Profile Overview"
1694
+ msgstr "פרטים כלליים על הפרופיל"
1695
+
1696
+ #: templates/connect.php:363
1697
+ msgid "Name and email address"
1698
+ msgstr "שם וכתובת דו\"אל"
1699
+
1700
+ #: templates/connect.php:370
1701
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1702
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1703
+
1704
+ #: templates/connect.php:371
1705
+ msgid "Your Site Overview"
1706
+ msgstr "פרטים כלליים על האתר"
1707
+
1708
+ #: templates/connect.php:372
1709
+ msgid "Site URL, WP version, PHP info"
1710
+ msgstr "Site URL, WP version, PHP info"
1711
+
1712
+ #: templates/connect.php:379
1713
+ msgid "Admin Notices"
1714
+ msgstr "התראות מנהל"
1715
+
1716
+ #: templates/connect.php380, templates/connect.php:398
1717
+ msgid "Updates, announcements, marketing, no spam"
1718
+ msgstr "עדכונים, הכרזות, הודעות שיווקיות, ללא דואר זבל"
1719
+
1720
+ #: templates/connect.php:387
1721
+ msgid "So you can reuse the license when the %s is no longer active."
1722
+ msgstr "So you can reuse the license when the %s is no longer active."
1723
+
1724
+ #: templates/connect.php:388
1725
+ msgid "Current %s Status"
1726
+ msgstr "Current %s Status"
1727
+
1728
+ #: templates/connect.php:389
1729
+ msgid "Active, deactivated, or uninstalled"
1730
+ msgstr "Active, deactivated, or uninstalled"
1731
+
1732
+ #: templates/connect.php:397
1733
+ msgid "Newsletter"
1734
+ msgstr "ניוסלטר"
1735
+
1736
+ #: templates/connect.php:405
1737
+ msgid "Plugins & Themes"
1738
+ msgstr "Plugins & Themes"
1739
+
1740
+ #: templates/connect.php:405
1741
+ msgid "optional"
1742
+ msgstr "optional"
1743
+
1744
+ #: templates/connect.php:406
1745
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+
1748
+ #: templates/connect.php:407
1749
+ msgid "Title, slug, version, and is active"
1750
+ msgstr "Title, slug, version, and is active"
1751
+
1752
+ #: templates/connect.php:424
1753
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+
1756
+ #: templates/connect.php:426
1757
+ msgid "diagnostic data"
1758
+ msgstr "diagnostic data"
1759
+
1760
+ #: templates/connect.php:427
1761
+ msgid "Freemius is our licensing and software updates engine"
1762
+ msgstr "Freemius is our licensing and software updates engine"
1763
+
1764
+ #: templates/connect.php:430
1765
+ msgid "What permissions are being granted?"
1766
+ msgstr "מהן ההרשאות המוענקות?"
1767
+
1768
+ #: templates/connect.php:457
1769
+ msgid "Don't have a license key?"
1770
+ msgstr "האם אין ברשותך מפתח רישיון?"
1771
+
1772
+ #: templates/connect.php:460
1773
+ msgid "Have a license key?"
1774
+ msgstr "האם ברשותך רישיון?"
1775
+
1776
+ #: templates/connect.php:468
1777
+ msgid "Privacy Policy"
1778
+ msgstr "מדיניות פרטיות"
1779
+
1780
+ #: templates/connect.php:470
1781
+ msgid "License Agreement"
1782
+ msgstr "License Agreement"
1783
+
1784
+ #: templates/connect.php:470
1785
+ msgid "Terms of Service"
1786
+ msgstr "תנאי השירות"
1787
+
1788
+ #: templates/connect.php:866
1789
+ msgctxt "as in the process of sending an email"
1790
+ msgid "Sending email"
1791
+ msgstr "שולח דוא\"ל"
1792
+
1793
+ #: templates/connect.php:867
1794
+ msgctxt "as activating plugin"
1795
+ msgid "Activating"
1796
+ msgstr "מפעיל"
1797
+
1798
+ #: templates/contact.php:78
1799
+ msgid "Contact"
1800
+ msgstr "Contact"
1801
+
1802
+ #: templates/debug.php:17
1803
+ msgctxt "as turned off"
1804
+ msgid "Off"
1805
+ msgstr "כבוי"
1806
+
1807
+ #: templates/debug.php:18
1808
+ msgctxt "as turned on"
1809
+ msgid "On"
1810
+ msgstr "דלוק"
1811
+
1812
+ #: templates/debug.php:20
1813
+ msgid "SDK"
1814
+ msgstr "SDK"
1815
+
1816
+ #: templates/debug.php:24
1817
+ msgctxt "as code debugging"
1818
+ msgid "Debugging"
1819
+ msgstr "דיבוג"
1820
+
1821
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1822
+ #: templates/debug.php:510
1823
+ msgid "Actions"
1824
+ msgstr "פעולות"
1825
+
1826
+ #: templates/debug.php:62
1827
+ msgid "Are you sure you want to delete all Freemius data?"
1828
+ msgstr "Are you sure you want to delete all Freemius data?"
1829
+
1830
+ #: templates/debug.php:62
1831
+ msgid "Delete All Accounts"
1832
+ msgstr "מחיקת כל החשבונות"
1833
+
1834
+ #: templates/debug.php:69
1835
+ msgid "Clear API Cache"
1836
+ msgstr "ניקוי מטמון ה-API"
1837
+
1838
+ #: templates/debug.php:77
1839
+ msgid "Clear Updates Transients"
1840
+ msgstr "Clear Updates Transients"
1841
+
1842
+ #: templates/debug.php:84
1843
+ msgid "Sync Data From Server"
1844
+ msgstr "סנכרון מידע מהשרת"
1845
+
1846
+ #: templates/debug.php:93
1847
+ msgid "Migrate Options to Network"
1848
+ msgstr "Migrate Options to Network"
1849
+
1850
+ #: templates/debug.php:98
1851
+ msgid "Load DB Option"
1852
+ msgstr "Load DB Option"
1853
+
1854
+ #: templates/debug.php:101
1855
+ msgid "Set DB Option"
1856
+ msgstr "Set DB Option"
1857
+
1858
+ #: templates/debug.php:180
1859
+ msgid "Key"
1860
+ msgstr "Key"
1861
+
1862
+ #: templates/debug.php:181
1863
+ msgid "Value"
1864
+ msgstr "Value"
1865
+
1866
+ #: templates/debug.php:197
1867
+ msgctxt "as software development kit versions"
1868
+ msgid "SDK Versions"
1869
+ msgstr "גרסאות SDK"
1870
+
1871
+ #: templates/debug.php:202
1872
+ msgid "SDK Path"
1873
+ msgstr "מיקום SDK"
1874
+
1875
+ #: templates/debug.php203, templates/debug.php:242
1876
+ msgid "Module Path"
1877
+ msgstr "Module Path"
1878
+
1879
+ #: templates/debug.php:204
1880
+ msgid "Is Active"
1881
+ msgstr "האם פעיל"
1882
+
1883
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1884
+ msgid "Plugins"
1885
+ msgstr "תוספים"
1886
+
1887
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1888
+ msgid "Themes"
1889
+ msgstr "תבניות"
1890
+
1891
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1892
+ #: templates/debug/scheduled-crons.php:80
1893
+ msgid "Slug"
1894
+ msgstr "מזהה כתובת"
1895
+
1896
+ #: templates/debug.php239, templates/debug.php:453
1897
+ msgid "Title"
1898
+ msgstr "כותרת"
1899
+
1900
+ #: templates/debug.php:240
1901
+ msgctxt "as application program interface"
1902
+ msgid "API"
1903
+ msgstr "API"
1904
+
1905
+ #: templates/debug.php:241
1906
+ msgid "Freemius State"
1907
+ msgstr "מצב פרימיוס"
1908
+
1909
+ #: templates/debug.php:245
1910
+ msgid "Network Blog"
1911
+ msgstr "Network Blog"
1912
+
1913
+ #: templates/debug.php:246
1914
+ msgid "Network User"
1915
+ msgstr "משתמש רשת"
1916
+
1917
+ #: templates/debug.php:283
1918
+ msgctxt "as connection was successful"
1919
+ msgid "Connected"
1920
+ msgstr "מחובר"
1921
+
1922
+ #: templates/debug.php:284
1923
+ msgctxt "as connection blocked"
1924
+ msgid "Blocked"
1925
+ msgstr "חסום"
1926
+
1927
+ #: templates/debug.php:320
1928
+ msgid "Simulate Trial Promotion"
1929
+ msgstr "Simulate Trial Promotion"
1930
+
1931
+ #: templates/debug.php:332
1932
+ msgid "Simulate Network Upgrade"
1933
+ msgstr "סמלוץ עדכון לרשת"
1934
+
1935
+ #: templates/debug.php:357
1936
+ msgid "%s Installs"
1937
+ msgstr "%s התקנות"
1938
+
1939
+ #: templates/debug.php:359
1940
+ msgctxt "like websites"
1941
+ msgid "Sites"
1942
+ msgstr "אתרים"
1943
+
1944
+ #: templates/debug.php365, templates/account/partials/site.php:156
1945
+ msgid "Blog ID"
1946
+ msgstr "מזהה בלוג"
1947
+
1948
+ #: templates/debug.php:370
1949
+ msgid "License ID"
1950
+ msgstr "License ID"
1951
+
1952
+ #: templates/debug.php434, templates/debug.php533,
1953
+ #: templates/account/partials/addon.php:435
1954
+ msgctxt "verb"
1955
+ msgid "Delete"
1956
+ msgstr "מחק"
1957
+
1958
+ #: templates/debug.php:448
1959
+ msgid "Add Ons of module %s"
1960
+ msgstr "Add Ons of module %s"
1961
+
1962
+ #: templates/debug.php:500
1963
+ msgid "Users"
1964
+ msgstr "משתמשים"
1965
+
1966
+ #: templates/debug.php:507
1967
+ msgid "Verified"
1968
+ msgstr "מאומת"
1969
+
1970
+ #: templates/debug.php:549
1971
+ msgid "%s Licenses"
1972
+ msgstr "%s Licenses"
1973
+
1974
+ #: templates/debug.php:554
1975
+ msgid "Plugin ID"
1976
+ msgstr "Plugin ID"
1977
+
1978
+ #: templates/debug.php:556
1979
+ msgid "Plan ID"
1980
+ msgstr "Plan ID"
1981
+
1982
+ #: templates/debug.php:557
1983
+ msgid "Quota"
1984
+ msgstr "Quota"
1985
+
1986
+ #: templates/debug.php:558
1987
+ msgid "Activated"
1988
+ msgstr "Activated"
1989
+
1990
+ #: templates/debug.php:559
1991
+ msgid "Blocking"
1992
+ msgstr "Blocking"
1993
+
1994
+ #: templates/debug.php560, templates/debug.php631,
1995
+ #: templates/debug/logger.php:22
1996
+ msgid "Type"
1997
+ msgstr "סוג"
1998
+
1999
+ #: templates/debug.php:562
2000
+ msgctxt "as expiration date"
2001
+ msgid "Expiration"
2002
+ msgstr "תפוגה"
2003
+
2004
+ #: templates/debug.php:590
2005
+ msgid "Debug Log"
2006
+ msgstr "Debug Log"
2007
+
2008
+ #: templates/debug.php:594
2009
+ msgid "All Types"
2010
+ msgstr "כל הסוגים"
2011
+
2012
+ #: templates/debug.php:601
2013
+ msgid "All Requests"
2014
+ msgstr "כל הבקשות"
2015
+
2016
+ #: templates/debug.php606, templates/debug.php635,
2017
+ #: templates/debug/logger.php:25
2018
+ msgid "File"
2019
+ msgstr "קובץ"
2020
+
2021
+ #: templates/debug.php607, templates/debug.php633,
2022
+ #: templates/debug/logger.php:23
2023
+ msgid "Function"
2024
+ msgstr "פונקציה"
2025
+
2026
+ #: templates/debug.php:608
2027
+ msgid "Process ID"
2028
+ msgstr "Process ID"
2029
+
2030
+ #: templates/debug.php:609
2031
+ msgid "Logger"
2032
+ msgstr "Logger"
2033
+
2034
+ #: templates/debug.php610, templates/debug.php634,
2035
+ #: templates/debug/logger.php:24
2036
+ msgid "Message"
2037
+ msgstr "הודעה"
2038
+
2039
+ #: templates/debug.php:612
2040
+ msgid "Filter"
2041
+ msgstr "פילטר"
2042
+
2043
+ #: templates/debug.php:620
2044
+ msgid "Download"
2045
+ msgstr "הורדה"
2046
+
2047
+ #: templates/debug.php636, templates/debug/logger.php:26
2048
+ msgid "Timestamp"
2049
+ msgstr "Timestamp"
2050
+
2051
+ #: templates/secure-https-header.php:28
2052
+ msgid "Secure HTTPS %s page, running from an external domain"
2053
+ msgstr "Secure HTTPS %s page, running from an external domain"
2054
+
2055
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2056
+ #: templates/plugin-info/features.php:43
2057
+ msgid "Support"
2058
+ msgstr "תמיכה"
2059
+
2060
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2061
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2062
+ msgctxt "milliseconds"
2063
+ msgid "ms"
2064
+ msgstr "ms"
2065
+
2066
+ #: includes/debug/debug-bar-start.php:41
2067
+ msgid "Freemius API"
2068
+ msgstr "Freemius API"
2069
+
2070
+ #: includes/debug/debug-bar-start.php:42
2071
+ msgid "Requests"
2072
+ msgstr "Requests"
2073
+
2074
+ #: templates/account/billing.php:22
2075
+ msgctxt "verb"
2076
+ msgid "Update"
2077
+ msgstr "עדכן"
2078
+
2079
+ #: templates/account/billing.php:33
2080
+ msgid "Billing"
2081
+ msgstr "בילינג"
2082
+
2083
+ #: templates/account/billing.php38, templates/account/billing.php:38
2084
+ msgid "Business name"
2085
+ msgstr "שם עסק"
2086
+
2087
+ #: templates/account/billing.php39, templates/account/billing.php:39
2088
+ msgid "Tax / VAT ID"
2089
+ msgstr "ח.פ."
2090
+
2091
+ #: templates/account/billing.php42, templates/account/billing.php42,
2092
+ #: templates/account/billing.php43, templates/account/billing.php:43
2093
+ msgid "Address Line %d"
2094
+ msgstr "כתובת %s"
2095
+
2096
+ #: templates/account/billing.php46, templates/account/billing.php:46
2097
+ msgid "City"
2098
+ msgstr "עיר"
2099
+
2100
+ #: templates/account/billing.php46, templates/account/billing.php:46
2101
+ msgid "Town"
2102
+ msgstr "כפר"
2103
+
2104
+ #: templates/account/billing.php47, templates/account/billing.php:47
2105
+ msgid "ZIP / Postal Code"
2106
+ msgstr "מיקוד / תא דואר"
2107
+
2108
+ #: templates/account/billing.php:302
2109
+ msgid "Country"
2110
+ msgstr "מדינה"
2111
+
2112
+ #: templates/account/billing.php:304
2113
+ msgid "Select Country"
2114
+ msgstr "בחר מדינה"
2115
+
2116
+ #: templates/account/billing.php311, templates/account/billing.php:312
2117
+ msgid "State"
2118
+ msgstr "מחוז/מדינה"
2119
+
2120
+ #: templates/account/billing.php311, templates/account/billing.php:312
2121
+ msgid "Province"
2122
+ msgstr "פרובינציה"
2123
+
2124
+ #: templates/account/payments.php:29
2125
+ msgid "Payments"
2126
+ msgstr "תשלומים"
2127
+
2128
+ #: templates/account/payments.php:36
2129
+ msgid "Date"
2130
+ msgstr "תאריך"
2131
+
2132
+ #: templates/account/payments.php:37
2133
+ msgid "Amount"
2134
+ msgstr "סכום"
2135
+
2136
+ #: templates/account/payments.php38, templates/account/payments.php:50
2137
+ msgid "Invoice"
2138
+ msgstr "חשבונית"
2139
+
2140
+ #: templates/debug/api-calls.php:56
2141
+ msgid "API"
2142
+ msgstr "API"
2143
+
2144
+ #: templates/debug/api-calls.php:68
2145
+ msgid "Method"
2146
+ msgstr "Method"
2147
+
2148
+ #: templates/debug/api-calls.php:69
2149
+ msgid "Code"
2150
+ msgstr "Code"
2151
+
2152
+ #: templates/debug/api-calls.php:70
2153
+ msgid "Length"
2154
+ msgstr "Length"
2155
+
2156
+ #: templates/debug/api-calls.php:71
2157
+ msgctxt "as file/folder path"
2158
+ msgid "Path"
2159
+ msgstr "נתיב"
2160
+
2161
+ #: templates/debug/api-calls.php:73
2162
+ msgid "Body"
2163
+ msgstr "Body"
2164
+
2165
+ #: templates/debug/api-calls.php:75
2166
+ msgid "Result"
2167
+ msgstr "Result"
2168
+
2169
+ #: templates/debug/api-calls.php:76
2170
+ msgid "Start"
2171
+ msgstr "Start"
2172
+
2173
+ #: templates/debug/api-calls.php:77
2174
+ msgid "End"
2175
+ msgstr "End"
2176
+
2177
+ #: templates/debug/logger.php:15
2178
+ msgid "Log"
2179
+ msgstr "Log"
2180
+
2181
+ #. translators: %s: time period (e.g. In "2 hours")
2182
+ #: templates/debug/plugins-themes-sync.php18,
2183
+ #: templates/debug/scheduled-crons.php:91
2184
+ msgid "In %s"
2185
+ msgstr "בעוד %s"
2186
+
2187
+ #. translators: %s: time period (e.g. "2 hours" ago)
2188
+ #: templates/debug/plugins-themes-sync.php20,
2189
+ #: templates/debug/scheduled-crons.php:93
2190
+ msgid "%s ago"
2191
+ msgstr "לפני %s"
2192
+
2193
+ #: templates/debug/plugins-themes-sync.php21,
2194
+ #: templates/debug/scheduled-crons.php:74
2195
+ msgctxt "seconds"
2196
+ msgid "sec"
2197
+ msgstr "sec"
2198
+
2199
+ #: templates/debug/plugins-themes-sync.php:23
2200
+ msgid "Plugins & Themes Sync"
2201
+ msgstr "Plugins & Themes Sync"
2202
+
2203
+ #: templates/debug/plugins-themes-sync.php:28
2204
+ msgid "Total"
2205
+ msgstr "Total"
2206
+
2207
+ #: templates/debug/plugins-themes-sync.php29,
2208
+ #: templates/debug/scheduled-crons.php:84
2209
+ msgid "Last"
2210
+ msgstr "Last"
2211
+
2212
+ #: templates/debug/scheduled-crons.php:76
2213
+ msgid "Scheduled Crons"
2214
+ msgstr "Scheduled Crons"
2215
+
2216
+ #: templates/debug/scheduled-crons.php:81
2217
+ msgid "Module"
2218
+ msgstr "מודול"
2219
+
2220
+ #: templates/debug/scheduled-crons.php:82
2221
+ msgid "Module Type"
2222
+ msgstr "סוג מודול"
2223
+
2224
+ #: templates/debug/scheduled-crons.php:83
2225
+ msgid "Cron Type"
2226
+ msgstr "Cron Type"
2227
+
2228
+ #: templates/debug/scheduled-crons.php:85
2229
+ msgid "Next"
2230
+ msgstr "Next"
2231
+
2232
+ #: templates/forms/affiliation.php:82
2233
+ msgid "Non-expiring"
2234
+ msgstr "Non-expiring"
2235
+
2236
+ #: templates/forms/affiliation.php:85
2237
+ msgid "Apply to become an affiliate"
2238
+ msgstr "Apply to become an affiliate"
2239
+
2240
+ #: templates/forms/affiliation.php:107
2241
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2242
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2243
+
2244
+ #: templates/forms/affiliation.php:122
2245
+ 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."
2246
+ 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."
2247
+
2248
+ #: templates/forms/affiliation.php:125
2249
+ msgid "Your affiliation account was temporarily suspended."
2250
+ msgstr "Your affiliation account was temporarily suspended."
2251
+
2252
+ #: templates/forms/affiliation.php:128
2253
+ 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."
2254
+ 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."
2255
+
2256
+ #: templates/forms/affiliation.php:131
2257
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2258
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2259
+
2260
+ #: templates/forms/affiliation.php:144
2261
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2262
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2263
+
2264
+ #: templates/forms/affiliation.php:145
2265
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2266
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2267
+
2268
+ #: templates/forms/affiliation.php:148
2269
+ msgid "Program Summary"
2270
+ msgstr "Program Summary"
2271
+
2272
+ #: templates/forms/affiliation.php:150
2273
+ msgid "%s commission when a customer purchases a new license."
2274
+ msgstr "%s commission when a customer purchases a new license."
2275
+
2276
+ #: templates/forms/affiliation.php:152
2277
+ msgid "Get commission for automated subscription renewals."
2278
+ msgstr "Get commission for automated subscription renewals."
2279
+
2280
+ #: templates/forms/affiliation.php:155
2281
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2282
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2283
+
2284
+ #: templates/forms/affiliation.php:158
2285
+ msgid "Unlimited commissions."
2286
+ msgstr "Unlimited commissions."
2287
+
2288
+ #: templates/forms/affiliation.php:160
2289
+ msgid "%s minimum payout amount."
2290
+ msgstr "%s minimum payout amount."
2291
+
2292
+ #: templates/forms/affiliation.php:161
2293
+ msgid "Payouts are in USD and processed monthly via PayPal."
2294
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2295
+
2296
+ #: templates/forms/affiliation.php:162
2297
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2298
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2299
+
2300
+ #: templates/forms/affiliation.php:165
2301
+ msgid "Affiliate"
2302
+ msgstr "Affiliate"
2303
+
2304
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2305
+ msgid "Email address"
2306
+ msgstr "כתובת דוא\"ל"
2307
+
2308
+ #: templates/forms/affiliation.php:172
2309
+ msgid "Full name"
2310
+ msgstr "Full name"
2311
+
2312
+ #: templates/forms/affiliation.php:176
2313
+ msgid "PayPal account email address"
2314
+ msgstr "PayPal account email address"
2315
+
2316
+ #: templates/forms/affiliation.php:180
2317
+ msgid "Where are you going to promote the %s?"
2318
+ msgstr "Where are you going to promote the %s?"
2319
+
2320
+ #: templates/forms/affiliation.php:182
2321
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2322
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2323
+
2324
+ #: templates/forms/affiliation.php:184
2325
+ msgid "Add another domain"
2326
+ msgstr "Add another domain"
2327
+
2328
+ #: templates/forms/affiliation.php:188
2329
+ msgid "Extra Domains"
2330
+ msgstr "Extra Domains"
2331
+
2332
+ #: templates/forms/affiliation.php:189
2333
+ msgid "Extra domains where you will be marketing the product from."
2334
+ msgstr "Extra domains where you will be marketing the product from."
2335
+
2336
+ #: templates/forms/affiliation.php:199
2337
+ msgid "Promotion methods"
2338
+ msgstr "Promotion methods"
2339
+
2340
+ #: templates/forms/affiliation.php:202
2341
+ msgid "Social media (Facebook, Twitter, etc.)"
2342
+ msgstr "Social media (Facebook, Twitter, etc.)"
2343
+
2344
+ #: templates/forms/affiliation.php:206
2345
+ msgid "Mobile apps"
2346
+ msgstr "Mobile apps"
2347
+
2348
+ #: templates/forms/affiliation.php:210
2349
+ msgid "Website, email, and social media statistics (optional)"
2350
+ msgstr "Website, email, and social media statistics (optional)"
2351
+
2352
+ #: templates/forms/affiliation.php:213
2353
+ 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)."
2354
+ 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)."
2355
+
2356
+ #: templates/forms/affiliation.php:217
2357
+ msgid "How will you promote us?"
2358
+ msgstr "How will you promote us?"
2359
+
2360
+ #: templates/forms/affiliation.php:220
2361
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2362
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2363
+
2364
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2365
+ msgid "Cancel"
2366
+ msgstr "בטל"
2367
+
2368
+ #: templates/forms/affiliation.php:234
2369
+ msgid "Become an affiliate"
2370
+ msgstr "Become an affiliate"
2371
+
2372
+ #: templates/forms/data-debug-mode.php:25
2373
+ msgid "Please enter the license key to enable the debug mode:"
2374
+ msgstr "Please enter the license key to enable the debug mode:"
2375
+
2376
+ #: templates/forms/data-debug-mode.php:27
2377
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2378
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2379
+
2380
+ #: templates/forms/data-debug-mode.php:32
2381
+ msgid "Submit"
2382
+ msgstr "Submit"
2383
+
2384
+ #: templates/forms/data-debug-mode.php:36
2385
+ msgid "User key"
2386
+ msgstr "User key"
2387
+
2388
+ #: templates/forms/license-activation.php:23
2389
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2390
+ msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה."
2391
+
2392
+ #: templates/forms/license-activation.php:28
2393
+ msgid "Update License"
2394
+ msgstr "עדכון רישיון"
2395
+
2396
+ #: templates/forms/license-activation.php:41
2397
+ 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."
2398
+ msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
2399
+
2400
+ #: templates/forms/license-activation.php:183
2401
+ msgid "Associate with the license owner's account."
2402
+ msgstr "Associate with the license owner's account."
2403
+
2404
+ #: templates/forms/optout.php:30
2405
+ msgctxt "verb"
2406
+ msgid "Opt Out"
2407
+ msgstr "Opt Out"
2408
+
2409
+ #: templates/forms/optout.php:31
2410
+ msgctxt "verb"
2411
+ msgid "Opt In"
2412
+ msgstr "Opt In"
2413
+
2414
+ #: templates/forms/optout.php:34
2415
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2417
+
2418
+ #: templates/forms/optout.php:36
2419
+ msgid "Warning: Opting out will block automatic updates"
2420
+ msgstr "Warning: Opting out will block automatic updates"
2421
+
2422
+ #: templates/forms/optout.php:37
2423
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2425
+
2426
+ #: templates/forms/optout.php:39
2427
+ msgid "I'd like to keep automatic updates"
2428
+ msgstr "I'd like to keep automatic updates"
2429
+
2430
+ #: templates/forms/optout.php:44
2431
+ 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."
2432
+ 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."
2433
+
2434
+ #: templates/forms/optout.php:45
2435
+ msgid "On second thought - I want to continue helping"
2436
+ msgstr "On second thought - I want to continue helping"
2437
+
2438
+ #: templates/forms/optout.php:49
2439
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2440
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2441
+
2442
+ #: templates/forms/optout.php:74
2443
+ msgid "Plugins & themes tracking"
2444
+ msgstr "Plugins & themes tracking"
2445
+
2446
+ #: templates/forms/optout.php:261
2447
+ msgid "Saved"
2448
+ msgstr "Saved"
2449
+
2450
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2451
+ msgid "There is a new version of %s available."
2452
+ msgstr "יש גרסה חדשה עבור ה%s."
2453
+
2454
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2455
+ msgid " %s to access version %s security & feature updates, and support."
2456
+ msgstr " %s to access version %s security & feature updates, and support."
2457
+
2458
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2459
+ msgid "New Version Available"
2460
+ msgstr "יש גרסה חדשה"
2461
+
2462
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2463
+ msgctxt "close a window"
2464
+ msgid "Dismiss"
2465
+ msgstr "סגירה"
2466
+
2467
+ #: templates/forms/resend-key.php:21
2468
+ msgid "Send License Key"
2469
+ msgstr "שליחת מפתח רישיון"
2470
+
2471
+ #: templates/forms/resend-key.php:57
2472
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2473
+ msgstr "הזן את כתובת הדואל שאיתה שידרגת כדי לקבל את הרישיון שוב."
2474
+
2475
+ #: templates/forms/subscription-cancellation.php:37
2476
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2477
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2478
+
2479
+ #: templates/forms/subscription-cancellation.php:47
2480
+ 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?"
2481
+ 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?"
2482
+
2483
+ #: templates/forms/subscription-cancellation.php:52
2484
+ msgid "license"
2485
+ msgstr "license"
2486
+
2487
+ #: templates/forms/subscription-cancellation.php:57
2488
+ 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."
2489
+ 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."
2490
+
2491
+ #: templates/forms/subscription-cancellation.php:68
2492
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2493
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2494
+
2495
+ #: templates/forms/subscription-cancellation.php:103
2496
+ 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."
2497
+ 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."
2498
+
2499
+ #: templates/forms/subscription-cancellation.php:136
2500
+ msgid "Cancel %s?"
2501
+ msgstr "Cancel %s?"
2502
+
2503
+ #: templates/forms/subscription-cancellation.php:143
2504
+ msgid "Proceed"
2505
+ msgstr "Proceed"
2506
+
2507
+ #: templates/forms/subscription-cancellation.php191,
2508
+ #: templates/forms/deactivation/form.php:171
2509
+ msgid "Cancel %s & Proceed"
2510
+ msgstr "Cancel %s & Proceed"
2511
+
2512
+ #: templates/forms/trial-start.php:22
2513
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2514
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2515
+
2516
+ #: templates/forms/trial-start.php:28
2517
+ 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."
2518
+ 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."
2519
+
2520
+ #: templates/forms/user-change.php:26
2521
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2522
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2523
+
2524
+ #: templates/forms/user-change.php:28
2525
+ msgid "I Agree - Change User"
2526
+ msgstr "I Agree - Change User"
2527
+
2528
+ #: templates/forms/user-change.php:30
2529
+ msgid "Enter email address"
2530
+ msgstr "Enter email address"
2531
+
2532
+ #: templates/forms/user-change.php:81
2533
+ msgctxt "close window"
2534
+ msgid "Dismiss"
2535
+ msgstr "סגירה"
2536
+
2537
+ #: templates/js/style-premium-theme.php:39
2538
+ msgid "Premium"
2539
+ msgstr "Premium"
2540
+
2541
+ #: templates/js/style-premium-theme.php:42
2542
+ msgid "Beta"
2543
+ msgstr "Beta"
2544
+
2545
+ #: templates/partials/network-activation.php:27
2546
+ msgid "Activate license on all sites in the network."
2547
+ msgstr "הפעלת רישיון על כל האתרים ברשת."
2548
+
2549
+ #: templates/partials/network-activation.php:28
2550
+ msgid "Apply on all sites in the network."
2551
+ msgstr "יישום על כל האתרים ברשת."
2552
+
2553
+ #: templates/partials/network-activation.php:31
2554
+ msgid "Activate license on all pending sites."
2555
+ msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים."
2556
+
2557
+ #: templates/partials/network-activation.php:32
2558
+ msgid "Apply on all pending sites."
2559
+ msgstr "יישום על כל האתרים התלויים והעומדים."
2560
+
2561
+ #: templates/partials/network-activation.php40,
2562
+ #: templates/partials/network-activation.php:74
2563
+ msgid "allow"
2564
+ msgstr "אפשר"
2565
+
2566
+ #: templates/partials/network-activation.php43,
2567
+ #: templates/partials/network-activation.php:77
2568
+ msgid "delegate"
2569
+ msgstr "האצל"
2570
+
2571
+ #: templates/partials/network-activation.php47,
2572
+ #: templates/partials/network-activation.php:81
2573
+ msgid "skip"
2574
+ msgstr "דלג"
2575
+
2576
+ #: templates/plugin-info/description.php72,
2577
+ #: templates/plugin-info/screenshots.php:31
2578
+ msgid "Click to view full-size screenshot %d"
2579
+ msgstr "Click to view full-size screenshot %d"
2580
+
2581
+ #: templates/plugin-info/features.php:56
2582
+ msgid "Unlimited Updates"
2583
+ msgstr "עדכונים ללא הגבלה"
2584
+
2585
+ #: templates/account/partials/activate-license-button.php:46
2586
+ msgid "Localhost"
2587
+ msgstr "שרת לוקאלי"
2588
+
2589
+ #: templates/account/partials/activate-license-button.php:50
2590
+ msgctxt "as 5 licenses left"
2591
+ msgid "%s left"
2592
+ msgstr "נשארו %s"
2593
+
2594
+ #: templates/account/partials/activate-license-button.php:51
2595
+ msgid "Last license"
2596
+ msgstr "רישיון אחרון"
2597
+
2598
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2599
+ #. subscription'
2600
+ #: templates/account/partials/addon.php:29
2601
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2602
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2603
+
2604
+ #: templates/account/partials/addon.php:185
2605
+ msgid "Cancelled"
2606
+ msgstr "בוטל"
2607
+
2608
+ #: templates/account/partials/addon.php:195
2609
+ msgid "No expiration"
2610
+ msgstr "ללא תפוגה"
2611
+
2612
+ #: templates/account/partials/site.php:189
2613
+ msgid "Owner Name"
2614
+ msgstr "שם הבעלים"
2615
+
2616
+ #: templates/account/partials/site.php:201
2617
+ msgid "Owner Email"
2618
+ msgstr "מייל הבעלים"
2619
+
2620
+ #: templates/account/partials/site.php:213
2621
+ msgid "Owner ID"
2622
+ msgstr "מזהה הבעלים"
2623
+
2624
+ #: templates/account/partials/site.php:286
2625
+ msgid "Subscription"
2626
+ msgstr "מנוי"
2627
+
2628
+ #: templates/forms/deactivation/contact.php:19
2629
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2630
+ msgstr "מצטערים על חוסר הנעימות, אנחנו כאן כדי לעזור אם תאפשר\\י זאת."
2631
+
2632
+ #: templates/forms/deactivation/contact.php:22
2633
+ msgid "Contact Support"
2634
+ msgstr "צור קשר"
2635
+
2636
+ #: templates/forms/deactivation/form.php:64
2637
+ msgid "Anonymous feedback"
2638
+ msgstr "פידבק אנונימי"
2639
+
2640
+ #: templates/forms/deactivation/form.php:70
2641
+ msgid "Deactivate"
2642
+ msgstr "כיבוי"
2643
+
2644
+ #: templates/forms/deactivation/form.php:72
2645
+ msgid "Activate %s"
2646
+ msgstr "Activate %s"
2647
+
2648
+ #: templates/forms/deactivation/form.php:87
2649
+ msgid "Quick Feedback"
2650
+ msgstr "Quick Feedback"
2651
+
2652
+ #: templates/forms/deactivation/form.php:91
2653
+ msgid "If you have a moment, please let us know why you are %s"
2654
+ msgstr "If you have a moment, please let us know why you are %s"
2655
+
2656
+ #: templates/forms/deactivation/form.php:91
2657
+ msgid "deactivating"
2658
+ msgstr "deactivating"
2659
+
2660
+ #: templates/forms/deactivation/form.php:91
2661
+ msgid "switching"
2662
+ msgstr "switching"
2663
+
2664
+ #: templates/forms/deactivation/form.php:369
2665
+ msgid "Submit & %s"
2666
+ msgstr "Submit & %s"
2667
+
2668
+ #: templates/forms/deactivation/form.php:390
2669
+ msgid "Kindly tell us the reason so we can improve."
2670
+ msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר."
2671
+
2672
+ #: templates/forms/deactivation/form.php:515
2673
+ msgid "Yes - %s"
2674
+ msgstr "Yes - %s"
2675
+
2676
+ #: templates/forms/deactivation/form.php:522
2677
+ msgid "Skip & %s"
2678
+ msgstr "דלג ו%s"
2679
+
2680
+ #: templates/forms/deactivation/retry-skip.php:21
2681
+ msgid "Click here to use the plugin anonymously"
2682
+ msgstr "Click here to use the plugin anonymously"
2683
+
2684
+ #: templates/forms/deactivation/retry-skip.php:23
2685
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2686
+ msgstr "אולי פספסת את זה אבל אינך חייב\\ת לשתף כל מידע איתנו, ביכולתך %s על שיתוף המידע."
freemius/languages/freemius-hu_HU.po ADDED
@@ -0,0 +1,2685 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 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: 2021-02-03 09:56+0000\n"
11
+ "Last-Translator: Vova Feldman <vova@freemius.com>\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.php1919, templates/account.php:912
25
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
26
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
27
+
28
+ #: includes/class-freemius.php:1926
29
+ msgid "Would you like to proceed with the update?"
30
+ msgstr "Would you like to proceed with the update?"
31
+
32
+ #: includes/class-freemius.php:2138
33
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
34
+ msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
+
36
+ #: includes/class-freemius.php:2140
37
+ msgid "Error"
38
+ msgstr "Hiba"
39
+
40
+ #: includes/class-freemius.php:2540
41
+ msgid "I found a better %s"
42
+ msgstr "Jobb %st találtam"
43
+
44
+ #: includes/class-freemius.php:2542
45
+ msgid "What's the %s's name?"
46
+ msgstr "Mi a %s neve?"
47
+
48
+ #: includes/class-freemius.php:2548
49
+ msgid "It's a temporary %s. I'm just debugging an issue."
50
+ msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom."
51
+
52
+ #: includes/class-freemius.php:2550
53
+ msgid "Deactivation"
54
+ msgstr "Deaktiválás"
55
+
56
+ #: includes/class-freemius.php:2551
57
+ msgid "Theme Switch"
58
+ msgstr "Sablon váltás"
59
+
60
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
61
+ #: templates/forms/user-change.php:29
62
+ msgid "Other"
63
+ msgstr "Egyéb"
64
+
65
+ #: includes/class-freemius.php:2568
66
+ msgid "I no longer need the %s"
67
+ msgstr "I no longer need the %s"
68
+
69
+ #: includes/class-freemius.php:2575
70
+ msgid "I only needed the %s for a short period"
71
+ msgstr "I only needed the %s for a short period"
72
+
73
+ #: includes/class-freemius.php:2581
74
+ msgid "The %s broke my site"
75
+ msgstr "The %s broke my site"
76
+
77
+ #: includes/class-freemius.php:2588
78
+ msgid "The %s suddenly stopped working"
79
+ msgstr "The %s suddenly stopped working"
80
+
81
+ #: includes/class-freemius.php:2598
82
+ msgid "I can't pay for it anymore"
83
+ msgstr "Nem tudom tovább fizetni"
84
+
85
+ #: includes/class-freemius.php:2600
86
+ msgid "What price would you feel comfortable paying?"
87
+ msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?"
88
+
89
+ #: includes/class-freemius.php:2606
90
+ msgid "I don't like to share my information with you"
91
+ msgstr "Nem szeretném megosztani veletek az információt"
92
+
93
+ #: includes/class-freemius.php:2627
94
+ msgid "The %s didn't work"
95
+ msgstr "A %s nem működött"
96
+
97
+ #: includes/class-freemius.php:2637
98
+ msgid "I couldn't understand how to make it work"
99
+ msgstr "Nem értettem, hogy kell használni"
100
+
101
+ #: includes/class-freemius.php:2645
102
+ msgid "The %s is great, but I need specific feature that you don't support"
103
+ msgstr "The %s is great, but I need specific feature that you don't support"
104
+
105
+ #: includes/class-freemius.php:2647
106
+ msgid "What feature?"
107
+ msgstr "Melyik funkcióra van szükséged?"
108
+
109
+ #: includes/class-freemius.php:2651
110
+ msgid "The %s is not working"
111
+ msgstr "A(z) %s nem működik"
112
+
113
+ #: includes/class-freemius.php:2653
114
+ msgid "Kindly share what didn't work so we can fix it for future users..."
115
+ msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..."
116
+
117
+ #: includes/class-freemius.php:2657
118
+ msgid "It's not what I was looking for"
119
+ msgstr "Nem ezt kerestem"
120
+
121
+ #: includes/class-freemius.php:2659
122
+ msgid "What you've been looking for?"
123
+ msgstr "Pontosan mit kerestél?"
124
+
125
+ #: includes/class-freemius.php:2663
126
+ msgid "The %s didn't work as expected"
127
+ msgstr "A %s nem az elvárásoknak megfelelően működött"
128
+
129
+ #: includes/class-freemius.php:2665
130
+ msgid "What did you expect?"
131
+ msgstr "Mire számítottál?"
132
+
133
+ #: includes/class-freemius.php3520, templates/debug.php:20
134
+ msgid "Freemius Debug"
135
+ msgstr "Freemius Debug"
136
+
137
+ #: includes/class-freemius.php:4272
138
+ msgid "I don't know what is cURL or how to install it, help me!"
139
+ msgstr "I don't know what is cURL or how to install it, help me!"
140
+
141
+ #: includes/class-freemius.php:4274
142
+ 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."
143
+ 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."
144
+
145
+ #: includes/class-freemius.php:4281
146
+ 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."
147
+ 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."
148
+
149
+ #: includes/class-freemius.php:4386
150
+ msgid "Yes - do your thing"
151
+ msgstr "Igen - tedd a dolgod"
152
+
153
+ #: includes/class-freemius.php:4391
154
+ msgid "No - just deactivate"
155
+ msgstr "Nem - csak deaktiválom"
156
+
157
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
158
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
159
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
160
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
161
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
162
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
163
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
164
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
165
+ msgctxt "exclamation"
166
+ msgid "Oops"
167
+ msgstr "Hoppá"
168
+
169
+ #: includes/class-freemius.php:4505
170
+ 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."
171
+ 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."
172
+
173
+ #: includes/class-freemius.php:4927
174
+ msgctxt "addonX cannot run without pluginY"
175
+ msgid "%s cannot run without %s."
176
+ msgstr "%s cannot run without %s."
177
+
178
+ #: includes/class-freemius.php:4928
179
+ msgctxt "addonX cannot run..."
180
+ msgid "%s cannot run without the plugin."
181
+ msgstr "%s cannot run without the plugin."
182
+
183
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
184
+ #: includes/class-freemius.php:21180
185
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
186
+ msgstr "Unexpected API error. Please contact the %s's author with the following error."
187
+
188
+ #: includes/class-freemius.php:5857
189
+ msgid "Premium %s version was successfully activated."
190
+ msgstr "Premium %s version was successfully activated."
191
+
192
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
193
+ msgctxt ""
194
+ msgid "W00t"
195
+ msgstr "Fantasztikus"
196
+
197
+ #: includes/class-freemius.php:5884
198
+ msgid "You have a %s license."
199
+ msgstr "You have a %s license."
200
+
201
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
202
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
203
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
204
+ #: includes/class-freemius.php:20930
205
+ msgctxt "interjection expressing joy or exuberance"
206
+ msgid "Yee-haw"
207
+ msgstr "Juhuuu"
208
+
209
+ #: includes/class-freemius.php:6174
210
+ 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."
211
+ 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."
212
+
213
+ #: includes/class-freemius.php:6178
214
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
215
+ msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
+
217
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
218
+ #: templates/account/partials/addon.php:381
219
+ msgid "More information about %s"
220
+ msgstr "More information about %s"
221
+
222
+ #: includes/class-freemius.php:6188
223
+ msgid "Purchase License"
224
+ msgstr "Licensz vásárlása"
225
+
226
+ #: includes/class-freemius.php7125, templates/connect.php:171
227
+ 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."
228
+ 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."
229
+
230
+ #: includes/class-freemius.php:7129
231
+ msgid "start the trial"
232
+ msgstr "próbaidő indítása"
233
+
234
+ #: includes/class-freemius.php7130, templates/connect.php:175
235
+ msgid "complete the install"
236
+ msgstr "befejezd a telepítést"
237
+
238
+ #: includes/class-freemius.php:7249
239
+ msgid "You are just one step away - %s"
240
+ msgstr "Már csak egy lépés van hátra - %s"
241
+
242
+ #: includes/class-freemius.php:7252
243
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
244
+ msgid "Complete \"%s\" Activation Now"
245
+ msgstr "\"%s\" aktiválásának a befejezése most"
246
+
247
+ #: includes/class-freemius.php:7334
248
+ msgid "We made a few tweaks to the %s, %s"
249
+ msgstr "We made a few tweaks to the %s, %s"
250
+
251
+ #: includes/class-freemius.php:7338
252
+ msgid "Opt in to make \"%s\" better!"
253
+ msgstr "Opt in to make \"%s\" better!"
254
+
255
+ #: includes/class-freemius.php:7773
256
+ msgid "The upgrade of %s was successfully completed."
257
+ msgstr "The upgrade of %s was successfully completed."
258
+
259
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
260
+ #: includes/class-fs-plugin-updater.php1282,
261
+ #: includes/class-fs-plugin-updater.php1289,
262
+ #: templates/auto-installation.php:32
263
+ msgid "Add-On"
264
+ msgstr "Kiegészítő"
265
+
266
+ #: includes/class-freemius.php10257, templates/account.php394,
267
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
268
+ msgid "Plugin"
269
+ msgstr "Bővítmény"
270
+
271
+ #: includes/class-freemius.php10258, templates/account.php395,
272
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
273
+ #: templates/forms/deactivation/form.php:71
274
+ msgid "Theme"
275
+ msgstr "Sablon"
276
+
277
+ #: includes/class-freemius.php:13188
278
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
279
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+
281
+ #: includes/class-freemius.php:13202
282
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
283
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+
285
+ #: includes/class-freemius.php:13207
286
+ msgid "User Dashboard"
287
+ msgstr "User Dashboard"
288
+
289
+ #: includes/class-freemius.php:13208
290
+ msgid "revert it now"
291
+ msgstr "revert it now"
292
+
293
+ #: includes/class-freemius.php:13266
294
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
295
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
296
+
297
+ #: includes/class-freemius.php:13339
298
+ msgid "Invalid new user ID or email address."
299
+ msgstr "Invalid new user ID or email address."
300
+
301
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
302
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
303
+ msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
+
305
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
306
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
307
+ msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
+
309
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
310
+ msgid "Change Ownership"
311
+ msgstr "Tulajdonos módosítása"
312
+
313
+ #: includes/class-freemius.php:13977
314
+ msgid "Invalid site details collection."
315
+ msgstr "Invalid site details collection."
316
+
317
+ #: includes/class-freemius.php:14097
318
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
319
+ msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
320
+
321
+ #: includes/class-freemius.php:14099
322
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
323
+ msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
+
325
+ #: includes/class-freemius.php:14373
326
+ msgid "Account is pending activation."
327
+ msgstr "A fiók aktiválása függőben."
328
+
329
+ #: includes/class-freemius.php14485,
330
+ #: templates/forms/premium-versions-upgrade-handler.php:47
331
+ msgid "Buy a license now"
332
+ msgstr "Vásárolj licenszet most"
333
+
334
+ #: includes/class-freemius.php14497,
335
+ #: templates/forms/premium-versions-upgrade-handler.php:46
336
+ msgid "Renew your license now"
337
+ msgstr "Licensz kulcs megújítása"
338
+
339
+ #: includes/class-freemius.php:14501
340
+ msgid "%s to access version %s security & feature updates, and support."
341
+ msgstr "%s to access version %s security & feature updates, and support."
342
+
343
+ #: includes/class-freemius.php:16929
344
+ msgid "%s activation was successfully completed."
345
+ msgstr "%s activation was successfully completed."
346
+
347
+ #: includes/class-freemius.php:16943
348
+ msgid "Your account was successfully activated with the %s plan."
349
+ msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s"
350
+
351
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
352
+ msgid "Your trial has been successfully started."
353
+ msgstr "A próbaidőszakodat sikeresen aktiváltuk."
354
+
355
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
356
+ #: includes/class-freemius.php:17820
357
+ msgid "Couldn't activate %s."
358
+ msgstr "Couldn't activate %s."
359
+
360
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
361
+ #: includes/class-freemius.php:17821
362
+ msgid "Please contact us with the following message:"
363
+ msgstr "Please contact us with the following message:"
364
+
365
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
366
+ msgid "An unknown error has occurred."
367
+ msgstr "An unknown error has occurred."
368
+
369
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
370
+ msgid "Upgrade"
371
+ msgstr "Előfizetés frissítése"
372
+
373
+ #: includes/class-freemius.php:18184
374
+ msgid "Start Trial"
375
+ msgstr "Próbaidő indítása"
376
+
377
+ #: includes/class-freemius.php:18186
378
+ msgid "Pricing"
379
+ msgstr "Árak"
380
+
381
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
382
+ msgid "Affiliation"
383
+ msgstr "Affiliation"
384
+
385
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
386
+ #: templates/account.php242, templates/debug.php:324
387
+ msgid "Account"
388
+ msgstr "Fiók"
389
+
390
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
391
+ #: includes/customizer/class-fs-customizer-support-section.php:60
392
+ msgid "Contact Us"
393
+ msgstr "Kapcsolat"
394
+
395
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
396
+ #: includes/class-freemius.php23354, templates/account.php121,
397
+ #: templates/account/partials/addon.php:44
398
+ msgid "Add-Ons"
399
+ msgstr "Kiegészítők"
400
+
401
+ #: includes/class-freemius.php:18361
402
+ msgctxt "ASCII arrow left icon"
403
+ msgid "&#x2190;"
404
+ msgstr "&#x2190;"
405
+
406
+ #: includes/class-freemius.php:18361
407
+ msgctxt "ASCII arrow right icon"
408
+ msgid "&#x27a4;"
409
+ msgstr "&#x27a4;"
410
+
411
+ #: includes/class-freemius.php18363, templates/pricing.php:109
412
+ msgctxt "noun"
413
+ msgid "Pricing"
414
+ msgstr "Árak"
415
+
416
+ #: includes/class-freemius.php18576,
417
+ #: includes/customizer/class-fs-customizer-support-section.php:67
418
+ msgid "Support Forum"
419
+ msgstr "Támogató fórum"
420
+
421
+ #: includes/class-freemius.php:19550
422
+ msgid "Your email has been successfully verified - you are AWESOME!"
423
+ msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!"
424
+
425
+ #: includes/class-freemius.php:19551
426
+ msgctxt "a positive response"
427
+ msgid "Right on"
428
+ msgstr "Right on"
429
+
430
+ #: includes/class-freemius.php:20057
431
+ msgid "seems like the key you entered doesn't match our records."
432
+ msgstr "seems like the key you entered doesn't match our records."
433
+
434
+ #: includes/class-freemius.php:20081
435
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
436
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+
438
+ #: includes/class-freemius.php:20316
439
+ msgid "Your %s Add-on plan was successfully upgraded."
440
+ msgstr "Your %s Add-on plan was successfully upgraded."
441
+
442
+ #: includes/class-freemius.php:20318
443
+ msgid "%s Add-on was successfully purchased."
444
+ msgstr "%s Add-on was successfully purchased."
445
+
446
+ #: includes/class-freemius.php:20321
447
+ msgid "Download the latest version"
448
+ msgstr "Töltsd le a legfrissebb verziót"
449
+
450
+ #: includes/class-freemius.php:20407
451
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
452
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
453
+
454
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
455
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
456
+ msgid "Error received from the server:"
457
+ msgstr "Error received from the server:"
458
+
459
+ #: includes/class-freemius.php:20423
460
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
461
+ msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
+
463
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
464
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
465
+ msgctxt ""
466
+ msgid "Hmm"
467
+ msgstr "Hmm"
468
+
469
+ #: includes/class-freemius.php:20664
470
+ 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."
471
+ 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."
472
+
473
+ #: includes/class-freemius.php20665, templates/account.php123,
474
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
475
+ msgctxt "trial period"
476
+ msgid "Trial"
477
+ msgstr "Próbaidő"
478
+
479
+ #: includes/class-freemius.php:20670
480
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
481
+ msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
+
483
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
484
+ msgid "Please contact us here"
485
+ msgstr "Please contact us here"
486
+
487
+ #: includes/class-freemius.php:20685
488
+ msgid "Your plan was successfully activated."
489
+ msgstr "Your plan was successfully activated."
490
+
491
+ #: includes/class-freemius.php:20686
492
+ msgid "Your plan was successfully upgraded."
493
+ msgstr "Your plan was successfully upgraded."
494
+
495
+ #: includes/class-freemius.php:20703
496
+ msgid "Your plan was successfully changed to %s."
497
+ msgstr "Your plan was successfully changed to %s."
498
+
499
+ #: includes/class-freemius.php:20719
500
+ msgid "Your license has expired. You can still continue using the free %s forever."
501
+ msgstr "Your license has expired. You can still continue using the free %s forever."
502
+
503
+ #: includes/class-freemius.php:20721
504
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
505
+ msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
+
507
+ #: includes/class-freemius.php:20729
508
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
509
+ msgstr "Your license has been cancelled. If you think it's a mistake, please contact support."
510
+
511
+ #: includes/class-freemius.php:20742
512
+ 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."
513
+ 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."
514
+
515
+ #: includes/class-freemius.php:20768
516
+ msgid "Your free trial has expired. You can still continue using all our free features."
517
+ msgstr "Your free trial has expired. You can still continue using all our free features."
518
+
519
+ #: includes/class-freemius.php:20770
520
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
521
+ msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
+
523
+ #: includes/class-freemius.php:20885
524
+ msgid "It looks like the license could not be activated."
525
+ msgstr "It looks like the license could not be activated."
526
+
527
+ #: includes/class-freemius.php:20927
528
+ msgid "Your license was successfully activated."
529
+ msgstr "Your license was successfully activated."
530
+
531
+ #: includes/class-freemius.php:20953
532
+ msgid "It looks like your site currently doesn't have an active license."
533
+ msgstr "It looks like your site currently doesn't have an active license."
534
+
535
+ #: includes/class-freemius.php:20977
536
+ msgid "It looks like the license deactivation failed."
537
+ msgstr "Úgy tűnik a licensz deaktiválása nem sikerült."
538
+
539
+ #: includes/class-freemius.php:21006
540
+ msgid "Your %s license was successfully deactivated."
541
+ msgstr "Your %s license was successfully deactivated."
542
+
543
+ #: includes/class-freemius.php:21007
544
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
545
+ msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s"
546
+
547
+ #: includes/class-freemius.php:21010
548
+ msgid "O.K"
549
+ msgstr "Rendben"
550
+
551
+ #: includes/class-freemius.php:21063
552
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
553
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
+
555
+ #: includes/class-freemius.php:21072
556
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
557
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
+
559
+ #: includes/class-freemius.php:21114
560
+ msgid "You are already running the %s in a trial mode."
561
+ msgstr "You are already running the %s in a trial mode."
562
+
563
+ #: includes/class-freemius.php:21125
564
+ msgid "You already utilized a trial before."
565
+ msgstr "You already utilized a trial before."
566
+
567
+ #: includes/class-freemius.php:21139
568
+ msgid "Plan %s do not exist, therefore, can't start a trial."
569
+ msgstr "Plan %s do not exist, therefore, can't start a trial."
570
+
571
+ #: includes/class-freemius.php:21150
572
+ msgid "Plan %s does not support a trial period."
573
+ msgstr "Plan %s does not support a trial period."
574
+
575
+ #: includes/class-freemius.php:21161
576
+ msgid "None of the %s's plans supports a trial period."
577
+ msgstr "None of the %s's plans supports a trial period."
578
+
579
+ #: includes/class-freemius.php:21211
580
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
581
+ msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
+
583
+ #: includes/class-freemius.php:21247
584
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
585
+ msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
+
587
+ #: includes/class-freemius.php:21266
588
+ msgid "Your %s free trial was successfully cancelled."
589
+ msgstr "Your %s free trial was successfully cancelled."
590
+
591
+ #: includes/class-freemius.php:21582
592
+ msgid "Version %s was released."
593
+ msgstr "Version %s was released."
594
+
595
+ #: includes/class-freemius.php:21582
596
+ msgid "Please download %s."
597
+ msgstr "Please download %s."
598
+
599
+ #: includes/class-freemius.php:21589
600
+ msgid "the latest %s version here"
601
+ msgstr "the latest %s version here"
602
+
603
+ #: includes/class-freemius.php:21594
604
+ msgid "New"
605
+ msgstr "Új"
606
+
607
+ #: includes/class-freemius.php:21599
608
+ msgid "Seems like you got the latest release."
609
+ msgstr "Seems like you got the latest release."
610
+
611
+ #: includes/class-freemius.php:21600
612
+ msgid "You are all good!"
613
+ msgstr "Minden rendben!"
614
+
615
+ #: includes/class-freemius.php:21903
616
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
617
+ msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
+
619
+ #: includes/class-freemius.php:22043
620
+ msgid "Site successfully opted in."
621
+ msgstr "Site successfully opted in."
622
+
623
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
624
+ msgid "Awesome"
625
+ msgstr "Nagyszerű"
626
+
627
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
628
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
629
+ msgstr "We appreciate your help in making the %s better by letting us track some usage data."
630
+
631
+ #: includes/class-freemius.php:22061
632
+ msgid "Thank you!"
633
+ msgstr "Köszönjük!"
634
+
635
+ #: includes/class-freemius.php:22068
636
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
637
+ msgstr "We will no longer be sending any usage data of %s on %s to %s."
638
+
639
+ #: includes/class-freemius.php:22226
640
+ 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."
641
+ 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."
642
+
643
+ #: includes/class-freemius.php:22232
644
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
645
+ msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
+
647
+ #: includes/class-freemius.php:22237
648
+ msgid "%s is the new owner of the account."
649
+ msgstr "%s is the new owner of the account."
650
+
651
+ #: includes/class-freemius.php:22239
652
+ msgctxt "as congratulations"
653
+ msgid "Congrats"
654
+ msgstr "Gratulálunk"
655
+
656
+ #: includes/class-freemius.php:22275
657
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
658
+ msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
+
660
+ #: includes/class-freemius.php:22287
661
+ msgid "Please provide your full name."
662
+ msgstr "Kérlek add meg a teljes neved!"
663
+
664
+ #: includes/class-freemius.php:22292
665
+ msgid "Your name was successfully updated."
666
+ msgstr "A neved sikeresen frissítettük."
667
+
668
+ #: includes/class-freemius.php:22353
669
+ msgid "You have successfully updated your %s."
670
+ msgstr "You have successfully updated your %s."
671
+
672
+ #: includes/class-freemius.php:22412
673
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
674
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+
676
+ #: includes/class-freemius.php:22415
677
+ msgid "Click here"
678
+ msgstr "Click here"
679
+
680
+ #: includes/class-freemius.php:22513
681
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
682
+ msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
+
684
+ #: includes/class-freemius.php:22514
685
+ msgctxt "advance notice of something that will need attention."
686
+ msgid "Heads up"
687
+ msgstr "Figyelem"
688
+
689
+ #: includes/class-freemius.php:23090
690
+ msgctxt "exclamation"
691
+ msgid "Hey"
692
+ msgstr "Üdv"
693
+
694
+ #: includes/class-freemius.php:23090
695
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
696
+ msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
+
698
+ #: includes/class-freemius.php:23098
699
+ msgid "No commitment for %s days - cancel anytime!"
700
+ msgstr "No commitment for %s days - cancel anytime!"
701
+
702
+ #: includes/class-freemius.php:23099
703
+ msgid "No credit card required"
704
+ msgstr "Bankkártya megadása nem kötelező"
705
+
706
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
707
+ msgctxt "call to action"
708
+ msgid "Start free trial"
709
+ msgstr "Start free trial"
710
+
711
+ #: includes/class-freemius.php:23183
712
+ 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!"
713
+ 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!"
714
+
715
+ #: includes/class-freemius.php:23192
716
+ msgid "Learn more"
717
+ msgstr "Bővebben"
718
+
719
+ #: includes/class-freemius.php23378, templates/account.php558,
720
+ #: templates/account.php708, templates/connect.php179,
721
+ #: templates/connect.php461, templates/forms/license-activation.php27,
722
+ #: templates/account/partials/addon.php:321
723
+ msgid "Activate License"
724
+ msgstr "Licensz aktiválása"
725
+
726
+ #: includes/class-freemius.php23379, templates/account.php652,
727
+ #: templates/account.php707, templates/account/partials/addon.php322,
728
+ #: templates/account/partials/site.php:271
729
+ msgid "Change License"
730
+ msgstr "Licensz módosítása"
731
+
732
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
733
+ msgid "Opt Out"
734
+ msgstr "Leiratkozás"
735
+
736
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
737
+ #: templates/account/partials/site.php49,
738
+ #: templates/account/partials/site.php:169
739
+ msgid "Opt In"
740
+ msgstr "Feliratkozás"
741
+
742
+ #: includes/class-freemius.php:23738
743
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
744
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
+
746
+ #: includes/class-freemius.php:23746
747
+ msgid "Activate %s features"
748
+ msgstr "Activate %s features"
749
+
750
+ #: includes/class-freemius.php:23759
751
+ msgid "Please follow these steps to complete the upgrade"
752
+ msgstr "Please follow these steps to complete the upgrade"
753
+
754
+ #: includes/class-freemius.php:23763
755
+ msgid "Download the latest %s version"
756
+ msgstr "Download the latest %s version"
757
+
758
+ #: includes/class-freemius.php:23767
759
+ msgid "Upload and activate the downloaded version"
760
+ msgstr "Upload and activate the downloaded version"
761
+
762
+ #: includes/class-freemius.php:23769
763
+ msgid "How to upload and activate?"
764
+ msgstr "How to upload and activate?"
765
+
766
+ #: includes/class-freemius.php:23903
767
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
768
+ msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
769
+
770
+ #: includes/class-freemius.php:24072
771
+ msgid "Auto installation only works for opted-in users."
772
+ msgstr "Auto installation only works for opted-in users."
773
+
774
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
775
+ #: includes/class-fs-plugin-updater.php1261,
776
+ #: includes/class-fs-plugin-updater.php:1275
777
+ msgid "Invalid module ID."
778
+ msgstr "Invalid module ID."
779
+
780
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
781
+ msgid "Premium version already active."
782
+ msgstr "Premium version already active."
783
+
784
+ #: includes/class-freemius.php:24098
785
+ msgid "You do not have a valid license to access the premium version."
786
+ msgstr "You do not have a valid license to access the premium version."
787
+
788
+ #: includes/class-freemius.php:24105
789
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
790
+ msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
+
792
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
793
+ msgid "Premium add-on version already installed."
794
+ msgstr "Premium add-on version already installed."
795
+
796
+ #: includes/class-freemius.php:24473
797
+ msgid "View paid features"
798
+ msgstr "Fizetős funkciók megtekintése"
799
+
800
+ #: includes/class-freemius.php:24795
801
+ msgid "Thank you so much for using %s and its add-ons!"
802
+ msgstr "Thank you so much for using %s and its add-ons!"
803
+
804
+ #: includes/class-freemius.php:24796
805
+ msgid "Thank you so much for using %s!"
806
+ msgstr "Thank you so much for using %s!"
807
+
808
+ #: includes/class-freemius.php:24802
809
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
810
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
+
812
+ #: includes/class-freemius.php:24806
813
+ msgid "Thank you so much for using our products!"
814
+ msgstr "Thank you so much for using our products!"
815
+
816
+ #: includes/class-freemius.php:24807
817
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
818
+ msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
+
820
+ #: includes/class-freemius.php:24826
821
+ msgid "%s and its add-ons"
822
+ msgstr "%s and its add-ons"
823
+
824
+ #: includes/class-freemius.php:24835
825
+ msgid "Products"
826
+ msgstr "Termékek"
827
+
828
+ #: includes/class-freemius.php24842, templates/connect.php:275
829
+ msgid "Yes"
830
+ msgstr "Igen"
831
+
832
+ #: includes/class-freemius.php24843, templates/connect.php:276
833
+ msgid "send me security & feature updates, educational content and offers."
834
+ msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat."
835
+
836
+ #: includes/class-freemius.php24844, templates/connect.php:281
837
+ msgid "No"
838
+ msgstr "Nem"
839
+
840
+ #: includes/class-freemius.php24846, templates/connect.php:283
841
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
842
+ msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
843
+
844
+ #: includes/class-freemius.php:24856
845
+ 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 :-)"
846
+ 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 :-)"
847
+
848
+ #: includes/class-freemius.php24858, templates/connect.php:290
849
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
850
+ msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
+
852
+ #: includes/class-freemius.php:25140
853
+ msgid "License key is empty."
854
+ msgstr "A licensz kulcs üres."
855
+
856
+ #: includes/class-fs-plugin-updater.php206,
857
+ #: templates/forms/premium-versions-upgrade-handler.php:57
858
+ msgid "Renew license"
859
+ msgstr "Licensz megújítása"
860
+
861
+ #: includes/class-fs-plugin-updater.php211,
862
+ #: templates/forms/premium-versions-upgrade-handler.php:58
863
+ msgid "Buy license"
864
+ msgstr "Licensz vásárlása"
865
+
866
+ #: includes/class-fs-plugin-updater.php327,
867
+ #: includes/class-fs-plugin-updater.php:360
868
+ msgid "There is a %s of %s available."
869
+ msgstr "There is a %s of %s available."
870
+
871
+ #: includes/class-fs-plugin-updater.php329,
872
+ #: includes/class-fs-plugin-updater.php:365
873
+ msgid "new Beta version"
874
+ msgstr "new Beta version"
875
+
876
+ #: includes/class-fs-plugin-updater.php330,
877
+ #: includes/class-fs-plugin-updater.php:366
878
+ msgid "new version"
879
+ msgstr "új verzió"
880
+
881
+ #: includes/class-fs-plugin-updater.php:389
882
+ msgid "Important Upgrade Notice:"
883
+ msgstr "Important Upgrade Notice:"
884
+
885
+ #: includes/class-fs-plugin-updater.php:1326
886
+ msgid "Installing plugin: %s"
887
+ msgstr "Bővítmény telepítése: %s"
888
+
889
+ #: includes/class-fs-plugin-updater.php:1367
890
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
891
+ msgstr "Unable to connect to the filesystem. Please confirm your credentials."
892
+
893
+ #: includes/class-fs-plugin-updater.php:1549
894
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
895
+ msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
+
897
+ #: includes/fs-plugin-info-dialog.php:541
898
+ msgid "Purchase More"
899
+ msgstr "Purchase More"
900
+
901
+ #: includes/fs-plugin-info-dialog.php542,
902
+ #: templates/account/partials/addon.php:385
903
+ msgctxt "verb"
904
+ msgid "Purchase"
905
+ msgstr "Vásárlás"
906
+
907
+ #: includes/fs-plugin-info-dialog.php:546
908
+ msgid "Start my free %s"
909
+ msgstr "Start my free %s"
910
+
911
+ #: includes/fs-plugin-info-dialog.php:744
912
+ msgid "Install Free Version Update Now"
913
+ msgstr "Install Free Version Update Now"
914
+
915
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
916
+ msgid "Install Update Now"
917
+ msgstr "Frissítés telepítése most"
918
+
919
+ #: includes/fs-plugin-info-dialog.php:754
920
+ msgid "Install Free Version Now"
921
+ msgstr "Install Free Version Now"
922
+
923
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
924
+ #: templates/auto-installation.php111,
925
+ #: templates/account/partials/addon.php365,
926
+ #: templates/account/partials/addon.php:418
927
+ msgid "Install Now"
928
+ msgstr "Telepítés most"
929
+
930
+ #: includes/fs-plugin-info-dialog.php:771
931
+ msgctxt "as download latest version"
932
+ msgid "Download Latest Free Version"
933
+ msgstr "Download Latest Free Version"
934
+
935
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
936
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
937
+ msgctxt "as download latest version"
938
+ msgid "Download Latest"
939
+ msgstr "Download Latest"
940
+
941
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
942
+ #: templates/account/partials/addon.php356,
943
+ #: templates/account/partials/addon.php:412
944
+ msgid "Activate this add-on"
945
+ msgstr "Activate this add-on"
946
+
947
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
948
+ msgid "Activate Free Version"
949
+ msgstr "Ingyenes verzió aktiválása"
950
+
951
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
952
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
953
+ msgid "Activate"
954
+ msgstr "Aktiválás"
955
+
956
+ #: includes/fs-plugin-info-dialog.php:1002
957
+ msgctxt "Plugin installer section title"
958
+ msgid "Description"
959
+ msgstr "Leírás"
960
+
961
+ #: includes/fs-plugin-info-dialog.php:1003
962
+ msgctxt "Plugin installer section title"
963
+ msgid "Installation"
964
+ msgstr "Telepítés"
965
+
966
+ #: includes/fs-plugin-info-dialog.php:1004
967
+ msgctxt "Plugin installer section title"
968
+ msgid "FAQ"
969
+ msgstr "GYIK"
970
+
971
+ #: includes/fs-plugin-info-dialog.php1005,
972
+ #: templates/plugin-info/description.php:55
973
+ msgid "Screenshots"
974
+ msgstr "Képernyőfotók"
975
+
976
+ #: includes/fs-plugin-info-dialog.php:1006
977
+ msgctxt "Plugin installer section title"
978
+ msgid "Changelog"
979
+ msgstr "Változtatások"
980
+
981
+ #: includes/fs-plugin-info-dialog.php:1007
982
+ msgctxt "Plugin installer section title"
983
+ msgid "Reviews"
984
+ msgstr "Vélemények"
985
+
986
+ #: includes/fs-plugin-info-dialog.php:1008
987
+ msgctxt "Plugin installer section title"
988
+ msgid "Other Notes"
989
+ msgstr "Egyéb megjegyzések"
990
+
991
+ #: includes/fs-plugin-info-dialog.php:1023
992
+ msgctxt "Plugin installer section title"
993
+ msgid "Features & Pricing"
994
+ msgstr "Funkciók & Árak"
995
+
996
+ #: includes/fs-plugin-info-dialog.php:1033
997
+ msgid "Plugin Install"
998
+ msgstr "Bővítmény telepítése"
999
+
1000
+ #: includes/fs-plugin-info-dialog.php:1105
1001
+ msgctxt "e.g. Professional Plan"
1002
+ msgid "%s Plan"
1003
+ msgstr "%s csomag"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:1131
1006
+ msgctxt "e.g. the best product"
1007
+ msgid "Best"
1008
+ msgstr "Legjobb"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php1137,
1011
+ #: includes/fs-plugin-info-dialog.php:1157
1012
+ msgctxt "as every month"
1013
+ msgid "Monthly"
1014
+ msgstr "Havi"
1015
+
1016
+ #: includes/fs-plugin-info-dialog.php:1140
1017
+ msgctxt "as once a year"
1018
+ msgid "Annual"
1019
+ msgstr "Éves"
1020
+
1021
+ #: includes/fs-plugin-info-dialog.php:1143
1022
+ msgid "Lifetime"
1023
+ msgstr "Örök"
1024
+
1025
+ #: includes/fs-plugin-info-dialog.php1157,
1026
+ #: includes/fs-plugin-info-dialog.php1159,
1027
+ #: includes/fs-plugin-info-dialog.php:1161
1028
+ msgctxt "e.g. billed monthly"
1029
+ msgid "Billed %s"
1030
+ msgstr "%s számlázás"
1031
+
1032
+ #: includes/fs-plugin-info-dialog.php:1159
1033
+ msgctxt "as once a year"
1034
+ msgid "Annually"
1035
+ msgstr "Éves"
1036
+
1037
+ #: includes/fs-plugin-info-dialog.php:1161
1038
+ msgctxt "as once a year"
1039
+ msgid "Once"
1040
+ msgstr "Egyszeri"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:1167
1043
+ msgid "Single Site License"
1044
+ msgstr "Egy weboldalas licensz"
1045
+
1046
+ #: includes/fs-plugin-info-dialog.php:1169
1047
+ msgid "Unlimited Licenses"
1048
+ msgstr "Korlátlan licensz"
1049
+
1050
+ #: includes/fs-plugin-info-dialog.php:1171
1051
+ msgid "Up to %s Sites"
1052
+ msgstr "Up to %s Sites"
1053
+
1054
+ #: includes/fs-plugin-info-dialog.php1181,
1055
+ #: templates/plugin-info/features.php:82
1056
+ msgctxt "as monthly period"
1057
+ msgid "mo"
1058
+ msgstr "hó"
1059
+
1060
+ #: includes/fs-plugin-info-dialog.php1188,
1061
+ #: templates/plugin-info/features.php:80
1062
+ msgctxt "as annual period"
1063
+ msgid "year"
1064
+ msgstr "év"
1065
+
1066
+ #: includes/fs-plugin-info-dialog.php:1242
1067
+ msgctxt "noun"
1068
+ msgid "Price"
1069
+ msgstr "Ár"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1290
1072
+ msgid "Save %s"
1073
+ msgstr "%s mentése"
1074
+
1075
+ #: includes/fs-plugin-info-dialog.php:1300
1076
+ msgid "No commitment for %s - cancel anytime"
1077
+ msgstr "No commitment for %s - cancel anytime"
1078
+
1079
+ #: includes/fs-plugin-info-dialog.php:1303
1080
+ msgid "After your free %s, pay as little as %s"
1081
+ msgstr "After your free %s, pay as little as %s"
1082
+
1083
+ #: includes/fs-plugin-info-dialog.php:1314
1084
+ msgid "Details"
1085
+ msgstr "Részletek"
1086
+
1087
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1088
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1089
+ #: templates/account/partials/addon.php:36
1090
+ msgctxt "product version"
1091
+ msgid "Version"
1092
+ msgstr "Verzió"
1093
+
1094
+ #: includes/fs-plugin-info-dialog.php:1325
1095
+ msgctxt "as the plugin author"
1096
+ msgid "Author"
1097
+ msgstr "Szerző"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1332
1100
+ msgid "Last Updated"
1101
+ msgstr "Utolsó frissítés"
1102
+
1103
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1104
+ msgctxt "x-ago"
1105
+ msgid "%s ago"
1106
+ msgstr "%s ago"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php:1346
1109
+ msgid "Requires WordPress Version"
1110
+ msgstr "A következő WordPress verzió szükséges:"
1111
+
1112
+ #: includes/fs-plugin-info-dialog.php:1347
1113
+ msgid "%s or higher"
1114
+ msgstr "%s or higher"
1115
+
1116
+ #: includes/fs-plugin-info-dialog.php:1354
1117
+ msgid "Compatible up to"
1118
+ msgstr "Compatible up to"
1119
+
1120
+ #: includes/fs-plugin-info-dialog.php:1362
1121
+ msgid "Downloaded"
1122
+ msgstr "Letöltések száma:"
1123
+
1124
+ #: includes/fs-plugin-info-dialog.php:1366
1125
+ msgid "%s time"
1126
+ msgstr "%s"
1127
+
1128
+ #: includes/fs-plugin-info-dialog.php:1368
1129
+ msgid "%s times"
1130
+ msgstr "%s"
1131
+
1132
+ #: includes/fs-plugin-info-dialog.php:1379
1133
+ msgid "WordPress.org Plugin Page"
1134
+ msgstr "WordPress.org bővítmény oldal"
1135
+
1136
+ #: includes/fs-plugin-info-dialog.php:1388
1137
+ msgid "Plugin Homepage"
1138
+ msgstr "Bővítmény oldala"
1139
+
1140
+ #: includes/fs-plugin-info-dialog.php1397,
1141
+ #: includes/fs-plugin-info-dialog.php:1481
1142
+ msgid "Donate to this plugin"
1143
+ msgstr "Bővítmény támogatása"
1144
+
1145
+ #: includes/fs-plugin-info-dialog.php:1404
1146
+ msgid "Average Rating"
1147
+ msgstr "Átlagos értékelés"
1148
+
1149
+ #: includes/fs-plugin-info-dialog.php:1411
1150
+ msgid "based on %s"
1151
+ msgstr "based on %s"
1152
+
1153
+ #: includes/fs-plugin-info-dialog.php:1415
1154
+ msgid "%s rating"
1155
+ msgstr "%s rating"
1156
+
1157
+ #: includes/fs-plugin-info-dialog.php:1417
1158
+ msgid "%s ratings"
1159
+ msgstr "%s ratings"
1160
+
1161
+ #: includes/fs-plugin-info-dialog.php:1432
1162
+ msgid "%s star"
1163
+ msgstr "%s star"
1164
+
1165
+ #: includes/fs-plugin-info-dialog.php:1434
1166
+ msgid "%s stars"
1167
+ msgstr "%s stars"
1168
+
1169
+ #: includes/fs-plugin-info-dialog.php:1446
1170
+ msgid "Click to see reviews that provided a rating of %s"
1171
+ msgstr "Click to see reviews that provided a rating of %s"
1172
+
1173
+ #: includes/fs-plugin-info-dialog.php:1459
1174
+ msgid "Contributors"
1175
+ msgstr "Közreműködők"
1176
+
1177
+ #: includes/fs-plugin-info-dialog.php1489,
1178
+ #: includes/fs-plugin-info-dialog.php:1491
1179
+ msgid "Warning"
1180
+ msgstr "Figyelmeztetés"
1181
+
1182
+ #: includes/fs-plugin-info-dialog.php:1489
1183
+ msgid "This plugin has not been tested with your current version of WordPress."
1184
+ msgstr "This plugin has not been tested with your current version of WordPress."
1185
+
1186
+ #: includes/fs-plugin-info-dialog.php:1491
1187
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1188
+ msgstr "This plugin has not been marked as compatible with your version of WordPress."
1189
+
1190
+ #: includes/fs-plugin-info-dialog.php:1510
1191
+ msgid "Paid add-on must be deployed to Freemius."
1192
+ msgstr "Paid add-on must be deployed to Freemius."
1193
+
1194
+ #: includes/fs-plugin-info-dialog.php:1511
1195
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1196
+ msgstr "Add-on must be deployed to WordPress.org or Freemius."
1197
+
1198
+ #: includes/fs-plugin-info-dialog.php:1532
1199
+ msgid "Newer Version (%s) Installed"
1200
+ msgstr "Newer Version (%s) Installed"
1201
+
1202
+ #: includes/fs-plugin-info-dialog.php:1533
1203
+ msgid "Newer Free Version (%s) Installed"
1204
+ msgstr "Newer Free Version (%s) Installed"
1205
+
1206
+ #: includes/fs-plugin-info-dialog.php:1540
1207
+ msgid "Latest Version Installed"
1208
+ msgstr "Legfrissebb verzió telepítve"
1209
+
1210
+ #: includes/fs-plugin-info-dialog.php:1541
1211
+ msgid "Latest Free Version Installed"
1212
+ msgstr "Legfrissebb ingyenes verzió telepítve"
1213
+
1214
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1215
+ #: templates/account/partials/addon.php26,
1216
+ #: templates/account/partials/site.php:311
1217
+ msgid "Downgrading your plan"
1218
+ msgstr "Downgrading your plan"
1219
+
1220
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1221
+ #: templates/account/partials/addon.php27,
1222
+ #: templates/account/partials/site.php:312
1223
+ msgid "Cancelling the subscription"
1224
+ msgstr "Cancelling the subscription"
1225
+
1226
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1227
+ #. subscription'
1228
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1229
+ #: templates/account/partials/site.php:314
1230
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1231
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
+
1233
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1234
+ #: templates/account/partials/addon.php30,
1235
+ #: templates/account/partials/site.php:315
1236
+ 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."
1237
+ 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."
1238
+
1239
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1240
+ #: templates/account/partials/addon.php:31
1241
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1242
+ msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
+
1244
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1245
+ #: templates/account/partials/addon.php32,
1246
+ #: templates/account/partials/site.php:316
1247
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1248
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
+
1250
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1251
+ #: templates/account/partials/addon.php33,
1252
+ #: templates/account/partials/site.php:317
1253
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1254
+ msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
+
1256
+ #. translators: %s: Plan title (e.g. "Professional")
1257
+ #: templates/account.php111,
1258
+ #: templates/account/partials/activate-license-button.php31,
1259
+ #: templates/account/partials/addon.php:35
1260
+ msgid "Activate %s Plan"
1261
+ msgstr "%s csomag aktiválása"
1262
+
1263
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1264
+ #: templates/account.php114, templates/account/partials/addon.php38,
1265
+ #: templates/account/partials/site.php:291
1266
+ msgid "Auto renews in %s"
1267
+ msgstr "Auto renews in %s"
1268
+
1269
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1270
+ #: templates/account.php116, templates/account/partials/addon.php40,
1271
+ #: templates/account/partials/site.php:293
1272
+ msgid "Expires in %s"
1273
+ msgstr "Hátralévő idő: %s"
1274
+
1275
+ #: templates/account.php:117
1276
+ msgctxt "as synchronize license"
1277
+ msgid "Sync License"
1278
+ msgstr "Licensz szinkronizálása"
1279
+
1280
+ #: templates/account.php118, templates/account/partials/addon.php:41
1281
+ msgid "Cancel Trial"
1282
+ msgstr "Próbaidő törlése"
1283
+
1284
+ #: templates/account.php119, templates/account/partials/addon.php:42
1285
+ msgid "Change Plan"
1286
+ msgstr "Csomag módosítása"
1287
+
1288
+ #: templates/account.php120, templates/account/partials/addon.php:43
1289
+ msgctxt "verb"
1290
+ msgid "Upgrade"
1291
+ msgstr "Váltás nagyobb csomagra"
1292
+
1293
+ #: templates/account.php122, templates/account/partials/addon.php45,
1294
+ #: templates/account/partials/site.php:318
1295
+ msgctxt "verb"
1296
+ msgid "Downgrade"
1297
+ msgstr "Váltás kisebb csomagra"
1298
+
1299
+ #: templates/account.php124, templates/add-ons.php246,
1300
+ #: templates/plugin-info/features.php72,
1301
+ #: templates/account/partials/addon.php47,
1302
+ #: templates/account/partials/site.php:33
1303
+ msgid "Free"
1304
+ msgstr "Ingyenes"
1305
+
1306
+ #: templates/account.php126, templates/debug.php371,
1307
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1308
+ #: templates/account/partials/addon.php:49
1309
+ msgctxt "as product pricing plan"
1310
+ msgid "Plan"
1311
+ msgstr "Csomag"
1312
+
1313
+ #: templates/account.php:127
1314
+ msgid "Bundle Plan"
1315
+ msgstr "Bundle Plan"
1316
+
1317
+ #: templates/account.php:250
1318
+ msgid "Free Trial"
1319
+ msgstr "Ingyenes próbaidő"
1320
+
1321
+ #: templates/account.php:261
1322
+ msgid "Account Details"
1323
+ msgstr "Fiók információk"
1324
+
1325
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1326
+ msgid "Start Debug"
1327
+ msgstr "Start Debug"
1328
+
1329
+ #: templates/account.php:270
1330
+ msgid "Stop Debug"
1331
+ msgstr "Stop Debug"
1332
+
1333
+ #: templates/account.php:277
1334
+ msgid "Billing & Invoices"
1335
+ msgstr "Billing & Invoices"
1336
+
1337
+ #: templates/account.php:288
1338
+ 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?"
1339
+ 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?"
1340
+
1341
+ #: templates/account.php:290
1342
+ 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?"
1343
+ 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?"
1344
+
1345
+ #: templates/account.php:293
1346
+ msgid "Delete Account"
1347
+ msgstr "Fiók törlése"
1348
+
1349
+ #: templates/account.php305, templates/account/partials/addon.php231,
1350
+ #: templates/account/partials/deactivate-license-button.php:35
1351
+ msgid "Deactivate License"
1352
+ msgstr "Licensz deaktiválása"
1353
+
1354
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1355
+ msgid "Are you sure you want to proceed?"
1356
+ msgstr "Are you sure you want to proceed?"
1357
+
1358
+ #: templates/account.php328, templates/account/partials/addon.php:255
1359
+ msgid "Cancel Subscription"
1360
+ msgstr "Előfizetés törlése"
1361
+
1362
+ #: templates/account.php357, templates/account/partials/addon.php:340
1363
+ msgctxt "as synchronize"
1364
+ msgid "Sync"
1365
+ msgstr "Szinkronizálás"
1366
+
1367
+ #: templates/account.php372, templates/debug.php:505
1368
+ msgid "Name"
1369
+ msgstr "Név"
1370
+
1371
+ #: templates/account.php378, templates/debug.php:506
1372
+ msgid "Email"
1373
+ msgstr "Email"
1374
+
1375
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1376
+ msgid "User ID"
1377
+ msgstr "Felhasználó ID"
1378
+
1379
+ #: templates/account.php403, templates/account.php721,
1380
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1381
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1382
+ #: templates/debug.php632, templates/account/payments.php35,
1383
+ #: templates/debug/logger.php:21
1384
+ msgid "ID"
1385
+ msgstr "ID"
1386
+
1387
+ #: templates/account.php:410
1388
+ msgid "Site ID"
1389
+ msgstr "Weboldal ID"
1390
+
1391
+ #: templates/account.php:413
1392
+ msgid "No ID"
1393
+ msgstr "Nincs ID"
1394
+
1395
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1396
+ #: templates/debug.php456, templates/debug.php508,
1397
+ #: templates/account/partials/site.php:227
1398
+ msgid "Public Key"
1399
+ msgstr "Publikus kulcs"
1400
+
1401
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1402
+ #: templates/debug.php509, templates/account/partials/site.php:239
1403
+ msgid "Secret Key"
1404
+ msgstr "Titkos kulcs"
1405
+
1406
+ #: templates/account.php:427
1407
+ msgctxt "as secret encryption key missing"
1408
+ msgid "No Secret"
1409
+ msgstr "Nincs titkos kulcs"
1410
+
1411
+ #: templates/account.php454, templates/account/partials/site.php120,
1412
+ #: templates/account/partials/site.php:122
1413
+ msgid "Trial"
1414
+ msgstr "Próbaidő"
1415
+
1416
+ #: templates/account.php481, templates/debug.php561,
1417
+ #: templates/account/partials/site.php:260
1418
+ msgid "License Key"
1419
+ msgstr "Licensz kulcs"
1420
+
1421
+ #: templates/account.php:512
1422
+ msgid "Join the Beta program"
1423
+ msgstr "Join the Beta program"
1424
+
1425
+ #: templates/account.php:518
1426
+ msgid "not verified"
1427
+ msgstr "nem ellenőrzött"
1428
+
1429
+ #: templates/account.php527, templates/account/partials/addon.php:190
1430
+ msgid "Expired"
1431
+ msgstr "Lejárt"
1432
+
1433
+ #: templates/account.php:587
1434
+ msgid "Premium version"
1435
+ msgstr "Prémium verzió"
1436
+
1437
+ #: templates/account.php:589
1438
+ msgid "Free version"
1439
+ msgstr "Ingyenes verzió"
1440
+
1441
+ #: templates/account.php:601
1442
+ msgid "Verify Email"
1443
+ msgstr "Email ellenőrzése"
1444
+
1445
+ #: templates/account.php:615
1446
+ msgid "Download %s Version"
1447
+ msgstr "%s verzió letöltése"
1448
+
1449
+ #: templates/account.php:631
1450
+ msgid "Download Paid Version"
1451
+ msgstr "Download Paid Version"
1452
+
1453
+ #: templates/account.php649, templates/account.php892,
1454
+ #: templates/account/partials/site.php248,
1455
+ #: templates/account/partials/site.php:270
1456
+ msgctxt "verb"
1457
+ msgid "Show"
1458
+ msgstr "Mutasd"
1459
+
1460
+ #: templates/account.php:664
1461
+ msgid "What is your %s?"
1462
+ msgstr "Mi a te %s?"
1463
+
1464
+ #: templates/account.php672, templates/account/billing.php:21
1465
+ msgctxt "verb"
1466
+ msgid "Edit"
1467
+ msgstr "Szerkesztés"
1468
+
1469
+ #: templates/account.php676, templates/forms/user-change.php:27
1470
+ msgid "Change User"
1471
+ msgstr "Change User"
1472
+
1473
+ #: templates/account.php:700
1474
+ msgid "Sites"
1475
+ msgstr "Weboldalak"
1476
+
1477
+ #: templates/account.php:713
1478
+ msgid "Search by address"
1479
+ msgstr "Keresés cím alapján"
1480
+
1481
+ #: templates/account.php722, templates/debug.php:366
1482
+ msgid "Address"
1483
+ msgstr "Cím"
1484
+
1485
+ #: templates/account.php:723
1486
+ msgid "License"
1487
+ msgstr "Licensz"
1488
+
1489
+ #: templates/account.php:724
1490
+ msgid "Plan"
1491
+ msgstr "Csomag"
1492
+
1493
+ #: templates/account.php:757
1494
+ msgctxt "as software license"
1495
+ msgid "License"
1496
+ msgstr "Licensz"
1497
+
1498
+ #: templates/account.php:886
1499
+ msgctxt "verb"
1500
+ msgid "Hide"
1501
+ msgstr "Elrejt"
1502
+
1503
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1504
+ msgid "Processing"
1505
+ msgstr "Processing"
1506
+
1507
+ #: templates/account.php:911
1508
+ msgid "Get updates for bleeding edge Beta versions of %s."
1509
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1510
+
1511
+ #: templates/account.php:969
1512
+ msgid "Cancelling %s"
1513
+ msgstr "Cancelling %s"
1514
+
1515
+ #: templates/account.php969, templates/account.php986,
1516
+ #: templates/forms/subscription-cancellation.php27,
1517
+ #: templates/forms/deactivation/form.php:133
1518
+ msgid "trial"
1519
+ msgstr "próbaidő"
1520
+
1521
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1522
+ msgid "Cancelling %s..."
1523
+ msgstr "Cancelling %s..."
1524
+
1525
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1526
+ #: templates/forms/deactivation/form.php:134
1527
+ msgid "subscription"
1528
+ msgstr "előfizetés"
1529
+
1530
+ #: templates/account.php:1001
1531
+ 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?"
1532
+ 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?"
1533
+
1534
+ #: templates/account.php:1075
1535
+ msgid "Disabling white-label mode"
1536
+ msgstr "Disabling white-label mode"
1537
+
1538
+ #: templates/account.php:1076
1539
+ msgid "Enabling white-label mode"
1540
+ msgstr "Enabling white-label mode"
1541
+
1542
+ #: templates/add-ons.php:38
1543
+ msgid "View details"
1544
+ msgstr "Részletek megtekintése"
1545
+
1546
+ #: templates/add-ons.php:48
1547
+ msgid "Add Ons for %s"
1548
+ msgstr "Add Ons for %s"
1549
+
1550
+ #: templates/add-ons.php:58
1551
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1552
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1553
+
1554
+ #: templates/add-ons.php:229
1555
+ msgctxt "active add-on"
1556
+ msgid "Active"
1557
+ msgstr "Active"
1558
+
1559
+ #: templates/add-ons.php:230
1560
+ msgctxt "installed add-on"
1561
+ msgid "Installed"
1562
+ msgstr "Installed"
1563
+
1564
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1565
+ #: templates/forms/resend-key.php:77
1566
+ msgctxt "as close a window"
1567
+ msgid "Dismiss"
1568
+ msgstr "Mégsem"
1569
+
1570
+ #: templates/auto-installation.php:45
1571
+ msgid "%s sec"
1572
+ msgstr "%s sec"
1573
+
1574
+ #: templates/auto-installation.php:83
1575
+ msgid "Automatic Installation"
1576
+ msgstr "Automatikus telepítés"
1577
+
1578
+ #: templates/auto-installation.php:93
1579
+ 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."
1580
+ 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."
1581
+
1582
+ #: templates/auto-installation.php:104
1583
+ 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."
1584
+ 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."
1585
+
1586
+ #: templates/auto-installation.php:109
1587
+ msgid "Cancel Installation"
1588
+ msgstr "Telepítés törlése"
1589
+
1590
+ #: templates/checkout.php:180
1591
+ msgid "Checkout"
1592
+ msgstr "Pénztár"
1593
+
1594
+ #: templates/checkout.php:180
1595
+ msgid "PCI compliant"
1596
+ msgstr "PCI compliant"
1597
+
1598
+ #. translators: %s: name (e.g. Hey John,)
1599
+ #: templates/connect.php:112
1600
+ msgctxt "greeting"
1601
+ msgid "Hey %s,"
1602
+ msgstr "Üdv %s!"
1603
+
1604
+ #: templates/connect.php:162
1605
+ msgid "Allow & Continue"
1606
+ msgstr "Engedélyezés és folytatás"
1607
+
1608
+ #: templates/connect.php:166
1609
+ msgid "Re-send activation email"
1610
+ msgstr "Aktivációs email újraküldése"
1611
+
1612
+ #: templates/connect.php:170
1613
+ msgid "Thanks %s!"
1614
+ msgstr "Köszönjük %s!"
1615
+
1616
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1617
+ msgid "Agree & Activate License"
1618
+ msgstr "Licensz elfogadása és aktiválása"
1619
+
1620
+ #: templates/connect.php:184
1621
+ msgid "Welcome to %s! To get started, please enter your license key:"
1622
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1623
+
1624
+ #: templates/connect.php:191
1625
+ 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."
1626
+ 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."
1627
+
1628
+ #: templates/connect.php:192
1629
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1630
+ msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1631
+
1632
+ #: templates/connect.php:198
1633
+ 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."
1634
+ 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."
1635
+
1636
+ #: templates/connect.php:199
1637
+ 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."
1638
+ 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."
1639
+
1640
+ #: templates/connect.php:233
1641
+ msgid "We're excited to introduce the Freemius network-level integration."
1642
+ msgstr "We're excited to introduce the Freemius network-level integration."
1643
+
1644
+ #: templates/connect.php:236
1645
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1646
+ msgstr "During the update process we detected %d site(s) that are still pending license activation."
1647
+
1648
+ #: templates/connect.php:238
1649
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1650
+ msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1651
+
1652
+ #: templates/connect.php:240
1653
+ msgid "%s's paid features"
1654
+ msgstr "%s's paid features"
1655
+
1656
+ #: templates/connect.php:245
1657
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1658
+ msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1659
+
1660
+ #: templates/connect.php:247
1661
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1662
+ msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
1663
+
1664
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1665
+ #: templates/forms/license-activation.php:49
1666
+ msgid "License key"
1667
+ msgstr "Licensz kulcs"
1668
+
1669
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1670
+ msgid "Can't find your license key?"
1671
+ msgstr "Nem találod a licensz kulcsod?"
1672
+
1673
+ #: templates/connect.php318, templates/connect.php700,
1674
+ #: templates/forms/deactivation/retry-skip.php:20
1675
+ msgctxt "verb"
1676
+ msgid "Skip"
1677
+ msgstr "Ugrás"
1678
+
1679
+ #: templates/connect.php:321
1680
+ msgid "Delegate to Site Admins"
1681
+ msgstr "Delegate to Site Admins"
1682
+
1683
+ #: templates/connect.php:321
1684
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1685
+ msgstr "If you click it, this decision will be delegated to the sites administrators."
1686
+
1687
+ #: templates/connect.php:346
1688
+ msgid "License issues?"
1689
+ msgstr "License issues?"
1690
+
1691
+ #: templates/connect.php:362
1692
+ msgid "Your Profile Overview"
1693
+ msgstr "Fiókod áttekintése"
1694
+
1695
+ #: templates/connect.php:363
1696
+ msgid "Name and email address"
1697
+ msgstr "Név és email cím"
1698
+
1699
+ #: templates/connect.php:370
1700
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1701
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1702
+
1703
+ #: templates/connect.php:371
1704
+ msgid "Your Site Overview"
1705
+ msgstr "Weboldalad adatainak áttekintése"
1706
+
1707
+ #: templates/connect.php:372
1708
+ msgid "Site URL, WP version, PHP info"
1709
+ msgstr "Site URL, WP version, PHP info"
1710
+
1711
+ #: templates/connect.php:379
1712
+ msgid "Admin Notices"
1713
+ msgstr "Admin értesítések"
1714
+
1715
+ #: templates/connect.php380, templates/connect.php:398
1716
+ msgid "Updates, announcements, marketing, no spam"
1717
+ msgstr "Frissítések, közlemények, marketing, de semmi SPAM!"
1718
+
1719
+ #: templates/connect.php:387
1720
+ msgid "So you can reuse the license when the %s is no longer active."
1721
+ msgstr "So you can reuse the license when the %s is no longer active."
1722
+
1723
+ #: templates/connect.php:388
1724
+ msgid "Current %s Status"
1725
+ msgstr "Current %s Status"
1726
+
1727
+ #: templates/connect.php:389
1728
+ msgid "Active, deactivated, or uninstalled"
1729
+ msgstr "Active, deactivated, or uninstalled"
1730
+
1731
+ #: templates/connect.php:397
1732
+ msgid "Newsletter"
1733
+ msgstr "Hírlevél"
1734
+
1735
+ #: templates/connect.php:405
1736
+ msgid "Plugins & Themes"
1737
+ msgstr "Plugins & Themes"
1738
+
1739
+ #: templates/connect.php:405
1740
+ msgid "optional"
1741
+ msgstr "optional"
1742
+
1743
+ #: templates/connect.php:406
1744
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1745
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1746
+
1747
+ #: templates/connect.php:407
1748
+ msgid "Title, slug, version, and is active"
1749
+ msgstr "Title, slug, version, and is active"
1750
+
1751
+ #: templates/connect.php:424
1752
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1753
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1754
+
1755
+ #: templates/connect.php:426
1756
+ msgid "diagnostic data"
1757
+ msgstr "diagnostic data"
1758
+
1759
+ #: templates/connect.php:427
1760
+ msgid "Freemius is our licensing and software updates engine"
1761
+ msgstr "Freemius is our licensing and software updates engine"
1762
+
1763
+ #: templates/connect.php:430
1764
+ msgid "What permissions are being granted?"
1765
+ msgstr "Milyen jogosultágok lesznek engedélyezve?"
1766
+
1767
+ #: templates/connect.php:457
1768
+ msgid "Don't have a license key?"
1769
+ msgstr "Nincs még licensz kulcsod?"
1770
+
1771
+ #: templates/connect.php:460
1772
+ msgid "Have a license key?"
1773
+ msgstr "Van licensz kulcsod?"
1774
+
1775
+ #: templates/connect.php:468
1776
+ msgid "Privacy Policy"
1777
+ msgstr "Adatkezelési tájékoztató"
1778
+
1779
+ #: templates/connect.php:470
1780
+ msgid "License Agreement"
1781
+ msgstr "Licensz szerződés"
1782
+
1783
+ #: templates/connect.php:470
1784
+ msgid "Terms of Service"
1785
+ msgstr "Szolgáltatási feltételek"
1786
+
1787
+ #: templates/connect.php:866
1788
+ msgctxt "as in the process of sending an email"
1789
+ msgid "Sending email"
1790
+ msgstr "Email küldése"
1791
+
1792
+ #: templates/connect.php:867
1793
+ msgctxt "as activating plugin"
1794
+ msgid "Activating"
1795
+ msgstr "Aktiválás"
1796
+
1797
+ #: templates/contact.php:78
1798
+ msgid "Contact"
1799
+ msgstr "Kapcsolat"
1800
+
1801
+ #: templates/debug.php:17
1802
+ msgctxt "as turned off"
1803
+ msgid "Off"
1804
+ msgstr "Off"
1805
+
1806
+ #: templates/debug.php:18
1807
+ msgctxt "as turned on"
1808
+ msgid "On"
1809
+ msgstr "On"
1810
+
1811
+ #: templates/debug.php:20
1812
+ msgid "SDK"
1813
+ msgstr "SDK"
1814
+
1815
+ #: templates/debug.php:24
1816
+ msgctxt "as code debugging"
1817
+ msgid "Debugging"
1818
+ msgstr "Debugging"
1819
+
1820
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1821
+ #: templates/debug.php:510
1822
+ msgid "Actions"
1823
+ msgstr "Események"
1824
+
1825
+ #: templates/debug.php:62
1826
+ msgid "Are you sure you want to delete all Freemius data?"
1827
+ msgstr "Are you sure you want to delete all Freemius data?"
1828
+
1829
+ #: templates/debug.php:62
1830
+ msgid "Delete All Accounts"
1831
+ msgstr "Minden fiók törlése"
1832
+
1833
+ #: templates/debug.php:69
1834
+ msgid "Clear API Cache"
1835
+ msgstr "Clear API Cache"
1836
+
1837
+ #: templates/debug.php:77
1838
+ msgid "Clear Updates Transients"
1839
+ msgstr "Clear Updates Transients"
1840
+
1841
+ #: templates/debug.php:84
1842
+ msgid "Sync Data From Server"
1843
+ msgstr "Adatok szinkronizálása a szerverről"
1844
+
1845
+ #: templates/debug.php:93
1846
+ msgid "Migrate Options to Network"
1847
+ msgstr "Migrate Options to Network"
1848
+
1849
+ #: templates/debug.php:98
1850
+ msgid "Load DB Option"
1851
+ msgstr "Load DB Option"
1852
+
1853
+ #: templates/debug.php:101
1854
+ msgid "Set DB Option"
1855
+ msgstr "Set DB Option"
1856
+
1857
+ #: templates/debug.php:180
1858
+ msgid "Key"
1859
+ msgstr "Kulcs"
1860
+
1861
+ #: templates/debug.php:181
1862
+ msgid "Value"
1863
+ msgstr "Érték"
1864
+
1865
+ #: templates/debug.php:197
1866
+ msgctxt "as software development kit versions"
1867
+ msgid "SDK Versions"
1868
+ msgstr "SDK verziók"
1869
+
1870
+ #: templates/debug.php:202
1871
+ msgid "SDK Path"
1872
+ msgstr "SDK útvonal"
1873
+
1874
+ #: templates/debug.php203, templates/debug.php:242
1875
+ msgid "Module Path"
1876
+ msgstr "Module Path"
1877
+
1878
+ #: templates/debug.php:204
1879
+ msgid "Is Active"
1880
+ msgstr "Aktív"
1881
+
1882
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1883
+ msgid "Plugins"
1884
+ msgstr "Bővítmények"
1885
+
1886
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1887
+ msgid "Themes"
1888
+ msgstr "Sablonok"
1889
+
1890
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1891
+ #: templates/debug/scheduled-crons.php:80
1892
+ msgid "Slug"
1893
+ msgstr "Slug"
1894
+
1895
+ #: templates/debug.php239, templates/debug.php:453
1896
+ msgid "Title"
1897
+ msgstr "Cím"
1898
+
1899
+ #: templates/debug.php:240
1900
+ msgctxt "as application program interface"
1901
+ msgid "API"
1902
+ msgstr "API"
1903
+
1904
+ #: templates/debug.php:241
1905
+ msgid "Freemius State"
1906
+ msgstr "Freemius State"
1907
+
1908
+ #: templates/debug.php:245
1909
+ msgid "Network Blog"
1910
+ msgstr "Network Blog"
1911
+
1912
+ #: templates/debug.php:246
1913
+ msgid "Network User"
1914
+ msgstr "Network User"
1915
+
1916
+ #: templates/debug.php:283
1917
+ msgctxt "as connection was successful"
1918
+ msgid "Connected"
1919
+ msgstr "Connected"
1920
+
1921
+ #: templates/debug.php:284
1922
+ msgctxt "as connection blocked"
1923
+ msgid "Blocked"
1924
+ msgstr "Blocked"
1925
+
1926
+ #: templates/debug.php:320
1927
+ msgid "Simulate Trial Promotion"
1928
+ msgstr "Simulate Trial Promotion"
1929
+
1930
+ #: templates/debug.php:332
1931
+ msgid "Simulate Network Upgrade"
1932
+ msgstr "Simulate Network Upgrade"
1933
+
1934
+ #: templates/debug.php:357
1935
+ msgid "%s Installs"
1936
+ msgstr "%s Installs"
1937
+
1938
+ #: templates/debug.php:359
1939
+ msgctxt "like websites"
1940
+ msgid "Sites"
1941
+ msgstr "Weboldalak"
1942
+
1943
+ #: templates/debug.php365, templates/account/partials/site.php:156
1944
+ msgid "Blog ID"
1945
+ msgstr "Blog ID"
1946
+
1947
+ #: templates/debug.php:370
1948
+ msgid "License ID"
1949
+ msgstr "License ID"
1950
+
1951
+ #: templates/debug.php434, templates/debug.php533,
1952
+ #: templates/account/partials/addon.php:435
1953
+ msgctxt "verb"
1954
+ msgid "Delete"
1955
+ msgstr "Törlés"
1956
+
1957
+ #: templates/debug.php:448
1958
+ msgid "Add Ons of module %s"
1959
+ msgstr "Add Ons of module %s"
1960
+
1961
+ #: templates/debug.php:500
1962
+ msgid "Users"
1963
+ msgstr "Felhasználók"
1964
+
1965
+ #: templates/debug.php:507
1966
+ msgid "Verified"
1967
+ msgstr "Ellenőrzött"
1968
+
1969
+ #: templates/debug.php:549
1970
+ msgid "%s Licenses"
1971
+ msgstr "%s Licenses"
1972
+
1973
+ #: templates/debug.php:554
1974
+ msgid "Plugin ID"
1975
+ msgstr "Bővítmény ID"
1976
+
1977
+ #: templates/debug.php:556
1978
+ msgid "Plan ID"
1979
+ msgstr "Csomag ID"
1980
+
1981
+ #: templates/debug.php:557
1982
+ msgid "Quota"
1983
+ msgstr "Quota"
1984
+
1985
+ #: templates/debug.php:558
1986
+ msgid "Activated"
1987
+ msgstr "Sikeres aktiválás"
1988
+
1989
+ #: templates/debug.php:559
1990
+ msgid "Blocking"
1991
+ msgstr "Blocking"
1992
+
1993
+ #: templates/debug.php560, templates/debug.php631,
1994
+ #: templates/debug/logger.php:22
1995
+ msgid "Type"
1996
+ msgstr "Type"
1997
+
1998
+ #: templates/debug.php:562
1999
+ msgctxt "as expiration date"
2000
+ msgid "Expiration"
2001
+ msgstr "Expiration"
2002
+
2003
+ #: templates/debug.php:590
2004
+ msgid "Debug Log"
2005
+ msgstr "Debug Log"
2006
+
2007
+ #: templates/debug.php:594
2008
+ msgid "All Types"
2009
+ msgstr "All Types"
2010
+
2011
+ #: templates/debug.php:601
2012
+ msgid "All Requests"
2013
+ msgstr "All Requests"
2014
+
2015
+ #: templates/debug.php606, templates/debug.php635,
2016
+ #: templates/debug/logger.php:25
2017
+ msgid "File"
2018
+ msgstr "File"
2019
+
2020
+ #: templates/debug.php607, templates/debug.php633,
2021
+ #: templates/debug/logger.php:23
2022
+ msgid "Function"
2023
+ msgstr "Function"
2024
+
2025
+ #: templates/debug.php:608
2026
+ msgid "Process ID"
2027
+ msgstr "Művelet ID"
2028
+
2029
+ #: templates/debug.php:609
2030
+ msgid "Logger"
2031
+ msgstr "Logger"
2032
+
2033
+ #: templates/debug.php610, templates/debug.php634,
2034
+ #: templates/debug/logger.php:24
2035
+ msgid "Message"
2036
+ msgstr "Message"
2037
+
2038
+ #: templates/debug.php:612
2039
+ msgid "Filter"
2040
+ msgstr "Filter"
2041
+
2042
+ #: templates/debug.php:620
2043
+ msgid "Download"
2044
+ msgstr "Download"
2045
+
2046
+ #: templates/debug.php636, templates/debug/logger.php:26
2047
+ msgid "Timestamp"
2048
+ msgstr "Timestamp"
2049
+
2050
+ #: templates/secure-https-header.php:28
2051
+ msgid "Secure HTTPS %s page, running from an external domain"
2052
+ msgstr "Secure HTTPS %s page, running from an external domain"
2053
+
2054
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2055
+ #: templates/plugin-info/features.php:43
2056
+ msgid "Support"
2057
+ msgstr "Support"
2058
+
2059
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2060
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2061
+ msgctxt "milliseconds"
2062
+ msgid "ms"
2063
+ msgstr "ms"
2064
+
2065
+ #: includes/debug/debug-bar-start.php:41
2066
+ msgid "Freemius API"
2067
+ msgstr "Freemius API"
2068
+
2069
+ #: includes/debug/debug-bar-start.php:42
2070
+ msgid "Requests"
2071
+ msgstr "Requests"
2072
+
2073
+ #: templates/account/billing.php:22
2074
+ msgctxt "verb"
2075
+ msgid "Update"
2076
+ msgstr "Frissítés"
2077
+
2078
+ #: templates/account/billing.php:33
2079
+ msgid "Billing"
2080
+ msgstr "Számlázás"
2081
+
2082
+ #: templates/account/billing.php38, templates/account/billing.php:38
2083
+ msgid "Business name"
2084
+ msgstr "Cégnév"
2085
+
2086
+ #: templates/account/billing.php39, templates/account/billing.php:39
2087
+ msgid "Tax / VAT ID"
2088
+ msgstr "Közösségi adószám"
2089
+
2090
+ #: templates/account/billing.php42, templates/account/billing.php42,
2091
+ #: templates/account/billing.php43, templates/account/billing.php:43
2092
+ msgid "Address Line %d"
2093
+ msgstr "Cím %d"
2094
+
2095
+ #: templates/account/billing.php46, templates/account/billing.php:46
2096
+ msgid "City"
2097
+ msgstr "Város"
2098
+
2099
+ #: templates/account/billing.php46, templates/account/billing.php:46
2100
+ msgid "Town"
2101
+ msgstr "Town"
2102
+
2103
+ #: templates/account/billing.php47, templates/account/billing.php:47
2104
+ msgid "ZIP / Postal Code"
2105
+ msgstr "Irányítószám"
2106
+
2107
+ #: templates/account/billing.php:302
2108
+ msgid "Country"
2109
+ msgstr "Ország"
2110
+
2111
+ #: templates/account/billing.php:304
2112
+ msgid "Select Country"
2113
+ msgstr "Válaszz országot"
2114
+
2115
+ #: templates/account/billing.php311, templates/account/billing.php:312
2116
+ msgid "State"
2117
+ msgstr "Megye"
2118
+
2119
+ #: templates/account/billing.php311, templates/account/billing.php:312
2120
+ msgid "Province"
2121
+ msgstr "Province"
2122
+
2123
+ #: templates/account/payments.php:29
2124
+ msgid "Payments"
2125
+ msgstr "Fizetési módok"
2126
+
2127
+ #: templates/account/payments.php:36
2128
+ msgid "Date"
2129
+ msgstr "Dátum"
2130
+
2131
+ #: templates/account/payments.php:37
2132
+ msgid "Amount"
2133
+ msgstr "Mennyiség"
2134
+
2135
+ #: templates/account/payments.php38, templates/account/payments.php:50
2136
+ msgid "Invoice"
2137
+ msgstr "Számla"
2138
+
2139
+ #: templates/debug/api-calls.php:56
2140
+ msgid "API"
2141
+ msgstr "API"
2142
+
2143
+ #: templates/debug/api-calls.php:68
2144
+ msgid "Method"
2145
+ msgstr "Method"
2146
+
2147
+ #: templates/debug/api-calls.php:69
2148
+ msgid "Code"
2149
+ msgstr "Kód"
2150
+
2151
+ #: templates/debug/api-calls.php:70
2152
+ msgid "Length"
2153
+ msgstr "Hossz"
2154
+
2155
+ #: templates/debug/api-calls.php:71
2156
+ msgctxt "as file/folder path"
2157
+ msgid "Path"
2158
+ msgstr "Path"
2159
+
2160
+ #: templates/debug/api-calls.php:73
2161
+ msgid "Body"
2162
+ msgstr "Body"
2163
+
2164
+ #: templates/debug/api-calls.php:75
2165
+ msgid "Result"
2166
+ msgstr "Result"
2167
+
2168
+ #: templates/debug/api-calls.php:76
2169
+ msgid "Start"
2170
+ msgstr "Start"
2171
+
2172
+ #: templates/debug/api-calls.php:77
2173
+ msgid "End"
2174
+ msgstr "End"
2175
+
2176
+ #: templates/debug/logger.php:15
2177
+ msgid "Log"
2178
+ msgstr "Log"
2179
+
2180
+ #. translators: %s: time period (e.g. In "2 hours")
2181
+ #: templates/debug/plugins-themes-sync.php18,
2182
+ #: templates/debug/scheduled-crons.php:91
2183
+ msgid "In %s"
2184
+ msgstr "In %s"
2185
+
2186
+ #. translators: %s: time period (e.g. "2 hours" ago)
2187
+ #: templates/debug/plugins-themes-sync.php20,
2188
+ #: templates/debug/scheduled-crons.php:93
2189
+ msgid "%s ago"
2190
+ msgstr "%s ago"
2191
+
2192
+ #: templates/debug/plugins-themes-sync.php21,
2193
+ #: templates/debug/scheduled-crons.php:74
2194
+ msgctxt "seconds"
2195
+ msgid "sec"
2196
+ msgstr "sec"
2197
+
2198
+ #: templates/debug/plugins-themes-sync.php:23
2199
+ msgid "Plugins & Themes Sync"
2200
+ msgstr "Bővítmények és sablonok szinkronizálása"
2201
+
2202
+ #: templates/debug/plugins-themes-sync.php:28
2203
+ msgid "Total"
2204
+ msgstr "Összesen"
2205
+
2206
+ #: templates/debug/plugins-themes-sync.php29,
2207
+ #: templates/debug/scheduled-crons.php:84
2208
+ msgid "Last"
2209
+ msgstr "Last"
2210
+
2211
+ #: templates/debug/scheduled-crons.php:76
2212
+ msgid "Scheduled Crons"
2213
+ msgstr "Scheduled Crons"
2214
+
2215
+ #: templates/debug/scheduled-crons.php:81
2216
+ msgid "Module"
2217
+ msgstr "Module"
2218
+
2219
+ #: templates/debug/scheduled-crons.php:82
2220
+ msgid "Module Type"
2221
+ msgstr "Module Type"
2222
+
2223
+ #: templates/debug/scheduled-crons.php:83
2224
+ msgid "Cron Type"
2225
+ msgstr "Cron Type"
2226
+
2227
+ #: templates/debug/scheduled-crons.php:85
2228
+ msgid "Next"
2229
+ msgstr "Next"
2230
+
2231
+ #: templates/forms/affiliation.php:82
2232
+ msgid "Non-expiring"
2233
+ msgstr "Non-expiring"
2234
+
2235
+ #: templates/forms/affiliation.php:85
2236
+ msgid "Apply to become an affiliate"
2237
+ msgstr "Apply to become an affiliate"
2238
+
2239
+ #: templates/forms/affiliation.php:107
2240
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2241
+ msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2242
+
2243
+ #: templates/forms/affiliation.php:122
2244
+ 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."
2245
+ 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."
2246
+
2247
+ #: templates/forms/affiliation.php:125
2248
+ msgid "Your affiliation account was temporarily suspended."
2249
+ msgstr "Your affiliation account was temporarily suspended."
2250
+
2251
+ #: templates/forms/affiliation.php:128
2252
+ 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."
2253
+ 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."
2254
+
2255
+ #: templates/forms/affiliation.php:131
2256
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2257
+ msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2258
+
2259
+ #: templates/forms/affiliation.php:144
2260
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2261
+ msgstr "Like the %s? Become our ambassador and earn cash ;-)"
2262
+
2263
+ #: templates/forms/affiliation.php:145
2264
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2265
+ msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2266
+
2267
+ #: templates/forms/affiliation.php:148
2268
+ msgid "Program Summary"
2269
+ msgstr "Program Summary"
2270
+
2271
+ #: templates/forms/affiliation.php:150
2272
+ msgid "%s commission when a customer purchases a new license."
2273
+ msgstr "%s commission when a customer purchases a new license."
2274
+
2275
+ #: templates/forms/affiliation.php:152
2276
+ msgid "Get commission for automated subscription renewals."
2277
+ msgstr "Get commission for automated subscription renewals."
2278
+
2279
+ #: templates/forms/affiliation.php:155
2280
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2281
+ msgstr "%s tracking cookie after the first visit to maximize earnings potential."
2282
+
2283
+ #: templates/forms/affiliation.php:158
2284
+ msgid "Unlimited commissions."
2285
+ msgstr "Unlimited commissions."
2286
+
2287
+ #: templates/forms/affiliation.php:160
2288
+ msgid "%s minimum payout amount."
2289
+ msgstr "%s minimum payout amount."
2290
+
2291
+ #: templates/forms/affiliation.php:161
2292
+ msgid "Payouts are in USD and processed monthly via PayPal."
2293
+ msgstr "Payouts are in USD and processed monthly via PayPal."
2294
+
2295
+ #: templates/forms/affiliation.php:162
2296
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2297
+ msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2298
+
2299
+ #: templates/forms/affiliation.php:165
2300
+ msgid "Affiliate"
2301
+ msgstr "Affiliate"
2302
+
2303
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2304
+ msgid "Email address"
2305
+ msgstr "Email cím"
2306
+
2307
+ #: templates/forms/affiliation.php:172
2308
+ msgid "Full name"
2309
+ msgstr "Teljes név"
2310
+
2311
+ #: templates/forms/affiliation.php:176
2312
+ msgid "PayPal account email address"
2313
+ msgstr "PayPal fiók email címe"
2314
+
2315
+ #: templates/forms/affiliation.php:180
2316
+ msgid "Where are you going to promote the %s?"
2317
+ msgstr "Where are you going to promote the %s?"
2318
+
2319
+ #: templates/forms/affiliation.php:182
2320
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2321
+ msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
2322
+
2323
+ #: templates/forms/affiliation.php:184
2324
+ msgid "Add another domain"
2325
+ msgstr "Másik domain hozzáadása"
2326
+
2327
+ #: templates/forms/affiliation.php:188
2328
+ msgid "Extra Domains"
2329
+ msgstr "További domainek"
2330
+
2331
+ #: templates/forms/affiliation.php:189
2332
+ msgid "Extra domains where you will be marketing the product from."
2333
+ msgstr "Extra domains where you will be marketing the product from."
2334
+
2335
+ #: templates/forms/affiliation.php:199
2336
+ msgid "Promotion methods"
2337
+ msgstr "Promotion methods"
2338
+
2339
+ #: templates/forms/affiliation.php:202
2340
+ msgid "Social media (Facebook, Twitter, etc.)"
2341
+ msgstr "Social media (Facebook, Twitter, etc.)"
2342
+
2343
+ #: templates/forms/affiliation.php:206
2344
+ msgid "Mobile apps"
2345
+ msgstr "Mobile apps"
2346
+
2347
+ #: templates/forms/affiliation.php:210
2348
+ msgid "Website, email, and social media statistics (optional)"
2349
+ msgstr "Weboldal, email és közösségi média statisztikák (opcionális)"
2350
+
2351
+ #: templates/forms/affiliation.php:213
2352
+ 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)."
2353
+ 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)."
2354
+
2355
+ #: templates/forms/affiliation.php:217
2356
+ msgid "How will you promote us?"
2357
+ msgstr "How will you promote us?"
2358
+
2359
+ #: templates/forms/affiliation.php:220
2360
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2361
+ msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
2362
+
2363
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2364
+ msgid "Cancel"
2365
+ msgstr "Mégsem"
2366
+
2367
+ #: templates/forms/affiliation.php:234
2368
+ msgid "Become an affiliate"
2369
+ msgstr "Become an affiliate"
2370
+
2371
+ #: templates/forms/data-debug-mode.php:25
2372
+ msgid "Please enter the license key to enable the debug mode:"
2373
+ msgstr "Please enter the license key to enable the debug mode:"
2374
+
2375
+ #: templates/forms/data-debug-mode.php:27
2376
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2377
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2378
+
2379
+ #: templates/forms/data-debug-mode.php:32
2380
+ msgid "Submit"
2381
+ msgstr "Submit"
2382
+
2383
+ #: templates/forms/data-debug-mode.php:36
2384
+ msgid "User key"
2385
+ msgstr "User key"
2386
+
2387
+ #: templates/forms/license-activation.php:23
2388
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2389
+ msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:"
2390
+
2391
+ #: templates/forms/license-activation.php:28
2392
+ msgid "Update License"
2393
+ msgstr "Licensz frissítése"
2394
+
2395
+ #: templates/forms/license-activation.php:41
2396
+ 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."
2397
+ 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."
2398
+
2399
+ #: templates/forms/license-activation.php:183
2400
+ msgid "Associate with the license owner's account."
2401
+ msgstr "Associate with the license owner's account."
2402
+
2403
+ #: templates/forms/optout.php:30
2404
+ msgctxt "verb"
2405
+ msgid "Opt Out"
2406
+ msgstr "Leiratkozás"
2407
+
2408
+ #: templates/forms/optout.php:31
2409
+ msgctxt "verb"
2410
+ msgid "Opt In"
2411
+ msgstr "Feliratkozás"
2412
+
2413
+ #: templates/forms/optout.php:34
2414
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2415
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2416
+
2417
+ #: templates/forms/optout.php:36
2418
+ msgid "Warning: Opting out will block automatic updates"
2419
+ msgstr "Warning: Opting out will block automatic updates"
2420
+
2421
+ #: templates/forms/optout.php:37
2422
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2423
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2424
+
2425
+ #: templates/forms/optout.php:39
2426
+ msgid "I'd like to keep automatic updates"
2427
+ msgstr "I'd like to keep automatic updates"
2428
+
2429
+ #: templates/forms/optout.php:44
2430
+ 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."
2431
+ 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."
2432
+
2433
+ #: templates/forms/optout.php:45
2434
+ msgid "On second thought - I want to continue helping"
2435
+ msgstr "On second thought - I want to continue helping"
2436
+
2437
+ #: templates/forms/optout.php:49
2438
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2439
+ msgstr "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2440
+
2441
+ #: templates/forms/optout.php:74
2442
+ msgid "Plugins & themes tracking"
2443
+ msgstr "Plugins & themes tracking"
2444
+
2445
+ #: templates/forms/optout.php:261
2446
+ msgid "Saved"
2447
+ msgstr "Saved"
2448
+
2449
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2450
+ msgid "There is a new version of %s available."
2451
+ msgstr "A(z) %s új verziója érhető el."
2452
+
2453
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2454
+ msgid " %s to access version %s security & feature updates, and support."
2455
+ msgstr " %s to access version %s security & feature updates, and support."
2456
+
2457
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2458
+ msgid "New Version Available"
2459
+ msgstr "Új verzió érhető el"
2460
+
2461
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2462
+ msgctxt "close a window"
2463
+ msgid "Dismiss"
2464
+ msgstr "Mégsem"
2465
+
2466
+ #: templates/forms/resend-key.php:21
2467
+ msgid "Send License Key"
2468
+ msgstr "Licensz kulcs küldése"
2469
+
2470
+ #: templates/forms/resend-key.php:57
2471
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2472
+ 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."
2473
+
2474
+ #: templates/forms/subscription-cancellation.php:37
2475
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2476
+ 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."
2477
+
2478
+ #: templates/forms/subscription-cancellation.php:47
2479
+ 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?"
2480
+ 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?"
2481
+
2482
+ #: templates/forms/subscription-cancellation.php:52
2483
+ msgid "license"
2484
+ msgstr "licensz"
2485
+
2486
+ #: templates/forms/subscription-cancellation.php:57
2487
+ 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."
2488
+ 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."
2489
+
2490
+ #: templates/forms/subscription-cancellation.php:68
2491
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2492
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2493
+
2494
+ #: templates/forms/subscription-cancellation.php:103
2495
+ 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."
2496
+ 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."
2497
+
2498
+ #: templates/forms/subscription-cancellation.php:136
2499
+ msgid "Cancel %s?"
2500
+ msgstr "Cancel %s?"
2501
+
2502
+ #: templates/forms/subscription-cancellation.php:143
2503
+ msgid "Proceed"
2504
+ msgstr "Proceed"
2505
+
2506
+ #: templates/forms/subscription-cancellation.php191,
2507
+ #: templates/forms/deactivation/form.php:171
2508
+ msgid "Cancel %s & Proceed"
2509
+ msgstr "Cancel %s & Proceed"
2510
+
2511
+ #: templates/forms/trial-start.php:22
2512
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2513
+ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2514
+
2515
+ #: templates/forms/trial-start.php:28
2516
+ 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."
2517
+ 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."
2518
+
2519
+ #: templates/forms/user-change.php:26
2520
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2521
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2522
+
2523
+ #: templates/forms/user-change.php:28
2524
+ msgid "I Agree - Change User"
2525
+ msgstr "I Agree - Change User"
2526
+
2527
+ #: templates/forms/user-change.php:30
2528
+ msgid "Enter email address"
2529
+ msgstr "Enter email address"
2530
+
2531
+ #: templates/forms/user-change.php:81
2532
+ msgctxt "close window"
2533
+ msgid "Dismiss"
2534
+ msgstr "Mégsem"
2535
+
2536
+ #: templates/js/style-premium-theme.php:39
2537
+ msgid "Premium"
2538
+ msgstr "Prémium"
2539
+
2540
+ #: templates/js/style-premium-theme.php:42
2541
+ msgid "Beta"
2542
+ msgstr "Beta"
2543
+
2544
+ #: templates/partials/network-activation.php:27
2545
+ msgid "Activate license on all sites in the network."
2546
+ msgstr "Activate license on all sites in the network."
2547
+
2548
+ #: templates/partials/network-activation.php:28
2549
+ msgid "Apply on all sites in the network."
2550
+ msgstr "Apply on all sites in the network."
2551
+
2552
+ #: templates/partials/network-activation.php:31
2553
+ msgid "Activate license on all pending sites."
2554
+ msgstr "Activate license on all pending sites."
2555
+
2556
+ #: templates/partials/network-activation.php:32
2557
+ msgid "Apply on all pending sites."
2558
+ msgstr "Apply on all pending sites."
2559
+
2560
+ #: templates/partials/network-activation.php40,
2561
+ #: templates/partials/network-activation.php:74
2562
+ msgid "allow"
2563
+ msgstr "allow"
2564
+
2565
+ #: templates/partials/network-activation.php43,
2566
+ #: templates/partials/network-activation.php:77
2567
+ msgid "delegate"
2568
+ msgstr "delegate"
2569
+
2570
+ #: templates/partials/network-activation.php47,
2571
+ #: templates/partials/network-activation.php:81
2572
+ msgid "skip"
2573
+ msgstr "ugrás"
2574
+
2575
+ #: templates/plugin-info/description.php72,
2576
+ #: templates/plugin-info/screenshots.php:31
2577
+ msgid "Click to view full-size screenshot %d"
2578
+ msgstr "Click to view full-size screenshot %d"
2579
+
2580
+ #: templates/plugin-info/features.php:56
2581
+ msgid "Unlimited Updates"
2582
+ msgstr "Korlátlan frissítés"
2583
+
2584
+ #: templates/account/partials/activate-license-button.php:46
2585
+ msgid "Localhost"
2586
+ msgstr "Localhost"
2587
+
2588
+ #: templates/account/partials/activate-license-button.php:50
2589
+ msgctxt "as 5 licenses left"
2590
+ msgid "%s left"
2591
+ msgstr "%s left"
2592
+
2593
+ #: templates/account/partials/activate-license-button.php:51
2594
+ msgid "Last license"
2595
+ msgstr "Last license"
2596
+
2597
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2598
+ #. subscription'
2599
+ #: templates/account/partials/addon.php:29
2600
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2601
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2602
+
2603
+ #: templates/account/partials/addon.php:185
2604
+ msgid "Cancelled"
2605
+ msgstr "Törölve"
2606
+
2607
+ #: templates/account/partials/addon.php:195
2608
+ msgid "No expiration"
2609
+ msgstr "No expiration"
2610
+
2611
+ #: templates/account/partials/site.php:189
2612
+ msgid "Owner Name"
2613
+ msgstr "Tulajdonos neve"
2614
+
2615
+ #: templates/account/partials/site.php:201
2616
+ msgid "Owner Email"
2617
+ msgstr "Tulajdonos email címe"
2618
+
2619
+ #: templates/account/partials/site.php:213
2620
+ msgid "Owner ID"
2621
+ msgstr "Tulajdonos ID"
2622
+
2623
+ #: templates/account/partials/site.php:286
2624
+ msgid "Subscription"
2625
+ msgstr "Előfizetés"
2626
+
2627
+ #: templates/forms/deactivation/contact.php:19
2628
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2629
+ msgstr "Sorry for the inconvenience and we are here to help if you give us a chance."
2630
+
2631
+ #: templates/forms/deactivation/contact.php:22
2632
+ msgid "Contact Support"
2633
+ msgstr "Írás az ügyfélszolgálatra"
2634
+
2635
+ #: templates/forms/deactivation/form.php:64
2636
+ msgid "Anonymous feedback"
2637
+ msgstr "Névtelen visszajelzés"
2638
+
2639
+ #: templates/forms/deactivation/form.php:70
2640
+ msgid "Deactivate"
2641
+ msgstr "Deaktiválás"
2642
+
2643
+ #: templates/forms/deactivation/form.php:72
2644
+ msgid "Activate %s"
2645
+ msgstr "%s aktiválása"
2646
+
2647
+ #: templates/forms/deactivation/form.php:87
2648
+ msgid "Quick Feedback"
2649
+ msgstr "Gyors visszajelzés"
2650
+
2651
+ #: templates/forms/deactivation/form.php:91
2652
+ msgid "If you have a moment, please let us know why you are %s"
2653
+ msgstr "Kérlek mondd el, miért %s"
2654
+
2655
+ #: templates/forms/deactivation/form.php:91
2656
+ msgid "deactivating"
2657
+ msgstr "deaktiválod"
2658
+
2659
+ #: templates/forms/deactivation/form.php:91
2660
+ msgid "switching"
2661
+ msgstr "váltasz"
2662
+
2663
+ #: templates/forms/deactivation/form.php:369
2664
+ msgid "Submit & %s"
2665
+ msgstr "Küldés & %s"
2666
+
2667
+ #: templates/forms/deactivation/form.php:390
2668
+ msgid "Kindly tell us the reason so we can improve."
2669
+ msgstr "Ha elmondod az okát, tudunk fejlődni."
2670
+
2671
+ #: templates/forms/deactivation/form.php:515
2672
+ msgid "Yes - %s"
2673
+ msgstr "Yes - %s"
2674
+
2675
+ #: templates/forms/deactivation/form.php:522
2676
+ msgid "Skip & %s"
2677
+ msgstr "Kihagyás & %s"
2678
+
2679
+ #: templates/forms/deactivation/retry-skip.php:21
2680
+ msgid "Click here to use the plugin anonymously"
2681
+ msgstr "Kattints ide, ha névtelenül szeretnéd használni a bővítményt"
2682
+
2683
+ #: templates/forms/deactivation/retry-skip.php:23
2684
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2685
+ 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.po ADDED
@@ -0,0 +1,2690 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 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-2019
6
+ # Dario Curvino <d.curvino@gmail.com>, 2018,2020
7
+ # Tropicalista <francescopepe@email.it>, 2019
8
+ # Alessandro Pelly Benassi <plasmax@gmail.com>, 2016-2017
9
+ # Vova Feldman <vova@freemius.com>, 2015-2016
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: WordPress SDK\n"
13
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
14
+ "POT-Creation-Date: \n"
15
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
16
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
17
+ "Language: it_IT\n"
18
+ "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+ "MIME-Version: 1.0\n"
23
+ "X-Poedit-Basepath: ..\n"
24
+ "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"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
27
+ "X-Poedit-SourceCharset: UTF-8\n"
28
+
29
+ #: includes/class-freemius.php1919, templates/account.php:912
30
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
31
+ msgstr "Un aggiornamento per la versione Beta sostituirà la versione installata di %scon l'ultima versione Beta, utilizzare con attenzione e non su siti in produzione. Sei stato avvisato!"
32
+
33
+ #: includes/class-freemius.php:1926
34
+ msgid "Would you like to proceed with the update?"
35
+ msgstr "Vuoi procedere con l'aggiornamento?"
36
+
37
+ #: includes/class-freemius.php:2138
38
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
39
+ msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore."
40
+
41
+ #: includes/class-freemius.php:2140
42
+ msgid "Error"
43
+ msgstr "Errore"
44
+
45
+ #: includes/class-freemius.php:2540
46
+ msgid "I found a better %s"
47
+ msgstr "Ho trovato un migliore %s"
48
+
49
+ #: includes/class-freemius.php:2542
50
+ msgid "What's the %s's name?"
51
+ msgstr "Qual è il nome di %s?"
52
+
53
+ #: includes/class-freemius.php:2548
54
+ msgid "It's a temporary %s. I'm just debugging an issue."
55
+ msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema."
56
+
57
+ #: includes/class-freemius.php:2550
58
+ msgid "Deactivation"
59
+ msgstr "Disattivazione"
60
+
61
+ #: includes/class-freemius.php:2551
62
+ msgid "Theme Switch"
63
+ msgstr "Cambio tema"
64
+
65
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
66
+ #: templates/forms/user-change.php:29
67
+ msgid "Other"
68
+ msgstr "Altro"
69
+
70
+ #: includes/class-freemius.php:2568
71
+ msgid "I no longer need the %s"
72
+ msgstr "Non ho più bisogno di %s"
73
+
74
+ #: includes/class-freemius.php:2575
75
+ msgid "I only needed the %s for a short period"
76
+ msgstr "Ho avuto bisogno di %s per un breve periodo"
77
+
78
+ #: includes/class-freemius.php:2581
79
+ msgid "The %s broke my site"
80
+ msgstr "%s ha rotto il mio sito"
81
+
82
+ #: includes/class-freemius.php:2588
83
+ msgid "The %s suddenly stopped working"
84
+ msgstr "%s ha improvvisamente smesso di funzionare"
85
+
86
+ #: includes/class-freemius.php:2598
87
+ msgid "I can't pay for it anymore"
88
+ msgstr "Non posso piú pagarlo"
89
+
90
+ #: includes/class-freemius.php:2600
91
+ msgid "What price would you feel comfortable paying?"
92
+ msgstr "Che prezzo ritieni opportuno pagare?"
93
+
94
+ #: includes/class-freemius.php:2606
95
+ msgid "I don't like to share my information with you"
96
+ msgstr "Non voglio condividere i miei dati con te"
97
+
98
+ #: includes/class-freemius.php:2627
99
+ msgid "The %s didn't work"
100
+ msgstr "%s non funziona"
101
+
102
+ #: includes/class-freemius.php:2637
103
+ msgid "I couldn't understand how to make it work"
104
+ msgstr "Non capisco come farlo funzionare"
105
+
106
+ #: includes/class-freemius.php:2645
107
+ msgid "The %s is great, but I need specific feature that you don't support"
108
+ msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata"
109
+
110
+ #: includes/class-freemius.php:2647
111
+ msgid "What feature?"
112
+ msgstr "Quale funzionalitá?"
113
+
114
+ #: includes/class-freemius.php:2651
115
+ msgid "The %s is not working"
116
+ msgstr "%s non funziona"
117
+
118
+ #: includes/class-freemius.php:2653
119
+ msgid "Kindly share what didn't work so we can fix it for future users..."
120
+ msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..."
121
+
122
+ #: includes/class-freemius.php:2657
123
+ msgid "It's not what I was looking for"
124
+ msgstr "Non é quello che stavo cercando"
125
+
126
+ #: includes/class-freemius.php:2659
127
+ msgid "What you've been looking for?"
128
+ msgstr "Che cosa stai cercando?"
129
+
130
+ #: includes/class-freemius.php:2663
131
+ msgid "The %s didn't work as expected"
132
+ msgstr "%s non ha funzionato come mi aspettavo"
133
+
134
+ #: includes/class-freemius.php:2665
135
+ msgid "What did you expect?"
136
+ msgstr "Che cosa ti aspettavi?"
137
+
138
+ #: includes/class-freemius.php3520, templates/debug.php:20
139
+ msgid "Freemius Debug"
140
+ msgstr "Debug Freemius"
141
+
142
+ #: includes/class-freemius.php:4272
143
+ msgid "I don't know what is cURL or how to install it, help me!"
144
+ msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!"
145
+
146
+ #: includes/class-freemius.php:4274
147
+ 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."
148
+ msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti."
149
+
150
+ #: includes/class-freemius.php:4281
151
+ 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."
152
+ 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."
153
+
154
+ #: includes/class-freemius.php:4386
155
+ msgid "Yes - do your thing"
156
+ msgstr "Sì - fai pure"
157
+
158
+ #: includes/class-freemius.php:4391
159
+ msgid "No - just deactivate"
160
+ msgstr "No - disattiva e basta"
161
+
162
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
163
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
164
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
165
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
166
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
167
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
168
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
169
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
170
+ msgctxt "exclamation"
171
+ msgid "Oops"
172
+ msgstr "Ops"
173
+
174
+ #: includes/class-freemius.php:4505
175
+ 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."
176
+ 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."
177
+
178
+ #: includes/class-freemius.php:4927
179
+ msgctxt "addonX cannot run without pluginY"
180
+ msgid "%s cannot run without %s."
181
+ msgstr "%s non può funzionare senza %s."
182
+
183
+ #: includes/class-freemius.php:4928
184
+ msgctxt "addonX cannot run..."
185
+ msgid "%s cannot run without the plugin."
186
+ msgstr "%s non può funzionare senza il plugin."
187
+
188
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
189
+ #: includes/class-freemius.php:21180
190
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
191
+ msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
192
+
193
+ #: includes/class-freemius.php:5857
194
+ msgid "Premium %s version was successfully activated."
195
+ msgstr "La versione 1%s Permium è stata attivata con successo."
196
+
197
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
198
+ msgctxt ""
199
+ msgid "W00t"
200
+ msgstr "Forte"
201
+
202
+ #: includes/class-freemius.php:5884
203
+ msgid "You have a %s license."
204
+ msgstr "Hai la licenza %s."
205
+
206
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
207
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
208
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
209
+ #: includes/class-freemius.php:20930
210
+ msgctxt "interjection expressing joy or exuberance"
211
+ msgid "Yee-haw"
212
+ msgstr "Evvai"
213
+
214
+ #: includes/class-freemius.php:6174
215
+ 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."
216
+ 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."
217
+
218
+ #: includes/class-freemius.php:6178
219
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
220
+ msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin."
221
+
222
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
223
+ #: templates/account/partials/addon.php:381
224
+ msgid "More information about %s"
225
+ msgstr "Ulteriori informazioni su %s"
226
+
227
+ #: includes/class-freemius.php:6188
228
+ msgid "Purchase License"
229
+ msgstr "Acquista licenza"
230
+
231
+ #: includes/class-freemius.php7125, templates/connect.php:171
232
+ 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."
233
+ msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s."
234
+
235
+ #: includes/class-freemius.php:7129
236
+ msgid "start the trial"
237
+ msgstr "Inizia il periodo di prova gratuito"
238
+
239
+ #: includes/class-freemius.php7130, templates/connect.php:175
240
+ msgid "complete the install"
241
+ msgstr "completa l'installazione"
242
+
243
+ #: includes/class-freemius.php:7249
244
+ msgid "You are just one step away - %s"
245
+ msgstr "Sei a un passo dalla fine - %s"
246
+
247
+ #: includes/class-freemius.php:7252
248
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
249
+ msgid "Complete \"%s\" Activation Now"
250
+ msgstr "Completa l'attivazione di \"%s\" ora"
251
+
252
+ #: includes/class-freemius.php:7334
253
+ msgid "We made a few tweaks to the %s, %s"
254
+ msgstr "Abbiamo fatto alcune migliore a %s,%s"
255
+
256
+ #: includes/class-freemius.php:7338
257
+ msgid "Opt in to make \"%s\" better!"
258
+ msgstr "Abilita \"%s\" per renderlo migliore!"
259
+
260
+ #: includes/class-freemius.php:7773
261
+ msgid "The upgrade of %s was successfully completed."
262
+ msgstr "L'aggiornamento di %s è stato completato con successo."
263
+
264
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
265
+ #: includes/class-fs-plugin-updater.php1282,
266
+ #: includes/class-fs-plugin-updater.php1289,
267
+ #: templates/auto-installation.php:32
268
+ msgid "Add-On"
269
+ msgstr "Add-on"
270
+
271
+ #: includes/class-freemius.php10257, templates/account.php394,
272
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
273
+ msgid "Plugin"
274
+ msgstr "Plugin"
275
+
276
+ #: includes/class-freemius.php10258, templates/account.php395,
277
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
278
+ #: templates/forms/deactivation/form.php:71
279
+ msgid "Theme"
280
+ msgstr "Tema"
281
+
282
+ #: includes/class-freemius.php:13188
283
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
284
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
285
+
286
+ #: includes/class-freemius.php:13202
287
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
288
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
289
+
290
+ #: includes/class-freemius.php:13207
291
+ msgid "User Dashboard"
292
+ msgstr "User Dashboard"
293
+
294
+ #: includes/class-freemius.php:13208
295
+ msgid "revert it now"
296
+ msgstr "revert it now"
297
+
298
+ #: includes/class-freemius.php:13266
299
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
300
+ msgstr "Un errore sconosciuto è avvenuto durante l'attivazione della modalità beta."
301
+
302
+ #: includes/class-freemius.php:13339
303
+ msgid "Invalid new user ID or email address."
304
+ msgstr "Invalid new user ID or email address."
305
+
306
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
307
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
308
+ msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato."
309
+
310
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
311
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
312
+ msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
313
+
314
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
315
+ msgid "Change Ownership"
316
+ msgstr "Cambia Proprietario"
317
+
318
+ #: includes/class-freemius.php:13977
319
+ msgid "Invalid site details collection."
320
+ msgstr "Raccolta dati siti non valida."
321
+
322
+ #: includes/class-freemius.php:14097
323
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
324
+ msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?"
325
+
326
+ #: includes/class-freemius.php:14099
327
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
328
+ msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?"
329
+
330
+ #: includes/class-freemius.php:14373
331
+ msgid "Account is pending activation."
332
+ msgstr "Account in attesa di attivazione."
333
+
334
+ #: includes/class-freemius.php14485,
335
+ #: templates/forms/premium-versions-upgrade-handler.php:47
336
+ msgid "Buy a license now"
337
+ msgstr "Compra una licenza ora"
338
+
339
+ #: includes/class-freemius.php14497,
340
+ #: templates/forms/premium-versions-upgrade-handler.php:46
341
+ msgid "Renew your license now"
342
+ msgstr "Rinnova la tua licenza ora"
343
+
344
+ #: includes/class-freemius.php:14501
345
+ msgid "%s to access version %s security & feature updates, and support."
346
+ msgstr "%sper accedere alla versione %sper aggiornamenti di sicurezza, nuove funzionalità e supporto."
347
+
348
+ #: includes/class-freemius.php:16929
349
+ msgid "%s activation was successfully completed."
350
+ msgstr "%s è stato attivato con successo."
351
+
352
+ #: includes/class-freemius.php:16943
353
+ msgid "Your account was successfully activated with the %s plan."
354
+ msgstr "Il tuo account è stato attivato correttamente con il piano %s."
355
+
356
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
357
+ msgid "Your trial has been successfully started."
358
+ msgstr "La versione di prova è stata avviata correttamente."
359
+
360
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
361
+ #: includes/class-freemius.php:17820
362
+ msgid "Couldn't activate %s."
363
+ msgstr "Non é stato possibile attivare %s."
364
+
365
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
366
+ #: includes/class-freemius.php:17821
367
+ msgid "Please contact us with the following message:"
368
+ msgstr "Contattaci con il seguente messaggio:"
369
+
370
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
371
+ msgid "An unknown error has occurred."
372
+ msgstr "Un errore sconosciuto è avvenuto."
373
+
374
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
375
+ msgid "Upgrade"
376
+ msgstr "Aggiornamento"
377
+
378
+ #: includes/class-freemius.php:18184
379
+ msgid "Start Trial"
380
+ msgstr "Inizia il periodo di prova gratuito"
381
+
382
+ #: includes/class-freemius.php:18186
383
+ msgid "Pricing"
384
+ msgstr "Prezzi"
385
+
386
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
387
+ msgid "Affiliation"
388
+ msgstr "Affiliazione"
389
+
390
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
391
+ #: templates/account.php242, templates/debug.php:324
392
+ msgid "Account"
393
+ msgstr "Account"
394
+
395
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
396
+ #: includes/customizer/class-fs-customizer-support-section.php:60
397
+ msgid "Contact Us"
398
+ msgstr "Contattaci"
399
+
400
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
401
+ #: includes/class-freemius.php23354, templates/account.php121,
402
+ #: templates/account/partials/addon.php:44
403
+ msgid "Add-Ons"
404
+ msgstr "Addon"
405
+
406
+ #: includes/class-freemius.php:18361
407
+ msgctxt "ASCII arrow left icon"
408
+ msgid "&#x2190;"
409
+ msgstr "&#x2190;"
410
+
411
+ #: includes/class-freemius.php:18361
412
+ msgctxt "ASCII arrow right icon"
413
+ msgid "&#x27a4;"
414
+ msgstr "&#x27a4;"
415
+
416
+ #: includes/class-freemius.php18363, templates/pricing.php:109
417
+ msgctxt "noun"
418
+ msgid "Pricing"
419
+ msgstr "Prezzi"
420
+
421
+ #: includes/class-freemius.php18576,
422
+ #: includes/customizer/class-fs-customizer-support-section.php:67
423
+ msgid "Support Forum"
424
+ msgstr "Forum di supporto"
425
+
426
+ #: includes/class-freemius.php:19550
427
+ msgid "Your email has been successfully verified - you are AWESOME!"
428
+ msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!"
429
+
430
+ #: includes/class-freemius.php:19551
431
+ msgctxt "a positive response"
432
+ msgid "Right on"
433
+ msgstr "Sì"
434
+
435
+ #: includes/class-freemius.php:20057
436
+ msgid "seems like the key you entered doesn't match our records."
437
+ msgstr "sembra che la chiave che hai inserito non risulti nei nostri registri."
438
+
439
+ #: includes/class-freemius.php:20081
440
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
441
+ msgstr "La modalità Debug è stata attivata con successo e sarà disattivata automaticamente in 60 minuti. Puoi disattivarla prima cliccando sul link \"Ferma Debug\"."
442
+
443
+ #: includes/class-freemius.php:20316
444
+ msgid "Your %s Add-on plan was successfully upgraded."
445
+ msgstr "Il piano del tuo add-on %s è stato aggiornato con successo."
446
+
447
+ #: includes/class-freemius.php:20318
448
+ msgid "%s Add-on was successfully purchased."
449
+ msgstr "L' add-on %s è stato acquistato con successo."
450
+
451
+ #: includes/class-freemius.php:20321
452
+ msgid "Download the latest version"
453
+ msgstr "Scarica l'ultima versione"
454
+
455
+ #: includes/class-freemius.php:20407
456
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
457
+ msgstr "Il tuo server sta bloccando l'accesso alle API di Freemius, sono fondamentali per la sincronizzazione di%1$s. Chiedi al tuo amministratore di mettere in whitelist %2$s."
458
+
459
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
460
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
461
+ msgid "Error received from the server:"
462
+ msgstr "Errore ricevuto dal server:"
463
+
464
+ #: includes/class-freemius.php:20423
465
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
466
+ msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova."
467
+
468
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
469
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
470
+ msgctxt ""
471
+ msgid "Hmm"
472
+ msgstr "Uhm"
473
+
474
+ #: includes/class-freemius.php:20664
475
+ 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."
476
+ 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."
477
+
478
+ #: includes/class-freemius.php20665, templates/account.php123,
479
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
480
+ msgctxt "trial period"
481
+ msgid "Trial"
482
+ msgstr "Prova gratuita"
483
+
484
+ #: includes/class-freemius.php:20670
485
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
486
+ msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s."
487
+
488
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
489
+ msgid "Please contact us here"
490
+ msgstr "Contattaci qui"
491
+
492
+ #: includes/class-freemius.php:20685
493
+ msgid "Your plan was successfully activated."
494
+ msgstr "Il tuo piano è stato attivato con successo."
495
+
496
+ #: includes/class-freemius.php:20686
497
+ msgid "Your plan was successfully upgraded."
498
+ msgstr "Il piano è stato aggiornato con successo."
499
+
500
+ #: includes/class-freemius.php:20703
501
+ msgid "Your plan was successfully changed to %s."
502
+ msgstr "Il piano è stato cambiato con successo a %s."
503
+
504
+ #: includes/class-freemius.php:20719
505
+ msgid "Your license has expired. You can still continue using the free %s forever."
506
+ msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
507
+
508
+ #: includes/class-freemius.php:20721
509
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
510
+ msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
511
+
512
+ #: includes/class-freemius.php:20729
513
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
514
+ msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto."
515
+
516
+ #: includes/class-freemius.php:20742
517
+ 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."
518
+ 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."
519
+
520
+ #: includes/class-freemius.php:20768
521
+ msgid "Your free trial has expired. You can still continue using all our free features."
522
+ msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite."
523
+
524
+ #: includes/class-freemius.php:20770
525
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
526
+ msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
527
+
528
+ #: includes/class-freemius.php:20885
529
+ msgid "It looks like the license could not be activated."
530
+ msgstr "Sembra che la licenza non possa essere attivata."
531
+
532
+ #: includes/class-freemius.php:20927
533
+ msgid "Your license was successfully activated."
534
+ msgstr "La tua licenza è stata attivata correttamente."
535
+
536
+ #: includes/class-freemius.php:20953
537
+ msgid "It looks like your site currently doesn't have an active license."
538
+ msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva."
539
+
540
+ #: includes/class-freemius.php:20977
541
+ msgid "It looks like the license deactivation failed."
542
+ msgstr "Sembra che la disattivazione della licenza non sia riuscita."
543
+
544
+ #: includes/class-freemius.php:21006
545
+ msgid "Your %s license was successfully deactivated."
546
+ msgstr "Your %s license was successfully deactivated."
547
+
548
+ #: includes/class-freemius.php:21007
549
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
550
+ msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s."
551
+
552
+ #: includes/class-freemius.php:21010
553
+ msgid "O.K"
554
+ msgstr "OK"
555
+
556
+ #: includes/class-freemius.php:21063
557
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
558
+ msgstr "Sembra che stai avendo dei problemi temporanei con la cancellazione della sottoscrizione. Prova nuovamente tra pochi minuti."
559
+
560
+ #: includes/class-freemius.php:21072
561
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
562
+ msgstr "La tua sottoscrizione è stata cancellata con successo. La licenza del piano %sscadrà in %s."
563
+
564
+ #: includes/class-freemius.php:21114
565
+ msgid "You are already running the %s in a trial mode."
566
+ msgstr "Stai già usando %s in modalità prova."
567
+
568
+ #: includes/class-freemius.php:21125
569
+ msgid "You already utilized a trial before."
570
+ msgstr "Hai già utilizzato una prova gratuita in passato."
571
+
572
+ #: includes/class-freemius.php:21139
573
+ msgid "Plan %s do not exist, therefore, can't start a trial."
574
+ msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova."
575
+
576
+ #: includes/class-freemius.php:21150
577
+ msgid "Plan %s does not support a trial period."
578
+ msgstr "Il piano %s non supporta il periodo di prova."
579
+
580
+ #: includes/class-freemius.php:21161
581
+ msgid "None of the %s's plans supports a trial period."
582
+ msgstr "Nessuno dei piani di %ssupporta il periodo di prova."
583
+
584
+ #: includes/class-freemius.php:21211
585
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
586
+ msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)"
587
+
588
+ #: includes/class-freemius.php:21247
589
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
590
+ msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto."
591
+
592
+ #: includes/class-freemius.php:21266
593
+ msgid "Your %s free trial was successfully cancelled."
594
+ msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo."
595
+
596
+ #: includes/class-freemius.php:21582
597
+ msgid "Version %s was released."
598
+ msgstr "La versione %s é stata rilasciata."
599
+
600
+ #: includes/class-freemius.php:21582
601
+ msgid "Please download %s."
602
+ msgstr "Scarica %s."
603
+
604
+ #: includes/class-freemius.php:21589
605
+ msgid "the latest %s version here"
606
+ msgstr "l'ultima versione %s é quì"
607
+
608
+ #: includes/class-freemius.php:21594
609
+ msgid "New"
610
+ msgstr "Nuovo"
611
+
612
+ #: includes/class-freemius.php:21599
613
+ msgid "Seems like you got the latest release."
614
+ msgstr "Sembra che tu abbia la versione più recente."
615
+
616
+ #: includes/class-freemius.php:21600
617
+ msgid "You are all good!"
618
+ msgstr "Sei fantastico!"
619
+
620
+ #: includes/class-freemius.php:21903
621
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
622
+ 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."
623
+
624
+ #: includes/class-freemius.php:22043
625
+ msgid "Site successfully opted in."
626
+ msgstr "Sito accettato con successo."
627
+
628
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
629
+ msgid "Awesome"
630
+ msgstr "Fantastico"
631
+
632
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
633
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
634
+ msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
635
+
636
+ #: includes/class-freemius.php:22061
637
+ msgid "Thank you!"
638
+ msgstr "Grazie!"
639
+
640
+ #: includes/class-freemius.php:22068
641
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
642
+ msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s."
643
+
644
+ #: includes/class-freemius.php:22226
645
+ 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."
646
+ 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."
647
+
648
+ #: includes/class-freemius.php:22232
649
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
650
+ msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale."
651
+
652
+ #: includes/class-freemius.php:22237
653
+ msgid "%s is the new owner of the account."
654
+ msgstr "%s è il nuovo proprietario dell'account."
655
+
656
+ #: includes/class-freemius.php:22239
657
+ msgctxt "as congratulations"
658
+ msgid "Congrats"
659
+ msgstr "Congratulazioni"
660
+
661
+ #: includes/class-freemius.php:22275
662
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
663
+ msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti."
664
+
665
+ #: includes/class-freemius.php:22287
666
+ msgid "Please provide your full name."
667
+ msgstr "Per favore inserisci il tuo nome completo."
668
+
669
+ #: includes/class-freemius.php:22292
670
+ msgid "Your name was successfully updated."
671
+ msgstr "Il tuo nome è stato aggiornato correttamente."
672
+
673
+ #: includes/class-freemius.php:22353
674
+ msgid "You have successfully updated your %s."
675
+ msgstr "Hai aggiornato con successo il tuo %s."
676
+
677
+ #: includes/class-freemius.php:22412
678
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
679
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
680
+
681
+ #: includes/class-freemius.php:22415
682
+ msgid "Click here"
683
+ msgstr "Click here"
684
+
685
+ #: includes/class-freemius.php:22513
686
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
687
+ msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno."
688
+
689
+ #: includes/class-freemius.php:22514
690
+ msgctxt "advance notice of something that will need attention."
691
+ msgid "Heads up"
692
+ msgstr "Attenzione"
693
+
694
+ #: includes/class-freemius.php:23090
695
+ msgctxt "exclamation"
696
+ msgid "Hey"
697
+ msgstr "Hey"
698
+
699
+ #: includes/class-freemius.php:23090
700
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
701
+ msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni."
702
+
703
+ #: includes/class-freemius.php:23098
704
+ msgid "No commitment for %s days - cancel anytime!"
705
+ msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!"
706
+
707
+ #: includes/class-freemius.php:23099
708
+ msgid "No credit card required"
709
+ msgstr "Nessuna carta di credito richiesta"
710
+
711
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
712
+ msgctxt "call to action"
713
+ msgid "Start free trial"
714
+ msgstr "Inizia il periodo di prova gratuito"
715
+
716
+ #: includes/class-freemius.php:23183
717
+ 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!"
718
+ msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
719
+
720
+ #: includes/class-freemius.php:23192
721
+ msgid "Learn more"
722
+ msgstr "Scopri altro"
723
+
724
+ #: includes/class-freemius.php23378, templates/account.php558,
725
+ #: templates/account.php708, templates/connect.php179,
726
+ #: templates/connect.php461, templates/forms/license-activation.php27,
727
+ #: templates/account/partials/addon.php:321
728
+ msgid "Activate License"
729
+ msgstr "Attiva licenza"
730
+
731
+ #: includes/class-freemius.php23379, templates/account.php652,
732
+ #: templates/account.php707, templates/account/partials/addon.php322,
733
+ #: templates/account/partials/site.php:271
734
+ msgid "Change License"
735
+ msgstr "Cambia licenza"
736
+
737
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
738
+ msgid "Opt Out"
739
+ msgstr "Cancella iscrizione"
740
+
741
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
742
+ #: templates/account/partials/site.php49,
743
+ #: templates/account/partials/site.php:169
744
+ msgid "Opt In"
745
+ msgstr "Iscriviti"
746
+
747
+ #: includes/class-freemius.php:23738
748
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
749
+ msgstr "La versione a pagamento di %1$sè già installata. Attiva questione versione per iniziare ad usare le funzionalità di %2$s.%3$s"
750
+
751
+ #: includes/class-freemius.php:23746
752
+ msgid "Activate %s features"
753
+ msgstr "Attiva le funzionalità di %s"
754
+
755
+ #: includes/class-freemius.php:23759
756
+ msgid "Please follow these steps to complete the upgrade"
757
+ msgstr "Segui i passi seguenti per completare l'aggiornamento"
758
+
759
+ #: includes/class-freemius.php:23763
760
+ msgid "Download the latest %s version"
761
+ msgstr "Scarica l'ultima versione di %s"
762
+
763
+ #: includes/class-freemius.php:23767
764
+ msgid "Upload and activate the downloaded version"
765
+ msgstr "Carica e attiva la versione scaricata"
766
+
767
+ #: includes/class-freemius.php:23769
768
+ msgid "How to upload and activate?"
769
+ msgstr "Come faccio a caricare ed attivare?"
770
+
771
+ #: includes/class-freemius.php:23903
772
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
773
+ msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza."
774
+
775
+ #: includes/class-freemius.php:24072
776
+ msgid "Auto installation only works for opted-in users."
777
+ msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso."
778
+
779
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
780
+ #: includes/class-fs-plugin-updater.php1261,
781
+ #: includes/class-fs-plugin-updater.php:1275
782
+ msgid "Invalid module ID."
783
+ msgstr "ID modulo non valida."
784
+
785
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
786
+ msgid "Premium version already active."
787
+ msgstr "Versione Premium già attiva."
788
+
789
+ #: includes/class-freemius.php:24098
790
+ msgid "You do not have a valid license to access the premium version."
791
+ msgstr "Non disponi di una licenza valida per accedere alla versione Premium."
792
+
793
+ #: includes/class-freemius.php:24105
794
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
795
+ msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium."
796
+
797
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
798
+ msgid "Premium add-on version already installed."
799
+ msgstr "Versione Premium dell'add-on già installata."
800
+
801
+ #: includes/class-freemius.php:24473
802
+ msgid "View paid features"
803
+ msgstr "Vedi funzionalità a pagamento"
804
+
805
+ #: includes/class-freemius.php:24795
806
+ msgid "Thank you so much for using %s and its add-ons!"
807
+ msgstr "Grazie per utilizzare %se i suoi addon!"
808
+
809
+ #: includes/class-freemius.php:24796
810
+ msgid "Thank you so much for using %s!"
811
+ msgstr "Grazie per utilizzare %s!"
812
+
813
+ #: includes/class-freemius.php:24802
814
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
815
+ msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s."
816
+
817
+ #: includes/class-freemius.php:24806
818
+ msgid "Thank you so much for using our products!"
819
+ msgstr "Grazie per utilizzare i nostri prodotti!"
820
+
821
+ #: includes/class-freemius.php:24807
822
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
823
+ msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare."
824
+
825
+ #: includes/class-freemius.php:24826
826
+ msgid "%s and its add-ons"
827
+ msgstr "%se i suoi addon"
828
+
829
+ #: includes/class-freemius.php:24835
830
+ msgid "Products"
831
+ msgstr "Prodotti"
832
+
833
+ #: includes/class-freemius.php24842, templates/connect.php:275
834
+ msgid "Yes"
835
+ msgstr "Si"
836
+
837
+ #: includes/class-freemius.php24843, templates/connect.php:276
838
+ msgid "send me security & feature updates, educational content and offers."
839
+ msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
840
+
841
+ #: includes/class-freemius.php24844, templates/connect.php:281
842
+ msgid "No"
843
+ msgstr "No"
844
+
845
+ #: includes/class-freemius.php24846, templates/connect.php:283
846
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
847
+ msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
848
+
849
+ #: includes/class-freemius.php:24856
850
+ 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 :-)"
851
+ msgstr "Causa la %sDirettiva per la protezione dei Dati Europea (GDPR)%sabbiamo adeguato i requisiti che fornisci per il consenso, confermando che accetti di lasciare i dati."
852
+
853
+ #: includes/class-freemius.php24858, templates/connect.php:290
854
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
855
+ msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:"
856
+
857
+ #: includes/class-freemius.php:25140
858
+ msgid "License key is empty."
859
+ msgstr "La chiave licenza è vuota."
860
+
861
+ #: includes/class-fs-plugin-updater.php206,
862
+ #: templates/forms/premium-versions-upgrade-handler.php:57
863
+ msgid "Renew license"
864
+ msgstr "Rinnova licenza"
865
+
866
+ #: includes/class-fs-plugin-updater.php211,
867
+ #: templates/forms/premium-versions-upgrade-handler.php:58
868
+ msgid "Buy license"
869
+ msgstr "Compra la licenza"
870
+
871
+ #: includes/class-fs-plugin-updater.php327,
872
+ #: includes/class-fs-plugin-updater.php:360
873
+ msgid "There is a %s of %s available."
874
+ msgstr "C'è un %sdi %s disponibile."
875
+
876
+ #: includes/class-fs-plugin-updater.php329,
877
+ #: includes/class-fs-plugin-updater.php:365
878
+ msgid "new Beta version"
879
+ msgstr "nuova versione Beta"
880
+
881
+ #: includes/class-fs-plugin-updater.php330,
882
+ #: includes/class-fs-plugin-updater.php:366
883
+ msgid "new version"
884
+ msgstr "nuova versione"
885
+
886
+ #: includes/class-fs-plugin-updater.php:389
887
+ msgid "Important Upgrade Notice:"
888
+ msgstr "Avviso Importante di aggiornamento:"
889
+
890
+ #: includes/class-fs-plugin-updater.php:1326
891
+ msgid "Installing plugin: %s"
892
+ msgstr "Installazione plugin: %s"
893
+
894
+ #: includes/class-fs-plugin-updater.php:1367
895
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
896
+ msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali."
897
+
898
+ #: includes/class-fs-plugin-updater.php:1549
899
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
900
+ msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato."
901
+
902
+ #: includes/fs-plugin-info-dialog.php:541
903
+ msgid "Purchase More"
904
+ msgstr "Continua a comprare"
905
+
906
+ #: includes/fs-plugin-info-dialog.php542,
907
+ #: templates/account/partials/addon.php:385
908
+ msgctxt "verb"
909
+ msgid "Purchase"
910
+ msgstr "Acquisto"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:546
913
+ msgid "Start my free %s"
914
+ msgstr "Inizia la mia %s"
915
+
916
+ #: includes/fs-plugin-info-dialog.php:744
917
+ msgid "Install Free Version Update Now"
918
+ msgstr "Installa l'ultima versione gratuita"
919
+
920
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
921
+ msgid "Install Update Now"
922
+ msgstr "Installa l'aggiornamento ora"
923
+
924
+ #: includes/fs-plugin-info-dialog.php:754
925
+ msgid "Install Free Version Now"
926
+ msgstr "Installa la versione gratuita ora"
927
+
928
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
929
+ #: templates/auto-installation.php111,
930
+ #: templates/account/partials/addon.php365,
931
+ #: templates/account/partials/addon.php:418
932
+ msgid "Install Now"
933
+ msgstr "Installa ora"
934
+
935
+ #: includes/fs-plugin-info-dialog.php:771
936
+ msgctxt "as download latest version"
937
+ msgid "Download Latest Free Version"
938
+ msgstr "Scarica l'ultima versione gratuita"
939
+
940
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
941
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
942
+ msgctxt "as download latest version"
943
+ msgid "Download Latest"
944
+ msgstr "Scarica l'ultima versione"
945
+
946
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
947
+ #: templates/account/partials/addon.php356,
948
+ #: templates/account/partials/addon.php:412
949
+ msgid "Activate this add-on"
950
+ msgstr "Attivare questo addon"
951
+
952
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
953
+ msgid "Activate Free Version"
954
+ msgstr "Attiva versione gratuita"
955
+
956
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
957
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
958
+ msgid "Activate"
959
+ msgstr "Attiva"
960
+
961
+ #: includes/fs-plugin-info-dialog.php:1002
962
+ msgctxt "Plugin installer section title"
963
+ msgid "Description"
964
+ msgstr "Descrizione"
965
+
966
+ #: includes/fs-plugin-info-dialog.php:1003
967
+ msgctxt "Plugin installer section title"
968
+ msgid "Installation"
969
+ msgstr "Installazione"
970
+
971
+ #: includes/fs-plugin-info-dialog.php:1004
972
+ msgctxt "Plugin installer section title"
973
+ msgid "FAQ"
974
+ msgstr "FAQ"
975
+
976
+ #: includes/fs-plugin-info-dialog.php1005,
977
+ #: templates/plugin-info/description.php:55
978
+ msgid "Screenshots"
979
+ msgstr "Screenshot"
980
+
981
+ #: includes/fs-plugin-info-dialog.php:1006
982
+ msgctxt "Plugin installer section title"
983
+ msgid "Changelog"
984
+ msgstr "Changelog"
985
+
986
+ #: includes/fs-plugin-info-dialog.php:1007
987
+ msgctxt "Plugin installer section title"
988
+ msgid "Reviews"
989
+ msgstr "Recensioni"
990
+
991
+ #: includes/fs-plugin-info-dialog.php:1008
992
+ msgctxt "Plugin installer section title"
993
+ msgid "Other Notes"
994
+ msgstr "Altre note"
995
+
996
+ #: includes/fs-plugin-info-dialog.php:1023
997
+ msgctxt "Plugin installer section title"
998
+ msgid "Features & Pricing"
999
+ msgstr "Caratteristiche & prezzi"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:1033
1002
+ msgid "Plugin Install"
1003
+ msgstr "Installazione del plugin"
1004
+
1005
+ #: includes/fs-plugin-info-dialog.php:1105
1006
+ msgctxt "e.g. Professional Plan"
1007
+ msgid "%s Plan"
1008
+ msgstr "Piano %s"
1009
+
1010
+ #: includes/fs-plugin-info-dialog.php:1131
1011
+ msgctxt "e.g. the best product"
1012
+ msgid "Best"
1013
+ msgstr "Migliore"
1014
+
1015
+ #: includes/fs-plugin-info-dialog.php1137,
1016
+ #: includes/fs-plugin-info-dialog.php:1157
1017
+ msgctxt "as every month"
1018
+ msgid "Monthly"
1019
+ msgstr "Mensilmente"
1020
+
1021
+ #: includes/fs-plugin-info-dialog.php:1140
1022
+ msgctxt "as once a year"
1023
+ msgid "Annual"
1024
+ msgstr "Annuale"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php:1143
1027
+ msgid "Lifetime"
1028
+ msgstr "Tutta la vita"
1029
+
1030
+ #: includes/fs-plugin-info-dialog.php1157,
1031
+ #: includes/fs-plugin-info-dialog.php1159,
1032
+ #: includes/fs-plugin-info-dialog.php:1161
1033
+ msgctxt "e.g. billed monthly"
1034
+ msgid "Billed %s"
1035
+ msgstr "Fatturato %s"
1036
+
1037
+ #: includes/fs-plugin-info-dialog.php:1159
1038
+ msgctxt "as once a year"
1039
+ msgid "Annually"
1040
+ msgstr "Annualmente"
1041
+
1042
+ #: includes/fs-plugin-info-dialog.php:1161
1043
+ msgctxt "as once a year"
1044
+ msgid "Once"
1045
+ msgstr "Una volta"
1046
+
1047
+ #: includes/fs-plugin-info-dialog.php:1167
1048
+ msgid "Single Site License"
1049
+ msgstr "Licenza per sito singolo"
1050
+
1051
+ #: includes/fs-plugin-info-dialog.php:1169
1052
+ msgid "Unlimited Licenses"
1053
+ msgstr "Licenze illimitate"
1054
+
1055
+ #: includes/fs-plugin-info-dialog.php:1171
1056
+ msgid "Up to %s Sites"
1057
+ msgstr "Fino a %s siti"
1058
+
1059
+ #: includes/fs-plugin-info-dialog.php1181,
1060
+ #: templates/plugin-info/features.php:82
1061
+ msgctxt "as monthly period"
1062
+ msgid "mo"
1063
+ msgstr "mese"
1064
+
1065
+ #: includes/fs-plugin-info-dialog.php1188,
1066
+ #: templates/plugin-info/features.php:80
1067
+ msgctxt "as annual period"
1068
+ msgid "year"
1069
+ msgstr "anno"
1070
+
1071
+ #: includes/fs-plugin-info-dialog.php:1242
1072
+ msgctxt "noun"
1073
+ msgid "Price"
1074
+ msgstr "Prezzo"
1075
+
1076
+ #: includes/fs-plugin-info-dialog.php:1290
1077
+ msgid "Save %s"
1078
+ msgstr "Risparmia %s"
1079
+
1080
+ #: includes/fs-plugin-info-dialog.php:1300
1081
+ msgid "No commitment for %s - cancel anytime"
1082
+ msgstr "Nessun impegno con %s - cancella quando vuoi"
1083
+
1084
+ #: includes/fs-plugin-info-dialog.php:1303
1085
+ msgid "After your free %s, pay as little as %s"
1086
+ msgstr "Dopo il tuo %s gratuito, paghi solamente %s"
1087
+
1088
+ #: includes/fs-plugin-info-dialog.php:1314
1089
+ msgid "Details"
1090
+ msgstr "Dettagli"
1091
+
1092
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1093
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1094
+ #: templates/account/partials/addon.php:36
1095
+ msgctxt "product version"
1096
+ msgid "Version"
1097
+ msgstr "Versione"
1098
+
1099
+ #: includes/fs-plugin-info-dialog.php:1325
1100
+ msgctxt "as the plugin author"
1101
+ msgid "Author"
1102
+ msgstr "Autore"
1103
+
1104
+ #: includes/fs-plugin-info-dialog.php:1332
1105
+ msgid "Last Updated"
1106
+ msgstr "Ultimo aggiornamento"
1107
+
1108
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1109
+ msgctxt "x-ago"
1110
+ msgid "%s ago"
1111
+ msgstr "%s fa"
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1346
1114
+ msgid "Requires WordPress Version"
1115
+ msgstr "Richiede la versione di WordPress"
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1347
1118
+ msgid "%s or higher"
1119
+ msgstr "%s o superiore"
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1354
1122
+ msgid "Compatible up to"
1123
+ msgstr "Compatibile fino a"
1124
+
1125
+ #: includes/fs-plugin-info-dialog.php:1362
1126
+ msgid "Downloaded"
1127
+ msgstr "Scaricato"
1128
+
1129
+ #: includes/fs-plugin-info-dialog.php:1366
1130
+ msgid "%s time"
1131
+ msgstr "% volta"
1132
+
1133
+ #: includes/fs-plugin-info-dialog.php:1368
1134
+ msgid "%s times"
1135
+ msgstr "%s volte"
1136
+
1137
+ #: includes/fs-plugin-info-dialog.php:1379
1138
+ msgid "WordPress.org Plugin Page"
1139
+ msgstr "Pagina dei plugin di WordPress.org"
1140
+
1141
+ #: includes/fs-plugin-info-dialog.php:1388
1142
+ msgid "Plugin Homepage"
1143
+ msgstr "Homepage del plugin"
1144
+
1145
+ #: includes/fs-plugin-info-dialog.php1397,
1146
+ #: includes/fs-plugin-info-dialog.php:1481
1147
+ msgid "Donate to this plugin"
1148
+ msgstr "Fai una donazione a questo plugin"
1149
+
1150
+ #: includes/fs-plugin-info-dialog.php:1404
1151
+ msgid "Average Rating"
1152
+ msgstr "Valutazione media"
1153
+
1154
+ #: includes/fs-plugin-info-dialog.php:1411
1155
+ msgid "based on %s"
1156
+ msgstr "basato su %s"
1157
+
1158
+ #: includes/fs-plugin-info-dialog.php:1415
1159
+ msgid "%s rating"
1160
+ msgstr "%s valutazione"
1161
+
1162
+ #: includes/fs-plugin-info-dialog.php:1417
1163
+ msgid "%s ratings"
1164
+ msgstr "%s valutazioni"
1165
+
1166
+ #: includes/fs-plugin-info-dialog.php:1432
1167
+ msgid "%s star"
1168
+ msgstr "%s stella"
1169
+
1170
+ #: includes/fs-plugin-info-dialog.php:1434
1171
+ msgid "%s stars"
1172
+ msgstr "%s stelle"
1173
+
1174
+ #: includes/fs-plugin-info-dialog.php:1446
1175
+ msgid "Click to see reviews that provided a rating of %s"
1176
+ msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s"
1177
+
1178
+ #: includes/fs-plugin-info-dialog.php:1459
1179
+ msgid "Contributors"
1180
+ msgstr "Contributori"
1181
+
1182
+ #: includes/fs-plugin-info-dialog.php1489,
1183
+ #: includes/fs-plugin-info-dialog.php:1491
1184
+ msgid "Warning"
1185
+ msgstr "Avviso"
1186
+
1187
+ #: includes/fs-plugin-info-dialog.php:1489
1188
+ msgid "This plugin has not been tested with your current version of WordPress."
1189
+ msgstr "Questo plugin non è stato testato con la versione corrente di WordPress."
1190
+
1191
+ #: includes/fs-plugin-info-dialog.php:1491
1192
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1193
+ msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress."
1194
+
1195
+ #: includes/fs-plugin-info-dialog.php:1510
1196
+ msgid "Paid add-on must be deployed to Freemius."
1197
+ msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius."
1198
+
1199
+ #: includes/fs-plugin-info-dialog.php:1511
1200
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1201
+ msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius."
1202
+
1203
+ #: includes/fs-plugin-info-dialog.php:1532
1204
+ msgid "Newer Version (%s) Installed"
1205
+ msgstr "Versione più recente (%s) installata"
1206
+
1207
+ #: includes/fs-plugin-info-dialog.php:1533
1208
+ msgid "Newer Free Version (%s) Installed"
1209
+ msgstr "Nuova versione gratuita (%s) installata"
1210
+
1211
+ #: includes/fs-plugin-info-dialog.php:1540
1212
+ msgid "Latest Version Installed"
1213
+ msgstr "Versione più recente installata"
1214
+
1215
+ #: includes/fs-plugin-info-dialog.php:1541
1216
+ msgid "Latest Free Version Installed"
1217
+ msgstr "Ultima versione gratuita installata"
1218
+
1219
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1220
+ #: templates/account/partials/addon.php26,
1221
+ #: templates/account/partials/site.php:311
1222
+ msgid "Downgrading your plan"
1223
+ msgstr "Torna al piano precedente"
1224
+
1225
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1226
+ #: templates/account/partials/addon.php27,
1227
+ #: templates/account/partials/site.php:312
1228
+ msgid "Cancelling the subscription"
1229
+ msgstr "Cancella la sottoscrizione"
1230
+
1231
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1232
+ #. subscription'
1233
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1234
+ #: templates/account/partials/site.php:314
1235
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1236
+ msgstr "%1$sfermerà tutti i pagamenti ricorrenti futuri e il tuo piano %2$sche scadrà in %3$s."
1237
+
1238
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1239
+ #: templates/account/partials/addon.php30,
1240
+ #: templates/account/partials/site.php:315
1241
+ 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."
1242
+ msgstr "Si prega di notare che non saremo in grado di garantire lo stesso prezzo per rinnovi/sottoscrizioni dopo la cancellazione. Se scegli di rinnovare l'abbonamento manualmente in futuro, dopo un aumento del prezzo, che di solito avviene una volta l'anno, ti verrà addebitato il nuovo prezzo."
1243
+
1244
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1245
+ #: templates/account/partials/addon.php:31
1246
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1247
+ msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?"
1248
+
1249
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1250
+ #: templates/account/partials/addon.php32,
1251
+ #: templates/account/partials/site.php:316
1252
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1253
+ msgstr "Puoi continuare ad utilizzare le funzionalità%sma non avrai accesso agli aggiornamenti di sicurezza, nuove funzionalità o supporto."
1254
+
1255
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1256
+ #: templates/account/partials/addon.php33,
1257
+ #: templates/account/partials/site.php:317
1258
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1259
+ msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s."
1260
+
1261
+ #. translators: %s: Plan title (e.g. "Professional")
1262
+ #: templates/account.php111,
1263
+ #: templates/account/partials/activate-license-button.php31,
1264
+ #: templates/account/partials/addon.php:35
1265
+ msgid "Activate %s Plan"
1266
+ msgstr "Attivare il piano %s"
1267
+
1268
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1269
+ #: templates/account.php114, templates/account/partials/addon.php38,
1270
+ #: templates/account/partials/site.php:291
1271
+ msgid "Auto renews in %s"
1272
+ msgstr "Rinnovo automatico in %s"
1273
+
1274
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1275
+ #: templates/account.php116, templates/account/partials/addon.php40,
1276
+ #: templates/account/partials/site.php:293
1277
+ msgid "Expires in %s"
1278
+ msgstr "Scade in %s"
1279
+
1280
+ #: templates/account.php:117
1281
+ msgctxt "as synchronize license"
1282
+ msgid "Sync License"
1283
+ msgstr "Sincronizza la licenza"
1284
+
1285
+ #: templates/account.php118, templates/account/partials/addon.php:41
1286
+ msgid "Cancel Trial"
1287
+ msgstr "Annulla prova gratuita"
1288
+
1289
+ #: templates/account.php119, templates/account/partials/addon.php:42
1290
+ msgid "Change Plan"
1291
+ msgstr "Cambia piano"
1292
+
1293
+ #: templates/account.php120, templates/account/partials/addon.php:43
1294
+ msgctxt "verb"
1295
+ msgid "Upgrade"
1296
+ msgstr "Aggiornamento"
1297
+
1298
+ #: templates/account.php122, templates/account/partials/addon.php45,
1299
+ #: templates/account/partials/site.php:318
1300
+ msgctxt "verb"
1301
+ msgid "Downgrade"
1302
+ msgstr "Downgrade"
1303
+
1304
+ #: templates/account.php124, templates/add-ons.php246,
1305
+ #: templates/plugin-info/features.php72,
1306
+ #: templates/account/partials/addon.php47,
1307
+ #: templates/account/partials/site.php:33
1308
+ msgid "Free"
1309
+ msgstr "Gratuito"
1310
+
1311
+ #: templates/account.php126, templates/debug.php371,
1312
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1313
+ #: templates/account/partials/addon.php:49
1314
+ msgctxt "as product pricing plan"
1315
+ msgid "Plan"
1316
+ msgstr "Piano"
1317
+
1318
+ #: templates/account.php:127
1319
+ msgid "Bundle Plan"
1320
+ msgstr "Piano Bundle"
1321
+
1322
+ #: templates/account.php:250
1323
+ msgid "Free Trial"
1324
+ msgstr "Prova gratuita"
1325
+
1326
+ #: templates/account.php:261
1327
+ msgid "Account Details"
1328
+ msgstr "Dettagli dell'account"
1329
+
1330
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1331
+ msgid "Start Debug"
1332
+ msgstr "Avvia Debug"
1333
+
1334
+ #: templates/account.php:270
1335
+ msgid "Stop Debug"
1336
+ msgstr "Ferma Debug"
1337
+
1338
+ #: templates/account.php:277
1339
+ msgid "Billing & Invoices"
1340
+ msgstr "Ricevute e Fatture"
1341
+
1342
+ #: templates/account.php:288
1343
+ 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?"
1344
+ msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?"
1345
+
1346
+ #: templates/account.php:290
1347
+ 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?"
1348
+ msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?"
1349
+
1350
+ #: templates/account.php:293
1351
+ msgid "Delete Account"
1352
+ msgstr "Elimina Account"
1353
+
1354
+ #: templates/account.php305, templates/account/partials/addon.php231,
1355
+ #: templates/account/partials/deactivate-license-button.php:35
1356
+ msgid "Deactivate License"
1357
+ msgstr "Disattiva licenza"
1358
+
1359
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1360
+ msgid "Are you sure you want to proceed?"
1361
+ msgstr "Sei sicuro di voler procedere?"
1362
+
1363
+ #: templates/account.php328, templates/account/partials/addon.php:255
1364
+ msgid "Cancel Subscription"
1365
+ msgstr "Annulla sottoscrizione"
1366
+
1367
+ #: templates/account.php357, templates/account/partials/addon.php:340
1368
+ msgctxt "as synchronize"
1369
+ msgid "Sync"
1370
+ msgstr "Sincronizza"
1371
+
1372
+ #: templates/account.php372, templates/debug.php:505
1373
+ msgid "Name"
1374
+ msgstr "Nome"
1375
+
1376
+ #: templates/account.php378, templates/debug.php:506
1377
+ msgid "Email"
1378
+ msgstr "Email"
1379
+
1380
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1381
+ msgid "User ID"
1382
+ msgstr "ID utente"
1383
+
1384
+ #: templates/account.php403, templates/account.php721,
1385
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1386
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1387
+ #: templates/debug.php632, templates/account/payments.php35,
1388
+ #: templates/debug/logger.php:21
1389
+ msgid "ID"
1390
+ msgstr "ID"
1391
+
1392
+ #: templates/account.php:410
1393
+ msgid "Site ID"
1394
+ msgstr "ID del sito"
1395
+
1396
+ #: templates/account.php:413
1397
+ msgid "No ID"
1398
+ msgstr "Nessun ID"
1399
+
1400
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1401
+ #: templates/debug.php456, templates/debug.php508,
1402
+ #: templates/account/partials/site.php:227
1403
+ msgid "Public Key"
1404
+ msgstr "Chiave pubblica"
1405
+
1406
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1407
+ #: templates/debug.php509, templates/account/partials/site.php:239
1408
+ msgid "Secret Key"
1409
+ msgstr "Chiave segreta"
1410
+
1411
+ #: templates/account.php:427
1412
+ msgctxt "as secret encryption key missing"
1413
+ msgid "No Secret"
1414
+ msgstr "Nessuna chiave"
1415
+
1416
+ #: templates/account.php454, templates/account/partials/site.php120,
1417
+ #: templates/account/partials/site.php:122
1418
+ msgid "Trial"
1419
+ msgstr "Prova gratuita"
1420
+
1421
+ #: templates/account.php481, templates/debug.php561,
1422
+ #: templates/account/partials/site.php:260
1423
+ msgid "License Key"
1424
+ msgstr "Chiave della licenza"
1425
+
1426
+ #: templates/account.php:512
1427
+ msgid "Join the Beta program"
1428
+ msgstr "Entra nel programma Beta"
1429
+
1430
+ #: templates/account.php:518
1431
+ msgid "not verified"
1432
+ msgstr "non verificato"
1433
+
1434
+ #: templates/account.php527, templates/account/partials/addon.php:190
1435
+ msgid "Expired"
1436
+ msgstr "Scaduto"
1437
+
1438
+ #: templates/account.php:587
1439
+ msgid "Premium version"
1440
+ msgstr "Versione premium"
1441
+
1442
+ #: templates/account.php:589
1443
+ msgid "Free version"
1444
+ msgstr "Versione gratuita"
1445
+
1446
+ #: templates/account.php:601
1447
+ msgid "Verify Email"
1448
+ msgstr "Verifica email"
1449
+
1450
+ #: templates/account.php:615
1451
+ msgid "Download %s Version"
1452
+ msgstr "Scarica la versione %s"
1453
+
1454
+ #: templates/account.php:631
1455
+ msgid "Download Paid Version"
1456
+ msgstr "Download Paid Version"
1457
+
1458
+ #: templates/account.php649, templates/account.php892,
1459
+ #: templates/account/partials/site.php248,
1460
+ #: templates/account/partials/site.php:270
1461
+ msgctxt "verb"
1462
+ msgid "Show"
1463
+ msgstr "Mostra"
1464
+
1465
+ #: templates/account.php:664
1466
+ msgid "What is your %s?"
1467
+ msgstr "Qual è il tuo %s?"
1468
+
1469
+ #: templates/account.php672, templates/account/billing.php:21
1470
+ msgctxt "verb"
1471
+ msgid "Edit"
1472
+ msgstr "Modifica"
1473
+
1474
+ #: templates/account.php676, templates/forms/user-change.php:27
1475
+ msgid "Change User"
1476
+ msgstr "Change User"
1477
+
1478
+ #: templates/account.php:700
1479
+ msgid "Sites"
1480
+ msgstr "Siti"
1481
+
1482
+ #: templates/account.php:713
1483
+ msgid "Search by address"
1484
+ msgstr "Cerca per indirizzo"
1485
+
1486
+ #: templates/account.php722, templates/debug.php:366
1487
+ msgid "Address"
1488
+ msgstr "Indirizzo"
1489
+
1490
+ #: templates/account.php:723
1491
+ msgid "License"
1492
+ msgstr "Licenza"
1493
+
1494
+ #: templates/account.php:724
1495
+ msgid "Plan"
1496
+ msgstr "Piano"
1497
+
1498
+ #: templates/account.php:757
1499
+ msgctxt "as software license"
1500
+ msgid "License"
1501
+ msgstr "Licenza"
1502
+
1503
+ #: templates/account.php:886
1504
+ msgctxt "verb"
1505
+ msgid "Hide"
1506
+ msgstr "Nascondi"
1507
+
1508
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1509
+ msgid "Processing"
1510
+ msgstr "Elaborazione"
1511
+
1512
+ #: templates/account.php:911
1513
+ msgid "Get updates for bleeding edge Beta versions of %s."
1514
+ msgstr "Ottieni gli aggiornamenti per le nuove versioni Beta di %s."
1515
+
1516
+ #: templates/account.php:969
1517
+ msgid "Cancelling %s"
1518
+ msgstr "Cancellazione di %s"
1519
+
1520
+ #: templates/account.php969, templates/account.php986,
1521
+ #: templates/forms/subscription-cancellation.php27,
1522
+ #: templates/forms/deactivation/form.php:133
1523
+ msgid "trial"
1524
+ msgstr "prova"
1525
+
1526
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1527
+ msgid "Cancelling %s..."
1528
+ msgstr "Cancellazione %s..."
1529
+
1530
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1531
+ #: templates/forms/deactivation/form.php:134
1532
+ msgid "subscription"
1533
+ msgstr "sottoscrizione"
1534
+
1535
+ #: templates/account.php:1001
1536
+ 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?"
1537
+ msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?"
1538
+
1539
+ #: templates/account.php:1075
1540
+ msgid "Disabling white-label mode"
1541
+ msgstr "Disabling white-label mode"
1542
+
1543
+ #: templates/account.php:1076
1544
+ msgid "Enabling white-label mode"
1545
+ msgstr "Enabling white-label mode"
1546
+
1547
+ #: templates/add-ons.php:38
1548
+ msgid "View details"
1549
+ msgstr "Visualizza dettagli"
1550
+
1551
+ #: templates/add-ons.php:48
1552
+ msgid "Add Ons for %s"
1553
+ msgstr "Add-on per %s"
1554
+
1555
+ #: templates/add-ons.php:58
1556
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1557
+ msgstr "Non possiamo caricare la lista degli addon. Probabilmente è un nostro problema, prova di nuovo fra qualche minuto."
1558
+
1559
+ #: templates/add-ons.php:229
1560
+ msgctxt "active add-on"
1561
+ msgid "Active"
1562
+ msgstr "Attiva"
1563
+
1564
+ #: templates/add-ons.php:230
1565
+ msgctxt "installed add-on"
1566
+ msgid "Installed"
1567
+ msgstr "Installato"
1568
+
1569
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1570
+ #: templates/forms/resend-key.php:77
1571
+ msgctxt "as close a window"
1572
+ msgid "Dismiss"
1573
+ msgstr "Chiudi"
1574
+
1575
+ #: templates/auto-installation.php:45
1576
+ msgid "%s sec"
1577
+ msgstr "%s sec"
1578
+
1579
+ #: templates/auto-installation.php:83
1580
+ msgid "Automatic Installation"
1581
+ msgstr "Installazione automatica"
1582
+
1583
+ #: templates/auto-installation.php:93
1584
+ 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."
1585
+ msgstr "Un download con installazione automatica di %s (versione a pagamento) da %s inizierà in %s. Se preferisci farlo manualmente, fai clic sul pulsante per annullare."
1586
+
1587
+ #: templates/auto-installation.php:104
1588
+ 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."
1589
+ msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minuti per completarsi. Attendi finchè non ha finito, assicurandoti di non ricaricare questa pagina."
1590
+
1591
+ #: templates/auto-installation.php:109
1592
+ msgid "Cancel Installation"
1593
+ msgstr "Annulla installazione"
1594
+
1595
+ #: templates/checkout.php:180
1596
+ msgid "Checkout"
1597
+ msgstr "Cassa"
1598
+
1599
+ #: templates/checkout.php:180
1600
+ msgid "PCI compliant"
1601
+ msgstr "PCI compliant"
1602
+
1603
+ #. translators: %s: name (e.g. Hey John,)
1604
+ #: templates/connect.php:112
1605
+ msgctxt "greeting"
1606
+ msgid "Hey %s,"
1607
+ msgstr "Hey %s,"
1608
+
1609
+ #: templates/connect.php:162
1610
+ msgid "Allow & Continue"
1611
+ msgstr "Consenti & Continua"
1612
+
1613
+ #: templates/connect.php:166
1614
+ msgid "Re-send activation email"
1615
+ msgstr "Invia nuovamente l'email di attivazione"
1616
+
1617
+ #: templates/connect.php:170
1618
+ msgid "Thanks %s!"
1619
+ msgstr "Grazie %s!"
1620
+
1621
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1622
+ msgid "Agree & Activate License"
1623
+ msgstr "Accetta e attiva la licenza"
1624
+
1625
+ #: templates/connect.php:184
1626
+ msgid "Welcome to %s! To get started, please enter your license key:"
1627
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1628
+
1629
+ #: templates/connect.php:191
1630
+ 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."
1631
+ msgstr "Non perdere nessun aggiornamento importante, accetta gli aggiornamenti di sicurezza e funzionalità, contenuti formativi, offerte e il tracciamento diagnostico senza dati sensibili con %4$s."
1632
+
1633
+ #: templates/connect.php:192
1634
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1635
+ msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e notifiche di funzionalità e il tracciamento diagnostico senza dati sensibili con %4$s."
1636
+
1637
+ #: templates/connect.php:198
1638
+ 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."
1639
+ msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$scontinuerà a funzionare."
1640
+
1641
+ #: templates/connect.php:199
1642
+ 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."
1643
+ msgstr "Non perdere nessun aggiornamento importante, accetta i nostri aggiornamenti di sicurezza e di nuove funzionalità, contenuto formativo, offerte e tracciamento diagnostico senza dati sensibili con %4$s. Se vuoi saltare questo passaggio non è un problema! %1$s continuerà a funzionare."
1644
+
1645
+ #: templates/connect.php:233
1646
+ msgid "We're excited to introduce the Freemius network-level integration."
1647
+ msgstr "Siamo felici di presentarvi il supporto al sistema multi network di Freemius."
1648
+
1649
+ #: templates/connect.php:236
1650
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1651
+ msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza."
1652
+
1653
+ #: templates/connect.php:238
1654
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1655
+ msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
1656
+
1657
+ #: templates/connect.php:240
1658
+ msgid "%s's paid features"
1659
+ msgstr "Funzionalità a pagamento di %s"
1660
+
1661
+ #: templates/connect.php:245
1662
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1663
+ msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente nella tua pagina di attivazione network di %s."
1664
+
1665
+ #: templates/connect.php:247
1666
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1667
+ msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo."
1668
+
1669
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1670
+ #: templates/forms/license-activation.php:49
1671
+ msgid "License key"
1672
+ msgstr "Chiave di licenza"
1673
+
1674
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1675
+ msgid "Can't find your license key?"
1676
+ msgstr "Non trovi la tua chiave di licenza?"
1677
+
1678
+ #: templates/connect.php318, templates/connect.php700,
1679
+ #: templates/forms/deactivation/retry-skip.php:20
1680
+ msgctxt "verb"
1681
+ msgid "Skip"
1682
+ msgstr "Salta"
1683
+
1684
+ #: templates/connect.php:321
1685
+ msgid "Delegate to Site Admins"
1686
+ msgstr "Delega ai proprietari del sito"
1687
+
1688
+ #: templates/connect.php:321
1689
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1690
+ msgstr "Se fai clic questa decisione sarà delegata agli amministratori del sito."
1691
+
1692
+ #: templates/connect.php:346
1693
+ msgid "License issues?"
1694
+ msgstr "License issues?"
1695
+
1696
+ #: templates/connect.php:362
1697
+ msgid "Your Profile Overview"
1698
+ msgstr "Panoramica del tuo profilo"
1699
+
1700
+ #: templates/connect.php:363
1701
+ msgid "Name and email address"
1702
+ msgstr "Nome ed indirizzo email"
1703
+
1704
+ #: templates/connect.php:370
1705
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1706
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1707
+
1708
+ #: templates/connect.php:371
1709
+ msgid "Your Site Overview"
1710
+ msgstr "Panoramica del tuo sito"
1711
+
1712
+ #: templates/connect.php:372
1713
+ msgid "Site URL, WP version, PHP info"
1714
+ msgstr "Site URL, WP version, PHP info"
1715
+
1716
+ #: templates/connect.php:379
1717
+ msgid "Admin Notices"
1718
+ msgstr "Avvisi amministratore"
1719
+
1720
+ #: templates/connect.php380, templates/connect.php:398
1721
+ msgid "Updates, announcements, marketing, no spam"
1722
+ msgstr "Aggiornamenti, annunci, marketing, no spam"
1723
+
1724
+ #: templates/connect.php:387
1725
+ msgid "So you can reuse the license when the %s is no longer active."
1726
+ msgstr "So you can reuse the license when the %s is no longer active."
1727
+
1728
+ #: templates/connect.php:388
1729
+ msgid "Current %s Status"
1730
+ msgstr "Current %s Status"
1731
+
1732
+ #: templates/connect.php:389
1733
+ msgid "Active, deactivated, or uninstalled"
1734
+ msgstr "Active, deactivated, or uninstalled"
1735
+
1736
+ #: templates/connect.php:397
1737
+ msgid "Newsletter"
1738
+ msgstr "Newsletter"
1739
+
1740
+ #: templates/connect.php:405
1741
+ msgid "Plugins & Themes"
1742
+ msgstr "Plugin e temi"
1743
+
1744
+ #: templates/connect.php:405
1745
+ msgid "optional"
1746
+ msgstr "optional"
1747
+
1748
+ #: templates/connect.php:406
1749
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1750
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1751
+
1752
+ #: templates/connect.php:407
1753
+ msgid "Title, slug, version, and is active"
1754
+ msgstr "Title, slug, version, and is active"
1755
+
1756
+ #: templates/connect.php:424
1757
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1758
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1759
+
1760
+ #: templates/connect.php:426
1761
+ msgid "diagnostic data"
1762
+ msgstr "diagnostic data"
1763
+
1764
+ #: templates/connect.php:427
1765
+ msgid "Freemius is our licensing and software updates engine"
1766
+ msgstr "Freemius is our licensing and software updates engine"
1767
+
1768
+ #: templates/connect.php:430
1769
+ msgid "What permissions are being granted?"
1770
+ msgstr "Quali autorizzazioni vengono concesse?"
1771
+
1772
+ #: templates/connect.php:457
1773
+ msgid "Don't have a license key?"
1774
+ msgstr "Non hai una chiave di licenza?"
1775
+
1776
+ #: templates/connect.php:460
1777
+ msgid "Have a license key?"
1778
+ msgstr "Hai una chiave di licenza?"
1779
+
1780
+ #: templates/connect.php:468
1781
+ msgid "Privacy Policy"
1782
+ msgstr "Politica sulla privacy"
1783
+
1784
+ #: templates/connect.php:470
1785
+ msgid "License Agreement"
1786
+ msgstr "License Agreement"
1787
+
1788
+ #: templates/connect.php:470
1789
+ msgid "Terms of Service"
1790
+ msgstr "Termini del Servizio"
1791
+
1792
+ #: templates/connect.php:866
1793
+ msgctxt "as in the process of sending an email"
1794
+ msgid "Sending email"
1795
+ msgstr "Invio email"
1796
+
1797
+ #: templates/connect.php:867
1798
+ msgctxt "as activating plugin"
1799
+ msgid "Activating"
1800
+ msgstr "Attivazione"
1801
+
1802
+ #: templates/contact.php:78
1803
+ msgid "Contact"
1804
+ msgstr "Contatti"
1805
+
1806
+ #: templates/debug.php:17
1807
+ msgctxt "as turned off"
1808
+ msgid "Off"
1809
+ msgstr "Non attivo"
1810
+
1811
+ #: templates/debug.php:18
1812
+ msgctxt "as turned on"
1813
+ msgid "On"
1814
+ msgstr "Attivo"
1815
+
1816
+ #: templates/debug.php:20
1817
+ msgid "SDK"
1818
+ msgstr "SDK"
1819
+
1820
+ #: templates/debug.php:24
1821
+ msgctxt "as code debugging"
1822
+ msgid "Debugging"
1823
+ msgstr "Debugging"
1824
+
1825
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1826
+ #: templates/debug.php:510
1827
+ msgid "Actions"
1828
+ msgstr "Azioni"
1829
+
1830
+ #: templates/debug.php:62
1831
+ msgid "Are you sure you want to delete all Freemius data?"
1832
+ msgstr "Sei sicuro di voler eliminare tutti i dati di Freemius?"
1833
+
1834
+ #: templates/debug.php:62
1835
+ msgid "Delete All Accounts"
1836
+ msgstr "Eliminare tutti gli account"
1837
+
1838
+ #: templates/debug.php:69
1839
+ msgid "Clear API Cache"
1840
+ msgstr "Elimina cache API"
1841
+
1842
+ #: templates/debug.php:77
1843
+ msgid "Clear Updates Transients"
1844
+ msgstr "Svuota le Transient degli aggiornamenti"
1845
+
1846
+ #: templates/debug.php:84
1847
+ msgid "Sync Data From Server"
1848
+ msgstr "Sincronizza i dati dal server"
1849
+
1850
+ #: templates/debug.php:93
1851
+ msgid "Migrate Options to Network"
1852
+ msgstr "Migra le opzioni al Network"
1853
+
1854
+ #: templates/debug.php:98
1855
+ msgid "Load DB Option"
1856
+ msgstr "Carica opzioni del DB"
1857
+
1858
+ #: templates/debug.php:101
1859
+ msgid "Set DB Option"
1860
+ msgstr "Imposta opzione del DB"
1861
+
1862
+ #: templates/debug.php:180
1863
+ msgid "Key"
1864
+ msgstr "Chiave"
1865
+
1866
+ #: templates/debug.php:181
1867
+ msgid "Value"
1868
+ msgstr "Valore"
1869
+
1870
+ #: templates/debug.php:197
1871
+ msgctxt "as software development kit versions"
1872
+ msgid "SDK Versions"
1873
+ msgstr "Versioni SDK"
1874
+
1875
+ #: templates/debug.php:202
1876
+ msgid "SDK Path"
1877
+ msgstr "Percorso SDK"
1878
+
1879
+ #: templates/debug.php203, templates/debug.php:242
1880
+ msgid "Module Path"
1881
+ msgstr "Percorso modulo"
1882
+
1883
+ #: templates/debug.php:204
1884
+ msgid "Is Active"
1885
+ msgstr "è attiva"
1886
+
1887
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1888
+ msgid "Plugins"
1889
+ msgstr "Plugin"
1890
+
1891
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1892
+ msgid "Themes"
1893
+ msgstr "Temi"
1894
+
1895
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1896
+ #: templates/debug/scheduled-crons.php:80
1897
+ msgid "Slug"
1898
+ msgstr "Slug"
1899
+
1900
+ #: templates/debug.php239, templates/debug.php:453
1901
+ msgid "Title"
1902
+ msgstr "Titolo"
1903
+
1904
+ #: templates/debug.php:240
1905
+ msgctxt "as application program interface"
1906
+ msgid "API"
1907
+ msgstr "API"
1908
+
1909
+ #: templates/debug.php:241
1910
+ msgid "Freemius State"
1911
+ msgstr "Stato di Freemius"
1912
+
1913
+ #: templates/debug.php:245
1914
+ msgid "Network Blog"
1915
+ msgstr "Network Blog"
1916
+
1917
+ #: templates/debug.php:246
1918
+ msgid "Network User"
1919
+ msgstr "Utente Network"
1920
+
1921
+ #: templates/debug.php:283
1922
+ msgctxt "as connection was successful"
1923
+ msgid "Connected"
1924
+ msgstr "Connesso"
1925
+
1926
+ #: templates/debug.php:284
1927
+ msgctxt "as connection blocked"
1928
+ msgid "Blocked"
1929
+ msgstr "Bloccato"
1930
+
1931
+ #: templates/debug.php:320
1932
+ msgid "Simulate Trial Promotion"
1933
+ msgstr "Simula la prova Trial"
1934
+
1935
+ #: templates/debug.php:332
1936
+ msgid "Simulate Network Upgrade"
1937
+ msgstr "Simula aggiornamento network"
1938
+
1939
+ #: templates/debug.php:357
1940
+ msgid "%s Installs"
1941
+ msgstr "%s Installazioni"
1942
+
1943
+ #: templates/debug.php:359
1944
+ msgctxt "like websites"
1945
+ msgid "Sites"
1946
+ msgstr "Siti"
1947
+
1948
+ #: templates/debug.php365, templates/account/partials/site.php:156
1949
+ msgid "Blog ID"
1950
+ msgstr "Blog ID"
1951
+
1952
+ #: templates/debug.php:370
1953
+ msgid "License ID"
1954
+ msgstr "License ID"
1955
+
1956
+ #: templates/debug.php434, templates/debug.php533,
1957
+ #: templates/account/partials/addon.php:435
1958
+ msgctxt "verb"
1959
+ msgid "Delete"
1960
+ msgstr "Elimina"
1961
+
1962
+ #: templates/debug.php:448
1963
+ msgid "Add Ons of module %s"
1964
+ msgstr "Addon del modulo %s"
1965
+
1966
+ #: templates/debug.php:500
1967
+ msgid "Users"
1968
+ msgstr "Utenti"
1969
+
1970
+ #: templates/debug.php:507
1971
+ msgid "Verified"
1972
+ msgstr "Verificato"
1973
+
1974
+ #: templates/debug.php:549
1975
+ msgid "%s Licenses"
1976
+ msgstr "%s Licenze"
1977
+
1978
+ #: templates/debug.php:554
1979
+ msgid "Plugin ID"
1980
+ msgstr "Plugin ID"
1981
+
1982
+ #: templates/debug.php:556
1983
+ msgid "Plan ID"
1984
+ msgstr "ID Piano"
1985
+
1986
+ #: templates/debug.php:557
1987
+ msgid "Quota"
1988
+ msgstr "Quota"
1989
+
1990
+ #: templates/debug.php:558
1991
+ msgid "Activated"
1992
+ msgstr "Attivato"
1993
+
1994
+ #: templates/debug.php:559
1995
+ msgid "Blocking"
1996
+ msgstr "Bloccato"
1997
+
1998
+ #: templates/debug.php560, templates/debug.php631,
1999
+ #: templates/debug/logger.php:22
2000
+ msgid "Type"
2001
+ msgstr "Tipo"
2002
+
2003
+ #: templates/debug.php:562
2004
+ msgctxt "as expiration date"
2005
+ msgid "Expiration"
2006
+ msgstr "Scadenza"
2007
+
2008
+ #: templates/debug.php:590
2009
+ msgid "Debug Log"
2010
+ msgstr "Debug Log"
2011
+
2012
+ #: templates/debug.php:594
2013
+ msgid "All Types"
2014
+ msgstr "Tutti i tipi"
2015
+
2016
+ #: templates/debug.php:601
2017
+ msgid "All Requests"
2018
+ msgstr "Tutte le richieste"
2019
+
2020
+ #: templates/debug.php606, templates/debug.php635,
2021
+ #: templates/debug/logger.php:25
2022
+ msgid "File"
2023
+ msgstr "File"
2024
+
2025
+ #: templates/debug.php607, templates/debug.php633,
2026
+ #: templates/debug/logger.php:23
2027
+ msgid "Function"
2028
+ msgstr "Funzione"
2029
+
2030
+ #: templates/debug.php:608
2031
+ msgid "Process ID"
2032
+ msgstr "ID processo"
2033
+
2034
+ #: templates/debug.php:609
2035
+ msgid "Logger"
2036
+ msgstr "Logger"
2037
+
2038
+ #: templates/debug.php610, templates/debug.php634,
2039
+ #: templates/debug/logger.php:24
2040
+ msgid "Message"
2041
+ msgstr "Messaggio"
2042
+
2043
+ #: templates/debug.php:612
2044
+ msgid "Filter"
2045
+ msgstr "Filtro"
2046
+
2047
+ #: templates/debug.php:620
2048
+ msgid "Download"
2049
+ msgstr "Download"
2050
+
2051
+ #: templates/debug.php636, templates/debug/logger.php:26
2052
+ msgid "Timestamp"
2053
+ msgstr "Timestamp"
2054
+
2055
+ #: templates/secure-https-header.php:28
2056
+ msgid "Secure HTTPS %s page, running from an external domain"
2057
+ msgstr "Pagina sicura su protocollo HTTPS %s eseguita su dominio esterno"
2058
+
2059
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2060
+ #: templates/plugin-info/features.php:43
2061
+ msgid "Support"
2062
+ msgstr "Supporto"
2063
+
2064
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2065
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2066
+ msgctxt "milliseconds"
2067
+ msgid "ms"
2068
+ msgstr "ms"
2069
+
2070
+ #: includes/debug/debug-bar-start.php:41
2071
+ msgid "Freemius API"
2072
+ msgstr "Freemius API"
2073
+
2074
+ #: includes/debug/debug-bar-start.php:42
2075
+ msgid "Requests"
2076
+ msgstr "Richieste"
2077
+
2078
+ #: templates/account/billing.php:22
2079
+ msgctxt "verb"
2080
+ msgid "Update"
2081
+ msgstr "Aggiorna"
2082
+
2083
+ #: templates/account/billing.php:33
2084
+ msgid "Billing"
2085
+ msgstr "Fatturazione"
2086
+
2087
+ #: templates/account/billing.php38, templates/account/billing.php:38
2088
+ msgid "Business name"
2089
+ msgstr "Nome della compagnia"
2090
+
2091
+ #: templates/account/billing.php39, templates/account/billing.php:39
2092
+ msgid "Tax / VAT ID"
2093
+ msgstr "Numero Partita Iva o VAT"
2094
+
2095
+ #: templates/account/billing.php42, templates/account/billing.php42,
2096
+ #: templates/account/billing.php43, templates/account/billing.php:43
2097
+ msgid "Address Line %d"
2098
+ msgstr "Riga indirizzo %d"
2099
+
2100
+ #: templates/account/billing.php46, templates/account/billing.php:46
2101
+ msgid "City"
2102
+ msgstr "Città"
2103
+
2104
+ #: templates/account/billing.php46, templates/account/billing.php:46
2105
+ msgid "Town"
2106
+ msgstr "Cittadina"
2107
+
2108
+ #: templates/account/billing.php47, templates/account/billing.php:47
2109
+ msgid "ZIP / Postal Code"
2110
+ msgstr "CAP"
2111
+
2112
+ #: templates/account/billing.php:302
2113
+ msgid "Country"
2114
+ msgstr "Nazione"
2115
+
2116
+ #: templates/account/billing.php:304
2117
+ msgid "Select Country"
2118
+ msgstr "Seleziona Nazione"
2119
+
2120
+ #: templates/account/billing.php311, templates/account/billing.php:312
2121
+ msgid "State"
2122
+ msgstr "Stato"
2123
+
2124
+ #: templates/account/billing.php311, templates/account/billing.php:312
2125
+ msgid "Province"
2126
+ msgstr "Provincia"
2127
+
2128
+ #: templates/account/payments.php:29
2129
+ msgid "Payments"
2130
+ msgstr "Pagamenti"
2131
+
2132
+ #: templates/account/payments.php:36
2133
+ msgid "Date"
2134
+ msgstr "Data"
2135
+
2136
+ #: templates/account/payments.php:37
2137
+ msgid "Amount"
2138
+ msgstr "Importo"
2139
+
2140
+ #: templates/account/payments.php38, templates/account/payments.php:50
2141
+ msgid "Invoice"
2142
+ msgstr "Fattura"
2143
+
2144
+ #: templates/debug/api-calls.php:56
2145
+ msgid "API"
2146
+ msgstr "API"
2147
+
2148
+ #: templates/debug/api-calls.php:68
2149
+ msgid "Method"
2150
+ msgstr "Metodo"
2151
+
2152
+ #: templates/debug/api-calls.php:69
2153
+ msgid "Code"
2154
+ msgstr "Codice"
2155
+
2156
+ #: templates/debug/api-calls.php:70
2157
+ msgid "Length"
2158
+ msgstr "Lunghezza"
2159
+
2160
+ #: templates/debug/api-calls.php:71
2161
+ msgctxt "as file/folder path"
2162
+ msgid "Path"
2163
+ msgstr "Percorso"
2164
+
2165
+ #: templates/debug/api-calls.php:73
2166
+ msgid "Body"
2167
+ msgstr "Body"
2168
+
2169
+ #: templates/debug/api-calls.php:75
2170
+ msgid "Result"
2171
+ msgstr "Risultato"
2172
+
2173
+ #: templates/debug/api-calls.php:76
2174
+ msgid "Start"
2175
+ msgstr "Avvia"
2176
+
2177
+ #: templates/debug/api-calls.php:77
2178
+ msgid "End"
2179
+ msgstr "Fine"
2180
+
2181
+ #: templates/debug/logger.php:15
2182
+ msgid "Log"
2183
+ msgstr "Log"
2184
+
2185
+ #. translators: %s: time period (e.g. In "2 hours")
2186
+ #: templates/debug/plugins-themes-sync.php18,
2187
+ #: templates/debug/scheduled-crons.php:91
2188
+ msgid "In %s"
2189
+ msgstr "In %s"
2190
+
2191
+ #. translators: %s: time period (e.g. "2 hours" ago)
2192
+ #: templates/debug/plugins-themes-sync.php20,
2193
+ #: templates/debug/scheduled-crons.php:93
2194
+ msgid "%s ago"
2195
+ msgstr "%s fa"
2196
+
2197
+ #: templates/debug/plugins-themes-sync.php21,
2198
+ #: templates/debug/scheduled-crons.php:74
2199
+ msgctxt "seconds"
2200
+ msgid "sec"
2201
+ msgstr "sec"
2202
+
2203
+ #: templates/debug/plugins-themes-sync.php:23
2204
+ msgid "Plugins & Themes Sync"
2205
+ msgstr "Sincronizzazione plugin e temi"
2206
+
2207
+ #: templates/debug/plugins-themes-sync.php:28
2208
+ msgid "Total"
2209
+ msgstr "Totale"
2210
+
2211
+ #: templates/debug/plugins-themes-sync.php29,
2212
+ #: templates/debug/scheduled-crons.php:84
2213
+ msgid "Last"
2214
+ msgstr "Ultimo"
2215
+
2216
+ #: templates/debug/scheduled-crons.php:76
2217
+ msgid "Scheduled Crons"
2218
+ msgstr "Azioni programmate"
2219
+
2220
+ #: templates/debug/scheduled-crons.php:81
2221
+ msgid "Module"
2222
+ msgstr "Modulo"
2223
+
2224
+ #: templates/debug/scheduled-crons.php:82
2225
+ msgid "Module Type"
2226
+ msgstr "Tipo di modulo"
2227
+
2228
+ #: templates/debug/scheduled-crons.php:83
2229
+ msgid "Cron Type"
2230
+ msgstr "Tipo di Cron"
2231
+
2232
+ #: templates/debug/scheduled-crons.php:85
2233
+ msgid "Next"
2234
+ msgstr "Successivo"
2235
+
2236
+ #: templates/forms/affiliation.php:82
2237
+ msgid "Non-expiring"
2238
+ msgstr "Non in scadenza"
2239
+
2240
+ #: templates/forms/affiliation.php:85
2241
+ msgid "Apply to become an affiliate"
2242
+ msgstr "Applica per diventare un affiliato"
2243
+
2244
+ #: templates/forms/affiliation.php:107
2245
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2246
+ msgstr "La tua applicazione di affiliazione per %s è stata accettata! Accedi alla tua area di affiliazione a %s."
2247
+
2248
+ #: templates/forms/affiliation.php:122
2249
+ 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."
2250
+ msgstr "Grazie per la partecipazione al nostro programma di affiliazione, valuteremo la tua richiesta durante i prossimi 14 giorni e ti contatteremo per maggiori informazioni."
2251
+
2252
+ #: templates/forms/affiliation.php:125
2253
+ msgid "Your affiliation account was temporarily suspended."
2254
+ msgstr "Il tuo account di affiliazione è stato sospeso temporaneamente."
2255
+
2256
+ #: templates/forms/affiliation.php:128
2257
+ 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."
2258
+ msgstr "Grazie per la partecipazione al nostro programma di affiliazione, sfortunatamente abbiamo valutato di rifiutare la tua richiesta. Prova nuovamente fra 30 giorni."
2259
+
2260
+ #: templates/forms/affiliation.php:131
2261
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2262
+ msgstr "A causa della violazione dei nostri termini di affiliazione abbiamo deciso di bloccare temporaneamente il tuo account affiliativo. Se hai domande contatta il supporto."
2263
+
2264
+ #: templates/forms/affiliation.php:144
2265
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2266
+ msgstr "Ti piace %s? Diventa il nostro ambasciatore e guadagna denaro ;-)"
2267
+
2268
+ #: templates/forms/affiliation.php:145
2269
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2270
+ msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!"
2271
+
2272
+ #: templates/forms/affiliation.php:148
2273
+ msgid "Program Summary"
2274
+ msgstr "Sommario programma"
2275
+
2276
+ #: templates/forms/affiliation.php:150
2277
+ msgid "%s commission when a customer purchases a new license."
2278
+ msgstr "%scommissione quando un utente acquista una nuova lcienza."
2279
+
2280
+ #: templates/forms/affiliation.php:152
2281
+ msgid "Get commission for automated subscription renewals."
2282
+ msgstr "Ottieni delle commissioni dal sistema automatizzato di rinnovo."
2283
+
2284
+ #: templates/forms/affiliation.php:155
2285
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2286
+ msgstr "%s cookie di tracciamento dopo che la prima visita per massimizzare i margini di guadagno. "
2287
+
2288
+ #: templates/forms/affiliation.php:158
2289
+ msgid "Unlimited commissions."
2290
+ msgstr "Commissioni illimitate."
2291
+
2292
+ #: templates/forms/affiliation.php:160
2293
+ msgid "%s minimum payout amount."
2294
+ msgstr "%s quantità minima per il pagamento."
2295
+
2296
+ #: templates/forms/affiliation.php:161
2297
+ msgid "Payouts are in USD and processed monthly via PayPal."
2298
+ msgstr "I pagamenti sono in Dollari Americani e processati mensilmente da PayPal."
2299
+
2300
+ #: templates/forms/affiliation.php:162
2301
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2302
+ msgstr "Ci riserviamo 30 giorni in caso di rimborsi, paghiamo le commissioni se sono più vecchie di 30 giorni."
2303
+
2304
+ #: templates/forms/affiliation.php:165
2305
+ msgid "Affiliate"
2306
+ msgstr "Affiliati"
2307
+
2308
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2309
+ msgid "Email address"
2310
+ msgstr "Indirizzo email"
2311
+
2312
+ #: templates/forms/affiliation.php:172
2313
+ msgid "Full name"
2314
+ msgstr "Nome completo"
2315
+
2316
+ #: templates/forms/affiliation.php:176
2317
+ msgid "PayPal account email address"
2318
+ msgstr "Indirizzo account email Paypal"
2319
+
2320
+ #: templates/forms/affiliation.php:180
2321
+ msgid "Where are you going to promote the %s?"
2322
+ msgstr "Dove vuoi promuovere %s?"
2323
+
2324
+ #: templates/forms/affiliation.php:182
2325
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2326
+ msgstr "Inserisci il dominio del tuo sito o altri siti da dove vuoi promuovere %s."
2327
+
2328
+ #: templates/forms/affiliation.php:184
2329
+ msgid "Add another domain"
2330
+ msgstr "Aggiungi un altro dominio"
2331
+
2332
+ #: templates/forms/affiliation.php:188
2333
+ msgid "Extra Domains"
2334
+ msgstr "Domini aggiuntivi"
2335
+
2336
+ #: templates/forms/affiliation.php:189
2337
+ msgid "Extra domains where you will be marketing the product from."
2338
+ msgstr "Domini aggiuntivi dove ci sarà il modulo promozionale."
2339
+
2340
+ #: templates/forms/affiliation.php:199
2341
+ msgid "Promotion methods"
2342
+ msgstr "Metodi promozionali"
2343
+
2344
+ #: templates/forms/affiliation.php:202
2345
+ msgid "Social media (Facebook, Twitter, etc.)"
2346
+ msgstr "Social network (Facebook, Twitter, ecc.)"
2347
+
2348
+ #: templates/forms/affiliation.php:206
2349
+ msgid "Mobile apps"
2350
+ msgstr "Applicazioni mobile"
2351
+
2352
+ #: templates/forms/affiliation.php:210
2353
+ msgid "Website, email, and social media statistics (optional)"
2354
+ msgstr "Siti, email e statistiche dei social network (opzionali)"
2355
+
2356
+ #: templates/forms/affiliation.php:213
2357
+ 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)."
2358
+ msgstr "Facci sapere ogni sito o statistiche social valide, es: visite uniche mensili, numero di sottoscrizioni email, follower ecc (tratteremo queste informazioni come riservate)."
2359
+
2360
+ #: templates/forms/affiliation.php:217
2361
+ msgid "How will you promote us?"
2362
+ msgstr "Come ci promuoverai?"
2363
+
2364
+ #: templates/forms/affiliation.php:220
2365
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2366
+ msgstr "Fornisci i dettagli su come intendi promuovere %s. (sii più esplicativo possibile)"
2367
+
2368
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2369
+ msgid "Cancel"
2370
+ msgstr "Annulla"
2371
+
2372
+ #: templates/forms/affiliation.php:234
2373
+ msgid "Become an affiliate"
2374
+ msgstr "Diventa un affiliato"
2375
+
2376
+ #: templates/forms/data-debug-mode.php:25
2377
+ msgid "Please enter the license key to enable the debug mode:"
2378
+ msgstr "Inserisci la chiave della licenza per abilitare la modalità Debug:"
2379
+
2380
+ #: templates/forms/data-debug-mode.php:27
2381
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2382
+ msgstr "Abilita la modalità Debug, inserisci la chiave segreta del proprietario della licenza (UserID = %d), che puoi trovare nella sezione \"Profilo\" della dashboard utente:"
2383
+
2384
+ #: templates/forms/data-debug-mode.php:32
2385
+ msgid "Submit"
2386
+ msgstr "Invia"
2387
+
2388
+ #: templates/forms/data-debug-mode.php:36
2389
+ msgid "User key"
2390
+ msgstr "Chiave utente"
2391
+
2392
+ #: templates/forms/license-activation.php:23
2393
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2394
+ msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:"
2395
+
2396
+ #: templates/forms/license-activation.php:28
2397
+ msgid "Update License"
2398
+ msgstr "Aggiorna licenza"
2399
+
2400
+ #: templates/forms/license-activation.php:41
2401
+ 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."
2402
+ msgstr " Il %1$s invierà periodicamente dei dati a %2$s per verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
2403
+
2404
+ #: templates/forms/license-activation.php:183
2405
+ msgid "Associate with the license owner's account."
2406
+ msgstr "Associate with the license owner's account."
2407
+
2408
+ #: templates/forms/optout.php:30
2409
+ msgctxt "verb"
2410
+ msgid "Opt Out"
2411
+ msgstr "Cancella iscrizione"
2412
+
2413
+ #: templates/forms/optout.php:31
2414
+ msgctxt "verb"
2415
+ msgid "Opt In"
2416
+ msgstr "Iscriviti"
2417
+
2418
+ #: templates/forms/optout.php:34
2419
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2420
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2421
+
2422
+ #: templates/forms/optout.php:36
2423
+ msgid "Warning: Opting out will block automatic updates"
2424
+ msgstr "Warning: Opting out will block automatic updates"
2425
+
2426
+ #: templates/forms/optout.php:37
2427
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2428
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2429
+
2430
+ #: templates/forms/optout.php:39
2431
+ msgid "I'd like to keep automatic updates"
2432
+ msgstr "I'd like to keep automatic updates"
2433
+
2434
+ #: templates/forms/optout.php:44
2435
+ 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."
2436
+ msgstr "Tracciamo l'utilizzo esclusivamente per rendere %s migliore, creando una migliore esperienza utente e dando priorità a nuove funzionalità, oltre a molte altre buone cose. Saremmo veramente felici di vederti cambiare idea e lasciarci continuare con il tracciamento."
2437
+
2438
+ #: templates/forms/optout.php:45
2439
+ msgid "On second thought - I want to continue helping"
2440
+ msgstr "Ci ho ripensato, voglio continuare a fornire il mio aiuto"
2441
+
2442
+ #: templates/forms/optout.php:49
2443
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2444
+ msgstr "Cliccando su \"Cancella iscrizione\", non invieremo più nessuna informazione da %s a %s."
2445
+
2446
+ #: templates/forms/optout.php:74
2447
+ msgid "Plugins & themes tracking"
2448
+ msgstr "Plugins & themes tracking"
2449
+
2450
+ #: templates/forms/optout.php:261
2451
+ msgid "Saved"
2452
+ msgstr "Saved"
2453
+
2454
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2455
+ msgid "There is a new version of %s available."
2456
+ msgstr "C'è una nuova versione di %s disponibile."
2457
+
2458
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2459
+ msgid " %s to access version %s security & feature updates, and support."
2460
+ msgstr "%sper accedere alla versione%s per aggiornamenti, funzionalità e supporto."
2461
+
2462
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2463
+ msgid "New Version Available"
2464
+ msgstr "Nuova versione disponibile"
2465
+
2466
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2467
+ msgctxt "close a window"
2468
+ msgid "Dismiss"
2469
+ msgstr "Chiudi"
2470
+
2471
+ #: templates/forms/resend-key.php:21
2472
+ msgid "Send License Key"
2473
+ msgstr "Invia chiave di licenza"
2474
+
2475
+ #: templates/forms/resend-key.php:57
2476
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2477
+ msgstr "Inserisci qui sotto l'indirizzo email che hai usato per registrare l'aggiornamento e ti invieremo di nuovo la chiave di licenza."
2478
+
2479
+ #: templates/forms/subscription-cancellation.php:37
2480
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2481
+ msgstr "Disattivare o disinstallare %s che disabiliterà automaticamente la licenza, che permetterà di utilizzarla in un altro sito."
2482
+
2483
+ #: templates/forms/subscription-cancellation.php:47
2484
+ 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?"
2485
+ msgstr "In caso NON hai pianificato di usare %s su questo sito (o ogni altro sito) vuoi cancellare %s?"
2486
+
2487
+ #: templates/forms/subscription-cancellation.php:52
2488
+ msgid "license"
2489
+ msgstr "licenza"
2490
+
2491
+ #: templates/forms/subscription-cancellation.php:57
2492
+ 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."
2493
+ msgstr "Annulla %s, non ho bisogno di aggiornamenti di funzionalità e sicurezza o supporto per %sperché non ho intenzione di usare %ssu questo sito o qualunque altro sito."
2494
+
2495
+ #: templates/forms/subscription-cancellation.php:68
2496
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2497
+ msgstr "Non annullare %s, sono interessato in ottenere gli aggiornamenti di sicurezza, nuove funzionalità o contattare il supporto."
2498
+
2499
+ #: templates/forms/subscription-cancellation.php:103
2500
+ 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."
2501
+ msgstr "Quando la tua licenza scadrà non potrai più usare %s, a meno che lo attivi di nuovo con una licenza premium valida."
2502
+
2503
+ #: templates/forms/subscription-cancellation.php:136
2504
+ msgid "Cancel %s?"
2505
+ msgstr "Annulla %s?"
2506
+
2507
+ #: templates/forms/subscription-cancellation.php:143
2508
+ msgid "Proceed"
2509
+ msgstr "Prosegui"
2510
+
2511
+ #: templates/forms/subscription-cancellation.php191,
2512
+ #: templates/forms/deactivation/form.php:171
2513
+ msgid "Cancel %s & Proceed"
2514
+ msgstr "Annulla %s & Prosegui"
2515
+
2516
+ #: templates/forms/trial-start.php:22
2517
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2518
+ msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito di %1$s giorni per il piano %2$s."
2519
+
2520
+ #: templates/forms/trial-start.php:28
2521
+ 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."
2522
+ msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova."
2523
+
2524
+ #: templates/forms/user-change.php:26
2525
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2526
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2527
+
2528
+ #: templates/forms/user-change.php:28
2529
+ msgid "I Agree - Change User"
2530
+ msgstr "I Agree - Change User"
2531
+
2532
+ #: templates/forms/user-change.php:30
2533
+ msgid "Enter email address"
2534
+ msgstr "Enter email address"
2535
+
2536
+ #: templates/forms/user-change.php:81
2537
+ msgctxt "close window"
2538
+ msgid "Dismiss"
2539
+ msgstr "Chiudi"
2540
+
2541
+ #: templates/js/style-premium-theme.php:39
2542
+ msgid "Premium"
2543
+ msgstr "Premium"
2544
+
2545
+ #: templates/js/style-premium-theme.php:42
2546
+ msgid "Beta"
2547
+ msgstr "Beta"
2548
+
2549
+ #: templates/partials/network-activation.php:27
2550
+ msgid "Activate license on all sites in the network."
2551
+ msgstr "Attiva la licenza su tutti i siti del network."
2552
+
2553
+ #: templates/partials/network-activation.php:28
2554
+ msgid "Apply on all sites in the network."
2555
+ msgstr "Applica su tutti i siti della rete."
2556
+
2557
+ #: templates/partials/network-activation.php:31
2558
+ msgid "Activate license on all pending sites."
2559
+ msgstr "Attiva le licenze su tutti i siti in attesa."
2560
+
2561
+ #: templates/partials/network-activation.php:32
2562
+ msgid "Apply on all pending sites."
2563
+ msgstr "Applica su tutti i siti in attesa."
2564
+
2565
+ #: templates/partials/network-activation.php40,
2566
+ #: templates/partials/network-activation.php:74
2567
+ msgid "allow"
2568
+ msgstr "permetti"
2569
+
2570
+ #: templates/partials/network-activation.php43,
2571
+ #: templates/partials/network-activation.php:77
2572
+ msgid "delegate"
2573
+ msgstr "delega"
2574
+
2575
+ #: templates/partials/network-activation.php47,
2576
+ #: templates/partials/network-activation.php:81
2577
+ msgid "skip"
2578
+ msgstr "salta"
2579
+
2580
+ #: templates/plugin-info/description.php72,
2581
+ #: templates/plugin-info/screenshots.php:31
2582
+ msgid "Click to view full-size screenshot %d"
2583
+ msgstr "Fare clic per visualizzare lo screenshot in grandi dimensioni %d"
2584
+
2585
+ #: templates/plugin-info/features.php:56
2586
+ msgid "Unlimited Updates"
2587
+ msgstr "Aggiornamenti Illimitati"
2588
+
2589
+ #: templates/account/partials/activate-license-button.php:46
2590
+ msgid "Localhost"
2591
+ msgstr "Localhost"
2592
+
2593
+ #: templates/account/partials/activate-license-button.php:50
2594
+ msgctxt "as 5 licenses left"
2595
+ msgid "%s left"
2596
+ msgstr "%s rimanenti"
2597
+
2598
+ #: templates/account/partials/activate-license-button.php:51
2599
+ msgid "Last license"
2600
+ msgstr "Ultima licenza"
2601
+
2602
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2603
+ #. subscription'
2604
+ #: templates/account/partials/addon.php:29
2605
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2606
+ msgstr "%1$s fermerà subito tutti i futuri pagamenti ricorrenti e il tuo piano licenza scadrà in %s.,"
2607
+
2608
+ #: templates/account/partials/addon.php:185
2609
+ msgid "Cancelled"
2610
+ msgstr "Annullato"
2611
+
2612
+ #: templates/account/partials/addon.php:195
2613
+ msgid "No expiration"
2614
+ msgstr "Nessuna scadenza"
2615
+
2616
+ #: templates/account/partials/site.php:189
2617
+ msgid "Owner Name"
2618
+ msgstr "Nome proprietario"
2619
+
2620
+ #: templates/account/partials/site.php:201
2621
+ msgid "Owner Email"
2622
+ msgstr "Email proprietario"
2623
+
2624
+ #: templates/account/partials/site.php:213
2625
+ msgid "Owner ID"
2626
+ msgstr "ID proprietario"
2627
+
2628
+ #: templates/account/partials/site.php:286
2629
+ msgid "Subscription"
2630
+ msgstr "Sottoscrivi"
2631
+
2632
+ #: templates/forms/deactivation/contact.php:19
2633
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2634
+ msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo permesso."
2635
+
2636
+ #: templates/forms/deactivation/contact.php:22
2637
+ msgid "Contact Support"
2638
+ msgstr "Contatta il supporto"
2639
+
2640
+ #: templates/forms/deactivation/form.php:64
2641
+ msgid "Anonymous feedback"
2642
+ msgstr "Feedback anonimo"
2643
+
2644
+ #: templates/forms/deactivation/form.php:70
2645
+ msgid "Deactivate"
2646
+ msgstr "Disattiva"
2647
+
2648
+ #: templates/forms/deactivation/form.php:72
2649
+ msgid "Activate %s"
2650
+ msgstr "Attiva %s"
2651
+
2652
+ #: templates/forms/deactivation/form.php:87
2653
+ msgid "Quick Feedback"
2654
+ msgstr "Suggerimenti rapidi"
2655
+
2656
+ #: templates/forms/deactivation/form.php:91
2657
+ msgid "If you have a moment, please let us know why you are %s"
2658
+ msgstr "Se hai un attimo, facci sapere perché %s"
2659
+
2660
+ #: templates/forms/deactivation/form.php:91
2661
+ msgid "deactivating"
2662
+ msgstr "disattivazione in corso"
2663
+
2664
+ #: templates/forms/deactivation/form.php:91
2665
+ msgid "switching"
2666
+ msgstr "passa a"
2667
+
2668
+ #: templates/forms/deactivation/form.php:369
2669
+ msgid "Submit & %s"
2670
+ msgstr "Invia e %s"
2671
+
2672
+ #: templates/forms/deactivation/form.php:390
2673
+ msgid "Kindly tell us the reason so we can improve."
2674
+ msgstr "Spiegandoci il motivo ci aiuterai a migliorare."
2675
+
2676
+ #: templates/forms/deactivation/form.php:515
2677
+ msgid "Yes - %s"
2678
+ msgstr "SI - %s"
2679
+
2680
+ #: templates/forms/deactivation/form.php:522
2681
+ msgid "Skip & %s"
2682
+ msgstr "Salta & %s"
2683
+
2684
+ #: templates/forms/deactivation/retry-skip.php:21
2685
+ msgid "Click here to use the plugin anonymously"
2686
+ msgstr "Fai clic qui per usare il plugin anonimamente"
2687
+
2688
+ #: templates/forms/deactivation/retry-skip.php:23
2689
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2690
+ msgstr "Potresti non averci fatto caso, ma non sei obbligato a condividere i tuoi dati e puoi semplicemente %s la tua partecipazione."
freemius/languages/freemius-ja.po ADDED
@@ -0,0 +1,2687 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Odyssey <8bitodyssey+github@gmail.com>, 2016
5
+ # Takayuki Miyauchi <miya0001@users.noreply.github.com>, 2016
6
+ # Tomohyco Tsunoda, 2018
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WordPress SDK\n"
10
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
11
+ "POT-Creation-Date: \n"
12
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
13
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
14
+ "Language: ja\n"
15
+ "Language-Team: Japanese (http://www.transifex.com/freemius/wordpress-sdk/language/ja/)\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=1; plural=0;\n"
19
+ "MIME-Version: 1.0\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "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"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
24
+ "X-Poedit-SourceCharset: UTF-8\n"
25
+
26
+ #: includes/class-freemius.php1919, templates/account.php:912
27
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
28
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
29
+
30
+ #: includes/class-freemius.php:1926
31
+ msgid "Would you like to proceed with the update?"
32
+ msgstr "Would you like to proceed with the update?"
33
+
34
+ #: includes/class-freemius.php:2138
35
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
36
+ msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。"
37
+
38
+ #: includes/class-freemius.php:2140
39
+ msgid "Error"
40
+ msgstr "エラー"
41
+
42
+ #: includes/class-freemius.php:2540
43
+ msgid "I found a better %s"
44
+ msgstr "より良い %sを見つけました"
45
+
46
+ #: includes/class-freemius.php:2542
47
+ msgid "What's the %s's name?"
48
+ msgstr "%sの名前は何ですか?"
49
+
50
+ #: includes/class-freemius.php:2548
51
+ msgid "It's a temporary %s. I'm just debugging an issue."
52
+ msgstr "%sは一時的なものです。現在この問題をデバッグ中です。"
53
+
54
+ #: includes/class-freemius.php:2550
55
+ msgid "Deactivation"
56
+ msgstr "無効化"
57
+
58
+ #: includes/class-freemius.php:2551
59
+ msgid "Theme Switch"
60
+ msgstr "テーマ変更"
61
+
62
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
63
+ #: templates/forms/user-change.php:29
64
+ msgid "Other"
65
+ msgstr "その他"
66
+
67
+ #: includes/class-freemius.php:2568
68
+ msgid "I no longer need the %s"
69
+ msgstr "%sはもう不要です"
70
+
71
+ #: includes/class-freemius.php:2575
72
+ msgid "I only needed the %s for a short period"
73
+ msgstr "短期間だけ %sが 必要です。"
74
+
75
+ #: includes/class-freemius.php:2581
76
+ msgid "The %s broke my site"
77
+ msgstr "%s の影響でサイトを崩れました"
78
+
79
+ #: includes/class-freemius.php:2588
80
+ msgid "The %s suddenly stopped working"
81
+ msgstr "%s の動作が突然停止しました"
82
+
83
+ #: includes/class-freemius.php:2598
84
+ msgid "I can't pay for it anymore"
85
+ msgstr "もう払うことができません"
86
+
87
+ #: includes/class-freemius.php:2600
88
+ msgid "What price would you feel comfortable paying?"
89
+ msgstr " 支払ってもよいと思う価格はいくらですか?"
90
+
91
+ #: includes/class-freemius.php:2606
92
+ msgid "I don't like to share my information with you"
93
+ msgstr "自分の情報を共有したくありません"
94
+
95
+ #: includes/class-freemius.php:2627
96
+ msgid "The %s didn't work"
97
+ msgstr "%s が動作しませんでした"
98
+
99
+ #: includes/class-freemius.php:2637
100
+ msgid "I couldn't understand how to make it work"
101
+ msgstr "どうしたら動作するか分かりませんでした。"
102
+
103
+ #: includes/class-freemius.php:2645
104
+ msgid "The %s is great, but I need specific feature that you don't support"
105
+ msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です"
106
+
107
+ #: includes/class-freemius.php:2647
108
+ msgid "What feature?"
109
+ msgstr "何の機能ですか?"
110
+
111
+ #: includes/class-freemius.php:2651
112
+ msgid "The %s is not working"
113
+ msgstr "%s が動作していません"
114
+
115
+ #: includes/class-freemius.php:2653
116
+ msgid "Kindly share what didn't work so we can fix it for future users..."
117
+ msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…"
118
+
119
+ #: includes/class-freemius.php:2657
120
+ msgid "It's not what I was looking for"
121
+ msgstr "探していたものではありません"
122
+
123
+ #: includes/class-freemius.php:2659
124
+ msgid "What you've been looking for?"
125
+ msgstr "探していたのは何ですか?"
126
+
127
+ #: includes/class-freemius.php:2663
128
+ msgid "The %s didn't work as expected"
129
+ msgstr "%sが期待通りに動きませんでした "
130
+
131
+ #: includes/class-freemius.php:2665
132
+ msgid "What did you expect?"
133
+ msgstr "何を期待していましたか?"
134
+
135
+ #: includes/class-freemius.php3520, templates/debug.php:20
136
+ msgid "Freemius Debug"
137
+ msgstr "Freemius デバッグ"
138
+
139
+ #: includes/class-freemius.php:4272
140
+ msgid "I don't know what is cURL or how to install it, help me!"
141
+ msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。"
142
+
143
+ #: includes/class-freemius.php:4274
144
+ 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."
145
+ msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。"
146
+
147
+ #: includes/class-freemius.php:4281
148
+ 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."
149
+ msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。"
150
+
151
+ #: includes/class-freemius.php:4386
152
+ msgid "Yes - do your thing"
153
+ msgstr "はい - お構いなく"
154
+
155
+ #: includes/class-freemius.php:4391
156
+ msgid "No - just deactivate"
157
+ msgstr "いいえ - すぐに無効化"
158
+
159
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
160
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
161
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
162
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
163
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
164
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
165
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
166
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
167
+ msgctxt "exclamation"
168
+ msgid "Oops"
169
+ msgstr "おっと"
170
+
171
+ #: includes/class-freemius.php:4505
172
+ 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."
173
+ msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。"
174
+
175
+ #: includes/class-freemius.php:4927
176
+ msgctxt "addonX cannot run without pluginY"
177
+ msgid "%s cannot run without %s."
178
+ msgstr "%s は、%s が無いと実行することができません。"
179
+
180
+ #: includes/class-freemius.php:4928
181
+ msgctxt "addonX cannot run..."
182
+ msgid "%s cannot run without the plugin."
183
+ msgstr "%s は、プラグインが無いと実行することができません。"
184
+
185
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
186
+ #: includes/class-freemius.php:21180
187
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
188
+ msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。"
189
+
190
+ #: includes/class-freemius.php:5857
191
+ msgid "Premium %s version was successfully activated."
192
+ msgstr "プレミアムバージョンの %sは有効化に成功しました。"
193
+
194
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
195
+ msgctxt ""
196
+ msgid "W00t"
197
+ msgstr "やったー"
198
+
199
+ #: includes/class-freemius.php:5884
200
+ msgid "You have a %s license."
201
+ msgstr "%s ライセンスを持っています。"
202
+
203
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
204
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
205
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
206
+ #: includes/class-freemius.php:20930
207
+ msgctxt "interjection expressing joy or exuberance"
208
+ msgid "Yee-haw"
209
+ msgstr "ヤッホー"
210
+
211
+ #: includes/class-freemius.php:6174
212
+ 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."
213
+ msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。"
214
+
215
+ #: includes/class-freemius.php:6178
216
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
217
+ msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。"
218
+
219
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
220
+ #: templates/account/partials/addon.php:381
221
+ msgid "More information about %s"
222
+ msgstr "%s に関する詳細情報"
223
+
224
+ #: includes/class-freemius.php:6188
225
+ msgid "Purchase License"
226
+ msgstr "ライセンスを購入"
227
+
228
+ #: includes/class-freemius.php7125, templates/connect.php:171
229
+ 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."
230
+ msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。"
231
+
232
+ #: includes/class-freemius.php:7129
233
+ msgid "start the trial"
234
+ msgstr "トライアルを開始"
235
+
236
+ #: includes/class-freemius.php7130, templates/connect.php:175
237
+ msgid "complete the install"
238
+ msgstr "インストールを完了"
239
+
240
+ #: includes/class-freemius.php:7249
241
+ msgid "You are just one step away - %s"
242
+ msgstr "もうあとわずかです - %s"
243
+
244
+ #: includes/class-freemius.php:7252
245
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
246
+ msgid "Complete \"%s\" Activation Now"
247
+ msgstr "すぐに \"%s\" 有効化を完了してください"
248
+
249
+ #: includes/class-freemius.php:7334
250
+ msgid "We made a few tweaks to the %s, %s"
251
+ msgstr "プラグインを微調整します、 %s, %s"
252
+
253
+ #: includes/class-freemius.php:7338
254
+ msgid "Opt in to make \"%s\" better!"
255
+ msgstr "Opt in to make \"%s\" better!"
256
+
257
+ #: includes/class-freemius.php:7773
258
+ msgid "The upgrade of %s was successfully completed."
259
+ msgstr "%s のアップグレードが完了しました。"
260
+
261
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
262
+ #: includes/class-fs-plugin-updater.php1282,
263
+ #: includes/class-fs-plugin-updater.php1289,
264
+ #: templates/auto-installation.php:32
265
+ msgid "Add-On"
266
+ msgstr "アドオン"
267
+
268
+ #: includes/class-freemius.php10257, templates/account.php394,
269
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
270
+ msgid "Plugin"
271
+ msgstr "プラグイン"
272
+
273
+ #: includes/class-freemius.php10258, templates/account.php395,
274
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
275
+ #: templates/forms/deactivation/form.php:71
276
+ msgid "Theme"
277
+ msgstr "テーマ"
278
+
279
+ #: includes/class-freemius.php:13188
280
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
281
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
282
+
283
+ #: includes/class-freemius.php:13202
284
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
285
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
286
+
287
+ #: includes/class-freemius.php:13207
288
+ msgid "User Dashboard"
289
+ msgstr "User Dashboard"
290
+
291
+ #: includes/class-freemius.php:13208
292
+ msgid "revert it now"
293
+ msgstr "revert it now"
294
+
295
+ #: includes/class-freemius.php:13266
296
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
297
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
298
+
299
+ #: includes/class-freemius.php:13339
300
+ msgid "Invalid new user ID or email address."
301
+ msgstr "Invalid new user ID or email address."
302
+
303
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
304
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
305
+ msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。"
306
+
307
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
308
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
309
+ msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。"
310
+
311
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
312
+ msgid "Change Ownership"
313
+ msgstr "オーナーを変更"
314
+
315
+ #: includes/class-freemius.php:13977
316
+ msgid "Invalid site details collection."
317
+ msgstr "Invalid site details collection."
318
+
319
+ #: includes/class-freemius.php:14097
320
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
321
+ msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。"
322
+
323
+ #: includes/class-freemius.php:14099
324
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
325
+ msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。"
326
+
327
+ #: includes/class-freemius.php:14373
328
+ msgid "Account is pending activation."
329
+ msgstr "アカウントは有効化待ちです。"
330
+
331
+ #: includes/class-freemius.php14485,
332
+ #: templates/forms/premium-versions-upgrade-handler.php:47
333
+ msgid "Buy a license now"
334
+ msgstr "Buy a license now"
335
+
336
+ #: includes/class-freemius.php14497,
337
+ #: templates/forms/premium-versions-upgrade-handler.php:46
338
+ msgid "Renew your license now"
339
+ msgstr "Renew your license now"
340
+
341
+ #: includes/class-freemius.php:14501
342
+ msgid "%s to access version %s security & feature updates, and support."
343
+ msgstr "%s to access version %s security & feature updates, and support."
344
+
345
+ #: includes/class-freemius.php:16929
346
+ msgid "%s activation was successfully completed."
347
+ msgstr "%s の有効化が成功しました。"
348
+
349
+ #: includes/class-freemius.php:16943
350
+ msgid "Your account was successfully activated with the %s plan."
351
+ msgstr "アカウントが %s プランで有効化できました。"
352
+
353
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
354
+ msgid "Your trial has been successfully started."
355
+ msgstr "トライアル版の利用を開始しました。"
356
+
357
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
358
+ #: includes/class-freemius.php:17820
359
+ msgid "Couldn't activate %s."
360
+ msgstr "%s を有効化できません。"
361
+
362
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
363
+ #: includes/class-freemius.php:17821
364
+ msgid "Please contact us with the following message:"
365
+ msgstr "以下のメッセージとともに私たちに連絡をください。"
366
+
367
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
368
+ msgid "An unknown error has occurred."
369
+ msgstr "An unknown error has occurred."
370
+
371
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
372
+ msgid "Upgrade"
373
+ msgstr "アップグレード"
374
+
375
+ #: includes/class-freemius.php:18184
376
+ msgid "Start Trial"
377
+ msgstr "トライアルを開始"
378
+
379
+ #: includes/class-freemius.php:18186
380
+ msgid "Pricing"
381
+ msgstr "料金表"
382
+
383
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
384
+ msgid "Affiliation"
385
+ msgstr "アフィリエイト"
386
+
387
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
388
+ #: templates/account.php242, templates/debug.php:324
389
+ msgid "Account"
390
+ msgstr "アカウント"
391
+
392
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
393
+ #: includes/customizer/class-fs-customizer-support-section.php:60
394
+ msgid "Contact Us"
395
+ msgstr "連絡"
396
+
397
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
398
+ #: includes/class-freemius.php23354, templates/account.php121,
399
+ #: templates/account/partials/addon.php:44
400
+ msgid "Add-Ons"
401
+ msgstr "アドオン"
402
+
403
+ #: includes/class-freemius.php:18361
404
+ msgctxt "ASCII arrow left icon"
405
+ msgid "&#x2190;"
406
+ msgstr "&#x2190;"
407
+
408
+ #: includes/class-freemius.php:18361
409
+ msgctxt "ASCII arrow right icon"
410
+ msgid "&#x27a4;"
411
+ msgstr "&#x27a4;"
412
+
413
+ #: includes/class-freemius.php18363, templates/pricing.php:109
414
+ msgctxt "noun"
415
+ msgid "Pricing"
416
+ msgstr "料金表"
417
+
418
+ #: includes/class-freemius.php18576,
419
+ #: includes/customizer/class-fs-customizer-support-section.php:67
420
+ msgid "Support Forum"
421
+ msgstr "サポートフォーラム"
422
+
423
+ #: includes/class-freemius.php:19550
424
+ msgid "Your email has been successfully verified - you are AWESOME!"
425
+ msgstr "あなたのメールアドレスの承認が完了しました。すごい!"
426
+
427
+ #: includes/class-freemius.php:19551
428
+ msgctxt "a positive response"
429
+ msgid "Right on"
430
+ msgstr "そうだ"
431
+
432
+ #: includes/class-freemius.php:20057
433
+ msgid "seems like the key you entered doesn't match our records."
434
+ msgstr "seems like the key you entered doesn't match our records."
435
+
436
+ #: includes/class-freemius.php:20081
437
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
438
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
439
+
440
+ #: includes/class-freemius.php:20316
441
+ msgid "Your %s Add-on plan was successfully upgraded."
442
+ msgstr "%s のアドオンのプランのアップグレードが完了しました。"
443
+
444
+ #: includes/class-freemius.php:20318
445
+ msgid "%s Add-on was successfully purchased."
446
+ msgstr "%s のアドオンの支払いが完了しました。"
447
+
448
+ #: includes/class-freemius.php:20321
449
+ msgid "Download the latest version"
450
+ msgstr "最新版をダウンロード"
451
+
452
+ #: includes/class-freemius.php:20407
453
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
454
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
455
+
456
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
457
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
458
+ msgid "Error received from the server:"
459
+ msgstr "サーバーからエラーを受信しました。"
460
+
461
+ #: includes/class-freemius.php:20423
462
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
463
+ msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。"
464
+
465
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
466
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
467
+ msgctxt ""
468
+ msgid "Hmm"
469
+ msgstr "ふむ"
470
+
471
+ #: includes/class-freemius.php:20664
472
+ 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."
473
+ msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。"
474
+
475
+ #: includes/class-freemius.php20665, templates/account.php123,
476
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
477
+ msgctxt "trial period"
478
+ msgid "Trial"
479
+ msgstr "トライアル"
480
+
481
+ #: includes/class-freemius.php:20670
482
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
483
+ msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。"
484
+
485
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
486
+ msgid "Please contact us here"
487
+ msgstr "こちらで私たちに連絡をとってください。"
488
+
489
+ #: includes/class-freemius.php:20685
490
+ msgid "Your plan was successfully activated."
491
+ msgstr "Your plan was successfully activated."
492
+
493
+ #: includes/class-freemius.php:20686
494
+ msgid "Your plan was successfully upgraded."
495
+ msgstr "プランのアップグレードが成功しました。"
496
+
497
+ #: includes/class-freemius.php:20703
498
+ msgid "Your plan was successfully changed to %s."
499
+ msgstr "プランの %s への変更が成功しました。"
500
+
501
+ #: includes/class-freemius.php:20719
502
+ msgid "Your license has expired. You can still continue using the free %s forever."
503
+ msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。"
504
+
505
+ #: includes/class-freemius.php:20721
506
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
507
+ msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。"
508
+
509
+ #: includes/class-freemius.php:20729
510
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
511
+ msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。"
512
+
513
+ #: includes/class-freemius.php:20742
514
+ 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."
515
+ msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。"
516
+
517
+ #: includes/class-freemius.php:20768
518
+ msgid "Your free trial has expired. You can still continue using all our free features."
519
+ msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。"
520
+
521
+ #: includes/class-freemius.php:20770
522
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
523
+ msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。"
524
+
525
+ #: includes/class-freemius.php:20885
526
+ msgid "It looks like the license could not be activated."
527
+ msgstr "ライセンスの有効化ができませんでした。"
528
+
529
+ #: includes/class-freemius.php:20927
530
+ msgid "Your license was successfully activated."
531
+ msgstr "ライセンスの有効化が成功しました。"
532
+
533
+ #: includes/class-freemius.php:20953
534
+ msgid "It looks like your site currently doesn't have an active license."
535
+ msgstr "サイトは有効なライセンスを持っていないようです。"
536
+
537
+ #: includes/class-freemius.php:20977
538
+ msgid "It looks like the license deactivation failed."
539
+ msgstr "ライセンスの無効化ができませんでした。"
540
+
541
+ #: includes/class-freemius.php:21006
542
+ msgid "Your %s license was successfully deactivated."
543
+ msgstr "Your %s license was successfully deactivated."
544
+
545
+ #: includes/class-freemius.php:21007
546
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
547
+ msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。"
548
+
549
+ #: includes/class-freemius.php:21010
550
+ msgid "O.K"
551
+ msgstr "O.K"
552
+
553
+ #: includes/class-freemius.php:21063
554
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
555
+ msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
556
+
557
+ #: includes/class-freemius.php:21072
558
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
559
+ msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
560
+
561
+ #: includes/class-freemius.php:21114
562
+ msgid "You are already running the %s in a trial mode."
563
+ msgstr "すでに%sをトライアルモードで利用中です。"
564
+
565
+ #: includes/class-freemius.php:21125
566
+ msgid "You already utilized a trial before."
567
+ msgstr "以前すでに試用版を利用しました。"
568
+
569
+ #: includes/class-freemius.php:21139
570
+ msgid "Plan %s do not exist, therefore, can't start a trial."
571
+ msgstr "%s プランは存在しないため、試用を開始できません。"
572
+
573
+ #: includes/class-freemius.php:21150
574
+ msgid "Plan %s does not support a trial period."
575
+ msgstr "%s プランにはトライアル期間はありません。"
576
+
577
+ #: includes/class-freemius.php:21161
578
+ msgid "None of the %s's plans supports a trial period."
579
+ msgstr "%sのプランにはトライアル期間はありません。"
580
+
581
+ #: includes/class-freemius.php:21211
582
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
583
+ msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)"
584
+
585
+ #: includes/class-freemius.php:21247
586
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
587
+ msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。"
588
+
589
+ #: includes/class-freemius.php:21266
590
+ msgid "Your %s free trial was successfully cancelled."
591
+ msgstr "%s のフリートライアルはキャンセルされました。"
592
+
593
+ #: includes/class-freemius.php:21582
594
+ msgid "Version %s was released."
595
+ msgstr "バージョン %s をリリースしました。"
596
+
597
+ #: includes/class-freemius.php:21582
598
+ msgid "Please download %s."
599
+ msgstr "%s をダウンロードしてください。"
600
+
601
+ #: includes/class-freemius.php:21589
602
+ msgid "the latest %s version here"
603
+ msgstr "最新の %s バージョンはこちらです。"
604
+
605
+ #: includes/class-freemius.php:21594
606
+ msgid "New"
607
+ msgstr "新規"
608
+
609
+ #: includes/class-freemius.php:21599
610
+ msgid "Seems like you got the latest release."
611
+ msgstr "最新版を取得できました。"
612
+
613
+ #: includes/class-freemius.php:21600
614
+ msgid "You are all good!"
615
+ msgstr "すべて完璧です!"
616
+
617
+ #: includes/class-freemius.php:21903
618
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
619
+ msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。"
620
+
621
+ #: includes/class-freemius.php:22043
622
+ msgid "Site successfully opted in."
623
+ msgstr "サイトのオプトインに成功しました。"
624
+
625
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
626
+ msgid "Awesome"
627
+ msgstr "すごい!"
628
+
629
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
630
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
631
+ msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。"
632
+
633
+ #: includes/class-freemius.php:22061
634
+ msgid "Thank you!"
635
+ msgstr "ありがとうございます!"
636
+
637
+ #: includes/class-freemius.php:22068
638
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
639
+ msgstr "もう%s上の%sから%sへのデータ送信は行いません。"
640
+
641
+ #: includes/class-freemius.php:22226
642
+ 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."
643
+ msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。"
644
+
645
+ #: includes/class-freemius.php:22232
646
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
647
+ msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。"
648
+
649
+ #: includes/class-freemius.php:22237
650
+ msgid "%s is the new owner of the account."
651
+ msgstr "%s は新しいオーナーです。"
652
+
653
+ #: includes/class-freemius.php:22239
654
+ msgctxt "as congratulations"
655
+ msgid "Congrats"
656
+ msgstr "おめでとう"
657
+
658
+ #: includes/class-freemius.php:22275
659
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
660
+ msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。"
661
+
662
+ #: includes/class-freemius.php:22287
663
+ msgid "Please provide your full name."
664
+ msgstr "フルネームを入力してください。"
665
+
666
+ #: includes/class-freemius.php:22292
667
+ msgid "Your name was successfully updated."
668
+ msgstr "名前のアップデートが成功しました。"
669
+
670
+ #: includes/class-freemius.php:22353
671
+ msgid "You have successfully updated your %s."
672
+ msgstr "%s のアップデートが成功しました。"
673
+
674
+ #: includes/class-freemius.php:22412
675
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
676
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
677
+
678
+ #: includes/class-freemius.php:22415
679
+ msgid "Click here"
680
+ msgstr "Click here"
681
+
682
+ #: includes/class-freemius.php:22513
683
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
684
+ msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。"
685
+
686
+ #: includes/class-freemius.php:22514
687
+ msgctxt "advance notice of something that will need attention."
688
+ msgid "Heads up"
689
+ msgstr "警告"
690
+
691
+ #: includes/class-freemius.php:23090
692
+ msgctxt "exclamation"
693
+ msgid "Hey"
694
+ msgstr "ヘイ"
695
+
696
+ #: includes/class-freemius.php:23090
697
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
698
+ msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。"
699
+
700
+ #: includes/class-freemius.php:23098
701
+ msgid "No commitment for %s days - cancel anytime!"
702
+ msgstr "%s 日以内であればいつでもキャンセルできます。"
703
+
704
+ #: includes/class-freemius.php:23099
705
+ msgid "No credit card required"
706
+ msgstr "クレジットカードは必要ありません。"
707
+
708
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
709
+ msgctxt "call to action"
710
+ msgid "Start free trial"
711
+ msgstr "フリートライアルを開始"
712
+
713
+ #: includes/class-freemius.php:23183
714
+ 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!"
715
+ msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!"
716
+
717
+ #: includes/class-freemius.php:23192
718
+ msgid "Learn more"
719
+ msgstr "詳細はこちら"
720
+
721
+ #: includes/class-freemius.php23378, templates/account.php558,
722
+ #: templates/account.php708, templates/connect.php179,
723
+ #: templates/connect.php461, templates/forms/license-activation.php27,
724
+ #: templates/account/partials/addon.php:321
725
+ msgid "Activate License"
726
+ msgstr "ライセンスを有効化"
727
+
728
+ #: includes/class-freemius.php23379, templates/account.php652,
729
+ #: templates/account.php707, templates/account/partials/addon.php322,
730
+ #: templates/account/partials/site.php:271
731
+ msgid "Change License"
732
+ msgstr "ライセンスを変更"
733
+
734
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
735
+ msgid "Opt Out"
736
+ msgstr "オプトアウト"
737
+
738
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
739
+ #: templates/account/partials/site.php49,
740
+ #: templates/account/partials/site.php:169
741
+ msgid "Opt In"
742
+ msgstr "オプトイン"
743
+
744
+ #: includes/class-freemius.php:23738
745
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
747
+
748
+ #: includes/class-freemius.php:23746
749
+ msgid "Activate %s features"
750
+ msgstr "Activate %s features"
751
+
752
+ #: includes/class-freemius.php:23759
753
+ msgid "Please follow these steps to complete the upgrade"
754
+ msgstr "アップグレードを完了するには以下の手順を完了させてください。"
755
+
756
+ #: includes/class-freemius.php:23763
757
+ msgid "Download the latest %s version"
758
+ msgstr "最新の %s をダウンロード"
759
+
760
+ #: includes/class-freemius.php:23767
761
+ msgid "Upload and activate the downloaded version"
762
+ msgstr "ダウンロードしたバージョンをアップロードして有効化"
763
+
764
+ #: includes/class-freemius.php:23769
765
+ msgid "How to upload and activate?"
766
+ msgstr "アップロードと有効化の方法"
767
+
768
+ #: includes/class-freemius.php:23903
769
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
770
+ msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。"
771
+
772
+ #: includes/class-freemius.php:24072
773
+ msgid "Auto installation only works for opted-in users."
774
+ msgstr "自動インストールはオプトインしたユーザのみで動作します。"
775
+
776
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
777
+ #: includes/class-fs-plugin-updater.php1261,
778
+ #: includes/class-fs-plugin-updater.php:1275
779
+ msgid "Invalid module ID."
780
+ msgstr "モジュール ID が不正です"
781
+
782
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
783
+ msgid "Premium version already active."
784
+ msgstr "プレミアムバージョンはすでに有効になっています。"
785
+
786
+ #: includes/class-freemius.php:24098
787
+ msgid "You do not have a valid license to access the premium version."
788
+ msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。"
789
+
790
+ #: includes/class-freemius.php:24105
791
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
792
+ msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。"
793
+
794
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
795
+ msgid "Premium add-on version already installed."
796
+ msgstr "プレミアムアドオンバージョンはすでにインストール済みです。"
797
+
798
+ #: includes/class-freemius.php:24473
799
+ msgid "View paid features"
800
+ msgstr "有料の機能を表示する"
801
+
802
+ #: includes/class-freemius.php:24795
803
+ msgid "Thank you so much for using %s and its add-ons!"
804
+ msgstr "%sとアドオンのご利用ありがとうございます!"
805
+
806
+ #: includes/class-freemius.php:24796
807
+ msgid "Thank you so much for using %s!"
808
+ msgstr "%sのご利用ありがとうございます!"
809
+
810
+ #: includes/class-freemius.php:24802
811
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
812
+ msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
813
+
814
+ #: includes/class-freemius.php:24806
815
+ msgid "Thank you so much for using our products!"
816
+ msgstr "プロダクトのご利用ありがとうございます!"
817
+
818
+ #: includes/class-freemius.php:24807
819
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
820
+ msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。"
821
+
822
+ #: includes/class-freemius.php:24826
823
+ msgid "%s and its add-ons"
824
+ msgstr "%sとそのアドオン"
825
+
826
+ #: includes/class-freemius.php:24835
827
+ msgid "Products"
828
+ msgstr "プロダクト"
829
+
830
+ #: includes/class-freemius.php24842, templates/connect.php:275
831
+ msgid "Yes"
832
+ msgstr "はい"
833
+
834
+ #: includes/class-freemius.php24843, templates/connect.php:276
835
+ msgid "send me security & feature updates, educational content and offers."
836
+ msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。"
837
+
838
+ #: includes/class-freemius.php24844, templates/connect.php:281
839
+ msgid "No"
840
+ msgstr "いいえ"
841
+
842
+ #: includes/class-freemius.php24846, templates/connect.php:283
843
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
844
+ msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。"
845
+
846
+ #: includes/class-freemius.php:24856
847
+ 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 :-)"
848
+ 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 :-)"
849
+
850
+ #: includes/class-freemius.php24858, templates/connect.php:290
851
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
852
+ msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。"
853
+
854
+ #: includes/class-freemius.php:25140
855
+ msgid "License key is empty."
856
+ msgstr "ライセンスキーが空です。"
857
+
858
+ #: includes/class-fs-plugin-updater.php206,
859
+ #: templates/forms/premium-versions-upgrade-handler.php:57
860
+ msgid "Renew license"
861
+ msgstr "ライセンスを更新"
862
+
863
+ #: includes/class-fs-plugin-updater.php211,
864
+ #: templates/forms/premium-versions-upgrade-handler.php:58
865
+ msgid "Buy license"
866
+ msgstr "Buy license"
867
+
868
+ #: includes/class-fs-plugin-updater.php327,
869
+ #: includes/class-fs-plugin-updater.php:360
870
+ msgid "There is a %s of %s available."
871
+ msgstr "There is a %s of %s available."
872
+
873
+ #: includes/class-fs-plugin-updater.php329,
874
+ #: includes/class-fs-plugin-updater.php:365
875
+ msgid "new Beta version"
876
+ msgstr "new Beta version"
877
+
878
+ #: includes/class-fs-plugin-updater.php330,
879
+ #: includes/class-fs-plugin-updater.php:366
880
+ msgid "new version"
881
+ msgstr "new version"
882
+
883
+ #: includes/class-fs-plugin-updater.php:389
884
+ msgid "Important Upgrade Notice:"
885
+ msgstr "Important Upgrade Notice:"
886
+
887
+ #: includes/class-fs-plugin-updater.php:1326
888
+ msgid "Installing plugin: %s"
889
+ msgstr "インストール中プラグイン: %s"
890
+
891
+ #: includes/class-fs-plugin-updater.php:1367
892
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
893
+ msgstr "ファイルシステムに接続できません。視覚情報を確認してください。"
894
+
895
+ #: includes/class-fs-plugin-updater.php:1549
896
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
897
+ msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。"
898
+
899
+ #: includes/fs-plugin-info-dialog.php:541
900
+ msgid "Purchase More"
901
+ msgstr "Purchase More"
902
+
903
+ #: includes/fs-plugin-info-dialog.php542,
904
+ #: templates/account/partials/addon.php:385
905
+ msgctxt "verb"
906
+ msgid "Purchase"
907
+ msgstr "購入"
908
+
909
+ #: includes/fs-plugin-info-dialog.php:546
910
+ msgid "Start my free %s"
911
+ msgstr "無料の %s を開始"
912
+
913
+ #: includes/fs-plugin-info-dialog.php:744
914
+ msgid "Install Free Version Update Now"
915
+ msgstr "フリーバージョンの更新を今すぐインストール"
916
+
917
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
918
+ msgid "Install Update Now"
919
+ msgstr "今すぐ更新をインストール"
920
+
921
+ #: includes/fs-plugin-info-dialog.php:754
922
+ msgid "Install Free Version Now"
923
+ msgstr "フリーバージョンを今すぐインストール"
924
+
925
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
926
+ #: templates/auto-installation.php111,
927
+ #: templates/account/partials/addon.php365,
928
+ #: templates/account/partials/addon.php:418
929
+ msgid "Install Now"
930
+ msgstr "今すぐインストール"
931
+
932
+ #: includes/fs-plugin-info-dialog.php:771
933
+ msgctxt "as download latest version"
934
+ msgid "Download Latest Free Version"
935
+ msgstr "最新のフリーバージョンをダウンロード"
936
+
937
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
938
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
939
+ msgctxt "as download latest version"
940
+ msgid "Download Latest"
941
+ msgstr "最新版をダウンロード"
942
+
943
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
944
+ #: templates/account/partials/addon.php356,
945
+ #: templates/account/partials/addon.php:412
946
+ msgid "Activate this add-on"
947
+ msgstr "このアドオンを有効化"
948
+
949
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
950
+ msgid "Activate Free Version"
951
+ msgstr "フリーバージョンを有効化"
952
+
953
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
954
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
955
+ msgid "Activate"
956
+ msgstr "有効化"
957
+
958
+ #: includes/fs-plugin-info-dialog.php:1002
959
+ msgctxt "Plugin installer section title"
960
+ msgid "Description"
961
+ msgstr "説明"
962
+
963
+ #: includes/fs-plugin-info-dialog.php:1003
964
+ msgctxt "Plugin installer section title"
965
+ msgid "Installation"
966
+ msgstr "インストール"
967
+
968
+ #: includes/fs-plugin-info-dialog.php:1004
969
+ msgctxt "Plugin installer section title"
970
+ msgid "FAQ"
971
+ msgstr "FAQ"
972
+
973
+ #: includes/fs-plugin-info-dialog.php1005,
974
+ #: templates/plugin-info/description.php:55
975
+ msgid "Screenshots"
976
+ msgstr "スクリーンショット"
977
+
978
+ #: includes/fs-plugin-info-dialog.php:1006
979
+ msgctxt "Plugin installer section title"
980
+ msgid "Changelog"
981
+ msgstr "変更履歴"
982
+
983
+ #: includes/fs-plugin-info-dialog.php:1007
984
+ msgctxt "Plugin installer section title"
985
+ msgid "Reviews"
986
+ msgstr "レビュー"
987
+
988
+ #: includes/fs-plugin-info-dialog.php:1008
989
+ msgctxt "Plugin installer section title"
990
+ msgid "Other Notes"
991
+ msgstr "その他の記述"
992
+
993
+ #: includes/fs-plugin-info-dialog.php:1023
994
+ msgctxt "Plugin installer section title"
995
+ msgid "Features & Pricing"
996
+ msgstr "機能 & 料金"
997
+
998
+ #: includes/fs-plugin-info-dialog.php:1033
999
+ msgid "Plugin Install"
1000
+ msgstr "プラグインのインストール"
1001
+
1002
+ #: includes/fs-plugin-info-dialog.php:1105
1003
+ msgctxt "e.g. Professional Plan"
1004
+ msgid "%s Plan"
1005
+ msgstr "%s プラン"
1006
+
1007
+ #: includes/fs-plugin-info-dialog.php:1131
1008
+ msgctxt "e.g. the best product"
1009
+ msgid "Best"
1010
+ msgstr "ベスト"
1011
+
1012
+ #: includes/fs-plugin-info-dialog.php1137,
1013
+ #: includes/fs-plugin-info-dialog.php:1157
1014
+ msgctxt "as every month"
1015
+ msgid "Monthly"
1016
+ msgstr "月"
1017
+
1018
+ #: includes/fs-plugin-info-dialog.php:1140
1019
+ msgctxt "as once a year"
1020
+ msgid "Annual"
1021
+ msgstr "年次"
1022
+
1023
+ #: includes/fs-plugin-info-dialog.php:1143
1024
+ msgid "Lifetime"
1025
+ msgstr "ライフタイム"
1026
+
1027
+ #: includes/fs-plugin-info-dialog.php1157,
1028
+ #: includes/fs-plugin-info-dialog.php1159,
1029
+ #: includes/fs-plugin-info-dialog.php:1161
1030
+ msgctxt "e.g. billed monthly"
1031
+ msgid "Billed %s"
1032
+ msgstr "%s への請求"
1033
+
1034
+ #: includes/fs-plugin-info-dialog.php:1159
1035
+ msgctxt "as once a year"
1036
+ msgid "Annually"
1037
+ msgstr "毎年"
1038
+
1039
+ #: includes/fs-plugin-info-dialog.php:1161
1040
+ msgctxt "as once a year"
1041
+ msgid "Once"
1042
+ msgstr "一度"
1043
+
1044
+ #: includes/fs-plugin-info-dialog.php:1167
1045
+ msgid "Single Site License"
1046
+ msgstr "シングルサイトライセンス"
1047
+
1048
+ #: includes/fs-plugin-info-dialog.php:1169
1049
+ msgid "Unlimited Licenses"
1050
+ msgstr "無制限ライセンス"
1051
+
1052
+ #: includes/fs-plugin-info-dialog.php:1171
1053
+ msgid "Up to %s Sites"
1054
+ msgstr "%sサイトまで"
1055
+
1056
+ #: includes/fs-plugin-info-dialog.php1181,
1057
+ #: templates/plugin-info/features.php:82
1058
+ msgctxt "as monthly period"
1059
+ msgid "mo"
1060
+ msgstr "月"
1061
+
1062
+ #: includes/fs-plugin-info-dialog.php1188,
1063
+ #: templates/plugin-info/features.php:80
1064
+ msgctxt "as annual period"
1065
+ msgid "year"
1066
+ msgstr "年"
1067
+
1068
+ #: includes/fs-plugin-info-dialog.php:1242
1069
+ msgctxt "noun"
1070
+ msgid "Price"
1071
+ msgstr "料金"
1072
+
1073
+ #: includes/fs-plugin-info-dialog.php:1290
1074
+ msgid "Save %s"
1075
+ msgstr "%s を保存"
1076
+
1077
+ #: includes/fs-plugin-info-dialog.php:1300
1078
+ msgid "No commitment for %s - cancel anytime"
1079
+ msgstr "%s の拘束はありません。いつでもキャンセルできます。"
1080
+
1081
+ #: includes/fs-plugin-info-dialog.php:1303
1082
+ msgid "After your free %s, pay as little as %s"
1083
+ msgstr "無料の %s の後は、わずか %s だけお支払ください。"
1084
+
1085
+ #: includes/fs-plugin-info-dialog.php:1314
1086
+ msgid "Details"
1087
+ msgstr "詳細"
1088
+
1089
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1090
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1091
+ #: templates/account/partials/addon.php:36
1092
+ msgctxt "product version"
1093
+ msgid "Version"
1094
+ msgstr "バージョン"
1095
+
1096
+ #: includes/fs-plugin-info-dialog.php:1325
1097
+ msgctxt "as the plugin author"
1098
+ msgid "Author"
1099
+ msgstr "作者"
1100
+
1101
+ #: includes/fs-plugin-info-dialog.php:1332
1102
+ msgid "Last Updated"
1103
+ msgstr "最終更新"
1104
+
1105
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1106
+ msgctxt "x-ago"
1107
+ msgid "%s ago"
1108
+ msgstr "%s 前"
1109
+
1110
+ #: includes/fs-plugin-info-dialog.php:1346
1111
+ msgid "Requires WordPress Version"
1112
+ msgstr "必要な WordPress のバージョン"
1113
+
1114
+ #: includes/fs-plugin-info-dialog.php:1347
1115
+ msgid "%s or higher"
1116
+ msgstr "%sまたはそれ以上"
1117
+
1118
+ #: includes/fs-plugin-info-dialog.php:1354
1119
+ msgid "Compatible up to"
1120
+ msgstr "互換性のある最新バージョン"
1121
+
1122
+ #: includes/fs-plugin-info-dialog.php:1362
1123
+ msgid "Downloaded"
1124
+ msgstr "ダウンロード済み"
1125
+
1126
+ #: includes/fs-plugin-info-dialog.php:1366
1127
+ msgid "%s time"
1128
+ msgstr "%s回"
1129
+
1130
+ #: includes/fs-plugin-info-dialog.php:1368
1131
+ msgid "%s times"
1132
+ msgstr "%s回"
1133
+
1134
+ #: includes/fs-plugin-info-dialog.php:1379
1135
+ msgid "WordPress.org Plugin Page"
1136
+ msgstr "WordPress.org のプラグインページ"
1137
+
1138
+ #: includes/fs-plugin-info-dialog.php:1388
1139
+ msgid "Plugin Homepage"
1140
+ msgstr "プラグインのホームページ"
1141
+
1142
+ #: includes/fs-plugin-info-dialog.php1397,
1143
+ #: includes/fs-plugin-info-dialog.php:1481
1144
+ msgid "Donate to this plugin"
1145
+ msgstr "このプラグインに寄付する"
1146
+
1147
+ #: includes/fs-plugin-info-dialog.php:1404
1148
+ msgid "Average Rating"
1149
+ msgstr "レーティングの平均"
1150
+
1151
+ #: includes/fs-plugin-info-dialog.php:1411
1152
+ msgid "based on %s"
1153
+ msgstr "%sを基に"
1154
+
1155
+ #: includes/fs-plugin-info-dialog.php:1415
1156
+ msgid "%s rating"
1157
+ msgstr "%s評価"
1158
+
1159
+ #: includes/fs-plugin-info-dialog.php:1417
1160
+ msgid "%s ratings"
1161
+ msgstr "%s評価"
1162
+
1163
+ #: includes/fs-plugin-info-dialog.php:1432
1164
+ msgid "%s star"
1165
+ msgstr "%sスター"
1166
+
1167
+ #: includes/fs-plugin-info-dialog.php:1434
1168
+ msgid "%s stars"
1169
+ msgstr "%sスター"
1170
+
1171
+ #: includes/fs-plugin-info-dialog.php:1446
1172
+ msgid "Click to see reviews that provided a rating of %s"
1173
+ msgstr "クリックして%sの評価をしているレビューを観る"
1174
+
1175
+ #: includes/fs-plugin-info-dialog.php:1459
1176
+ msgid "Contributors"
1177
+ msgstr "コントリビューター"
1178
+
1179
+ #: includes/fs-plugin-info-dialog.php1489,
1180
+ #: includes/fs-plugin-info-dialog.php:1491
1181
+ msgid "Warning"
1182
+ msgstr "警告"
1183
+
1184
+ #: includes/fs-plugin-info-dialog.php:1489
1185
+ msgid "This plugin has not been tested with your current version of WordPress."
1186
+ msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。"
1187
+
1188
+ #: includes/fs-plugin-info-dialog.php:1491
1189
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1190
+ msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。"
1191
+
1192
+ #: includes/fs-plugin-info-dialog.php:1510
1193
+ msgid "Paid add-on must be deployed to Freemius."
1194
+ msgstr "有料アドオンは Freemius にデプロイされている必要があります。"
1195
+
1196
+ #: includes/fs-plugin-info-dialog.php:1511
1197
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1198
+ msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。"
1199
+
1200
+ #: includes/fs-plugin-info-dialog.php:1532
1201
+ msgid "Newer Version (%s) Installed"
1202
+ msgstr "新しいバージョン (%s) がインストールされました"
1203
+
1204
+ #: includes/fs-plugin-info-dialog.php:1533
1205
+ msgid "Newer Free Version (%s) Installed"
1206
+ msgstr "新しいフリーバージョン (%s) がインストールされました"
1207
+
1208
+ #: includes/fs-plugin-info-dialog.php:1540
1209
+ msgid "Latest Version Installed"
1210
+ msgstr "最新版がイストールされました"
1211
+
1212
+ #: includes/fs-plugin-info-dialog.php:1541
1213
+ msgid "Latest Free Version Installed"
1214
+ msgstr "最新のフリーバージョンがインストールされました"
1215
+
1216
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1217
+ #: templates/account/partials/addon.php26,
1218
+ #: templates/account/partials/site.php:311
1219
+ msgid "Downgrading your plan"
1220
+ msgstr "Downgrading your plan"
1221
+
1222
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1223
+ #: templates/account/partials/addon.php27,
1224
+ #: templates/account/partials/site.php:312
1225
+ msgid "Cancelling the subscription"
1226
+ msgstr "Cancelling the subscription"
1227
+
1228
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1229
+ #. subscription'
1230
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1231
+ #: templates/account/partials/site.php:314
1232
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1234
+
1235
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1236
+ #: templates/account/partials/addon.php30,
1237
+ #: templates/account/partials/site.php:315
1238
+ 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."
1239
+ 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."
1240
+
1241
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1242
+ #: templates/account/partials/addon.php:31
1243
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1244
+ msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?"
1245
+
1246
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1247
+ #: templates/account/partials/addon.php32,
1248
+ #: templates/account/partials/site.php:316
1249
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1250
+ msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1251
+
1252
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1253
+ #: templates/account/partials/addon.php33,
1254
+ #: templates/account/partials/site.php:317
1255
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1256
+ msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。"
1257
+
1258
+ #. translators: %s: Plan title (e.g. "Professional")
1259
+ #: templates/account.php111,
1260
+ #: templates/account/partials/activate-license-button.php31,
1261
+ #: templates/account/partials/addon.php:35
1262
+ msgid "Activate %s Plan"
1263
+ msgstr "%s プランを有効化"
1264
+
1265
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1266
+ #: templates/account.php114, templates/account/partials/addon.php38,
1267
+ #: templates/account/partials/site.php:291
1268
+ msgid "Auto renews in %s"
1269
+ msgstr "%s に自動更新"
1270
+
1271
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1272
+ #: templates/account.php116, templates/account/partials/addon.php40,
1273
+ #: templates/account/partials/site.php:293
1274
+ msgid "Expires in %s"
1275
+ msgstr "%s で期間終了"
1276
+
1277
+ #: templates/account.php:117
1278
+ msgctxt "as synchronize license"
1279
+ msgid "Sync License"
1280
+ msgstr "ライセンスを同期"
1281
+
1282
+ #: templates/account.php118, templates/account/partials/addon.php:41
1283
+ msgid "Cancel Trial"
1284
+ msgstr "トライアルをキャンセル"
1285
+
1286
+ #: templates/account.php119, templates/account/partials/addon.php:42
1287
+ msgid "Change Plan"
1288
+ msgstr "プラン変更"
1289
+
1290
+ #: templates/account.php120, templates/account/partials/addon.php:43
1291
+ msgctxt "verb"
1292
+ msgid "Upgrade"
1293
+ msgstr "アップグレード"
1294
+
1295
+ #: templates/account.php122, templates/account/partials/addon.php45,
1296
+ #: templates/account/partials/site.php:318
1297
+ msgctxt "verb"
1298
+ msgid "Downgrade"
1299
+ msgstr "ダウングレード"
1300
+
1301
+ #: templates/account.php124, templates/add-ons.php246,
1302
+ #: templates/plugin-info/features.php72,
1303
+ #: templates/account/partials/addon.php47,
1304
+ #: templates/account/partials/site.php:33
1305
+ msgid "Free"
1306
+ msgstr "無料"
1307
+
1308
+ #: templates/account.php126, templates/debug.php371,
1309
+ #: includes/customizer/class-fs-customizer-upsell-control.php110,
1310
+ #: templates/account/partials/addon.php:49
1311
+ msgctxt "as product pricing plan"
1312
+ msgid "Plan"
1313
+ msgstr "プラン"
1314
+
1315
+ #: templates/account.php:127
1316
+ msgid "Bundle Plan"
1317
+ msgstr "Bundle Plan"
1318
+
1319
+ #: templates/account.php:250
1320
+ msgid "Free Trial"
1321
+ msgstr "フリートライアル"
1322
+
1323
+ #: templates/account.php:261
1324
+ msgid "Account Details"
1325
+ msgstr "アカウント詳細"
1326
+
1327
+ #: templates/account.php268, templates/forms/data-debug-mode.php:33
1328
+ msgid "Start Debug"
1329
+ msgstr "Start Debug"
1330
+
1331
+ #: templates/account.php:270
1332
+ msgid "Stop Debug"
1333
+ msgstr "Stop Debug"
1334
+
1335
+ #: templates/account.php:277
1336
+ msgid "Billing & Invoices"
1337
+ msgstr "Billing & Invoices"
1338
+
1339
+ #: templates/account.php:288
1340
+ 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?"
1341
+ msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?"
1342
+
1343
+ #: templates/account.php:290
1344
+ 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?"
1345
+ msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。"
1346
+
1347
+ #: templates/account.php:293
1348
+ msgid "Delete Account"
1349
+ msgstr "アカウントを削除"
1350
+
1351
+ #: templates/account.php305, templates/account/partials/addon.php231,
1352
+ #: templates/account/partials/deactivate-license-button.php:35
1353
+ msgid "Deactivate License"
1354
+ msgstr "ライセンスを無効化"
1355
+
1356
+ #: templates/account.php328, templates/forms/subscription-cancellation.php:125
1357
+ msgid "Are you sure you want to proceed?"
1358
+ msgstr "本当に続行していいですか?"
1359
+
1360
+ #: templates/account.php328, templates/account/partials/addon.php:255
1361
+ msgid "Cancel Subscription"
1362
+ msgstr "サブスクリプションをキャンセルする"
1363
+
1364
+ #: templates/account.php357, templates/account/partials/addon.php:340
1365
+ msgctxt "as synchronize"
1366
+ msgid "Sync"
1367
+ msgstr "同期"
1368
+
1369
+ #: templates/account.php372, templates/debug.php:505
1370
+ msgid "Name"
1371
+ msgstr "名前"
1372
+
1373
+ #: templates/account.php378, templates/debug.php:506
1374
+ msgid "Email"
1375
+ msgstr "Email"
1376
+
1377
+ #: templates/account.php385, templates/debug.php369, templates/debug.php:555
1378
+ msgid "User ID"
1379
+ msgstr "ユーザー ID"
1380
+
1381
+ #: templates/account.php403, templates/account.php721,
1382
+ #: templates/account.php754, templates/debug.php236, templates/debug.php363,
1383
+ #: templates/debug.php452, templates/debug.php504, templates/debug.php553,
1384
+ #: templates/debug.php632, templates/account/payments.php35,
1385
+ #: templates/debug/logger.php:21
1386
+ msgid "ID"
1387
+ msgstr "ID"
1388
+
1389
+ #: templates/account.php:410
1390
+ msgid "Site ID"
1391
+ msgstr "サイト ID"
1392
+
1393
+ #: templates/account.php:413
1394
+ msgid "No ID"
1395
+ msgstr "ID がありません"
1396
+
1397
+ #: templates/account.php418, templates/debug.php243, templates/debug.php372,
1398
+ #: templates/debug.php456, templates/debug.php508,
1399
+ #: templates/account/partials/site.php:227
1400
+ msgid "Public Key"
1401
+ msgstr "公開鍵"
1402
+
1403
+ #: templates/account.php424, templates/debug.php373, templates/debug.php457,
1404
+ #: templates/debug.php509, templates/account/partials/site.php:239
1405
+ msgid "Secret Key"
1406
+ msgstr "秘密鍵"
1407
+
1408
+ #: templates/account.php:427
1409
+ msgctxt "as secret encryption key missing"
1410
+ msgid "No Secret"
1411
+ msgstr "秘密鍵がありません"
1412
+
1413
+ #: templates/account.php454, templates/account/partials/site.php120,
1414
+ #: templates/account/partials/site.php:122
1415
+ msgid "Trial"
1416
+ msgstr "トライアル"
1417
+
1418
+ #: templates/account.php481, templates/debug.php561,
1419
+ #: templates/account/partials/site.php:260
1420
+ msgid "License Key"
1421
+ msgstr "ライセンスキー"
1422
+
1423
+ #: templates/account.php:512
1424
+ msgid "Join the Beta program"
1425
+ msgstr "Join the Beta program"
1426
+
1427
+ #: templates/account.php:518
1428
+ msgid "not verified"
1429
+ msgstr "未認証"
1430
+
1431
+ #: templates/account.php527, templates/account/partials/addon.php:190
1432
+ msgid "Expired"
1433
+ msgstr "期限切れ"
1434
+
1435
+ #: templates/account.php:587
1436
+ msgid "Premium version"
1437
+ msgstr "プレミアムバージョン"
1438
+
1439
+ #: templates/account.php:589
1440
+ msgid "Free version"
1441
+ msgstr "フリーバージョン"
1442
+
1443
+ #: templates/account.php:601
1444
+ msgid "Verify Email"
1445
+ msgstr "認証メール"
1446
+
1447
+ #: templates/account.php:615
1448
+ msgid "Download %s Version"
1449
+ msgstr "%s バージョンをダウンロード"
1450
+
1451
+ #: templates/account.php:631
1452
+ msgid "Download Paid Version"
1453
+ msgstr "Download Paid Version"
1454
+
1455
+ #: templates/account.php649, templates/account.php892,
1456
+ #: templates/account/partials/site.php248,
1457
+ #: templates/account/partials/site.php:270
1458
+ msgctxt "verb"
1459
+ msgid "Show"
1460
+ msgstr "表示"
1461
+
1462
+ #: templates/account.php:664
1463
+ msgid "What is your %s?"
1464
+ msgstr "自分の %s はなんですか?"
1465
+
1466
+ #: templates/account.php672, templates/account/billing.php:21
1467
+ msgctxt "verb"
1468
+ msgid "Edit"
1469
+ msgstr "編集"
1470
+
1471
+ #: templates/account.php676, templates/forms/user-change.php:27
1472
+ msgid "Change User"
1473
+ msgstr "Change User"
1474
+
1475
+ #: templates/account.php:700
1476
+ msgid "Sites"
1477
+ msgstr "サイト数"
1478
+
1479
+ #: templates/account.php:713
1480
+ msgid "Search by address"
1481
+ msgstr "住所で検索する"
1482
+
1483
+ #: templates/account.php722, templates/debug.php:366
1484
+ msgid "Address"
1485
+ msgstr "住所"
1486
+
1487
+ #: templates/account.php:723
1488
+ msgid "License"
1489
+ msgstr "ライセンス"
1490
+
1491
+ #: templates/account.php:724
1492
+ msgid "Plan"
1493
+ msgstr "プラン"
1494
+
1495
+ #: templates/account.php:757
1496
+ msgctxt "as software license"
1497
+ msgid "License"
1498
+ msgstr "ライセンス"
1499
+
1500
+ #: templates/account.php:886
1501
+ msgctxt "verb"
1502
+ msgid "Hide"
1503
+ msgstr "非表示"
1504
+
1505
+ #: templates/account.php908, templates/forms/data-debug-mode.php:31
1506
+ msgid "Processing"
1507
+ msgstr "Processing"
1508
+
1509
+ #: templates/account.php:911
1510
+ msgid "Get updates for bleeding edge Beta versions of %s."
1511
+ msgstr "Get updates for bleeding edge Beta versions of %s."
1512
+
1513
+ #: templates/account.php:969
1514
+ msgid "Cancelling %s"
1515
+ msgstr "Cancelling %s"
1516
+
1517
+ #: templates/account.php969, templates/account.php986,
1518
+ #: templates/forms/subscription-cancellation.php27,
1519
+ #: templates/forms/deactivation/form.php:133
1520
+ msgid "trial"
1521
+ msgstr "trial"
1522
+
1523
+ #: templates/account.php984, templates/forms/deactivation/form.php:150
1524
+ msgid "Cancelling %s..."
1525
+ msgstr "Cancelling %s..."
1526
+
1527
+ #: templates/account.php987, templates/forms/subscription-cancellation.php28,
1528
+ #: templates/forms/deactivation/form.php:134
1529
+ msgid "subscription"
1530
+ msgstr "subscription"
1531
+
1532
+ #: templates/account.php:1001
1533
+ 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?"
1534
+ msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?"
1535
+
1536
+ #: templates/account.php:1075
1537
+ msgid "Disabling white-label mode"
1538
+ msgstr "Disabling white-label mode"
1539
+
1540
+ #: templates/account.php:1076
1541
+ msgid "Enabling white-label mode"
1542
+ msgstr "Enabling white-label mode"
1543
+
1544
+ #: templates/add-ons.php:38
1545
+ msgid "View details"
1546
+ msgstr "詳細を表示"
1547
+
1548
+ #: templates/add-ons.php:48
1549
+ msgid "Add Ons for %s"
1550
+ msgstr "%s のアドオン"
1551
+
1552
+ #: templates/add-ons.php:58
1553
+ msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1554
+ msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
1555
+
1556
+ #: templates/add-ons.php:229
1557
+ msgctxt "active add-on"
1558
+ msgid "Active"
1559
+ msgstr "有効"
1560
+
1561
+ #: templates/add-ons.php:230
1562
+ msgctxt "installed add-on"
1563
+ msgid "Installed"
1564
+ msgstr "Installed"
1565
+
1566
+ #: templates/admin-notice.php13, templates/forms/license-activation.php222,
1567
+ #: templates/forms/resend-key.php:77
1568
+ msgctxt "as close a window"
1569
+ msgid "Dismiss"
1570
+ msgstr "却下"
1571
+
1572
+ #: templates/auto-installation.php:45
1573
+ msgid "%s sec"
1574
+ msgstr "%s秒"
1575
+
1576
+ #: templates/auto-installation.php:83
1577
+ msgid "Automatic Installation"
1578
+ msgstr "自動インストール"
1579
+
1580
+ #: templates/auto-installation.php:93
1581
+ 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."
1582
+ msgstr "%sから %s (有料版) の自動ダウンロードと自動インストールが%sで開始します。手動で行う場合は今すぐにキャンセルボタンをクリックしてください。"
1583
+
1584
+ #: templates/auto-installation.php:104
1585
+ 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."
1586
+ msgstr "インストールプロセスが開始され、数分で完了します。完了までしばらくお待ちください。ページのリフレッシュなどは行わないでください。"
1587
+
1588
+ #: templates/auto-installation.php:109
1589
+ msgid "Cancel Installation"
1590
+ msgstr "インストールをキャンセルする"
1591
+
1592
+ #: templates/checkout.php:180
1593
+ msgid "Checkout"
1594
+ msgstr "チェックアウト"
1595
+
1596
+ #: templates/checkout.php:180
1597
+ msgid "PCI compliant"
1598
+ msgstr "PCI コンプライアント"
1599
+
1600
+ #. translators: %s: name (e.g. Hey John,)
1601
+ #: templates/connect.php:112
1602
+ msgctxt "greeting"
1603
+ msgid "Hey %s,"
1604
+ msgstr "おおい %s さん、"
1605
+
1606
+ #: templates/connect.php:162
1607
+ msgid "Allow & Continue"
1608
+ msgstr "許可して続ける"
1609
+
1610
+ #: templates/connect.php:166
1611
+ msgid "Re-send activation email"
1612
+ msgstr "有効化メールを再送信"
1613
+
1614
+ #: templates/connect.php:170
1615
+ msgid "Thanks %s!"
1616
+ msgstr "ありがとう $s さん!"
1617
+
1618
+ #: templates/connect.php180, templates/forms/license-activation.php:46
1619
+ msgid "Agree & Activate License"
1620
+ msgstr "同意してライセンスを有効化"
1621
+
1622
+ #: templates/connect.php:184
1623
+ msgid "Welcome to %s! To get started, please enter your license key:"
1624
+ msgstr "Welcome to %s! To get started, please enter your license key:"
1625
+
1626
+ #: templates/connect.php:191
1627
+ 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."
1628
+ msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1629
+
1630
+ #: templates/connect.php:192
1631
+ msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
1632
+ msgstr "重要な更新を逃さないように、セキュリティと更新通知、%4$s とセンシティブではない診断トラッキングをオプトインしてください。"
1633
+
1634
+ #: templates/connect.php:198
1635
+ 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."
1636
+ msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1637
+
1638
+ #: templates/connect.php:199
1639
+ 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."
1640
+ msgstr "重要な更新を逃さないように、セキュリティと更新通知、学習用コンテンツ、オファー、そして%4$s とセンシティブではない診断トラッキングをオプトインしてください。これをスキップしても%1$sはもちろん動作します。"
1641
+
1642
+ #: templates/connect.php:233
1643
+ msgid "We're excited to introduce the Freemius network-level integration."
1644
+ msgstr "Freeminus ネットワークレベルのインテグレーションをご紹介できることに興奮しています。"
1645
+
1646
+ #: templates/connect.php:236
1647
+ msgid "During the update process we detected %d site(s) that are still pending license activation."
1648
+ msgstr "アップデートの処理中に%dサイトがライセンスの有効化が保留中であることを検知しました。"
1649
+
1650
+ #: templates/connect.php:238
1651
+ msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
1652
+ msgstr "これらのサイトで%sを使う場合は、ライセンスキーを入力し、アクティベーションボタンをクリックしてください。"
1653
+
1654
+ #: templates/connect.php:240
1655
+ msgid "%s's paid features"
1656
+ msgstr "%sの有料機能"
1657
+
1658
+ #: templates/connect.php:245
1659
+ msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
1660
+ msgstr "または、今すぐスキップして、%sのネットワークレベルのアカウントページでライセンスを有効にすることもできます。"
1661
+
1662
+ #: templates/connect.php:247
1663
+ msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
1664
+ msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。"
1665
+
1666
+ #: templates/connect.php256, templates/forms/data-debug-mode.php35,
1667
+ #: templates/forms/license-activation.php:49
1668
+ msgid "License key"
1669
+ msgstr "ライセンスキー"
1670
+
1671
+ #: templates/connect.php259, templates/forms/license-activation.php:22
1672
+ msgid "Can't find your license key?"
1673
+ msgstr "ライセンスキーは見つかりませんか?"
1674
+
1675
+ #: templates/connect.php318, templates/connect.php700,
1676
+ #: templates/forms/deactivation/retry-skip.php:20
1677
+ msgctxt "verb"
1678
+ msgid "Skip"
1679
+ msgstr "スキップ"
1680
+
1681
+ #: templates/connect.php:321
1682
+ msgid "Delegate to Site Admins"
1683
+ msgstr "サイト管理者に委任する"
1684
+
1685
+ #: templates/connect.php:321
1686
+ msgid "If you click it, this decision will be delegated to the sites administrators."
1687
+ msgstr "決定をサイトの管理者に委任するにはクリックしてください。"
1688
+
1689
+ #: templates/connect.php:346
1690
+ msgid "License issues?"
1691
+ msgstr "License issues?"
1692
+
1693
+ #: templates/connect.php:362
1694
+ msgid "Your Profile Overview"
1695
+ msgstr "プロフィール概要"
1696
+
1697
+ #: templates/connect.php:363
1698
+ msgid "Name and email address"
1699
+ msgstr "名前とメールアドレス"
1700
+
1701
+ #: templates/connect.php:370
1702
+ msgid "So you can manage and control your license remotely from the User Dashboard."
1703
+ msgstr "So you can manage and control your license remotely from the User Dashboard."
1704
+
1705
+ #: templates/connect.php:371
1706
+ msgid "Your Site Overview"
1707
+ msgstr "サイト概要"
1708
+
1709
+ #: templates/connect.php:372
1710
+ msgid "Site URL, WP version, PHP info"
1711
+ msgstr "Site URL, WP version, PHP info"
1712
+
1713
+ #: templates/connect.php:379
1714
+ msgid "Admin Notices"
1715
+ msgstr "管理者通知"
1716
+
1717
+ #: templates/connect.php380, templates/connect.php:398
1718
+ msgid "Updates, announcements, marketing, no spam"
1719
+ msgstr "更新、発表、マーケティング、スパムなし"
1720
+
1721
+ #: templates/connect.php:387
1722
+ msgid "So you can reuse the license when the %s is no longer active."
1723
+ msgstr "So you can reuse the license when the %s is no longer active."
1724
+
1725
+ #: templates/connect.php:388
1726
+ msgid "Current %s Status"
1727
+ msgstr "Current %s Status"
1728
+
1729
+ #: templates/connect.php:389
1730
+ msgid "Active, deactivated, or uninstalled"
1731
+ msgstr "Active, deactivated, or uninstalled"
1732
+
1733
+ #: templates/connect.php:397
1734
+ msgid "Newsletter"
1735
+ msgstr "ニュースレター"
1736
+
1737
+ #: templates/connect.php:405
1738
+ msgid "Plugins & Themes"
1739
+ msgstr "Plugins & Themes"
1740
+
1741
+ #: templates/connect.php:405
1742
+ msgid "optional"
1743
+ msgstr "optional"
1744
+
1745
+ #: templates/connect.php:406
1746
+ msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1747
+ msgstr "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
1748
+
1749
+ #: templates/connect.php:407
1750
+ msgid "Title, slug, version, and is active"
1751
+ msgstr "Title, slug, version, and is active"
1752
+
1753
+ #: templates/connect.php:424
1754
+ msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1755
+ msgstr "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
1756
+
1757
+ #: templates/connect.php:426
1758
+ msgid "diagnostic data"
1759
+ msgstr "diagnostic data"
1760
+
1761
+ #: templates/connect.php:427
1762
+ msgid "Freemius is our licensing and software updates engine"
1763
+ msgstr "Freemius is our licensing and software updates engine"
1764
+
1765
+ #: templates/connect.php:430
1766
+ msgid "What permissions are being granted?"
1767
+ msgstr "付与されているパーミッションは何ですか?"
1768
+
1769
+ #: templates/connect.php:457
1770
+ msgid "Don't have a license key?"
1771
+ msgstr "ライセンスキーをお持ちではありませんか?"
1772
+
1773
+ #: templates/connect.php:460
1774
+ msgid "Have a license key?"
1775
+ msgstr "ライセンスキーはお持ちですか?"
1776
+
1777
+ #: templates/connect.php:468
1778
+ msgid "Privacy Policy"
1779
+ msgstr "プライバシーポリシー"
1780
+
1781
+ #: templates/connect.php:470
1782
+ msgid "License Agreement"
1783
+ msgstr "License Agreement"
1784
+
1785
+ #: templates/connect.php:470
1786
+ msgid "Terms of Service"
1787
+ msgstr "利用規約"
1788
+
1789
+ #: templates/connect.php:866
1790
+ msgctxt "as in the process of sending an email"
1791
+ msgid "Sending email"
1792
+ msgstr "メール送信中"
1793
+
1794
+ #: templates/connect.php:867
1795
+ msgctxt "as activating plugin"
1796
+ msgid "Activating"
1797
+ msgstr "有効化中"
1798
+
1799
+ #: templates/contact.php:78
1800
+ msgid "Contact"
1801
+ msgstr "連絡"
1802
+
1803
+ #: templates/debug.php:17
1804
+ msgctxt "as turned off"
1805
+ msgid "Off"
1806
+ msgstr "オフ"
1807
+
1808
+ #: templates/debug.php:18
1809
+ msgctxt "as turned on"
1810
+ msgid "On"
1811
+ msgstr "オン"
1812
+
1813
+ #: templates/debug.php:20
1814
+ msgid "SDK"
1815
+ msgstr "SDK"
1816
+
1817
+ #: templates/debug.php:24
1818
+ msgctxt "as code debugging"
1819
+ msgid "Debugging"
1820
+ msgstr "デバッグ"
1821
+
1822
+ #: templates/debug.php52, templates/debug.php248, templates/debug.php374,
1823
+ #: templates/debug.php:510
1824
+ msgid "Actions"
1825
+ msgstr "アクション"
1826
+
1827
+ #: templates/debug.php:62
1828
+ msgid "Are you sure you want to delete all Freemius data?"
1829
+ msgstr "ほんとうに全ての Freemius データを削除しますか?"
1830
+
1831
+ #: templates/debug.php:62
1832
+ msgid "Delete All Accounts"
1833
+ msgstr "全てのアカウントを削除"
1834
+
1835
+ #: templates/debug.php:69
1836
+ msgid "Clear API Cache"
1837
+ msgstr "API キャッシュをクリア"
1838
+
1839
+ #: templates/debug.php:77
1840
+ msgid "Clear Updates Transients"
1841
+ msgstr "アップデートのトランジエントをクリアーにする"
1842
+
1843
+ #: templates/debug.php:84
1844
+ msgid "Sync Data From Server"
1845
+ msgstr "サーバーからのデータを同期"
1846
+
1847
+ #: templates/debug.php:93
1848
+ msgid "Migrate Options to Network"
1849
+ msgstr "Migrate Options to Network"
1850
+
1851
+ #: templates/debug.php:98
1852
+ msgid "Load DB Option"
1853
+ msgstr "DB オプションを読み込む"
1854
+
1855
+ #: templates/debug.php:101
1856
+ msgid "Set DB Option"
1857
+ msgstr "DB オプションを設定する"
1858
+
1859
+ #: templates/debug.php:180
1860
+ msgid "Key"
1861
+ msgstr "キー"
1862
+
1863
+ #: templates/debug.php:181
1864
+ msgid "Value"
1865
+ msgstr "値"
1866
+
1867
+ #: templates/debug.php:197
1868
+ msgctxt "as software development kit versions"
1869
+ msgid "SDK Versions"
1870
+ msgstr "SDK バージョン"
1871
+
1872
+ #: templates/debug.php:202
1873
+ msgid "SDK Path"
1874
+ msgstr "SDK のパス"
1875
+
1876
+ #: templates/debug.php203, templates/debug.php:242
1877
+ msgid "Module Path"
1878
+ msgstr "モジュールのパス"
1879
+
1880
+ #: templates/debug.php:204
1881
+ msgid "Is Active"
1882
+ msgstr "有効"
1883
+
1884
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:35
1885
+ msgid "Plugins"
1886
+ msgstr "プラグイン"
1887
+
1888
+ #: templates/debug.php232, templates/debug/plugins-themes-sync.php:56
1889
+ msgid "Themes"
1890
+ msgstr "テーマ"
1891
+
1892
+ #: templates/debug.php237, templates/debug.php368, templates/debug.php454,
1893
+ #: templates/debug/scheduled-crons.php:80
1894
+ msgid "Slug"
1895
+ msgstr "スラッグ"
1896
+
1897
+ #: templates/debug.php239, templates/debug.php:453
1898
+ msgid "Title"
1899
+ msgstr "タイトル"
1900
+
1901
+ #: templates/debug.php:240
1902
+ msgctxt "as application program interface"
1903
+ msgid "API"
1904
+ msgstr "API"
1905
+
1906
+ #: templates/debug.php:241
1907
+ msgid "Freemius State"
1908
+ msgstr "Freemius ステータス"
1909
+
1910
+ #: templates/debug.php:245
1911
+ msgid "Network Blog"
1912
+ msgstr "ネットワークブログ"
1913
+
1914
+ #: templates/debug.php:246
1915
+ msgid "Network User"
1916
+ msgstr "ネットワークユーザ"
1917
+
1918
+ #: templates/debug.php:283
1919
+ msgctxt "as connection was successful"
1920
+ msgid "Connected"
1921
+ msgstr "接続"
1922
+
1923
+ #: templates/debug.php:284
1924
+ msgctxt "as connection blocked"
1925
+ msgid "Blocked"
1926
+ msgstr "ブロック"
1927
+
1928
+ #: templates/debug.php:320
1929
+ msgid "Simulate Trial Promotion"
1930
+ msgstr "Simulate Trial Promotion"
1931
+
1932
+ #: templates/debug.php:332
1933
+ msgid "Simulate Network Upgrade"
1934
+ msgstr "ネットワークアップグレードをシミュレートする"
1935
+
1936
+ #: templates/debug.php:357
1937
+ msgid "%s Installs"
1938
+ msgstr "%sインストール"
1939
+
1940
+ #: templates/debug.php:359
1941
+ msgctxt "like websites"
1942
+ msgid "Sites"
1943
+ msgstr "サイト数"
1944
+
1945
+ #: templates/debug.php365, templates/account/partials/site.php:156
1946
+ msgid "Blog ID"
1947
+ msgstr "ブログ ID"
1948
+
1949
+ #: templates/debug.php:370
1950
+ msgid "License ID"
1951
+ msgstr "License ID"
1952
+
1953
+ #: templates/debug.php434, templates/debug.php533,
1954
+ #: templates/account/partials/addon.php:435
1955
+ msgctxt "verb"
1956
+ msgid "Delete"
1957
+ msgstr "削除"
1958
+
1959
+ #: templates/debug.php:448
1960
+ msgid "Add Ons of module %s"
1961
+ msgstr "モジュールのアドオン%s"
1962
+
1963
+ #: templates/debug.php:500
1964
+ msgid "Users"
1965
+ msgstr "ユーザー"
1966
+
1967
+ #: templates/debug.php:507
1968
+ msgid "Verified"
1969
+ msgstr "認証済み"
1970
+
1971
+ #: templates/debug.php:549
1972
+ msgid "%s Licenses"
1973
+ msgstr "%sラインセス"
1974
+
1975
+ #: templates/debug.php:554
1976
+ msgid "Plugin ID"
1977
+ msgstr "プラグイン ID"
1978
+
1979
+ #: templates/debug.php:556
1980
+ msgid "Plan ID"
1981
+ msgstr "プラン ID"
1982
+
1983
+ #: templates/debug.php:557
1984
+ msgid "Quota"
1985
+ msgstr "クォータ"
1986
+
1987
+ #: templates/debug.php:558
1988
+ msgid "Activated"
1989
+ msgstr "有効化済み"
1990
+
1991
+ #: templates/debug.php:559
1992
+ msgid "Blocking"
1993
+ msgstr "ブロッキング"
1994
+
1995
+ #: templates/debug.php560, templates/debug.php631,
1996
+ #: templates/debug/logger.php:22
1997
+ msgid "Type"
1998
+ msgstr "タイプ"
1999
+
2000
+ #: templates/debug.php:562
2001
+ msgctxt "as expiration date"
2002
+ msgid "Expiration"
2003
+ msgstr "期限切れ"
2004
+
2005
+ #: templates/debug.php:590
2006
+ msgid "Debug Log"
2007
+ msgstr "デバッグログ"
2008
+
2009
+ #: templates/debug.php:594
2010
+ msgid "All Types"
2011
+ msgstr "すべてのタイプ"
2012
+
2013
+ #: templates/debug.php:601
2014
+ msgid "All Requests"
2015
+ msgstr "すべてのリクエスト"
2016
+
2017
+ #: templates/debug.php606, templates/debug.php635,
2018
+ #: templates/debug/logger.php:25
2019
+ msgid "File"
2020
+ msgstr "ファイル"
2021
+
2022
+ #: templates/debug.php607, templates/debug.php633,
2023
+ #: templates/debug/logger.php:23
2024
+ msgid "Function"
2025
+ msgstr "機能"
2026
+
2027
+ #: templates/debug.php:608
2028
+ msgid "Process ID"
2029
+ msgstr "プロセス ID"
2030
+
2031
+ #: templates/debug.php:609
2032
+ msgid "Logger"
2033
+ msgstr "ロガー"
2034
+
2035
+ #: templates/debug.php610, templates/debug.php634,
2036
+ #: templates/debug/logger.php:24
2037
+ msgid "Message"
2038
+ msgstr "メッセージ"
2039
+
2040
+ #: templates/debug.php:612
2041
+ msgid "Filter"
2042
+ msgstr "フィルター"
2043
+
2044
+ #: templates/debug.php:620
2045
+ msgid "Download"
2046
+ msgstr "ダウンロード"
2047
+
2048
+ #: templates/debug.php636, templates/debug/logger.php:26
2049
+ msgid "Timestamp"
2050
+ msgstr "タイムスタンプ"
2051
+
2052
+ #: templates/secure-https-header.php:28
2053
+ msgid "Secure HTTPS %s page, running from an external domain"
2054
+ msgstr "外部ドメインで実行中のセキュアな HTTPS %sページ"
2055
+
2056
+ #: includes/customizer/class-fs-customizer-support-section.php55,
2057
+ #: templates/plugin-info/features.php:43
2058
+ msgid "Support"
2059
+ msgstr "サポート"
2060
+
2061
+ #: includes/debug/class-fs-debug-bar-panel.php48,
2062
+ #: templates/debug/api-calls.php54, templates/debug/logger.php:62
2063
+ msgctxt "milliseconds"
2064
+ msgid "ms"
2065
+ msgstr "ms"
2066
+
2067
+ #: includes/debug/debug-bar-start.php:41
2068
+ msgid "Freemius API"
2069
+ msgstr "Freemius API"
2070
+
2071
+ #: includes/debug/debug-bar-start.php:42
2072
+ msgid "Requests"
2073
+ msgstr "リクエスト数"
2074
+
2075
+ #: templates/account/billing.php:22
2076
+ msgctxt "verb"
2077
+ msgid "Update"
2078
+ msgstr "更新"
2079
+
2080
+ #: templates/account/billing.php:33
2081
+ msgid "Billing"
2082
+ msgstr "請求書"
2083
+
2084
+ #: templates/account/billing.php38, templates/account/billing.php:38
2085
+ msgid "Business name"
2086
+ msgstr "商号"
2087
+
2088
+ #: templates/account/billing.php39, templates/account/billing.php:39
2089
+ msgid "Tax / VAT ID"
2090
+ msgstr "税金 / VAT ID"
2091
+
2092
+ #: templates/account/billing.php42, templates/account/billing.php42,
2093
+ #: templates/account/billing.php43, templates/account/billing.php:43
2094
+ msgid "Address Line %d"
2095
+ msgstr "住所欄 %d"
2096
+
2097
+ #: templates/account/billing.php46, templates/account/billing.php:46
2098
+ msgid "City"
2099
+ msgstr "市"
2100
+
2101
+ #: templates/account/billing.php46, templates/account/billing.php:46
2102
+ msgid "Town"
2103
+ msgstr "町"
2104
+
2105
+ #: templates/account/billing.php47, templates/account/billing.php:47
2106
+ msgid "ZIP / Postal Code"
2107
+ msgstr "ZIP / 郵便番号"
2108
+
2109
+ #: templates/account/billing.php:302
2110
+ msgid "Country"
2111
+ msgstr "国"
2112
+
2113
+ #: templates/account/billing.php:304
2114
+ msgid "Select Country"
2115
+ msgstr "国を選択"
2116
+
2117
+ #: templates/account/billing.php311, templates/account/billing.php:312
2118
+ msgid "State"
2119
+ msgstr "州"
2120
+
2121
+ #: templates/account/billing.php311, templates/account/billing.php:312
2122
+ msgid "Province"
2123
+ msgstr "県・州・省"
2124
+
2125
+ #: templates/account/payments.php:29
2126
+ msgid "Payments"
2127
+ msgstr "支払い"
2128
+
2129
+ #: templates/account/payments.php:36
2130
+ msgid "Date"
2131
+ msgstr "日付"
2132
+
2133
+ #: templates/account/payments.php:37
2134
+ msgid "Amount"
2135
+ msgstr "総額"
2136
+
2137
+ #: templates/account/payments.php38, templates/account/payments.php:50
2138
+ msgid "Invoice"
2139
+ msgstr "請求書"
2140
+
2141
+ #: templates/debug/api-calls.php:56
2142
+ msgid "API"
2143
+ msgstr "API"
2144
+
2145
+ #: templates/debug/api-calls.php:68
2146
+ msgid "Method"
2147
+ msgstr "メソッド"
2148
+
2149
+ #: templates/debug/api-calls.php:69
2150
+ msgid "Code"
2151
+ msgstr "コード"
2152
+
2153
+ #: templates/debug/api-calls.php:70
2154
+ msgid "Length"
2155
+ msgstr "長さ"
2156
+
2157
+ #: templates/debug/api-calls.php:71
2158
+ msgctxt "as file/folder path"
2159
+ msgid "Path"
2160
+ msgstr "パス"
2161
+
2162
+ #: templates/debug/api-calls.php:73
2163
+ msgid "Body"
2164
+ msgstr "本文"
2165
+
2166
+ #: templates/debug/api-calls.php:75
2167
+ msgid "Result"
2168
+ msgstr "結果"
2169
+
2170
+ #: templates/debug/api-calls.php:76
2171
+ msgid "Start"
2172
+ msgstr "開始"
2173
+
2174
+ #: templates/debug/api-calls.php:77
2175
+ msgid "End"
2176
+ msgstr "終了"
2177
+
2178
+ #: templates/debug/logger.php:15
2179
+ msgid "Log"
2180
+ msgstr "グ"
2181
+
2182
+ #. translators: %s: time period (e.g. In "2 hours")
2183
+ #: templates/debug/plugins-themes-sync.php18,
2184
+ #: templates/debug/scheduled-crons.php:91
2185
+ msgid "In %s"
2186
+ msgstr "%s 内"
2187
+
2188
+ #. translators: %s: time period (e.g. "2 hours" ago)
2189
+ #: templates/debug/plugins-themes-sync.php20,
2190
+ #: templates/debug/scheduled-crons.php:93
2191
+ msgid "%s ago"
2192
+ msgstr "%s 前"
2193
+
2194
+ #: templates/debug/plugins-themes-sync.php21,
2195
+ #: templates/debug/scheduled-crons.php:74
2196
+ msgctxt "seconds"
2197
+ msgid "sec"
2198
+ msgstr "秒"
2199
+
2200
+ #: templates/debug/plugins-themes-sync.php:23
2201
+ msgid "Plugins & Themes Sync"
2202
+ msgstr "プラグインとテーマを同期"
2203
+
2204
+ #: templates/debug/plugins-themes-sync.php:28
2205
+ msgid "Total"
2206
+ msgstr "トータル"
2207
+
2208
+ #: templates/debug/plugins-themes-sync.php29,
2209
+ #: templates/debug/scheduled-crons.php:84
2210
+ msgid "Last"
2211
+ msgstr "最終"
2212
+
2213
+ #: templates/debug/scheduled-crons.php:76
2214
+ msgid "Scheduled Crons"
2215
+ msgstr "スケジュール Cron"
2216
+
2217
+ #: templates/debug/scheduled-crons.php:81
2218
+ msgid "Module"
2219
+ msgstr "モジュール"
2220
+
2221
+ #: templates/debug/scheduled-crons.php:82
2222
+ msgid "Module Type"
2223
+ msgstr "モジュールタイプ"
2224
+
2225
+ #: templates/debug/scheduled-crons.php:83
2226
+ msgid "Cron Type"
2227
+ msgstr "Cron タイプ"
2228
+
2229
+ #: templates/debug/scheduled-crons.php:85
2230
+ msgid "Next"
2231
+ msgstr "次"
2232
+
2233
+ #: templates/forms/affiliation.php:82
2234
+ msgid "Non-expiring"
2235
+ msgstr "期限のない"
2236
+
2237
+ #: templates/forms/affiliation.php:85
2238
+ msgid "Apply to become an affiliate"
2239
+ msgstr "アフィリエイトに応募する"
2240
+
2241
+ #: templates/forms/affiliation.php:107
2242
+ msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
2243
+ msgstr "%sのアフィリエイト申請は受理されました! 次のリンクからアフィリエイトエリアにログインしてください:%s"
2244
+
2245
+ #: templates/forms/affiliation.php:122
2246
+ 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."
2247
+ msgstr "アフィリエイトプログラムに応募いただきありがとうございます。14日以内にお申し込み詳細をレビューし、改めてご連絡いたします。"
2248
+
2249
+ #: templates/forms/affiliation.php:125
2250
+ msgid "Your affiliation account was temporarily suspended."
2251
+ msgstr "アフィリエイトアカウントは一時的に停止されました。"
2252
+
2253
+ #: templates/forms/affiliation.php:128
2254
+ 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."
2255
+ msgstr "アフィリエイトアカウントに応募いただきありがとうございます。残念ながら現時点では申請を受理することができませんでした。30日後に改めてお申込みください。"
2256
+
2257
+ #: templates/forms/affiliation.php:131
2258
+ msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
2259
+ msgstr "アフィリエイト規約違反により、アフィリエイトアカウントを一時的に凍結させていただきました。ご質問等がありましたら、サポートにお問い合わせください。"
2260
+
2261
+ #: templates/forms/affiliation.php:144
2262
+ msgid "Like the %s? Become our ambassador and earn cash ;-)"
2263
+ msgstr "%sは気に入りましたか? アンバサダーになって報酬を得ましょう ;-)"
2264
+
2265
+ #: templates/forms/affiliation.php:145
2266
+ msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
2267
+ msgstr "新規カスタマーに私たちの%sを紹介して、売り上げごとに%sのコミッションを得ましょう"
2268
+
2269
+ #: templates/forms/affiliation.php:148
2270
+ msgid "Program Summary"
2271
+ msgstr "プログラム概要"
2272
+
2273
+ #: templates/forms/affiliation.php:150
2274
+ msgid "%s commission when a customer purchases a new license."
2275
+ msgstr "カスタマーが新規ライセンスを購入するごとに%sのコミッションが発生します。"
2276
+
2277
+ #: templates/forms/affiliation.php:152
2278
+ msgid "Get commission for automated subscription renewals."
2279
+ msgstr "サブスクリプションの自動更新でコミッションを得ましょう。"
2280
+
2281
+ #: templates/forms/affiliation.php:155
2282
+ msgid "%s tracking cookie after the first visit to maximize earnings potential."
2283
+ msgstr "%s初回の訪問後、クッキーをトラッキングして収益の可能性を最大化しましょう。"
2284
+
2285
+ #: templates/forms/affiliation.php:158
2286
+ msgid "Unlimited commissions."
2287
+ msgstr "無制限のコミッション。"
2288
+
2289
+ #: templates/forms/affiliation.php:160
2290
+ msgid "%s minimum payout amount."
2291
+ msgstr "%sお支払いの最低金額"
2292
+
2293
+ #: templates/forms/affiliation.php:161
2294
+ msgid "Payouts are in USD and processed monthly via PayPal."
2295
+ msgstr "お支払いは USD かつ PayPal 経由で毎月行われます。"
2296
+
2297
+ #: templates/forms/affiliation.php:162
2298
+ msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
2299
+ msgstr "30日間の返金期間があるため、コミッションのお支払いは30日以降になります。"
2300
+
2301
+ #: templates/forms/affiliation.php:165
2302
+ msgid "Affiliate"
2303
+ msgstr "アフィリエイト"
2304
+
2305
+ #: templates/forms/affiliation.php168, templates/forms/resend-key.php:23
2306
+ msgid "Email address"
2307
+ msgstr "メールアドレス"
2308
+
2309
+ #: templates/forms/affiliation.php:172
2310
+ msgid "Full name"
2311
+ msgstr "フルネーム"
2312
+
2313
+ #: templates/forms/affiliation.php:176
2314
+ msgid "PayPal account email address"
2315
+ msgstr "PayPal アカウントのメールアドレス"
2316
+
2317
+ #: templates/forms/affiliation.php:180
2318
+ msgid "Where are you going to promote the %s?"
2319
+ msgstr "%sのプロモーションを行うサイトはどこですか?"
2320
+
2321
+ #: templates/forms/affiliation.php:182
2322
+ msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
2323
+ msgstr "%sのプロモーションを行う予定のあなたのサイトや他のサイトのドメイン名を入力してください。"
2324
+
2325
+ #: templates/forms/affiliation.php:184
2326
+ msgid "Add another domain"
2327
+ msgstr "ドメイン名を追加する"
2328
+
2329
+ #: templates/forms/affiliation.php:188
2330
+ msgid "Extra Domains"
2331
+ msgstr "追加のドメイン名"
2332
+
2333
+ #: templates/forms/affiliation.php:189
2334
+ msgid "Extra domains where you will be marketing the product from."
2335
+ msgstr "プロダクトフォームのマーケティングを行う追加ドメイン名。"
2336
+
2337
+ #: templates/forms/affiliation.php:199
2338
+ msgid "Promotion methods"
2339
+ msgstr "プロモーション方法"
2340
+
2341
+ #: templates/forms/affiliation.php:202
2342
+ msgid "Social media (Facebook, Twitter, etc.)"
2343
+ msgstr "ソーシャルメディア(Facebook、Twitter、その他)"
2344
+
2345
+ #: templates/forms/affiliation.php:206
2346
+ msgid "Mobile apps"
2347
+ msgstr "モバイルアプリケーション"
2348
+
2349
+ #: templates/forms/affiliation.php:210
2350
+ msgid "Website, email, and social media statistics (optional)"
2351
+ msgstr "ウェブサイト、Email またはソーシャルメディアの統計 (オプション)"
2352
+
2353
+ #: templates/forms/affiliation.php:213
2354
+ 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)."
2355
+ msgstr "関係のあるウェブサイトやソーシャルメディアの統計を提供してください。例: サイトの月間訪問者数、Emailの購読者数、フォロワー数等 (機密情報として取り扱います)"
2356
+
2357
+ #: templates/forms/affiliation.php:217
2358
+ msgid "How will you promote us?"
2359
+ msgstr "どのように我々をプロモートしますか?"
2360
+
2361
+ #: templates/forms/affiliation.php:220
2362
+ msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
2363
+ msgstr "どのように%sをプロモートするつもりなのか、詳細をお知らせください (できるだけ具体的にお願いします)"
2364
+
2365
+ #: templates/forms/affiliation.php232, templates/forms/resend-key.php:22
2366
+ msgid "Cancel"
2367
+ msgstr "キャンセル"
2368
+
2369
+ #: templates/forms/affiliation.php:234
2370
+ msgid "Become an affiliate"
2371
+ msgstr "アフィリエイトになる"
2372
+
2373
+ #: templates/forms/data-debug-mode.php:25
2374
+ msgid "Please enter the license key to enable the debug mode:"
2375
+ msgstr "Please enter the license key to enable the debug mode:"
2376
+
2377
+ #: templates/forms/data-debug-mode.php:27
2378
+ msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2379
+ msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:"
2380
+
2381
+ #: templates/forms/data-debug-mode.php:32
2382
+ msgid "Submit"
2383
+ msgstr "Submit"
2384
+
2385
+ #: templates/forms/data-debug-mode.php:36
2386
+ msgid "User key"
2387
+ msgstr "User key"
2388
+
2389
+ #: templates/forms/license-activation.php:23
2390
+ msgid "Please enter the license key that you received in the email right after the purchase:"
2391
+ msgstr "購入後すぐにメールで受け取ったライセンスキーを入力してください:"
2392
+
2393
+ #: templates/forms/license-activation.php:28
2394
+ msgid "Update License"
2395
+ msgstr "ライセンスを更新"
2396
+
2397
+ #: templates/forms/license-activation.php:41
2398
+ 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."
2399
+ msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。"
2400
+
2401
+ #: templates/forms/license-activation.php:183
2402
+ msgid "Associate with the license owner's account."
2403
+ msgstr "Associate with the license owner's account."
2404
+
2405
+ #: templates/forms/optout.php:30
2406
+ msgctxt "verb"
2407
+ msgid "Opt Out"
2408
+ msgstr "オプトアウト"
2409
+
2410
+ #: templates/forms/optout.php:31
2411
+ msgctxt "verb"
2412
+ msgid "Opt In"
2413
+ msgstr "オプトイン"
2414
+
2415
+ #: templates/forms/optout.php:34
2416
+ msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2417
+ msgstr "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
2418
+
2419
+ #: templates/forms/optout.php:36
2420
+ msgid "Warning: Opting out will block automatic updates"
2421
+ msgstr "Warning: Opting out will block automatic updates"
2422
+
2423
+ #: templates/forms/optout.php:37
2424
+ msgid "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2425
+ msgstr "Ongoing connectivity with the licensing engine is essential for receiving automatic security & feature updates of the paid product. To receive these updates, data like your license key, %1$s version, and WordPress version, is periodically sent to the server to check for updates. By opting out, you understand that your site won't receive automatic updates for %2$s from within the WP Admin Dashboard. This can put your site at risk, and we highly recommend to keep this connection active. If you do choose to opt-out, you'll need to check for %1$s updates and install them manually."
2426
+
2427
+ #: templates/forms/optout.php:39
2428
+ msgid "I'd like to keep automatic updates"
2429
+ msgstr "I'd like to keep automatic updates"
2430
+
2431
+ #: templates/forms/optout.php:44
2432
+ 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."
2433
+ msgstr "使用の追跡は %s をより良くする名目の下に行われています。ユーザー体験をより良くし、新機能に優先順位をつけるためなどに使います。追跡を続けてもよいと再考してくれるなら本当に感謝致します。"
2434
+
2435
+ #: templates/forms/optout.php:45
2436
+ msgid "On second thought - I want to continue helping"
2437
+ msgstr "On second thought - I want to continue helping"
2438
+
2439
+ #: templates/forms/optout.php:49
2440
+ msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
2441
+ msgstr "\"オプトアウト\"をクリックすることで、もう %s から %s へのデータの送信は行いません。"
2442
+
2443
+ #: templates/forms/optout.php:74
2444
+ msgid "Plugins & themes tracking"
2445
+ msgstr "Plugins & themes tracking"
2446
+
2447
+ #: templates/forms/optout.php:261
2448
+ msgid "Saved"
2449
+ msgstr "Saved"
2450
+
2451
+ #: templates/forms/premium-versions-upgrade-handler.php:40
2452
+ msgid "There is a new version of %s available."
2453
+ msgstr "%sの入手可能な新しいバージョンがあります"
2454
+
2455
+ #: templates/forms/premium-versions-upgrade-handler.php:41
2456
+ msgid " %s to access version %s security & feature updates, and support."
2457
+ msgstr " %s to access version %s security & feature updates, and support."
2458
+
2459
+ #: templates/forms/premium-versions-upgrade-handler.php:54
2460
+ msgid "New Version Available"
2461
+ msgstr "新しいバージョンがあります"
2462
+
2463
+ #: templates/forms/premium-versions-upgrade-handler.php:75
2464
+ msgctxt "close a window"
2465
+ msgid "Dismiss"
2466
+ msgstr "却下"
2467
+
2468
+ #: templates/forms/resend-key.php:21
2469
+ msgid "Send License Key"
2470
+ msgstr "ライセンスキーを送信"
2471
+
2472
+ #: templates/forms/resend-key.php:57
2473
+ msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
2474
+ msgstr "アップグレードに使用したメールアドレスを下に入力してください。そうすれば、ライセンスキーをお送りします。"
2475
+
2476
+ #: templates/forms/subscription-cancellation.php:37
2477
+ msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2478
+ msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site."
2479
+
2480
+ #: templates/forms/subscription-cancellation.php:47
2481
+ 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?"
2482
+ 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?"
2483
+
2484
+ #: templates/forms/subscription-cancellation.php:52
2485
+ msgid "license"
2486
+ msgstr "license"
2487
+
2488
+ #: templates/forms/subscription-cancellation.php:57
2489
+ 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."
2490
+ 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."
2491
+
2492
+ #: templates/forms/subscription-cancellation.php:68
2493
+ msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2494
+ msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support."
2495
+
2496
+ #: templates/forms/subscription-cancellation.php:103
2497
+ 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."
2498
+ 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."
2499
+
2500
+ #: templates/forms/subscription-cancellation.php:136
2501
+ msgid "Cancel %s?"
2502
+ msgstr "Cancel %s?"
2503
+
2504
+ #: templates/forms/subscription-cancellation.php:143
2505
+ msgid "Proceed"
2506
+ msgstr "Proceed"
2507
+
2508
+ #: templates/forms/subscription-cancellation.php191,
2509
+ #: templates/forms/deactivation/form.php:171
2510
+ msgid "Cancel %s & Proceed"
2511
+ msgstr "Cancel %s & Proceed"
2512
+
2513
+ #: templates/forms/trial-start.php:22
2514
+ msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
2515
+ msgstr "%2$s プランの%1$s日間のフリートライアルを開始するまであとワンクリックです。"
2516
+
2517
+ #: templates/forms/trial-start.php:28
2518
+ 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."
2519
+ msgstr "WordPress.orgのガイドラインに準拠するため、トライアルを開始する前に、ユーザーと重要でないサイト情報のオプトイン、更新の確認やトライアルの状態確認のために%sが%sに対して定期的にデータを送信する許可を得るように設定してください。"
2520
+
2521
+ #: templates/forms/user-change.php:26
2522
+ msgid "By changing the user, you agree to transfer the account ownership to:"
2523
+ msgstr "By changing the user, you agree to transfer the account ownership to:"
2524
+
2525
+ #: templates/forms/user-change.php:28
2526
+ msgid "I Agree - Change User"
2527
+ msgstr "I Agree - Change User"
2528
+
2529
+ #: templates/forms/user-change.php:30
2530
+ msgid "Enter email address"
2531
+ msgstr "Enter email address"
2532
+
2533
+ #: templates/forms/user-change.php:81
2534
+ msgctxt "close window"
2535
+ msgid "Dismiss"
2536
+ msgstr "却下"
2537
+
2538
+ #: templates/js/style-premium-theme.php:39
2539
+ msgid "Premium"
2540
+ msgstr "プレミアム"
2541
+
2542
+ #: templates/js/style-premium-theme.php:42
2543
+ msgid "Beta"
2544
+ msgstr "Beta"
2545
+
2546
+ #: templates/partials/network-activation.php:27
2547
+ msgid "Activate license on all sites in the network."
2548
+ msgstr "ネットワーク上にあるすべてのサイトのライセンスを有効にする。"
2549
+
2550
+ #: templates/partials/network-activation.php:28
2551
+ msgid "Apply on all sites in the network."
2552
+ msgstr "ネットワーク上にあるすべてのサイトに対して反映させる。"
2553
+
2554
+ #: templates/partials/network-activation.php:31
2555
+ msgid "Activate license on all pending sites."
2556
+ msgstr "保留中のサイトすべてでライセンスを有効にする。"
2557
+
2558
+ #: templates/partials/network-activation.php:32
2559
+ msgid "Apply on all pending sites."
2560
+ msgstr "保留中のサイトすべてに反映させる。"
2561
+
2562
+ #: templates/partials/network-activation.php40,
2563
+ #: templates/partials/network-activation.php:74
2564
+ msgid "allow"
2565
+ msgstr "許可"
2566
+
2567
+ #: templates/partials/network-activation.php43,
2568
+ #: templates/partials/network-activation.php:77
2569
+ msgid "delegate"
2570
+ msgstr "代表"
2571
+
2572
+ #: templates/partials/network-activation.php47,
2573
+ #: templates/partials/network-activation.php:81
2574
+ msgid "skip"
2575
+ msgstr "スキップ"
2576
+
2577
+ #: templates/plugin-info/description.php72,
2578
+ #: templates/plugin-info/screenshots.php:31
2579
+ msgid "Click to view full-size screenshot %d"
2580
+ msgstr "クリックしてフルサイズのスクリーンショットを見る %d"
2581
+
2582
+ #: templates/plugin-info/features.php:56
2583
+ msgid "Unlimited Updates"
2584
+ msgstr "無制限のアップデート"
2585
+
2586
+ #: templates/account/partials/activate-license-button.php:46
2587
+ msgid "Localhost"
2588
+ msgstr "localhost"
2589
+
2590
+ #: templates/account/partials/activate-license-button.php:50
2591
+ msgctxt "as 5 licenses left"
2592
+ msgid "%s left"
2593
+ msgstr "あと %s"
2594
+
2595
+ #: templates/account/partials/activate-license-button.php:51
2596
+ msgid "Last license"
2597
+ msgstr "最新のライセンス"
2598
+
2599
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
2600
+ #. subscription'
2601
+ #: templates/account/partials/addon.php:29
2602
+ msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2603
+ msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
2604
+
2605
+ #: templates/account/partials/addon.php:185
2606
+ msgid "Cancelled"
2607
+ msgstr "キャンセル"
2608
+
2609
+ #: templates/account/partials/addon.php:195
2610
+ msgid "No expiration"
2611
+ msgstr "有効期限なし"
2612
+
2613
+ #: templates/account/partials/site.php:189
2614
+ msgid "Owner Name"
2615
+ msgstr "所有者名"
2616
+
2617
+ #: templates/account/partials/site.php:201
2618
+ msgid "Owner Email"
2619
+ msgstr "所有者の Email"
2620
+
2621
+ #: templates/account/partials/site.php:213
2622
+ msgid "Owner ID"
2623
+ msgstr "オーナー ID"
2624
+
2625
+ #: templates/account/partials/site.php:286
2626
+ msgid "Subscription"
2627
+ msgstr "サブスクリプション"
2628
+
2629
+ #: templates/forms/deactivation/contact.php:19
2630
+ msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
2631
+ msgstr "ご迷惑をおかけしてすいません。もし機会をいただけたらお手伝いをします。"
2632
+
2633
+ #: templates/forms/deactivation/contact.php:22
2634
+ msgid "Contact Support"
2635
+ msgstr "サポートに連絡"
2636
+
2637
+ #: templates/forms/deactivation/form.php:64
2638
+ msgid "Anonymous feedback"
2639
+ msgstr "匿名のフィードバック"
2640
+
2641
+ #: templates/forms/deactivation/form.php:70
2642
+ msgid "Deactivate"
2643
+ msgstr "無効化"
2644
+
2645
+ #: templates/forms/deactivation/form.php:72
2646
+ msgid "Activate %s"
2647
+ msgstr "%sを有効化する"
2648
+
2649
+ #: templates/forms/deactivation/form.php:87
2650
+ msgid "Quick Feedback"
2651
+ msgstr "Quick Feedback"
2652
+
2653
+ #: templates/forms/deactivation/form.php:91
2654
+ msgid "If you have a moment, please let us know why you are %s"
2655
+ msgstr "お時間があれば、なぜ%sするのか理由を教えてください。"
2656
+
2657
+ #: templates/forms/deactivation/form.php:91
2658
+ msgid "deactivating"
2659
+ msgstr "無効化中"
2660
+
2661
+ #: templates/forms/deactivation/form.php:91
2662
+ msgid "switching"
2663
+ msgstr "変更中"
2664
+
2665
+ #: templates/forms/deactivation/form.php:369
2666
+ msgid "Submit & %s"
2667
+ msgstr "送信と%s"
2668
+
2669
+ #: templates/forms/deactivation/form.php:390
2670
+ msgid "Kindly tell us the reason so we can improve."
2671
+ msgstr "改善できるよう、どうか理由を教えてください。"
2672
+
2673
+ #: templates/forms/deactivation/form.php:515
2674
+ msgid "Yes - %s"
2675
+ msgstr "はい"
2676
+
2677
+ #: templates/forms/deactivation/form.php:522
2678
+ msgid "Skip & %s"
2679
+ msgstr "スキップと%s"
2680
+
2681
+ #: templates/forms/deactivation/retry-skip.php:21
2682
+ msgid "Click here to use the plugin anonymously"
2683
+ msgstr "匿名でプラグインを使用するにはこちらをクリック"
2684
+
2685
+ #: templates/forms/deactivation/retry-skip.php:23
2686
+ msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
2687
+ msgstr "見逃していたかもしれませんが、どんな情報も共有する必要はなく、オプトインを $s することができます。 "
freemius/languages/freemius-nl_NL.po ADDED
@@ -0,0 +1,2686 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 freemius
2
+ # This file is distributed under the same license as the freemius package.
3
+ # Translators:
4
+ # Benny Vluggen <benny@prodevign.com>, 2017-2018
5
+ # Patrick Buntsma <info@stonehengecreations.nl>, 2018
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WordPress SDK\n"
9
+ "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
10
+ "POT-Creation-Date: \n"
11
+ "PO-Revision-Date: 2021-02-03 09:56+0000\n"
12
+ "Last-Translator: Vova Feldman <vova@freemius.com>\n"
13
+ "Language: nl_NL\n"
14
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "MIME-Version: 1.0\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+
25
+ #: includes/class-freemius.php1919, templates/account.php:912
26
+ msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
27
+ msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned."
28
+
29
+ #: includes/class-freemius.php:1926
30
+ msgid "Would you like to proceed with the update?"
31
+ msgstr "Would you like to proceed with the update?"
32
+
33
+ #: includes/class-freemius.php:2138
34
+ msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
35
+ 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."
36
+
37
+ #: includes/class-freemius.php:2140
38
+ msgid "Error"
39
+ msgstr "Fout"
40
+
41
+ #: includes/class-freemius.php:2540
42
+ msgid "I found a better %s"
43
+ msgstr "Ik vond een beter %s"
44
+
45
+ #: includes/class-freemius.php:2542
46
+ msgid "What's the %s's name?"
47
+ msgstr "Wat is de naam van het %s?"
48
+
49
+ #: includes/class-freemius.php:2548
50
+ msgid "It's a temporary %s. I'm just debugging an issue."
51
+ msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen."
52
+
53
+ #: includes/class-freemius.php:2550
54
+ msgid "Deactivation"
55
+ msgstr "Deactivatie"
56
+
57
+ #: includes/class-freemius.php:2551
58
+ msgid "Theme Switch"
59
+ msgstr "Thema Wissel"
60
+
61
+ #: includes/class-freemius.php2560, templates/forms/resend-key.php24,
62
+ #: templates/forms/user-change.php:29
63
+ msgid "Other"
64
+ msgstr "Overige"
65
+
66
+ #: includes/class-freemius.php:2568
67
+ msgid "I no longer need the %s"
68
+ msgstr "Ik heb de %s niet meer nodig "
69
+
70
+ #: includes/class-freemius.php:2575
71
+ msgid "I only needed the %s for a short period"
72
+ msgstr "Ik had de %s alleen nodig voor een korte periode."
73
+
74
+ #: includes/class-freemius.php:2581
75
+ msgid "The %s broke my site"
76
+ msgstr "De %s maakte mijn site onbruikbaar"
77
+
78
+ #: includes/class-freemius.php:2588
79
+ msgid "The %s suddenly stopped working"
80
+ msgstr "De %s werkte opeens niet meer"
81
+
82
+ #: includes/class-freemius.php:2598
83
+ msgid "I can't pay for it anymore"
84
+ msgstr "Ik kan er niet langer meer voor betalen"
85
+
86
+ #: includes/class-freemius.php:2600
87
+ msgid "What price would you feel comfortable paying?"
88
+ msgstr "Welke bedrag zou je ervoor over hebben?"
89
+
90
+ #: includes/class-freemius.php:2606
91
+ msgid "I don't like to share my information with you"
92
+ msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen"
93
+
94
+ #: includes/class-freemius.php:2627
95
+ msgid "The %s didn't work"
96
+ msgstr "De %s werkte niet"
97
+
98
+ #: includes/class-freemius.php:2637
99
+ msgid "I couldn't understand how to make it work"
100
+ msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen."
101
+
102
+ #: includes/class-freemius.php:2645
103
+ msgid "The %s is great, but I need specific feature that you don't support"
104
+ msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen"
105
+
106
+ #: includes/class-freemius.php:2647
107
+ msgid "What feature?"
108
+ msgstr "Welke feature?"
109
+
110
+ #: includes/class-freemius.php:2651
111
+ msgid "The %s is not working"
112
+ msgstr "De %s werkt niet"
113
+
114
+ #: includes/class-freemius.php:2653
115
+ msgid "Kindly share what didn't work so we can fix it for future users..."
116
+ msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..."
117
+
118
+ #: includes/class-freemius.php:2657
119
+ msgid "It's not what I was looking for"
120
+ msgstr "Het is niet waarna ik opzoek was"
121
+
122
+ #: includes/class-freemius.php:2659
123
+ msgid "What you've been looking for?"
124
+ msgstr "Waar was je naar op zoek?"
125
+
126
+ #: includes/class-freemius.php:2663
127
+ msgid "The %s didn't work as expected"
128
+ msgstr "De %s werkte niet zoals verwacht"
129
+
130
+ #: includes/class-freemius.php:2665
131
+ msgid "What did you expect?"
132
+ msgstr "Wat had je verwacht?"
133
+
134
+ #: includes/class-freemius.php3520, templates/debug.php:20
135
+ msgid "Freemius Debug"
136
+ msgstr "Freemius Debug"
137
+
138
+ #: includes/class-freemius.php:4272
139
+ msgid "I don't know what is cURL or how to install it, help me!"
140
+ msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!"
141
+
142
+ #: includes/class-freemius.php:4274
143
+ 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."
144
+ 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. "
145
+
146
+ #: includes/class-freemius.php:4281
147
+ 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."
148
+ 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."
149
+
150
+ #: includes/class-freemius.php:4386
151
+ msgid "Yes - do your thing"
152
+ msgstr "Ja, ga je gang"
153
+
154
+ #: includes/class-freemius.php:4391
155
+ msgid "No - just deactivate"
156
+ msgstr "Nee - alleen deactiveren"
157
+
158
+ #: includes/class-freemius.php4436, includes/class-freemius.php4930,
159
+ #: includes/class-freemius.php6191, includes/class-freemius.php13368,
160
+ #: includes/class-freemius.php14110, includes/class-freemius.php17542,
161
+ #: includes/class-freemius.php17647, includes/class-freemius.php17822,
162
+ #: includes/class-freemius.php20056, includes/class-freemius.php20414,
163
+ #: includes/class-freemius.php20424, includes/class-freemius.php21109,
164
+ #: includes/class-freemius.php22015, includes/class-freemius.php22148,
165
+ #: includes/class-freemius.php22304, templates/add-ons.php:57
166
+ msgctxt "exclamation"
167
+ msgid "Oops"
168
+ msgstr "Oeps"
169
+
170
+ #: includes/class-freemius.php:4505
171
+ 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."
172
+ 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."
173
+
174
+ #: includes/class-freemius.php:4927
175
+ msgctxt "addonX cannot run without pluginY"
176
+ msgid "%s cannot run without %s."
177
+ msgstr "%s werkt niet zonder %s."
178
+
179
+ #: includes/class-freemius.php:4928
180
+ msgctxt "addonX cannot run..."
181
+ msgid "%s cannot run without the plugin."
182
+ msgstr "%s werkt niet zonder de plug-in."
183
+
184
+ #: includes/class-freemius.php5127, includes/class-freemius.php5152,
185
+ #: includes/class-freemius.php:21180
186
+ msgid "Unexpected API error. Please contact the %s's author with the following error."
187
+ msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding."
188
+
189
+ #: includes/class-freemius.php:5857
190
+ msgid "Premium %s version was successfully activated."
191
+ msgstr "Premium %s versie is succesvol geactiveerd."
192
+
193
+ #: includes/class-freemius.php5869, includes/class-freemius.php:7774
194
+ msgctxt ""
195
+ msgid "W00t"
196
+ msgstr "W00t"
197
+
198
+ #: includes/class-freemius.php:5884
199
+ msgid "You have a %s license."
200
+ msgstr "Je hebt een %s licentie"
201
+
202
+ #: includes/class-freemius.php5888, includes/class-freemius.php16947,
203
+ #: includes/class-freemius.php16958, includes/class-freemius.php20325,
204
+ #: includes/class-freemius.php20689, includes/class-freemius.php20758,
205
+ #: includes/class-freemius.php:20930
206
+ msgctxt "interjection expressing joy or exuberance"
207
+ msgid "Yee-haw"
208
+ msgstr "Hoera"
209
+
210
+ #: includes/class-freemius.php:6174
211
+ 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."
212
+ 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."
213
+
214
+ #: includes/class-freemius.php:6178
215
+ msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
216
+ msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert."
217
+
218
+ #: includes/class-freemius.php6187, templates/add-ons.php186,
219
+ #: templates/account/partials/addon.php:381
220
+ msgid "More information about %s"
221
+ msgstr "Meer informatie over %s"
222
+
223
+ #: includes/class-freemius.php:6188
224
+ msgid "Purchase License"
225
+ msgstr "Licentie Kopen"
226
+
227
+ #: includes/class-freemius.php7125, templates/connect.php:171
228
+ 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."
229
+ 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."
230
+
231
+ #: includes/class-freemius.php:7129
232
+ msgid "start the trial"
233
+ msgstr "start de proefperiode"
234
+
235
+ #: includes/class-freemius.php7130, templates/connect.php:175
236
+ msgid "complete the install"
237
+ msgstr "voltooi de installatie"
238
+
239
+ #: includes/class-freemius.php:7249
240
+ msgid "You are just one step away - %s"
241
+ msgstr "Je bent slechts een stap verwijderd - %s"
242
+
243
+ #: includes/class-freemius.php:7252
244
+ msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
245
+ msgid "Complete \"%s\" Activation Now"
246
+ msgstr "Voltooi \"%s\" Activatie Nu"
247
+
248
+ #: includes/class-freemius.php:7334
249
+ msgid "We made a few tweaks to the %s, %s"
250
+ msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s "
251
+
252
+ #: includes/class-freemius.php:7338
253
+ msgid "Opt in to make \"%s\" better!"
254
+ msgstr "Opt-in om \"%s\" te verbeteren!"
255
+
256
+ #: includes/class-freemius.php:7773
257
+ msgid "The upgrade of %s was successfully completed."
258
+ msgstr "De upgrade van %s is succesvol voltooid."
259
+
260
+ #: includes/class-freemius.php10255, includes/class-fs-plugin-updater.php1087,
261
+ #: includes/class-fs-plugin-updater.php1282,
262
+ #: includes/class-fs-plugin-updater.php1289,
263
+ #: templates/auto-installation.php:32
264
+ msgid "Add-On"
265
+ msgstr "Uitbreiding"
266
+
267
+ #: includes/class-freemius.php10257, templates/account.php394,
268
+ #: templates/account.php402, templates/debug.php358, templates/debug.php:549
269
+ msgid "Plugin"
270
+ msgstr "Plug-in"
271
+
272
+ #: includes/class-freemius.php10258, templates/account.php395,
273
+ #: templates/account.php403, templates/debug.php358, templates/debug.php549,
274
+ #: templates/forms/deactivation/form.php:71
275
+ msgid "Theme"
276
+ msgstr "Thema"
277
+
278
+ #: includes/class-freemius.php:13188
279
+ msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
280
+ msgstr "An unknown error has occurred while trying to toggle the license's white-label mode."
281
+
282
+ #: includes/class-freemius.php:13202
283
+ msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
284
+ msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s."
285
+
286
+ #: includes/class-freemius.php:13207
287
+ msgid "User Dashboard"
288
+ msgstr "User Dashboard"
289
+
290
+ #: includes/class-freemius.php:13208
291
+ msgid "revert it now"
292
+ msgstr "revert it now"
293
+
294
+ #: includes/class-freemius.php:13266
295
+ msgid "An unknown error has occurred while trying to set the user's beta mode."
296
+ msgstr "An unknown error has occurred while trying to set the user's beta mode."
297
+
298
+ #: includes/class-freemius.php:13339
299
+ msgid "Invalid new user ID or email address."
300
+ msgstr "Invalid new user ID or email address."
301
+
302
+ #: includes/class-freemius.php13369, includes/class-freemius.php:22259
303
+ msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
304
+ msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd."
305
+
306
+ #: includes/class-freemius.php13370, includes/class-freemius.php:22260
307
+ msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
308
+ msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. "
309
+
310
+ #: includes/class-freemius.php13377, includes/class-freemius.php:22267
311
+ msgid "Change Ownership"
312
+ msgstr "Eigendom Overdragen"
313
+
314
+ #: includes/class-freemius.php:13977
315
+ msgid "Invalid site details collection."
316
+ msgstr "Ongeldige verzameling van Site Details."
317
+
318
+ #: includes/class-freemius.php:14097
319
+ msgid "We couldn't find your email address in the system, are you sure it's the right address?"
320
+ msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?"
321
+
322
+ #: includes/class-freemius.php:14099
323
+ msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
324
+ msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?"
325
+
326
+ #: includes/class-freemius.php:14373
327
+ msgid "Account is pending activation."
328
+ msgstr "Account wacht op activatie."
329
+
330
+ #: includes/class-freemius.php14485,
331
+ #: templates/forms/premium-versions-upgrade-handler.php:47
332
+ msgid "Buy a license now"
333
+ msgstr "Koop nu een licentie"
334
+
335
+ #: includes/class-freemius.php14497,
336
+ #: templates/forms/premium-versions-upgrade-handler.php:46
337
+ msgid "Renew your license now"
338
+ msgstr "Vernieuw je licentie nu"
339
+
340
+ #: includes/class-freemius.php:14501
341
+ msgid "%s to access version %s security & feature updates, and support."
342
+ msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support."
343
+
344
+ #: includes/class-freemius.php:16929
345
+ msgid "%s activation was successfully completed."
346
+ msgstr "%s activatie is succesvol voltooid."
347
+
348
+ #: includes/class-freemius.php:16943
349
+ msgid "Your account was successfully activated with the %s plan."
350
+ msgstr "Je account is succesvol geactiveerd met het %s plan."
351
+
352
+ #: includes/class-freemius.php16954, includes/class-freemius.php:20754
353
+ msgid "Your trial has been successfully started."
354
+ msgstr "U proefperiode is met succes gestart."
355
+
356
+ #: includes/class-freemius.php17540, includes/class-freemius.php17645,
357
+ #: includes/class-freemius.php:17820
358
+ msgid "Couldn't activate %s."
359
+ msgstr "Kon %s niet activeren."
360
+
361
+ #: includes/class-freemius.php17541, includes/class-freemius.php17646,
362
+ #: includes/class-freemius.php:17821
363
+ msgid "Please contact us with the following message:"
364
+ msgstr "Neem a.u.b. contact met ons op met het volgende bericht:"
365
+
366
+ #: includes/class-freemius.php17642, templates/forms/data-debug-mode.php:162
367
+ msgid "An unknown error has occurred."
368
+ msgstr "An unknown error has occurred."
369
+
370
+ #: includes/class-freemius.php18178, includes/class-freemius.php:23340
371
+ msgid "Upgrade"
372
+ msgstr "Upgrade"
373
+
374
+ #: includes/class-freemius.php:18184
375
+ msgid "Start Trial"
376
+ msgstr "Start Proefperiode"
377
+
378
+ #: includes/class-freemius.php:18186
379
+ msgid "Pricing"
380
+ msgstr "Prijzen"
381
+
382
+ #: includes/class-freemius.php18266, includes/class-freemius.php:18268
383
+ msgid "Affiliation"
384
+ msgstr "Affiliatie"
385
+
386
+ #: includes/class-freemius.php18296, includes/class-freemius.php18298,
387
+ #: templates/account.php242, templates/debug.php:324
388
+ msgid "Account"
389
+ msgstr "Account"
390
+
391
+ #: includes/class-freemius.php18312, includes/class-freemius.php18314,
392
+ #: includes/customizer/class-fs-customizer-support-section.php:60
393
+ msgid "Contact Us"
394
+ msgstr "Contacteer Ons"
395
+
396
+ #: includes/class-freemius.php18325, includes/class-freemius.php18327,
397
+ #: includes/class-freemius.php23354, templates/account.php121,
398
+ #: templates/account/partials/addon.php:44
399
+ msgid "Add-Ons"
400
+ msgstr "Uitbreidingen"
401
+
402
+ #: includes/class-freemius.php:18361
403
+ msgctxt "ASCII arrow left icon"
404
+ msgid "&#x2190;"
405
+ msgstr "&#x2190;"
406
+
407
+ #: includes/class-freemius.php:18361
408
+ msgctxt "ASCII arrow right icon"
409
+ msgid "&#x27a4;"
410
+ msgstr "&#x27a4;"
411
+
412
+ #: includes/class-freemius.php18363, templates/pricing.php:109
413
+ msgctxt "noun"
414
+ msgid "Pricing"
415
+ msgstr "Prijzen"
416
+
417
+ #: includes/class-freemius.php18576,
418
+ #: includes/customizer/class-fs-customizer-support-section.php:67
419
+ msgid "Support Forum"
420
+ msgstr "Supportforum"
421
+
422
+ #: includes/class-freemius.php:19550
423
+ msgid "Your email has been successfully verified - you are AWESOME!"
424
+ msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!"
425
+
426
+ #: includes/class-freemius.php:19551
427
+ msgctxt "a positive response"
428
+ msgid "Right on"
429
+ msgstr "Toppie"
430
+
431
+ #: includes/class-freemius.php:20057
432
+ msgid "seems like the key you entered doesn't match our records."
433
+ msgstr "seems like the key you entered doesn't match our records."
434
+
435
+ #: includes/class-freemius.php:20081
436
+ msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
437
+ msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link."
438
+
439
+ #: includes/class-freemius.php:20316
440
+ msgid "Your %s Add-on plan was successfully upgraded."
441
+ msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. "
442
+
443
+ #: includes/class-freemius.php:20318
444
+ msgid "%s Add-on was successfully purchased."
445
+ msgstr "%s Add-on werd succesvol aangekocht."
446
+
447
+ #: includes/class-freemius.php:20321
448
+ msgid "Download the latest version"
449
+ msgstr "Download de meeste recente versie"
450
+
451
+ #: includes/class-freemius.php:20407
452
+ msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
453
+ msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s"
454
+
455
+ #: includes/class-freemius.php20413, includes/class-freemius.php20423,
456
+ #: includes/class-freemius.php20889, includes/class-freemius.php:20978
457
+ msgid "Error received from the server:"
458
+ msgstr "Foutmelding ontvangen van de server:"
459
+
460
+ #: includes/class-freemius.php:20423
461
+ msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
462
+ msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. "
463
+
464
+ #: includes/class-freemius.php20651, includes/class-freemius.php20894,
465
+ #: includes/class-freemius.php20949, includes/class-freemius.php:21056
466
+ msgctxt ""
467
+ msgid "Hmm"
468
+ msgstr "Hmm"
469
+
470
+ #: includes/class-freemius.php:20664
471
+ 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."
472
+ 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."
473
+
474
+ #: includes/class-freemius.php20665, templates/account.php123,
475
+ #: templates/add-ons.php250, templates/account/partials/addon.php:46
476
+ msgctxt "trial period"
477
+ msgid "Trial"
478
+ msgstr "Proefperiode"
479
+
480
+ #: includes/class-freemius.php:20670
481
+ msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
482
+ msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s."
483
+
484
+ #: includes/class-freemius.php20674, includes/class-freemius.php:20733
485
+ msgid "Please contact us here"
486
+ msgstr "Neem hier a.u.b. contact met ons op"
487
+
488
+ #: includes/class-freemius.php:20685
489
+ msgid "Your plan was successfully activated."
490
+ msgstr "Your plan was successfully activated."
491
+
492
+ #: includes/class-freemius.php:20686
493
+ msgid "Your plan was successfully upgraded."
494
+ msgstr "Je plan is succesvol geüpgraded."
495
+
496
+ #: includes/class-freemius.php:20703
497
+ msgid "Your plan was successfully changed to %s."
498
+ msgstr "Je plan is succesvol veranderd naar %s."
499
+
500
+ #: includes/class-freemius.php:20719
501
+ msgid "Your license has expired. You can still continue using the free %s forever."
502
+ msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken."
503
+
504
+ #: includes/class-freemius.php:20721
505
+ msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
506
+ msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken."
507
+
508
+ #: includes/class-freemius.php:20729
509
+ msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
510
+ msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support."
511
+
512
+ #: includes/class-freemius.php:20742
513
+ 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."
514
+ 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."
515
+
516
+ #: includes/class-freemius.php:20768
517
+ msgid "Your free trial has expired. You can still continue using all our free features."
518
+ msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken."
519
+
520
+ #: includes/class-freemius.php:20770
521
+ msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
522
+ msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. "
523
+
524
+ #: includes/class-freemius.php:20885
525
+ msgid "It looks like the license could not be activated."
526
+ msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden."
527
+
528
+ #: includes/class-freemius.php:20927
529
+ msgid "Your license was successfully activated."
530
+ msgstr "Je licentie is succesvol geactiveerd."
531
+
532
+ #: includes/class-freemius.php:20953
533
+ msgid "It looks like your site currently doesn't have an active license."
534
+ msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft."
535
+
536
+ #: includes/class-freemius.php:20977
537
+ msgid "It looks like the license deactivation failed."
538
+ msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is."
539
+
540
+ #: includes/class-freemius.php:21006
541
+ msgid "Your %s license was successfully deactivated."
542
+ msgstr "Your %s license was successfully deactivated."
543
+
544
+ #: includes/class-freemius.php:21007
545
+ msgid "Your license was successfully deactivated, you are back to the %s plan."
546
+ msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan."
547
+
548
+ #: includes/class-freemius.php:21010
549
+ msgid "O.K"
550
+ msgstr "Oké"
551
+
552
+ #: includes/class-freemius.php:21063
553
+ msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
554
+ 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."
555
+
556
+ #: includes/class-freemius.php:21072
557
+ msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
558
+ msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen."
559
+
560
+ #: includes/class-freemius.php:21114
561
+ msgid "You are already running the %s in a trial mode."
562
+ msgstr "Je draait de %s al in proefmodus."
563
+
564
+ #: includes/class-freemius.php:21125
565
+ msgid "You already utilized a trial before."
566
+ msgstr "U heeft reeds een proefperiode gebruikt."
567
+
568
+ #: includes/class-freemius.php:21139
569
+ msgid "Plan %s do not exist, therefore, can't start a trial."
570
+ msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden."
571
+
572
+ #: includes/class-freemius.php:21150
573
+ msgid "Plan %s does not support a trial period."
574
+ msgstr "Plan %s ondersteunt geen proefperiode."
575
+
576
+ #: includes/class-freemius.php:21161
577
+ msgid "None of the %s's plans supports a trial period."
578
+ msgstr "Geen van de %s plannen ondersteunt een proefperiode."
579
+
580
+ #: includes/class-freemius.php:21211
581
+ msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
582
+ msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten."
583
+
584
+ #: includes/class-freemius.php:21247
585
+ msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
586
+ 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."
587
+
588
+ #: includes/class-freemius.php:21266
589
+ msgid "Your %s free trial was successfully cancelled."
590
+ msgstr "Uw gratis %s proefperiode is succesvol opgezegd. "
591
+
592
+ #: includes/class-freemius.php:21582
593
+ msgid "Version %s was released."
594
+ msgstr "Versie %s is vrijgegeven."
595
+
596
+ #: includes/class-freemius.php:21582
597
+ msgid "Please download %s."
598
+ msgstr "A.u.b. %s downloaden."
599
+
600
+ #: includes/class-freemius.php:21589
601
+ msgid "the latest %s version here"
602
+ msgstr "de meest recente %s versie hier"
603
+
604
+ #: includes/class-freemius.php:21594
605
+ msgid "New"
606
+ msgstr "Nieuw"
607
+
608
+ #: includes/class-freemius.php:21599
609
+ msgid "Seems like you got the latest release."
610
+ msgstr "Het lijkt erop dat je de meest recente versie hebt."
611
+
612
+ #: includes/class-freemius.php:21600
613
+ msgid "You are all good!"
614
+ msgstr "Alles is goed!"
615
+
616
+ #: includes/class-freemius.php:21903
617
+ msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
618
+ msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox."
619
+
620
+ #: includes/class-freemius.php:22043
621
+ msgid "Site successfully opted in."
622
+ msgstr "Site opt-in geslaagd. "
623
+
624
+ #: includes/class-freemius.php22044, includes/class-freemius.php:23050
625
+ msgid "Awesome"
626
+ msgstr "Geweldig"
627
+
628
+ #: includes/class-freemius.php22060, templates/forms/optout.php:41
629
+ msgid "We appreciate your help in making the %s better by letting us track some usage data."
630
+ msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. "
631
+
632
+ #: includes/class-freemius.php:22061
633
+ msgid "Thank you!"
634
+ msgstr "Bedankt!"
635
+
636
+ #: includes/class-freemius.php:22068
637
+ msgid "We will no longer be sending any usage data of %s on %s to %s."
638
+ msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s."
639
+
640
+ #: includes/class-freemius.php:22226
641
+ 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."
642
+ 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."
643
+
644
+ #: includes/class-freemius.php:22232
645
+ msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
646
+ msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. "
647
+
648
+ #: includes/class-freemius.php:22237
649
+ msgid "%s is the new owner of the account."
650
+ msgstr "%s is de nieuwe eigenaar van het account."
651
+
652
+ #: includes/class-freemius.php:22239
653
+ msgctxt "as congratulations"
654
+ msgid "Congrats"
655
+ msgstr "Gefeliciteerd"
656
+
657
+ #: includes/class-freemius.php:22275
658
+ msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
659
+ msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. "
660
+
661
+ #: includes/class-freemius.php:22287
662
+ msgid "Please provide your full name."
663
+ msgstr "Geef alsjeblieft je volledige naam."
664
+
665
+ #: includes/class-freemius.php:22292
666
+ msgid "Your name was successfully updated."
667
+ msgstr "Je naam is succesvol bijgewerkt."
668
+
669
+ #: includes/class-freemius.php:22353
670
+ msgid "You have successfully updated your %s."
671
+ msgstr "Je hebt je %s succesvol geüpdatet."
672
+
673
+ #: includes/class-freemius.php:22412
674
+ msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
675
+ msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin."
676
+
677
+ #: includes/class-freemius.php:22415
678
+ msgid "Click here"
679
+ msgstr "Click here"
680
+
681
+ #: includes/class-freemius.php:22513
682
+ msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
683
+ msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server."
684
+
685
+ #: includes/class-freemius.php:22514
686
+ msgctxt "advance notice of something that will need attention."
687
+ msgid "Heads up"
688
+ msgstr "Aankondiging"
689
+
690
+ #: includes/class-freemius.php:23090
691
+ msgctxt "exclamation"
692
+ msgid "Hey"
693
+ msgstr "Hoi"
694
+
695
+ #: includes/class-freemius.php:23090
696
+ msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
697
+ msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode."
698
+
699
+ #: includes/class-freemius.php:23098
700
+ msgid "No commitment for %s days - cancel anytime!"
701
+ msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!"
702
+
703
+ #: includes/class-freemius.php:23099
704
+ msgid "No credit card required"
705
+ msgstr "Geen creditcard nodig"
706
+
707
+ #: includes/class-freemius.php23106, templates/forms/trial-start.php:53
708
+ msgctxt "call to action"
709
+ msgid "Start free trial"
710
+ msgstr "Start gratis proefperidoe"
711
+
712
+ #: includes/class-freemius.php:23183
713
+ 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!"
714
+ msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!"
715
+
716
+ #: includes/class-freemius.php:23192
717
+ msgid "Learn more"
718
+ msgstr "Lees meer"
719
+
720
+ #: includes/class-freemius.php23378, templates/account.php558,
721
+ #: templates/account.php708, templates/connect.php179,
722
+ #: templates/connect.php461, templates/forms/license-activation.php27,
723
+ #: templates/account/partials/addon.php:321
724
+ msgid "Activate License"
725
+ msgstr "Activeer Licentie"
726
+
727
+ #: includes/class-freemius.php23379, templates/account.php652,
728
+ #: templates/account.php707, templates/account/partials/addon.php322,
729
+ #: templates/account/partials/site.php:271
730
+ msgid "Change License"
731
+ msgstr "Verander Licentie"
732
+
733
+ #: includes/class-freemius.php23500, templates/account/partials/site.php:169
734
+ msgid "Opt Out"
735
+ msgstr "Opt Out"
736
+
737
+ #: includes/class-freemius.php23502, includes/class-freemius.php23508,
738
+ #: templates/account/partials/site.php49,
739
+ #: templates/account/partials/site.php:169
740
+ msgid "Opt In"
741
+ msgstr "Opt In"
742
+
743
+ #: includes/class-freemius.php:23738
744
+ msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
745
+ msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
746
+
747
+ #: includes/class-freemius.php:23746
748
+ msgid "Activate %s features"
749
+ msgstr "Activeer %s features."
750
+
751
+ #: includes/class-freemius.php:23759
752
+ msgid "Please follow these steps to complete the upgrade"
753
+ msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien"
754
+
755
+ #: includes/class-freemius.php:23763
756
+ msgid "Download the latest %s version"
757
+ msgstr "Download de meeste recente %s versie"
758
+
759
+ #: includes/class-freemius.php:23767
760
+ msgid "Upload and activate the downloaded version"
761
+ msgstr "Upload en activeer de gedownloade versie"
762
+
763
+ #: includes/class-freemius.php:23769
764
+ msgid "How to upload and activate?"
765
+ msgstr "Hoe te uploaden en activeren?"
766
+
767
+ #: includes/class-freemius.php:23903
768
+ msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
769
+ msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren."
770
+
771
+ #: includes/class-freemius.php:24072
772
+ msgid "Auto installation only works for opted-in users."
773
+ msgstr "Automatische installatie werkt alleen voor opted-in gebruikers."
774
+
775
+ #: includes/class-freemius.php24082, includes/class-freemius.php24115,
776
+ #: includes/class-fs-plugin-updater.php1261,
777
+ #: includes/class-fs-plugin-updater.php:1275
778
+ msgid "Invalid module ID."
779
+ msgstr "Ongeldige Module-ID"
780
+
781
+ #: includes/class-freemius.php24091, includes/class-fs-plugin-updater.php:1297
782
+ msgid "Premium version already active."
783
+ msgstr "Premium versie reeds actief."
784
+
785
+ #: includes/class-freemius.php:24098
786
+ msgid "You do not have a valid license to access the premium version."
787
+ msgstr "Je hebt geen geldige licentie voor de premium versie."
788
+
789
+ #: includes/class-freemius.php:24105
790
+ msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
791
+ msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. "
792
+
793
+ #: includes/class-freemius.php24123, includes/class-fs-plugin-updater.php:1296
794
+ msgid "Premium add-on version already installed."
795
+ msgstr "Premium add-on versie is reeds geïnstalleerd."
796
+
797
+ #: includes/class-freemius.php:24473
798
+ msgid "View paid features"
799
+ msgstr "Bekijk betaalde kenmerken"
800
+
801
+ #: includes/class-freemius.php:24795
802
+ msgid "Thank you so much for using %s and its add-ons!"
803
+ msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!"
804
+
805
+ #: includes/class-freemius.php:24796
806
+ msgid "Thank you so much for using %s!"
807
+ msgstr "Hartelijk bedankt voor het gebruik van %s!"
808
+
809
+ #: includes/class-freemius.php:24802
810
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
811
+ msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren."
812
+
813
+ #: includes/class-freemius.php:24806
814
+ msgid "Thank you so much for using our products!"
815
+ msgstr "Hartelijk bedankt voor het gebruiken van onze producten!"
816
+
817
+ #: includes/class-freemius.php:24807
818
+ msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
819
+ msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren."
820
+
821
+ #: includes/class-freemius.php:24826
822
+ msgid "%s and its add-ons"
823
+ msgstr "%sen bijbehorende uitbreidingen"
824
+
825
+ #: includes/class-freemius.php:24835
826
+ msgid "Products"
827
+ msgstr "Producten"
828
+
829
+ #: includes/class-freemius.php24842, templates/connect.php:275
830
+ msgid "Yes"
831
+ msgstr "Ja"
832
+
833
+ #: includes/class-freemius.php24843, templates/connect.php:276
834
+ msgid "send me security & feature updates, educational content and offers."
835
+ msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen."
836
+
837
+ #: includes/class-freemius.php24844, templates/connect.php:281
838
+ msgid "No"
839
+ msgstr "Nee"
840
+
841
+ #: includes/class-freemius.php24846, templates/connect.php:283
842
+ msgid "do %sNOT%s send me security & feature updates, educational content and offers."
843
+ msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen."
844
+
845
+ #: includes/class-freemius.php:24856
846
+ 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 :-)"
847
+ 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 :-)"
848
+
849
+ #: includes/class-freemius.php24858, templates/connect.php:290
850
+ msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
851
+ 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:"
852
+
853
+ #: includes/class-freemius.php:25140
854
+ msgid "License key is empty."
855
+ msgstr "Licentiesleutel is leeg."
856
+
857
+ #: includes/class-fs-plugin-updater.php206,
858
+ #: templates/forms/premium-versions-upgrade-handler.php:57
859
+ msgid "Renew license"
860
+ msgstr "Vernieuw licentie"
861
+
862
+ #: includes/class-fs-plugin-updater.php211,
863
+ #: templates/forms/premium-versions-upgrade-handler.php:58
864
+ msgid "Buy license"
865
+ msgstr "Koop licentie"
866
+
867
+ #: includes/class-fs-plugin-updater.php327,
868
+ #: includes/class-fs-plugin-updater.php:360
869
+ msgid "There is a %s of %s available."
870
+ msgstr "Er is een %s van %s beschikbaar."
871
+
872
+ #: includes/class-fs-plugin-updater.php329,
873
+ #: includes/class-fs-plugin-updater.php:365
874
+ msgid "new Beta version"
875
+ msgstr "new Beta version"
876
+
877
+ #: includes/class-fs-plugin-updater.php330,
878
+ #: includes/class-fs-plugin-updater.php:366
879
+ msgid "new version"
880
+ msgstr "nieuwe versie"
881
+
882
+ #: includes/class-fs-plugin-updater.php:389
883
+ msgid "Important Upgrade Notice:"
884
+ msgstr "Belangrijke Upgrade Mededeling:"
885
+
886
+ #: includes/class-fs-plugin-updater.php:1326
887
+ msgid "Installing plugin: %s"
888
+ msgstr "Installeren van plug-in: %s"
889
+
890
+ #: includes/class-fs-plugin-updater.php:1367
891
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
892
+ msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens."
893
+
894
+ #: includes/class-fs-plugin-updater.php:1549
895
+ msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
896
+ msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. "
897
+
898
+ #: includes/fs-plugin-info-dialog.php:541
899
+ msgid "Purchase More"
900
+ msgstr "Purchase More"
901
+
902
+ #: includes/fs-plugin-info-dialog.php542,
903
+ #: templates/account/partials/addon.php:385
904
+ msgctxt "verb"
905
+ msgid "Purchase"
906
+ msgstr "Koop"
907
+
908
+ #: includes/fs-plugin-info-dialog.php:546
909
+ msgid "Start my free %s"
910
+ msgstr "Start mijn gratis %s"
911
+
912
+ #: includes/fs-plugin-info-dialog.php:744
913
+ msgid "Install Free Version Update Now"
914
+ msgstr "Installeer Gratis Versie Update Nu"
915
+
916
+ #: includes/fs-plugin-info-dialog.php745, templates/account.php:641
917
+ msgid "Install Update Now"
918
+ msgstr "Installeer Update Nu"
919
+
920
+ #: includes/fs-plugin-info-dialog.php:754
921
+ msgid "Install Free Version Now"
922
+ msgstr "Installer Gratis Versie Nu"
923
+
924
+ #: includes/fs-plugin-info-dialog.php755, templates/add-ons.php323,
925
+ #: templates/auto-installation.php111,
926
+ #: templates/account/partials/addon.php365,
927
+ #: templates/account/partials/addon.php:418
928
+ msgid "Install Now"
929
+ msgstr "Installeer Nu"
930
+
931
+ #: includes/fs-plugin-info-dialog.php:771
932
+ msgctxt "as download latest version"
933
+ msgid "Download Latest Free Version"
934
+ msgstr "Download Nieuwste Gratis Versie"
935
+
936
+ #: includes/fs-plugin-info-dialog.php772, templates/account.php101,
937
+ #: templates/add-ons.php37, templates/account/partials/addon.php:25
938
+ msgctxt "as download latest version"
939
+ msgid "Download Latest"
940
+ msgstr "Download Nieuwste"
941
+
942
+ #: includes/fs-plugin-info-dialog.php787, templates/add-ons.php329,
943
+ #: templates/account/partials/addon.php356,
944
+ #: templates/account/partials/addon.php:412
945
+ msgid "Activate this add-on"
946
+ msgstr "Activeer deze add-on"
947
+
948
+ #: includes/fs-plugin-info-dialog.php789, templates/connect.php:458
949
+ msgid "Activate Free Version"
950
+ msgstr "Activeer Gratis Versie"
951
+
952
+ #: includes/fs-plugin-info-dialog.php790, templates/account.php125,
953
+ #: templates/add-ons.php330, templates/account/partials/addon.php:48
954
+ msgid "Activate"
955
+ msgstr "Activeer"
956
+
957
+ #: includes/fs-plugin-info-dialog.php:1002
958
+ msgctxt "Plugin installer section title"
959
+ msgid "Description"
960
+ msgstr "Beschrijving"
961
+
962
+ #: includes/fs-plugin-info-dialog.php:1003
963
+ msgctxt "Plugin installer section title"
964
+ msgid "Installation"
965
+ msgstr "Installatie"
966
+
967
+ #: includes/fs-plugin-info-dialog.php:1004
968
+ msgctxt "Plugin installer section title"
969
+ msgid "FAQ"
970
+ msgstr "Veelgestelde Vragen"
971
+
972
+ #: includes/fs-plugin-info-dialog.php1005,
973
+ #: templates/plugin-info/description.php:55
974
+ msgid "Screenshots"
975
+ msgstr "Schermafbeeldingen"
976
+
977
+ #: includes/fs-plugin-info-dialog.php:1006
978
+ msgctxt "Plugin installer section title"
979
+ msgid "Changelog"
980
+ msgstr "Wijzigingen Log"
981
+
982
+ #: includes/fs-plugin-info-dialog.php:1007
983
+ msgctxt "Plugin installer section title"
984
+ msgid "Reviews"
985
+ msgstr "Reviews"
986
+
987
+ #: includes/fs-plugin-info-dialog.php:1008
988
+ msgctxt "Plugin installer section title"
989
+ msgid "Other Notes"
990
+ msgstr "Andere Notities"
991
+
992
+ #: includes/fs-plugin-info-dialog.php:1023
993
+ msgctxt "Plugin installer section title"
994
+ msgid "Features & Pricing"
995
+ msgstr "Features & Prijzen"
996
+
997
+ #: includes/fs-plugin-info-dialog.php:1033
998
+ msgid "Plugin Install"
999
+ msgstr "Plug-in Installatie"
1000
+
1001
+ #: includes/fs-plugin-info-dialog.php:1105
1002
+ msgctxt "e.g. Professional Plan"
1003
+ msgid "%s Plan"
1004
+ msgstr "%s Plan"
1005
+
1006
+ #: includes/fs-plugin-info-dialog.php:1131
1007
+ msgctxt "e.g. the best product"
1008
+ msgid "Best"
1009
+ msgstr "Beste"
1010
+
1011
+ #: includes/fs-plugin-info-dialog.php1137,
1012
+ #: includes/fs-plugin-info-dialog.php:1157
1013
+ msgctxt "as every month"
1014
+ msgid "Monthly"
1015
+ msgstr "Maandelijks"
1016
+
1017
+ #: includes/fs-plugin-info-dialog.php:1140
1018
+ msgctxt "as once a year"
1019
+ msgid "Annual"
1020
+ msgstr "Jaarlijks"
1021
+
1022
+ #: includes/fs-plugin-info-dialog.php:1143
1023
+ msgid "Lifetime"
1024
+ msgstr "Levenslang"
1025
+
1026
+ #: includes/fs-plugin-info-dialog.php1157,
1027
+ #: includes/fs-plugin-info-dialog.php1159,
1028
+ #: includes/fs-plugin-info-dialog.php:1161
1029
+ msgctxt "e.g. billed monthly"
1030
+ msgid "Billed %s"
1031
+ msgstr "%s gefactureerd "
1032
+
1033
+ #: includes/fs-plugin-info-dialog.php:1159
1034
+ msgctxt "as once a year"
1035
+ msgid "Annually"
1036
+ msgstr "Jaarlijks"
1037
+
1038
+ #: includes/fs-plugin-info-dialog.php:1161
1039
+ msgctxt "as once a year"
1040
+ msgid "Once"
1041
+ msgstr "Eenmalig"
1042
+
1043
+ #: includes/fs-plugin-info-dialog.php:1167
1044
+ msgid "Single Site License"
1045
+ msgstr "Enkele Site Licentie"
1046
+
1047
+ #: includes/fs-plugin-info-dialog.php:1169
1048
+ msgid "Unlimited Licenses"
1049
+ msgstr "Onbeperkte Licenties"
1050
+
1051
+ #: includes/fs-plugin-info-dialog.php:1171
1052
+ msgid "Up to %s Sites"
1053
+ msgstr "Tot %s Sites"
1054
+
1055
+ #: includes/fs-plugin-info-dialog.php1181,
1056
+ #: templates/plugin-info/features.php:82
1057
+ msgctxt "as monthly period"
1058
+ msgid "mo"
1059
+ msgstr "mnd"
1060
+
1061
+ #: includes/fs-plugin-info-dialog.php1188,
1062
+ #: templates/plugin-info/features.php:80
1063
+ msgctxt "as annual period"
1064
+ msgid "year"
1065
+ msgstr "jaar"
1066
+
1067
+ #: includes/fs-plugin-info-dialog.php:1242
1068
+ msgctxt "noun"
1069
+ msgid "Price"
1070
+ msgstr "Prijs"
1071
+
1072
+ #: includes/fs-plugin-info-dialog.php:1290
1073
+ msgid "Save %s"
1074
+ msgstr "Bespaar %s"
1075
+
1076
+ #: includes/fs-plugin-info-dialog.php:1300
1077
+ msgid "No commitment for %s - cancel anytime"
1078
+ msgstr "Geen verplichting voor %s - opzeggen kan altijd"
1079
+
1080
+ #: includes/fs-plugin-info-dialog.php:1303
1081
+ msgid "After your free %s, pay as little as %s"
1082
+ msgstr "Na uw gratis %s, betaal slechts %s"
1083
+
1084
+ #: includes/fs-plugin-info-dialog.php:1314
1085
+ msgid "Details"
1086
+ msgstr "Details"
1087
+
1088
+ #: includes/fs-plugin-info-dialog.php1318, templates/account.php112,
1089
+ #: templates/debug.php201, templates/debug.php238, templates/debug.php455,
1090
+ #: templates/account/partials/addon.php:36
1091
+ msgctxt "product version"
1092
+ msgid "Version"
1093
+ msgstr "Versie"
1094
+
1095
+ #: includes/fs-plugin-info-dialog.php:1325
1096
+ msgctxt "as the plugin author"
1097
+ msgid "Author"
1098
+ msgstr "Auteur"
1099
+
1100
+ #: includes/fs-plugin-info-dialog.php:1332
1101
+ msgid "Last Updated"
1102
+ msgstr "Laatst Geüpdatet"
1103
+
1104
+ #: includes/fs-plugin-info-dialog.php1337, templates/account.php:527
1105
+ msgctxt "x-ago"
1106
+ msgid "%s ago"
1107
+ msgstr "%s geleden"
1108
+
1109
+ #: includes/fs-plugin-info-dialog.php:1346
1110
+ msgid "Requires WordPress Version"
1111
+ msgstr "Vereiste WordPress-versie"
1112
+
1113
+ #: includes/fs-plugin-info-dialog.php:1347
1114
+ msgid "%s or higher"
1115
+ msgstr "%s of hoger"
1116
+
1117
+ #: includes/fs-plugin-info-dialog.php:1354
1118
+ msgid "Compatible up to"
1119
+ msgstr "Compatible tot"
1120
+
1121
+ #: includes/fs-plugin-info-dialog.php:1362
1122
+ msgid "Downloaded"
1123
+ msgstr "Gedownload"
1124
+
1125
+ #: includes/fs-plugin-info-dialog.php:1366
1126
+ msgid "%s time"
1127
+ msgstr "%s tijd"
1128
+
1129
+ #: includes/fs-plugin-info-dialog.php:1368
1130
+ msgid "%s times"
1131
+ msgstr "%s tijden"
1132
+
1133
+ #: includes/fs-plugin-info-dialog.php:1379
1134
+ msgid "WordPress.org Plugin Page"
1135
+ msgstr "WordPress.org Plug-in Pagina"
1136
+
1137
+ #: includes/fs-plugin-info-dialog.php:1388
1138
+ msgid "Plugin Homepage"
1139
+ msgstr "Plug-in Homepage"
1140
+
1141
+ #: includes/fs-plugin-info-dialog.php1397,
1142
+ #: includes/fs-plugin-info-dialog.php:1481
1143
+ msgid "Donate to this plugin"
1144
+ msgstr "Doneer aan deze plug-in"
1145
+
1146
+ #: includes/fs-plugin-info-dialog.php:1404
1147
+ msgid "Average Rating"
1148
+ msgstr "Gemiddelde Beoordeling"
1149
+
1150
+ #: includes/fs-plugin-info-dialog.php:1411
1151
+ msgid "based on %s"
1152
+ msgstr "gebaseerd op %s"
1153
+
1154
+ #: includes/fs-plugin-info-dialog.php:1415
1155
+ msgid "%s rating"
1156
+ msgstr "%s beoordeling"
1157
+
1158
+ #: includes/fs-plugin-info-dialog.php:1417
1159
+ msgid "%s ratings"
1160
+ msgstr "%s beoordelingen"
1161
+
1162
+ #: includes/fs-plugin-info-dialog.php:1432
1163
+ msgid "%s star"
1164
+ msgstr "%s ster"
1165
+
1166
+ #: includes/fs-plugin-info-dialog.php:1434
1167
+ msgid "%s stars"
1168
+ msgstr "%s sterren"
1169
+
1170
+ #: includes/fs-plugin-info-dialog.php:1446
1171
+ msgid "Click to see reviews that provided a rating of %s"
1172
+ msgstr "Klik om reviews te bekijken met een beoordeling van%s"
1173
+
1174
+ #: includes/fs-plugin-info-dialog.php:1459
1175
+ msgid "Contributors"
1176
+ msgstr "Medewerkers"
1177
+
1178
+ #: includes/fs-plugin-info-dialog.php1489,
1179
+ #: includes/fs-plugin-info-dialog.php:1491
1180
+ msgid "Warning"
1181
+ msgstr "Waarschuwing"
1182
+
1183
+ #: includes/fs-plugin-info-dialog.php:1489
1184
+ msgid "This plugin has not been tested with your current version of WordPress."
1185
+ msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. "
1186
+
1187
+ #: includes/fs-plugin-info-dialog.php:1491
1188
+ msgid "This plugin has not been marked as compatible with your version of WordPress."
1189
+ msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie."
1190
+
1191
+ #: includes/fs-plugin-info-dialog.php:1510
1192
+ msgid "Paid add-on must be deployed to Freemius."
1193
+ msgstr "Betaalde add-on moet op Freemius geplaatst worden."
1194
+
1195
+ #: includes/fs-plugin-info-dialog.php:1511
1196
+ msgid "Add-on must be deployed to WordPress.org or Freemius."
1197
+ msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden."
1198
+
1199
+ #: includes/fs-plugin-info-dialog.php:1532
1200
+ msgid "Newer Version (%s) Installed"
1201
+ msgstr "Nieuwere Versie (%s) Geïnstalleerd"
1202
+
1203
+ #: includes/fs-plugin-info-dialog.php:1533
1204
+ msgid "Newer Free Version (%s) Installed"
1205
+ msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd"
1206
+
1207
+ #: includes/fs-plugin-info-dialog.php:1540
1208
+ msgid "Latest Version Installed"
1209
+ msgstr "Meest Recente Versie Geïnstalleerd"
1210
+
1211
+ #: includes/fs-plugin-info-dialog.php:1541
1212
+ msgid "Latest Free Version Installed"
1213
+ msgstr "Nieuwste Gratis Versie Geïnstalleerd"
1214
+
1215
+ #: templates/account.php102, templates/forms/subscription-cancellation.php96,
1216
+ #: templates/account/partials/addon.php26,
1217
+ #: templates/account/partials/site.php:311
1218
+ msgid "Downgrading your plan"
1219
+ msgstr "Je plan naar beneden bijstellen"
1220
+
1221
+ #: templates/account.php103, templates/forms/subscription-cancellation.php97,
1222
+ #: templates/account/partials/addon.php27,
1223
+ #: templates/account/partials/site.php:312
1224
+ msgid "Cancelling the subscription"
1225
+ msgstr "Het abonnement annuleren"
1226
+
1227
+ #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the
1228
+ #. subscription'
1229
+ #: templates/account.php105, templates/forms/subscription-cancellation.php99,
1230
+ #: templates/account/partials/site.php:314
1231
+ msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1232
+ msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
1233
+
1234
+ #: templates/account.php106, templates/forms/subscription-cancellation.php100,
1235
+ #: templates/account/partials/addon.php30,
1236
+ #: templates/account/partials/site.php:315
1237
+ 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."
1238
+ msgstr "Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe abonnementen na een annulering kunnen aanhouden. Als je in de toekomst besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend."
1239
+
1240
+ #: templates/account.php107, templates/forms/subscription-cancellation.php106,
1241
+ #: templates/account/partials/addon.php:31
1242
+ msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
1243
+ msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?"
1244
+
1245
+ #: templates/account.php108, templates/forms/subscription-cancellation.php101,
1246
+ #: templates/account/partials/addon.php32,
1247
+ #: templates/account/partials/site.php:316
1248
+ msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
1249
+ msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning."
1250
+
1251
+ #: templates/account.php109, templates/forms/subscription-cancellation.php102,
1252
+ #: templates/account/partials/addon.php33,
1253
+ #: templates/account/partials/site.php:317
1254
+ msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
1255
+ msgstr "Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis versie, maar je zal GEEN toegang meer hebben tot de %sfeatures."
1256
+
1257
+ #. translators: %s: Plan title (e.g. "Professional")
1258
+ #: templates/account.php111,
1259
+ #: templates/account/partials/activate-license-button.php31,
1260
+ #: templates/account/partials/addon.php:35
1261
+ msgid "Activate %s Plan"
1262
+ msgstr "Activeer %s Plan"
1263
+
1264
+ #. translators: %s: Time period (e.g. Auto renews in "2 months")
1265
+ #: templates/account.php114, templates/account/partials/addon.php38,
1266
+ #: templates/account/partials/site.php:291
1267
+ msgid "Auto renews in %s"
1268
+ msgstr "Auto hernieuwd over %s"
1269
+
1270
+ #. translators: %s: Time period (e.g. Expires in "2 months")
1271
+ #: templates/account.php116, templates/account/partials/addon.php40,
1272
+ #: templates/account/partials/site.php:293
1273
+ msgid "Expires in %s"
1274
+ msgstr "Verloopt over %s"
1275
+
1276
+ #: templates/account.php:117
1277
+ msgctxt "as synchronize license"
1278
+ msgid "Sync License"
1279
+ msgstr "Sync Licentie"
1280
+
1281
+ #: templates/account.php118, templates/account/partials/addon.php:41
1282
+ msgid "Cancel Trial"
1283
+ msgstr "Proefperiode Opzeggen"
1284
+
1285
+ #: templates/account.php119, templates/account/partials/addon.php:42
1286
+ msgid "Change Plan"
1287
+ msgstr "Wijzig Plan"
1288
+
1289
+ #: templates/account.php120, templates/account/partials/addon.php:43
1290
+ msgctxt "verb"
1291
+ msgid "Upgrade"
1292
+ msgstr "Upgrade"
1293
+
1294
+ #: templates/account.php122, templates/account/partials/addon.php45,
1295
+ #: templates/account/partials/site.php:318
1296
+ msgctxt "verb"
1297
+ msgid "Downgrade"
1298
+ msgstr "Downgrade"
1299
+
1300
+ #: templates/account.php124, templates/add-ons.php246,
1301
+ #: templates/plugin-info/features.php72,
1302
+ #: templates/account/partials/addon.php47,
1303
+ #: templates/account/partials/site.php:33
1304
+ msgid "Free