Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | User Menus – Nav Menu Visibility |
Version | 1.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.9 to 1.3.0
- assets/sass/admin-general.scss +0 -125
- freemius/includes/class-freemius.php +1 -1
- freemius/includes/managers/class-fs-key-value-storage.php +10 -0
- freemius/languages/freemius-cs_CZ.mo +0 -0
- freemius/languages/freemius-da_DK.mo +0 -0
- freemius/languages/freemius-de_DE.mo +0 -0
- freemius/languages/freemius-en.mo +0 -0
- freemius/languages/freemius-es_ES.mo +0 -0
- freemius/languages/freemius-fr_FR.mo +0 -0
- freemius/languages/freemius-he_IL.mo +0 -0
- freemius/languages/freemius-hu_HU.mo +0 -0
- freemius/languages/freemius-it_IT.mo +0 -0
- freemius/languages/freemius-ja.mo +0 -0
- freemius/languages/freemius-nl_NL.mo +0 -0
- freemius/languages/freemius-ru_RU.mo +0 -0
- freemius/languages/freemius-ta.mo +0 -0
- freemius/languages/freemius-zh_CN.mo +0 -0
- freemius/languages/freemius.pot +584 -1172
- freemius/package.json +1 -1
- freemius/readme.txt +0 -182
- freemius/start.php +1 -1
- languages/user-menus.pot +0 -4
- readme.md +0 -74
- readme.txt +5 -1
- user-menus.php +2 -2
assets/sass/admin-general.scss
DELETED
@@ -1,125 +0,0 @@
|
|
1 |
-
.jpum-user-codes {
|
2 |
-
|
3 |
-
display: none;
|
4 |
-
|
5 |
-
position: absolute;
|
6 |
-
right: 3px;
|
7 |
-
bottom: 2px;
|
8 |
-
|
9 |
-
> button {
|
10 |
-
border: 1px solid;
|
11 |
-
border-radius: 2px;
|
12 |
-
background-color: #23282d;
|
13 |
-
color: #eee;
|
14 |
-
text-align: center;
|
15 |
-
cursor: pointer;
|
16 |
-
font-size: 22px;
|
17 |
-
height: 22px;
|
18 |
-
width: 22px;
|
19 |
-
padding: 0;
|
20 |
-
outline: 0;
|
21 |
-
display: block;
|
22 |
-
|
23 |
-
&:focus {
|
24 |
-
border-color: #5b9dd9;
|
25 |
-
box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
|
26 |
-
}
|
27 |
-
|
28 |
-
.dashicons {
|
29 |
-
width: 20px;
|
30 |
-
height: 20px;
|
31 |
-
font-size: 20px;
|
32 |
-
}
|
33 |
-
}
|
34 |
-
|
35 |
-
&:hover > button {
|
36 |
-
background-color: #0073aa;
|
37 |
-
color: #fff;
|
38 |
-
}
|
39 |
-
|
40 |
-
ul {
|
41 |
-
display: none;
|
42 |
-
|
43 |
-
position: absolute;
|
44 |
-
top: 1px;
|
45 |
-
left: 20px;
|
46 |
-
background-color: #fff;
|
47 |
-
width: auto;
|
48 |
-
z-index: 999;
|
49 |
-
/*box-shadow: 1px 1px 5px -1px; */
|
50 |
-
|
51 |
-
li {
|
52 |
-
display: block;
|
53 |
-
border-bottom: 1px dashed rgba(0, 0, 0, .25);
|
54 |
-
background-color: #23282d;
|
55 |
-
|
56 |
-
> a {
|
57 |
-
color: #eee;
|
58 |
-
cursor: pointer;
|
59 |
-
line-height: 1;
|
60 |
-
white-space: nowrap;
|
61 |
-
text-decoration: none;
|
62 |
-
display: block;
|
63 |
-
padding: .5em;
|
64 |
-
|
65 |
-
&:focus {
|
66 |
-
color: #0073aa;
|
67 |
-
border: 0;
|
68 |
-
box-shadow: none;
|
69 |
-
|
70 |
-
}
|
71 |
-
}
|
72 |
-
|
73 |
-
&:last-child {
|
74 |
-
border-bottom: 0;
|
75 |
-
}
|
76 |
-
|
77 |
-
&:hover {
|
78 |
-
background-color: #0073aa;
|
79 |
-
|
80 |
-
> a {
|
81 |
-
color: #fff;
|
82 |
-
|
83 |
-
}
|
84 |
-
}
|
85 |
-
|
86 |
-
}
|
87 |
-
|
88 |
-
}
|
89 |
-
|
90 |
-
&.open ul {
|
91 |
-
display: block;
|
92 |
-
}
|
93 |
-
|
94 |
-
}
|
95 |
-
|
96 |
-
#menu-to-edit {
|
97 |
-
|
98 |
-
.menu-item {
|
99 |
-
|
100 |
-
p.description-wide {
|
101 |
-
|
102 |
-
position: relative;
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
.nav_item_options-roles {
|
107 |
-
label {
|
108 |
-
width: 33%;
|
109 |
-
display: inline-block;
|
110 |
-
float: left;
|
111 |
-
margin-top: 5px;
|
112 |
-
}
|
113 |
-
}
|
114 |
-
|
115 |
-
&.show-insert-button {
|
116 |
-
|
117 |
-
.jpum-user-codes {
|
118 |
-
display: block;
|
119 |
-
}
|
120 |
-
|
121 |
-
}
|
122 |
-
|
123 |
-
}
|
124 |
-
|
125 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freemius/includes/class-freemius.php
CHANGED
@@ -4058,7 +4058,7 @@
|
|
4058 |
if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
|
4059 |
$key = fs_strip_url_protocol( get_site_url( $blog_id ) );
|
4060 |
|
4061 |
-
$secure_auth = SECURE_AUTH_KEY;
|
4062 |
if ( empty( $secure_auth ) ||
|
4063 |
false !== strpos( $secure_auth, ' ' ) ||
|
4064 |
'put your unique phrase here' === $secure_auth
|
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
|
freemius/includes/managers/class-fs-key-value-storage.php
CHANGED
@@ -298,6 +298,7 @@
|
|
298 |
return $this->get( $k, null );
|
299 |
}
|
300 |
|
|
|
301 |
function offsetSet( $k, $v ) {
|
302 |
if ( is_null( $k ) ) {
|
303 |
throw new Exception( 'Can\'t append value to request params.' );
|
@@ -306,14 +307,17 @@
|
|
306 |
}
|
307 |
}
|
308 |
|
|
|
309 |
function offsetExists( $k ) {
|
310 |
return array_key_exists( $k, $this->_data );
|
311 |
}
|
312 |
|
|
|
313 |
function offsetUnset( $k ) {
|
314 |
unset( $this->$k );
|
315 |
}
|
316 |
|
|
|
317 |
function offsetGet( $k ) {
|
318 |
return $this->get( $k, null );
|
319 |
}
|
@@ -325,6 +329,7 @@
|
|
325 |
* @link http://php.net/manual/en/iterator.current.php
|
326 |
* @return mixed Can return any type.
|
327 |
*/
|
|
|
328 |
public function current() {
|
329 |
return current( $this->_data );
|
330 |
}
|
@@ -336,6 +341,7 @@
|
|
336 |
* @link http://php.net/manual/en/iterator.next.php
|
337 |
* @return void Any returned value is ignored.
|
338 |
*/
|
|
|
339 |
public function next() {
|
340 |
next( $this->_data );
|
341 |
}
|
@@ -347,6 +353,7 @@
|
|
347 |
* @link http://php.net/manual/en/iterator.key.php
|
348 |
* @return mixed scalar on success, or null on failure.
|
349 |
*/
|
|
|
350 |
public function key() {
|
351 |
return key( $this->_data );
|
352 |
}
|
@@ -359,6 +366,7 @@
|
|
359 |
* @return boolean The return value will be casted to boolean and then evaluated.
|
360 |
* Returns true on success or false on failure.
|
361 |
*/
|
|
|
362 |
public function valid() {
|
363 |
$key = key( $this->_data );
|
364 |
|
@@ -372,6 +380,7 @@
|
|
372 |
* @link http://php.net/manual/en/iterator.rewind.php
|
373 |
* @return void Any returned value is ignored.
|
374 |
*/
|
|
|
375 |
public function rewind() {
|
376 |
reset( $this->_data );
|
377 |
}
|
@@ -386,6 +395,7 @@
|
|
386 |
* <p>
|
387 |
* The return value is cast to an integer.
|
388 |
*/
|
|
|
389 |
public function count() {
|
390 |
return count( $this->_data );
|
391 |
}
|
298 |
return $this->get( $k, null );
|
299 |
}
|
300 |
|
301 |
+
#[ReturnTypeWillChange]
|
302 |
function offsetSet( $k, $v ) {
|
303 |
if ( is_null( $k ) ) {
|
304 |
throw new Exception( 'Can\'t append value to request params.' );
|
307 |
}
|
308 |
}
|
309 |
|
310 |
+
#[ReturnTypeWillChange]
|
311 |
function offsetExists( $k ) {
|
312 |
return array_key_exists( $k, $this->_data );
|
313 |
}
|
314 |
|
315 |
+
#[ReturnTypeWillChange]
|
316 |
function offsetUnset( $k ) {
|
317 |
unset( $this->$k );
|
318 |
}
|
319 |
|
320 |
+
#[ReturnTypeWillChange]
|
321 |
function offsetGet( $k ) {
|
322 |
return $this->get( $k, null );
|
323 |
}
|
329 |
* @link http://php.net/manual/en/iterator.current.php
|
330 |
* @return mixed Can return any type.
|
331 |
*/
|
332 |
+
#[ReturnTypeWillChange]
|
333 |
public function current() {
|
334 |
return current( $this->_data );
|
335 |
}
|
341 |
* @link http://php.net/manual/en/iterator.next.php
|
342 |
* @return void Any returned value is ignored.
|
343 |
*/
|
344 |
+
#[ReturnTypeWillChange]
|
345 |
public function next() {
|
346 |
next( $this->_data );
|
347 |
}
|
353 |
* @link http://php.net/manual/en/iterator.key.php
|
354 |
* @return mixed scalar on success, or null on failure.
|
355 |
*/
|
356 |
+
#[ReturnTypeWillChange]
|
357 |
public function key() {
|
358 |
return key( $this->_data );
|
359 |
}
|
366 |
* @return boolean The return value will be casted to boolean and then evaluated.
|
367 |
* Returns true on success or false on failure.
|
368 |
*/
|
369 |
+
#[ReturnTypeWillChange]
|
370 |
public function valid() {
|
371 |
$key = key( $this->_data );
|
372 |
|
380 |
* @link http://php.net/manual/en/iterator.rewind.php
|
381 |
* @return void Any returned value is ignored.
|
382 |
*/
|
383 |
+
#[ReturnTypeWillChange]
|
384 |
public function rewind() {
|
385 |
reset( $this->_data );
|
386 |
}
|
395 |
* <p>
|
396 |
* The return value is cast to an integer.
|
397 |
*/
|
398 |
+
#[ReturnTypeWillChange]
|
399 |
public function count() {
|
400 |
return count( $this->_data );
|
401 |
}
|
freemius/languages/freemius-cs_CZ.mo
CHANGED
Binary file
|
freemius/languages/freemius-da_DK.mo
CHANGED
Binary file
|
freemius/languages/freemius-de_DE.mo
ADDED
Binary file
|
freemius/languages/freemius-en.mo
CHANGED
Binary file
|
freemius/languages/freemius-es_ES.mo
CHANGED
Binary file
|
freemius/languages/freemius-fr_FR.mo
CHANGED
Binary file
|
freemius/languages/freemius-he_IL.mo
CHANGED
Binary file
|
freemius/languages/freemius-hu_HU.mo
CHANGED
Binary file
|
freemius/languages/freemius-it_IT.mo
CHANGED
Binary file
|
freemius/languages/freemius-ja.mo
CHANGED
Binary file
|
freemius/languages/freemius-nl_NL.mo
CHANGED
Binary file
|
freemius/languages/freemius-ru_RU.mo
CHANGED
Binary file
|
freemius/languages/freemius-ta.mo
CHANGED
Binary file
|
freemius/languages/freemius-zh_CN.mo
CHANGED
Binary file
|
freemius/languages/freemius.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
@@ -8,6 +8,7 @@ msgstr ""
|
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Language-Team: Freemius Team <admin@freemius.com>\n"
|
10 |
"Last-Translator: Vova Feldman <vova@freemius.com>\n"
|
|
|
11 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
12 |
"X-Poedit-Basepath: ..\n"
|
13 |
"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
|
@@ -16,796 +17,32 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
-
#: includes/class-freemius.php:
|
20 |
msgid "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."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: includes/class-freemius.php:
|
24 |
msgid "Would you like to proceed with the update?"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: includes/class-freemius.php:
|
28 |
-
msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: includes/class-freemius.php:2140
|
32 |
-
msgid "Error"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: includes/class-freemius.php:2540
|
36 |
-
msgid "I found a better %s"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: includes/class-freemius.php:2542
|
40 |
-
msgid "What's the %s's name?"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: includes/class-freemius.php:2548
|
44 |
-
msgid "It's a temporary %s. I'm just debugging an issue."
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: includes/class-freemius.php:2550
|
48 |
-
msgid "Deactivation"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: includes/class-freemius.php:2551
|
52 |
-
msgid "Theme Switch"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: includes/class-freemius.php:2560, templates/forms/resend-key.php:24, templates/forms/user-change.php:29
|
56 |
-
msgid "Other"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: includes/class-freemius.php:2568
|
60 |
-
msgid "I no longer need the %s"
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: includes/class-freemius.php:2575
|
64 |
-
msgid "I only needed the %s for a short period"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: includes/class-freemius.php:2581
|
68 |
-
msgid "The %s broke my site"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: includes/class-freemius.php:2588
|
72 |
-
msgid "The %s suddenly stopped working"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: includes/class-freemius.php:2598
|
76 |
-
msgid "I can't pay for it anymore"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/class-freemius.php:2600
|
80 |
-
msgid "What price would you feel comfortable paying?"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: includes/class-freemius.php:2606
|
84 |
-
msgid "I don't like to share my information with you"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: includes/class-freemius.php:2627
|
88 |
-
msgid "The %s didn't work"
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: includes/class-freemius.php:2637
|
92 |
-
msgid "I couldn't understand how to make it work"
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: includes/class-freemius.php:2645
|
96 |
-
msgid "The %s is great, but I need specific feature that you don't support"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: includes/class-freemius.php:2647
|
100 |
-
msgid "What feature?"
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: includes/class-freemius.php:2651
|
104 |
-
msgid "The %s is not working"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: includes/class-freemius.php:2653
|
108 |
-
msgid "Kindly share what didn't work so we can fix it for future users..."
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: includes/class-freemius.php:2657
|
112 |
-
msgid "It's not what I was looking for"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: includes/class-freemius.php:2659
|
116 |
-
msgid "What you've been looking for?"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: includes/class-freemius.php:2663
|
120 |
-
msgid "The %s didn't work as expected"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: includes/class-freemius.php:2665
|
124 |
-
msgid "What did you expect?"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: includes/class-freemius.php:3520, templates/debug.php:20
|
128 |
msgid "Freemius Debug"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-freemius.php:
|
132 |
-
msgid "I don't know what is cURL or how to install it, help me!"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: includes/class-freemius.php:4274
|
136 |
-
msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: includes/class-freemius.php:4281
|
140 |
-
msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: includes/class-freemius.php:4386
|
144 |
-
msgid "Yes - do your thing"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: includes/class-freemius.php:4391
|
148 |
-
msgid "No - just deactivate"
|
149 |
-
msgstr ""
|
150 |
-
|
151 |
-
#: 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
|
152 |
-
msgctxt "exclamation"
|
153 |
-
msgid "Oops"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/class-freemius.php:4505
|
157 |
-
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."
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: includes/class-freemius.php:4927
|
161 |
-
msgctxt "addonX cannot run without pluginY"
|
162 |
-
msgid "%s cannot run without %s."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: includes/class-freemius.php:4928
|
166 |
-
msgctxt "addonX cannot run..."
|
167 |
-
msgid "%s cannot run without the plugin."
|
168 |
-
msgstr ""
|
169 |
-
|
170 |
-
#: includes/class-freemius.php:5127, includes/class-freemius.php:5152, includes/class-freemius.php:21180
|
171 |
-
msgid "Unexpected API error. Please contact the %s's author with the following error."
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: includes/class-freemius.php:5857
|
175 |
-
msgid "Premium %s version was successfully activated."
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: includes/class-freemius.php:5869, includes/class-freemius.php:7774
|
179 |
-
msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
|
180 |
-
msgid "W00t"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: includes/class-freemius.php:5884
|
184 |
-
msgid "You have a %s license."
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: 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
|
188 |
-
msgctxt "interjection expressing joy or exuberance"
|
189 |
-
msgid "Yee-haw"
|
190 |
-
msgstr ""
|
191 |
-
|
192 |
-
#: includes/class-freemius.php:6174
|
193 |
-
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."
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: includes/class-freemius.php:6178
|
197 |
-
msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: includes/class-freemius.php:6187, templates/add-ons.php:186, templates/account/partials/addon.php:381
|
201 |
-
msgid "More information about %s"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: includes/class-freemius.php:6188
|
205 |
-
msgid "Purchase License"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#: includes/class-freemius.php:7125, templates/connect.php:171
|
209 |
-
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."
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: includes/class-freemius.php:7129
|
213 |
-
msgid "start the trial"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: includes/class-freemius.php:7130, templates/connect.php:175
|
217 |
-
msgid "complete the install"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: includes/class-freemius.php:7249
|
221 |
-
msgid "You are just one step away - %s"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: includes/class-freemius.php:7252
|
225 |
-
msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
|
226 |
-
msgid "Complete \"%s\" Activation Now"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: includes/class-freemius.php:7334
|
230 |
-
msgid "We made a few tweaks to the %s, %s"
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: includes/class-freemius.php:7338
|
234 |
-
msgid "Opt in to make \"%s\" better!"
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: includes/class-freemius.php:7773
|
238 |
-
msgid "The upgrade of %s was successfully completed."
|
239 |
-
msgstr ""
|
240 |
-
|
241 |
-
#: 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
|
242 |
-
msgid "Add-On"
|
243 |
-
msgstr ""
|
244 |
-
|
245 |
-
#: includes/class-freemius.php:10257, templates/account.php:394, templates/account.php:402, templates/debug.php:358, templates/debug.php:549
|
246 |
-
msgid "Plugin"
|
247 |
-
msgstr ""
|
248 |
-
|
249 |
-
#: 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
|
250 |
-
msgid "Theme"
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: includes/class-freemius.php:13188
|
254 |
msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-freemius.php:
|
258 |
-
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."
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: includes/class-freemius.php:13207
|
262 |
-
msgid "User Dashboard"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: includes/class-freemius.php:13208
|
266 |
-
msgid "revert it now"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: includes/class-freemius.php:13266
|
270 |
msgid "An unknown error has occurred while trying to set the user's beta mode."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-freemius.php:
|
274 |
msgid "Invalid new user ID or email address."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/class-freemius.php:
|
278 |
-
msgid "
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: includes/class-freemius.php:13370, includes/class-freemius.php:22260
|
282 |
-
msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: includes/class-freemius.php:13377, includes/class-freemius.php:22267
|
286 |
-
msgid "Change Ownership"
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#: includes/class-freemius.php:13977
|
290 |
-
msgid "Invalid site details collection."
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#: includes/class-freemius.php:14097
|
294 |
-
msgid "We couldn't find your email address in the system, are you sure it's the right address?"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: includes/class-freemius.php:14099
|
298 |
-
msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: includes/class-freemius.php:14373
|
302 |
-
msgid "Account is pending activation."
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: includes/class-freemius.php:14485, templates/forms/premium-versions-upgrade-handler.php:47
|
306 |
-
msgid "Buy a license now"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: includes/class-freemius.php:14497, templates/forms/premium-versions-upgrade-handler.php:46
|
310 |
-
msgid "Renew your license now"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: includes/class-freemius.php:14501
|
314 |
-
msgid "%s to access version %s security & feature updates, and support."
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: includes/class-freemius.php:16929
|
318 |
-
msgid "%s activation was successfully completed."
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: includes/class-freemius.php:16943
|
322 |
-
msgid "Your account was successfully activated with the %s plan."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: includes/class-freemius.php:16954, includes/class-freemius.php:20754
|
326 |
-
msgid "Your trial has been successfully started."
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: includes/class-freemius.php:17540, includes/class-freemius.php:17645, includes/class-freemius.php:17820
|
330 |
-
msgid "Couldn't activate %s."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: includes/class-freemius.php:17541, includes/class-freemius.php:17646, includes/class-freemius.php:17821
|
334 |
-
msgid "Please contact us with the following message:"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: includes/class-freemius.php:17642, templates/forms/data-debug-mode.php:162
|
338 |
-
msgid "An unknown error has occurred."
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: includes/class-freemius.php:18178, includes/class-freemius.php:23340
|
342 |
-
msgid "Upgrade"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: includes/class-freemius.php:18184
|
346 |
-
msgid "Start Trial"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: includes/class-freemius.php:18186
|
350 |
-
msgid "Pricing"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: includes/class-freemius.php:18266, includes/class-freemius.php:18268
|
354 |
-
msgid "Affiliation"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: includes/class-freemius.php:18296, includes/class-freemius.php:18298, templates/account.php:242, templates/debug.php:324
|
358 |
-
msgid "Account"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/class-freemius.php:18312, includes/class-freemius.php:18314, includes/customizer/class-fs-customizer-support-section.php:60
|
362 |
-
msgid "Contact Us"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: 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
|
366 |
-
msgid "Add-Ons"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: includes/class-freemius.php:18361
|
370 |
-
msgctxt "ASCII arrow left icon"
|
371 |
-
msgid "←"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: includes/class-freemius.php:18361
|
375 |
-
msgctxt "ASCII arrow right icon"
|
376 |
-
msgid "➤"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: includes/class-freemius.php:18363, templates/pricing.php:109
|
380 |
-
msgctxt "noun"
|
381 |
-
msgid "Pricing"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: includes/class-freemius.php:18576, includes/customizer/class-fs-customizer-support-section.php:67
|
385 |
-
msgid "Support Forum"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: includes/class-freemius.php:19550
|
389 |
-
msgid "Your email has been successfully verified - you are AWESOME!"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: includes/class-freemius.php:19551
|
393 |
-
msgctxt "a positive response"
|
394 |
-
msgid "Right on"
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: includes/class-freemius.php:20057
|
398 |
-
msgid "seems like the key you entered doesn't match our records."
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: includes/class-freemius.php:20081
|
402 |
-
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."
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: includes/class-freemius.php:20316
|
406 |
-
msgid "Your %s Add-on plan was successfully upgraded."
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: includes/class-freemius.php:20318
|
410 |
-
msgid "%s Add-on was successfully purchased."
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/class-freemius.php:20321
|
414 |
-
msgid "Download the latest version"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: includes/class-freemius.php:20407
|
418 |
-
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"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/class-freemius.php:20413, includes/class-freemius.php:20423, includes/class-freemius.php:20889, includes/class-freemius.php:20978
|
422 |
-
msgid "Error received from the server:"
|
423 |
-
msgstr ""
|
424 |
-
|
425 |
-
#: includes/class-freemius.php:20423
|
426 |
-
msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: includes/class-freemius.php:20651, includes/class-freemius.php:20894, includes/class-freemius.php:20949, includes/class-freemius.php:21056
|
430 |
-
msgctxt "something somebody says when they are thinking about what you have just said."
|
431 |
-
msgid "Hmm"
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: includes/class-freemius.php:20664
|
435 |
-
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."
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: includes/class-freemius.php:20665, templates/account.php:123, templates/add-ons.php:250, templates/account/partials/addon.php:46
|
439 |
-
msgctxt "trial period"
|
440 |
-
msgid "Trial"
|
441 |
-
msgstr ""
|
442 |
-
|
443 |
-
#: includes/class-freemius.php:20670
|
444 |
-
msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: includes/class-freemius.php:20674, includes/class-freemius.php:20733
|
448 |
-
msgid "Please contact us here"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: includes/class-freemius.php:20685
|
452 |
-
msgid "Your plan was successfully activated."
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: includes/class-freemius.php:20686
|
456 |
-
msgid "Your plan was successfully upgraded."
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
#: includes/class-freemius.php:20703
|
460 |
-
msgid "Your plan was successfully changed to %s."
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: includes/class-freemius.php:20719
|
464 |
-
msgid "Your license has expired. You can still continue using the free %s forever."
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: includes/class-freemius.php:20721
|
468 |
-
msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: includes/class-freemius.php:20729
|
472 |
-
msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: includes/class-freemius.php:20742
|
476 |
-
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."
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: includes/class-freemius.php:20768
|
480 |
-
msgid "Your free trial has expired. You can still continue using all our free features."
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: includes/class-freemius.php:20770
|
484 |
-
msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: includes/class-freemius.php:20885
|
488 |
-
msgid "It looks like the license could not be activated."
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: includes/class-freemius.php:20927
|
492 |
-
msgid "Your license was successfully activated."
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
#: includes/class-freemius.php:20953
|
496 |
-
msgid "It looks like your site currently doesn't have an active license."
|
497 |
-
msgstr ""
|
498 |
-
|
499 |
-
#: includes/class-freemius.php:20977
|
500 |
-
msgid "It looks like the license deactivation failed."
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: includes/class-freemius.php:21006
|
504 |
-
msgid "Your %s license was successfully deactivated."
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: includes/class-freemius.php:21007
|
508 |
-
msgid "Your license was successfully deactivated, you are back to the %s plan."
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: includes/class-freemius.php:21010
|
512 |
-
msgid "O.K"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: includes/class-freemius.php:21063
|
516 |
-
msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes."
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#: includes/class-freemius.php:21072
|
520 |
-
msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s."
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
-
#: includes/class-freemius.php:21114
|
524 |
-
msgid "You are already running the %s in a trial mode."
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: includes/class-freemius.php:21125
|
528 |
-
msgid "You already utilized a trial before."
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: includes/class-freemius.php:21139
|
532 |
-
msgid "Plan %s do not exist, therefore, can't start a trial."
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: includes/class-freemius.php:21150
|
536 |
-
msgid "Plan %s does not support a trial period."
|
537 |
-
msgstr ""
|
538 |
-
|
539 |
-
#: includes/class-freemius.php:21161
|
540 |
-
msgid "None of the %s's plans supports a trial period."
|
541 |
-
msgstr ""
|
542 |
-
|
543 |
-
#: includes/class-freemius.php:21211
|
544 |
-
msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: includes/class-freemius.php:21247
|
548 |
-
msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: includes/class-freemius.php:21266
|
552 |
-
msgid "Your %s free trial was successfully cancelled."
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: includes/class-freemius.php:21582
|
556 |
-
msgid "Version %s was released."
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: includes/class-freemius.php:21582
|
560 |
-
msgid "Please download %s."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: includes/class-freemius.php:21589
|
564 |
-
msgid "the latest %s version here"
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: includes/class-freemius.php:21594
|
568 |
-
msgid "New"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: includes/class-freemius.php:21599
|
572 |
-
msgid "Seems like you got the latest release."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/class-freemius.php:21600
|
576 |
-
msgid "You are all good!"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: includes/class-freemius.php:21903
|
580 |
-
msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: includes/class-freemius.php:22043
|
584 |
-
msgid "Site successfully opted in."
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/class-freemius.php:22044, includes/class-freemius.php:23050
|
588 |
-
msgid "Awesome"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: includes/class-freemius.php:22060, templates/forms/optout.php:41
|
592 |
-
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: includes/class-freemius.php:22061
|
596 |
-
msgid "Thank you!"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/class-freemius.php:22068
|
600 |
-
msgid "We will no longer be sending any usage data of %s on %s to %s."
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: includes/class-freemius.php:22226
|
604 |
-
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."
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: includes/class-freemius.php:22232
|
608 |
-
msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: includes/class-freemius.php:22237
|
612 |
-
msgid "%s is the new owner of the account."
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: includes/class-freemius.php:22239
|
616 |
-
msgctxt "as congratulations"
|
617 |
-
msgid "Congrats"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: includes/class-freemius.php:22275
|
621 |
-
msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: includes/class-freemius.php:22287
|
625 |
-
msgid "Please provide your full name."
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: includes/class-freemius.php:22292
|
629 |
-
msgid "Your name was successfully updated."
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: includes/class-freemius.php:22353
|
633 |
-
msgid "You have successfully updated your %s."
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: includes/class-freemius.php:22412
|
637 |
-
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."
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: includes/class-freemius.php:22415
|
641 |
-
msgid "Click here"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: includes/class-freemius.php:22513
|
645 |
-
msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: includes/class-freemius.php:22514
|
649 |
-
msgctxt "advance notice of something that will need attention."
|
650 |
-
msgid "Heads up"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: includes/class-freemius.php:23090
|
654 |
-
msgctxt "exclamation"
|
655 |
-
msgid "Hey"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: includes/class-freemius.php:23090
|
659 |
-
msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: includes/class-freemius.php:23098
|
663 |
-
msgid "No commitment for %s days - cancel anytime!"
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: includes/class-freemius.php:23099
|
667 |
-
msgid "No credit card required"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: includes/class-freemius.php:23106, templates/forms/trial-start.php:53
|
671 |
-
msgctxt "call to action"
|
672 |
-
msgid "Start free trial"
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: includes/class-freemius.php:23183
|
676 |
-
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!"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: includes/class-freemius.php:23192
|
680 |
-
msgid "Learn more"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: 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
|
684 |
-
msgid "Activate License"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: 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
|
688 |
-
msgid "Change License"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: includes/class-freemius.php:23500, templates/account/partials/site.php:169
|
692 |
-
msgid "Opt Out"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: includes/class-freemius.php:23502, includes/class-freemius.php:23508, templates/account/partials/site.php:49, templates/account/partials/site.php:169
|
696 |
-
msgid "Opt In"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: includes/class-freemius.php:23738
|
700 |
-
msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: includes/class-freemius.php:23746
|
704 |
-
msgid "Activate %s features"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: includes/class-freemius.php:23759
|
708 |
-
msgid "Please follow these steps to complete the upgrade"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: includes/class-freemius.php:23763
|
712 |
-
msgid "Download the latest %s version"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: includes/class-freemius.php:23767
|
716 |
-
msgid "Upload and activate the downloaded version"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: includes/class-freemius.php:23769
|
720 |
-
msgid "How to upload and activate?"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: includes/class-freemius.php:23903
|
724 |
-
msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: includes/class-freemius.php:24072
|
728 |
-
msgid "Auto installation only works for opted-in users."
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: includes/class-freemius.php:24082, includes/class-freemius.php:24115, includes/class-fs-plugin-updater.php:1261, includes/class-fs-plugin-updater.php:1275
|
732 |
-
msgid "Invalid module ID."
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: includes/class-freemius.php:24091, includes/class-fs-plugin-updater.php:1297
|
736 |
-
msgid "Premium version already active."
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: includes/class-freemius.php:24098
|
740 |
-
msgid "You do not have a valid license to access the premium version."
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: includes/class-freemius.php:24105
|
744 |
-
msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: includes/class-freemius.php:24123, includes/class-fs-plugin-updater.php:1296
|
748 |
-
msgid "Premium add-on version already installed."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: includes/class-freemius.php:24473
|
752 |
-
msgid "View paid features"
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: includes/class-freemius.php:24795
|
756 |
-
msgid "Thank you so much for using %s and its add-ons!"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: includes/class-freemius.php:24796
|
760 |
-
msgid "Thank you so much for using %s!"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: includes/class-freemius.php:24802
|
764 |
-
msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: includes/class-freemius.php:24806
|
768 |
-
msgid "Thank you so much for using our products!"
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
#: includes/class-freemius.php:24807
|
772 |
-
msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: includes/class-freemius.php:24826
|
776 |
-
msgid "%s and its add-ons"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: includes/class-freemius.php:24835
|
780 |
-
msgid "Products"
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: includes/class-freemius.php:24842, templates/connect.php:275
|
784 |
-
msgid "Yes"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: includes/class-freemius.php:24843, templates/connect.php:276
|
788 |
-
msgid "send me security & feature updates, educational content and offers."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: includes/class-freemius.php:24844, templates/connect.php:281
|
792 |
-
msgid "No"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: includes/class-freemius.php:24846, templates/connect.php:283
|
796 |
-
msgid "do %sNOT%s send me security & feature updates, educational content and offers."
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: includes/class-freemius.php:24856
|
800 |
-
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 :-)"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: includes/class-freemius.php:24858, templates/connect.php:290
|
804 |
-
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: includes/class-freemius.php:25140
|
808 |
-
msgid "License key is empty."
|
809 |
msgstr ""
|
810 |
|
811 |
#: includes/class-fs-plugin-updater.php:206, templates/forms/premium-versions-upgrade-handler.php:57
|
@@ -816,31 +53,23 @@ msgstr ""
|
|
816 |
msgid "Buy license"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/class-fs-plugin-updater.php:
|
820 |
msgid "There is a %s of %s available."
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: includes/class-fs-plugin-updater.php:
|
824 |
msgid "new Beta version"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/class-fs-plugin-updater.php:
|
828 |
msgid "new version"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/class-fs-plugin-updater.php:
|
832 |
msgid "Important Upgrade Notice:"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/class-fs-plugin-updater.php:
|
836 |
-
msgid "Installing plugin: %s"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: includes/class-fs-plugin-updater.php:1367
|
840 |
-
msgid "Unable to connect to the filesystem. Please confirm your credentials."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: includes/class-fs-plugin-updater.php:1549
|
844 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
845 |
msgstr ""
|
846 |
|
@@ -848,29 +77,30 @@ msgstr ""
|
|
848 |
msgid "Purchase More"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/fs-plugin-info-dialog.php:542, templates/account/partials/addon.php:
|
852 |
msgctxt "verb"
|
853 |
msgid "Purchase"
|
854 |
msgstr ""
|
855 |
|
|
|
856 |
#: includes/fs-plugin-info-dialog.php:546
|
857 |
msgid "Start my free %s"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: includes/fs-plugin-info-dialog.php:
|
861 |
-
msgid "Install Free Version
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: includes/fs-plugin-info-dialog.php:
|
865 |
-
msgid "Install
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: includes/fs-plugin-info-dialog.php:
|
869 |
-
msgid "Install Free Version Now"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: includes/fs-plugin-info-dialog.php:
|
873 |
-
msgid "Install Now"
|
874 |
msgstr ""
|
875 |
|
876 |
#: includes/fs-plugin-info-dialog.php:771
|
@@ -878,20 +108,20 @@ msgctxt "as download latest version"
|
|
878 |
msgid "Download Latest Free Version"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/fs-plugin-info-dialog.php:772, templates/account.php:
|
882 |
msgctxt "as download latest version"
|
883 |
msgid "Download Latest"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/fs-plugin-info-dialog.php:787, templates/add-ons.php:329, templates/account/partials/addon.php:
|
887 |
msgid "Activate this add-on"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/fs-plugin-info-dialog.php:789, templates/connect.php:
|
891 |
msgid "Activate Free Version"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/fs-plugin-info-dialog.php:790, templates/account.php:
|
895 |
msgid "Activate"
|
896 |
msgstr ""
|
897 |
|
@@ -1004,6 +234,7 @@ msgctxt "noun"
|
|
1004 |
msgid "Price"
|
1005 |
msgstr ""
|
1006 |
|
|
|
1007 |
#: includes/fs-plugin-info-dialog.php:1290
|
1008 |
msgid "Save %s"
|
1009 |
msgstr ""
|
@@ -1020,7 +251,7 @@ msgstr ""
|
|
1020 |
msgid "Details"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/fs-plugin-info-dialog.php:1318, templates/account.php:
|
1024 |
msgctxt "product version"
|
1025 |
msgid "Version"
|
1026 |
msgstr ""
|
@@ -1034,7 +265,8 @@ msgstr ""
|
|
1034 |
msgid "Last Updated"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
|
|
|
1038 |
msgctxt "x-ago"
|
1039 |
msgid "%s ago"
|
1040 |
msgstr ""
|
@@ -1055,10 +287,12 @@ msgstr ""
|
|
1055 |
msgid "Downloaded"
|
1056 |
msgstr ""
|
1057 |
|
|
|
1058 |
#: includes/fs-plugin-info-dialog.php:1366
|
1059 |
msgid "%s time"
|
1060 |
msgstr ""
|
1061 |
|
|
|
1062 |
#: includes/fs-plugin-info-dialog.php:1368
|
1063 |
msgid "%s times"
|
1064 |
msgstr ""
|
@@ -1083,22 +317,27 @@ msgstr ""
|
|
1083 |
msgid "based on %s"
|
1084 |
msgstr ""
|
1085 |
|
|
|
1086 |
#: includes/fs-plugin-info-dialog.php:1415
|
1087 |
msgid "%s rating"
|
1088 |
msgstr ""
|
1089 |
|
|
|
1090 |
#: includes/fs-plugin-info-dialog.php:1417
|
1091 |
msgid "%s ratings"
|
1092 |
msgstr ""
|
1093 |
|
|
|
1094 |
#: includes/fs-plugin-info-dialog.php:1432
|
1095 |
msgid "%s star"
|
1096 |
msgstr ""
|
1097 |
|
|
|
1098 |
#: includes/fs-plugin-info-dialog.php:1434
|
1099 |
msgid "%s stars"
|
1100 |
msgstr ""
|
1101 |
|
|
|
1102 |
#: includes/fs-plugin-info-dialog.php:1446
|
1103 |
msgid "Click to see reviews that provided a rating of %s"
|
1104 |
msgstr ""
|
@@ -1107,18 +346,18 @@ msgstr ""
|
|
1107 |
msgid "Contributors"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/fs-plugin-info-dialog.php:
|
1111 |
msgid "Warning"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/fs-plugin-info-dialog.php:1489
|
1115 |
-
msgid "This plugin has not been tested with your current version of WordPress."
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
#: includes/fs-plugin-info-dialog.php:1491
|
1119 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
1120 |
msgstr ""
|
1121 |
|
|
|
|
|
|
|
|
|
1122 |
#: includes/fs-plugin-info-dialog.php:1510
|
1123 |
msgid "Paid add-on must be deployed to Freemius."
|
1124 |
msgstr ""
|
@@ -1127,14 +366,6 @@ msgstr ""
|
|
1127 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/fs-plugin-info-dialog.php:1532
|
1131 |
-
msgid "Newer Version (%s) Installed"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: includes/fs-plugin-info-dialog.php:1533
|
1135 |
-
msgid "Newer Free Version (%s) Installed"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
#: includes/fs-plugin-info-dialog.php:1540
|
1139 |
msgid "Latest Version Installed"
|
1140 |
msgstr ""
|
@@ -1143,293 +374,330 @@ msgstr ""
|
|
1143 |
msgid "Latest Free Version Installed"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
msgid "Downgrading your plan"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: templates/account.php:
|
1151 |
msgid "Cancelling the subscription"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
|
1155 |
-
#: templates/account.php:
|
1156 |
msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: templates/account.php:
|
1160 |
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."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: templates/account.php:
|
1164 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: templates/account.php:
|
1168 |
msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: templates/account.php:
|
1172 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
#. translators: %s: Plan title (e.g. "Professional")
|
1176 |
-
#: templates/account.php:
|
1177 |
msgid "Activate %s Plan"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
1181 |
-
#: templates/account.php:
|
1182 |
msgid "Auto renews in %s"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
1186 |
-
#: templates/account.php:
|
1187 |
msgid "Expires in %s"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: templates/account.php:
|
1191 |
msgctxt "as synchronize license"
|
1192 |
msgid "Sync License"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: templates/account.php:
|
1196 |
msgid "Cancel Trial"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: templates/account.php:
|
1200 |
msgid "Change Plan"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: templates/account.php:
|
1204 |
msgctxt "verb"
|
1205 |
msgid "Upgrade"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: templates/account.php:
|
|
|
|
|
|
|
|
|
1209 |
msgctxt "verb"
|
1210 |
msgid "Downgrade"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: templates/account.php:
|
|
|
|
|
|
|
|
|
|
|
1214 |
msgid "Free"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: templates/account.php:
|
1218 |
msgctxt "as product pricing plan"
|
1219 |
msgid "Plan"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: templates/account.php:
|
1223 |
msgid "Bundle Plan"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: templates/account.php:
|
|
|
|
|
|
|
|
|
1227 |
msgid "Free Trial"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: templates/account.php:
|
1231 |
msgid "Account Details"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: templates/account.php:
|
1235 |
-
msgid "
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: templates/account.php:
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: templates/account.php:
|
1243 |
msgid "Billing & Invoices"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: templates/account.php:
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: templates/account.php:
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: templates/account.php:
|
1255 |
msgid "Delete Account"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: templates/account.php:
|
1259 |
msgid "Deactivate License"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: templates/account.php:
|
1263 |
msgid "Are you sure you want to proceed?"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: templates/account.php:
|
1267 |
msgid "Cancel Subscription"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: templates/account.php:
|
1271 |
msgctxt "as synchronize"
|
1272 |
msgid "Sync"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: templates/account.php:
|
1276 |
msgid "Name"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: templates/account.php:
|
1280 |
msgid "Email"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: templates/account.php:
|
1284 |
msgid "User ID"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: templates/account.php:403, templates/account.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1288 |
msgid "ID"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: templates/account.php:
|
1292 |
msgid "Site ID"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: templates/account.php:
|
1296 |
msgid "No ID"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: templates/account.php:
|
1300 |
msgid "Public Key"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: templates/account.php:
|
1304 |
msgid "Secret Key"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: templates/account.php:
|
1308 |
msgctxt "as secret encryption key missing"
|
1309 |
msgid "No Secret"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: templates/account.php:
|
1313 |
-
msgid "
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: templates/account.php:
|
1317 |
-
msgid "
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: templates/account.php:
|
1321 |
msgid "Join the Beta program"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: templates/account.php:
|
1325 |
msgid "not verified"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: templates/account.php:
|
1329 |
-
msgid "
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: templates/account.php:
|
1333 |
msgid "Premium version"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: templates/account.php:
|
1337 |
-
msgid "
|
|
|
|
|
|
|
|
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: templates/account.php:
|
1341 |
msgid "Verify Email"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: templates/account.php:
|
1345 |
-
msgid "
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: templates/account.php:
|
1349 |
-
msgid "
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: templates/account.php:
|
|
|
|
|
|
|
|
|
|
|
1353 |
msgctxt "verb"
|
1354 |
msgid "Show"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: templates/account.php:
|
1358 |
-
msgid "
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: templates/account.php:
|
1362 |
-
|
1363 |
-
msgid "Edit"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: templates/account.php:
|
1367 |
-
msgid "
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: templates/account.php:
|
1371 |
msgid "Sites"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: templates/account.php:
|
1375 |
msgid "Search by address"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: templates/account.php:
|
1379 |
msgid "Address"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: templates/account.php:
|
1383 |
msgid "License"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: templates/account.php:
|
1387 |
msgid "Plan"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: templates/account.php:
|
1391 |
msgctxt "as software license"
|
1392 |
msgid "License"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: templates/account.php:
|
1396 |
msgctxt "verb"
|
1397 |
msgid "Hide"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: templates/account.php:
|
1401 |
msgid "Processing"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: templates/account.php:
|
1405 |
msgid "Get updates for bleeding edge Beta versions of %s."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: templates/account.php:
|
1409 |
msgid "Cancelling %s"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: templates/account.php:
|
1413 |
msgid "trial"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: templates/account.php:
|
1417 |
msgid "Cancelling %s..."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: templates/account.php:
|
1421 |
msgid "subscription"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: templates/account.php:
|
1425 |
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?"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: templates/account.php:
|
1429 |
msgid "Disabling white-label mode"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: templates/account.php:
|
1433 |
msgid "Enabling white-label mode"
|
1434 |
msgstr ""
|
1435 |
|
@@ -1441,10 +709,19 @@ msgstr ""
|
|
1441 |
msgid "Add Ons for %s"
|
1442 |
msgstr ""
|
1443 |
|
|
|
|
|
|
|
|
|
|
|
1444 |
#: templates/add-ons.php:58
|
1445 |
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."
|
1446 |
msgstr ""
|
1447 |
|
|
|
|
|
|
|
|
|
1448 |
#: templates/add-ons.php:229
|
1449 |
msgctxt "active add-on"
|
1450 |
msgid "Active"
|
@@ -1455,11 +732,16 @@ msgctxt "installed add-on"
|
|
1455 |
msgid "Installed"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: templates/admin-notice.php:13, templates/forms/license-activation.php:
|
1459 |
msgctxt "as close a window"
|
1460 |
msgid "Dismiss"
|
1461 |
msgstr ""
|
1462 |
|
|
|
|
|
|
|
|
|
|
|
1463 |
#: templates/auto-installation.php:45
|
1464 |
msgid "%s sec"
|
1465 |
msgstr ""
|
@@ -1480,215 +762,147 @@ msgstr ""
|
|
1480 |
msgid "Cancel Installation"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: templates/checkout.php:180
|
1484 |
-
msgid "Checkout"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: templates/checkout.php:180
|
1488 |
-
msgid "PCI compliant"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
#. translators: %s: name (e.g. Hey John,)
|
1492 |
-
#: templates/connect.php:
|
1493 |
msgctxt "greeting"
|
1494 |
msgid "Hey %s,"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: templates/connect.php:
|
1498 |
msgid "Allow & Continue"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: templates/connect.php:
|
1502 |
-
msgid "
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: templates/connect.php:
|
1506 |
-
msgid "
|
|
|
|
|
|
|
|
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: templates/connect.php:
|
1510 |
msgid "Agree & Activate License"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: templates/connect.php:
|
1514 |
msgid "Welcome to %s! To get started, please enter your license key:"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: templates/connect.php:
|
1518 |
-
msgid "
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: templates/connect.php:
|
1522 |
-
msgid "
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: templates/connect.php:
|
1526 |
-
msgid "
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: templates/connect.php:
|
1530 |
-
msgid "
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: templates/connect.php:
|
1534 |
msgid "We're excited to introduce the Freemius network-level integration."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1538 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: templates/connect.php:
|
1542 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: templates/connect.php:
|
1546 |
msgid "%s's paid features"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: templates/connect.php:
|
1550 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: templates/connect.php:
|
1554 |
-
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
1555 |
-
msgstr ""
|
1556 |
-
|
1557 |
-
#: templates/connect.php:256, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49
|
1558 |
msgid "License key"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: templates/connect.php:
|
1562 |
msgid "Can't find your license key?"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: templates/connect.php:
|
|
|
|
|
|
|
|
|
1566 |
msgctxt "verb"
|
1567 |
msgid "Skip"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: templates/connect.php:
|
1571 |
msgid "Delegate to Site Admins"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: templates/connect.php:
|
1575 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: templates/connect.php:
|
1579 |
msgid "License issues?"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: templates/connect.php:
|
1583 |
-
msgid "
|
1584 |
-
msgstr ""
|
1585 |
-
|
1586 |
-
#: templates/connect.php:363
|
1587 |
-
msgid "Name and email address"
|
1588 |
-
msgstr ""
|
1589 |
-
|
1590 |
-
#: templates/connect.php:370
|
1591 |
-
msgid "So you can manage and control your license remotely from the User Dashboard."
|
1592 |
-
msgstr ""
|
1593 |
-
|
1594 |
-
#: templates/connect.php:371
|
1595 |
-
msgid "Your Site Overview"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: templates/connect.php:372
|
1599 |
-
msgid "Site URL, WP version, PHP info"
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: templates/connect.php:379
|
1603 |
-
msgid "Admin Notices"
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: templates/connect.php:380, templates/connect.php:398
|
1607 |
-
msgid "Updates, announcements, marketing, no spam"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: templates/connect.php:387
|
1611 |
-
msgid "So you can reuse the license when the %s is no longer active."
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: templates/connect.php:388
|
1615 |
-
msgid "Current %s Status"
|
1616 |
-
msgstr ""
|
1617 |
-
|
1618 |
-
#: templates/connect.php:389
|
1619 |
-
msgid "Active, deactivated, or uninstalled"
|
1620 |
-
msgstr ""
|
1621 |
-
|
1622 |
-
#: templates/connect.php:397
|
1623 |
-
msgid "Newsletter"
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: templates/connect.php:405
|
1627 |
-
msgid "Plugins & Themes"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: templates/connect.php:405
|
1631 |
-
msgid "optional"
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: templates/connect.php:406
|
1635 |
-
msgid "To help us troubleshoot any potential issues that may arise from other plugin or theme conflicts."
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: templates/connect.php:407
|
1639 |
-
msgid "Title, slug, version, and is active"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: templates/connect.php:
|
1643 |
msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: templates/connect.php:
|
1647 |
msgid "diagnostic data"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: templates/connect.php:
|
1651 |
-
msgid "
|
1652 |
-
msgstr ""
|
1653 |
-
|
1654 |
-
#: templates/connect.php:430
|
1655 |
-
msgid "What permissions are being granted?"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: templates/connect.php:
|
1659 |
msgid "Don't have a license key?"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: templates/connect.php:
|
1663 |
-
msgid "Have a license key?"
|
1664 |
-
msgstr ""
|
1665 |
-
|
1666 |
-
#: templates/connect.php:468
|
1667 |
msgid "Privacy Policy"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: templates/connect.php:
|
1671 |
msgid "License Agreement"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: templates/connect.php:
|
1675 |
msgid "Terms of Service"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: templates/connect.php:
|
1679 |
msgctxt "as in the process of sending an email"
|
1680 |
msgid "Sending email"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: templates/connect.php:
|
1684 |
msgctxt "as activating plugin"
|
1685 |
msgid "Activating"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: templates/contact.php:78
|
1689 |
-
msgid "Contact"
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
#: templates/debug.php:17
|
1693 |
msgctxt "as turned off"
|
1694 |
msgid "Off"
|
@@ -1708,237 +922,234 @@ msgctxt "as code debugging"
|
|
1708 |
msgid "Debugging"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: templates/debug.php:
|
1712 |
msgid "Actions"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: templates/debug.php:
|
1716 |
msgid "Are you sure you want to delete all Freemius data?"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: templates/debug.php:
|
1720 |
msgid "Delete All Accounts"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: templates/debug.php:
|
1724 |
msgid "Clear API Cache"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: templates/debug.php:
|
1728 |
msgid "Clear Updates Transients"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: templates/debug.php:
|
|
|
|
|
|
|
|
|
1732 |
msgid "Sync Data From Server"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: templates/debug.php:
|
1736 |
msgid "Migrate Options to Network"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: templates/debug.php:
|
1740 |
msgid "Load DB Option"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: templates/debug.php:
|
1744 |
msgid "Set DB Option"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: templates/debug.php:
|
1748 |
msgid "Key"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: templates/debug.php:
|
1752 |
msgid "Value"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: templates/debug.php:
|
1756 |
msgctxt "as software development kit versions"
|
1757 |
msgid "SDK Versions"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: templates/debug.php:
|
1761 |
msgid "SDK Path"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: templates/debug.php:
|
1765 |
msgid "Module Path"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: templates/debug.php:
|
1769 |
msgid "Is Active"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: templates/debug.php:
|
1773 |
msgid "Plugins"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: templates/debug.php:
|
1777 |
msgid "Themes"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: templates/debug.php:
|
1781 |
msgid "Slug"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: templates/debug.php:
|
1785 |
msgid "Title"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: templates/debug.php:
|
1789 |
msgctxt "as application program interface"
|
1790 |
msgid "API"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: templates/debug.php:
|
1794 |
msgid "Freemius State"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: templates/debug.php:
|
1798 |
msgid "Network Blog"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: templates/debug.php:
|
1802 |
msgid "Network User"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: templates/debug.php:
|
1806 |
msgctxt "as connection was successful"
|
1807 |
msgid "Connected"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: templates/debug.php:
|
1811 |
msgctxt "as connection blocked"
|
1812 |
msgid "Blocked"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: templates/debug.php:
|
1816 |
msgid "Simulate Trial Promotion"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: templates/debug.php:
|
1820 |
msgid "Simulate Network Upgrade"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
|
|
|
1824 |
msgid "%s Installs"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: templates/debug.php:
|
1828 |
msgctxt "like websites"
|
1829 |
msgid "Sites"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: templates/debug.php:
|
1833 |
msgid "Blog ID"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: templates/debug.php:
|
1837 |
msgid "License ID"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: templates/debug.php:
|
1841 |
msgctxt "verb"
|
1842 |
msgid "Delete"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: templates/debug.php:
|
1846 |
msgid "Add Ons of module %s"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: templates/debug.php:
|
1850 |
msgid "Users"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: templates/debug.php:
|
1854 |
msgid "Verified"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: templates/debug.php:
|
1858 |
msgid "%s Licenses"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: templates/debug.php:
|
1862 |
msgid "Plugin ID"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: templates/debug.php:
|
1866 |
msgid "Plan ID"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: templates/debug.php:
|
1870 |
msgid "Quota"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: templates/debug.php:
|
1874 |
msgid "Activated"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: templates/debug.php:
|
1878 |
msgid "Blocking"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: templates/debug.php:
|
1882 |
msgid "Type"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: templates/debug.php:
|
1886 |
msgctxt "as expiration date"
|
1887 |
msgid "Expiration"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: templates/debug.php:
|
1891 |
msgid "Debug Log"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: templates/debug.php:
|
1895 |
msgid "All Types"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: templates/debug.php:
|
1899 |
msgid "All Requests"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: templates/debug.php:
|
1903 |
msgid "File"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: templates/debug.php:
|
1907 |
msgid "Function"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: templates/debug.php:
|
1911 |
msgid "Process ID"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: templates/debug.php:
|
1915 |
msgid "Logger"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: templates/debug.php:
|
1919 |
msgid "Message"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: templates/debug.php:
|
1923 |
msgid "Filter"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: templates/debug.php:
|
1927 |
msgid "Download"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: templates/debug.php:
|
1931 |
msgid "Timestamp"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: templates/secure-https-header.php:28
|
1935 |
-
msgid "Secure HTTPS %s page, running from an external domain"
|
1936 |
-
msgstr ""
|
1937 |
-
|
1938 |
-
#: includes/customizer/class-fs-customizer-support-section.php:55, templates/plugin-info/features.php:43
|
1939 |
-
msgid "Support"
|
1940 |
-
msgstr ""
|
1941 |
-
|
1942 |
#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
|
1943 |
msgctxt "milliseconds"
|
1944 |
msgid "ms"
|
@@ -1952,6 +1163,120 @@ msgstr ""
|
|
1952 |
msgid "Requests"
|
1953 |
msgstr ""
|
1954 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1955 |
#: templates/account/billing.php:22
|
1956 |
msgctxt "verb"
|
1957 |
msgid "Update"
|
@@ -2105,143 +1430,143 @@ msgstr ""
|
|
2105 |
msgid "Next"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: templates/forms/affiliation.php:
|
2109 |
msgid "Non-expiring"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: templates/forms/affiliation.php:
|
2113 |
msgid "Apply to become an affiliate"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: templates/forms/affiliation.php:
|
2117 |
-
msgid "
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: templates/forms/affiliation.php:
|
2121 |
-
msgid "Thank you for applying for our affiliate program, we'
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: templates/forms/affiliation.php:
|
2125 |
msgid "Your affiliation account was temporarily suspended."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: templates/forms/affiliation.php:
|
2129 |
-
msgid "Thank you for applying for our affiliate program,
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: templates/forms/affiliation.php:
|
2133 |
-
msgid "
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: templates/forms/affiliation.php:
|
2137 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: templates/forms/affiliation.php:
|
2141 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: templates/forms/affiliation.php:
|
2145 |
msgid "Program Summary"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: templates/forms/affiliation.php:
|
2149 |
msgid "%s commission when a customer purchases a new license."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: templates/forms/affiliation.php:
|
2153 |
msgid "Get commission for automated subscription renewals."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: templates/forms/affiliation.php:
|
2157 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: templates/forms/affiliation.php:
|
2161 |
msgid "Unlimited commissions."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: templates/forms/affiliation.php:
|
2165 |
msgid "%s minimum payout amount."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: templates/forms/affiliation.php:
|
2169 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: templates/forms/affiliation.php:
|
2173 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: templates/forms/affiliation.php:
|
2177 |
msgid "Affiliate"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: templates/forms/affiliation.php:
|
2181 |
msgid "Email address"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: templates/forms/affiliation.php:
|
2185 |
msgid "Full name"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: templates/forms/affiliation.php:
|
2189 |
msgid "PayPal account email address"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: templates/forms/affiliation.php:
|
2193 |
msgid "Where are you going to promote the %s?"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: templates/forms/affiliation.php:
|
2197 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: templates/forms/affiliation.php:
|
2201 |
msgid "Add another domain"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: templates/forms/affiliation.php:
|
2205 |
msgid "Extra Domains"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: templates/forms/affiliation.php:
|
2209 |
msgid "Extra domains where you will be marketing the product from."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: templates/forms/affiliation.php:
|
2213 |
msgid "Promotion methods"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: templates/forms/affiliation.php:
|
2217 |
msgid "Social media (Facebook, Twitter, etc.)"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: templates/forms/affiliation.php:
|
2221 |
msgid "Mobile apps"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: templates/forms/affiliation.php:
|
2225 |
msgid "Website, email, and social media statistics (optional)"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: templates/forms/affiliation.php:
|
2229 |
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)."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: templates/forms/affiliation.php:
|
2233 |
msgid "How will you promote us?"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: templates/forms/affiliation.php:
|
2237 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: templates/forms/affiliation.php:
|
2241 |
msgid "Cancel"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: templates/forms/affiliation.php:
|
2245 |
msgid "Become an affiliate"
|
2246 |
msgstr ""
|
2247 |
|
@@ -2261,6 +1586,55 @@ msgstr ""
|
|
2261 |
msgid "User key"
|
2262 |
msgstr ""
|
2263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2264 |
#: templates/forms/license-activation.php:23
|
2265 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
2266 |
msgstr ""
|
@@ -2273,7 +1647,7 @@ msgstr ""
|
|
2273 |
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."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: templates/forms/license-activation.php:
|
2277 |
msgid "Associate with the license owner's account."
|
2278 |
msgstr ""
|
2279 |
|
@@ -2287,6 +1661,18 @@ msgctxt "verb"
|
|
2287 |
msgid "Opt In"
|
2288 |
msgstr ""
|
2289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2290 |
#: templates/forms/optout.php:34
|
2291 |
msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
|
2292 |
msgstr ""
|
@@ -2303,14 +1689,6 @@ msgstr ""
|
|
2303 |
msgid "I'd like to keep automatic updates"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: templates/forms/optout.php:44
|
2307 |
-
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."
|
2308 |
-
msgstr ""
|
2309 |
-
|
2310 |
-
#: templates/forms/optout.php:45
|
2311 |
-
msgid "On second thought - I want to continue helping"
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
#: templates/forms/optout.php:49
|
2315 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
2316 |
msgstr ""
|
@@ -2331,6 +1709,14 @@ msgstr ""
|
|
2331 |
msgid " %s to access version %s security & feature updates, and support."
|
2332 |
msgstr ""
|
2333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2334 |
#: templates/forms/premium-versions-upgrade-handler.php:54
|
2335 |
msgid "New Version Available"
|
2336 |
msgstr ""
|
@@ -2344,7 +1730,15 @@ msgstr ""
|
|
2344 |
msgid "Send License Key"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: templates/forms/resend-key.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2348 |
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
2349 |
msgstr ""
|
2350 |
|
@@ -2356,10 +1750,6 @@ msgstr ""
|
|
2356 |
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?"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: templates/forms/subscription-cancellation.php:52
|
2360 |
-
msgid "license"
|
2361 |
-
msgstr ""
|
2362 |
-
|
2363 |
#: templates/forms/subscription-cancellation.php:57
|
2364 |
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."
|
2365 |
msgstr ""
|
@@ -2380,18 +1770,25 @@ msgstr ""
|
|
2380 |
msgid "Proceed"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:
|
2384 |
msgid "Cancel %s & Proceed"
|
2385 |
msgstr ""
|
2386 |
|
|
|
2387 |
#: templates/forms/trial-start.php:22
|
2388 |
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
2389 |
msgstr ""
|
2390 |
|
|
|
2391 |
#: templates/forms/trial-start.php:28
|
2392 |
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."
|
2393 |
msgstr ""
|
2394 |
|
|
|
|
|
|
|
|
|
|
|
2395 |
#: templates/forms/user-change.php:26
|
2396 |
msgid "By changing the user, you agree to transfer the account ownership to:"
|
2397 |
msgstr ""
|
@@ -2404,44 +1801,31 @@ msgstr ""
|
|
2404 |
msgid "Enter email address"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: templates/
|
2408 |
-
|
2409 |
-
msgid "Dismiss"
|
2410 |
-
msgstr ""
|
2411 |
-
|
2412 |
-
#: templates/js/style-premium-theme.php:39
|
2413 |
-
msgid "Premium"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: templates/
|
2417 |
-
msgid "
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: templates/partials/network-activation.php:
|
2421 |
msgid "Activate license on all sites in the network."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: templates/partials/network-activation.php:
|
2425 |
msgid "Apply on all sites in the network."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: templates/partials/network-activation.php:
|
2429 |
-
msgid "Activate license on all pending sites."
|
2430 |
-
msgstr ""
|
2431 |
-
|
2432 |
-
#: templates/partials/network-activation.php:32
|
2433 |
-
msgid "Apply on all pending sites."
|
2434 |
-
msgstr ""
|
2435 |
-
|
2436 |
-
#: templates/partials/network-activation.php:40, templates/partials/network-activation.php:74
|
2437 |
msgid "allow"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: templates/partials/network-activation.php:
|
2441 |
msgid "delegate"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: templates/partials/network-activation.php:
|
2445 |
msgid "skip"
|
2446 |
msgstr ""
|
2447 |
|
@@ -2449,6 +1833,10 @@ msgstr ""
|
|
2449 |
msgid "Click to view full-size screenshot %d"
|
2450 |
msgstr ""
|
2451 |
|
|
|
|
|
|
|
|
|
2452 |
#: templates/plugin-info/features.php:56
|
2453 |
msgid "Unlimited Updates"
|
2454 |
msgstr ""
|
@@ -2467,16 +1855,24 @@ msgid "Last license"
|
|
2467 |
msgstr ""
|
2468 |
|
2469 |
#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
|
2470 |
-
#: templates/account/partials/addon.php:
|
2471 |
msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: templates/account/partials/addon.php:
|
|
|
|
|
|
|
|
|
2475 |
msgid "Cancelled"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: templates/account/partials/
|
2479 |
-
msgid "
|
|
|
|
|
|
|
|
|
2480 |
msgstr ""
|
2481 |
|
2482 |
#: templates/account/partials/site.php:189
|
@@ -2503,47 +1899,63 @@ msgstr ""
|
|
2503 |
msgid "Contact Support"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: templates/forms/deactivation/form.php:
|
2507 |
msgid "Anonymous feedback"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: templates/forms/deactivation/form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2511 |
msgid "Deactivate"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: templates/forms/deactivation/form.php:
|
2515 |
msgid "Activate %s"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: templates/forms/deactivation/form.php:
|
|
|
|
|
|
|
|
|
2519 |
msgid "Quick Feedback"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: templates/forms/deactivation/form.php:
|
2523 |
msgid "If you have a moment, please let us know why you are %s"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: templates/forms/deactivation/form.php:
|
2527 |
msgid "deactivating"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: templates/forms/deactivation/form.php:
|
2531 |
msgid "switching"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: templates/forms/deactivation/form.php:
|
2535 |
-
msgid "
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: templates/forms/deactivation/form.php:
|
2539 |
-
msgid "
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: templates/forms/deactivation/form.php:
|
2543 |
msgid "Yes - %s"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: templates/forms/deactivation/form.php:
|
2547 |
msgid "Skip & %s"
|
2548 |
msgstr ""
|
2549 |
|
1 |
+
# Copyright (C) 2022 freemius
|
2 |
# This file is distributed under the same license as the freemius package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Language-Team: Freemius Team <admin@freemius.com>\n"
|
10 |
"Last-Translator: Vova Feldman <vova@freemius.com>\n"
|
11 |
+
"POT-Creation-Date: 2022-07-06 12:49+0000\n"
|
12 |
"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"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"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
+
#: includes/class-freemius.php:1932, templates/account.php:941
|
21 |
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."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/class-freemius.php:1939
|
25 |
msgid "Would you like to proceed with the update?"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/class-freemius.php:3751, templates/debug.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "Freemius Debug"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/class-freemius.php:13791
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "An unknown error has occurred while trying to toggle the license's white-label mode."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: includes/class-freemius.php:13869
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
msgid "An unknown error has occurred while trying to set the user's beta mode."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: includes/class-freemius.php:13942
|
41 |
msgid "Invalid new user ID or email address."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/class-freemius.php:23326
|
45 |
+
msgid "Bundle"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgstr ""
|
47 |
|
48 |
#: includes/class-fs-plugin-updater.php:206, templates/forms/premium-versions-upgrade-handler.php:57
|
53 |
msgid "Buy license"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/class-fs-plugin-updater.php:364, includes/class-fs-plugin-updater.php:331
|
57 |
msgid "There is a %s of %s available."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/class-fs-plugin-updater.php:369, includes/class-fs-plugin-updater.php:333
|
61 |
msgid "new Beta version"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/class-fs-plugin-updater.php:370, includes/class-fs-plugin-updater.php:334
|
65 |
msgid "new version"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-fs-plugin-updater.php:393
|
69 |
msgid "Important Upgrade Notice:"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/class-fs-plugin-updater.php:1551
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
|
74 |
msgstr ""
|
75 |
|
77 |
msgid "Purchase More"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/fs-plugin-info-dialog.php:542, templates/account/partials/addon.php:390
|
81 |
msgctxt "verb"
|
82 |
msgid "Purchase"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#. translators: %s: N-days trial
|
86 |
#: includes/fs-plugin-info-dialog.php:546
|
87 |
msgid "Start my free %s"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/fs-plugin-info-dialog.php:754
|
91 |
+
msgid "Install Free Version Now"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/fs-plugin-info-dialog.php:755, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:423, templates/account/partials/addon.php:370
|
95 |
+
msgid "Install Now"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/fs-plugin-info-dialog.php:744
|
99 |
+
msgid "Install Free Version Update Now"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/fs-plugin-info-dialog.php:745, templates/account.php:650
|
103 |
+
msgid "Install Update Now"
|
104 |
msgstr ""
|
105 |
|
106 |
#: includes/fs-plugin-info-dialog.php:771
|
108 |
msgid "Download Latest Free Version"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/fs-plugin-info-dialog.php:772, templates/account.php:109, templates/add-ons.php:37, templates/account/partials/addon.php:30
|
112 |
msgctxt "as download latest version"
|
113 |
msgid "Download Latest"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/fs-plugin-info-dialog.php:787, templates/add-ons.php:329, templates/account/partials/addon.php:417, templates/account/partials/addon.php:361
|
117 |
msgid "Activate this add-on"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/fs-plugin-info-dialog.php:789, templates/connect.php:483
|
121 |
msgid "Activate Free Version"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/fs-plugin-info-dialog.php:790, templates/account.php:133, templates/add-ons.php:330, templates/account/partials/addon.php:53
|
125 |
msgid "Activate"
|
126 |
msgstr ""
|
127 |
|
234 |
msgid "Price"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#. translators: %s: Discount (e.g. discount of $5 or 10%)
|
238 |
#: includes/fs-plugin-info-dialog.php:1290
|
239 |
msgid "Save %s"
|
240 |
msgstr ""
|
251 |
msgid "Details"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/fs-plugin-info-dialog.php:1318, templates/account.php:120, templates/debug.php:215, templates/debug.php:252, templates/debug.php:466, templates/account/partials/addon.php:41
|
255 |
msgctxt "product version"
|
256 |
msgid "Version"
|
257 |
msgstr ""
|
265 |
msgid "Last Updated"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#. translators: %s: time period (e.g. "2 hours" ago)
|
269 |
+
#: includes/fs-plugin-info-dialog.php:1337, templates/account.php:536
|
270 |
msgctxt "x-ago"
|
271 |
msgid "%s ago"
|
272 |
msgstr ""
|
287 |
msgid "Downloaded"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#. translators: %s: 1 or One (Number of times downloaded)
|
291 |
#: includes/fs-plugin-info-dialog.php:1366
|
292 |
msgid "%s time"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#. translators: %s: Number of times downloaded
|
296 |
#: includes/fs-plugin-info-dialog.php:1368
|
297 |
msgid "%s times"
|
298 |
msgstr ""
|
317 |
msgid "based on %s"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#. translators: %s: 1 or One
|
321 |
#: includes/fs-plugin-info-dialog.php:1415
|
322 |
msgid "%s rating"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#. translators: %s: Number larger than 1
|
326 |
#: includes/fs-plugin-info-dialog.php:1417
|
327 |
msgid "%s ratings"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#. translators: %s: 1 or One
|
331 |
#: includes/fs-plugin-info-dialog.php:1432
|
332 |
msgid "%s star"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#. translators: %s: Number larger than 1
|
336 |
#: includes/fs-plugin-info-dialog.php:1434
|
337 |
msgid "%s stars"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#. translators: %s: # of stars (e.g. 5 stars)
|
341 |
#: includes/fs-plugin-info-dialog.php:1446
|
342 |
msgid "Click to see reviews that provided a rating of %s"
|
343 |
msgstr ""
|
346 |
msgid "Contributors"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/fs-plugin-info-dialog.php:1491, includes/fs-plugin-info-dialog.php:1489
|
350 |
msgid "Warning"
|
351 |
msgstr ""
|
352 |
|
|
|
|
|
|
|
|
|
353 |
#: includes/fs-plugin-info-dialog.php:1491
|
354 |
msgid "This plugin has not been marked as compatible with your version of WordPress."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/fs-plugin-info-dialog.php:1489
|
358 |
+
msgid "This plugin has not been tested with your current version of WordPress."
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
#: includes/fs-plugin-info-dialog.php:1510
|
362 |
msgid "Paid add-on must be deployed to Freemius."
|
363 |
msgstr ""
|
366 |
msgid "Add-on must be deployed to WordPress.org or Freemius."
|
367 |
msgstr ""
|
368 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
#: includes/fs-plugin-info-dialog.php:1540
|
370 |
msgid "Latest Version Installed"
|
371 |
msgstr ""
|
374 |
msgid "Latest Free Version Installed"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/fs-plugin-info-dialog.php:1532
|
378 |
+
msgid "Newer Version (%s) Installed"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/fs-plugin-info-dialog.php:1533
|
382 |
+
msgid "Newer Free Version (%s) Installed"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: templates/account.php:110, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:311
|
386 |
msgid "Downgrading your plan"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: templates/account.php:111, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:312
|
390 |
msgid "Cancelling the subscription"
|
391 |
msgstr ""
|
392 |
|
393 |
#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
|
394 |
+
#: templates/account.php:113, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314
|
395 |
msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: templates/account.php:114, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:315
|
399 |
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."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: templates/account.php:115, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36
|
403 |
msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: templates/account.php:116, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:316
|
407 |
msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: templates/account.php:117, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:317
|
411 |
msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
|
412 |
msgstr ""
|
413 |
|
414 |
#. translators: %s: Plan title (e.g. "Professional")
|
415 |
+
#: templates/account.php:119, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:40
|
416 |
msgid "Activate %s Plan"
|
417 |
msgstr ""
|
418 |
|
419 |
#. translators: %s: Time period (e.g. Auto renews in "2 months")
|
420 |
+
#: templates/account.php:122, templates/account/partials/addon.php:43, templates/account/partials/site.php:291
|
421 |
msgid "Auto renews in %s"
|
422 |
msgstr ""
|
423 |
|
424 |
#. translators: %s: Time period (e.g. Expires in "2 months")
|
425 |
+
#: templates/account.php:124, templates/account/partials/addon.php:45, templates/account/partials/site.php:293
|
426 |
msgid "Expires in %s"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: templates/account.php:125
|
430 |
msgctxt "as synchronize license"
|
431 |
msgid "Sync License"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: templates/account.php:126, templates/account/partials/addon.php:46
|
435 |
msgid "Cancel Trial"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: templates/account.php:127, templates/account/partials/addon.php:47
|
439 |
msgid "Change Plan"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: templates/account.php:128, templates/account/partials/addon.php:48
|
443 |
msgctxt "verb"
|
444 |
msgid "Upgrade"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: templates/account.php:129, templates/account/partials/addon.php:49
|
448 |
+
msgid "Add-Ons"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: templates/account.php:130, templates/account/partials/addon.php:50, templates/account/partials/site.php:318
|
452 |
msgctxt "verb"
|
453 |
msgid "Downgrade"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: templates/account.php:131, templates/add-ons.php:250, templates/account/partials/addon.php:51
|
457 |
+
msgctxt "trial period"
|
458 |
+
msgid "Trial"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: templates/account.php:132, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33
|
462 |
msgid "Free"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: templates/account.php:134, templates/debug.php:385, templates/account/partials/addon.php:54
|
466 |
msgctxt "as product pricing plan"
|
467 |
msgid "Plan"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: templates/account.php:135
|
471 |
msgid "Bundle Plan"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: templates/account.php:251, templates/debug.php:338
|
475 |
+
msgid "Account"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: templates/account.php:259
|
479 |
msgid "Free Trial"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: templates/account.php:270
|
483 |
msgid "Account Details"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: templates/account.php:279
|
487 |
+
msgid "Stop Debug"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: templates/account.php:277, templates/forms/data-debug-mode.php:33
|
491 |
+
msgid "Start Debug"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: templates/account.php:286
|
495 |
msgid "Billing & Invoices"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: templates/account.php:299
|
499 |
+
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?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: templates/account.php:297
|
503 |
+
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?"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: templates/account.php:302
|
507 |
msgid "Delete Account"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: templates/account.php:314, templates/account/partials/addon.php:236, templates/account/partials/deactivate-license-button.php:35
|
511 |
msgid "Deactivate License"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: templates/account.php:337, templates/forms/subscription-cancellation.php:125
|
515 |
msgid "Are you sure you want to proceed?"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: templates/account.php:337, templates/account/partials/addon.php:260
|
519 |
msgid "Cancel Subscription"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: templates/account.php:366, templates/account/partials/addon.php:345
|
523 |
msgctxt "as synchronize"
|
524 |
msgid "Sync"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: templates/account.php:381, templates/debug.php:523
|
528 |
msgid "Name"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: templates/account.php:387, templates/debug.php:524
|
532 |
msgid "Email"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: templates/account.php:394, templates/debug.php:383, templates/debug.php:573
|
536 |
msgid "User ID"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: templates/account.php:403, templates/account.php:411, templates/debug.php:372, templates/debug.php:567
|
540 |
+
msgid "Plugin"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: templates/account.php:404, templates/account.php:412, templates/debug.php:372, templates/debug.php:567, templates/forms/deactivation/form.php:107
|
544 |
+
msgid "Theme"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: templates/account.php:412, templates/account.php:732, templates/account.php:783, templates/debug.php:250, templates/debug.php:377, templates/debug.php:463, templates/debug.php:522, templates/debug.php:571, templates/debug.php:650, templates/account/payments.php:35, templates/debug/logger.php:21
|
548 |
msgid "ID"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: templates/account.php:419
|
552 |
msgid "Site ID"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: templates/account.php:422
|
556 |
msgid "No ID"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: templates/account.php:427, templates/debug.php:257, templates/debug.php:386, templates/debug.php:467, templates/debug.php:526, templates/account/partials/site.php:227
|
560 |
msgid "Public Key"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: templates/account.php:433, templates/debug.php:387, templates/debug.php:468, templates/debug.php:527, templates/account/partials/site.php:239
|
564 |
msgid "Secret Key"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: templates/account.php:436
|
568 |
msgctxt "as secret encryption key missing"
|
569 |
msgid "No Secret"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: templates/account.php:490, templates/debug.php:579, templates/account/partials/site.php:260
|
573 |
+
msgid "License Key"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: templates/account.php:463, templates/account/partials/site.php:122, templates/account/partials/site.php:120
|
577 |
+
msgid "Trial"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: templates/account.php:521
|
581 |
msgid "Join the Beta program"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: templates/account.php:527
|
585 |
msgid "not verified"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: templates/account.php:598
|
589 |
+
msgid "Free version"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: templates/account.php:596
|
593 |
msgid "Premium version"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: templates/account.php:536, templates/account/partials/addon.php:195
|
597 |
+
msgid "Expired"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: templates/account.php:567, templates/account.php:719, templates/connect.php:198, templates/connect.php:486, includes/managers/class-fs-clone-manager.php:1123, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326
|
601 |
+
msgid "Activate License"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: templates/account.php:610
|
605 |
msgid "Verify Email"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: templates/account.php:687, templates/forms/user-change.php:27
|
609 |
+
msgid "Change User"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: templates/account.php:674
|
613 |
+
msgid "What is your %s?"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: templates/account.php:682, templates/account/billing.php:21
|
617 |
+
msgctxt "verb"
|
618 |
+
msgid "Edit"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: templates/account.php:658, templates/account.php:921, templates/account/partials/site.php:248, templates/account/partials/site.php:270
|
622 |
msgctxt "verb"
|
623 |
msgid "Show"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: templates/account.php:661, templates/account.php:718, templates/account/partials/addon.php:327, templates/account/partials/site.php:271
|
627 |
+
msgid "Change License"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: templates/account.php:624
|
631 |
+
msgid "Download %s Version"
|
|
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: templates/account.php:640
|
635 |
+
msgid "Download Paid Version"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: templates/account.php:711
|
639 |
msgid "Sites"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: templates/account.php:724
|
643 |
msgid "Search by address"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: templates/account.php:733, templates/debug.php:380
|
647 |
msgid "Address"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: templates/account.php:734
|
651 |
msgid "License"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: templates/account.php:735
|
655 |
msgid "Plan"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: templates/account.php:786
|
659 |
msgctxt "as software license"
|
660 |
msgid "License"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: templates/account.php:915
|
664 |
msgctxt "verb"
|
665 |
msgid "Hide"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: templates/account.php:937, templates/forms/data-debug-mode.php:31, templates/forms/deactivation/form.php:358, templates/forms/deactivation/form.php:389
|
669 |
msgid "Processing"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: templates/account.php:940
|
673 |
msgid "Get updates for bleeding edge Beta versions of %s."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: templates/account.php:998
|
677 |
msgid "Cancelling %s"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: templates/account.php:998, templates/account.php:1015, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:178
|
681 |
msgid "trial"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: templates/account.php:1013, templates/forms/deactivation/form.php:195
|
685 |
msgid "Cancelling %s..."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: templates/account.php:1016, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:179
|
689 |
msgid "subscription"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: templates/account.php:1030
|
693 |
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?"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: templates/account.php:1104
|
697 |
msgid "Disabling white-label mode"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: templates/account.php:1105
|
701 |
msgid "Enabling white-label mode"
|
702 |
msgstr ""
|
703 |
|
709 |
msgid "Add Ons for %s"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: templates/add-ons.php:57
|
713 |
+
msgctxt "exclamation"
|
714 |
+
msgid "Oops"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
#: templates/add-ons.php:58
|
718 |
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."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: templates/add-ons.php:186, templates/account/partials/addon.php:386
|
722 |
+
msgid "More information about %s"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
#: templates/add-ons.php:229
|
726 |
msgctxt "active add-on"
|
727 |
msgid "Active"
|
732 |
msgid "Installed"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: templates/admin-notice.php:13, templates/forms/license-activation.php:250, templates/forms/resend-key.php:80
|
736 |
msgctxt "as close a window"
|
737 |
msgid "Dismiss"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: templates/auto-installation.php:32
|
741 |
+
msgid "Add-On"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#. translators: %s: Number of seconds
|
745 |
#: templates/auto-installation.php:45
|
746 |
msgid "%s sec"
|
747 |
msgstr ""
|
762 |
msgid "Cancel Installation"
|
763 |
msgstr ""
|
764 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
765 |
#. translators: %s: name (e.g. Hey John,)
|
766 |
+
#: templates/connect.php:121
|
767 |
msgctxt "greeting"
|
768 |
msgid "Hey %s,"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: templates/connect.php:181
|
772 |
msgid "Allow & Continue"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: templates/connect.php:210, templates/connect.php:217
|
776 |
+
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."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: templates/connect.php:211, templates/connect.php:218
|
780 |
+
msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: templates/connect.php:221
|
784 |
+
msgid "If you skip this, that's okay! %1$s will still work just fine."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: templates/connect.php:199, templates/forms/license-activation.php:46
|
788 |
msgid "Agree & Activate License"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: templates/connect.php:203
|
792 |
msgid "Welcome to %s! To get started, please enter your license key:"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: templates/connect.php:185
|
796 |
+
msgid "Re-send activation email"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: templates/connect.php:189
|
800 |
+
msgid "Thanks %s!"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: templates/connect.php:190
|
804 |
+
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."
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: templates/connect.php:194
|
808 |
+
msgid "complete the install"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: templates/connect.php:251
|
812 |
msgid "We're excited to introduce the Freemius network-level integration."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: templates/connect.php:265
|
816 |
+
msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: templates/connect.php:254
|
820 |
msgid "During the update process we detected %d site(s) that are still pending license activation."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: templates/connect.php:256
|
824 |
msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: templates/connect.php:258
|
828 |
msgid "%s's paid features"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: templates/connect.php:263
|
832 |
msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: templates/connect.php:274, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49
|
|
|
|
|
|
|
|
|
836 |
msgid "License key"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: templates/connect.php:277, templates/forms/license-activation.php:22
|
840 |
msgid "Can't find your license key?"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: templates/connect.php:308
|
844 |
+
msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: templates/connect.php:340, templates/connect.php:730, templates/forms/deactivation/retry-skip.php:20
|
848 |
msgctxt "verb"
|
849 |
msgid "Skip"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: templates/connect.php:343
|
853 |
msgid "Delegate to Site Admins"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: templates/connect.php:343
|
857 |
msgid "If you click it, this decision will be delegated to the sites administrators."
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: templates/connect.php:368
|
861 |
msgid "License issues?"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: templates/connect.php:454
|
865 |
+
msgid "What permissions are being granted?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: templates/connect.php:448
|
869 |
msgid "The %1$s will periodically send %2$s to %3$s for security & feature updates delivery, and license management."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: templates/connect.php:450
|
873 |
msgid "diagnostic data"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: templates/connect.php:485
|
877 |
+
msgid "Have a license key?"
|
|
|
|
|
|
|
|
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: templates/connect.php:482
|
881 |
msgid "Don't have a license key?"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: templates/connect.php:493
|
|
|
|
|
|
|
|
|
885 |
msgid "Privacy Policy"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: templates/connect.php:495
|
889 |
msgid "License Agreement"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: templates/connect.php:495
|
893 |
msgid "Terms of Service"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: templates/connect.php:896
|
897 |
msgctxt "as in the process of sending an email"
|
898 |
msgid "Sending email"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: templates/connect.php:897
|
902 |
msgctxt "as activating plugin"
|
903 |
msgid "Activating"
|
904 |
msgstr ""
|
905 |
|
|
|
|
|
|
|
|
|
906 |
#: templates/debug.php:17
|
907 |
msgctxt "as turned off"
|
908 |
msgid "Off"
|
922 |
msgid "Debugging"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: templates/debug.php:54, templates/debug.php:262, templates/debug.php:388, templates/debug.php:528
|
926 |
msgid "Actions"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: templates/debug.php:64
|
930 |
msgid "Are you sure you want to delete all Freemius data?"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: templates/debug.php:64
|
934 |
msgid "Delete All Accounts"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: templates/debug.php:71
|
938 |
msgid "Clear API Cache"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: templates/debug.php:79
|
942 |
msgid "Clear Updates Transients"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: templates/debug.php:88
|
946 |
+
msgid "Reset Deactivation Snoozing"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: templates/debug.php:96
|
950 |
msgid "Sync Data From Server"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: templates/debug.php:105
|
954 |
msgid "Migrate Options to Network"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: templates/debug.php:110
|
958 |
msgid "Load DB Option"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: templates/debug.php:113
|
962 |
msgid "Set DB Option"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: templates/debug.php:194
|
966 |
msgid "Key"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: templates/debug.php:195
|
970 |
msgid "Value"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: templates/debug.php:211
|
974 |
msgctxt "as software development kit versions"
|
975 |
msgid "SDK Versions"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: templates/debug.php:216
|
979 |
msgid "SDK Path"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: templates/debug.php:217, templates/debug.php:256
|
983 |
msgid "Module Path"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: templates/debug.php:218
|
987 |
msgid "Is Active"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: templates/debug.php:246, templates/debug/plugins-themes-sync.php:35
|
991 |
msgid "Plugins"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: templates/debug.php:246, templates/debug/plugins-themes-sync.php:56
|
995 |
msgid "Themes"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: templates/debug.php:251, templates/debug.php:382, templates/debug.php:465, templates/debug/scheduled-crons.php:80
|
999 |
msgid "Slug"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: templates/debug.php:253, templates/debug.php:464
|
1003 |
msgid "Title"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: templates/debug.php:254
|
1007 |
msgctxt "as application program interface"
|
1008 |
msgid "API"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: templates/debug.php:255
|
1012 |
msgid "Freemius State"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: templates/debug.php:259
|
1016 |
msgid "Network Blog"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: templates/debug.php:260
|
1020 |
msgid "Network User"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: templates/debug.php:297
|
1024 |
msgctxt "as connection was successful"
|
1025 |
msgid "Connected"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: templates/debug.php:298
|
1029 |
msgctxt "as connection blocked"
|
1030 |
msgid "Blocked"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: templates/debug.php:334
|
1034 |
msgid "Simulate Trial Promotion"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: templates/debug.php:346
|
1038 |
msgid "Simulate Network Upgrade"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#. translators: %s: 'plugin' or 'theme'
|
1042 |
+
#: templates/debug.php:371
|
1043 |
msgid "%s Installs"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: templates/debug.php:373
|
1047 |
msgctxt "like websites"
|
1048 |
msgid "Sites"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: templates/debug.php:379, templates/account/partials/site.php:156
|
1052 |
msgid "Blog ID"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: templates/debug.php:384
|
1056 |
msgid "License ID"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: templates/debug.php:445, templates/debug.php:551, templates/account/partials/addon.php:440
|
1060 |
msgctxt "verb"
|
1061 |
msgid "Delete"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: templates/debug.php:459
|
1065 |
msgid "Add Ons of module %s"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: templates/debug.php:518
|
1069 |
msgid "Users"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: templates/debug.php:525
|
1073 |
msgid "Verified"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: templates/debug.php:567
|
1077 |
msgid "%s Licenses"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: templates/debug.php:572
|
1081 |
msgid "Plugin ID"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: templates/debug.php:574
|
1085 |
msgid "Plan ID"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: templates/debug.php:575
|
1089 |
msgid "Quota"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: templates/debug.php:576
|
1093 |
msgid "Activated"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: templates/debug.php:577
|
1097 |
msgid "Blocking"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: templates/debug.php:578, templates/debug.php:649, templates/debug/logger.php:22
|
1101 |
msgid "Type"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: templates/debug.php:580
|
1105 |
msgctxt "as expiration date"
|
1106 |
msgid "Expiration"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: templates/debug.php:608
|
1110 |
msgid "Debug Log"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: templates/debug.php:612
|
1114 |
msgid "All Types"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: templates/debug.php:619
|
1118 |
msgid "All Requests"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: templates/debug.php:624, templates/debug.php:653, templates/debug/logger.php:25
|
1122 |
msgid "File"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: templates/debug.php:625, templates/debug.php:651, templates/debug/logger.php:23
|
1126 |
msgid "Function"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: templates/debug.php:626
|
1130 |
msgid "Process ID"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: templates/debug.php:627
|
1134 |
msgid "Logger"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: templates/debug.php:628, templates/debug.php:652, templates/debug/logger.php:24
|
1138 |
msgid "Message"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: templates/debug.php:630
|
1142 |
msgid "Filter"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: templates/debug.php:638
|
1146 |
msgid "Download"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: templates/debug.php:654, templates/debug/logger.php:26
|
1150 |
msgid "Timestamp"
|
1151 |
msgstr ""
|
1152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1153 |
#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62
|
1154 |
msgctxt "milliseconds"
|
1155 |
msgid "ms"
|
1163 |
msgid "Requests"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/managers/class-fs-clone-manager.php:703
|
1167 |
+
msgid "Invalid clone resolution action."
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/managers/class-fs-clone-manager.php:851
|
1171 |
+
msgid "products"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: includes/managers/class-fs-clone-manager.php:1039
|
1175 |
+
msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/managers/class-fs-clone-manager.php:1040
|
1179 |
+
msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/managers/class-fs-clone-manager.php:1033
|
1183 |
+
msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/managers/class-fs-clone-manager.php:1066
|
1187 |
+
msgid "the above-mentioned sites"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/managers/class-fs-clone-manager.php:1079
|
1191 |
+
msgid "Is %2$s a duplicate of %4$s?"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/managers/class-fs-clone-manager.php:1080
|
1195 |
+
msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development."
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/managers/class-fs-clone-manager.php:1085
|
1199 |
+
msgid "Long-Term Duplicate"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/managers/class-fs-clone-manager.php:1090
|
1203 |
+
msgid "Duplicate Website"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/managers/class-fs-clone-manager.php:1096
|
1207 |
+
msgid "Is %2$s the new home of %4$s?"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/managers/class-fs-clone-manager.php:1098
|
1211 |
+
msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/managers/class-fs-clone-manager.php:1099, templates/forms/subscription-cancellation.php:52
|
1215 |
+
msgid "license"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/managers/class-fs-clone-manager.php:1099
|
1219 |
+
msgid "data"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/managers/class-fs-clone-manager.php:1105
|
1223 |
+
msgid "Migrate License"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/managers/class-fs-clone-manager.php:1106
|
1227 |
+
msgid "Migrate"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/managers/class-fs-clone-manager.php:1112
|
1231 |
+
msgid "Is %2$s a new website?"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/managers/class-fs-clone-manager.php:1113
|
1235 |
+
msgid "Yes, %2$s is a new and different website that is separate from %4$s."
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/managers/class-fs-clone-manager.php:1115
|
1239 |
+
msgid "It requires license activation."
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/managers/class-fs-clone-manager.php:1122
|
1243 |
+
msgid "New Website"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/managers/class-fs-clone-manager.php:1145
|
1247 |
+
msgctxt "Clone resolution admin notice products list label"
|
1248 |
+
msgid "Products"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/managers/class-fs-clone-manager.php:1230
|
1252 |
+
msgid "You marked this website, %s, as a temporary duplicate of %s."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/managers/class-fs-clone-manager.php:1231
|
1256 |
+
msgid "You marked this website, %s, as a temporary duplicate of these sites"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: includes/managers/class-fs-clone-manager.php:1245
|
1260 |
+
msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/managers/class-fs-clone-manager.php:1248
|
1264 |
+
msgctxt "\"The <product_label>\", e.g.: \"The plugin\""
|
1265 |
+
msgid "The %s's"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: includes/managers/class-fs-clone-manager.php:1251
|
1269 |
+
msgid "The following products'"
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: includes/managers/class-fs-clone-manager.php:1259
|
1273 |
+
msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: includes/managers/class-fs-clone-manager.php:1261
|
1277 |
+
msgid "activate a license here"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
#: templates/account/billing.php:22
|
1281 |
msgctxt "verb"
|
1282 |
msgid "Update"
|
1430 |
msgid "Next"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: templates/forms/affiliation.php:83
|
1434 |
msgid "Non-expiring"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: templates/forms/affiliation.php:86
|
1438 |
msgid "Apply to become an affiliate"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: templates/forms/affiliation.php:132
|
1442 |
+
msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: templates/forms/affiliation.php:129
|
1446 |
+
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."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: templates/forms/affiliation.php:126
|
1450 |
msgid "Your affiliation account was temporarily suspended."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: templates/forms/affiliation.php:123
|
1454 |
+
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."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: templates/forms/affiliation.php:108
|
1458 |
+
msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: templates/forms/affiliation.php:145
|
1462 |
msgid "Like the %s? Become our ambassador and earn cash ;-)"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: templates/forms/affiliation.php:146
|
1466 |
msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: templates/forms/affiliation.php:149
|
1470 |
msgid "Program Summary"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: templates/forms/affiliation.php:151
|
1474 |
msgid "%s commission when a customer purchases a new license."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: templates/forms/affiliation.php:153
|
1478 |
msgid "Get commission for automated subscription renewals."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: templates/forms/affiliation.php:156
|
1482 |
msgid "%s tracking cookie after the first visit to maximize earnings potential."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: templates/forms/affiliation.php:159
|
1486 |
msgid "Unlimited commissions."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: templates/forms/affiliation.php:161
|
1490 |
msgid "%s minimum payout amount."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: templates/forms/affiliation.php:162
|
1494 |
msgid "Payouts are in USD and processed monthly via PayPal."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: templates/forms/affiliation.php:163
|
1498 |
msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: templates/forms/affiliation.php:166
|
1502 |
msgid "Affiliate"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: templates/forms/affiliation.php:169, templates/forms/resend-key.php:23
|
1506 |
msgid "Email address"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: templates/forms/affiliation.php:173
|
1510 |
msgid "Full name"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: templates/forms/affiliation.php:177
|
1514 |
msgid "PayPal account email address"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: templates/forms/affiliation.php:181
|
1518 |
msgid "Where are you going to promote the %s?"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: templates/forms/affiliation.php:183
|
1522 |
msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: templates/forms/affiliation.php:185
|
1526 |
msgid "Add another domain"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: templates/forms/affiliation.php:189
|
1530 |
msgid "Extra Domains"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: templates/forms/affiliation.php:190
|
1534 |
msgid "Extra domains where you will be marketing the product from."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: templates/forms/affiliation.php:200
|
1538 |
msgid "Promotion methods"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: templates/forms/affiliation.php:203
|
1542 |
msgid "Social media (Facebook, Twitter, etc.)"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: templates/forms/affiliation.php:207
|
1546 |
msgid "Mobile apps"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: templates/forms/affiliation.php:211
|
1550 |
msgid "Website, email, and social media statistics (optional)"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: templates/forms/affiliation.php:214
|
1554 |
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)."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: templates/forms/affiliation.php:218
|
1558 |
msgid "How will you promote us?"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: templates/forms/affiliation.php:221
|
1562 |
msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: templates/forms/affiliation.php:233, templates/forms/resend-key.php:22
|
1566 |
msgid "Cancel"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: templates/forms/affiliation.php:235
|
1570 |
msgid "Become an affiliate"
|
1571 |
msgstr ""
|
1572 |
|
1586 |
msgid "User key"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: templates/forms/data-debug-mode.php:162
|
1590 |
+
msgid "An unknown error has occurred."
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: templates/forms/email-address-update.php:32
|
1594 |
+
msgid "Email address update"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: templates/forms/email-address-update.php:33, templates/forms/user-change.php:81
|
1598 |
+
msgctxt "close window"
|
1599 |
+
msgid "Dismiss"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: templates/forms/email-address-update.php:38
|
1603 |
+
msgid "Enter the new email address"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: templates/forms/email-address-update.php:42
|
1607 |
+
msgid "Are both %s and %s your email addresses?"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: templates/forms/email-address-update.php:50
|
1611 |
+
msgid "Yes - both addresses are mine"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: templates/forms/email-address-update.php:57
|
1615 |
+
msgid "%s is my client's email address"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: templates/forms/email-address-update.php:66
|
1619 |
+
msgid "%s is my email address"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: templates/forms/email-address-update.php:75
|
1623 |
+
msgid "Would you like to merge %s into %s?"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: templates/forms/email-address-update.php:84
|
1627 |
+
msgid "Yes - move all my data and assets from %s to %s"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: templates/forms/email-address-update.php:94
|
1631 |
+
msgid "No - only move this site's data to %s"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: templates/forms/email-address-update.php:292, templates/forms/email-address-update.php:298
|
1635 |
+
msgid "Update"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
#: templates/forms/license-activation.php:23
|
1639 |
msgid "Please enter the license key that you received in the email right after the purchase:"
|
1640 |
msgstr ""
|
1647 |
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."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: templates/forms/license-activation.php:211
|
1651 |
msgid "Associate with the license owner's account."
|
1652 |
msgstr ""
|
1653 |
|
1661 |
msgid "Opt In"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: templates/forms/optout.php:41
|
1665 |
+
msgid "We appreciate your help in making the %s better by letting us track some usage data."
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: templates/forms/optout.php:44
|
1669 |
+
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."
|
1670 |
+
msgstr ""
|
1671 |
+
|
1672 |
+
#: templates/forms/optout.php:45
|
1673 |
+
msgid "On second thought - I want to continue helping"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
#: templates/forms/optout.php:34
|
1677 |
msgid "Connectivity to the licensing engine was successfully re-established. Automatic security & feature updates are now available through the WP Admin Dashboard."
|
1678 |
msgstr ""
|
1689 |
msgid "I'd like to keep automatic updates"
|
1690 |
msgstr ""
|
1691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
#: templates/forms/optout.php:49
|
1693 |
msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
|
1694 |
msgstr ""
|
1709 |
msgid " %s to access version %s security & feature updates, and support."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: templates/forms/premium-versions-upgrade-handler.php:46
|
1713 |
+
msgid "Renew your license now"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: templates/forms/premium-versions-upgrade-handler.php:47
|
1717 |
+
msgid "Buy a license now"
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
#: templates/forms/premium-versions-upgrade-handler.php:54
|
1721 |
msgid "New Version Available"
|
1722 |
msgstr ""
|
1730 |
msgid "Send License Key"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: templates/forms/resend-key.php:24, templates/forms/user-change.php:29
|
1734 |
+
msgid "Other"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: templates/forms/resend-key.php:58
|
1738 |
+
msgid "Enter the email address you've used during the purchase and we will resend you the license key."
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: templates/forms/resend-key.php:59
|
1742 |
msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
|
1743 |
msgstr ""
|
1744 |
|
1750 |
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?"
|
1751 |
msgstr ""
|
1752 |
|
|
|
|
|
|
|
|
|
1753 |
#: templates/forms/subscription-cancellation.php:57
|
1754 |
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."
|
1755 |
msgstr ""
|
1770 |
msgid "Proceed"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:216
|
1774 |
msgid "Cancel %s & Proceed"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#. translators: %1$s: Number of trial days; %2$s: Plan name;
|
1778 |
#: templates/forms/trial-start.php:22
|
1779 |
msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#. translators: %s: Link to freemius.com
|
1783 |
#: templates/forms/trial-start.php:28
|
1784 |
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."
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: templates/forms/trial-start.php:53
|
1788 |
+
msgctxt "call to action"
|
1789 |
+
msgid "Start free trial"
|
1790 |
+
msgstr ""
|
1791 |
+
|
1792 |
#: templates/forms/user-change.php:26
|
1793 |
msgid "By changing the user, you agree to transfer the account ownership to:"
|
1794 |
msgstr ""
|
1801 |
msgid "Enter email address"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: templates/partials/network-activation.php:36
|
1805 |
+
msgid "Activate license on all pending sites."
|
|
|
|
|
|
|
|
|
|
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: templates/partials/network-activation.php:37
|
1809 |
+
msgid "Apply on all pending sites."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: templates/partials/network-activation.php:32
|
1813 |
msgid "Activate license on all sites in the network."
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: templates/partials/network-activation.php:33
|
1817 |
msgid "Apply on all sites in the network."
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: templates/partials/network-activation.php:45, templates/partials/network-activation.php:79
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1821 |
msgid "allow"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: templates/partials/network-activation.php:48, templates/partials/network-activation.php:82
|
1825 |
msgid "delegate"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: templates/partials/network-activation.php:52, templates/partials/network-activation.php:86
|
1829 |
msgid "skip"
|
1830 |
msgstr ""
|
1831 |
|
1833 |
msgid "Click to view full-size screenshot %d"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: templates/plugin-info/features.php:43
|
1837 |
+
msgid "Support"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
#: templates/plugin-info/features.php:56
|
1841 |
msgid "Unlimited Updates"
|
1842 |
msgstr ""
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription'
|
1858 |
+
#: templates/account/partials/addon.php:34
|
1859 |
msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: templates/account/partials/addon.php:200
|
1863 |
+
msgid "No expiration"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: templates/account/partials/addon.php:190
|
1867 |
msgid "Cancelled"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: templates/account/partials/site.php:49, templates/account/partials/site.php:169
|
1871 |
+
msgid "Opt In"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: templates/account/partials/site.php:169
|
1875 |
+
msgid "Opt Out"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
#: templates/account/partials/site.php:189
|
1899 |
msgid "Contact Support"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: templates/forms/deactivation/form.php:65
|
1903 |
msgid "Anonymous feedback"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: templates/forms/deactivation/form.php:71
|
1907 |
+
msgid "hour"
|
1908 |
+
msgstr ""
|
1909 |
+
|
1910 |
+
#: templates/forms/deactivation/form.php:76
|
1911 |
+
msgid "hours"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: templates/forms/deactivation/form.php:81, templates/forms/deactivation/form.php:86
|
1915 |
+
msgid "days"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: templates/forms/deactivation/form.php:106
|
1919 |
msgid "Deactivate"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: templates/forms/deactivation/form.php:108
|
1923 |
msgid "Activate %s"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: templates/forms/deactivation/form.php:111
|
1927 |
+
msgid "Submit & %s"
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: templates/forms/deactivation/form.php:130
|
1931 |
msgid "Quick Feedback"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: templates/forms/deactivation/form.php:134
|
1935 |
msgid "If you have a moment, please let us know why you are %s"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: templates/forms/deactivation/form.php:134
|
1939 |
msgid "deactivating"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: templates/forms/deactivation/form.php:134
|
1943 |
msgid "switching"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: templates/forms/deactivation/form.php:448
|
1947 |
+
msgid "Kindly tell us the reason so we can improve."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: templates/forms/deactivation/form.php:478
|
1951 |
+
msgid "Snooze & %s"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: templates/forms/deactivation/form.php:638
|
1955 |
msgid "Yes - %s"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: templates/forms/deactivation/form.php:645
|
1959 |
msgid "Skip & %s"
|
1960 |
msgstr ""
|
1961 |
|
freemius/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
"author": "Freemius, Inc.",
|
5 |
"license": "GPL-3.0",
|
6 |
"homepage": "https://freemius.com",
|
7 |
-
"version": "2.4.
|
8 |
"main": "gulpfile.js",
|
9 |
"dependencies": {},
|
10 |
"scripts": {
|
4 |
"author": "Freemius, Inc.",
|
5 |
"license": "GPL-3.0",
|
6 |
"homepage": "https://freemius.com",
|
7 |
+
"version": "2.4.3",
|
8 |
"main": "gulpfile.js",
|
9 |
"dependencies": {},
|
10 |
"scripts": {
|
freemius/readme.txt
DELETED
@@ -1,182 +0,0 @@
|
|
1 |
-
=== User Menus - Nav Menu Visibility ===
|
2 |
-
Contributors: codeatlantic, danieliser
|
3 |
-
Author URI: https://code-atlantic.com/
|
4 |
-
Plugin URI: https://wordpress.org/plugins/user-menus/
|
5 |
-
Donate link: https://code-atlantic.com/donate/
|
6 |
-
Tags: menu, menus, user-menu, logout, nav-menu, nav-menus, user, user-role, user-roles
|
7 |
-
Requires at least: 4.6
|
8 |
-
Tested up to: 5.8
|
9 |
-
Stable tag: 1.2.8
|
10 |
-
Requires PHP: 5.6
|
11 |
-
Freemius: 2.5.0
|
12 |
-
License: GPLv3 or Any Later Version
|
13 |
-
|
14 |
-
Show/hide menu items to logged in users, logged out users or specific user roles. Display logged in user details in menu. Add a logout link to menu.
|
15 |
-
|
16 |
-
|
17 |
-
== Description ==
|
18 |
-
|
19 |
-
User Menus is the perfect plugin for websites that have logged in users.
|
20 |
-
|
21 |
-
The plugin gives you more control over your nav menu by allowing you to apply visibility controls to menu items e.g., who can see each menu item (everyone, logged out users, logged in users, specific user roles).
|
22 |
-
|
23 |
-
It also enables you to display logged in user information in the navigation menu e.g., “Hello, John Doe”.
|
24 |
-
|
25 |
-
Lastly, the plugin allows you to add login, register, and logout links to your menu.
|
26 |
-
|
27 |
-
= Full Feature List =
|
28 |
-
|
29 |
-
User Menus allows you to do the following:
|
30 |
-
|
31 |
-
* Display menu items to everyone
|
32 |
-
* Display menu items to only logged out users
|
33 |
-
* Display menu items to only logged in users
|
34 |
-
* Display menu items to users with or without a specific user role.
|
35 |
-
* Show a logged in user’s {avatar} in a menu item with a custom size option.
|
36 |
-
* Show a logged in user’s {username} in a menu item
|
37 |
-
* Show a logged in user’s {first_name} in a menu item
|
38 |
-
* Show a logged in user’s {last_name} in a menu item
|
39 |
-
* Show a logged in user’s {display_name} in a menu item
|
40 |
-
* Show a logged in user’s nickname} in a menu item
|
41 |
-
* Show a logged in user’s {email} in a menu item
|
42 |
-
* Add a logout link to the menu (optional redirect settings)
|
43 |
-
* Add a register link to the menu (optional redirect settings)
|
44 |
-
* Add a login link to the menu (optional redirect settings)
|
45 |
-
|
46 |
-
** Includes a custom Menu Importer that will allow migrating User Menus data with the normal menu export/import.
|
47 |
-
|
48 |
-
= Created by Code Atlantic =
|
49 |
-
|
50 |
-
User Menus is built by the [Code Atlantic][codeatlantic] team. We create high-quality WordPress plugins that help you grow your WordPress sites.
|
51 |
-
|
52 |
-
Check out some of our most popular plugins:
|
53 |
-
|
54 |
-
* [Popup Maker][popupmaker] - #1 Popup & Marketing Plugin for WordPress
|
55 |
-
* [Content Control][contentcontrol] - Restrict Access to Pages and Posts
|
56 |
-
|
57 |
-
**Requires WordPress 4.6 and PHP 5.6**
|
58 |
-
|
59 |
-
[codeatlantic]: https://code-atlantic.com "Code Atlantic - High Quality WordPress Plugins"
|
60 |
-
|
61 |
-
[popupmaker]: https://wppopupmaker.com "#1 Popup & Marketing Plugin for WordPress"
|
62 |
-
|
63 |
-
[contentcontrol]: https://wordpress.org/plugins/content-control/ "Control Who Can Access Content"
|
64 |
-
|
65 |
-
== Installation ==
|
66 |
-
|
67 |
-
= Minimum Requirements =
|
68 |
-
|
69 |
-
* WordPress 4.6 or greater
|
70 |
-
* PHP version 5.6 or greater
|
71 |
-
|
72 |
-
= Installation =
|
73 |
-
|
74 |
-
* Install User Menus either via the WordPress.org plugin repository or by uploading the files to your server.
|
75 |
-
* Activate User Menus.
|
76 |
-
* Go to wp-admin > Appearance > Menus and edit your menu.
|
77 |
-
|
78 |
-
If you need help getting started with User Menus, please see the [FAQs][faq page] that explain how to use the plugin.
|
79 |
-
|
80 |
-
|
81 |
-
[faq page]: https://wordpress.org/plugins/user-menus/faq/ "User Menus FAQ"
|
82 |
-
|
83 |
-
|
84 |
-
== Frequently Asked Questions ==
|
85 |
-
|
86 |
-
= How do I set up this plugin? =
|
87 |
-
|
88 |
-
* To setup the plugin, go to /wp-admin/ > **Appearance** > **Menus**.
|
89 |
-
* Add a **menu item** or choose an existing one to edit the User Menus settings.
|
90 |
-
* To see the User Menus settings, _expand_ the **menu item** that you chose in the **Menu structure** panel.
|
91 |
-
* Select **Everyone**, **Logged Out Users**, or **Logged In Users** from the **Who can see this link?** dropdown.
|
92 |
-
* **Logged In Users**: The **Choose which roles can see this link** radio button is selected by default. If no roles are selected, all roles can see the menu item by default. Once a role is checked, then only checked roles can see the menu item.
|
93 |
-
* **Logged In Users**: The **Choose which roles won't see this link** radio button is **not** selected by default. If no roles are selected, all roles still have visibility to the menu item by default. Once a role is checked, then only checked roles won't see the menu item.
|
94 |
-
* To show a logged in user’s information in a **menu item**, make a **menu item** only visible to logged in users. Click the grey arrow button to add a user tag (username, first_name, last_name, nickname, display_name, email) to the **menu item** label.
|
95 |
-
* To add a login or logout link to your menu, expand the **User Links** under the **Add menu items** panel, check **Login** or **Logout**, then click **Add to Menu**.
|
96 |
-
|
97 |
-
= Where can I get support? =
|
98 |
-
|
99 |
-
If you get stuck, you can ask for help in the [User Menu Plugin Forum](https://wordpress.org/support/plugin/user-menus).
|
100 |
-
|
101 |
-
= Where can I report bugs or contribute to the project? =
|
102 |
-
|
103 |
-
Bugs can be reported either in our support forum or preferably on the [User Menu GitHub repository](https://github.com/jungleplugins/user-menus/issues).
|
104 |
-
|
105 |
-
|
106 |
-
== Screenshots ==
|
107 |
-
|
108 |
-
1. Limit menu item visibility based on logged in status, user role etc.
|
109 |
-
2. Display user information such as username, first name etc in your menu text.
|
110 |
-
3. Quickly insert login/logout links & choose where users will be taken afterwards.
|
111 |
-
|
112 |
-
|
113 |
-
== Changelog ==
|
114 |
-
|
115 |
-
= v1.2.8 - 03/02/2022 =
|
116 |
-
|
117 |
-
* Tweak: Update freemius sdk to the latest version.
|
118 |
-
|
119 |
-
= v1.2.7 - 07/21/2021 =
|
120 |
-
|
121 |
-
* Fix: Bug due to variable type mismatch which caused children of protected items to be rendered.
|
122 |
-
|
123 |
-
= v1.2.6 - 07/20/2021 =
|
124 |
-
|
125 |
-
* Improvement: Update Freemius to 2.4.2
|
126 |
-
* Improvement: Code styling clean up.
|
127 |
-
* Improvement: Compatibility with jQuery v3.
|
128 |
-
|
129 |
-
= v1.2.5 - 12/31/2020 =
|
130 |
-
|
131 |
-
* Improvement:Update Freemius to 2.4.1
|
132 |
-
|
133 |
-
= v1.2.4 - 08/20/2020 =
|
134 |
-
|
135 |
-
* Improvement: Removed class that could cause links to be disabled with some themes.
|
136 |
-
* Tweak: Update Freemius sdk to v2.4.0.1.
|
137 |
-
* Fix: Compatibility issue with some sites where duplicate fields were shown in the menu editor.
|
138 |
-
|
139 |
-
= v1.2.3 - 3/23/2020 =
|
140 |
-
|
141 |
-
* Tweak: Add compatibility fix for WP 5.4 menu walker
|
142 |
-
|
143 |
-
= v1.2.2 - 12/17/2019 =
|
144 |
-
|
145 |
-
* Improvement: Login, Register & Logout menu links now hint at who they will be visible for.
|
146 |
-
* Fix: Deprecation notice for sites using PHP 7.4
|
147 |
-
|
148 |
-
= v1.2.1 - 10/20/2019 =
|
149 |
-
|
150 |
-
* Fix: Bug in some sites where Menu Editor Description field was not shown.
|
151 |
-
|
152 |
-
= v1.2.0 - 10/10/2019 =
|
153 |
-
|
154 |
-
* Feature: Added option to *show* or *hide* the menu item for chosen roles.
|
155 |
-
* Feature: Added Register user link navigation menu type with optional redirect.
|
156 |
-
* Improvement: Added Freemius integration to allow for future premium offerings
|
157 |
-
* Tweak: Updates brand from Jungle Plugins to Code Atlantic (nothing has changed, just the name).
|
158 |
-
* Tweak: Minor text and design changes.
|
159 |
-
* Fix: Bug where missing data in menu items caused an error to be thrown in edge cases.
|
160 |
-
|
161 |
-
= v1.1.3 =
|
162 |
-
|
163 |
-
* Improvement: Corrected usage of get_avatar to ensure compatibility with 3rd party avatar plugins.
|
164 |
-
|
165 |
-
= v1.1.2 =
|
166 |
-
|
167 |
-
* Improvement: Made changes to the nav menu editor to make it more compatible with other plugins.
|
168 |
-
|
169 |
-
= v1.1.1 =
|
170 |
-
|
171 |
-
* Fix: Forgot to add new files during commit. Correcting this issue.
|
172 |
-
|
173 |
-
= v1.1.0 =
|
174 |
-
|
175 |
-
* Feature: Added ability to insert user avatar in menu items with size option to match your needs.
|
176 |
-
* Improvement: Added accessibility enhancements to menu editor. Includes keyboard support, proper focus, tabbing & titles.
|
177 |
-
* Improvement: Added proper labeling to the user code dropdown.
|
178 |
-
* Tweak: Restyled user code insert elements to better resemble default WP admin.
|
179 |
-
|
180 |
-
= v1.0.0 =
|
181 |
-
|
182 |
-
* Initial Release
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freemius/start.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
-
$this_sdk_version = '2.4.
|
19 |
|
20 |
#region SDK Selection Logic --------------------------------------------------------------------
|
21 |
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
$this_sdk_version = '2.4.5';
|
19 |
|
20 |
#region SDK Selection Logic --------------------------------------------------------------------
|
21 |
|
languages/user-menus.pot
CHANGED
@@ -6,11 +6,7 @@ msgstr ""
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Content-Transfer-Econdig: 8bit\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Language-Team: Code Atlantic <support@code-atlantic.com>\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Project-Id-Version: \n"
|
14 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/user-menus/\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
9 |
"Language-Team: Code Atlantic <support@code-atlantic.com>\n"
|
|
|
|
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/user-menus/\n"
|
11 |
"X-Poedit-Basepath: ..\n"
|
12 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
readme.md
DELETED
@@ -1,74 +0,0 @@
|
|
1 |
-
# User Menus
|
2 |
-
|
3 |
-
Needs to show or hide menu items to logged in users, logged out users or specific user roles in WordPress? User Menus is the plugin you need!
|
4 |
-
|
5 |
-
Feel free to browse the code and make suggestions/requests. Thanks!
|
6 |
-
|
7 |
-
## Getting Started
|
8 |
-
|
9 |
-
### Downloading And Using As A Plugin
|
10 |
-
|
11 |
-
To use this plugin, this repo can be downloaded as a zip and installed as-is as a WordPress plugin. Once installed and activated, Go to wp-admin > Appearance > Menus and edit your menu.
|
12 |
-
|
13 |
-
### Getting Set Up For Development
|
14 |
-
|
15 |
-
#### Prerequisites
|
16 |
-
|
17 |
-
In order to run our Gulp tasks, you will need Node.js and NPM installed. To do so, you can [follow the NPM documentation's guide](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
|
18 |
-
If you have not used NPM before, you can [refer to this beginner's guide to NPM](https://www.sitepoint.com/beginners-guide-node-package-manager/).
|
19 |
-
|
20 |
-
This plugin uses a series of [Gulp](https://gulpjs.com) tasks to clean and prepare builds. To get started, run `npm install` to get the necessary gulp dependencies.
|
21 |
-
|
22 |
-
#### Gulp Tasks
|
23 |
-
|
24 |
-
As normal, we have our gulp tasks in the gulpfile.js file.
|
25 |
-
|
26 |
-
Task info coming soon....
|
27 |
-
|
28 |
-
## Built With
|
29 |
-
|
30 |
-
* [SASS](https://sass-lang.com) - The CSS pre-processor we use. We use the SCSS syntax.
|
31 |
-
|
32 |
-
## Deployment
|
33 |
-
|
34 |
-
This is a WordPress plugin that is hosted on the WordPress.org SVN repo.
|
35 |
-
There is not currently any automated deployment. Instead, once a release is published on GitHub, that release is manually uploaded to the SVN.
|
36 |
-
|
37 |
-
## Contributing
|
38 |
-
|
39 |
-
Community made feature requests, patches, localizations, bug reports, and contributions are always welcome and are crucial to ensure User Menus continues to grow.
|
40 |
-
|
41 |
-
When contributing please ensure you follow the guidelines below so that we can keep on top of things.
|
42 |
-
|
43 |
-
Please Note: GitHub is not intended for support based questions. For those, please use the [support forums](https://wordpress.org/support/plugin/user-menus).
|
44 |
-
|
45 |
-
### Creating Issues
|
46 |
-
|
47 |
-
* If you have any bugs or feature requests, please [create an issue](https://github.com/JunglePlugins/User-Menus/issues/new)
|
48 |
-
* For bug reports, please clearly describe the bug/issue and include steps on how to reproduce it
|
49 |
-
* For feature requests, please clearly describe what you would like, how it would be used, and example screenshots (if possible)
|
50 |
-
|
51 |
-
### Pull Requests
|
52 |
-
|
53 |
-
* Ensure you stick to the [WordPress Coding Standards](https://codex.wordpress.org/WordPress_Coding_Standards)
|
54 |
-
* When committing, reference your issue (if present) and include a note about the fix
|
55 |
-
* Push the changes to your fork and submit a pull request to the 'master' branch of this repository
|
56 |
-
* We are trying to ensure that every function is documented well and follows the standards set by phpDoc going forward
|
57 |
-
|
58 |
-
## Versioning
|
59 |
-
|
60 |
-
We use [SemVer](http://semver.org/) for versioning. For the versions available, see [the releases in this repository](https://github.com/JunglePlugins/User-Menus/releases).
|
61 |
-
|
62 |
-
## Developers
|
63 |
-
|
64 |
-
* Daniel Iser - Lead Developer
|
65 |
-
|
66 |
-
See also [the list of contributors](https://github.com/JunglePlugins/User-Menus/graphs/contributors) who participated in this project.
|
67 |
-
|
68 |
-
## License
|
69 |
-
|
70 |
-
This project is licensed under the GPLv3 License.
|
71 |
-
|
72 |
-
## Support
|
73 |
-
|
74 |
-
This is a developer's portal for User Menus and **should not** be used for support. Please [create a support ticket here](https://wordpress.org/support/plugin/user-menus).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link: https://code-atlantic.com/donate/
|
|
6 |
Tags: menu, menus, user-menu, logout, nav-menu, nav-menus, user, user-role, user-roles
|
7 |
Requires at least: 4.6
|
8 |
Tested up to: 5.8
|
9 |
-
Stable tag: 1.
|
10 |
Requires PHP: 5.6
|
11 |
Freemius: 2.5.0
|
12 |
License: GPLv3 or Any Later Version
|
@@ -112,6 +112,10 @@ Bugs can be reported either in our support forum or preferably on the [User Menu
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
|
|
115 |
= v1.2.9 - 03/02/2022 =
|
116 |
|
117 |
* Tweak: Downgrade freemius sdk to the latest stable (previously version was Release Candidate).
|
6 |
Tags: menu, menus, user-menu, logout, nav-menu, nav-menus, user, user-role, user-roles
|
7 |
Requires at least: 4.6
|
8 |
Tested up to: 5.8
|
9 |
+
Stable tag: 1.3.0
|
10 |
Requires PHP: 5.6
|
11 |
Freemius: 2.5.0
|
12 |
License: GPLv3 or Any Later Version
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= v1.3.0 - 09/13/2022 =
|
116 |
+
|
117 |
+
* Tweak: Upgrade freemius sdk to v2.4.5 for PHP 8.1 compatibility.
|
118 |
+
|
119 |
= v1.2.9 - 03/02/2022 =
|
120 |
|
121 |
* Tweak: Downgrade freemius sdk to the latest stable (previously version was Release Candidate).
|
user-menus.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: User Menus
|
4 |
* Plugin URI: https://wordpress.org/plugins/user-menus/
|
5 |
* Description: Quickly customize your menus with a user's name & avatar, or show items based on user role.
|
6 |
-
* Version: 1.
|
7 |
* Author: Code Atlantic
|
8 |
* Author URI: https://code-atlantic.com/
|
9 |
* License: GPL2 or later
|
@@ -83,7 +83,7 @@ class JP_User_Menus {
|
|
83 |
*
|
84 |
* @var string
|
85 |
*/
|
86 |
-
public static $VER = '1.
|
87 |
|
88 |
/**
|
89 |
* Minimum PHP version
|
3 |
* Plugin Name: User Menus
|
4 |
* Plugin URI: https://wordpress.org/plugins/user-menus/
|
5 |
* Description: Quickly customize your menus with a user's name & avatar, or show items based on user role.
|
6 |
+
* Version: 1.3.0
|
7 |
* Author: Code Atlantic
|
8 |
* Author URI: https://code-atlantic.com/
|
9 |
* License: GPL2 or later
|
83 |
*
|
84 |
* @var string
|
85 |
*/
|
86 |
+
public static $VER = '1.3.0';
|
87 |
|
88 |
/**
|
89 |
* Minimum PHP version
|