Ultimate Member – User Profile & Membership Plugin - Version 2.0.38

Version Description

Download this release

Release Info

Developer nsinelnikov
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 2.0.38
Comparing to
See all releases

Code changes from version 2.0.37 to 2.0.38

includes/admin/core/class-admin-enqueue.php CHANGED
@@ -399,6 +399,11 @@ if ( ! class_exists( 'um\admin\core\Admin_Enqueue' ) ) {
399
  return;
400
  }
401
 
 
 
 
 
 
402
  wp_register_script( 'um_block_js', $this->js_url . 'um-admin-blocks.js', array( 'wp-i18n', 'wp-blocks', 'wp-components' ), ultimatemember_version, true );
403
  wp_set_script_translations( 'um_block_js', 'ultimate-member' );
404
 
399
  return;
400
  }
401
 
402
+ $restricted_blocks = UM()->options()->get( 'restricted_blocks' );
403
+ if ( empty( $restricted_blocks ) ) {
404
+ return;
405
+ }
406
+
407
  wp_register_script( 'um_block_js', $this->js_url . 'um-admin-blocks.js', array( 'wp-i18n', 'wp-blocks', 'wp-components' ), ultimatemember_version, true );
408
  wp_set_script_translations( 'um_block_js', 'ultimate-member' );
409
 
includes/admin/core/class-admin-settings.php CHANGED
@@ -215,6 +215,100 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
215
  }
