Version Description
Download this release
Release Info
Developer | tareq1988 |
Plugin | WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress |
Version | 3.5.7 |
Comparing to | |
See all releases |
Code changes from version 3.5.6 to 3.5.7
- admin/html/whats-new.php +15 -0
- admin/promotion.php +82 -128
- changelog.txt +4 -0
- includes/countries-state.php +1 -1
- languages/wp-user-frontend.pot +290 -270
- readme.txt +5 -1
- wpuf.php +2 -2
admin/html/whats-new.php
CHANGED
@@ -1,5 +1,20 @@
|
|
1 |
<?php
|
2 |
$changelog = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
[
|
4 |
'version' => 'Version 3.5.4',
|
5 |
'released' => '2020-11-11',
|
1 |
<?php
|
2 |
$changelog = [
|
3 |
+
[
|
4 |
+
'version' => 'Version 3.5.7',
|
5 |
+
'released' => '2020-11-21',
|
6 |
+
'changes' => [
|
7 |
+
|
8 |
+
[
|
9 |
+
'title' => __( 'Custom html content field\'s width', 'wp-user-frontend' ),
|
10 |
+
'type' => 'Enhancement',
|
11 |
+
],
|
12 |
+
[
|
13 |
+
'title' => __( 'All states of New Zealand are added', 'wp-user-frontend' ),
|
14 |
+
'type' => 'Enhancement',
|
15 |
+
],
|
16 |
+
],
|
17 |
+
],
|
18 |
[
|
19 |
'version' => 'Version 3.5.4',
|
20 |
'released' => '2020-11-11',
|
admin/promotion.php
CHANGED
@@ -20,140 +20,55 @@ class WPUF_Admin_Promotion {
|
|
20 |
* @return void
|
21 |
*/
|
22 |
public function promotional_offer() {
|
23 |
-
|
24 |
-
return;
|
25 |
-
}
|
26 |
|
27 |
-
|
|
|
|
|
|
|
28 |
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
return;
|
39 |
}
|
40 |
|
41 |
-
if (
|
42 |
-
|
43 |
-
<
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
<h3><span class="highlight-green">Black Friday & </span>Cyber Monday</h3>
|
51 |
-
<p><span class="highlight-lightgreen">Claim your discount on </span>WP User Frontend <span class="highlight-lightgreen">till 4th December</span></p>
|
52 |
-
</div>
|
53 |
-
<div class="call-to-action">
|
54 |
-
<a target="_blank" href="https://wedevs.com/wp-user-frontend-pro/pricing?utm_campaign=black_friday_&_cyber_monday&utm_medium=banner&utm_source=plugin_dashboard">
|
55 |
-
<img src="<?php echo esc_url( WPUF_ASSET_URI ) . '/images/promo-btn.png'; ?>" alt="Btn">
|
56 |
-
</a>
|
57 |
-
<p>
|
58 |
-
<span class="highlight-green2">Coupon: </span>
|
59 |
-
<span class="coupon-code">BFCM2019</span>
|
60 |
-
</p>
|
61 |
-
</div>
|
62 |
-
</div>
|
63 |
-
|
64 |
-
<style>
|
65 |
-
#wpuf-bfcm-notice {
|
66 |
-
font-size: 14px;
|
67 |
-
border-left: none;
|
68 |
-
background: #468E4B;
|
69 |
-
color: #fff;
|
70 |
-
display: flex
|
71 |
-
}
|
72 |
-
|
73 |
-
#wpuf-bfcm-notice .notice-dismiss:before {
|
74 |
-
color: #76E5FF;
|
75 |
-
}
|
76 |
-
|
77 |
-
#wpuf-bfcm-notice .notice-dismiss:hover:before {
|
78 |
-
color: #b71c1c;
|
79 |
-
}
|
80 |
-
|
81 |
-
#wpuf-bfcm-notice .logo {
|
82 |
-
text-align: center;
|
83 |
-
text-align: center;
|
84 |
-
margin: auto 50px;
|
85 |
-
}
|
86 |
-
|
87 |
-
#wpuf-bfcm-notice .logo img {
|
88 |
-
width: 80%;
|
89 |
-
}
|
90 |
-
|
91 |
-
#wpuf-bfcm-notice .highlight-green {
|
92 |
-
color: #4FFF67;
|
93 |
-
}
|
94 |
-
#wpuf-bfcm-notice .highlight-green2 {
|
95 |
-
color: #5AB035;
|
96 |
-
}
|
97 |
-
|
98 |
-
#wpuf-bfcm-notice .highlight-lightgreen {
|
99 |
-
color: #E0EFE7;
|
100 |
-
}
|
101 |
-
|
102 |
-
#wpuf-bfcm-notice .content {
|
103 |
-
margin-top: 5px;
|
104 |
-
}
|
105 |
-
|
106 |
-
#wpuf-bfcm-notice .content h3 {
|
107 |
-
color: #FFF;
|
108 |
-
margin: 12px 0 5px;
|
109 |
-
font-weight: normal;
|
110 |
-
font-size: 30px;
|
111 |
-
}
|
112 |
-
|
113 |
-
#wpuf-bfcm-notice .content p {
|
114 |
-
margin-top: 12px;
|
115 |
-
padding: 0;
|
116 |
-
letter-spacing: .4px;
|
117 |
-
color: #ffffff;
|
118 |
-
font-size: 15px;
|
119 |
-
}
|
120 |
-
|
121 |
-
#wpuf-bfcm-notice .call-to-action {
|
122 |
-
margin-left: 10%;
|
123 |
-
margin-top: 20px;
|
124 |
-
}
|
125 |
-
|
126 |
-
#wpuf-bfcm-notice .call-to-action a:focus {
|
127 |
-
box-shadow: none;
|
128 |
-
}
|
129 |
-
|
130 |
-
#wpuf-bfcm-notice .call-to-action p {
|
131 |
-
font-size: 16px;
|
132 |
-
color: #fff;
|
133 |
-
margin-top: 1px;
|
134 |
-
text-align: center;
|
135 |
-
}
|
136 |
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
|
|
144 |
|
145 |
-
|
146 |
-
jQuery('body').on('click', '#wpuf-bfcm-notice .notice-dismiss', function (e) {
|
147 |
-
e.preventDefault();
|
148 |
|
149 |
-
|
150 |
-
dismissed: true,
|
151 |
-
_wpnonce: '<?php echo esc_attr ( wp_create_nonce( 'wpuf_nonce' ) ); ?>'
|
152 |
-
});
|
153 |
-
});
|
154 |
-
</script>
|
155 |
-
<?php
|
156 |
-
}
|
157 |
}
|
158 |
|
159 |
/**
|
@@ -295,11 +210,50 @@ class WPUF_Admin_Promotion {
|
|
295 |
}
|
296 |
|
297 |
if ( !empty( $_POST['dismissed'] ) ) {
|
298 |
-
$offer_key = '
|
299 |
update_option( $offer_key, 'hide' );
|
300 |
}
|
301 |
}
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
/**
|
304 |
* Dismiss review notice
|
305 |
*
|
@@ -307,7 +261,7 @@ class WPUF_Admin_Promotion {
|
|
307 |
*
|
308 |
* @return void
|
309 |
**/
|
310 |
-
public function dismiss_review_notice() {
|
311 |
if( empty( $_POST['_wpnonce'] ) ) {
|
312 |
wp_send_json_error( __( 'Unauthorized operation', 'wp-user-frontend' ) );
|
313 |
}
|
@@ -316,7 +270,7 @@ class WPUF_Admin_Promotion {
|
|
316 |
wp_send_json_error( __( 'Unauthorized operation', 'wp-user-frontend' ) );
|
317 |
}
|
318 |
|
319 |
-
if ( !empty( $_POST['dismissed'] ) ) {
|
320 |
update_option( 'wpuf_review_notice_dismiss', 'yes' );
|
321 |
}
|
322 |
}
|
20 |
* @return void
|
21 |
*/
|
22 |
public function promotional_offer() {
|
23 |
+
$current_time = $this->convert_utc_to_est( current_time( 'mysql' ) );
|
|
|
|
|
24 |
|
25 |
+
if (
|
26 |
+
$current_time > strtotime( '2020-12-04 23:59:00' )
|
27 |
+
|| $current_time < strtotime( '2020-11-23 09:00:00' )
|
28 |
+
) {
|
29 |
return;
|
30 |
+
}
|
31 |
+
|
32 |
+
if (
|
33 |
+
strtotime( '2020-11-23 09:00:00' ) < strtotime( $current_time )
|
34 |
+
&& strtotime( $current_time ) < strtotime( '2020-11-23 13:59:00' )
|
35 |
+
) {
|
36 |
+
$option_name = 'wpuf_2020_early_black_friday';
|
37 |
+
$notice = __( 'Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday', 'wp-user-frontend' );
|
38 |
+
$this->generate_notice( $notice, $option_name );
|
39 |
}
|
40 |
|
41 |
+
if (
|
42 |
+
strtotime( '2020-11-23 14:00:00' ) < strtotime( $current_time )
|
43 |
+
&& strtotime( $current_time ) < strtotime( '2020-11-27 23:59:00' )
|
44 |
+
) {
|
45 |
+
$option_name = 'wpuf_2020_black_friday';
|
46 |
+
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday', 'wp-user-frontend' );
|
47 |
+
$this->generate_notice( $notice, $option_name );
|
|
|
48 |
}
|
49 |
|
50 |
+
if (
|
51 |
+
strtotime( '2020-11-28 00:00:00' ) < strtotime( $current_time )
|
52 |
+
&& strtotime( $current_time ) < strtotime( '2020-12-04 23:59:00' )
|
53 |
+
) {
|
54 |
+
$option_name = 'wpuf_2020_cyber_monday';
|
55 |
+
$notice = __( 'Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday', 'wp-user-frontend' );
|
56 |
+
$this->generate_notice( $notice, $option_name );
|
57 |
+
}
|
58 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
+
/**
|
61 |
+
* Convert EST Time zone to UTC timezone
|
62 |
+
*
|
63 |
+
* @param string $date_time
|
64 |
+
* @return string
|
65 |
+
*/
|
66 |
+
public function convert_utc_to_est( $date_time ) {
|
67 |
+
$dt = new DateTime($date_time, new DateTimeZone('UTC'));
|
68 |
|
69 |
+
$dt->setTimezone(new DateTimeZone('EST'));
|
|
|
|
|
70 |
|
71 |
+
return $dt->format('Y-m-d H:i:s T');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
|
74 |
/**
|
210 |
}
|
211 |
|
212 |
if ( !empty( $_POST['dismissed'] ) ) {
|
213 |
+
$offer_key = ! empty( $_POST['option_name'] ) ? sanitize_text_field( wp_unslash( $_POST['option_name'] ) ) : '';
|
214 |
update_option( $offer_key, 'hide' );
|
215 |
}
|
216 |
}
|
217 |
|
218 |
+
/**
|
219 |
+
* Show admin notice
|
220 |
+
*
|
221 |
+
* @param string $message
|
222 |
+
* @param string $option_name
|
223 |
+
*
|
224 |
+
* @return void
|
225 |
+
*/
|
226 |
+
public function generate_notice( $message, $option_name ) {
|
227 |
+
$hide_notice = get_option( $option_name, 'no' );
|
228 |
+
|
229 |
+
if ( 'hide' === $hide_notice ) {
|
230 |
+
return;
|
231 |
+
}
|
232 |
+
?>
|
233 |
+
<div class="notice notice-success is-dismissible" id="wpuf-bfcm-notice">
|
234 |
+
<p>
|
235 |
+
<?php echo $message; ?>
|
236 |
+
<a
|
237 |
+
href="https://wedevs.com/wp-user-frontend-pro/pricing?utm_medium=text&utm_source=wordpress-wpuf"
|
238 |
+
target="_blank">Deals Now</a>
|
239 |
+
</p>
|
240 |
+
<button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
|
241 |
+
</div>
|
242 |
+
|
243 |
+
<script type='text/javascript'>
|
244 |
+
jQuery('body').on('click', '#wpuf-bfcm-notice .notice-dismiss', function (e) {
|
245 |
+
e.preventDefault();
|
246 |
+
|
247 |
+
wp.ajax.post('wpuf-dismiss-promotional-offer-notice', {
|
248 |
+
dismissed: true,
|
249 |
+
option_name: '<?php echo esc_html( $option_name ); ?>',
|
250 |
+
_wpnonce: '<?php echo esc_attr ( wp_create_nonce( 'wpuf_nonce' ) ); ?>'
|
251 |
+
});
|
252 |
+
});
|
253 |
+
</script>
|
254 |
+
<?php
|
255 |
+
}
|
256 |
+
|
257 |
/**
|
258 |
* Dismiss review notice
|
259 |
*
|
261 |
*
|
262 |
* @return void
|
263 |
**/
|
264 |
+
public function dismiss_review_notice() {
|
265 |
if( empty( $_POST['_wpnonce'] ) ) {
|
266 |
wp_send_json_error( __( 'Unauthorized operation', 'wp-user-frontend' ) );
|
267 |
}
|
270 |
wp_send_json_error( __( 'Unauthorized operation', 'wp-user-frontend' ) );
|
271 |
}
|
272 |
|
273 |
+
if ( ! empty( $_POST['dismissed'] ) ) {
|
274 |
update_option( 'wpuf_review_notice_dismiss', 'yes' );
|
275 |
}
|
276 |
}
|
changelog.txt
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
= v3.5.6 (13 November, 2020) =
|
2 |
* Fix - Can't edit post
|
3 |
* Fix - Show warning if newly created post form doesn't set role base enable
|
1 |
+
= v3.5.7 (21 November, 2020) =
|
2 |
+
* Enhancement - Custom html content field's width
|
3 |
+
* Enhancement - All states of New Zealand are added
|
4 |
+
|
5 |
= v3.5.6 (13 November, 2020) =
|
6 |
* Fix - Can't edit post
|
7 |
* Fix - Show warning if newly created post form doesn't set role base enable
|
includes/countries-state.php
CHANGED
@@ -164,7 +164,7 @@ class CountryState {
|
|
164 |
['Nepal', 'NP', 'NPL', '524', 'ISO 3166-2:NP', 'Bagmati|Bheri|Dhawalagiri|Gandaki|Janakpur|Karnali|Kosi|Lumbini|Mahakali|Mechi|Narayani|Rapti|Sagarmatha|Seti', '977'],
|
165 |
['Netherlands', 'NL', 'NLD', '528', 'ISO 3166-2:NL', 'Drenthe|Flevoland|Friesland|Gelderland|Groningen|Limburg|Noord-Brabant|Noord-Holland|Overijssel|Utrecht|Zeeland|Zuid-Holland', '31'],
|
166 |
['New Caledonia', 'NC', 'NCL', '540', 'ISO 3166-2:NC', 'Iles Loyaute|Nord|Sud', '687'],
|
167 |
-
['New Zealand', 'NZ', 'NZL', '554', 'ISO 3166-2:NZ', "Akaroa|Amuri|Ashburton|Auckland|Bay of Islands|
|
168 |
['Nicaragua', 'NI', 'NIC', '558', 'ISO 3166-2:NI', 'Atlantico Norte|Atlantico Sur|Boaco|Carazo|Chinandega|Chontales|Esteli|Granada|Jinotega|Leon|Madriz|Managua|Masaya|Matagalpa|Nueva Segovia|Rio San Juan|Rivas', '505'],
|
169 |
['Niger', 'NE', 'NER', '562', 'ISO 3166-2:NE', 'Agadez|Diffa|Dosso|Maradi|Niamey|Tahoua|Tillaberi|Zinder', '227'],
|
170 |
['Nigeria', 'NG', 'NGA', '566', 'ISO 3166-2:NG', 'Abia|Abuja Federal Capital Territory|Adamawa|Akwa Ibom|Anambra|Bauchi|Bayelsa|Benue|Borno|Cross River|Delta|Ebonyi|Edo|Ekiti|Enugu|Gombe|Imo|Jigawa|Kaduna|Kano|Katsina|Kebbi|Kogi|Kwara|Lagos|Nassarawa|Niger|Ogun|Ondo|Osun|Oyo|Plateau|Rivers|Sokoto|Taraba|Yobe|Zamfara', '234'],
|
164 |
['Nepal', 'NP', 'NPL', '524', 'ISO 3166-2:NP', 'Bagmati|Bheri|Dhawalagiri|Gandaki|Janakpur|Karnali|Kosi|Lumbini|Mahakali|Mechi|Narayani|Rapti|Sagarmatha|Seti', '977'],
|
165 |
['Netherlands', 'NL', 'NLD', '528', 'ISO 3166-2:NL', 'Drenthe|Flevoland|Friesland|Gelderland|Groningen|Limburg|Noord-Brabant|Noord-Holland|Overijssel|Utrecht|Zeeland|Zuid-Holland', '31'],
|
166 |
['New Caledonia', 'NC', 'NCL', '540', 'ISO 3166-2:NC', 'Iles Loyaute|Nord|Sud', '687'],
|
167 |
+
['New Zealand', 'NZ', 'NZL', '554', 'ISO 3166-2:NZ', "Ahipara|Ahititi|Ahuroa|Aka Aka|Akaroa|Ākitio|Albany|Albert Town|Albury|Alexandra|Allanton|Amuri|Amberley|Anakiwa|Aramoana|Aranga|Arapohue|Arrowtown|Arundel|Ashburton|Ashhurst|Ashley|Auckland|Auroa|Awanui|Balclutha|Balfour|Barrhill|Barrytown|Bay of Islands|Beachlands|Beaumont|Bell Block|Benhar|Bideford|Blackball|Blenheim|Bluff|Brighton|Brightwater|Broadwood|Bulls|Bunnythorpe|Burnt Hill|Cambridge|Canvastown|Carterton|Charlton|Chatton|Cheviot|Christchurch|Clarksville|Clarkville|Clevedon|Clinton|Clive|Clyde|Coatesville|Collingwood|Colville|Cooks Beach|Coopers Creek|Coroglen|Coromandel|Cromwell|Culverden|Cust|Dairy Flat|Dannevirke|Darfield|Dargaville|Dipton|Dobson|Doyleston|Drury|Dunedin|Duntroon|Eastbourne|Edendale|Edgecumbe|Egmont Village|Eketāhuna|Eltham|Ettrick|Eyrewell Forest|Fairhall|Fairlie|Fairfax|Featherston|Feilding|Fencourt|Fernside|Flaxmere|Flaxton|Fox Glacier|Foxton|Foxton Beach|Frankton Otago|Frankton Waikato|Franz Josef Waiau|Geraldine|Gisborne|Glen Massey|Glenorchy|Glentui|Gordonton|Gore|Granity|Greymouth|Greytown|Grovetown|Gummies Bush|Haast|Hakataramea|Halcombe|Hamilton|Hampden|Hanmer Springs|Hari Hari|Harrisville|Haruru|Hastings|Haumoana|Haupiri|Havelock|Havelock North|Hāwera|Helensville|Henley|Herbert|Herekino|Hikuai|Hikurangi|Hikutaia|Hinuera|i|Hunterville|Huntly|Hurleyville|Inangahua JunctionInglewood|Invercargill|Jack's Point|Jacobs River|Kaeo|Kaiapoi|Kaihu|Kaikohe|Kaikōura|Kaimata|Kaingaroa|Kaipara Flats|Kairaki|Kaitaia|Kaitangata|Kaiwaka|Kakanui|Kakaramea|Kaniere|Kapiro|Kaponga|Karamea|Karetu|Karitane|Katikati|Kauaeranga|Kaukapakapa|Kauri|Kawakawa|Kawerau|Kennedy Bay|Kerikeri|Kihikihi|Kingston|Kinloch|Kiripaka|Kirwee|Kohukohu|Koitiata|Kokatahi|Kokopu|Koromiko|Kumara|Kumeū|Kurow|Lake Hāwea|Lake Tekapo|Lauriston|Lawrence|Leeston|Leigh|Lepperton|Levin|Lincoln|Linkwater|Little River|Loburn|Lower Hutt|Luggate|Lumsden|Lyttelton|Makahu|Mamaku|Manaia Coromandel|Manaia Taranaki|Manakau|Manapouri|Mangakino|Mangamuka|Mangatangi|Mangatoki|Mangawhai|Maniaiti Benneydale|Manukau|Manurewa|Manutahi|Mapua|Maraetai|Mārahau|Marco|Maromaku|Marsden Bay|Martinborough|Marton|Maruia|Masterton|Matakana|Matakohe|Matamata|Matapu|Matarangi|Matarau|Matatā|Mataura|Matihetihe|Maungakaramea|Maungatapere|Maungaturoto|Mayfield|Meremere|Methven|Middlemarch|Midhirst|Millers Flat|ilton|Mimi|Minginui|Moana|Moawhango|Moenui|Moeraki|Moerewa|Mokau|Mokoia|Morrinsville|Mosgiel|Mossburn|MotatauMotueka|Mount Maunganui|Mount Somers|Murchison|Murupara|Napier|Naseby|National Park|Nelson|New Brighton|New Plymouth|Ngaere|Ngamatapouri|Ngapara|Ngāruawāhia|Ngataki|Ngatea|Ngongotahā|Ngunguru|Nightcaps|Norfolk|Normanby|Norsewood|Ōakura|Oamaru|Oban|Ōhaeawai|Ohakune|Ohangai|Ōhaupō|Ohoka|Ōhope|Ōhura|Ōkaihau|Ōkato|Ōkiwi Bay|Okuku|Omanaia|Omarama|Omata|Omokoroa|Onewhero|Opononi|Ōpōtiki|Opua|Ōpunake|Oratia|Orewa|Oromahoe|Oruaiti|Otaika|Ōtaki|Otakou|Otautau|Otiria|Otorohanga|Ōwhango|Owaka|Oxford|Paekākāriki|Paeroa|Pahiatua|Paihia|Pakaraka|Pakiri|Pakotai|Palmerston|Palmerston North|Pamapuria|Panguru|Papakura|Papamoa|Paparoa|Paparore|Papatoetoe|Parakai|Paraparaumu|Paremoremo|Pareora|Paroa|Parua Bay|Patea|Patumahoe|Pauanui|Pāuatahanui|Pegasus|Peka Peka|Pembroke|Peria|Petone|Picton|Piopio|Pipiwai|Pirinoa|Pirongia|Pleasant Point|Plimmerton|Pōkeno|Porirua|Poroti|Port Chalmers|Portland|Portobello|Pukekohe|Pukepoto|Pkerimu|Pukerua Bay|Puketona|Pukeuri|Punakaiki|Purua|Putāruru|Putorino|Queenstown|Raetihi|Raglan|Rahotu|Rai Valley|RakaiaRamarama|Ranfurly|Rangiora|Rapaura|Ratapiko|Raumati Beach|Raumati South|Rawene|Rawhitiroa|Reefton|Renwick|Reporoa|Richmond|Riverhead|Riverlands|Riversdale|Riversdale Beach|Riverton|Riwaka|Rolleston|Ross|Rotorua|Roxburgh|Ruakākā|Ruatoria|Ruawai|Runanga|Russell|Saint Andrews|Saint Arnaud|Saint Bathans|Sanson|Seacliff|Seddon|Seddonville|Sefton|Shannon|Sheffield|Silverdale|Snells Beach|Spring Creek|Springfield|Springston|Stirling|Stratford|Swannanoa|Taharoa|Taieri Mouth|Taihape|Taipa-Mangonui|Tairua|Tākaka|Tangiteroria|Tangowahine|Tapanui|Tapawera|Tapora|Tapu|Taradale|Tauhoa|Taumarunui|Taupaki|Taupō|Tauranga|Tauraroa|Tautoro|Te Anau|Te Arai|Te Aroha|Te Awamutu|Te Awanga|Te Hāpua|Te Horo|Te Kao|Te Kauwhata|Te Kōpuru|Te Kuiti|Te Poi|Te Puke|Te Puru|Te Rahu|Te Rerenga|Temuka|Thames|Tikorang|Timaru|Tinopai|Tinwald|Tīrau|Titoki|Tokanui Southland|Tokanui Waikato|Tokarahi|Toko|Tokomaru|Tokoroa|Tolaga Bay|Tomarata|Towai|Tuahiwi|Tuai|Tuakau|Tuamarina|Tuatapere|Tūrangi|Turua|Twizel|Umawera|Upper Hutt|Upper Moutere|Urenui|Uruti|View Hill|Waddington|Waharoa|Waiau Pa|Waiharara|Waiheke Island|Waihi|Waihi Beach|Waihola|Waikaia|Waikaka|Waikanae|Waikawa Marlborough|Waikawa Southland|Waikouaiti|Waikuku|Waikuku Beach|Waima|Waimangaroa|WaimateWaimate North|Waimauku|Wainui|Wainuiomata|Waioneke|Waiotira|Waiouru|Waipango|Waipawa|Waipukurau|Wairakei|Wairau Valley|Wairio|Wairoa|Waitahuna|Waitara|Waitaria Bay|Waitati|Waitoa|Waitoki|Waitomo|Waitoriki|Waitotara|Waiuku|Waiwera|Wakefield|Wallacetown|Walton|Wanaka|Ward|Wardville|Warkworth|Warrington|Waverley|Wellington|Wellsford|Weston|Westport|Whakamaru|Whakatāne|Whananaki|Whangamatā|Whangamōmona|Whanganui|Whangaparāoa|Whangārei|Whangārei Heads|Whangaruru|Whataroa|Whatuwhiwhi|Whenuakite|Whenuakura|Whiritoa|Whitby|Whitford|Whitianga|Willowby|Wimbledon|Winchester|Windsor|Windwhistle|Winscombe|Winton|Woodend|Woodend Beach|Woodhill|Woodville|Wyndham", '64'],
|
168 |
['Nicaragua', 'NI', 'NIC', '558', 'ISO 3166-2:NI', 'Atlantico Norte|Atlantico Sur|Boaco|Carazo|Chinandega|Chontales|Esteli|Granada|Jinotega|Leon|Madriz|Managua|Masaya|Matagalpa|Nueva Segovia|Rio San Juan|Rivas', '505'],
|
169 |
['Niger', 'NE', 'NER', '562', 'ISO 3166-2:NE', 'Agadez|Diffa|Dosso|Maradi|Niamey|Tahoua|Tillaberi|Zinder', '227'],
|
170 |
['Nigeria', 'NG', 'NGA', '566', 'ISO 3166-2:NG', 'Abia|Abuja Federal Capital Territory|Adamawa|Akwa Ibom|Anambra|Bauchi|Bayelsa|Benue|Borno|Cross River|Delta|Ebonyi|Edo|Ekiti|Enugu|Gombe|Imo|Jigawa|Kaduna|Kano|Katsina|Kebbi|Kogi|Kwara|Lagos|Nassarawa|Niger|Ogun|Ondo|Osun|Oyo|Plateau|Rivers|Sokoto|Taraba|Yobe|Zamfara', '234'],
|
languages/wp-user-frontend.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP User Frontend 3.5.
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
-
"POT-Creation-Date: 2020-11-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -569,8 +569,8 @@ msgstr ""
|
|
569 |
|
570 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:35
|
571 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:82
|
572 |
-
#: admin/promotion.php:
|
573 |
-
#: admin/promotion.php:
|
574 |
msgid "Unauthorized operation"
|
575 |
msgstr ""
|
576 |
|
@@ -1412,485 +1412,493 @@ msgid "Contact Support"
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: admin/html/whats-new.php:9
|
1415 |
-
msgid "
|
1416 |
msgstr ""
|
1417 |
|
1418 |
#: admin/html/whats-new.php:13
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1419 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: admin/html/whats-new.php:
|
1423 |
msgid "URL field new window not working"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: admin/html/whats-new.php:
|
1427 |
msgid "Option label not working when & use"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: admin/html/whats-new.php:
|
1431 |
msgid "Ajax type category not showing on edit"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: admin/html/whats-new.php:
|
1435 |
msgid "Multiple file image can't select"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: admin/html/whats-new.php:
|
1439 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: admin/html/whats-new.php:
|
1443 |
msgid "Conflict image field with acf image field"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: admin/html/whats-new.php:
|
1447 |
msgid "Missing Auckland State for New Zealand country"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: admin/html/whats-new.php:
|
1451 |
msgid "Added support for WooCommerce product category value replacemen"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: admin/html/whats-new.php:
|
1455 |
msgid "Add character restriction feature"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: admin/html/whats-new.php:
|
1459 |
msgid "Make sure post author edit link works only in frontend"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: admin/html/whats-new.php:
|
1463 |
msgid "Inconsistency in lost password reset email message"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: admin/html/whats-new.php:
|
1467 |
msgid "Saving custom taxonomy terms when input type is text"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: admin/html/whats-new.php:
|
1471 |
msgid "Taxonomy field JS error in builder"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: admin/html/whats-new.php:
|
1475 |
msgid "Showing WPUF edit link for WP default roles"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: admin/html/whats-new.php:
|
1479 |
msgid "Upload button unresponsive issue in iOS"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: admin/html/whats-new.php:
|
1483 |
msgid "Add post edit link for post authors in single or archive pages"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: admin/html/whats-new.php:
|
1487 |
msgid "Enhance post delete message"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: admin/html/whats-new.php:
|
1491 |
msgid "Refactor control buttons visibility in form builder"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: admin/html/whats-new.php:
|
1495 |
msgid "Add missing colons after field label"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: admin/html/whats-new.php:
|
1499 |
msgid "Post edit map capability condition"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: admin/html/whats-new.php:
|
1503 |
msgid "Role based permission for accessing a post form"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: admin/html/whats-new.php:
|
1507 |
msgid "Section-break field alignment"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: admin/html/whats-new.php:
|
1511 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: admin/html/whats-new.php:
|
1515 |
msgid "Mime type for uploading JSON files"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: admin/html/whats-new.php:
|
1519 |
msgid "File upload with same file name"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: admin/html/whats-new.php:
|
1523 |
msgid "Post preview missing fields"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: admin/html/whats-new.php:
|
1527 |
msgid "Illigal variable declartion"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: admin/html/whats-new.php:
|
1531 |
msgid "Featured image updating issue"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: admin/html/whats-new.php:
|
1535 |
msgid "Conflict with Phlox theme"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: admin/html/whats-new.php:
|
1539 |
msgid "Textarea custom field data sanitization"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: admin/html/whats-new.php:
|
1543 |
msgid "exclude_type warning in wpuf_category_checklist"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: admin/html/whats-new.php:
|
1547 |
msgid "Category field not showing all child categories for selection type child of"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: admin/html/whats-new.php:
|
1551 |
msgid "Conflict between image and file upload custom fields"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: admin/html/whats-new.php:
|
1555 |
msgid "Login url when login page is not set"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: admin/html/whats-new.php:
|
1559 |
msgid ""
|
1560 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
1561 |
"their official names"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: admin/html/whats-new.php:
|
1565 |
msgid "Fix condition to use default avatar"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: admin/html/whats-new.php:
|
1569 |
msgid "Make Email and URL fields clickable"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: admin/html/whats-new.php:
|
1573 |
msgid "Fix redirect after user login"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: admin/html/whats-new.php:
|
1577 |
msgid "Sanitize textarea field data"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: admin/html/whats-new.php:
|
1581 |
msgid ""
|
1582 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
1583 |
"their data"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: admin/html/whats-new.php:
|
1587 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: admin/html/whats-new.php:
|
1591 |
msgid "Add Namibian Dollar in currency list"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: admin/html/whats-new.php:
|
1595 |
msgid "Add sync values option for option data fields"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: admin/html/whats-new.php:
|
1599 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: admin/html/whats-new.php:
|
1603 |
msgid "Limit the selection of one image at a time"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: admin/html/whats-new.php:
|
1607 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: admin/html/whats-new.php:
|
1611 |
msgid "Sanitize text and textarea field data"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: admin/html/whats-new.php:
|
1615 |
msgid ""
|
1616 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
1617 |
"data"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: admin/html/whats-new.php:
|
1621 |
msgid "Saving custom taxonomies for type text input"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: admin/html/whats-new.php:
|
1625 |
msgid "Admin settings link for recaptcha helper text"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: admin/html/whats-new.php:
|
1629 |
msgid "Undefined name property for Custom HTML fields"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: admin/html/whats-new.php:
|
1633 |
msgid "Delete attachment process"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: admin/html/whats-new.php:
|
1637 |
msgid "Missing billing address in invoice PDF"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: admin/html/whats-new.php:
|
1641 |
msgid "Showing country field value in frontend post content"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: admin/html/whats-new.php:
|
1645 |
msgid "Avatar size display not complying with admin settings size"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: admin/html/whats-new.php:
|
1649 |
msgid "Display default avatars on admin settings discussion page"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: admin/html/whats-new.php:
|
1653 |
msgid "Redirect to subscription page at registration"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: admin/html/whats-new.php:
|
1657 |
msgid "Error notice regarding registration page redirect"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: admin/html/whats-new.php:
|
1661 |
msgid "Escaping html in registration errors"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: admin/html/whats-new.php:
|
1665 |
msgid "Default login redirect link"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: admin/html/whats-new.php:
|
1669 |
msgid "Implementing default WP login page override option"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: admin/html/whats-new.php:
|
1673 |
msgid "Transparent background of autosuggestion dropdown"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: admin/html/whats-new.php:
|
1677 |
msgid "Import forms system"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: admin/html/whats-new.php:
|
1681 |
msgid "Password reset system"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: admin/html/whats-new.php:
|
1685 |
msgid "Updated url validation regex to support modern tlds"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: admin/html/whats-new.php:
|
1689 |
msgid "Export WPUF forms individually from admin tools page"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: admin/html/whats-new.php:
|
1693 |
msgid "Subscription cycle label translation issue"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: admin/html/whats-new.php:
|
1697 |
msgid "ACF integration for checkbox fields"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: admin/html/whats-new.php:
|
1701 |
msgid "Illegal string offset warning while updating settings"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: admin/html/whats-new.php:
|
1705 |
msgid "Conditional logic for Section Break field"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: admin/html/whats-new.php:
|
1709 |
msgid "Subscriptions cannot be deleted from backend"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: admin/html/whats-new.php:
|
1713 |
msgid "A regression regarding saving checkbox data"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: admin/html/whats-new.php:
|
1717 |
msgid "Default value of multi-select fields is not showing"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: admin/html/whats-new.php:
|
1721 |
msgid "Hide post edit option when subscription is expired"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: admin/html/whats-new.php:
|
1725 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: admin/html/whats-new.php:
|
1729 |
msgid "Check files to prevent duplicity in media upload"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: admin/html/whats-new.php:
|
1733 |
msgid ""
|
1734 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
1735 |
"uploading same file multiple times. Though this won't work with already "
|
1736 |
"uploaded medias."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: admin/html/whats-new.php:
|
1740 |
msgid "Refactor address fields in Account section"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: admin/html/whats-new.php:
|
1744 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
-
#: admin/html/whats-new.php:
|
1748 |
msgid "Update Paypal payment gateway"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: admin/html/whats-new.php:
|
1752 |
msgid "Paypal payment gateway has seen some improvements."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: admin/html/whats-new.php:
|
1756 |
msgid "Default Category selection improvements"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: admin/html/whats-new.php:
|
1760 |
msgid ""
|
1761 |
"An intuitive way of selecting default category of a selected post type has "
|
1762 |
"been introduced."
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: admin/html/whats-new.php:
|
1766 |
msgid "Compatibility issue with ACF date time field"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: admin/html/whats-new.php:
|
1770 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: admin/html/whats-new.php:
|
1774 |
msgid "Media title, caption & description not saving"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: admin/html/whats-new.php:
|
1778 |
msgid ""
|
1779 |
"Media title, caption & description were not saving from frontend. They will "
|
1780 |
"now."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: admin/html/whats-new.php:
|
1784 |
msgid ""
|
1785 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
1786 |
"metabox"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: admin/html/whats-new.php:
|
1790 |
msgid ""
|
1791 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
1792 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: admin/html/whats-new.php:
|
1796 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: admin/html/whats-new.php:
|
1800 |
msgid ""
|
1801 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
1802 |
"fixed."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: admin/html/whats-new.php:
|
1806 |
msgid "Multi-column Repeater field data saving issue"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: admin/html/whats-new.php:
|
1810 |
msgid ""
|
1811 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
1812 |
"fixed."
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: admin/html/whats-new.php:
|
1816 |
msgid "Multistep form conflict with Elementor"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: admin/html/whats-new.php:
|
1820 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: admin/html/whats-new.php:
|
1824 |
msgid "Multiple images showing issue in frontend"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: admin/html/whats-new.php:
|
1828 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: admin/html/whats-new.php:
|
1832 |
msgid "Nonce not verify on login"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: admin/html/whats-new.php:
|
1836 |
msgid "Return of function wp_verify_nonce() was ignored."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: admin/html/whats-new.php:
|
1840 |
msgid "Option to set which tab shows as active on the account page"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: admin/html/whats-new.php:
|
1844 |
msgid ""
|
1845 |
"Option to set which tab shows as active on the account page. To configure "
|
1846 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
1847 |
"Account->Active Tab "
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: admin/html/whats-new.php:
|
1851 |
msgid "Unlock option was unavailable after the post being locked"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: admin/html/whats-new.php:
|
1855 |
msgid "Unlock option was unavailable after the post being locked."
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: admin/html/whats-new.php:
|
1859 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: admin/html/whats-new.php:
|
1863 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: admin/html/whats-new.php:
|
1867 |
msgid "Sending admin payment received email twice"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: admin/html/whats-new.php:
|
1871 |
msgid ""
|
1872 |
"After processing payment admin & user was receiving payment received email "
|
1873 |
"twice."
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: admin/html/whats-new.php:
|
1877 |
msgid ""
|
1878 |
"Add shortcode support to display post information in the Post Expiration "
|
1879 |
"Message"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: admin/html/whats-new.php:
|
1883 |
msgid ""
|
1884 |
"Add shortcode support to display post information in the Post Expiration "
|
1885 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
1886 |
"{post_title} {post_status}</strong>"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: admin/html/whats-new.php:
|
1890 |
msgid "Add optin on the setup wizard"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: admin/html/whats-new.php:
|
1894 |
msgid ""
|
1895 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
1896 |
"share server environment details (php, mysql, server, WordPress versions), "
|
@@ -1898,126 +1906,126 @@ msgid ""
|
|
1898 |
"name and url, admin name and email address. No sensitive data is tracked"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: admin/html/whats-new.php:
|
1902 |
msgid "Post Owner problem"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: admin/html/whats-new.php:
|
1906 |
msgid ""
|
1907 |
"Posts were not assigned to the selected default post owner, this issue has "
|
1908 |
"been fixed."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: admin/html/whats-new.php:
|
1912 |
msgid "Google reCaptcha was not working"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: admin/html/whats-new.php:
|
1916 |
msgid ""
|
1917 |
"Google reCaptcha was not working, users could submit the form without "
|
1918 |
"reCaptcha validation."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: admin/html/whats-new.php:
|
1922 |
msgid "Added column field"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: admin/html/whats-new.php:
|
1926 |
msgid "Unable to render the events on the front-end dashboard"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: admin/html/whats-new.php:
|
1930 |
msgid ""
|
1931 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1932 |
"get it fixed in this version."
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: admin/html/whats-new.php:
|
1936 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: admin/html/whats-new.php:
|
1940 |
msgid ""
|
1941 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1942 |
"fixed."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: admin/html/whats-new.php:
|
1946 |
msgid "Text input field for taxonomies not working"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: admin/html/whats-new.php:
|
1950 |
msgid ""
|
1951 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1952 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: admin/html/whats-new.php:
|
1956 |
msgid ""
|
1957 |
"In radio and checkbox field use conditional logic that value does not save "
|
1958 |
"in database"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: admin/html/whats-new.php:
|
1962 |
msgid ""
|
1963 |
"The selected value of radio and checkbox field were not showing while "
|
1964 |
"editing posts from the backend or frontend, you can see the selected value "
|
1965 |
"in this version."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: admin/html/whats-new.php:
|
1969 |
msgid "The args param not working with get_avatar filter"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: admin/html/whats-new.php:
|
1973 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: admin/html/whats-new.php:
|
1977 |
msgid "The item in ajax taxonomy field was not selected"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: admin/html/whats-new.php:
|
1981 |
msgid ""
|
1982 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1983 |
"showing in the backend and frontend which have been fixed."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: admin/html/whats-new.php:
|
1987 |
msgid "Unable to send new user registration email"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: admin/html/whats-new.php:
|
1991 |
msgid ""
|
1992 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
1993 |
"to send the new user registration email."
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: admin/html/whats-new.php:
|
1997 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: admin/html/whats-new.php:
|
2001 |
msgid ""
|
2002 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2003 |
"Frontend were not working. In this version, you will get it fixed."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: admin/html/whats-new.php:
|
2007 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: admin/html/whats-new.php:
|
2011 |
msgid ""
|
2012 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2013 |
"[wpuf dashboard]"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: admin/html/whats-new.php:
|
2017 |
msgid "Retain default when determining whether to display the admin bar"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: admin/html/whats-new.php:
|
2021 |
msgid ""
|
2022 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2023 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
@@ -2027,11 +2035,11 @@ msgid ""
|
|
2027 |
"frontend."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: admin/html/whats-new.php:
|
2031 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: admin/html/whats-new.php:
|
2035 |
msgid ""
|
2036 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2037 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
@@ -2039,42 +2047,42 @@ msgid ""
|
|
2039 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: admin/html/whats-new.php:
|
2043 |
msgid "Product form was unable to show the single gallery image"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: admin/html/whats-new.php:
|
2047 |
msgid ""
|
2048 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2049 |
"product form, that image were not showing on the frontend."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: admin/html/whats-new.php:
|
2053 |
msgid "WooCommerce gallery images not getting saved"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: admin/html/whats-new.php:
|
2057 |
msgid ""
|
2058 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2059 |
"working. You will get it fixed in this version."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: admin/html/whats-new.php:
|
2063 |
msgid "The Events Calendar Integration Form"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: admin/html/whats-new.php:
|
2067 |
msgid ""
|
2068 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2069 |
"has a one click pre-build event form that has been integrated with The "
|
2070 |
"Events Calendar plugin"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: admin/html/whats-new.php:
|
2074 |
msgid "Post Submission Facility From Account Page"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: admin/html/whats-new.php:
|
2078 |
msgid ""
|
2079 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2080 |
"Post</b>. Now admin can allow users to submit post from their default "
|
@@ -2083,504 +2091,504 @@ msgid ""
|
|
2083 |
"you can assign any post form that will use to submit posts."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: admin/html/whats-new.php:
|
2087 |
msgid "Login/Lost Password Link Under Registration Form"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: admin/html/whats-new.php:
|
2091 |
msgid "Added Login/Lost Password link under registration form"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: admin/html/whats-new.php:
|
2095 |
msgid "Added drag and drop image ordering on image upload"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: admin/html/whats-new.php:
|
2099 |
msgid ""
|
2100 |
"Now frontend users can drag & drop the images/files to change the order "
|
2101 |
"while uploading."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: admin/html/whats-new.php:
|
2105 |
msgid "Added reCAPTCHA field in login form"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: admin/html/whats-new.php:
|
2109 |
msgid ""
|
2110 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2111 |
"related settings from <strong>User Frontend > Settings > "
|
2112 |
"Login/Registration</strong>"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: admin/html/whats-new.php:
|
2116 |
msgid "Added preview option in forms"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: admin/html/whats-new.php:
|
2120 |
msgid ""
|
2121 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2122 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2123 |
"shortcode"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: admin/html/whats-new.php:
|
2127 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: admin/html/whats-new.php:
|
2131 |
msgid ""
|
2132 |
"The upload button will not be hidden until the user selects max number of "
|
2133 |
"files "
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: admin/html/whats-new.php:
|
2137 |
msgid "Added form limit notice before form submission"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: admin/html/whats-new.php:
|
2141 |
msgid ""
|
2142 |
"Limit notice message was showing after submission, now it is showing when "
|
2143 |
"rendering the form"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: admin/html/whats-new.php:
|
2147 |
msgid "Fixed: default post category not saving"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: admin/html/whats-new.php:
|
2151 |
msgid ""
|
2152 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2153 |
"category options were not saving. Now, it's fixed."
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: admin/html/whats-new.php:
|
2157 |
msgid ""
|
2158 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2159 |
"properly"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: admin/html/whats-new.php:
|
2163 |
msgid ""
|
2164 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2165 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: admin/html/whats-new.php:
|
2169 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: admin/html/whats-new.php:
|
2173 |
msgid ""
|
2174 |
"If you are using other language than English. Please <b>rename</b> your "
|
2175 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2176 |
"change was made to support translations from translate.wordpress.org"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: admin/html/whats-new.php:
|
2180 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: admin/html/whats-new.php:
|
2184 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: admin/html/whats-new.php:
|
2188 |
msgid "Added billing address customizer."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: admin/html/whats-new.php:
|
2192 |
msgid "Added customizer options for billing address in payment page."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: admin/html/whats-new.php:
|
2196 |
msgid "Make the payment page responsive."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: admin/html/whats-new.php:
|
2200 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: admin/html/whats-new.php:
|
2204 |
msgid "Fixed image upload issue in Safari."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: admin/html/whats-new.php:
|
2208 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: admin/html/whats-new.php:
|
2212 |
msgid "Post update issue after updating or removing post images."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: admin/html/whats-new.php:
|
2216 |
msgid ""
|
2217 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2218 |
"now."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: admin/html/whats-new.php:
|
2222 |
msgid "Allow overriding form input styles using theme styling."
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: admin/html/whats-new.php:
|
2226 |
msgid "Overriding form input styles using theme style is now possible."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: admin/html/whats-new.php:
|
2230 |
msgid "Fixed Auto Login after registration."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: admin/html/whats-new.php:
|
2234 |
msgid "Auto Login after registration was not working is fixed now."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: admin/html/whats-new.php:
|
2238 |
msgid "Fixed fallback cost calculation"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: admin/html/whats-new.php:
|
2242 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: admin/html/whats-new.php:
|
2246 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: admin/html/whats-new.php:
|
2250 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: admin/html/whats-new.php:
|
2254 |
msgid "Show Free pack users in subscribers list."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: admin/html/whats-new.php:
|
2258 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: admin/html/whats-new.php:
|
2262 |
msgid "WP User Frontend Guten Block is added"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: admin/html/whats-new.php:
|
2266 |
msgid ""
|
2267 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2268 |
"preview of the form. "
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: admin/html/whats-new.php:
|
2272 |
msgid "Advanced Custom Fields plugin compatibility"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: admin/html/whats-new.php:
|
2276 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: admin/html/whats-new.php:
|
2280 |
msgid "Taxonomy Terms not showing for custom post types"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: admin/html/whats-new.php:
|
2284 |
msgid ""
|
2285 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2286 |
"within Form Settings and Dashboard Post Listing"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: admin/html/whats-new.php:
|
2290 |
msgid "Various other code optimizations"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: admin/html/whats-new.php:
|
2294 |
msgid "Code structure organization and optimization for better performance"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: admin/html/whats-new.php:
|
2298 |
msgid "WoooCommerce billing address Sync"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: admin/html/whats-new.php:
|
2302 |
msgid ""
|
2303 |
"If an existing customer has previously set his billing address, that will "
|
2304 |
"be imported into WPUF Billing address "
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: admin/html/whats-new.php:
|
2308 |
msgid "Trial subscription message not showing properly"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: admin/html/whats-new.php:
|
2312 |
msgid "Subscriptions with Trial now shows trial notices"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: admin/html/whats-new.php:
|
2316 |
msgid "Reset email Key not working"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: admin/html/whats-new.php:
|
2320 |
msgid "Reset Email key was not working in some cases"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: admin/html/whats-new.php:
|
2324 |
msgid "Post count not showing on the frontend dashboard"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: admin/html/whats-new.php:
|
2328 |
msgid ""
|
2329 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2330 |
"now fixed and shows count for each post type"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: admin/html/whats-new.php:
|
2334 |
msgid "Login Redirect showing blank page is fixed"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: admin/html/whats-new.php:
|
2338 |
msgid ""
|
2339 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2340 |
"redirecting to blank page for users who hit login page directly"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: admin/html/whats-new.php:
|
2344 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: admin/html/whats-new.php:
|
2348 |
msgid ""
|
2349 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2350 |
"redirect users to the page from which they went for Login. "
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: admin/html/whats-new.php:
|
2354 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: admin/html/whats-new.php:
|
2358 |
msgid ""
|
2359 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2360 |
"now fixed"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: admin/html/whats-new.php:
|
2364 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: admin/html/whats-new.php:
|
2368 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: admin/html/whats-new.php:
|
2372 |
msgid "Various other code improvements"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: admin/html/whats-new.php:
|
2376 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: admin/html/whats-new.php:
|
2380 |
msgid ""
|
2381 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2382 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: admin/html/whats-new.php:
|
2386 |
msgid "Added Login Redirect Settings"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: admin/html/whats-new.php:
|
2390 |
msgid ""
|
2391 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2392 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2393 |
"redirected to this page after login."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: admin/html/whats-new.php:
|
2397 |
msgid "Image Upload field button text can be changed"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: admin/html/whats-new.php:
|
2401 |
msgid ""
|
2402 |
"The upload button text can now be changed for image upload fields which "
|
2403 |
"defaults to \"Select Image\" if not set. "
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: admin/html/whats-new.php:
|
2407 |
msgid "Multi Step Form styles made compatible with more themes"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: admin/html/whats-new.php:
|
2411 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: admin/html/whats-new.php:
|
2415 |
msgid "Required field condition for google map not working is fixed"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: admin/html/whats-new.php:
|
2419 |
msgid ""
|
2420 |
"If Google Map field was set as required users were able to submit form "
|
2421 |
"without changing the default value."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: admin/html/whats-new.php:
|
2425 |
msgid "Admin form builder is now fully responsive."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: admin/html/whats-new.php:
|
2429 |
msgid ""
|
2430 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2431 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2432 |
"the go."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: admin/html/whats-new.php:
|
2436 |
msgid "Added color schemes for creating attractive form layouts."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: admin/html/whats-new.php:
|
2440 |
msgid ""
|
2441 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2442 |
"from each form's new display settings."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: admin/html/whats-new.php:
|
2446 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: admin/html/whats-new.php:
|
2450 |
msgid ""
|
2451 |
"Free subscription packs now can only be purchased once and the limit "
|
2452 |
"applies properly"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: admin/html/whats-new.php:
|
2456 |
msgid "Various other bug fixes and improvements were made "
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: admin/html/whats-new.php:
|
2460 |
msgid "Please see the change log to see full details."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: admin/html/whats-new.php:
|
2464 |
msgid "Added upgrade function for default category"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: admin/html/whats-new.php:
|
2468 |
msgid "Upgrader added to upgrade previously set default post category."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: admin/html/whats-new.php:
|
2472 |
msgid "Subscription pack cannot be canceled"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: admin/html/whats-new.php:
|
2476 |
msgid ""
|
2477 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2478 |
"in subscription details section."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: admin/html/whats-new.php:
|
2482 |
msgid "page installer admin notice logic issue"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: admin/html/whats-new.php:
|
2486 |
msgid ""
|
2487 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2488 |
"default value not set."
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: admin/html/whats-new.php:
|
2492 |
msgid "Setup Wizard"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: admin/html/whats-new.php:
|
2496 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: admin/html/whats-new.php:
|
2500 |
msgid "Multi-select Category"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: admin/html/whats-new.php:
|
2504 |
msgid "Add multi-select to default category in post form settings."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: admin/html/whats-new.php:
|
2508 |
msgid "Select Text option for Taxonomy"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: admin/html/whats-new.php:
|
2512 |
msgid ""
|
2513 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2514 |
"with empty value as first option for Taxonomy dropdown."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: admin/html/whats-new.php:
|
2518 |
msgid "Taxonomy Checkbox Inline"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: admin/html/whats-new.php:
|
2522 |
msgid ""
|
2523 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2524 |
"Taxonomy checkbox fields inline."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: admin/html/whats-new.php:
|
2528 |
msgid "Manage schedule for form submission"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: admin/html/whats-new.php:
|
2532 |
msgid ""
|
2533 |
"Do not accept form submission if the current date is not between the date "
|
2534 |
"range of the schedule."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: admin/html/whats-new.php:
|
2538 |
msgid "Restrict form submission based on the user roles"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: admin/html/whats-new.php:
|
2542 |
msgid ""
|
2543 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2544 |
"role base permission on form submission."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: admin/html/whats-new.php:
|
2548 |
msgid "Limit how many entries a form will accept"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: admin/html/whats-new.php:
|
2552 |
msgid ""
|
2553 |
"Limit how many entries a form will accept and display a custom message when "
|
2554 |
"that limit is reached."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: admin/html/whats-new.php:
|
2558 |
msgid "Show/hide Admin Bar"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: admin/html/whats-new.php:
|
2562 |
msgid "Control the admin bar visibility based on user roles."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: admin/html/whats-new.php:
|
2566 |
msgid "Ajax Login widget"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: admin/html/whats-new.php:
|
2570 |
msgid ""
|
2571 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2572 |
"form do not required page loading for login."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: admin/html/whats-new.php:
|
2576 |
msgid "Form submission with Captcha field"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: admin/html/whats-new.php:
|
2580 |
msgid "Form field validation process updated if form submits with captcha field."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: admin/html/whats-new.php:
|
2584 |
msgid "What's New in WPUF?"
|
2585 |
msgstr ""
|
2586 |
|
@@ -3026,15 +3034,27 @@ msgstr ""
|
|
3026 |
msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: admin/promotion.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3030 |
msgid "Sure! I'd love to!"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: admin/promotion.php:
|
3034 |
msgid "I've already left a review"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: admin/promotion.php:
|
3038 |
msgid "Never show again"
|
3039 |
msgstr ""
|
3040 |
|
@@ -4510,23 +4530,23 @@ msgid "State/Province/Region"
|
|
4510 |
msgstr ""
|
4511 |
|
4512 |
#: includes/class-billing-address.php:217
|
4513 |
-
#: templates/dashboard/billing-address.php:
|
4514 |
msgid "Choose a state"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
#: includes/class-billing-address.php:236
|
4518 |
-
#: templates/dashboard/billing-address.php:
|
4519 |
msgid "Address Line 1 "
|
4520 |
msgstr ""
|
4521 |
|
4522 |
#: includes/class-billing-address.php:247
|
4523 |
-
#: templates/dashboard/billing-address.php:
|
4524 |
msgid "Address Line 2 "
|
4525 |
msgstr ""
|
4526 |
|
4527 |
#: includes/class-billing-address.php:258 includes/class-customizer.php:26
|
4528 |
#: includes/class-customizer.php:70 includes/class-privacy.php:253
|
4529 |
-
#: templates/dashboard/billing-address.php:
|
4530 |
msgid "City"
|
4531 |
msgstr ""
|
4532 |
|
@@ -4536,7 +4556,7 @@ msgid "Postal Code/ZIP"
|
|
4536 |
msgstr ""
|
4537 |
|
4538 |
#: includes/class-billing-address.php:278
|
4539 |
-
#: templates/dashboard/billing-address.php:
|
4540 |
msgid "Update Billing Address"
|
4541 |
msgstr ""
|
4542 |
|
@@ -4678,7 +4698,7 @@ msgid ""
|
|
4678 |
msgstr ""
|
4679 |
|
4680 |
#: includes/class-frontend-form-post.php:615
|
4681 |
-
#: includes/class-frontend-render-form.php:
|
4682 |
msgid "You do not have sufficient permissions to access this form."
|
4683 |
msgstr ""
|
4684 |
|
@@ -4693,7 +4713,7 @@ msgid ""
|
|
4693 |
"Please check your inbox!"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: includes/class-frontend-render-form.php:
|
4697 |
#: includes/free/class-login.php:453
|
4698 |
msgid "Empty reCaptcha Field"
|
4699 |
msgstr ""
|
@@ -6362,7 +6382,7 @@ msgstr ""
|
|
6362 |
msgid "PayPal API signature"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: templates/dashboard/billing-address.php:
|
6366 |
msgid "Postal/ZIP Code"
|
6367 |
msgstr ""
|
6368 |
|
2 |
# This file is distributed under the GPL2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP User Frontend 3.5.7\n"
|
6 |
"Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2020-11-21 04:02:42+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
569 |
|
570 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:35
|
571 |
#: admin/form-builder/class-wpuf-admin-form-builder-ajax.php:82
|
572 |
+
#: admin/promotion.php:205 admin/promotion.php:209 admin/promotion.php:266
|
573 |
+
#: admin/promotion.php:270
|
574 |
msgid "Unauthorized operation"
|
575 |
msgstr ""
|
576 |
|
1412 |
msgstr ""
|
1413 |
|
1414 |
#: admin/html/whats-new.php:9
|
1415 |
+
msgid "Custom html content field's width"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
#: admin/html/whats-new.php:13
|
1419 |
+
msgid "All states of New Zealand are added"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: admin/html/whats-new.php:24
|
1423 |
+
msgid "Get appropriate user id when role based conditions are present"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: admin/html/whats-new.php:28
|
1427 |
msgid "Show Invalid subscription message if wrong pack id passed"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: admin/html/whats-new.php:32
|
1431 |
msgid "URL field new window not working"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: admin/html/whats-new.php:36
|
1435 |
msgid "Option label not working when & use"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: admin/html/whats-new.php:40
|
1439 |
msgid "Ajax type category not showing on edit"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: admin/html/whats-new.php:44
|
1443 |
msgid "Multiple file image can't select"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: admin/html/whats-new.php:48
|
1447 |
msgid "Subscription pack PayPal Checkout gets \"Error: Access Denied\""
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: admin/html/whats-new.php:52
|
1451 |
msgid "Conflict image field with acf image field"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: admin/html/whats-new.php:56
|
1455 |
msgid "Missing Auckland State for New Zealand country"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: admin/html/whats-new.php:60
|
1459 |
msgid "Added support for WooCommerce product category value replacemen"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: admin/html/whats-new.php:70
|
1463 |
msgid "Add character restriction feature"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: admin/html/whats-new.php:74
|
1467 |
msgid "Make sure post author edit link works only in frontend"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: admin/html/whats-new.php:78
|
1471 |
msgid "Inconsistency in lost password reset email message"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: admin/html/whats-new.php:82
|
1475 |
msgid "Saving custom taxonomy terms when input type is text"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: admin/html/whats-new.php:86
|
1479 |
msgid "Taxonomy field JS error in builder"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/html/whats-new.php:90
|
1483 |
msgid "Showing WPUF edit link for WP default roles"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: admin/html/whats-new.php:94
|
1487 |
msgid "Upload button unresponsive issue in iOS"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: admin/html/whats-new.php:104
|
1491 |
msgid "Add post edit link for post authors in single or archive pages"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: admin/html/whats-new.php:108
|
1495 |
msgid "Enhance post delete message"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: admin/html/whats-new.php:112
|
1499 |
msgid "Refactor control buttons visibility in form builder"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: admin/html/whats-new.php:116
|
1503 |
msgid "Add missing colons after field label"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: admin/html/whats-new.php:120
|
1507 |
msgid "Post edit map capability condition"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: admin/html/whats-new.php:124
|
1511 |
msgid "Role based permission for accessing a post form"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: admin/html/whats-new.php:128
|
1515 |
msgid "Section-break field alignment"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: admin/html/whats-new.php:132
|
1519 |
msgid "Pay per post doesn't work if subscription pack is activated"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: admin/html/whats-new.php:136
|
1523 |
msgid "Mime type for uploading JSON files"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: admin/html/whats-new.php:140
|
1527 |
msgid "File upload with same file name"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: admin/html/whats-new.php:144
|
1531 |
msgid "Post preview missing fields"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: admin/html/whats-new.php:148
|
1535 |
msgid "Illigal variable declartion"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: admin/html/whats-new.php:152
|
1539 |
msgid "Featured image updating issue"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: admin/html/whats-new.php:156
|
1543 |
msgid "Conflict with Phlox theme"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: admin/html/whats-new.php:160
|
1547 |
msgid "Textarea custom field data sanitization"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: admin/html/whats-new.php:164
|
1551 |
msgid "exclude_type warning in wpuf_category_checklist"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: admin/html/whats-new.php:168
|
1555 |
msgid "Category field not showing all child categories for selection type child of"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: admin/html/whats-new.php:172
|
1559 |
msgid "Conflict between image and file upload custom fields"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: admin/html/whats-new.php:176
|
1563 |
msgid "Login url when login page is not set"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: admin/html/whats-new.php:186
|
1567 |
msgid ""
|
1568 |
"Use common names for Ivory Coast, North Korea and Sourth Korea instead of "
|
1569 |
"their official names"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: admin/html/whats-new.php:190
|
1573 |
msgid "Fix condition to use default avatar"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: admin/html/whats-new.php:194
|
1577 |
msgid "Make Email and URL fields clickable"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: admin/html/whats-new.php:198
|
1581 |
msgid "Fix redirect after user login"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: admin/html/whats-new.php:202
|
1585 |
msgid "Sanitize textarea field data"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: admin/html/whats-new.php:206
|
1589 |
msgid ""
|
1590 |
"Fix missing colon to email, URL, text and textarea labels when renders "
|
1591 |
"their data"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: admin/html/whats-new.php:210
|
1595 |
msgid "Prevent showing empty labels for fields that have render_field_data method"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: admin/html/whats-new.php:220
|
1599 |
msgid "Add Namibian Dollar in currency list"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: admin/html/whats-new.php:224
|
1603 |
msgid "Add sync values option for option data fields"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: admin/html/whats-new.php:228
|
1607 |
msgid "Allow uploading image that having filesize meets php ini settings"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: admin/html/whats-new.php:232
|
1611 |
msgid "Limit the selection of one image at a time"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: admin/html/whats-new.php:236
|
1615 |
msgid "Use file name and size to generate hash to prevent duplicant image upload"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: admin/html/whats-new.php:240
|
1619 |
msgid "Sanitize text and textarea field data"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: admin/html/whats-new.php:244
|
1623 |
msgid ""
|
1624 |
"Show label instead of values for radio, checkbox, dropdown and multiselect "
|
1625 |
"data"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: admin/html/whats-new.php:248
|
1629 |
msgid "Saving custom taxonomies for type text input"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: admin/html/whats-new.php:252
|
1633 |
msgid "Admin settings link for recaptcha helper text"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: admin/html/whats-new.php:256
|
1637 |
msgid "Undefined name property for Custom HTML fields"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: admin/html/whats-new.php:260
|
1641 |
msgid "Delete attachment process"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: admin/html/whats-new.php:264
|
1645 |
msgid "Missing billing address in invoice PDF"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: admin/html/whats-new.php:268
|
1649 |
msgid "Showing country field value in frontend post content"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: admin/html/whats-new.php:272
|
1653 |
msgid "Avatar size display not complying with admin settings size"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: admin/html/whats-new.php:276
|
1657 |
msgid "Display default avatars on admin settings discussion page"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: admin/html/whats-new.php:280
|
1661 |
msgid "Redirect to subscription page at registration"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: admin/html/whats-new.php:284
|
1665 |
msgid "Error notice regarding registration page redirect"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: admin/html/whats-new.php:288
|
1669 |
msgid "Escaping html in registration errors"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: admin/html/whats-new.php:292
|
1673 |
msgid "Default login redirect link"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: admin/html/whats-new.php:296
|
1677 |
msgid "Implementing default WP login page override option"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: admin/html/whats-new.php:300
|
1681 |
msgid "Transparent background of autosuggestion dropdown"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: admin/html/whats-new.php:310
|
1685 |
msgid "Import forms system"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: admin/html/whats-new.php:314
|
1689 |
msgid "Password reset system"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: admin/html/whats-new.php:318
|
1693 |
msgid "Updated url validation regex to support modern tlds"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: admin/html/whats-new.php:322
|
1697 |
msgid "Export WPUF forms individually from admin tools page"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: admin/html/whats-new.php:326
|
1701 |
msgid "Subscription cycle label translation issue"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: admin/html/whats-new.php:330
|
1705 |
msgid "ACF integration for checkbox fields"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: admin/html/whats-new.php:334
|
1709 |
msgid "Illegal string offset warning while updating settings"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: admin/html/whats-new.php:338
|
1713 |
msgid "Conditional logic for Section Break field"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: admin/html/whats-new.php:342
|
1717 |
msgid "Subscriptions cannot be deleted from backend"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: admin/html/whats-new.php:346
|
1721 |
msgid "A regression regarding saving checkbox data"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: admin/html/whats-new.php:350
|
1725 |
msgid "Default value of multi-select fields is not showing"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: admin/html/whats-new.php:360
|
1729 |
msgid "Hide post edit option when subscription is expired"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: admin/html/whats-new.php:362
|
1733 |
msgid "Hide post edit option from users whose subscription pack is expired."
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: admin/html/whats-new.php:365
|
1737 |
msgid "Check files to prevent duplicity in media upload"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: admin/html/whats-new.php:367
|
1741 |
msgid ""
|
1742 |
"A simple measure has been taken to prevent maliciously flooding the site by "
|
1743 |
"uploading same file multiple times. Though this won't work with already "
|
1744 |
"uploaded medias."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: admin/html/whats-new.php:370
|
1748 |
msgid "Refactor address fields in Account section"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: admin/html/whats-new.php:372
|
1752 |
msgid "Address edit section from Account section has been rewritten to improve UX."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: admin/html/whats-new.php:375
|
1756 |
msgid "Update Paypal payment gateway"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: admin/html/whats-new.php:377
|
1760 |
msgid "Paypal payment gateway has seen some improvements."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: admin/html/whats-new.php:380
|
1764 |
msgid "Default Category selection improvements"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: admin/html/whats-new.php:382
|
1768 |
msgid ""
|
1769 |
"An intuitive way of selecting default category of a selected post type has "
|
1770 |
"been introduced."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: admin/html/whats-new.php:385
|
1774 |
msgid "Compatibility issue with ACF date time field"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: admin/html/whats-new.php:387
|
1778 |
msgid "A Compatibility issue with ACF date time field has been addressed."
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: admin/html/whats-new.php:390
|
1782 |
msgid "Media title, caption & description not saving"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: admin/html/whats-new.php:392
|
1786 |
msgid ""
|
1787 |
"Media title, caption & description were not saving from frontend. They will "
|
1788 |
"now."
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: admin/html/whats-new.php:395
|
1792 |
msgid ""
|
1793 |
"The Events Calendar venue and organizer fields issue in WPUF Custom Fields "
|
1794 |
"metabox"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: admin/html/whats-new.php:397
|
1798 |
msgid ""
|
1799 |
"A workaround has been introduced to save The Events Calendar Venue and "
|
1800 |
"Organizer fields properly from WPUF Custom Fields metabox."
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: admin/html/whats-new.php:400
|
1804 |
msgid "Checkbox data not saving from WPUF Custom Fields metabox"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: admin/html/whats-new.php:402
|
1808 |
msgid ""
|
1809 |
"Checkboxe data from WPUF Custom Fields metabox were not saving. It has been "
|
1810 |
"fixed."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
#: admin/html/whats-new.php:405
|
1814 |
msgid "Multi-column Repeater field data saving issue"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: admin/html/whats-new.php:407
|
1818 |
msgid ""
|
1819 |
"Multi-column Repeater field data from a form was not saving. It has been "
|
1820 |
"fixed."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: admin/html/whats-new.php:410
|
1824 |
msgid "Multistep form conflict with Elementor"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: admin/html/whats-new.php:412
|
1828 |
msgid "Multistep form had a conflict with Elementor. It has been fixed."
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: admin/html/whats-new.php:415
|
1832 |
msgid "Multiple images showing issue in frontend"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: admin/html/whats-new.php:417
|
1836 |
msgid "Multiple images in a post were not showing in frontend. Now they will."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: admin/html/whats-new.php:426
|
1840 |
msgid "Nonce not verify on login"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: admin/html/whats-new.php:428
|
1844 |
msgid "Return of function wp_verify_nonce() was ignored."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: admin/html/whats-new.php:437
|
1848 |
msgid "Option to set which tab shows as active on the account page"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: admin/html/whats-new.php:439
|
1852 |
msgid ""
|
1853 |
"Option to set which tab shows as active on the account page. To configure "
|
1854 |
"this setting navigate to wp-admin->User Frontend->Settings->My "
|
1855 |
"Account->Active Tab "
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: admin/html/whats-new.php:442
|
1859 |
msgid "Unlock option was unavailable after the post being locked"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: admin/html/whats-new.php:444
|
1863 |
msgid "Unlock option was unavailable after the post being locked."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: admin/html/whats-new.php:447
|
1867 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: admin/html/whats-new.php:449
|
1871 |
msgid "Gutenberg block of WPUF didn't work on bedrock installation."
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: admin/html/whats-new.php:452
|
1875 |
msgid "Sending admin payment received email twice"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: admin/html/whats-new.php:454
|
1879 |
msgid ""
|
1880 |
"After processing payment admin & user was receiving payment received email "
|
1881 |
"twice."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: admin/html/whats-new.php:457
|
1885 |
msgid ""
|
1886 |
"Add shortcode support to display post information in the Post Expiration "
|
1887 |
"Message"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: admin/html/whats-new.php:459
|
1891 |
msgid ""
|
1892 |
"Add shortcode support to display post information in the Post Expiration "
|
1893 |
"Message. You can use: <strong>{post_author} {post_url} {blogname} "
|
1894 |
"{post_title} {post_status}</strong>"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: admin/html/whats-new.php:462
|
1898 |
msgid "Add optin on the setup wizard"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: admin/html/whats-new.php:464
|
1902 |
msgid ""
|
1903 |
"Added optin on the setup wizard, admin can choose whether he/she wants to "
|
1904 |
"share server environment details (php, mysql, server, WordPress versions), "
|
1906 |
"name and url, admin name and email address. No sensitive data is tracked"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: admin/html/whats-new.php:473
|
1910 |
msgid "Post Owner problem"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: admin/html/whats-new.php:475
|
1914 |
msgid ""
|
1915 |
"Posts were not assigned to the selected default post owner, this issue has "
|
1916 |
"been fixed."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: admin/html/whats-new.php:478
|
1920 |
msgid "Google reCaptcha was not working"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: admin/html/whats-new.php:480
|
1924 |
msgid ""
|
1925 |
"Google reCaptcha was not working, users could submit the form without "
|
1926 |
"reCaptcha validation."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: admin/html/whats-new.php:489
|
1930 |
msgid "Added column field"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: admin/html/whats-new.php:494
|
1934 |
msgid "Unable to render the events on the front-end dashboard"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: admin/html/whats-new.php:496
|
1938 |
msgid ""
|
1939 |
"On the frontend dashboard, the submitted events were not showing, you will "
|
1940 |
"get it fixed in this version."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: admin/html/whats-new.php:499
|
1944 |
msgid "Page order getting 0(zero) after editing from the frontend"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: admin/html/whats-new.php:501
|
1948 |
msgid ""
|
1949 |
"Page order was not saving while editing a post using WPUF form, it has been "
|
1950 |
"fixed."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: admin/html/whats-new.php:504
|
1954 |
msgid "Text input field for taxonomies not working"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: admin/html/whats-new.php:506
|
1958 |
msgid ""
|
1959 |
"When taxonomy field type is set to `Text Input` then a fatal error was "
|
1960 |
"showing on the frontend, no error with taxonomy field in the latest version."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: admin/html/whats-new.php:509
|
1964 |
msgid ""
|
1965 |
"In radio and checkbox field use conditional logic that value does not save "
|
1966 |
"in database"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: admin/html/whats-new.php:511
|
1970 |
msgid ""
|
1971 |
"The selected value of radio and checkbox field were not showing while "
|
1972 |
"editing posts from the backend or frontend, you can see the selected value "
|
1973 |
"in this version."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: admin/html/whats-new.php:514
|
1977 |
msgid "The args param not working with get_avatar filter"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: admin/html/whats-new.php:516
|
1981 |
msgid "The args parameter did not exist with get_avatar filter, which now exists."
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: admin/html/whats-new.php:519
|
1985 |
msgid "The item in ajax taxonomy field was not selected"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: admin/html/whats-new.php:521
|
1989 |
msgid ""
|
1990 |
"When the taxonomy field type is set to Ajax, the submitted terms were not "
|
1991 |
"showing in the backend and frontend which have been fixed."
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: admin/html/whats-new.php:530
|
1995 |
msgid "Unable to send new user registration email"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: admin/html/whats-new.php:532
|
1999 |
msgid ""
|
2000 |
"WP User Frontend default registration form `[wpuf-registration]` was unable "
|
2001 |
"to send the new user registration email."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: admin/html/whats-new.php:535
|
2005 |
msgid "WPUF forms block compatibility issue with the latest WP version"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: admin/html/whats-new.php:537
|
2009 |
msgid ""
|
2010 |
"With the latest version of WordPress the gutenberg block of WP User "
|
2011 |
"Frontend were not working. In this version, you will get it fixed."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: admin/html/whats-new.php:540
|
2015 |
msgid "Page not update where `[wpuf_dashboard]` shortcode exist"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: admin/html/whats-new.php:542
|
2019 |
msgid ""
|
2020 |
"While using Gutenberg, the page were not being updated with WPUF shortcode "
|
2021 |
"[wpuf dashboard]"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: admin/html/whats-new.php:545
|
2025 |
msgid "Retain default when determining whether to display the admin bar"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: admin/html/whats-new.php:547
|
2029 |
msgid ""
|
2030 |
"From the User Frontend Settings, set that Administrator, Editor, Vendor can "
|
2031 |
"see the admin bar. Now, the super admin want, one specific user ( who has "
|
2035 |
"frontend."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: admin/html/whats-new.php:550
|
2039 |
msgid "Fatal error when use PHP lower version (5.4 or lower)"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: admin/html/whats-new.php:552
|
2043 |
msgid ""
|
2044 |
"It was unable to install WP User Frontend with PHP 5.4 or lower version. "
|
2045 |
"Here is the error details: <br><br><strong>Fatal error: Can't use method "
|
2047 |
"/wp-user-frontend/class/frontend-form-post.php on line 194</strong>"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: admin/html/whats-new.php:555
|
2051 |
msgid "Product form was unable to show the single gallery image"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: admin/html/whats-new.php:557
|
2055 |
msgid ""
|
2056 |
"When user upload single image for product gallery using WPUF WooCommerce "
|
2057 |
"product form, that image were not showing on the frontend."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: admin/html/whats-new.php:566
|
2061 |
msgid "WooCommerce gallery images not getting saved"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: admin/html/whats-new.php:568
|
2065 |
msgid ""
|
2066 |
"After releasing version 2.9.3, WooCommerce gallery image field stopped "
|
2067 |
"working. You will get it fixed in this version."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: admin/html/whats-new.php:577
|
2071 |
msgid "The Events Calendar Integration Form"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: admin/html/whats-new.php:579
|
2075 |
msgid ""
|
2076 |
"Now admin can allow users to create event from the frontend. Currently WPUF "
|
2077 |
"has a one click pre-build event form that has been integrated with The "
|
2078 |
"Events Calendar plugin"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: admin/html/whats-new.php:582
|
2082 |
msgid "Post Submission Facility From Account Page"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: admin/html/whats-new.php:584
|
2086 |
msgid ""
|
2087 |
"On the frontend account page, added a new menu item named <b>Submit "
|
2088 |
"Post</b>. Now admin can allow users to submit post from their default "
|
2091 |
"you can assign any post form that will use to submit posts."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: admin/html/whats-new.php:587
|
2095 |
msgid "Login/Lost Password Link Under Registration Form"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: admin/html/whats-new.php:589
|
2099 |
msgid "Added Login/Lost Password link under registration form"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: admin/html/whats-new.php:598
|
2103 |
msgid "Added drag and drop image ordering on image upload"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: admin/html/whats-new.php:600
|
2107 |
msgid ""
|
2108 |
"Now frontend users can drag & drop the images/files to change the order "
|
2109 |
"while uploading."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: admin/html/whats-new.php:603
|
2113 |
msgid "Added reCAPTCHA field in login form"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: admin/html/whats-new.php:605
|
2117 |
msgid ""
|
2118 |
"Admin has the option to show reCAPTCHA field in login form. Check the "
|
2119 |
"related settings from <strong>User Frontend > Settings > "
|
2120 |
"Login/Registration</strong>"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: admin/html/whats-new.php:608
|
2124 |
msgid "Added preview option in forms"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: admin/html/whats-new.php:610
|
2128 |
msgid ""
|
2129 |
"You can see a nice <strong>Preview</strong> button with <strong>Save "
|
2130 |
"Form</strong> button, admin can take a quick look of the form without using "
|
2131 |
"shortcode"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/html/whats-new.php:613
|
2135 |
msgid "Fixed hiding “Select Image” button while uploading multiple images."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: admin/html/whats-new.php:615
|
2139 |
msgid ""
|
2140 |
"The upload button will not be hidden until the user selects max number of "
|
2141 |
"files "
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: admin/html/whats-new.php:618
|
2145 |
msgid "Added form limit notice before form submission"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: admin/html/whats-new.php:620
|
2149 |
msgid ""
|
2150 |
"Limit notice message was showing after submission, now it is showing when "
|
2151 |
"rendering the form"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: admin/html/whats-new.php:623
|
2155 |
msgid "Fixed: default post category not saving"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: admin/html/whats-new.php:625
|
2159 |
msgid ""
|
2160 |
"From the form <strong>Settings > Post Settings</strong>, default post "
|
2161 |
"category options were not saving. Now, it's fixed."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: admin/html/whats-new.php:628
|
2165 |
msgid ""
|
2166 |
"WPUF dashboard shortcode with form_id attribute was not showing posts "
|
2167 |
"properly"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: admin/html/whats-new.php:630
|
2171 |
msgid ""
|
2172 |
"Now you can list posts on the frontend by using <strong>form_id<strong/> "
|
2173 |
"attribute with <strong>[wpuf_dashboard]</strong> shortcode"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: admin/html/whats-new.php:639
|
2177 |
msgid "Changed text domain to `wp-user-frontend` from `wpuf` "
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: admin/html/whats-new.php:641
|
2181 |
msgid ""
|
2182 |
"If you are using other language than English. Please <b>rename</b> your "
|
2183 |
"<i>.po and .mo </i> files to `wp-user-frontend_` from `wpuf_` <br> This "
|
2184 |
"change was made to support translations from translate.wordpress.org"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: admin/html/whats-new.php:644
|
2188 |
msgid "Added WP User Frontend Data export and erase functionality."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: admin/html/whats-new.php:646
|
2192 |
msgid "Added functionality to export WP User Frontend Data to comply with GDPR."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: admin/html/whats-new.php:649
|
2196 |
msgid "Added billing address customizer."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: admin/html/whats-new.php:651
|
2200 |
msgid "Added customizer options for billing address in payment page."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: admin/html/whats-new.php:654
|
2204 |
msgid "Make the payment page responsive."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: admin/html/whats-new.php:656
|
2208 |
msgid "Some css adjustments are made in payment page to make it responsive."
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: admin/html/whats-new.php:659
|
2212 |
msgid "Fixed image upload issue in Safari."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: admin/html/whats-new.php:661
|
2216 |
msgid "Images were not showing after upload in safari, it is fixed now."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: admin/html/whats-new.php:664
|
2220 |
msgid "Post update issue after updating or removing post images."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: admin/html/whats-new.php:666
|
2224 |
msgid ""
|
2225 |
"Posts cannot be updated after updating or removing post images, it is fixed "
|
2226 |
"now."
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: admin/html/whats-new.php:675
|
2230 |
msgid "Allow overriding form input styles using theme styling."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: admin/html/whats-new.php:677
|
2234 |
msgid "Overriding form input styles using theme style is now possible."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: admin/html/whats-new.php:680
|
2238 |
msgid "Fixed Auto Login after registration."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: admin/html/whats-new.php:682
|
2242 |
msgid "Auto Login after registration was not working is fixed now."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: admin/html/whats-new.php:685
|
2246 |
msgid "Fixed fallback cost calculation"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: admin/html/whats-new.php:687
|
2250 |
msgid "Fallback cost calculation was inaccurate for some cases, it is fixed now."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: admin/html/whats-new.php:690
|
2254 |
msgid "Removal of subscription from User Profile gets reverted if updated"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: admin/html/whats-new.php:692
|
2258 |
msgid "User subscription deletion gets reverted if updated is fixed."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: admin/html/whats-new.php:695
|
2262 |
msgid "Show Free pack users in subscribers list."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: admin/html/whats-new.php:697
|
2266 |
msgid "Free pack users were not showing in subscribers list, now they will."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: admin/html/whats-new.php:706
|
2270 |
msgid "WP User Frontend Guten Block is added"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: admin/html/whats-new.php:708
|
2274 |
msgid ""
|
2275 |
"WPUF Form Block is now available to be used within gutenberg editor with "
|
2276 |
"preview of the form. "
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: admin/html/whats-new.php:711
|
2280 |
msgid "Advanced Custom Fields plugin compatibility"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: admin/html/whats-new.php:713
|
2284 |
msgid "Now all your ACF fields can be used within WPUF Post forms. "
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: admin/html/whats-new.php:716
|
2288 |
msgid "Taxonomy Terms not showing for custom post types"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: admin/html/whats-new.php:718
|
2292 |
msgid ""
|
2293 |
"Fixed an issue with taxonomy terms not appearing for Custom Post types "
|
2294 |
"within Form Settings and Dashboard Post Listing"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: admin/html/whats-new.php:721
|
2298 |
msgid "Various other code optimizations"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: admin/html/whats-new.php:723 admin/html/whats-new.php:780
|
2302 |
msgid "Code structure organization and optimization for better performance"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: admin/html/whats-new.php:732
|
2306 |
msgid "WoooCommerce billing address Sync"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: admin/html/whats-new.php:734
|
2310 |
msgid ""
|
2311 |
"If an existing customer has previously set his billing address, that will "
|
2312 |
"be imported into WPUF Billing address "
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: admin/html/whats-new.php:737
|
2316 |
msgid "Trial subscription message not showing properly"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: admin/html/whats-new.php:739
|
2320 |
msgid "Subscriptions with Trial now shows trial notices"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: admin/html/whats-new.php:742
|
2324 |
msgid "Reset email Key not working"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: admin/html/whats-new.php:744
|
2328 |
msgid "Reset Email key was not working in some cases"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: admin/html/whats-new.php:747
|
2332 |
msgid "Post count not showing on the frontend dashboard"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: admin/html/whats-new.php:749
|
2336 |
msgid ""
|
2337 |
"Dashboard with multiple post type was not showing post counts properly, is "
|
2338 |
"now fixed and shows count for each post type"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: admin/html/whats-new.php:752
|
2342 |
msgid "Login Redirect showing blank page is fixed"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: admin/html/whats-new.php:754
|
2346 |
msgid ""
|
2347 |
"If \"Previous Page\" was set for redirection, login redirect was "
|
2348 |
"redirecting to blank page for users who hit login page directly"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: admin/html/whats-new.php:763
|
2352 |
msgid "Enhanced Login Redirect to redirect users to previous page"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: admin/html/whats-new.php:765
|
2356 |
msgid ""
|
2357 |
"You can choose Previous Page as Login Redirect page settings now to "
|
2358 |
"redirect users to the page from which they went for Login. "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: admin/html/whats-new.php:768
|
2362 |
msgid "Email HTML links not Rendreing properly issue is fixed"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: admin/html/whats-new.php:770
|
2366 |
msgid ""
|
2367 |
"For some clients emails were not rendering the HTML links properly, this is "
|
2368 |
"now fixed"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: admin/html/whats-new.php:773
|
2372 |
msgid "Form Builder : Form Field's Help text styles not showing properly"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: admin/html/whats-new.php:775
|
2376 |
msgid "Help texts styling is now fixed and much easier to read and understand"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: admin/html/whats-new.php:778
|
2380 |
msgid "Various other code improvements"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: admin/html/whats-new.php:789
|
2384 |
msgid "Dashboard Post Listing now supports multiple post types"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: admin/html/whats-new.php:791
|
2388 |
msgid ""
|
2389 |
"Now you can show multiple post type in user dashboard using shortcode like "
|
2390 |
"this : <br><b>[wpuf_dashboard post_type=\"post,page,custom_type\"]</b> "
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: admin/html/whats-new.php:794
|
2394 |
msgid "Added Login Redirect Settings"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: admin/html/whats-new.php:796
|
2398 |
msgid ""
|
2399 |
"You can now set a page from <i>WPUF Settings > Login/Registration > "
|
2400 |
"Redirect after Login</i>. When login redirection is active the user will be "
|
2401 |
"redirected to this page after login."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: admin/html/whats-new.php:799
|
2405 |
msgid "Image Upload field button text can be changed"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: admin/html/whats-new.php:801
|
2409 |
msgid ""
|
2410 |
"The upload button text can now be changed for image upload fields which "
|
2411 |
"defaults to \"Select Image\" if not set. "
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: admin/html/whats-new.php:804
|
2415 |
msgid "Multi Step Form styles made compatible with more themes"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: admin/html/whats-new.php:806
|
2419 |
msgid "Multi Step form can now be styled more easily with other themes "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: admin/html/whats-new.php:809
|
2423 |
msgid "Required field condition for google map not working is fixed"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: admin/html/whats-new.php:811
|
2427 |
msgid ""
|
2428 |
"If Google Map field was set as required users were able to submit form "
|
2429 |
"without changing the default value."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: admin/html/whats-new.php:820
|
2433 |
msgid "Admin form builder is now fully responsive."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: admin/html/whats-new.php:822
|
2437 |
msgid ""
|
2438 |
"Now you can edit forms from your mobile devices directly. Our improved "
|
2439 |
"responsive layouts of form builder makes it easy for you to build forms on "
|
2440 |
"the go."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: admin/html/whats-new.php:825
|
2444 |
msgid "Added color schemes for creating attractive form layouts."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: admin/html/whats-new.php:827
|
2448 |
msgid ""
|
2449 |
"We have added 3 new color schemes for the form layouts which you can choose "
|
2450 |
"from each form's new display settings."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: admin/html/whats-new.php:830
|
2454 |
msgid "Restrict Free subscription pack to be enabled multiple times "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: admin/html/whats-new.php:832
|
2458 |
msgid ""
|
2459 |
"Free subscription packs now can only be purchased once and the limit "
|
2460 |
"applies properly"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: admin/html/whats-new.php:835
|
2464 |
msgid "Various other bug fixes and improvements were made "
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: admin/html/whats-new.php:837
|
2468 |
msgid "Please see the change log to see full details."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: admin/html/whats-new.php:846
|
2472 |
msgid "Added upgrade function for default category"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: admin/html/whats-new.php:848
|
2476 |
msgid "Upgrader added to upgrade previously set default post category."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: admin/html/whats-new.php:851
|
2480 |
msgid "Subscription pack cannot be canceled"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: admin/html/whats-new.php:853
|
2484 |
msgid ""
|
2485 |
"Fixed recurring subscription pack cannot be canceled from my account page "
|
2486 |
"in subscription details section."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: admin/html/whats-new.php:856
|
2490 |
msgid "page installer admin notice logic issue"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: admin/html/whats-new.php:858
|
2494 |
msgid ""
|
2495 |
"Fixed page installer admin notice logic problem due to new payment settings "
|
2496 |
"default value not set."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: admin/html/whats-new.php:868
|
2500 |
msgid "Setup Wizard"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: admin/html/whats-new.php:870
|
2504 |
msgid "Setup Wizard added to turn off payment options and install pages."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: admin/html/whats-new.php:874
|
2508 |
msgid "Multi-select Category"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: admin/html/whats-new.php:876
|
2512 |
msgid "Add multi-select to default category in post form settings."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: admin/html/whats-new.php:880
|
2516 |
msgid "Select Text option for Taxonomy"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: admin/html/whats-new.php:882
|
2520 |
msgid ""
|
2521 |
"Add Select Text option for taxonomy fields. Now you can add default text "
|
2522 |
"with empty value as first option for Taxonomy dropdown."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: admin/html/whats-new.php:885
|
2526 |
msgid "Taxonomy Checkbox Inline"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: admin/html/whats-new.php:887
|
2530 |
msgid ""
|
2531 |
"Added checkbox inline option to taxonomy checkbox. You can now display "
|
2532 |
"Taxonomy checkbox fields inline."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: admin/html/whats-new.php:897
|
2536 |
msgid "Manage schedule for form submission"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: admin/html/whats-new.php:899
|
2540 |
msgid ""
|
2541 |
"Do not accept form submission if the current date is not between the date "
|
2542 |
"range of the schedule."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: admin/html/whats-new.php:903
|
2546 |
msgid "Restrict form submission based on the user roles"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: admin/html/whats-new.php:905
|
2550 |
msgid ""
|
2551 |
"Restrict form submission based on the user roles. Now you can manage user "
|
2552 |
"role base permission on form submission."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: admin/html/whats-new.php:909
|
2556 |
msgid "Limit how many entries a form will accept"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: admin/html/whats-new.php:911
|
2560 |
msgid ""
|
2561 |
"Limit how many entries a form will accept and display a custom message when "
|
2562 |
"that limit is reached."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: admin/html/whats-new.php:915
|
2566 |
msgid "Show/hide Admin Bar"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: admin/html/whats-new.php:917
|
2570 |
msgid "Control the admin bar visibility based on user roles."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: admin/html/whats-new.php:921
|
2574 |
msgid "Ajax Login widget"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: admin/html/whats-new.php:923
|
2578 |
msgid ""
|
2579 |
"Login user is more simple now with Ajax Login Widget. The simple ajax login "
|
2580 |
"form do not required page loading for login."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: admin/html/whats-new.php:927
|
2584 |
msgid "Form submission with Captcha field"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: admin/html/whats-new.php:929
|
2588 |
msgid "Form field validation process updated if form submits with captcha field."
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: admin/html/whats-new.php:943
|
2592 |
msgid "What's New in WPUF?"
|
2593 |
msgstr ""
|
2594 |
|
3034 |
msgid "WP User Frontend Pro is the most powerful solution for your frontend needs."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: admin/promotion.php:37
|
3038 |
+
msgid "Enjoy Flat 50% OFF on WP User Frontend Pro. Get Your Early Bird Black Friday"
|
3039 |
+
msgstr ""
|
3040 |
+
|
3041 |
+
#: admin/promotion.php:46
|
3042 |
+
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Black Friday"
|
3043 |
+
msgstr ""
|
3044 |
+
|
3045 |
+
#: admin/promotion.php:55
|
3046 |
+
msgid "Enjoy Up To 50% OFF on WP User Frontend Pro. Get Your Cyber Monday"
|
3047 |
+
msgstr ""
|
3048 |
+
|
3049 |
+
#: admin/promotion.php:106
|
3050 |
msgid "Sure! I'd love to!"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: admin/promotion.php:107
|
3054 |
msgid "I've already left a review"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
+
#: admin/promotion.php:108
|
3058 |
msgid "Never show again"
|
3059 |
msgstr ""
|
3060 |
|
4530 |
msgstr ""
|
4531 |
|
4532 |
#: includes/class-billing-address.php:217
|
4533 |
+
#: templates/dashboard/billing-address.php:105
|
4534 |
msgid "Choose a state"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
#: includes/class-billing-address.php:236
|
4538 |
+
#: templates/dashboard/billing-address.php:125
|
4539 |
msgid "Address Line 1 "
|
4540 |
msgstr ""
|
4541 |
|
4542 |
#: includes/class-billing-address.php:247
|
4543 |
+
#: templates/dashboard/billing-address.php:134
|
4544 |
msgid "Address Line 2 "
|
4545 |
msgstr ""
|
4546 |
|
4547 |
#: includes/class-billing-address.php:258 includes/class-customizer.php:26
|
4548 |
#: includes/class-customizer.php:70 includes/class-privacy.php:253
|
4549 |
+
#: templates/dashboard/billing-address.php:142
|
4550 |
msgid "City"
|
4551 |
msgstr ""
|
4552 |
|
4556 |
msgstr ""
|
4557 |
|
4558 |
#: includes/class-billing-address.php:278
|
4559 |
+
#: templates/dashboard/billing-address.php:161
|
4560 |
msgid "Update Billing Address"
|
4561 |
msgstr ""
|
4562 |
|
4698 |
msgstr ""
|
4699 |
|
4700 |
#: includes/class-frontend-form-post.php:615
|
4701 |
+
#: includes/class-frontend-render-form.php:316
|
4702 |
msgid "You do not have sufficient permissions to access this form."
|
4703 |
msgstr ""
|
4704 |
|
4713 |
"Please check your inbox!"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
+
#: includes/class-frontend-render-form.php:858
|
4717 |
#: includes/free/class-login.php:453
|
4718 |
msgid "Empty reCaptcha Field"
|
4719 |
msgstr ""
|
6382 |
msgid "PayPal API signature"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
+
#: templates/dashboard/billing-address.php:151
|
6386 |
msgid "Postal/ZIP Code"
|
6387 |
msgstr ""
|
6388 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: Forms, registration, profile-builder, login, membership, frontend-post
|
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5.3
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 3.5.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -263,6 +263,10 @@ redirected to the edit page with that post id. Then you'll see the edit post for
|
|
263 |
|
264 |
== Changelog ==
|
265 |
|
|
|
|
|
|
|
|
|
266 |
= v3.5.6 (13 November, 2020) =
|
267 |
* Fix - Can't edit post
|
268 |
* Fix - Show warning if newly created post form doesn't set role base enable
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.5.3
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 3.5.7
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
263 |
|
264 |
== Changelog ==
|
265 |
|
266 |
+
= v3.5.7 (21 November, 2020) =
|
267 |
+
* Enhancement - Custom html content field's width
|
268 |
+
* Enhancement - All states of New Zealand are added
|
269 |
+
|
270 |
= v3.5.6 (13 November, 2020) =
|
271 |
* Fix - Can't edit post
|
272 |
* Fix - Show warning if newly created post form doesn't set role base enable
|
wpuf.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP User Frontend
|
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: weDevs
|
7 |
-
Version: 3.5.
|
8 |
Author URI: https://wedevs.com/?utm_source=WPUF_Author_URI
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -12,7 +12,7 @@ Text Domain: wp-user-frontend
|
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
-
define( 'WPUF_VERSION', '3.5.
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', __DIR__ );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
|
5 |
Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
|
6 |
Author: weDevs
|
7 |
+
Version: 3.5.7
|
8 |
Author URI: https://wedevs.com/?utm_source=WPUF_Author_URI
|
9 |
License: GPL2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
|
15 |
+
define( 'WPUF_VERSION', '3.5.7' );
|
16 |
define( 'WPUF_FILE', __FILE__ );
|
17 |
define( 'WPUF_ROOT', __DIR__ );
|
18 |
define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
|