216
  }
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  /**
219
  * UM hook
220
  *
@@ -485,89 +579,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) {
485
  'sections' => array(
486
  '' => array(
487
  'title' => __( 'Restriction Content', 'ultimate-member' ),
488
- 'fields' => array(
489
- array(
490
- 'id' => 'accessible',
491
- 'type' => 'select',
492
- 'label' => __( 'Global Site Access','ultimate-member' ),
493
- 'tooltip' => __('Globally control the access of your site, you can have seperate restrict options per post/page by editing the desired item.','ultimate-member'),
494
- 'options' => array(
495
- 0 => 'Site accessible to Everyone',
496
- 2 => 'Site accessible to Logged In Users'
497
- ),
498
- 'size' => 'medium'
499
- ),
500
- array(
501
- 'id' => 'access_redirect',
502
- 'type' => 'text',
503
- 'label' => __( 'Custom Redirect URL','ultimate-member' ),
504
- 'tooltip' => __('A logged out user will be redirected to this url If he is not permitted to access the site','ultimate-member'),
505
- 'conditional' => array( 'accessible', '=', 2 ),
506
- ),
507
- array(
508
- 'id' => 'access_exclude_uris',
509
- 'type' => 'multi_text',
510
- 'label' => __( 'Exclude the following URLs','ultimate-member' ),
511
- 'tooltip' => __( 'Here you can exclude URLs beside the redirect URI to be accessible to everyone','ultimate-member' ),
512
- 'add_text' => __('Add New URL','ultimate-member'),
513
- 'conditional' => array( 'accessible', '=', 2 ),
514
- 'show_default_number' => 1,
515
- ),
516
- array(
517
- 'id' => 'home_page_accessible',
518
- 'type' => 'checkbox',
519
- 'label' => __( 'Allow Homepage to be accessible','ultimate-member' ),
520
- 'conditional' => array( 'accessible', '=', 2 ),
521
- ),
522
- array(
523
- 'id' => 'category_page_accessible',
524
- 'type' => 'checkbox',
525
- 'label' => __( 'Allow Category pages to be accessible','ultimate-member' ),
526
- 'conditional' => array( 'accessible', '=', 2 ),
527
- ),
528
- array(
529
- 'id' => 'restricted_access_message',
530
- 'type' => 'wp_editor',
531
- 'label' => __( 'Restricted Access Message','ultimate-member' ),
532
- 'tooltip' => __( 'This is the message shown to users that do not have permission to view the content','ultimate-member' ),
533
- ),
534
- array(
535
- 'id' => 'restricted_block_message',
536
- 'type' => 'textarea',
537
- 'label' => __( 'Restricted Block Message', 'ultimate-member' ),
538
- 'tooltip' => __( 'This is the message shown to users that do not have permission to view the block\'s content', 'ultimate-member' ),
539
- ),
540
- array(
541
- 'id' => 'restricted_access_post_metabox',
542
- 'type' => 'hidden',
543
- 'value' => '',
544
- ),
545
- array(
546
- 'id' => 'restricted_access_taxonomy_metabox',
547
- 'type' => 'hidden',
548
- 'value' => '',
549
- ),
550
- array(
551
- 'id' => 'restricted_access_post_metabox',
552
- 'type' => 'multi_checkbox',
553
- 'label' => __( 'Restricted Access to Posts','ultimate-member' ),
554
- 'tooltip' => __( 'Restriction content of the current Posts','ultimate-member' ),
555
- 'options' => $all_post_types,
556
- 'columns' => 3,
557
- 'value' => $restricted_access_post_metabox_value,
558
- 'default' => UM()->options()->get_default( 'restricted_access_post_metabox' ),
559
- ),
560
- array(
561
- 'id' => 'restricted_access_taxonomy_metabox',
562
- 'type' => 'multi_checkbox',
563
- 'label' => __( 'Restricted Access to Taxonomies','ultimate-member' ),
564
- 'tooltip' => __( 'Restriction content of the current Taxonomies','ultimate-member' ),
565
- 'options' => $all_taxonomies,
566
- 'columns' => 3,
567
- 'value' => $restricted_access_taxonomy_metabox_value,
568
- 'default' => UM()->options()->get_default( 'restricted_access_taxonomy_metabox' ),
569
- ),
570
- )
571
  ),
572
  'other' => array(
573
  'title' => __( 'Other', 'ultimate-member' ),
215
  }
216
  }
217
 
218
+ $access_fields = array(
219
+ array(
220
+ 'id' => 'accessible',
221
+ 'type' => 'select',
222
+ 'label' => __( 'Global Site Access','ultimate-member' ),
223
+ 'tooltip' => __('Globally control the access of your site, you can have seperate restrict options per post/page by editing the desired item.','ultimate-member'),
224
+ 'options' => array(
225
+ 0 => 'Site accessible to Everyone',
226
+ 2 => 'Site accessible to Logged In Users'
227
+ ),
228
+ 'size' => 'medium'
229
+ ),
230
+ array(
231
+ 'id' => 'access_redirect',
232
+ 'type' => 'text',
233
+ 'label' => __( 'Custom Redirect URL','ultimate-member' ),
234
+ 'tooltip' => __('A logged out user will be redirected to this url If he is not permitted to access the site','ultimate-member'),
235
+ 'conditional' => array( 'accessible', '=', 2 ),
236
+ ),
237
+ array(
238
+ 'id' => 'access_exclude_uris',
239
+ 'type' => 'multi_text',
240
+ 'label' => __( 'Exclude the following URLs','ultimate-member' ),
241
+ 'tooltip' => __( 'Here you can exclude URLs beside the redirect URI to be accessible to everyone','ultimate-member' ),
242
+ 'add_text' => __('Add New URL','ultimate-member'),
243
+ 'conditional' => array( 'accessible', '=', 2 ),
244
+ 'show_default_number' => 1,
245
+ ),
246
+ array(
247
+ 'id' => 'home_page_accessible',
248
+ 'type' => 'checkbox',
249
+ 'label' => __( 'Allow Homepage to be accessible','ultimate-member' ),
250
+ 'conditional' => array( 'accessible', '=', 2 ),
251
+ ),
252
+ array(
253
+ 'id' => 'category_page_accessible',
254
+ 'type' => 'checkbox',
255
+ 'label' => __( 'Allow Category pages to be accessible','ultimate-member' ),
256
+ 'conditional' => array( 'accessible', '=', 2 ),
257
+ ),
258
+ array(
259
+ 'id' => 'restricted_access_message',
260
+ 'type' => 'wp_editor',
261
+ 'label' => __( 'Restricted Access Message','ultimate-member' ),
262
+ 'tooltip' => __( 'This is the message shown to users that do not have permission to view the content','ultimate-member' ),
263
+ )
264
+ );
265
+ global $wp_version;
266
+ if ( version_compare( $wp_version, '5.0', '>=' ) ) {
267
+ $access_fields = array_merge( $access_fields, array( array(
268
+ 'id' => 'restricted_blocks',
269
+ 'type' => 'checkbox',
270
+ 'label' => __( 'Allow Gutenberg Blocks restriction options', 'ultimate-member' ),
271
+ ),
272
+ array(
273
+ 'id' => 'restricted_block_message',
274
+ 'type' => 'textarea',
275
+ 'label' => __( 'Restricted Block Message', 'ultimate-member' ),
276
+ 'tooltip' => __( 'This is the message shown to users that do not have permission to view the block\'s content', 'ultimate-member' ),
277
+ 'conditional' => array( 'restricted_blocks', '=', 1 ),
278
+ ) ) );
279
+ }
280
+ $access_fields = array_merge( $access_fields, array( array(
281
+ 'id' => 'restricted_access_post_metabox',
282
+ 'type' => 'hidden',
283
+ 'value' => '',
284
+ ),
285
+ array(
286
+ 'id' => 'restricted_access_taxonomy_metabox',
287
+ 'type' => 'hidden',
288
+ 'value' => '',
289
+ ),
290
+ array(
291
+ 'id' => 'restricted_access_post_metabox',
292
+ 'type' => 'multi_checkbox',
293
+ 'label' => __( 'Restricted Access to Posts','ultimate-member' ),
294
+ 'tooltip' => __( 'Restriction content of the current Posts','ultimate-member' ),
295
+ 'options' => $all_post_types,
296
+ 'columns' => 3,
297
+ 'value' => $restricted_access_post_metabox_value,
298
+ 'default' => UM()->options()->get_default( 'restricted_access_post_metabox' ),
299
+ ),
300
+ array(
301
+ 'id' => 'restricted_access_taxonomy_metabox',
302
+ 'type' => 'multi_checkbox',
303
+ 'label' => __( 'Restricted Access to Taxonomies','ultimate-member' ),
304
+ 'tooltip' => __( 'Restriction content of the current Taxonomies','ultimate-member' ),
305
+ 'options' => $all_taxonomies,
306
+ 'columns' => 3,
307
+ 'value' => $restricted_access_taxonomy_metabox_value,
308
+ 'default' => UM()->options()->get_default( 'restricted_access_taxonomy_metabox' ),
309
+ ) ) );
310
+
311
+
312
  /**
313
  * UM hook
314
  *
579
  'sections' => array(
580
  '' => array(
581
  'title' => __( 'Restriction Content', 'ultimate-member' ),
582
+ 'fields' => $access_fields
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  ),
584
  'other' => array(
585
  'title' => __( 'Other', 'ultimate-member' ),
includes/class-config.php CHANGED
@@ -508,6 +508,7 @@ if ( ! class_exists( 'um\Config' ) ) {
508
  'home_page_accessible' => 1,
509
  'category_page_accessible' => 1,
510
  'restricted_access_message' => '',
 
511
  'restricted_block_message' => '',
512
  'enable_reset_password_limit' => 1,
513
  'reset_password_limit_number' => 3,
508
  'home_page_accessible' => 1,
509
  'category_page_accessible' => 1,
510
  'restricted_access_message' => '',
511
+ 'restricted_blocks' => 0,
512
  'restricted_block_message' => '',
513
  'enable_reset_password_limit' => 1,
514
  'reset_password_limit_number' => 3,
includes/core/class-access.php CHANGED
@@ -1168,6 +1168,11 @@ if ( ! class_exists( 'um\core\Access' ) ) {
1168
  return $block_content;
1169
  }
1170
 
 
 
 
 
 
1171
  if ( is_user_logged_in() && current_user_can( 'administrator' ) ) {
1172
  return $block_content;
1173
  }
1168
  return $block_content;
1169
  }
1170
 
1171
+ $restricted_blocks = UM()->options()->get( 'restricted_blocks' );
1172
+ if ( empty( $restricted_blocks ) ) {
1173
+ return $block_content;
1174
+ }
1175
+
1176
  if ( is_user_logged_in() && current_user_can( 'administrator' ) ) {
1177
  return $block_content;
1178
  }
languages/ultimate-member-en_US.mo CHANGED
Binary file
languages/ultimate-member-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
- "POT-Creation-Date: 2019-01-08 14:00+0200\n"
5
- "PO-Revision-Date: 2019-01-08 14:01+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -35,7 +35,7 @@ msgid "Docs"
35
  msgstr ""
36
 
37
  #: includes/admin/class-admin.php:308
38
- #: includes/admin/core/class-admin-settings.php:1138
39
  msgid "Settings"
40
  msgstr ""
41
 
@@ -187,7 +187,7 @@ msgstr ""
187
 
188
  #: includes/admin/core/class-admin-columns.php:133
189
  #: includes/admin/core/class-admin-columns.php:152
190
- #: includes/admin/core/class-admin-settings.php:314
191
  #: includes/admin/templates/form/login_settings.php:13
192
  #: includes/admin/templates/form/register_customize.php:3
193
  #: includes/admin/templates/form/register_customize.php:29
@@ -433,7 +433,7 @@ msgid "Member Directories"
433
  msgstr ""
434
 
435
  #: includes/admin/core/class-admin-menu.php:204
436
- #: includes/admin/core/class-admin-settings.php:1017
437
  msgid "Extensions"
438
  msgstr ""
439
 
@@ -1390,1083 +1390,1087 @@ msgstr ""
1390
  msgid "Enable menu icons in desktop view"
1391
  msgstr ""
1392
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1393
  #: includes/admin/core/class-admin-settings.php:240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1394
  msgid "General"
1395
  msgstr ""
1396
 
1397
- #: includes/admin/core/class-admin-settings.php:243
1398
  msgid "Pages"
1399
  msgstr ""
1400
 
1401
- #: includes/admin/core/class-admin-settings.php:247
1402
  #: includes/admin/templates/dashboard/users.php:6
1403
  msgid "Users"
1404
  msgstr ""
1405
 
1406
- #: includes/admin/core/class-admin-settings.php:253
1407
  msgid "Profile Permalink Base"
1408
  msgstr ""
1409
 
1410
- #: includes/admin/core/class-admin-settings.php:254
1411
  msgid ""
1412
  "Here you can control the permalink structure of the user profile URL "
1413
  "globally e.g. "
1414
  msgstr ""
1415
 
1416
- #: includes/admin/core/class-admin-settings.php:256
1417
- #: includes/admin/core/class-admin-settings.php:273
1418
  #: includes/core/class-builtin.php:669 includes/core/class-builtin.php:672
1419
  msgid "Username"
1420
  msgstr ""
1421
 
1422
- #: includes/admin/core/class-admin-settings.php:257
1423
  msgid "First and Last Name with '.'"
1424
  msgstr ""
1425
 
1426
- #: includes/admin/core/class-admin-settings.php:258
1427
  msgid "First and Last Name with '-'"
1428
  msgstr ""
1429
 
1430
- #: includes/admin/core/class-admin-settings.php:259
1431
  msgid "First and Last Name with '+'"
1432
  msgstr ""
1433
 
1434
- #: includes/admin/core/class-admin-settings.php:260
1435
  msgid "User ID"
1436
  msgstr ""
1437
 
1438
- #: includes/admin/core/class-admin-settings.php:262
1439
- #: includes/admin/core/class-admin-settings.php:281
1440
  msgid "Select..."
1441
  msgstr ""
1442
 
1443
- #: includes/admin/core/class-admin-settings.php:268
1444
  msgid "User Display Name"
1445
  msgstr ""
1446
 
1447
- #: includes/admin/core/class-admin-settings.php:269
1448
  msgid ""
1449
  "This is the name that will be displayed for users on the front end of your "
1450
  "site. Default setting uses first/last name as display name if it exists"
1451
  msgstr ""
1452
 
1453
- #: includes/admin/core/class-admin-settings.php:271
1454
  msgid "Default WP Display Name"
1455
  msgstr ""
1456
 
1457
- #: includes/admin/core/class-admin-settings.php:272
1458
  #: includes/core/class-builtin.php:727 includes/core/class-builtin.php:730
1459
  msgid "Nickname"
1460
  msgstr ""
1461
 
1462
- #: includes/admin/core/class-admin-settings.php:274
1463
  msgid "First name & last name"
1464
  msgstr ""
1465
 
1466
- #: includes/admin/core/class-admin-settings.php:275
1467
  msgid "Last name & first name"
1468
  msgstr ""
1469
 
1470
- #: includes/admin/core/class-admin-settings.php:276
1471
  msgid "First name & first initial of last name"
1472
  msgstr ""
1473
 
1474
- #: includes/admin/core/class-admin-settings.php:277
1475
  msgid "First initial of first name & last name"
1476
  msgstr ""
1477
 
1478
- #: includes/admin/core/class-admin-settings.php:278
1479
  msgid "First name only"
1480
  msgstr ""
1481
 
1482
- #: includes/admin/core/class-admin-settings.php:279
1483
  msgid "Custom field(s)"
1484
  msgstr ""
1485
 
1486
- #: includes/admin/core/class-admin-settings.php:286
1487
  msgid "Display Name Custom Field(s)"
1488
  msgstr ""
1489
 
1490
- #: includes/admin/core/class-admin-settings.php:287
1491
  msgid ""
1492
  "Specify the custom field meta key or custom fields seperated by comma that "
1493
  "you want to use to display users name on the frontend of your site"
1494
  msgstr ""
1495
 
1496
- #: includes/admin/core/class-admin-settings.php:293
1497
  msgid "Automatically redirect author page to their profile?"
1498
  msgstr ""
1499
 
1500
- #: includes/admin/core/class-admin-settings.php:294
1501
  msgid ""
1502
  "If enabled, author pages will automatically redirect to the user's profile "
1503
  "page"
1504
  msgstr ""
1505
 
1506
- #: includes/admin/core/class-admin-settings.php:299
1507
  msgid "Enable Members Directory"
1508
  msgstr ""
1509
 
1510
- #: includes/admin/core/class-admin-settings.php:300
1511
  msgid "Control whether to enable or disable member directories on this site"
1512
  msgstr ""
1513
 
1514
- #: includes/admin/core/class-admin-settings.php:305
1515
  msgid "Use Gravatars?"
1516
  msgstr ""
1517
 
1518
- #: includes/admin/core/class-admin-settings.php:306
1519
  msgid ""
1520
  "Do you want to use gravatars instead of the default plugin profile photo (If "
1521
  "the user did not upload a custom profile photo / avatar)"
1522
  msgstr ""
1523
 
1524
- #: includes/admin/core/class-admin-settings.php:311
1525
  msgid "Use Gravatar builtin image"
1526
  msgstr ""
1527
 
1528
- #: includes/admin/core/class-admin-settings.php:312
1529
  msgid ""
1530
  "Gravatar has a number of built in options which you can also use as defaults"
1531
  msgstr ""
1532
 
1533
- #: includes/admin/core/class-admin-settings.php:315
1534
  msgid "404 ( File Not Found response )"
1535
  msgstr ""
1536
 
1537
- #: includes/admin/core/class-admin-settings.php:316
1538
  msgid "Mystery Man"
1539
  msgstr ""
1540
 
1541
- #: includes/admin/core/class-admin-settings.php:317
1542
  msgid "Identicon"
1543
  msgstr ""
1544
 
1545
- #: includes/admin/core/class-admin-settings.php:318
1546
  msgid "Monsterid"
1547
  msgstr ""
1548
 
1549
- #: includes/admin/core/class-admin-settings.php:319
1550
  msgid "Wavatar"
1551
  msgstr ""
1552
 
1553
- #: includes/admin/core/class-admin-settings.php:320
1554
  msgid "Retro"
1555
  msgstr ""
1556
 
1557
- #: includes/admin/core/class-admin-settings.php:321
1558
  msgid "Blank ( a transparent PNG image )"
1559
  msgstr ""
1560
 
1561
- #: includes/admin/core/class-admin-settings.php:329
1562
  msgid "Use Default plugin avatar as Gravatar's Default avatar"
1563
  msgstr ""
1564
 
1565
- #: includes/admin/core/class-admin-settings.php:330
1566
  msgid ""
1567
  "Do you want to use the plugin default avatar instead of the gravatar default "
1568
  "photo (If the user did not upload a custom profile photo / avatar)"
1569
  msgstr ""
1570
 
1571
- #: includes/admin/core/class-admin-settings.php:336
1572
  msgid "Require a strong password? (when user resets password only)"
1573
  msgstr ""
1574
 
1575
- #: includes/admin/core/class-admin-settings.php:337
1576
  msgid ""
1577
  "Enable or disable a strong password rules on password reset and change "
1578
  "procedure"
1579
  msgstr ""
1580
 
1581
- #: includes/admin/core/class-admin-settings.php:342
1582
- #: includes/class-config.php:134 includes/class-config.php:741
1583
  #: includes/core/class-account.php:90
1584
  msgid "Account"
1585
  msgstr ""
1586
 
1587
- #: includes/admin/core/class-admin-settings.php:347
1588
  msgid "Password Account Tab"
1589
  msgstr ""
1590
 
1591
- #: includes/admin/core/class-admin-settings.php:353
1592
  msgid "Privacy Account Tab"
1593
  msgstr ""
1594
 
1595
- #: includes/admin/core/class-admin-settings.php:354
1596
  msgid "Enable/disable the Privacy account tab in account page"
1597
  msgstr ""
1598
 
1599
- #: includes/admin/core/class-admin-settings.php:359
1600
  msgid "Notifications Account Tab"
1601
  msgstr ""
1602
 
1603
- #: includes/admin/core/class-admin-settings.php:360
1604
  msgid "Enable/disable the Notifications account tab in account page"
1605
  msgstr ""
1606
 
1607
- #: includes/admin/core/class-admin-settings.php:365
1608
  msgid "Delete Account Tab"
1609
  msgstr ""
1610
 
1611
- #: includes/admin/core/class-admin-settings.php:366
1612
  msgid "Enable/disable the Delete account tab in account page"
1613
  msgstr ""
1614
 
1615
- #: includes/admin/core/class-admin-settings.php:371
1616
  msgid "Account Deletion Custom Text"
1617
  msgstr ""
1618
 
1619
- #: includes/admin/core/class-admin-settings.php:372
1620
  msgid ""
1621
  "This is custom text that will be displayed to users before they delete their "
1622
  "accounts from your site"
1623
  msgstr ""
1624
 
1625
- #: includes/admin/core/class-admin-settings.php:380
1626
  msgid "Add a First & Last Name fields"
1627
  msgstr ""
1628
 
1629
- #: includes/admin/core/class-admin-settings.php:381
1630
  msgid ""
1631
  "Whether to enable these fields on the user account page by default or hide "
1632
  "them."
1633
  msgstr ""
1634
 
1635
- #: includes/admin/core/class-admin-settings.php:386
1636
  msgid "Disable First & Last Name fields"
1637
  msgstr ""
1638
 
1639
- #: includes/admin/core/class-admin-settings.php:387
1640
  msgid ""
1641
  "Whether to allow users changing their first and last name in account page."
1642
  msgstr ""
1643
 
1644
- #: includes/admin/core/class-admin-settings.php:393
1645
  msgid "Require First & Last Name"
1646
  msgstr ""
1647
 
1648
- #: includes/admin/core/class-admin-settings.php:394
1649
  msgid "Require first and last name?"
1650
  msgstr ""
1651
 
1652
- #: includes/admin/core/class-admin-settings.php:400
1653
  msgid "Allow users to change e-mail"
1654
  msgstr ""
1655
 
1656
- #: includes/admin/core/class-admin-settings.php:401
1657
  msgid "Whether to allow users changing their email in account page."
1658
  msgstr ""
1659
 
1660
- #: includes/admin/core/class-admin-settings.php:406
1661
  msgid "Allow users to hide their profiles from directory"
1662
  msgstr ""
1663
 
1664
- #: includes/admin/core/class-admin-settings.php:407
1665
  msgid ""
1666
  "Whether to allow users changing their profile visibility from member "
1667
  "directory in account page."
1668
  msgstr ""
1669
 
1670
- #: includes/admin/core/class-admin-settings.php:412
1671
  msgid "Require a strong password?"
1672
  msgstr ""
1673
 
1674
- #: includes/admin/core/class-admin-settings.php:413
1675
  msgid ""
1676
  "Enable or disable a strong password rules on account page / change password "
1677
  "tab"
1678
  msgstr ""
1679
 
1680
- #: includes/admin/core/class-admin-settings.php:418
1681
  msgid "Uploads"
1682
  msgstr ""
1683
 
1684
- #: includes/admin/core/class-admin-settings.php:424
1685
  msgid "Profile Photo Maximum File Size (bytes)"
1686
  msgstr ""
1687
 
1688
- #: includes/admin/core/class-admin-settings.php:425
1689
  msgid "Sets a maximum size for the uploaded photo"
1690
  msgstr ""
1691
 
1692
- #: includes/admin/core/class-admin-settings.php:432
1693
  msgid "Cover Photo Maximum File Size (bytes)"
1694
  msgstr ""
1695
 
1696
- #: includes/admin/core/class-admin-settings.php:433
1697
  msgid "Sets a maximum size for the uploaded cover"
1698
  msgstr ""
1699
 
1700
- #: includes/admin/core/class-admin-settings.php:439
1701
  msgid "Profile Photo Thumbnail Sizes (px)"
1702
  msgstr ""
1703
 
1704
- #: includes/admin/core/class-admin-settings.php:440
1705
  msgid ""
1706
  "Here you can define which thumbnail sizes will be created for each profile "
1707
  "photo upload."
1708
  msgstr ""
1709
 
1710
- #: includes/admin/core/class-admin-settings.php:442
1711
- #: includes/admin/core/class-admin-settings.php:452
1712
  msgid "Add New Size"
1713
  msgstr ""
1714
 
1715
- #: includes/admin/core/class-admin-settings.php:449
1716
  msgid "Cover Photo Thumbnail Sizes (px)"
1717
  msgstr ""
1718
 
1719
- #: includes/admin/core/class-admin-settings.php:450
1720
  msgid ""
1721
  "Here you can define which thumbnail sizes will be created for each cover "
1722
  "photo upload."
1723
  msgstr ""
1724
 
1725
- #: includes/admin/core/class-admin-settings.php:460
1726
  msgid "Image Quality"
1727
  msgstr ""
1728
 
1729
- #: includes/admin/core/class-admin-settings.php:461
1730
  msgid ""
1731
  "Quality is used to determine quality of image uploads, and ranges from 0 "
1732
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1733
  "default range is 60."
1734
  msgstr ""
1735
 
1736
- #: includes/admin/core/class-admin-settings.php:468
1737
  msgid "Image Upload Maximum Width (px)"
1738
  msgstr ""
1739
 
1740
- #: includes/admin/core/class-admin-settings.php:469
1741
  msgid ""
1742
  "Any image upload above this width will be resized to this limit "
1743
  "automatically."
1744
  msgstr ""
1745
 
1746
- #: includes/admin/core/class-admin-settings.php:476
1747
  msgid "Cover Photo Minimum Width (px)"
1748
  msgstr ""
1749
 
1750
- #: includes/admin/core/class-admin-settings.php:477
1751
  msgid "This will be the minimum width for cover photo uploads"
1752
  msgstr ""
1753
 
1754
- #: includes/admin/core/class-admin-settings.php:484
1755
  msgid "Access"
1756
  msgstr ""
1757
 
1758
- #: includes/admin/core/class-admin-settings.php:487
1759
  msgid "Restriction Content"
1760
  msgstr ""
1761
 
1762
- #: includes/admin/core/class-admin-settings.php:492
1763
- msgid "Global Site Access"
1764
- msgstr ""
1765
-
1766
- #: includes/admin/core/class-admin-settings.php:493
1767
- msgid ""
1768
- "Globally control the access of your site, you can have seperate restrict "
1769
- "options per post/page by editing the desired item."
1770
- msgstr ""
1771
-
1772
- #: includes/admin/core/class-admin-settings.php:503
1773
- msgid "Custom Redirect URL"
1774
- msgstr ""
1775
-
1776
- #: includes/admin/core/class-admin-settings.php:504
1777
- msgid ""
1778
- "A logged out user will be redirected to this url If he is not permitted to "
1779
- "access the site"
1780
- msgstr ""
1781
-
1782
- #: includes/admin/core/class-admin-settings.php:510
1783
- msgid "Exclude the following URLs"
1784
- msgstr ""
1785
-
1786
- #: includes/admin/core/class-admin-settings.php:511
1787
- msgid ""
1788
- "Here you can exclude URLs beside the redirect URI to be accessible to "
1789
- "everyone"
1790
- msgstr ""
1791
-
1792
- #: includes/admin/core/class-admin-settings.php:512
1793
- msgid "Add New URL"
1794
- msgstr ""
1795
-
1796
- #: includes/admin/core/class-admin-settings.php:519
1797
- msgid "Allow Homepage to be accessible"
1798
- msgstr ""
1799
-
1800
- #: includes/admin/core/class-admin-settings.php:525
1801
- msgid "Allow Category pages to be accessible"
1802
- msgstr ""
1803
-
1804
- #: includes/admin/core/class-admin-settings.php:531
1805
- msgid "Restricted Access Message"
1806
- msgstr ""
1807
-
1808
- #: includes/admin/core/class-admin-settings.php:532
1809
- msgid ""
1810
- "This is the message shown to users that do not have permission to view the "
1811
- "content"
1812
- msgstr ""
1813
-
1814
- #: includes/admin/core/class-admin-settings.php:537
1815
- msgid "Restricted Block Message"
1816
- msgstr ""
1817
-
1818
- #: includes/admin/core/class-admin-settings.php:538
1819
- msgid ""
1820
- "This is the message shown to users that do not have permission to view the "
1821
- "block's content"
1822
- msgstr ""
1823
-
1824
- #: includes/admin/core/class-admin-settings.php:553
1825
- msgid "Restricted Access to Posts"
1826
- msgstr ""
1827
-
1828
- #: includes/admin/core/class-admin-settings.php:554
1829
- msgid "Restriction content of the current Posts"
1830
- msgstr ""
1831
-
1832
- #: includes/admin/core/class-admin-settings.php:563
1833
- msgid "Restricted Access to Taxonomies"
1834
- msgstr ""
1835
-
1836
- #: includes/admin/core/class-admin-settings.php:564
1837
- msgid "Restriction content of the current Taxonomies"
1838
- msgstr ""
1839
-
1840
- #: includes/admin/core/class-admin-settings.php:573
1841
  msgid "Other"
1842
  msgstr ""
1843
 
1844
- #: includes/admin/core/class-admin-settings.php:578
1845
  msgid "Enable the Reset Password Limit?"
1846
  msgstr ""
1847
 
1848
- #: includes/admin/core/class-admin-settings.php:583
1849
  msgid "Reset Password Limit"
1850
  msgstr ""
1851
 
1852
- #: includes/admin/core/class-admin-settings.php:584
1853
  msgid ""
1854
  "Set the maximum reset password limit. If reached the maximum limit, user "
1855
  "will be locked from using this."
1856
  msgstr ""
1857
 
1858
- #: includes/admin/core/class-admin-settings.php:592
1859
  msgid "Blocked Email Addresses"
1860
  msgstr ""
1861
 
1862
- #: includes/admin/core/class-admin-settings.php:593
1863
  msgid ""
1864
  "This will block the specified e-mail addresses from being able to sign up or "
1865
  "sign in to your site. To block an entire domain, use something like *@domain."
1866
  "com"
1867
  msgstr ""
1868
 
1869
- #: includes/admin/core/class-admin-settings.php:598
1870
  msgid "Blacklist Words"
1871
  msgstr ""
1872
 
1873
- #: includes/admin/core/class-admin-settings.php:599
1874
  msgid ""
1875
  "This option lets you specify blacklist of words to prevent anyone from "
1876
  "signing up with such a word as their username"
1877
  msgstr ""
1878
 
1879
- #: includes/admin/core/class-admin-settings.php:606
1880
  #: includes/admin/core/list-tables/emails-list-table.php:300
1881
  msgid "Email"
1882
  msgstr ""
1883
 
1884
- #: includes/admin/core/class-admin-settings.php:611
1885
  msgid "Admin E-mail Address"
1886
  msgstr ""
1887
 
1888
- #: includes/admin/core/class-admin-settings.php:612
1889
  #: includes/admin/core/class-admin-settings.php:624
 
1890
  msgid "e.g. admin@companyname.com"
1891
  msgstr ""
1892
 
1893
- #: includes/admin/core/class-admin-settings.php:617
1894
  msgid "Mail appears from"
1895
  msgstr ""
1896
 
1897
- #: includes/admin/core/class-admin-settings.php:618
1898
  msgid "e.g. Site Name"
1899
  msgstr ""
1900
 
1901
- #: includes/admin/core/class-admin-settings.php:623
1902
  msgid "Mail appears from address"
1903
  msgstr ""
1904
 
1905
- #: includes/admin/core/class-admin-settings.php:629
1906
  msgid "Use HTML for E-mails?"
1907
  msgstr ""
1908
 
1909
- #: includes/admin/core/class-admin-settings.php:630
1910
  msgid ""
1911
  "If you plan use e-mails with HTML, please make sure that this option is "
1912
  "enabled. Otherwise, HTML will be displayed as plain text."
1913
  msgstr ""
1914
 
1915
- #: includes/admin/core/class-admin-settings.php:635
1916
  msgid "Appearance"
1917
  msgstr ""
1918
 
1919
- #: includes/admin/core/class-admin-settings.php:638
1920
  msgid "Profile"
1921
  msgstr ""
1922
 
1923
- #: includes/admin/core/class-admin-settings.php:643
1924
  msgid "Profile Default Template"
1925
  msgstr ""
1926
 
1927
- #: includes/admin/core/class-admin-settings.php:644
1928
  msgid "This will be the default template to output profile"
1929
  msgstr ""
1930
 
1931
- #: includes/admin/core/class-admin-settings.php:652
1932
  msgid "Profile Maximum Width"
1933
  msgstr ""
1934
 
1935
- #: includes/admin/core/class-admin-settings.php:661
1936
  msgid "Profile Area Maximum Width"
1937
  msgstr ""
1938
 
1939
- #: includes/admin/core/class-admin-settings.php:663
1940
  #: includes/admin/templates/form/profile_customize.php:56
1941
  msgid ""
1942
  "The maximum width of the profile area inside profile (below profile header)"
1943
  msgstr ""
1944
 
1945
- #: includes/admin/core/class-admin-settings.php:669
1946
  msgid "Profile Field Icons"
1947
  msgstr ""
1948
 
1949
- #: includes/admin/core/class-admin-settings.php:670
1950
  msgid "This is applicable for edit mode only"
1951
  msgstr ""
1952
 
1953
- #: includes/admin/core/class-admin-settings.php:673
1954
- #: includes/admin/core/class-admin-settings.php:869
1955
- #: includes/admin/core/class-admin-settings.php:959
1956
  #: includes/admin/templates/form/login_customize.php:40
1957
  #: includes/admin/templates/form/profile_customize.php:67
1958
  #: includes/admin/templates/form/register_customize.php:55
1959
  msgid "Show inside text field"
1960
  msgstr ""
1961
 
1962
- #: includes/admin/core/class-admin-settings.php:674
1963
- #: includes/admin/core/class-admin-settings.php:870
1964
- #: includes/admin/core/class-admin-settings.php:960
1965
  #: includes/admin/templates/form/login_customize.php:41
1966
  #: includes/admin/templates/form/profile_customize.php:68
1967
  #: includes/admin/templates/form/register_customize.php:56
1968
  msgid "Show with label"
1969
  msgstr ""
1970
 
1971
- #: includes/admin/core/class-admin-settings.php:675
1972
- #: includes/admin/core/class-admin-settings.php:871
1973
- #: includes/admin/core/class-admin-settings.php:961
1974
  #: includes/admin/templates/form/login_customize.php:42
1975
  #: includes/admin/templates/form/profile_customize.php:69
1976
  #: includes/admin/templates/form/register_customize.php:57
1977
  msgid "Turn off"
1978
  msgstr ""
1979
 
1980
- #: includes/admin/core/class-admin-settings.php:682
1981
  msgid "Profile Primary Button Text"
1982
  msgstr ""
1983
 
1984
- #: includes/admin/core/class-admin-settings.php:684
1985
  msgid "The text that is used for updating profile button"
1986
  msgstr ""
1987
 
1988
- #: includes/admin/core/class-admin-settings.php:690
1989
  msgid "Profile Secondary Button"
1990
  msgstr ""
1991
 
1992
- #: includes/admin/core/class-admin-settings.php:692
1993
- #: includes/admin/core/class-admin-settings.php:888
1994
- #: includes/admin/core/class-admin-settings.php:978
1995
  msgid "Switch on/off the secondary button display in the form"
1996
  msgstr ""
1997
 
1998
- #: includes/admin/core/class-admin-settings.php:697
1999
  msgid "Profile Secondary Button Text"
2000
  msgstr ""
2001
 
2002
- #: includes/admin/core/class-admin-settings.php:699
2003
  msgid "The text that is used for cancelling update profile button"
2004
  msgstr ""
2005
 
2006
- #: includes/admin/core/class-admin-settings.php:706
2007
  msgid "Default Profile Photo"
2008
  msgstr ""
2009
 
2010
- #: includes/admin/core/class-admin-settings.php:707
2011
  msgid ""
2012
  "You can change the default profile picture globally here. Please make sure "
2013
  "that the photo is 300x300px."
2014
  msgstr ""
2015
 
2016
- #: includes/admin/core/class-admin-settings.php:708
2017
  msgid "Select Default Profile Photo"
2018
  msgstr ""
2019
 
2020
- #: includes/admin/core/class-admin-settings.php:718
2021
  msgid "Default Cover Photo"
2022
  msgstr ""
2023
 
2024
- #: includes/admin/core/class-admin-settings.php:719
2025
  msgid ""
2026
  "You can change the default cover photo globally here. Please make sure that "
2027
  "the default cover is large enough and respects the ratio you are using for "
2028
  "cover photos."
2029
  msgstr ""
2030
 
2031
- #: includes/admin/core/class-admin-settings.php:720
2032
  msgid "Select Default Cover Photo"
2033
  msgstr ""
2034
 
2035
- #: includes/admin/core/class-admin-settings.php:725
2036
  #: includes/admin/templates/form/profile_customize.php:127
2037
  msgid "Profile Photo Size"
2038
  msgstr ""
2039
 
2040
- #: includes/admin/core/class-admin-settings.php:727
2041
  msgid ""
2042
  "The global default of profile photo size. This can be overridden by "
2043
  "individual form settings"
2044
  msgstr ""
2045
 
2046
- #: includes/admin/core/class-admin-settings.php:733
2047
  msgid "Profile Cover Photos"
2048
  msgstr ""
2049
 
2050
- #: includes/admin/core/class-admin-settings.php:735
2051
  msgid "Switch on/off the profile cover photos"
2052
  msgstr ""
2053
 
2054
- #: includes/admin/core/class-admin-settings.php:740
2055
  msgid "Profile Cover Ratio"
2056
  msgstr ""
2057
 
2058
- #: includes/admin/core/class-admin-settings.php:741
2059
  msgid "Choose global ratio for cover photos of profiles"
2060
  msgstr ""
2061
 
2062
- #: includes/admin/core/class-admin-settings.php:755
2063
  msgid "Profile Header Meta Text Icon"
2064
  msgstr ""
2065
 
2066
- #: includes/admin/core/class-admin-settings.php:757
2067
  msgid "Display field icons for related user meta fields in header or not"
2068
  msgstr ""
2069
 
2070
- #: includes/admin/core/class-admin-settings.php:762
2071
  msgid "Show display name in profile header"
2072
  msgstr ""
2073
 
2074
- #: includes/admin/core/class-admin-settings.php:764
2075
  msgid "Switch on/off the user name on profile header"
2076
  msgstr ""
2077
 
2078
- #: includes/admin/core/class-admin-settings.php:769
2079
  msgid "Show social links in profile header"
2080
  msgstr ""
2081
 
2082
- #: includes/admin/core/class-admin-settings.php:771
2083
  msgid "Switch on/off the social links on profile header"
2084
  msgstr ""
2085
 
2086
- #: includes/admin/core/class-admin-settings.php:776
2087
  msgid "Show user description in header"
2088
  msgstr ""
2089
 
2090
- #: includes/admin/core/class-admin-settings.php:778
2091
  msgid "Switch on/off the user description on profile header"
2092
  msgstr ""
2093
 
2094
- #: includes/admin/core/class-admin-settings.php:783
2095
  msgid "Enable html support for user description"
2096
  msgstr ""
2097
 
2098
- #: includes/admin/core/class-admin-settings.php:785
2099
  msgid ""
2100
  "Switch on/off to enable/disable support for html tags on user description."
2101
  msgstr ""
2102
 
2103
- #: includes/admin/core/class-admin-settings.php:790
2104
  msgid "User description maximum chars"
2105
  msgstr ""
2106
 
2107
- #: includes/admin/core/class-admin-settings.php:792
2108
  msgid ""
2109
  "Maximum number of characters to allow in user description field in header."
2110
  msgstr ""
2111
 
2112
- #: includes/admin/core/class-admin-settings.php:799
2113
  msgid "Profile Header Menu Position"
2114
  msgstr ""
2115
 
2116
- #: includes/admin/core/class-admin-settings.php:801
2117
  msgid ""
2118
  "For incompatible themes, please make the menu open from left instead of "
2119
  "bottom by default."
2120
  msgstr ""
2121
 
2122
- #: includes/admin/core/class-admin-settings.php:811
2123
  msgid "Show a custom message if profile is empty"
2124
  msgstr ""
2125
 
2126
- #: includes/admin/core/class-admin-settings.php:813
2127
  msgid "Switch on/off the custom message that appears when the profile is empty"
2128
  msgstr ""
2129
 
2130
- #: includes/admin/core/class-admin-settings.php:818
2131
  msgid "Show the emoticon"
2132
  msgstr ""
2133
 
2134
- #: includes/admin/core/class-admin-settings.php:820
2135
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
2136
  msgstr ""
2137
 
2138
- #: includes/admin/core/class-admin-settings.php:826
2139
  msgid "Profile Menu"
2140
  msgstr ""
2141
 
2142
- #: includes/admin/core/class-admin-settings.php:830
2143
  #: includes/admin/templates/form/mode.php:9
2144
  msgid "Registration Form"
2145
  msgstr ""
2146
 
2147
- #: includes/admin/core/class-admin-settings.php:835
2148
  msgid "Registration Default Template"
2149
  msgstr ""
2150
 
2151
- #: includes/admin/core/class-admin-settings.php:836
2152
  msgid "This will be the default template to output registration"
2153
  msgstr ""
2154
 
2155
- #: includes/admin/core/class-admin-settings.php:844
2156
  msgid "Registration Maximum Width"
2157
  msgstr ""
2158
 
2159
- #: includes/admin/core/class-admin-settings.php:846
2160
- #: includes/admin/core/class-admin-settings.php:936
2161
  msgid "The maximum width this shortcode can take from the page width"
2162
  msgstr ""
2163
 
2164
- #: includes/admin/core/class-admin-settings.php:852
2165
  msgid "Registration Shortcode Alignment"
2166
  msgstr ""
2167
 
2168
- #: includes/admin/core/class-admin-settings.php:853
2169
- #: includes/admin/core/class-admin-settings.php:943
2170
  #: includes/admin/templates/form/profile_customize.php:115
2171
  msgid "The shortcode is centered by default unless you specify otherwise here"
2172
  msgstr ""
2173
 
2174
- #: includes/admin/core/class-admin-settings.php:856
2175
- #: includes/admin/core/class-admin-settings.php:946
2176
  msgid "Centered"
2177
  msgstr ""
2178
 
2179
- #: includes/admin/core/class-admin-settings.php:857
2180
- #: includes/admin/core/class-admin-settings.php:947
2181
  msgid "Left aligned"
2182
  msgstr ""
2183
 
2184
- #: includes/admin/core/class-admin-settings.php:858
2185
- #: includes/admin/core/class-admin-settings.php:948
2186
  msgid "Right aligned"
2187
  msgstr ""
2188
 
2189
- #: includes/admin/core/class-admin-settings.php:865
2190
  msgid "Registration Field Icons"
2191
  msgstr ""
2192
 
2193
- #: includes/admin/core/class-admin-settings.php:866
2194
  msgid "This controls the display of field icons in the registration form"
2195
  msgstr ""
2196
 
2197
- #: includes/admin/core/class-admin-settings.php:878
2198
  msgid "Registration Primary Button Text"
2199
  msgstr ""
2200
 
2201
- #: includes/admin/core/class-admin-settings.php:880
2202
- #: includes/admin/core/class-admin-settings.php:970
2203
  msgid "The text that is used for primary button text"
2204
  msgstr ""
2205
 
2206
- #: includes/admin/core/class-admin-settings.php:886
2207
  msgid "Registration Secondary Button"
2208
  msgstr ""
2209
 
2210
- #: includes/admin/core/class-admin-settings.php:893
2211
  msgid "Registration Secondary Button Text"
2212
  msgstr ""
2213
 
2214
- #: includes/admin/core/class-admin-settings.php:895
2215
- #: includes/admin/core/class-admin-settings.php:985
2216
  msgid "The text that is used for the secondary button text"
2217
  msgstr ""
2218
 
2219
- #: includes/admin/core/class-admin-settings.php:902
2220
  msgid "Registration Secondary Button URL"
2221
  msgstr ""
2222
 
2223
- #: includes/admin/core/class-admin-settings.php:904
2224
- #: includes/admin/core/class-admin-settings.php:994
2225
  msgid "You can replace default link for this button by entering custom URL"
2226
  msgstr ""
2227
 
2228
- #: includes/admin/core/class-admin-settings.php:911
2229
  msgid "Registration Default Role"
2230
  msgstr ""
2231
 
2232
- #: includes/admin/core/class-admin-settings.php:912
2233
  msgid ""
2234
  "This will be the default role assigned to users registering thru "
2235
  "registration form"
2236
  msgstr ""
2237
 
2238
- #: includes/admin/core/class-admin-settings.php:920
2239
  #: includes/admin/templates/form/mode.php:13
2240
  msgid "Login Form"
2241
  msgstr ""
2242
 
2243
- #: includes/admin/core/class-admin-settings.php:925
2244
  msgid "Login Default Template"
2245
  msgstr ""
2246
 
2247
- #: includes/admin/core/class-admin-settings.php:926
2248
  msgid "This will be the default template to output login"
2249
  msgstr ""
2250
 
2251
- #: includes/admin/core/class-admin-settings.php:934
2252
  msgid "Login Maximum Width"
2253
  msgstr ""
2254
 
2255
- #: includes/admin/core/class-admin-settings.php:942
2256
  msgid "Login Shortcode Alignment"
2257
  msgstr ""
2258
 
2259
- #: includes/admin/core/class-admin-settings.php:955
2260
  msgid "Login Field Icons"
2261
  msgstr ""
2262
 
2263
- #: includes/admin/core/class-admin-settings.php:956
2264
  msgid "This controls the display of field icons in the login form"
2265
  msgstr ""
2266
 
2267
- #: includes/admin/core/class-admin-settings.php:968
2268
  msgid "Login Primary Button Text"
2269
  msgstr ""
2270
 
2271
- #: includes/admin/core/class-admin-settings.php:976
2272
  msgid "Login Secondary Button"
2273
  msgstr ""
2274
 
2275
- #: includes/admin/core/class-admin-settings.php:983
2276
  msgid "Login Secondary Button Text"
2277
  msgstr ""
2278
 
2279
- #: includes/admin/core/class-admin-settings.php:992
2280
  msgid "Login Secondary Button URL"
2281
  msgstr ""
2282
 
2283
- #: includes/admin/core/class-admin-settings.php:1001
2284
  msgid "Login Forgot Password Link"
2285
  msgstr ""
2286
 
2287
- #: includes/admin/core/class-admin-settings.php:1003
2288
  msgid "Switch on/off the forgot password link in login form"
2289
  msgstr ""
2290
 
2291
- #: includes/admin/core/class-admin-settings.php:1008
2292
  msgid "Show \"Remember Me\""
2293
  msgstr ""
2294
 
2295
- #: includes/admin/core/class-admin-settings.php:1010
2296
  msgid ""
2297
  "Allow users to choose If they want to stay signed in even after closing the "
2298
  "browser. If you do not show this option, the default will be to not remember "
2299
  "login session."
2300
  msgstr ""
2301
 
2302
- #: includes/admin/core/class-admin-settings.php:1020
2303
  msgid "Licenses"
2304
  msgstr ""
2305
 
2306
- #: includes/admin/core/class-admin-settings.php:1023
2307
  msgid "Misc"
2308
  msgstr ""
2309
 
2310
- #: includes/admin/core/class-admin-settings.php:1028
2311
  msgid "Show an asterisk for required fields"
2312
  msgstr ""
2313
 
2314
- #: includes/admin/core/class-admin-settings.php:1033
2315
  msgid "User Profile Title"
2316
  msgstr ""
2317
 
2318
- #: includes/admin/core/class-admin-settings.php:1034
2319
  msgid "This is the title that is displayed on a specific user profile"
2320
  msgstr ""
2321
 
2322
- #: includes/admin/core/class-admin-settings.php:1040
2323
  msgid "User Profile Dynamic Meta Description"
2324
  msgstr ""
2325
 
2326
- #: includes/admin/core/class-admin-settings.php:1041
2327
  msgid ""
2328
  "This will be used in the meta description that is available for search-"
2329
  "engines."
2330
  msgstr ""
2331
 
2332
- #: includes/admin/core/class-admin-settings.php:1049
2333
  msgid "Remove Data on Uninstall?"
2334
  msgstr ""
2335
 
2336
- #: includes/admin/core/class-admin-settings.php:1050
2337
  msgid ""
2338
  "Check this box if you would like Ultimate Member to completely remove all of "
2339
  "its data when the plugin/extensions are deleted."
2340
  msgstr ""
2341
 
2342
- #: includes/admin/core/class-admin-settings.php:1055
2343
  msgid "Install Info"
2344
  msgstr ""
2345
 
2346
- #: includes/admin/core/class-admin-settings.php:1169
2347
  msgid "Ultimate Member - Settings"
2348
  msgstr ""
2349
 
2350
- #: includes/admin/core/class-admin-settings.php:1308
2351
  msgid "Save Changes"
2352
  msgstr ""
2353
 
2354
- #: includes/admin/core/class-admin-settings.php:1751
2355
  msgid "Subject Line"
2356
  msgstr ""
2357
 
2358
- #: includes/admin/core/class-admin-settings.php:1753
2359
  msgid "This is the subject line of the e-mail"
2360
  msgstr ""
2361
 
2362
- #: includes/admin/core/class-admin-settings.php:1758
2363
  msgid "Message Body"
2364
  msgstr ""
2365
 
2366
- #: includes/admin/core/class-admin-settings.php:1760
2367
  msgid "This is the content of the e-mail"
2368
  msgstr ""
2369
 
2370
- #: includes/admin/core/class-admin-settings.php:1810
2371
- #: includes/admin/core/class-admin-settings.php:1908
2372
  #, php-format
2373
  msgid ""
2374
  "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2375
  "\">renew your license key</a>."
2376
  msgstr ""
2377
 
2378
- #: includes/admin/core/class-admin-settings.php:1823
2379
- #: includes/admin/core/class-admin-settings.php:1921
2380
  #, php-format
2381
  msgid ""
2382
  "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2383
  "\">contact support</a> for more information."
2384
  msgstr ""
2385
 
2386
- #: includes/admin/core/class-admin-settings.php:1835
2387
- #: includes/admin/core/class-admin-settings.php:1933
2388
  #, php-format
2389
  msgid ""
2390
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2391
  "page</a> and verify it."
2392
  msgstr ""
2393
 
2394
- #: includes/admin/core/class-admin-settings.php:1848
2395
- #: includes/admin/core/class-admin-settings.php:1946
2396
  #, php-format
2397
  msgid ""
2398
  "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2399
  "\">visit your account page</a> to manage your license key URLs."
2400
  msgstr ""
2401
 
2402
- #: includes/admin/core/class-admin-settings.php:1860
2403
- #: includes/admin/core/class-admin-settings.php:1958
2404
  #, php-format
2405
  msgid "This appears to be an invalid license key for %s."
2406
  msgstr ""
2407
 
2408
- #: includes/admin/core/class-admin-settings.php:1869
2409
- #: includes/admin/core/class-admin-settings.php:1967
2410
  #, php-format
2411
  msgid ""
2412
  "Your license key has reached its activation limit. <a href=\"%s\">View "
2413
  "possible upgrades</a> now."
2414
  msgstr ""
2415
 
2416
- #: includes/admin/core/class-admin-settings.php:1878
2417
- #: includes/admin/core/class-admin-settings.php:1976
2418
  msgid ""
2419
  "The key you entered belongs to a bundle, please use the product specific "
2420
  "license key."
2421
  msgstr ""
2422
 
2423
- #: includes/admin/core/class-admin-settings.php:1886
2424
- #: includes/admin/core/class-admin-settings.php:1894
2425
  msgid "unknown_error"
2426
  msgstr ""
2427
 
2428
- #: includes/admin/core/class-admin-settings.php:1887
2429
- #: includes/admin/core/class-admin-settings.php:1895
2430
  #, php-format
2431
  msgid ""
2432
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2433
  "our support team</a>."
2434
  msgstr ""
2435
 
2436
- #: includes/admin/core/class-admin-settings.php:1991
2437
  msgid "License key never expires."
2438
  msgstr ""
2439
 
2440
- #: includes/admin/core/class-admin-settings.php:1998
2441
  #, php-format
2442
  msgid ""
2443
  "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2444
  "\"_blank\">Renew your license key</a>."
2445
  msgstr ""
2446
 
2447
- #: includes/admin/core/class-admin-settings.php:2008
2448
  #, php-format
2449
  msgid "Your license key expires on %s."
2450
  msgstr ""
2451
 
2452
- #: includes/admin/core/class-admin-settings.php:2026
2453
  #, php-format
2454
  msgid "To receive updates, please enter your valid %s license key."
2455
  msgstr ""
2456
 
2457
- #: includes/admin/core/class-admin-settings.php:2050
2458
  msgid "Clear License"
2459
  msgstr ""
2460
 
2461
- #: includes/admin/core/class-admin-settings.php:2052
2462
  msgid "Activate"
2463
  msgstr ""
2464
 
2465
- #: includes/admin/core/class-admin-settings.php:2054
2466
  msgid "Re-Activate"
2467
  msgstr ""
2468
 
2469
- #: includes/admin/core/class-admin-settings.php:2106
2470
  msgid ""
2471
  "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2472
  "(Mac)."
@@ -3860,31 +3864,31 @@ msgstr ""
3860
  msgid "Check All"
3861
  msgstr ""
3862
 
3863
- #: includes/class-config.php:129 includes/class-config.php:736
3864
  msgid "User"
3865
  msgstr ""
3866
 
3867
  #: includes/class-config.php:130 includes/class-config.php:235
3868
- #: includes/class-config.php:241 includes/class-config.php:737
3869
  msgid "Login"
3870
  msgstr ""
3871
 
3872
  #: includes/class-config.php:131 includes/class-config.php:233
3873
- #: includes/class-config.php:245 includes/class-config.php:738
3874
  msgid "Register"
3875
  msgstr ""
3876
 
3877
- #: includes/class-config.php:132 includes/class-config.php:739
3878
  msgid "Members"
3879
  msgstr ""
3880
 
3881
- #: includes/class-config.php:133 includes/class-config.php:740
3882
  #: includes/core/um-actions-profile.php:1077
3883
  #: includes/core/um-actions-user.php:15
3884
  msgid "Logout"
3885
  msgstr ""
3886
 
3887
- #: includes/class-config.php:135 includes/class-config.php:742
3888
  msgid "Password Reset"
3889
  msgstr ""
3890
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
+ "POT-Creation-Date: 2019-01-10 14:28+0200\n"
5
+ "PO-Revision-Date: 2019-01-10 14:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
35
  msgstr ""
36
 
37
  #: includes/admin/class-admin.php:308
38
+ #: includes/admin/core/class-admin-settings.php:1150
39
  msgid "Settings"
40
  msgstr ""
41
 
187
 
188
  #: includes/admin/core/class-admin-columns.php:133
189
  #: includes/admin/core/class-admin-columns.php:152
190
+ #: includes/admin/core/class-admin-settings.php:408
191
  #: includes/admin/templates/form/login_settings.php:13
192
  #: includes/admin/templates/form/register_customize.php:3
193
  #: includes/admin/templates/form/register_customize.php:29
433
  msgstr ""
434
 
435
  #: includes/admin/core/class-admin-menu.php:204
436
+ #: includes/admin/core/class-admin-settings.php:1029
437
  msgid "Extensions"
438
  msgstr ""
439
 
1390
  msgid "Enable menu icons in desktop view"
1391
  msgstr ""
1392
 
1393
+ #: includes/admin/core/class-admin-settings.php:222
1394
+ msgid "Global Site Access"
1395
+ msgstr ""
1396
+
1397
+ #: includes/admin/core/class-admin-settings.php:223
1398
+ msgid ""
1399
+ "Globally control the access of your site, you can have seperate restrict "
1400
+ "options per post/page by editing the desired item."
1401
+ msgstr ""
1402
+
1403
+ #: includes/admin/core/class-admin-settings.php:233
1404
+ msgid "Custom Redirect URL"
1405
+ msgstr ""
1406
+
1407
+ #: includes/admin/core/class-admin-settings.php:234
1408
+ msgid ""
1409
+ "A logged out user will be redirected to this url If he is not permitted to "
1410
+ "access the site"
1411
+ msgstr ""
1412
+
1413
  #: includes/admin/core/class-admin-settings.php:240
1414
+ msgid "Exclude the following URLs"
1415
+ msgstr ""
1416
+
1417
+ #: includes/admin/core/class-admin-settings.php:241
1418
+ msgid ""
1419
+ "Here you can exclude URLs beside the redirect URI to be accessible to "
1420
+ "everyone"
1421
+ msgstr ""
1422
+
1423
+ #: includes/admin/core/class-admin-settings.php:242
1424
+ msgid "Add New URL"
1425
+ msgstr ""
1426
+
1427
+ #: includes/admin/core/class-admin-settings.php:249
1428
+ msgid "Allow Homepage to be accessible"
1429
+ msgstr ""
1430
+
1431
+ #: includes/admin/core/class-admin-settings.php:255
1432
+ msgid "Allow Category pages to be accessible"
1433
+ msgstr ""
1434
+
1435
+ #: includes/admin/core/class-admin-settings.php:261
1436
+ msgid "Restricted Access Message"
1437
+ msgstr ""
1438
+
1439
+ #: includes/admin/core/class-admin-settings.php:262
1440
+ msgid ""
1441
+ "This is the message shown to users that do not have permission to view the "
1442
+ "content"
1443
+ msgstr ""
1444
+
1445
+ #: includes/admin/core/class-admin-settings.php:270
1446
+ msgid "Allow Gutenberg Blocks restriction options"
1447
+ msgstr ""
1448
+
1449
+ #: includes/admin/core/class-admin-settings.php:275
1450
+ msgid "Restricted Block Message"
1451
+ msgstr ""
1452
+
1453
+ #: includes/admin/core/class-admin-settings.php:276
1454
+ msgid ""
1455
+ "This is the message shown to users that do not have permission to view the "
1456
+ "block's content"
1457
+ msgstr ""
1458
+
1459
+ #: includes/admin/core/class-admin-settings.php:293
1460
+ msgid "Restricted Access to Posts"
1461
+ msgstr ""
1462
+
1463
+ #: includes/admin/core/class-admin-settings.php:294
1464
+ msgid "Restriction content of the current Posts"
1465
+ msgstr ""
1466
+
1467
+ #: includes/admin/core/class-admin-settings.php:303
1468
+ msgid "Restricted Access to Taxonomies"
1469
+ msgstr ""
1470
+
1471
+ #: includes/admin/core/class-admin-settings.php:304
1472
+ msgid "Restriction content of the current Taxonomies"
1473
+ msgstr ""
1474
+
1475
+ #: includes/admin/core/class-admin-settings.php:334
1476
  msgid "General"
1477
  msgstr ""
1478
 
1479
+ #: includes/admin/core/class-admin-settings.php:337
1480
  msgid "Pages"
1481
  msgstr ""
1482
 
1483
+ #: includes/admin/core/class-admin-settings.php:341
1484
  #: includes/admin/templates/dashboard/users.php:6
1485
  msgid "Users"
1486
  msgstr ""
1487
 
1488
+ #: includes/admin/core/class-admin-settings.php:347
1489
  msgid "Profile Permalink Base"
1490
  msgstr ""
1491
 
1492
+ #: includes/admin/core/class-admin-settings.php:348
1493
  msgid ""
1494
  "Here you can control the permalink structure of the user profile URL "
1495
  "globally e.g. "
1496
  msgstr ""
1497
 
1498
+ #: includes/admin/core/class-admin-settings.php:350
1499
+ #: includes/admin/core/class-admin-settings.php:367
1500
  #: includes/core/class-builtin.php:669 includes/core/class-builtin.php:672
1501
  msgid "Username"
1502
  msgstr ""
1503
 
1504
+ #: includes/admin/core/class-admin-settings.php:351
1505
  msgid "First and Last Name with '.'"
1506
  msgstr ""
1507
 
1508
+ #: includes/admin/core/class-admin-settings.php:352
1509
  msgid "First and Last Name with '-'"
1510
  msgstr ""
1511
 
1512
+ #: includes/admin/core/class-admin-settings.php:353
1513
  msgid "First and Last Name with '+'"
1514
  msgstr ""
1515
 
1516
+ #: includes/admin/core/class-admin-settings.php:354
1517
  msgid "User ID"
1518
  msgstr ""
1519
 
1520
+ #: includes/admin/core/class-admin-settings.php:356
1521
+ #: includes/admin/core/class-admin-settings.php:375
1522
  msgid "Select..."
1523
  msgstr ""
1524
 
1525
+ #: includes/admin/core/class-admin-settings.php:362
1526
  msgid "User Display Name"
1527
  msgstr ""
1528
 
1529
+ #: includes/admin/core/class-admin-settings.php:363
1530
  msgid ""
1531
  "This is the name that will be displayed for users on the front end of your "
1532
  "site. Default setting uses first/last name as display name if it exists"
1533
  msgstr ""
1534
 
1535
+ #: includes/admin/core/class-admin-settings.php:365
1536
  msgid "Default WP Display Name"
1537
  msgstr ""
1538
 
1539
+ #: includes/admin/core/class-admin-settings.php:366
1540
  #: includes/core/class-builtin.php:727 includes/core/class-builtin.php:730
1541
  msgid "Nickname"
1542
  msgstr ""
1543
 
1544
+ #: includes/admin/core/class-admin-settings.php:368
1545
  msgid "First name & last name"
1546
  msgstr ""
1547
 
1548
+ #: includes/admin/core/class-admin-settings.php:369
1549
  msgid "Last name & first name"
1550
  msgstr ""
1551
 
1552
+ #: includes/admin/core/class-admin-settings.php:370
1553
  msgid "First name & first initial of last name"
1554
  msgstr ""
1555
 
1556
+ #: includes/admin/core/class-admin-settings.php:371
1557
  msgid "First initial of first name & last name"
1558
  msgstr ""
1559
 
1560
+ #: includes/admin/core/class-admin-settings.php:372
1561
  msgid "First name only"
1562
  msgstr ""
1563
 
1564
+ #: includes/admin/core/class-admin-settings.php:373
1565
  msgid "Custom field(s)"
1566
  msgstr ""
1567
 
1568
+ #: includes/admin/core/class-admin-settings.php:380
1569
  msgid "Display Name Custom Field(s)"
1570
  msgstr ""
1571
 
1572
+ #: includes/admin/core/class-admin-settings.php:381
1573
  msgid ""
1574
  "Specify the custom field meta key or custom fields seperated by comma that "
1575
  "you want to use to display users name on the frontend of your site"
1576
  msgstr ""
1577
 
1578
+ #: includes/admin/core/class-admin-settings.php:387
1579
  msgid "Automatically redirect author page to their profile?"
1580
  msgstr ""
1581
 
1582
+ #: includes/admin/core/class-admin-settings.php:388
1583
  msgid ""
1584
  "If enabled, author pages will automatically redirect to the user's profile "
1585
  "page"
1586
  msgstr ""
1587
 
1588
+ #: includes/admin/core/class-admin-settings.php:393
1589
  msgid "Enable Members Directory"
1590
  msgstr ""
1591
 
1592
+ #: includes/admin/core/class-admin-settings.php:394
1593
  msgid "Control whether to enable or disable member directories on this site"
1594
  msgstr ""
1595
 
1596
+ #: includes/admin/core/class-admin-settings.php:399
1597
  msgid "Use Gravatars?"
1598
  msgstr ""
1599
 
1600
+ #: includes/admin/core/class-admin-settings.php:400
1601
  msgid ""
1602
  "Do you want to use gravatars instead of the default plugin profile photo (If "
1603
  "the user did not upload a custom profile photo / avatar)"
1604
  msgstr ""
1605
 
1606
+ #: includes/admin/core/class-admin-settings.php:405
1607
  msgid "Use Gravatar builtin image"
1608
  msgstr ""
1609
 
1610
+ #: includes/admin/core/class-admin-settings.php:406
1611
  msgid ""
1612
  "Gravatar has a number of built in options which you can also use as defaults"
1613
  msgstr ""
1614
 
1615
+ #: includes/admin/core/class-admin-settings.php:409
1616
  msgid "404 ( File Not Found response )"
1617
  msgstr ""
1618
 
1619
+ #: includes/admin/core/class-admin-settings.php:410
1620
  msgid "Mystery Man"
1621
  msgstr ""
1622
 
1623
+ #: includes/admin/core/class-admin-settings.php:411
1624
  msgid "Identicon"
1625
  msgstr ""
1626
 
1627
+ #: includes/admin/core/class-admin-settings.php:412
1628
  msgid "Monsterid"
1629
  msgstr ""
1630
 
1631
+ #: includes/admin/core/class-admin-settings.php:413
1632
  msgid "Wavatar"
1633
  msgstr ""
1634
 
1635
+ #: includes/admin/core/class-admin-settings.php:414
1636
  msgid "Retro"
1637
  msgstr ""
1638
 
1639
+ #: includes/admin/core/class-admin-settings.php:415
1640
  msgid "Blank ( a transparent PNG image )"
1641
  msgstr ""
1642
 
1643
+ #: includes/admin/core/class-admin-settings.php:423
1644
  msgid "Use Default plugin avatar as Gravatar's Default avatar"
1645
  msgstr ""
1646
 
1647
+ #: includes/admin/core/class-admin-settings.php:424
1648
  msgid ""
1649
  "Do you want to use the plugin default avatar instead of the gravatar default "
1650
  "photo (If the user did not upload a custom profile photo / avatar)"
1651
  msgstr ""
1652
 
1653
+ #: includes/admin/core/class-admin-settings.php:430
1654
  msgid "Require a strong password? (when user resets password only)"
1655
  msgstr ""
1656
 
1657
+ #: includes/admin/core/class-admin-settings.php:431
1658
  msgid ""
1659
  "Enable or disable a strong password rules on password reset and change "
1660
  "procedure"
1661
  msgstr ""
1662
 
1663
+ #: includes/admin/core/class-admin-settings.php:436
1664
+ #: includes/class-config.php:134 includes/class-config.php:742
1665
  #: includes/core/class-account.php:90
1666
  msgid "Account"
1667
  msgstr ""
1668
 
1669
+ #: includes/admin/core/class-admin-settings.php:441
1670
  msgid "Password Account Tab"
1671
  msgstr ""
1672
 
1673
+ #: includes/admin/core/class-admin-settings.php:447
1674
  msgid "Privacy Account Tab"
1675
  msgstr ""
1676
 
1677
+ #: includes/admin/core/class-admin-settings.php:448
1678
  msgid "Enable/disable the Privacy account tab in account page"
1679
  msgstr ""
1680
 
1681
+ #: includes/admin/core/class-admin-settings.php:453
1682
  msgid "Notifications Account Tab"
1683
  msgstr ""
1684
 
1685
+ #: includes/admin/core/class-admin-settings.php:454
1686
  msgid "Enable/disable the Notifications account tab in account page"
1687
  msgstr ""
1688
 
1689
+ #: includes/admin/core/class-admin-settings.php:459
1690
  msgid "Delete Account Tab"
1691
  msgstr ""
1692
 
1693
+ #: includes/admin/core/class-admin-settings.php:460
1694
  msgid "Enable/disable the Delete account tab in account page"
1695
  msgstr ""
1696
 
1697
+ #: includes/admin/core/class-admin-settings.php:465
1698
  msgid "Account Deletion Custom Text"
1699
  msgstr ""
1700
 
1701
+ #: includes/admin/core/class-admin-settings.php:466
1702
  msgid ""
1703
  "This is custom text that will be displayed to users before they delete their "
1704
  "accounts from your site"
1705
  msgstr ""
1706
 
1707
+ #: includes/admin/core/class-admin-settings.php:474
1708
  msgid "Add a First & Last Name fields"
1709
  msgstr ""
1710
 
1711
+ #: includes/admin/core/class-admin-settings.php:475
1712
  msgid ""
1713
  "Whether to enable these fields on the user account page by default or hide "
1714
  "them."
1715
  msgstr ""
1716
 
1717
+ #: includes/admin/core/class-admin-settings.php:480
1718
  msgid "Disable First & Last Name fields"
1719
  msgstr ""
1720
 
1721
+ #: includes/admin/core/class-admin-settings.php:481
1722
  msgid ""
1723
  "Whether to allow users changing their first and last name in account page."
1724
  msgstr ""
1725
 
1726
+ #: includes/admin/core/class-admin-settings.php:487
1727
  msgid "Require First & Last Name"
1728
  msgstr ""
1729
 
1730
+ #: includes/admin/core/class-admin-settings.php:488
1731
  msgid "Require first and last name?"
1732
  msgstr ""
1733
 
1734
+ #: includes/admin/core/class-admin-settings.php:494
1735
  msgid "Allow users to change e-mail"
1736
  msgstr ""
1737
 
1738
+ #: includes/admin/core/class-admin-settings.php:495
1739
  msgid "Whether to allow users changing their email in account page."
1740
  msgstr ""
1741
 
1742
+ #: includes/admin/core/class-admin-settings.php:500
1743
  msgid "Allow users to hide their profiles from directory"
1744
  msgstr ""
1745
 
1746
+ #: includes/admin/core/class-admin-settings.php:501
1747
  msgid ""
1748
  "Whether to allow users changing their profile visibility from member "
1749
  "directory in account page."
1750
  msgstr ""
1751
 
1752
+ #: includes/admin/core/class-admin-settings.php:506
1753
  msgid "Require a strong password?"
1754
  msgstr ""
1755
 
1756
+ #: includes/admin/core/class-admin-settings.php:507
1757
  msgid ""
1758
  "Enable or disable a strong password rules on account page / change password "
1759
  "tab"
1760
  msgstr ""
1761
 
1762
+ #: includes/admin/core/class-admin-settings.php:512
1763
  msgid "Uploads"
1764
  msgstr ""
1765
 
1766
+ #: includes/admin/core/class-admin-settings.php:518
1767
  msgid "Profile Photo Maximum File Size (bytes)"
1768
  msgstr ""
1769
 
1770
+ #: includes/admin/core/class-admin-settings.php:519
1771
  msgid "Sets a maximum size for the uploaded photo"
1772
  msgstr ""
1773
 
1774
+ #: includes/admin/core/class-admin-settings.php:526
1775
  msgid "Cover Photo Maximum File Size (bytes)"
1776
  msgstr ""
1777
 
1778
+ #: includes/admin/core/class-admin-settings.php:527
1779
  msgid "Sets a maximum size for the uploaded cover"
1780
  msgstr ""
1781
 
1782
+ #: includes/admin/core/class-admin-settings.php:533
1783
  msgid "Profile Photo Thumbnail Sizes (px)"
1784
  msgstr ""
1785
 
1786
+ #: includes/admin/core/class-admin-settings.php:534
1787
  msgid ""
1788
  "Here you can define which thumbnail sizes will be created for each profile "
1789
  "photo upload."
1790
  msgstr ""
1791
 
1792
+ #: includes/admin/core/class-admin-settings.php:536
1793
+ #: includes/admin/core/class-admin-settings.php:546
1794
  msgid "Add New Size"
1795
  msgstr ""
1796
 
1797
+ #: includes/admin/core/class-admin-settings.php:543
1798
  msgid "Cover Photo Thumbnail Sizes (px)"
1799
  msgstr ""
1800
 
1801
+ #: includes/admin/core/class-admin-settings.php:544
1802
  msgid ""
1803
  "Here you can define which thumbnail sizes will be created for each cover "
1804
  "photo upload."
1805
  msgstr ""
1806
 
1807
+ #: includes/admin/core/class-admin-settings.php:554
1808
  msgid "Image Quality"
1809
  msgstr ""
1810
 
1811
+ #: includes/admin/core/class-admin-settings.php:555
1812
  msgid ""
1813
  "Quality is used to determine quality of image uploads, and ranges from 0 "
1814
  "(worst quality, smaller file) to 100 (best quality, biggest file). The "
1815
  "default range is 60."
1816
  msgstr ""
1817
 
1818
+ #: includes/admin/core/class-admin-settings.php:562
1819
  msgid "Image Upload Maximum Width (px)"
1820
  msgstr ""
1821
 
1822
+ #: includes/admin/core/class-admin-settings.php:563
1823
  msgid ""
1824
  "Any image upload above this width will be resized to this limit "
1825
  "automatically."
1826
  msgstr ""
1827
 
1828
+ #: includes/admin/core/class-admin-settings.php:570
1829
  msgid "Cover Photo Minimum Width (px)"
1830
  msgstr ""
1831
 
1832
+ #: includes/admin/core/class-admin-settings.php:571
1833
  msgid "This will be the minimum width for cover photo uploads"
1834
  msgstr ""
1835
 
1836
+ #: includes/admin/core/class-admin-settings.php:578
1837
  msgid "Access"
1838
  msgstr ""
1839
 
1840
+ #: includes/admin/core/class-admin-settings.php:581
1841
  msgid "Restriction Content"
1842
  msgstr ""
1843
 
1844
+ #: includes/admin/core/class-admin-settings.php:585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1845
  msgid "Other"
1846
  msgstr ""
1847
 
1848
+ #: includes/admin/core/class-admin-settings.php:590
1849
  msgid "Enable the Reset Password Limit?"
1850
  msgstr ""
1851
 
1852
+ #: includes/admin/core/class-admin-settings.php:595
1853
  msgid "Reset Password Limit"
1854
  msgstr ""
1855
 
1856
+ #: includes/admin/core/class-admin-settings.php:596
1857
  msgid ""
1858
  "Set the maximum reset password limit. If reached the maximum limit, user "
1859
  "will be locked from using this."
1860
  msgstr ""
1861
 
1862
+ #: includes/admin/core/class-admin-settings.php:604
1863
  msgid "Blocked Email Addresses"
1864
  msgstr ""
1865
 
1866
+ #: includes/admin/core/class-admin-settings.php:605
1867
  msgid ""
1868
  "This will block the specified e-mail addresses from being able to sign up or "
1869
  "sign in to your site. To block an entire domain, use something like *@domain."
1870
  "com"
1871
  msgstr ""
1872
 
1873
+ #: includes/admin/core/class-admin-settings.php:610
1874
  msgid "Blacklist Words"
1875
  msgstr ""
1876
 
1877
+ #: includes/admin/core/class-admin-settings.php:611
1878
  msgid ""
1879
  "This option lets you specify blacklist of words to prevent anyone from "
1880
  "signing up with such a word as their username"
1881
  msgstr ""
1882
 
1883
+ #: includes/admin/core/class-admin-settings.php:618
1884
  #: includes/admin/core/list-tables/emails-list-table.php:300
1885
  msgid "Email"
1886
  msgstr ""
1887
 
1888
+ #: includes/admin/core/class-admin-settings.php:623
1889
  msgid "Admin E-mail Address"
1890
  msgstr ""
1891
 
 
1892
  #: includes/admin/core/class-admin-settings.php:624
1893
+ #: includes/admin/core/class-admin-settings.php:636
1894
  msgid "e.g. admin@companyname.com"
1895
  msgstr ""
1896
 
1897
+ #: includes/admin/core/class-admin-settings.php:629
1898
  msgid "Mail appears from"
1899
  msgstr ""
1900
 
1901
+ #: includes/admin/core/class-admin-settings.php:630
1902
  msgid "e.g. Site Name"
1903
  msgstr ""
1904
 
1905
+ #: includes/admin/core/class-admin-settings.php:635
1906
  msgid "Mail appears from address"
1907
  msgstr ""
1908
 
1909
+ #: includes/admin/core/class-admin-settings.php:641
1910
  msgid "Use HTML for E-mails?"
1911
  msgstr ""
1912
 
1913
+ #: includes/admin/core/class-admin-settings.php:642
1914
  msgid ""
1915
  "If you plan use e-mails with HTML, please make sure that this option is "
1916
  "enabled. Otherwise, HTML will be displayed as plain text."
1917
  msgstr ""
1918
 
1919
+ #: includes/admin/core/class-admin-settings.php:647
1920
  msgid "Appearance"
1921
  msgstr ""
1922
 
1923
+ #: includes/admin/core/class-admin-settings.php:650
1924
  msgid "Profile"
1925
  msgstr ""
1926
 
1927
+ #: includes/admin/core/class-admin-settings.php:655
1928
  msgid "Profile Default Template"
1929
  msgstr ""
1930
 
1931
+ #: includes/admin/core/class-admin-settings.php:656
1932
  msgid "This will be the default template to output profile"
1933
  msgstr ""
1934
 
1935
+ #: includes/admin/core/class-admin-settings.php:664
1936
  msgid "Profile Maximum Width"
1937
  msgstr ""
1938
 
1939
+ #: includes/admin/core/class-admin-settings.php:673
1940
  msgid "Profile Area Maximum Width"
1941
  msgstr ""
1942
 
1943
+ #: includes/admin/core/class-admin-settings.php:675
1944
  #: includes/admin/templates/form/profile_customize.php:56
1945
  msgid ""
1946
  "The maximum width of the profile area inside profile (below profile header)"
1947
  msgstr ""
1948
 
1949
+ #: includes/admin/core/class-admin-settings.php:681
1950
  msgid "Profile Field Icons"
1951
  msgstr ""
1952
 
1953
+ #: includes/admin/core/class-admin-settings.php:682
1954
  msgid "This is applicable for edit mode only"
1955
  msgstr ""
1956
 
1957
+ #: includes/admin/core/class-admin-settings.php:685
1958
+ #: includes/admin/core/class-admin-settings.php:881
1959
+ #: includes/admin/core/class-admin-settings.php:971
1960
  #: includes/admin/templates/form/login_customize.php:40
1961
  #: includes/admin/templates/form/profile_customize.php:67
1962
  #: includes/admin/templates/form/register_customize.php:55
1963
  msgid "Show inside text field"
1964
  msgstr ""
1965
 
1966
+ #: includes/admin/core/class-admin-settings.php:686
1967
+ #: includes/admin/core/class-admin-settings.php:882
1968
+ #: includes/admin/core/class-admin-settings.php:972
1969
  #: includes/admin/templates/form/login_customize.php:41
1970
  #: includes/admin/templates/form/profile_customize.php:68
1971
  #: includes/admin/templates/form/register_customize.php:56
1972
  msgid "Show with label"
1973
  msgstr ""
1974
 
1975
+ #: includes/admin/core/class-admin-settings.php:687
1976
+ #: includes/admin/core/class-admin-settings.php:883
1977
+ #: includes/admin/core/class-admin-settings.php:973
1978
  #: includes/admin/templates/form/login_customize.php:42
1979
  #: includes/admin/templates/form/profile_customize.php:69
1980
  #: includes/admin/templates/form/register_customize.php:57
1981
  msgid "Turn off"
1982
  msgstr ""
1983
 
1984
+ #: includes/admin/core/class-admin-settings.php:694
1985
  msgid "Profile Primary Button Text"
1986
  msgstr ""
1987
 
1988
+ #: includes/admin/core/class-admin-settings.php:696
1989
  msgid "The text that is used for updating profile button"
1990
  msgstr ""
1991
 
1992
+ #: includes/admin/core/class-admin-settings.php:702
1993
  msgid "Profile Secondary Button"
1994
  msgstr ""
1995
 
1996
+ #: includes/admin/core/class-admin-settings.php:704
1997
+ #: includes/admin/core/class-admin-settings.php:900
1998
+ #: includes/admin/core/class-admin-settings.php:990
1999
  msgid "Switch on/off the secondary button display in the form"
2000
  msgstr ""
2001
 
2002
+ #: includes/admin/core/class-admin-settings.php:709
2003
  msgid "Profile Secondary Button Text"
2004
  msgstr ""
2005
 
2006
+ #: includes/admin/core/class-admin-settings.php:711
2007
  msgid "The text that is used for cancelling update profile button"
2008
  msgstr ""
2009
 
2010
+ #: includes/admin/core/class-admin-settings.php:718
2011
  msgid "Default Profile Photo"
2012
  msgstr ""
2013
 
2014
+ #: includes/admin/core/class-admin-settings.php:719
2015
  msgid ""
2016
  "You can change the default profile picture globally here. Please make sure "
2017
  "that the photo is 300x300px."
2018
  msgstr ""
2019
 
2020
+ #: includes/admin/core/class-admin-settings.php:720
2021
  msgid "Select Default Profile Photo"
2022
  msgstr ""
2023
 
2024
+ #: includes/admin/core/class-admin-settings.php:730
2025
  msgid "Default Cover Photo"
2026
  msgstr ""
2027
 
2028
+ #: includes/admin/core/class-admin-settings.php:731
2029
  msgid ""
2030
  "You can change the default cover photo globally here. Please make sure that "
2031
  "the default cover is large enough and respects the ratio you are using for "
2032
  "cover photos."
2033
  msgstr ""
2034
 
2035
+ #: includes/admin/core/class-admin-settings.php:732
2036
  msgid "Select Default Cover Photo"
2037
  msgstr ""
2038
 
2039
+ #: includes/admin/core/class-admin-settings.php:737
2040
  #: includes/admin/templates/form/profile_customize.php:127
2041
  msgid "Profile Photo Size"
2042
  msgstr ""
2043
 
2044
+ #: includes/admin/core/class-admin-settings.php:739
2045
  msgid ""
2046
  "The global default of profile photo size. This can be overridden by "
2047
  "individual form settings"
2048
  msgstr ""
2049
 
2050
+ #: includes/admin/core/class-admin-settings.php:745
2051
  msgid "Profile Cover Photos"
2052
  msgstr ""
2053
 
2054
+ #: includes/admin/core/class-admin-settings.php:747
2055
  msgid "Switch on/off the profile cover photos"
2056
  msgstr ""
2057
 
2058
+ #: includes/admin/core/class-admin-settings.php:752
2059
  msgid "Profile Cover Ratio"
2060
  msgstr ""
2061
 
2062
+ #: includes/admin/core/class-admin-settings.php:753
2063
  msgid "Choose global ratio for cover photos of profiles"
2064
  msgstr ""
2065
 
2066
+ #: includes/admin/core/class-admin-settings.php:767
2067
  msgid "Profile Header Meta Text Icon"
2068
  msgstr ""
2069
 
2070
+ #: includes/admin/core/class-admin-settings.php:769
2071
  msgid "Display field icons for related user meta fields in header or not"
2072
  msgstr ""
2073
 
2074
+ #: includes/admin/core/class-admin-settings.php:774
2075
  msgid "Show display name in profile header"
2076
  msgstr ""
2077
 
2078
+ #: includes/admin/core/class-admin-settings.php:776
2079
  msgid "Switch on/off the user name on profile header"
2080
  msgstr ""
2081
 
2082
+ #: includes/admin/core/class-admin-settings.php:781
2083
  msgid "Show social links in profile header"
2084
  msgstr ""
2085
 
2086
+ #: includes/admin/core/class-admin-settings.php:783
2087
  msgid "Switch on/off the social links on profile header"
2088
  msgstr ""
2089
 
2090
+ #: includes/admin/core/class-admin-settings.php:788
2091
  msgid "Show user description in header"
2092
  msgstr ""
2093
 
2094
+ #: includes/admin/core/class-admin-settings.php:790
2095
  msgid "Switch on/off the user description on profile header"
2096
  msgstr ""
2097
 
2098
+ #: includes/admin/core/class-admin-settings.php:795
2099
  msgid "Enable html support for user description"
2100
  msgstr ""
2101
 
2102
+ #: includes/admin/core/class-admin-settings.php:797
2103
  msgid ""
2104
  "Switch on/off to enable/disable support for html tags on user description."
2105
  msgstr ""
2106
 
2107
+ #: includes/admin/core/class-admin-settings.php:802
2108
  msgid "User description maximum chars"
2109
  msgstr ""
2110
 
2111
+ #: includes/admin/core/class-admin-settings.php:804
2112
  msgid ""
2113
  "Maximum number of characters to allow in user description field in header."
2114
  msgstr ""
2115
 
2116
+ #: includes/admin/core/class-admin-settings.php:811
2117
  msgid "Profile Header Menu Position"
2118
  msgstr ""
2119
 
2120
+ #: includes/admin/core/class-admin-settings.php:813
2121
  msgid ""
2122
  "For incompatible themes, please make the menu open from left instead of "
2123
  "bottom by default."
2124
  msgstr ""
2125
 
2126
+ #: includes/admin/core/class-admin-settings.php:823
2127
  msgid "Show a custom message if profile is empty"
2128
  msgstr ""
2129
 
2130
+ #: includes/admin/core/class-admin-settings.php:825
2131
  msgid "Switch on/off the custom message that appears when the profile is empty"
2132
  msgstr ""
2133
 
2134
+ #: includes/admin/core/class-admin-settings.php:830
2135
  msgid "Show the emoticon"
2136
  msgstr ""
2137
 
2138
+ #: includes/admin/core/class-admin-settings.php:832
2139
  msgid "Switch on/off the emoticon (sad face) that appears above the message"
2140
  msgstr ""
2141
 
2142
+ #: includes/admin/core/class-admin-settings.php:838
2143
  msgid "Profile Menu"
2144
  msgstr ""
2145
 
2146
+ #: includes/admin/core/class-admin-settings.php:842
2147
  #: includes/admin/templates/form/mode.php:9
2148
  msgid "Registration Form"
2149
  msgstr ""
2150
 
2151
+ #: includes/admin/core/class-admin-settings.php:847
2152
  msgid "Registration Default Template"
2153
  msgstr ""
2154
 
2155
+ #: includes/admin/core/class-admin-settings.php:848
2156
  msgid "This will be the default template to output registration"
2157
  msgstr ""
2158
 
2159
+ #: includes/admin/core/class-admin-settings.php:856
2160
  msgid "Registration Maximum Width"
2161
  msgstr ""
2162
 
2163
+ #: includes/admin/core/class-admin-settings.php:858
2164
+ #: includes/admin/core/class-admin-settings.php:948
2165
  msgid "The maximum width this shortcode can take from the page width"
2166
  msgstr ""
2167
 
2168
+ #: includes/admin/core/class-admin-settings.php:864
2169
  msgid "Registration Shortcode Alignment"
2170
  msgstr ""
2171
 
2172
+ #: includes/admin/core/class-admin-settings.php:865
2173
+ #: includes/admin/core/class-admin-settings.php:955
2174
  #: includes/admin/templates/form/profile_customize.php:115
2175
  msgid "The shortcode is centered by default unless you specify otherwise here"
2176
  msgstr ""
2177
 
2178
+ #: includes/admin/core/class-admin-settings.php:868
2179
+ #: includes/admin/core/class-admin-settings.php:958
2180
  msgid "Centered"
2181
  msgstr ""
2182
 
2183
+ #: includes/admin/core/class-admin-settings.php:869
2184
+ #: includes/admin/core/class-admin-settings.php:959
2185
  msgid "Left aligned"
2186
  msgstr ""
2187
 
2188
+ #: includes/admin/core/class-admin-settings.php:870
2189
+ #: includes/admin/core/class-admin-settings.php:960
2190
  msgid "Right aligned"
2191
  msgstr ""
2192
 
2193
+ #: includes/admin/core/class-admin-settings.php:877
2194
  msgid "Registration Field Icons"
2195
  msgstr ""
2196
 
2197
+ #: includes/admin/core/class-admin-settings.php:878
2198
  msgid "This controls the display of field icons in the registration form"
2199
  msgstr ""
2200
 
2201
+ #: includes/admin/core/class-admin-settings.php:890
2202
  msgid "Registration Primary Button Text"
2203
  msgstr ""
2204
 
2205
+ #: includes/admin/core/class-admin-settings.php:892
2206
+ #: includes/admin/core/class-admin-settings.php:982
2207
  msgid "The text that is used for primary button text"
2208
  msgstr ""
2209
 
2210
+ #: includes/admin/core/class-admin-settings.php:898
2211
  msgid "Registration Secondary Button"
2212
  msgstr ""
2213
 
2214
+ #: includes/admin/core/class-admin-settings.php:905
2215
  msgid "Registration Secondary Button Text"
2216
  msgstr ""
2217
 
2218
+ #: includes/admin/core/class-admin-settings.php:907
2219
+ #: includes/admin/core/class-admin-settings.php:997
2220
  msgid "The text that is used for the secondary button text"
2221
  msgstr ""
2222
 
2223
+ #: includes/admin/core/class-admin-settings.php:914
2224
  msgid "Registration Secondary Button URL"
2225
  msgstr ""
2226
 
2227
+ #: includes/admin/core/class-admin-settings.php:916
2228
+ #: includes/admin/core/class-admin-settings.php:1006
2229
  msgid "You can replace default link for this button by entering custom URL"
2230
  msgstr ""
2231
 
2232
+ #: includes/admin/core/class-admin-settings.php:923
2233
  msgid "Registration Default Role"
2234
  msgstr ""
2235
 
2236
+ #: includes/admin/core/class-admin-settings.php:924
2237
  msgid ""
2238
  "This will be the default role assigned to users registering thru "
2239
  "registration form"
2240
  msgstr ""
2241
 
2242
+ #: includes/admin/core/class-admin-settings.php:932
2243
  #: includes/admin/templates/form/mode.php:13
2244
  msgid "Login Form"
2245
  msgstr ""
2246
 
2247
+ #: includes/admin/core/class-admin-settings.php:937
2248
  msgid "Login Default Template"
2249
  msgstr ""
2250
 
2251
+ #: includes/admin/core/class-admin-settings.php:938
2252
  msgid "This will be the default template to output login"
2253
  msgstr ""
2254
 
2255
+ #: includes/admin/core/class-admin-settings.php:946
2256
  msgid "Login Maximum Width"
2257
  msgstr ""
2258
 
2259
+ #: includes/admin/core/class-admin-settings.php:954
2260
  msgid "Login Shortcode Alignment"
2261
  msgstr ""
2262
 
2263
+ #: includes/admin/core/class-admin-settings.php:967
2264
  msgid "Login Field Icons"
2265
  msgstr ""
2266
 
2267
+ #: includes/admin/core/class-admin-settings.php:968
2268
  msgid "This controls the display of field icons in the login form"
2269
  msgstr ""
2270
 
2271
+ #: includes/admin/core/class-admin-settings.php:980
2272
  msgid "Login Primary Button Text"
2273
  msgstr ""
2274
 
2275
+ #: includes/admin/core/class-admin-settings.php:988
2276
  msgid "Login Secondary Button"
2277
  msgstr ""
2278
 
2279
+ #: includes/admin/core/class-admin-settings.php:995
2280
  msgid "Login Secondary Button Text"
2281
  msgstr ""
2282
 
2283
+ #: includes/admin/core/class-admin-settings.php:1004
2284
  msgid "Login Secondary Button URL"
2285
  msgstr ""
2286
 
2287
+ #: includes/admin/core/class-admin-settings.php:1013
2288
  msgid "Login Forgot Password Link"
2289
  msgstr ""
2290
 
2291
+ #: includes/admin/core/class-admin-settings.php:1015
2292
  msgid "Switch on/off the forgot password link in login form"
2293
  msgstr ""
2294
 
2295
+ #: includes/admin/core/class-admin-settings.php:1020
2296
  msgid "Show \"Remember Me\""
2297
  msgstr ""
2298
 
2299
+ #: includes/admin/core/class-admin-settings.php:1022
2300
  msgid ""
2301
  "Allow users to choose If they want to stay signed in even after closing the "
2302
  "browser. If you do not show this option, the default will be to not remember "
2303
  "login session."
2304
  msgstr ""
2305
 
2306
+ #: includes/admin/core/class-admin-settings.php:1032
2307
  msgid "Licenses"
2308
  msgstr ""
2309
 
2310
+ #: includes/admin/core/class-admin-settings.php:1035
2311
  msgid "Misc"
2312
  msgstr ""
2313
 
2314
+ #: includes/admin/core/class-admin-settings.php:1040
2315
  msgid "Show an asterisk for required fields"
2316
  msgstr ""
2317
 
2318
+ #: includes/admin/core/class-admin-settings.php:1045
2319
  msgid "User Profile Title"
2320
  msgstr ""
2321
 
2322
+ #: includes/admin/core/class-admin-settings.php:1046
2323
  msgid "This is the title that is displayed on a specific user profile"
2324
  msgstr ""
2325
 
2326
+ #: includes/admin/core/class-admin-settings.php:1052
2327
  msgid "User Profile Dynamic Meta Description"
2328
  msgstr ""
2329
 
2330
+ #: includes/admin/core/class-admin-settings.php:1053
2331
  msgid ""
2332
  "This will be used in the meta description that is available for search-"
2333
  "engines."
2334
  msgstr ""
2335
 
2336
+ #: includes/admin/core/class-admin-settings.php:1061
2337
  msgid "Remove Data on Uninstall?"
2338
  msgstr ""
2339
 
2340
+ #: includes/admin/core/class-admin-settings.php:1062
2341
  msgid ""
2342
  "Check this box if you would like Ultimate Member to completely remove all of "
2343
  "its data when the plugin/extensions are deleted."
2344
  msgstr ""
2345
 
2346
+ #: includes/admin/core/class-admin-settings.php:1067
2347
  msgid "Install Info"
2348
  msgstr ""
2349
 
2350
+ #: includes/admin/core/class-admin-settings.php:1181
2351
  msgid "Ultimate Member - Settings"
2352
  msgstr ""
2353
 
2354
+ #: includes/admin/core/class-admin-settings.php:1320
2355
  msgid "Save Changes"
2356
  msgstr ""
2357
 
2358
+ #: includes/admin/core/class-admin-settings.php:1763
2359
  msgid "Subject Line"
2360
  msgstr ""
2361
 
2362
+ #: includes/admin/core/class-admin-settings.php:1765
2363
  msgid "This is the subject line of the e-mail"
2364
  msgstr ""
2365
 
2366
+ #: includes/admin/core/class-admin-settings.php:1770
2367
  msgid "Message Body"
2368
  msgstr ""
2369
 
2370
+ #: includes/admin/core/class-admin-settings.php:1772
2371
  msgid "This is the content of the e-mail"
2372
  msgstr ""
2373
 
2374
+ #: includes/admin/core/class-admin-settings.php:1822
2375
+ #: includes/admin/core/class-admin-settings.php:1920
2376
  #, php-format
2377
  msgid ""
2378
  "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank"
2379
  "\">renew your license key</a>."
2380
  msgstr ""
2381
 
2382
+ #: includes/admin/core/class-admin-settings.php:1835
2383
+ #: includes/admin/core/class-admin-settings.php:1933
2384
  #, php-format
2385
  msgid ""
2386
  "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank"
2387
  "\">contact support</a> for more information."
2388
  msgstr ""
2389
 
2390
+ #: includes/admin/core/class-admin-settings.php:1847
2391
+ #: includes/admin/core/class-admin-settings.php:1945
2392
  #, php-format
2393
  msgid ""
2394
  "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account "
2395
  "page</a> and verify it."
2396
  msgstr ""
2397
 
2398
+ #: includes/admin/core/class-admin-settings.php:1860
2399
+ #: includes/admin/core/class-admin-settings.php:1958
2400
  #, php-format
2401
  msgid ""
2402
  "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank"
2403
  "\">visit your account page</a> to manage your license key URLs."
2404
  msgstr ""
2405
 
2406
+ #: includes/admin/core/class-admin-settings.php:1872
2407
+ #: includes/admin/core/class-admin-settings.php:1970
2408
  #, php-format
2409
  msgid "This appears to be an invalid license key for %s."
2410
  msgstr ""
2411
 
2412
+ #: includes/admin/core/class-admin-settings.php:1881
2413
+ #: includes/admin/core/class-admin-settings.php:1979
2414
  #, php-format
2415
  msgid ""
2416
  "Your license key has reached its activation limit. <a href=\"%s\">View "
2417
  "possible upgrades</a> now."
2418
  msgstr ""
2419
 
2420
+ #: includes/admin/core/class-admin-settings.php:1890
2421
+ #: includes/admin/core/class-admin-settings.php:1988
2422
  msgid ""
2423
  "The key you entered belongs to a bundle, please use the product specific "
2424
  "license key."
2425
  msgstr ""
2426
 
2427
+ #: includes/admin/core/class-admin-settings.php:1898
2428
+ #: includes/admin/core/class-admin-settings.php:1906
2429
  msgid "unknown_error"
2430
  msgstr ""
2431
 
2432
+ #: includes/admin/core/class-admin-settings.php:1899
2433
+ #: includes/admin/core/class-admin-settings.php:1907
2434
  #, php-format
2435
  msgid ""
2436
  "There was an error with this license key: %s. Please <a href=\"%s\">contact "
2437
  "our support team</a>."
2438
  msgstr ""
2439
 
2440
+ #: includes/admin/core/class-admin-settings.php:2003
2441
  msgid "License key never expires."
2442
  msgstr ""
2443
 
2444
+ #: includes/admin/core/class-admin-settings.php:2010
2445
  #, php-format
2446
  msgid ""
2447
  "Your license key expires soon! It expires on %s. <a href=\"%s\" target="
2448
  "\"_blank\">Renew your license key</a>."
2449
  msgstr ""
2450
 
2451
+ #: includes/admin/core/class-admin-settings.php:2020
2452
  #, php-format
2453
  msgid "Your license key expires on %s."
2454
  msgstr ""
2455
 
2456
+ #: includes/admin/core/class-admin-settings.php:2038
2457
  #, php-format
2458
  msgid "To receive updates, please enter your valid %s license key."
2459
  msgstr ""
2460
 
2461
+ #: includes/admin/core/class-admin-settings.php:2062
2462
  msgid "Clear License"
2463
  msgstr ""
2464
 
2465
+ #: includes/admin/core/class-admin-settings.php:2064
2466
  msgid "Activate"
2467
  msgstr ""
2468
 
2469
+ #: includes/admin/core/class-admin-settings.php:2066
2470
  msgid "Re-Activate"
2471
  msgstr ""
2472
 
2473
+ #: includes/admin/core/class-admin-settings.php:2118
2474
  msgid ""
2475
  "To copy the Install info, click below then press Ctrl + C (PC) or Cmd + C "
2476
  "(Mac)."
3864
  msgid "Check All"
3865
  msgstr ""
3866
 
3867
+ #: includes/class-config.php:129 includes/class-config.php:737
3868
  msgid "User"
3869
  msgstr ""
3870
 
3871
  #: includes/class-config.php:130 includes/class-config.php:235
3872
+ #: includes/class-config.php:241 includes/class-config.php:738
3873
  msgid "Login"
3874
  msgstr ""
3875
 
3876
  #: includes/class-config.php:131 includes/class-config.php:233
3877
+ #: includes/class-config.php:245 includes/class-config.php:739
3878
  msgid "Register"
3879
  msgstr ""
3880
 
3881
+ #: includes/class-config.php:132 includes/class-config.php:740
3882
  msgid "Members"
3883
  msgstr ""
3884
 
3885
+ #: includes/class-config.php:133 includes/class-config.php:741
3886
  #: includes/core/um-actions-profile.php:1077
3887
  #: includes/core/um-actions-user.php:15
3888
  msgid "Logout"
3889
  msgstr ""
3890
 
3891
+ #: includes/class-config.php:135 includes/class-config.php:743
3892
  msgid "Password Reset"
3893
  msgstr ""
3894
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link:
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires at least: 4.7
8
  Tested up to: 5.0
9
- Stable tag: 2.0.37
10
  License: GNU Version 2 or Any Later Version
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12
 
@@ -133,6 +133,11 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
133
 
134
  = Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
135
 
 
 
 
 
 
136
  = 2.0.37: January 8, 2019 =
137
 
138
  * Enhancements:
6
  Tags: community, member, membership, user-profile, user-registration
7
  Requires at least: 4.7
8
  Tested up to: 5.0
9
+ Stable tag: 2.0.38
10
  License: GNU Version 2 or Any Later Version
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12
 
133
 
134
  = Important: UM2.0+ is a significant update to the code base from 1.3.88. Please make sure you take a full-site backup with restore point before updating the plugin =
135
 
136
+ = 2.0.38: January 10, 2019 =
137
+
138
+ * Enhancements:
139
+ - Added option to enable Gutenberg Blocks restriction
140
+
141
  = 2.0.37: January 8, 2019 =
142
 
143
  * Enhancements:
ultimate-member.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
- Version: 2.0.37
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
+ Version: 2.0.38
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  Text Domain: ultimate-member