Ultimate Member – User Profile & Membership Plugin - Version 1.0.38

Version Description

Download this release

Release Info

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

Code changes from version 1.0.37 to 1.0.38

admin/assets/css/um-admin-misc.css CHANGED
@@ -287,6 +287,10 @@ body.um-admin .select2-container .select2-choice
287
  color: #888 !important;
288
  }
289
 
 
 
 
 
290
  body.um-admin .select2-container .select2-choice {
291
  font-size: 13px !important;
292
  }
287
  color: #888 !important;
288
  }
289
 
290
+ body.um-admin .select2-container .select2-choice > .select2-chosen {
291
+ font-size: 13px !important;
292
+ }
293
+
294
  body.um-admin .select2-container .select2-choice {
295
  font-size: 13px !important;
296
  }
admin/assets/js/um-admin-scripts.js CHANGED
@@ -104,7 +104,7 @@ jQuery(document).ready(function() {
104
  Tooltips
105
  **/
106
 
107
- jQuery('.um-admin-tipsy-n').tipsy({gravity: 'n', opacity: 1, live: true });
108
  jQuery('.um-admin-tipsy-w').tipsy({gravity: 'w', opacity: 1, live: true });
109
  jQuery('.um-admin-tipsy-e').tipsy({gravity: 'e', opacity: 1, live: true });
110
  jQuery('.um-admin-tipsy-s').tipsy({gravity: 's', opacity: 1, live: true });
104
  Tooltips
105
  **/
106
 
107
+ jQuery('.um-admin-tipsy-n,#redux-share a').tipsy({gravity: 'n', opacity: 1, live: true });
108
  jQuery('.um-admin-tipsy-w').tipsy({gravity: 'w', opacity: 1, live: true });
109
  jQuery('.um-admin-tipsy-e').tipsy({gravity: 'e', opacity: 1, live: true });
110
  jQuery('.um-admin-tipsy-s').tipsy({gravity: 's', opacity: 1, live: true });
admin/core/um-admin-actions.php CHANGED
@@ -1,5 +1,40 @@
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  /***
4
  *** @Hide registration notice
5
  ***/
1
  <?php
2
 
3
+ /***
4
+ *** @download a language remotely
5
+ ***/
6
+ add_action('um_admin_do_action__um_language_downloader', 'um_admin_do_action__um_language_downloader');
7
+ function um_admin_do_action__um_language_downloader( $action ){
8
+ global $ultimatemember;
9
+ if ( !is_admin() || !current_user_can('manage_options') ) die();
10
+
11
+ $locale = get_option('WPLANG');
12
+ if ( !$locale ) return;
13
+ if ( $locale == get_option('um_site_language') ) return;
14
+ if ( !isset( $ultimatemember->available_languages[$locale] ) ) return;
15
+
16
+ $path = $ultimatemember->files->upload_basedir;
17
+ $path = str_replace('/uploads/ultimatemember','',$path);
18
+ $path = $path . '/languages/plugins/';
19
+ $path = str_replace('//','/',$path);
20
+
21
+ $remote = 'https://ultimatemember.com/wp-content/languages/plugins/ultimatemember-' . $locale . '.po';
22
+ $remote2 = 'https://ultimatemember.com/wp-content/languages/plugins/ultimatemember-' . $locale . '.mo';
23
+
24
+ $remote_tmp = download_url( $remote, $timeout = 300 );
25
+ copy( $remote_tmp, $path . 'ultimatemember-' . $locale . '.po' );
26
+ unlink( $remote_tmp );
27
+
28
+ $remote2_tmp = download_url( $remote2, $timeout = 300 );
29
+ copy( $remote2_tmp, $path . 'ultimatemember-' . $locale . '.mo' );
30
+ unlink( $remote2_tmp );
31
+
32
+ update_option('um_site_language', $locale);
33
+
34
+ exit( wp_redirect( remove_query_arg('um_adm_action') ) );
35
+
36
+ }
37
+
38
  /***
39
  *** @Hide registration notice
40
  ***/
admin/core/um-admin-notices.php CHANGED
@@ -3,13 +3,35 @@
3
  class UM_Admin_Notices {
4
 
5
  function __construct() {
 
 
6
 
7
  add_action('admin_notices', array(&$this, 'main_notices'), 1);
8
 
 
 
9
  add_action('admin_notices', array(&$this, 'show_update_messages'), 10);
10
 
11
  }
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  /***
14
  *** @show main notices
15
  ***/
@@ -41,6 +63,28 @@ class UM_Admin_Notices {
41
 
42
  }
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  /***
45
  *** @updating users
46
  ***/
3
  class UM_Admin_Notices {
4
 
5
  function __construct() {
6
+
7
+ add_action('admin_init', array(&$this, 'create_languages_folder') );
8
 
9
  add_action('admin_notices', array(&$this, 'main_notices'), 1);
10
 
11
+ add_action('admin_notices', array(&$this, 'localize_note'), 2);
12
+
13
  add_action('admin_notices', array(&$this, 'show_update_messages'), 10);
14
 
15
  }
16
 
17
+ /***
18
+ *** @to store plugin languages
19
+ ***/
20
+ function create_languages_folder() {
21
+
22
+ global $ultimatemember;
23
+
24
+ $path = $ultimatemember->files->upload_basedir;
25
+ $path = str_replace('/uploads/ultimatemember','',$path);
26
+ $path = $path . '/languages/plugins/';
27
+ $path = str_replace('//','/',$path);
28
+
29
+ if ( !file_exists( $path ) ) {
30
+ @mkdir( $path, 0777, true);
31
+ }
32
+
33
+ }
34
+
35
  /***
36
  *** @show main notices
37
  ***/
63
 
64
  }
65
 
66
+
67
+ /***
68
+ *** @localization notice
69
+ ***/
70
+ function localize_note() {
71
+ global $ultimatemember;
72
+
73
+ $locale = get_option('WPLANG');
74
+ if ( !$locale ) return;
75
+ if ( $locale == get_option('um_site_language') ) return;
76
+ if ( !isset( $ultimatemember->available_languages[$locale] ) ) return;
77
+
78
+ $download_uri = add_query_arg('um_adm_action', 'um_language_downloader');
79
+
80
+ echo '<div class="updated" style="border-color: #3ba1da;"><p>';
81
+
82
+ echo sprintf(__('Your site language is <strong>%1$s</strong>. Good news! Ultimate Member is already available in <strong>%2$s language</strong>. <a href="%3$s">Download the translation</a> files and start using the plugin in your language now.','ultimatemember'), $locale, $ultimatemember->available_languages[$locale], $download_uri );
83
+
84
+ echo '</p></div>';
85
+
86
+ }
87
+
88
  /***
89
  *** @updating users
90
  ***/
core/um-actions-account.php CHANGED
@@ -10,7 +10,7 @@
10
  if ( $_POST['user_password'] && $_POST['confirm_user_password'] ) {
11
  $changes['user_pass'] = $_POST['user_password'];
12
  }
13
-
14
  foreach( $_POST as $k => $v ) {
15
  if ( !strstr( $k, 'password' ) && !strstr( $k, 'um_account' ) ) {
16
  $changes[ $k ] = $v;
@@ -38,7 +38,9 @@
38
  }
39
  }
40
 
41
- exit( wp_redirect( um_get_core_page('account') ) );
 
 
42
 
43
  }
44
 
10
  if ( $_POST['user_password'] && $_POST['confirm_user_password'] ) {
11
  $changes['user_pass'] = $_POST['user_password'];
12
  }
13
+
14
  foreach( $_POST as $k => $v ) {
15
  if ( !strstr( $k, 'password' ) && !strstr( $k, 'um_account' ) ) {
16
  $changes[ $k ] = $v;
38
  }
39
  }
40
 
41
+ $tab = ( get_query_var('um_tab') ) ? get_query_var('um_tab') : 'general';
42
+
43
+ exit( wp_redirect( $ultimatemember->account->tab_link( $tab ) ) );
44
 
45
  }
46
 
core/um-form.php CHANGED
@@ -50,7 +50,9 @@ class UM_Form {
50
  function form_init(){
51
  global $ultimatemember;
52
 
53
- if (isset($_POST) && !is_admin() && isset( $_POST['form_id'] ) && is_numeric($_POST['form_id']) ) {
 
 
54
 
55
  $this->form_id = $_POST['form_id'];
56
  $this->form_status = get_post_status( $this->form_id );
50
  function form_init(){
51
  global $ultimatemember;
52
 
53
+ $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
54
+
55
+ if ( $http_post && !is_admin() && isset( $_POST['form_id'] ) && is_numeric($_POST['form_id']) ) {
56
 
57
  $this->form_id = $_POST['form_id'];
58
  $this->form_status = get_post_status( $this->form_id );
core/um-rewrite.php CHANGED
@@ -6,7 +6,7 @@ class UM_Rewrite {
6
 
7
  add_filter('query_vars', array(&$this, 'query_vars'), 10, 1 );
8
 
9
- add_action('init', array(&$this, 'rewrite_rules') );
10
 
11
  add_action('template_redirect', array(&$this, 'redirect_author_page'), 9999 );
12
 
@@ -55,7 +55,7 @@ class UM_Rewrite {
55
  'index.php?page_id='.$account_page_id.'&um_tab=$matches[1]',
56
  'top'
57
  );
58
-
59
  if ( !get_option('um_flush_rules') ) {
60
  flush_rewrite_rules(true);
61
  update_option('um_flush_rules', true);
6
 
7
  add_filter('query_vars', array(&$this, 'query_vars'), 10, 1 );
8
 
9
+ add_action('init', array(&$this, 'rewrite_rules'), 1 );
10
 
11
  add_action('template_redirect', array(&$this, 'redirect_author_page'), 9999 );
12
 
55
  'index.php?page_id='.$account_page_id.'&um_tab=$matches[1]',
56
  'top'
57
  );
58
+
59
  if ( !get_option('um_flush_rules') ) {
60
  flush_rewrite_rules(true);
61
  update_option('um_flush_rules', true);
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
- Version: 1.0.37
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
@@ -40,15 +40,7 @@ Author URI: http://ultimatemember.com/
40
 
41
  }
42
  add_action( 'activated_plugin', 'ultimatemember_activation_hook' );
43
-
44
- /***
45
- *** @Load plugin textdomain
46
- ***/
47
- function ultimatemember_plugins_loaded() {
48
- load_plugin_textdomain( 'ultimatemember', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
49
- }
50
- add_action( 'plugins_loaded', 'ultimatemember_plugins_loaded', 0 );
51
-
52
  /***
53
  *** @Add any custom links to plugin page
54
  ***/
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
+ Version: 1.0.38
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
40
 
41
  }
42
  add_action( 'activated_plugin', 'ultimatemember_activation_hook' );
43
+
 
 
 
 
 
 
 
 
44
  /***
45
  *** @Add any custom links to plugin page
46
  ***/
languages/ultimatemember-en_US.mo DELETED
Binary file
languages/ultimatemember-en_US.po DELETED
@@ -1,4709 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Ultimate Member\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-01 23:22+0200\n"
6
- "PO-Revision-Date: 2015-02-01 23:22+0200\n"
7
- "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
- "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
- "Language: en_US\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.7.1\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:530
21
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1950
22
- msgid "You have changes that are not saved. Would you like to save them now?"
23
- msgstr ""
24
-
25
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:531
26
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1958
27
- msgid "Are you sure? Resetting will lose all custom values."
28
- msgstr ""
29
-
30
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:532
31
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1974
32
- msgid "Your current options will be replaced with the values of this preset. Would you like to proceed?"
33
- msgstr ""
34
-
35
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:565
36
- msgid "You have changes that are not saved. Would you like to save them now?"
37
- msgstr ""
38
-
39
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:566
40
- msgid "Are you sure? Resetting will lose all custom values."
41
- msgstr ""
42
-
43
- #: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:567
44
- msgid "Your current options will be replaced with the values of this preset. Would you like to proceed?"
45
- msgstr ""
46
-
47
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:213
48
- #, php-format
49
- msgid "Options panel created using %1$s"
50
- msgstr ""
51
-
52
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:213
53
- msgid "Redux Framework"
54
- msgstr ""
55
-
56
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
57
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:292
58
- msgid "Options"
59
- msgstr ""
60
-
61
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1369
62
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1370
63
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3587
64
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3666
65
- msgid "System Info"
66
- msgstr ""
67
-
68
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1966
69
- msgid "Are you sure? Resetting will lose all custom values in this section."
70
- msgstr ""
71
-
72
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1981
73
- msgid "Please Wait"
74
- msgstr ""
75
-
76
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2106
77
- msgid "Enable"
78
- msgstr ""
79
-
80
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2111
81
- msgid "Disable"
82
- msgstr ""
83
-
84
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2117
85
- msgid "moving the mouse over"
86
- msgstr ""
87
-
88
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2119
89
- msgid "clicking"
90
- msgstr ""
91
-
92
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2123
93
- #, php-format
94
- msgid ""
95
- "Hints are tooltips that popup when %d the hint icon, offering addition information about the field in which "
96
- "they appear. They can be %d d by using the link below."
97
- msgstr ""
98
-
99
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2128
100
- msgid "Hints"
101
- msgstr ""
102
-
103
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2253 admin/templates/form/login_settings.php:6
104
- msgid "Default"
105
- msgstr ""
106
-
107
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3334
108
- msgid "Warning- This options panel will not work properly without javascript!"
109
- msgstr ""
110
-
111
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3385
112
- msgid "Developer Mode Enabled"
113
- msgstr ""
114
-
115
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3413
116
- msgid "Expand"
117
- msgstr ""
118
-
119
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3415
120
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3723
121
- msgid "Save Changes"
122
- msgstr ""
123
-
124
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3419
125
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3727
126
- msgid "Reset Section"
127
- msgstr ""
128
-
129
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3421
130
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3729
131
- msgid "Reset All"
132
- msgstr ""
133
-
134
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3426
135
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3734
136
- msgid "Working..."
137
- msgstr ""
138
-
139
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3446
140
- msgid "Settings Imported!"
141
- msgstr ""
142
-
143
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3461
144
- msgid "All Defaults Restored!"
145
- msgstr ""
146
-
147
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3475
148
- msgid "Section Defaults Restored!"
149
- msgstr ""
150
-
151
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3489
152
- msgid "Settings Saved!"
153
- msgstr ""
154
-
155
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3507
156
- msgid "Settings have changed, you should save them!"
157
- msgstr ""
158
-
159
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3515
160
- msgid "error(s) were found!"
161
- msgstr ""
162
-
163
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3523
164
- msgid "warning(s) were found!"
165
- msgstr ""
166
-
167
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_filesystem.php:22
168
- msgid "Unable to create a required directory. Please ensure that"
169
- msgstr ""
170
-
171
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_filesystem.php:24
172
- msgid "has the proper read/write permissions or enter your FTP information below."
173
- msgstr ""
174
-
175
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_functions.php:253
176
- msgid "Dismiss"
177
- msgstr ""
178
-
179
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_themecheck.php:61
180
- #, php-format
181
- msgid ""
182
- "The theme you are testing has %s embedded. We invite you to read the %sTheme-Check Documentation%s to "
183
- "understand some warnings you will see because of Redux."
184
- msgstr ""
185
-
186
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_themecheck.php:109
187
- msgid ""
188
- "The following directories & files are still located in your <strong>Redux</strong> directory. They may "
189
- "cause errors in Theme-Check."
190
- msgstr ""
191
-
192
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:41
193
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:69
194
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:76
195
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:77
196
- msgid "Options Object"
197
- msgstr ""
198
-
199
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:54
200
- msgid "Show Object in Javascript Console Object"
201
- msgstr ""
202
-
203
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:124
204
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color/field_color.php:72
205
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:79
206
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:91
207
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_rgba/field_color_rgba.php:77
208
- msgid "Transparent"
209
- msgstr ""
210
-
211
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:141
212
- msgid "Background Repeat"
213
- msgstr ""
214
-
215
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:157
216
- msgid "Background Clip"
217
- msgstr ""
218
-
219
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:173
220
- msgid "Background Origin"
221
- msgstr ""
222
-
223
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:188
224
- msgid "Background Size"
225
- msgstr ""
226
-
227
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:203
228
- msgid "Background Attachment"
229
- msgstr ""
230
-
231
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:223
232
- msgid "Background Position"
233
- msgstr ""
234
-
235
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:277
236
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:149
237
- msgid "No media selected"
238
- msgstr ""
239
-
240
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
241
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
242
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
243
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:742
244
- #: core/um-fields.php:763
245
- msgid "Upload"
246
- msgstr ""
247
-
248
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:321
249
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:200
250
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:69
251
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:73
252
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:76
253
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:133
254
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:190
255
- #: core/um-actions-profile.php:168
256
- msgid "Remove"
257
- msgstr ""
258
-
259
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:114
260
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:191
261
- msgid "All"
262
- msgstr ""
263
-
264
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:127
265
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:215
266
- msgid "Top"
267
- msgstr ""
268
-
269
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:134
270
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:222
271
- msgid "Right"
272
- msgstr ""
273
-
274
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:141
275
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:229
276
- msgid "Bottom"
277
- msgstr ""
278
-
279
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:148
280
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:236
281
- msgid "Left"
282
- msgstr ""
283
-
284
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:162
285
- msgid "Border style"
286
- msgstr ""
287
-
288
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:68
289
- msgid "From "
290
- msgstr ""
291
-
292
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:82
293
- msgid "To "
294
- msgstr ""
295
-
296
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:161
297
- msgid "Width"
298
- msgstr ""
299
-
300
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:177
301
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:436
302
- msgid "Height"
303
- msgstr ""
304
-
305
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:188
306
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:189
307
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:245
308
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:246
309
- msgid "Units"
310
- msgstr ""
311
-
312
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/gallery/field_gallery.php:73
313
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:313
314
- msgid "Add/Edit Gallery"
315
- msgstr ""
316
-
317
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/gallery/field_gallery.php:74
318
- msgid "Clear Gallery"
319
- msgstr ""
320
-
321
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:87
322
- msgid "Regular"
323
- msgstr ""
324
-
325
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:91
326
- msgid "Hover"
327
- msgstr ""
328
-
329
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:95
330
- msgid "Visited"
331
- msgstr ""
332
-
333
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:99
334
- msgid "Active"
335
- msgstr ""
336
-
337
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:61
338
- msgid "Add More"
339
- msgstr ""
340
-
341
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:62 core/um-builtin.php:469
342
- #: core/um-builtin.php:472 core/um-builtin.php:832 core/um-builtin.php:835
343
- msgid "Password"
344
- msgstr ""
345
-
346
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:63 core/um-builtin.php:445
347
- #: core/um-builtin.php:448
348
- msgid "Username"
349
- msgstr ""
350
-
351
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select/field_select.php:82
352
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select_image/field_select_image.php:62
353
- msgid "Select an item"
354
- msgstr ""
355
-
356
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select/field_select.php:126
357
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select_image/field_select_image.php:143
358
- msgid "No items of this type were found."
359
- msgstr ""
360
-
361
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:68
362
- msgid "Slide"
363
- msgstr ""
364
-
365
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:73
366
- #, php-format
367
- msgid "New %s"
368
- msgstr ""
369
-
370
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:145
371
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:200
372
- #: admin/core/um-admin-columns.php:26 admin/core/um-admin-columns.php:44
373
- msgid "Title"
374
- msgstr ""
375
-
376
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:149
377
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:204
378
- msgid "Description"
379
- msgstr ""
380
-
381
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:153
382
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:207
383
- msgid "URL"
384
- msgstr ""
385
-
386
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:167
387
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:220 core/um-filters-user.php:17
388
- msgid "Delete"
389
- msgstr ""
390
-
391
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:223
392
- #, php-format
393
- msgid "Add %s"
394
- msgstr ""
395
-
396
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/switch/field_switch.php:41
397
- msgid "On"
398
- msgstr ""
399
-
400
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/switch/field_switch.php:44
401
- msgid "Off"
402
- msgstr ""
403
-
404
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:227
405
- msgid "Font Family"
406
- msgstr ""
407
-
408
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:228
409
- msgid "Font family"
410
- msgstr ""
411
-
412
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:254
413
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:255
414
- msgid "Backup Font Family"
415
- msgstr ""
416
-
417
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:269
418
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:276
419
- msgid "Font style"
420
- msgstr ""
421
-
422
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:270
423
- msgid "Font Weight &amp; Style"
424
- msgstr ""
425
-
426
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:276
427
- msgid "Style"
428
- msgstr ""
429
-
430
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:316
431
- msgid "Font subsets"
432
- msgstr ""
433
-
434
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:318
435
- msgid "Font Subsets"
436
- msgstr ""
437
-
438
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:319
439
- msgid "Subsets"
440
- msgstr ""
441
-
442
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:319
443
- msgid "Font script"
444
- msgstr ""
445
-
446
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:336
447
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:337
448
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:338
449
- msgid "Text Align"
450
- msgstr ""
451
-
452
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:359
453
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:360
454
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:361
455
- msgid "Text Transform"
456
- msgstr ""
457
-
458
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:382
459
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:383
460
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:384
461
- msgid "Font Variant"
462
- msgstr ""
463
-
464
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:402
465
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:403
466
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:404
467
- msgid "Text Decoration"
468
- msgstr ""
469
-
470
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:426
471
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:427
472
- msgid "Font Size"
473
- msgstr ""
474
-
475
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:427
476
- msgid "Size"
477
- msgstr ""
478
-
479
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:435
480
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:436
481
- msgid "Line Height"
482
- msgstr ""
483
-
484
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:444
485
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:445
486
- msgid "Word Spacing"
487
- msgstr ""
488
-
489
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:453
490
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:454
491
- msgid "Letter Spacing"
492
- msgstr ""
493
-
494
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:472
495
- msgid "Font Color"
496
- msgstr ""
497
-
498
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:474
499
- msgid "Font color"
500
- msgstr ""
501
-
502
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:851
503
- msgid "Standard Fonts"
504
- msgstr ""
505
-
506
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:952
507
- msgid "Google Webfonts"
508
- msgstr ""
509
-
510
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:78
511
- msgid "Import / Export Options"
512
- msgstr ""
513
-
514
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:81
515
- msgid "Import Options"
516
- msgstr ""
517
-
518
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:82
519
- msgid "Import from file"
520
- msgstr ""
521
-
522
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:82
523
- msgid "Import from URL"
524
- msgstr ""
525
-
526
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:85
527
- msgid "Input your backup file below and hit Import to restore your sites options from a backup."
528
- msgstr ""
529
-
530
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:90
531
- msgid "Input the URL to another sites options set and hit Import to load the options from that site."
532
- msgstr ""
533
-
534
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:94
535
- msgid "Import"
536
- msgstr ""
537
-
538
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:94
539
- msgid "WARNING! This will overwrite all existing option values, please proceed with caution!"
540
- msgstr ""
541
-
542
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:97
543
- msgid "Export Options"
544
- msgstr ""
545
-
546
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:100
547
- msgid ""
548
- "Here you can copy/download your current option settings. Keep this safe as you can use it as a backup should "
549
- "anything go wrong, or you can use it to restore your settings on this site (or any other site)."
550
- msgstr ""
551
-
552
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
553
- msgid "Copy"
554
- msgstr ""
555
-
556
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
557
- msgid "Download"
558
- msgstr ""
559
-
560
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
561
- msgid "Copy Link"
562
- msgstr ""
563
-
564
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:140
565
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:149
566
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:150
567
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1533
568
- msgid "Import / Export"
569
- msgstr ""
570
-
571
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:129
572
- msgid "Help improve Our Panel"
573
- msgstr ""
574
-
575
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:130
576
- msgid ""
577
- "Please helps us improve our panel by allowing us to gather anonymous usage stats so we know which "
578
- "configurations, plugins and themes to test to ensure compatibility."
579
- msgstr ""
580
-
581
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
582
- #: um-config.php:1625
583
- msgid "Allow tracking"
584
- msgstr ""
585
-
586
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:140 admin/core/um-admin-tracking.php:154
587
- msgid "Do not allow tracking"
588
- msgstr ""
589
-
590
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:151
591
- msgid "Welcome to the Redux Demo Panel"
592
- msgstr ""
593
-
594
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
595
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:139
596
- msgid "Getting Started"
597
- msgstr ""
598
-
599
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
600
- #, php-format
601
- msgid ""
602
- "This panel demonstrates the many features of Redux. Before digging in, we suggest you get up to speed by "
603
- "reviewing %1$s."
604
- msgstr ""
605
-
606
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
607
- msgid "our documentation"
608
- msgstr ""
609
-
610
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:153
611
- msgid "Redux Generator"
612
- msgstr ""
613
-
614
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:153
615
- #, php-format
616
- msgid ""
617
- "Want to get a head start? Use the %1$s. It will create a customized boilerplate theme or a standalone admin "
618
- "folder complete with all things Redux (with the help of Underscores and TGM). Save yourself a headache and "
619
- "try it today."
620
- msgstr ""
621
-
622
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
623
- msgid "Redux Extensions"
624
- msgstr ""
625
-
626
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
627
- #, php-format
628
- msgid ""
629
- "Did you know we have extensions, which greatly enhance the features of Redux? Visit our %1$s to learn more!"
630
- msgstr ""
631
-
632
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
633
- msgid "extensions directory"
634
- msgstr ""
635
-
636
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
637
- msgid "Like Redux?"
638
- msgstr ""
639
-
640
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
641
- #, php-format
642
- msgid "If so, please %1$s and consider making a %2$s to keep development of Redux moving forward."
643
- msgstr ""
644
-
645
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
646
- msgid "leave us a favorable review on WordPress.org"
647
- msgstr ""
648
-
649
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
650
- msgid "donation"
651
- msgstr ""
652
-
653
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:156
654
- msgid "Newsletter"
655
- msgstr ""
656
-
657
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:156
658
- msgid "If you'd like to keep up to with all things Redux, please subscribe to our newsletter"
659
- msgstr ""
660
-
661
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:157
662
- msgid "Email address"
663
- msgstr ""
664
-
665
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:157
666
- msgid "Subscribe"
667
- msgstr ""
668
-
669
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:166
670
- msgid "Close"
671
- msgstr ""
672
-
673
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/color/validation_color.php:15
674
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/color_rgba/validation_color_rgba.php:14
675
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/colorrgba/validation_colorrgba.php:16
676
- msgid "This field must be a valid color value."
677
- msgstr ""
678
-
679
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php:16
680
- msgid "You must provide a comma separated list of numerical values for this option."
681
- msgstr ""
682
-
683
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/date/validation_date.php:16
684
- msgid "This field must be a valid date."
685
- msgstr ""
686
-
687
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/email/validation_email.php:16
688
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php:16
689
- msgid "You must provide a valid email for this option."
690
- msgstr ""
691
-
692
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/no_html/validation_no_html.php:15
693
- msgid "You must not enter any HTML in this field, all HTML tags have been removed."
694
- msgstr ""
695
-
696
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php:16
697
- msgid "You must not enter any special characters in this field, all special characters have been removed."
698
- msgstr ""
699
-
700
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/not_empty/validation_not_empty.php:16
701
- msgid "This field cannot be empty. Please provide a value."
702
- msgstr ""
703
-
704
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/numeric/validation_numeric.php:16
705
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php:16
706
- msgid "You must provide a numerical value for this option."
707
- msgstr ""
708
-
709
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/url/validation_url.php:16
710
- msgid "You must provide a valid URL for this option."
711
- msgstr ""
712
-
713
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:40
714
- msgid "Welcome to Redux Framework"
715
- msgstr ""
716
-
717
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:48
718
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:295
719
- msgid "Redux Framework Changelog"
720
- msgstr ""
721
-
722
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:56
723
- msgid "Getting started with Redux Framework"
724
- msgstr ""
725
-
726
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:64
727
- msgid "The people that develop Redux Framework"
728
- msgstr ""
729
-
730
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:135
731
- msgid "What's New"
732
- msgstr ""
733
-
734
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:143
735
- msgid "Changelog"
736
- msgstr ""
737
-
738
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:147
739
- msgid "Credits"
740
- msgstr ""
741
-
742
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:164
743
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:333
744
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:471
745
- #, php-format
746
- msgid "Welcome to Redux Framework %s"
747
- msgstr ""
748
-
749
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:167
750
- #, php-format
751
- msgid "Thank you for updating to the latest version! Redux Framework %s is ready to <add description>"
752
- msgstr ""
753
-
754
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:169
755
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:300
756
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:338
757
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:476
758
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:210
759
- #, php-format
760
- msgid "Version %s"
761
- msgstr ""
762
-
763
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:174
764
- msgid "Some Feature"
765
- msgstr ""
766
-
767
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:178
768
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:182
769
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:195
770
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:199
771
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:203
772
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:208
773
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:221
774
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:225
775
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:230
776
- msgid "Feature"
777
- msgstr ""
778
-
779
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:190
780
- msgid "Some feature"
781
- msgstr ""
782
-
783
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:217
784
- msgid "More Features"
785
- msgstr ""
786
-
787
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:223
788
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:227
789
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:232
790
- msgid "description"
791
- msgstr ""
792
-
793
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:238
794
- msgid "Additional Updates"
795
- msgstr ""
796
-
797
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:242
798
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:246
799
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:252
800
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:256
801
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:262
802
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:266
803
- msgid "Cool thing"
804
- msgstr ""
805
-
806
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:244
807
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:248
808
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:254
809
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:258
810
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:264
811
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:268
812
- msgid "cool thing description."
813
- msgstr ""
814
-
815
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:277
816
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:316
817
- msgid "Go to Redux Framework"
818
- msgstr ""
819
-
820
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:278
821
- msgid "View the Full Changelog"
822
- msgstr ""
823
-
824
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:298
825
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:336
826
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:474
827
- #, php-format
828
- msgid "Thank you for updating to the latest version! Redux Framework %s is ready to make your <description>"
829
- msgstr ""
830
-
831
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:305
832
- msgid "Full Changelog"
833
- msgstr ""
834
-
835
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:342
836
- msgid "Use the tips below to get started using Redux Framework. You'll be up and running in no time!"
837
- msgstr ""
838
-
839
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:345
840
- msgid "Creating Your First Panel"
841
- msgstr ""
842
-
843
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:350
844
- #, php-format
845
- msgid "<a href=\"%s\">%s &rarr; Add New</a>"
846
- msgstr ""
847
-
848
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:352
849
- #, php-format
850
- msgid ""
851
- "The %s menu is your access point for all aspects of your Easy Digital Downloads product creation and setup. "
852
- "To create your first product, simply click Add New and then fill out the product details."
853
- msgstr ""
854
-
855
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:354
856
- msgid "Product Price"
857
- msgstr ""
858
-
859
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:356
860
- msgid ""
861
- "Products can have simple prices or variable prices if you wish to have more than one price point for a "
862
- "product. For a single price, simply enter the price. For multiple price points, click <em>Enable variable "
863
- "pricing</em> and enter the options."
864
- msgstr ""
865
-
866
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:358
867
- msgid "Download Files"
868
- msgstr ""
869
-
870
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:360
871
- msgid ""
872
- "Uploading the downloadable files is simple. Click <em>Upload File</em> in the Download Files section and "
873
- "choose your download file. To add more than one file, simply click the <em>Add New</em> button."
874
- msgstr ""
875
-
876
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:366
877
- msgid "Display a Product Grid"
878
- msgstr ""
879
-
880
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:373
881
- msgid "Flexible Product Grids"
882
- msgstr ""
883
-
884
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:375
885
- msgid ""
886
- "The [downloads] shortcode will display a product grid that works with any theme, no matter the size. It is "
887
- "even responsive!"
888
- msgstr ""
889
-
890
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:377
891
- msgid "Change the Number of Columns"
892
- msgstr ""
893
-
894
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:379
895
- msgid "You can easily change the number of columns by adding the columns=\"x\" parameter:"
896
- msgstr ""
897
-
898
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:385
899
- msgid "Additional Display Options"
900
- msgstr ""
901
-
902
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:387
903
- #, php-format
904
- msgid ""
905
- "The product grids can be customized in any way you wish and there is <a href=\"%s\">extensive documentation</"
906
- "a> to assist you."
907
- msgstr ""
908
-
909
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:392
910
- msgid "Purchase Buttons Anywhere"
911
- msgstr ""
912
-
913
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:397
914
- msgid "The <em>[purchase_link]</em> Shortcode"
915
- msgstr ""
916
-
917
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:399
918
- msgid ""
919
- "With easily accessible shortcodes to display purchase buttons, you can add a Buy Now or Add to Cart button "
920
- "for any product anywhere on your site in seconds."
921
- msgstr ""
922
-
923
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:401
924
- msgid "Buy Now Buttons"
925
- msgstr ""
926
-
927
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:403
928
- msgid ""
929
- "Purchase buttons can behave as either Add to Cart or Buy Now buttons. With Buy Now buttons customers are "
930
- "taken straight to PayPal, giving them the most frictionless purchasing experience possible."
931
- msgstr ""
932
-
933
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:409
934
- msgid "Need Help?"
935
- msgstr ""
936
-
937
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:413
938
- msgid "Phenomenal Support"
939
- msgstr ""
940
-
941
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:415
942
- msgid ""
943
- "We do our best to provide the best support we can. If you encounter a problem or have a question, post a "
944
- "question in the <a href=\"https://easydigitaldownloads.com/support\">support forums</a>."
945
- msgstr ""
946
-
947
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:417
948
- msgid "Need Even Faster Support?"
949
- msgstr ""
950
-
951
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:419
952
- msgid ""
953
- "Our <a href=\"https://easydigitaldownloads.com/support/pricing/\">Priority Support forums</a> are there for "
954
- "customers that need faster and/or more in-depth assistance."
955
- msgstr ""
956
-
957
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:425
958
- msgid "Stay Up to Date"
959
- msgstr ""
960
-
961
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:429
962
- msgid "Get Notified of Extension Releases"
963
- msgstr ""
964
-
965
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:431
966
- msgid ""
967
- "New extensions that make Easy Digital Downloads even more powerful are released nearly every single week. "
968
- "Subscribe to the newsletter to stay up to date with our latest releases. <a href=\"http://eepurl.com/kaerz\" "
969
- "target=\"_blank\">Signup now</a> to ensure you do not miss a release!"
970
- msgstr ""
971
-
972
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:433
973
- msgid "Get Alerted About New Tutorials"
974
- msgstr ""
975
-
976
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:435
977
- msgid ""
978
- "<a href=\"http://eepurl.com/kaerz\" target=\"_blank\">Signup now</a> to hear about the latest tutorial "
979
- "releases that explain how to take Easy Digital Downloads further."
980
- msgstr ""
981
-
982
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:441
983
- msgid "Extensions for Everything"
984
- msgstr ""
985
-
986
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:445
987
- msgid "Over 250 Extensions"
988
- msgstr ""
989
-
990
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:447
991
- msgid ""
992
- "Add-on plugins are available that greatly extend the default functionality of Easy Digital Downloads. There "
993
- "are extensions for payment processors, such as Stripe and PayPal, extensions for newsletter integrations, "
994
- "and many, many more."
995
- msgstr ""
996
-
997
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:449
998
- msgid "Visit the Extension Store"
999
- msgstr ""
1000
-
1001
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:451
1002
- msgid ""
1003
- "<a href=\"https://asydigitaldownloads.com/extensions\" target=\"_blank\">The Extensions store</a> has a list "
1004
- "of all available extensions, including convenient category filters so you can find exactly what you are "
1005
- "looking for."
1006
- msgstr ""
1007
-
1008
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:480
1009
- msgid "Redux Framework is created by a worldwide team of developers who <something witty here>"
1010
- msgstr ""
1011
-
1012
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:500
1013
- msgid "No valid changlog was found."
1014
- msgstr ""
1015
-
1016
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:539
1017
- #, php-format
1018
- msgid "View %s"
1019
- msgstr ""
1020
-
1021
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:306
1022
- msgid "Redux Framework has an embedded demo."
1023
- msgstr ""
1024
-
1025
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:306
1026
- msgid "Click here to activate the sample config file."
1027
- msgstr ""
1028
-
1029
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:407
1030
- msgid "Repo"
1031
- msgstr ""
1032
-
1033
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:408
1034
- msgid "Generator"
1035
- msgstr ""
1036
-
1037
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:409
1038
- msgid "Issues"
1039
- msgstr ""
1040
-
1041
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:410
1042
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1337
1043
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1567
1044
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1713
1045
- msgid "Documentation"
1046
- msgstr ""
1047
-
1048
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:415
1049
- msgid "Deactivate Demo Mode"
1050
- msgstr ""
1051
-
1052
- #: admin/core/lib/ReduxFramework/class.redux-plugin.php:417
1053
- msgid "Activate Demo Mode"
1054
- msgstr ""
1055
-
1056
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:55
1057
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:239
1058
- msgid "Home Settings"
1059
- msgstr ""
1060
-
1061
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:56
1062
- #, php-format
1063
- msgid ""
1064
- "Redux Framework was created with the developer in mind. It allows for any theme developer to have an "
1065
- "advanced theme panel with most of the features a developer would need. For more information check out the "
1066
- "Github repo at: %d"
1067
- msgstr ""
1068
-
1069
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:64
1070
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:248
1071
- msgid "Web Fonts"
1072
- msgstr ""
1073
-
1074
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:68
1075
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:252
1076
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:281
1077
- msgid "Basic media uploader with disabled URL input field."
1078
- msgstr ""
1079
-
1080
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:69
1081
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:253
1082
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:282
1083
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:300
1084
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:308
1085
- msgid "Upload any media using the WordPress native uploader"
1086
- msgstr ""
1087
-
1088
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:84
1089
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1578
1090
- msgid "Theme Information 1"
1091
- msgstr ""
1092
-
1093
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:85
1094
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:91
1095
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1579
1096
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1585
1097
- msgid "<p>This is the tab content, HTML is allowed.</p>"
1098
- msgstr ""
1099
-
1100
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:90
1101
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1584
1102
- msgid "Theme Information 2"
1103
- msgstr ""
1104
-
1105
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:95
1106
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1589
1107
- msgid "<p>This is the sidebar content, HTML is allowed.</p>"
1108
- msgstr ""
1109
-
1110
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:118
1111
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:119
1112
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1612
1113
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1613
1114
- msgid "Sample Options"
1115
- msgstr ""
1116
-
1117
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:236
1118
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1758
1119
- #, php-format
1120
- msgid ""
1121
- "<p>Did you know that Redux sets a global variable for you? To access any of your saved options from within "
1122
- "your code you can use your global variable: <strong>$%1$s</strong></p>"
1123
- msgstr ""
1124
-
1125
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:238
1126
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1760
1127
- msgid ""
1128
- "<p>This text is displayed above the options panel. It isn't required, but more info is always better! The "
1129
- "intro_text field accepts all HTML.</p>"
1130
- msgstr ""
1131
-
1132
- #: admin/core/lib/ReduxFramework/sample/barebones-config.php:242
1133
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1764
1134
- msgid ""
1135
- "<p>This text is displayed below the options panel. It isn't required, but more info is always better! The "
1136
- "footer_text field accepts all HTML.</p>"
1137
- msgstr ""
1138
-
1139
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:108
1140
- msgid "Section via hook"
1141
- msgstr ""
1142
-
1143
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:109
1144
- msgid ""
1145
- "<p class=\"description\">This is a section created by adding a filter to the sections array. Can be used by "
1146
- "child themes to add/remove sections from the options.</p>"
1147
- msgstr ""
1148
-
1149
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:189
1150
- #, php-format
1151
- msgid "Customize &#8220;%s&#8221;"
1152
- msgstr ""
1153
-
1154
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:209
1155
- #, php-format
1156
- msgid "By %s"
1157
- msgstr ""
1158
-
1159
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:211
1160
- msgid "Tags"
1161
- msgstr ""
1162
-
1163
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:216
1164
- #, php-format
1165
- msgid "This <a href=\"%1$s\">child theme</a> requires its parent theme, %2$s."
1166
- msgstr ""
1167
-
1168
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:216
1169
- msgid "http://codex.wordpress.org/Child_Themes"
1170
- msgstr ""
1171
-
1172
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:240
1173
- msgid ""
1174
- "Redux Framework was created with the developer in mind. It allows for any theme developer to have an "
1175
- "advanced theme panel with most of the features a developer would need. For more information check out the "
1176
- "Github repo at: <a href=\"https://github.com/ReduxFramework/Redux-Framework\">https://github.com/"
1177
- "ReduxFramework/Redux-Framework</a>"
1178
- msgstr ""
1179
-
1180
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:262
1181
- msgid "Section Show"
1182
- msgstr ""
1183
-
1184
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:263
1185
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:270
1186
- msgid "With the \"section\" field you can create indent option sections."
1187
- msgstr ""
1188
-
1189
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:269
1190
- msgid "Media Options"
1191
- msgstr ""
1192
-
1193
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:278
1194
- msgid "Media w/ URL"
1195
- msgstr ""
1196
-
1197
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:298
1198
- msgid "Media w/o URL"
1199
- msgstr ""
1200
-
1201
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:299
1202
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:307
1203
- msgid ""
1204
- "This represents the minimalistic view. It does not have the preview box or the display URL in an input box. "
1205
- msgstr ""
1206
-
1207
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:306
1208
- msgid "Media No Preview"
1209
- msgstr ""
1210
-
1211
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:314
1212
- msgid "Create a new Gallery by selecting existing or uploading new images using the WordPress native uploader"
1213
- msgstr ""
1214
-
1215
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:315
1216
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:702
1217
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:713
1218
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:731
1219
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:829
1220
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:843
1221
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:852
1222
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:859
1223
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:872
1224
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:881
1225
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:890
1226
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:912
1227
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:925
1228
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:934
1229
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:949
1230
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:958
1231
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:967
1232
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:977
1233
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:993
1234
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1001
1235
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1020
1236
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1028
1237
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1036
1238
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1050
1239
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1058
1240
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1108
1241
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1121
1242
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1141
1243
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1156
1244
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1189
1245
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1198
1246
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1206
1247
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1215
1248
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1223
1249
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1232
1250
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1240
1251
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1249
1252
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1257
1253
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1266
1254
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1276
1255
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1284
1256
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1293
1257
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1301
1258
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1310
1259
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1360
1260
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1371
1261
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1385
1262
- msgid "This is the description field, again good for additional info."
1263
- msgstr ""
1264
-
1265
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:320
1266
- msgid "Slider Example 1"
1267
- msgstr ""
1268
-
1269
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:321
1270
- msgid "This slider displays the value as a label."
1271
- msgstr ""
1272
-
1273
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:322
1274
- msgid "Slider description. Min: 1, max: 500, step: 1, default value: 250"
1275
- msgstr ""
1276
-
1277
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:332
1278
- msgid "Slider Example 2 with Steps (5)"
1279
- msgstr ""
1280
-
1281
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:333
1282
- msgid "This example displays the value in a text box"
1283
- msgstr ""
1284
-
1285
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:334
1286
- msgid "Slider description. Min: 0, max: 300, step: 5, default value: 75"
1287
- msgstr ""
1288
-
1289
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:344
1290
- msgid "Slider Example 3 with two sliders"
1291
- msgstr ""
1292
-
1293
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:345
1294
- msgid "This example displays the values in select boxes"
1295
- msgstr ""
1296
-
1297
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:346
1298
- msgid "Slider description. Min: 0, max: 500, step: 5, slider 1 default value: 100, slider 2 default value: 300"
1299
- msgstr ""
1300
-
1301
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:360
1302
- msgid "Slider Example 4 with float values"
1303
- msgstr ""
1304
-
1305
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:361
1306
- msgid "This example displays float values"
1307
- msgstr ""
1308
-
1309
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:362
1310
- msgid "Slider description. Min: 0, max: 1, step: .1, default value: .5"
1311
- msgstr ""
1312
-
1313
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:373
1314
- msgid "JQuery UI Spinner Example 1"
1315
- msgstr ""
1316
-
1317
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:374
1318
- msgid "JQuery UI spinner description. Min:20, max: 100, step:20, default value: 40"
1319
- msgstr ""
1320
-
1321
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:383
1322
- msgid "Switch On"
1323
- msgstr ""
1324
-
1325
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:384
1326
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:391
1327
- msgid "Look, it's on!"
1328
- msgstr ""
1329
-
1330
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:390
1331
- msgid "Switch Off"
1332
- msgstr ""
1333
-
1334
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:398
1335
- msgid "Switch - Nested Children, Enable to show"
1336
- msgstr ""
1337
-
1338
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:399
1339
- msgid "Look, it's on! Also hidden child elements!"
1340
- msgstr ""
1341
-
1342
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:408
1343
- msgid "Switch - This and the next switch required for patterns to show"
1344
- msgstr ""
1345
-
1346
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:409
1347
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:418
1348
- msgid "Also called a \"fold\" parent."
1349
- msgstr ""
1350
-
1351
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:410
1352
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:419
1353
- msgid "Items set with a fold to this ID will hide unless this is set to the appropriate value."
1354
- msgstr ""
1355
-
1356
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:417
1357
- msgid "Switch2 - Enable the above switch and this one for patterns to show"
1358
- msgstr ""
1359
-
1360
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:430
1361
- msgid "Images Option (with pattern=>true)"
1362
- msgstr ""
1363
-
1364
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:431
1365
- msgid "Select a background pattern."
1366
- msgstr ""
1367
-
1368
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:477
1369
- msgid "Slides Options"
1370
- msgstr ""
1371
-
1372
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:478
1373
- msgid "Unlimited slides with drag and drop sortings."
1374
- msgstr ""
1375
-
1376
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:479
1377
- msgid "This field will store all slides values into a multidimensional array to use into a foreach loop."
1378
- msgstr ""
1379
-
1380
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:481
1381
- msgid "This is a title"
1382
- msgstr ""
1383
-
1384
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:482
1385
- msgid "Description Here"
1386
- msgstr ""
1387
-
1388
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:483
1389
- msgid "Give us a link!"
1390
- msgstr ""
1391
-
1392
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:490
1393
- msgid "Preset"
1394
- msgstr ""
1395
-
1396
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:491
1397
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:493
1398
- msgid "This allows you to set a json string or array to override multiple preferences in your theme."
1399
- msgstr ""
1400
-
1401
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:514
1402
- msgid "Typography"
1403
- msgstr ""
1404
-
1405
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:536
1406
- msgid "Typography option with each property can be called individually."
1407
- msgstr ""
1408
-
1409
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:555
1410
- msgid "General Settings"
1411
- msgstr ""
1412
-
1413
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:561
1414
- msgid "Main Layout"
1415
- msgstr ""
1416
-
1417
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:562
1418
- msgid "Select main content and sidebar alignment. Choose between 1, 2 or 3 column layout."
1419
- msgstr ""
1420
-
1421
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:595
1422
- msgid "Tracking Code"
1423
- msgstr ""
1424
-
1425
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:596
1426
- msgid ""
1427
- "Paste your Google Analytics (or other) tracking code here. This will be added into the footer template of "
1428
- "your theme."
1429
- msgstr ""
1430
-
1431
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:603
1432
- msgid "CSS Code"
1433
- msgstr ""
1434
-
1435
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:604
1436
- msgid "Paste your CSS code here."
1437
- msgstr ""
1438
-
1439
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:635
1440
- msgid "Footer Text"
1441
- msgstr ""
1442
-
1443
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:636
1444
- msgid ""
1445
- "You can use the following shortcodes in your footer text: [wp-url] [site-url] [theme-url] [login-url] "
1446
- "[logout-url] [site-title] [site-tagline] [current-year]"
1447
- msgstr ""
1448
-
1449
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:651
1450
- msgid "Styling Options"
1451
- msgstr ""
1452
-
1453
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:657
1454
- msgid "Theme Stylesheet"
1455
- msgstr ""
1456
-
1457
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:658
1458
- msgid "Select your themes alternative color scheme."
1459
- msgstr ""
1460
-
1461
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:666
1462
- msgid "Body Background Color"
1463
- msgstr ""
1464
-
1465
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:667
1466
- msgid "Pick a background color for the theme (default: #fff)."
1467
- msgstr ""
1468
-
1469
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:675
1470
- msgid "Body Background"
1471
- msgstr ""
1472
-
1473
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:676
1474
- msgid "Body background with image, color, etc."
1475
- msgstr ""
1476
-
1477
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:682
1478
- msgid "Footer Background Color"
1479
- msgstr ""
1480
-
1481
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:683
1482
- msgid "Pick a background color for the footer (default: #dd9933)."
1483
- msgstr ""
1484
-
1485
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:690
1486
- msgid "Color RGBA - BETA"
1487
- msgstr ""
1488
-
1489
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:691
1490
- msgid "Gives you the RGBA color. Still quite experimental. Use at your own risk."
1491
- msgstr ""
1492
-
1493
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:700
1494
- msgid "Header Gradient Color Option"
1495
- msgstr ""
1496
-
1497
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:701
1498
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:712
1499
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:728
1500
- msgid "Only color validation can be done on this field type"
1501
- msgstr ""
1502
-
1503
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:711
1504
- msgid "Links Color Option"
1505
- msgstr ""
1506
-
1507
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:727
1508
- msgid "Header Border Option"
1509
- msgstr ""
1510
-
1511
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:757
1512
- msgid "Padding/Margin Option"
1513
- msgstr ""
1514
-
1515
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:758
1516
- msgid "Allow your users to choose the spacing or margin they want."
1517
- msgstr ""
1518
-
1519
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:759
1520
- msgid "You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units."
1521
- msgstr ""
1522
-
1523
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:772
1524
- msgid "Dimensions (Width/Height) Option"
1525
- msgstr ""
1526
-
1527
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:773
1528
- msgid "Allow your users to choose width, height, and/or unit."
1529
- msgstr ""
1530
-
1531
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:774
1532
- msgid "You can enable or disable any piece of this field. Width, Height, or Units."
1533
- msgstr ""
1534
-
1535
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:783
1536
- msgid "Body Font"
1537
- msgstr ""
1538
-
1539
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:784
1540
- msgid "Specify the body font properties."
1541
- msgstr ""
1542
-
1543
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:796 admin/core/um-admin-metabox.php:281
1544
- #: admin/core/um-admin-metabox.php:287 admin/core/um-admin-metabox.php:293
1545
- #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
1546
- #: admin/templates/form/register_css.php:4 um-config.php:1577 um-config.php:1583
1547
- msgid "Custom CSS"
1548
- msgstr ""
1549
-
1550
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:797
1551
- msgid "Quickly add some CSS to your theme by adding it to this block."
1552
- msgstr ""
1553
-
1554
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:798
1555
- msgid "This field is even CSS validated!"
1556
- msgstr ""
1557
-
1558
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:804
1559
- msgid "Custom HTML"
1560
- msgstr ""
1561
-
1562
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:805
1563
- msgid "Just like a text box widget."
1564
- msgstr ""
1565
-
1566
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:806
1567
- msgid "This field is even HTML validated!"
1568
- msgstr ""
1569
-
1570
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:820
1571
- msgid "Field Validation"
1572
- msgstr ""
1573
-
1574
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:821
1575
- msgid "Validate ALL fields within Redux."
1576
- msgstr ""
1577
-
1578
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:822
1579
- msgid "<p class=\"description\">This is the Description. Again HTML is allowed2</p>"
1580
- msgstr ""
1581
-
1582
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:827
1583
- msgid "Text Option - Email Validated"
1584
- msgstr ""
1585
-
1586
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:828
1587
- msgid "This is a little space under the Field Title in the Options table, additional info is good in here."
1588
- msgstr ""
1589
-
1590
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:841
1591
- msgid "Text Option with Data Attributes"
1592
- msgstr ""
1593
-
1594
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:842
1595
- msgid "You can also pass an options array if you want. Set the default to whatever you like."
1596
- msgstr ""
1597
-
1598
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:849
1599
- msgid "Multi Text Option - Color Validated"
1600
- msgstr ""
1601
-
1602
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:851
1603
- msgid "If you enter an invalid color it will be removed. Try using the text \"blue\" as a color. ;)"
1604
- msgstr ""
1605
-
1606
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:857
1607
- msgid "Text Option - URL Validated"
1608
- msgstr ""
1609
-
1610
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:858
1611
- msgid "This must be a URL."
1612
- msgstr ""
1613
-
1614
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:870
1615
- msgid "Text Option - Numeric Validated"
1616
- msgstr ""
1617
-
1618
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:871
1619
- msgid "This must be numeric."
1620
- msgstr ""
1621
-
1622
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:879
1623
- msgid "Text Option - Comma Numeric Validated"
1624
- msgstr ""
1625
-
1626
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:880
1627
- msgid "This must be a comma separated string of numerical values."
1628
- msgstr ""
1629
-
1630
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:888
1631
- msgid "Text Option - No Special Chars Validated"
1632
- msgstr ""
1633
-
1634
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:889
1635
- msgid "This must be a alpha numeric only."
1636
- msgstr ""
1637
-
1638
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:897
1639
- msgid "Text Option - Str Replace Validated"
1640
- msgstr ""
1641
-
1642
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:898
1643
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:911
1644
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:924
1645
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:933
1646
- msgid "You decide."
1647
- msgstr ""
1648
-
1649
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:899
1650
- msgid "This field's default value was changed by a filter hook!"
1651
- msgstr ""
1652
-
1653
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:910
1654
- msgid "Text Option - Preg Replace Validated"
1655
- msgstr ""
1656
-
1657
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:923
1658
- msgid "Text Option - Custom Callback Validated"
1659
- msgstr ""
1660
-
1661
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:932
1662
- msgid "Text Option - Custom Callback Validated - Class"
1663
- msgstr ""
1664
-
1665
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:947
1666
- msgid "Textarea Option - No HTML Validated"
1667
- msgstr ""
1668
-
1669
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:948
1670
- msgid "All HTML will be stripped"
1671
- msgstr ""
1672
-
1673
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:956
1674
- msgid "Textarea Option - HTML Validated"
1675
- msgstr ""
1676
-
1677
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:957
1678
- msgid "HTML Allowed (wp_kses)"
1679
- msgstr ""
1680
-
1681
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:965
1682
- msgid "Textarea Option - HTML Validated Custom"
1683
- msgstr ""
1684
-
1685
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:966
1686
- msgid "Custom HTML Allowed (wp_kses)"
1687
- msgstr ""
1688
-
1689
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:975
1690
- msgid "Textarea Option - JS Validated"
1691
- msgstr ""
1692
-
1693
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:976
1694
- msgid "JS will be escaped"
1695
- msgstr ""
1696
-
1697
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:985
1698
- msgid "Radio/Checkbox Fields"
1699
- msgstr ""
1700
-
1701
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:986
1702
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1134
1703
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1353
1704
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1554
1705
- msgid "<p class=\"description\">This is the Description. Again HTML is allowed</p>"
1706
- msgstr ""
1707
-
1708
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:991
1709
- msgid "Checkbox Option"
1710
- msgstr ""
1711
-
1712
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:992
1713
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1000
1714
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1019
1715
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1027
1716
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1035
1717
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1049
1718
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1057
1719
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1072
1720
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1140
1721
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1155
1722
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1188
1723
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1197
1724
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1205
1725
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1214
1726
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1222
1727
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1231
1728
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1239
1729
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1248
1730
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1256
1731
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1265
1732
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1283
1733
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1292
1734
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1300
1735
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1309
1736
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1317
1737
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1359
1738
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1370
1739
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1384
1740
- msgid "No validation can be done on this field type"
1741
- msgstr ""
1742
-
1743
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:999
1744
- msgid "Multi Checkbox Option"
1745
- msgstr ""
1746
-
1747
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1018
1748
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1048
1749
- msgid "Multi Checkbox Option (with menu data)"
1750
- msgstr ""
1751
-
1752
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1026
1753
- msgid "Multi Checkbox Option (with sidebar data)"
1754
- msgstr ""
1755
-
1756
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1034
1757
- msgid "Radio Option"
1758
- msgstr ""
1759
-
1760
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1056
1761
- msgid "Images Option"
1762
- msgstr ""
1763
-
1764
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1071
1765
- msgid "Images Option for Layout"
1766
- msgstr ""
1767
-
1768
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1073
1769
- msgid "This uses some of the built in images, you can use them for layout options."
1770
- msgstr ""
1771
-
1772
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1106
1773
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1119
1774
- msgid "Sortable Text Option"
1775
- msgstr ""
1776
-
1777
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1107
1778
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1120
1779
- msgid "Define and reorder these however you want."
1780
- msgstr ""
1781
-
1782
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1133
1783
- msgid "Select Fields"
1784
- msgstr ""
1785
-
1786
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1139
1787
- msgid "Select Option"
1788
- msgstr ""
1789
-
1790
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1154
1791
- msgid "Multi Select Option"
1792
- msgstr ""
1793
-
1794
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1169
1795
- msgid "Select Image"
1796
- msgstr ""
1797
-
1798
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1170
1799
- msgid "A preview of the selected image will appear underneath the select box."
1800
- msgstr ""
1801
-
1802
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1181
1803
- msgid "You can easily add a variety of data from WordPress."
1804
- msgstr ""
1805
-
1806
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1187
1807
- msgid "Categories Select Option"
1808
- msgstr ""
1809
-
1810
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1196
1811
- msgid "Categories Multi Select Option"
1812
- msgstr ""
1813
-
1814
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1204
1815
- msgid "Pages Select Option"
1816
- msgstr ""
1817
-
1818
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1213
1819
- msgid "Pages Multi Select Option"
1820
- msgstr ""
1821
-
1822
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1221
1823
- msgid "Tags Select Option"
1824
- msgstr ""
1825
-
1826
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1230
1827
- msgid "Tags Multi Select Option"
1828
- msgstr ""
1829
-
1830
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1238
1831
- msgid "Menus Select Option"
1832
- msgstr ""
1833
-
1834
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1247
1835
- msgid "Menus Multi Select Option"
1836
- msgstr ""
1837
-
1838
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1255
1839
- msgid "Post Type Select Option"
1840
- msgstr ""
1841
-
1842
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1264
1843
- msgid "Post Type Multi Select Option"
1844
- msgstr ""
1845
-
1846
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1274
1847
- msgid "Post Type Multi Select Option + Sortable"
1848
- msgstr ""
1849
-
1850
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1275
1851
- msgid "This field also has sortable enabled!"
1852
- msgstr ""
1853
-
1854
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1282
1855
- msgid "Posts Select Option2"
1856
- msgstr ""
1857
-
1858
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1291
1859
- msgid "Posts Multi Select Option"
1860
- msgstr ""
1861
-
1862
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1299
1863
- msgid "User Role Select Option"
1864
- msgstr ""
1865
-
1866
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1308
1867
- msgid "Capabilities Select Option"
1868
- msgstr ""
1869
-
1870
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1316
1871
- msgid "Elusive Icons Select Option"
1872
- msgstr ""
1873
-
1874
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1318
1875
- msgid "Here's a list of all the elusive icons by name and icon."
1876
- msgstr ""
1877
-
1878
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1324
1879
- msgid "<strong>Theme URL:</strong> "
1880
- msgstr ""
1881
-
1882
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1325
1883
- msgid "<strong>Author:</strong> "
1884
- msgstr ""
1885
-
1886
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1326
1887
- msgid "<strong>Version:</strong> "
1888
- msgstr ""
1889
-
1890
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1330
1891
- msgid "<strong>Tags:</strong> "
1892
- msgstr ""
1893
-
1894
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1352
1895
- msgid "Additional Fields"
1896
- msgstr ""
1897
-
1898
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1358
1899
- msgid "Date Option"
1900
- msgstr ""
1901
-
1902
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1369
1903
- msgid "Button Set Option"
1904
- msgstr ""
1905
-
1906
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1383
1907
- msgid "Button Set, Multi Select"
1908
- msgstr ""
1909
-
1910
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1398
1911
- msgid "This is the info field, if you want to break sections up."
1912
- msgstr ""
1913
-
1914
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1404
1915
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1412
1916
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1420
1917
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1434
1918
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1442
1919
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1451
1920
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1460
1921
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1469
1922
- msgid "This is a title."
1923
- msgstr ""
1924
-
1925
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1405
1926
- msgid "This is an info field with the warning style applied and a header."
1927
- msgstr ""
1928
-
1929
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1413
1930
- msgid "This is an info field with the success style applied, a header and an icon."
1931
- msgstr ""
1932
-
1933
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1421
1934
- msgid "This is an info field with the critical style applied, a header and an icon."
1935
- msgstr ""
1936
-
1937
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1435
1938
- msgid "This is an info notice field with the normal style applied, a header and an icon."
1939
- msgstr ""
1940
-
1941
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1443
1942
- msgid "This is an info notice field with the info style applied, a header and an icon."
1943
- msgstr ""
1944
-
1945
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1452
1946
- msgid "This is an info notice field with the warning style applied, a header and an icon."
1947
- msgstr ""
1948
-
1949
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1461
1950
- msgid "This is an info notice field with the success style applied, a header and an icon."
1951
- msgstr ""
1952
-
1953
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1470
1954
- msgid "This is an notice field with the critical style applied, a header and an icon."
1955
- msgstr ""
1956
-
1957
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1475
1958
- msgid "Custom Field Callback"
1959
- msgstr ""
1960
-
1961
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1476
1962
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1484
1963
- msgid "This is a completely unique field type"
1964
- msgstr ""
1965
-
1966
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1477
1967
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1485
1968
- msgid ""
1969
- "This is created with a callback function, so anything goes in this field. Make sure to define the function "
1970
- "though."
1971
- msgstr ""
1972
-
1973
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1483
1974
- msgid "Custom Field Callback - Class"
1975
- msgstr ""
1976
-
1977
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1493
1978
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1517
1979
- msgid "Customizer Only Option"
1980
- msgstr ""
1981
-
1982
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1494
1983
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1518
1984
- msgid "The subtitle is NOT visible in customizer"
1985
- msgstr ""
1986
-
1987
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1495
1988
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1519
1989
- msgid "The field desc is NOT visible in customizer."
1990
- msgstr ""
1991
-
1992
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1510
1993
- msgid "Customizer Only"
1994
- msgstr ""
1995
-
1996
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1511
1997
- msgid "<p class=\"description\">This Section should be visible only in Customizer</p>"
1998
- msgstr ""
1999
-
2000
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1534
2001
- msgid "Import and Export your Redux Framework settings from file, text or URL."
2002
- msgstr ""
2003
-
2004
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1553
2005
- msgid "Theme Information"
2006
- msgstr ""
2007
-
2008
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1719 index.php:58
2009
- msgid "Support"
2010
- msgstr ""
2011
-
2012
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:1725
2013
- msgid "Extensions"
2014
- msgstr ""
2015
-
2016
- #: admin/core/um-admin-access.php:95
2017
- msgid "Access Control"
2018
- msgstr ""
2019
-
2020
- #: admin/core/um-admin-actions-ajax.php:11 admin/core/um-admin-actions-fields.php:11
2021
- #: admin/core/um-admin-actions-modal.php:98
2022
- msgid "Please login as administrator"
2023
- msgstr ""
2024
-
2025
- #: admin/core/um-admin-actions-modal.php:23
2026
- msgid "Manage conditional fields support"
2027
- msgstr ""
2028
-
2029
- #: admin/core/um-admin-actions-modal.php:25
2030
- msgid "Add conditional fields support"
2031
- msgstr ""
2032
-
2033
- #: admin/core/um-admin-actions-modal.php:30
2034
- msgid "Reset all rules"
2035
- msgstr ""
2036
-
2037
- #: admin/core/um-admin-actions-modal.php:123
2038
- msgid "Search Icons..."
2039
- msgstr ""
2040
-
2041
- #: admin/core/um-admin-actions-modal.php:144
2042
- msgid "Setup New Field"
2043
- msgstr ""
2044
-
2045
- #: admin/core/um-admin-actions-modal.php:160
2046
- msgid "Predefined Fields"
2047
- msgstr ""
2048
-
2049
- #: admin/core/um-admin-actions-modal.php:172
2050
- msgid "None"
2051
- msgstr ""
2052
-
2053
- #: admin/core/um-admin-actions-modal.php:176
2054
- msgid "Custom Fields"
2055
- msgstr ""
2056
-
2057
- #: admin/core/um-admin-actions-modal.php:187
2058
- msgid "You did not create any custom fields"
2059
- msgstr ""
2060
-
2061
- #: admin/core/um-admin-actions-modal.php:221 admin/core/um-admin-actions-modal.php:291
2062
- msgid "This field type is not setup correcty."
2063
- msgstr ""
2064
-
2065
- #: admin/core/um-admin-builder.php:92 admin/core/um-admin-builder.php:158 admin/core/um-admin-dragdrop.php:140
2066
- msgid "Add Row"
2067
- msgstr ""
2068
-
2069
- #: admin/core/um-admin-builder.php:93 admin/core/um-admin-builder.php:159 admin/core/um-admin-dragdrop.php:141
2070
- msgid "Edit Row"
2071
- msgstr ""
2072
-
2073
- #: admin/core/um-admin-builder.php:162 admin/core/um-admin-dragdrop.php:143
2074
- #: admin/core/um-admin-dragdrop.php:157 admin/core/um-admin-dragdrop.php:182
2075
- msgid "Delete Row"
2076
- msgstr ""
2077
-
2078
- #: admin/core/um-admin-columns.php:25 admin/core/um-admin-columns.php:43
2079
- msgid "ID"
2080
- msgstr ""
2081
-
2082
- #: admin/core/um-admin-columns.php:27
2083
- msgid "Type"
2084
- msgstr ""
2085
-
2086
- #: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:238
2087
- #: admin/core/um-admin-metabox.php:278
2088
- msgid "Shortcode"
2089
- msgstr ""
2090
-
2091
- #: admin/core/um-admin-columns.php:29 admin/core/um-admin-columns.php:46
2092
- msgid "Date"
2093
- msgstr ""
2094
-
2095
- #: admin/core/um-admin-functions.php:28 admin/core/um-admin-functions.php:31
2096
- msgid "Form updated."
2097
- msgstr ""
2098
-
2099
- #: admin/core/um-admin-functions.php:29 admin/core/um-admin-functions.php:47
2100
- msgid "Custom field updated."
2101
- msgstr ""
2102
-
2103
- #: admin/core/um-admin-functions.php:30 admin/core/um-admin-functions.php:48
2104
- msgid "Custom field deleted."
2105
- msgstr ""
2106
-
2107
- #: admin/core/um-admin-functions.php:32
2108
- msgid "Form restored to revision."
2109
- msgstr ""
2110
-
2111
- #: admin/core/um-admin-functions.php:33
2112
- msgid "Form created."
2113
- msgstr ""
2114
-
2115
- #: admin/core/um-admin-functions.php:34
2116
- msgid "Form saved."
2117
- msgstr ""
2118
-
2119
- #: admin/core/um-admin-functions.php:35
2120
- msgid "Form submitted."
2121
- msgstr ""
2122
-
2123
- #: admin/core/um-admin-functions.php:36
2124
- msgid "Form scheduled."
2125
- msgstr ""
2126
-
2127
- #: admin/core/um-admin-functions.php:37
2128
- msgid "Form draft updated."
2129
- msgstr ""
2130
-
2131
- #: admin/core/um-admin-functions.php:46 admin/core/um-admin-functions.php:49
2132
- msgid "Role updated."
2133
- msgstr ""
2134
-
2135
- #: admin/core/um-admin-functions.php:50
2136
- msgid "Role restored to revision."
2137
- msgstr ""
2138
-
2139
- #: admin/core/um-admin-functions.php:51
2140
- msgid "Role created."
2141
- msgstr ""
2142
-
2143
- #: admin/core/um-admin-functions.php:52
2144
- msgid "Role saved."
2145
- msgstr ""
2146
-
2147
- #: admin/core/um-admin-functions.php:53
2148
- msgid "Role submitted."
2149
- msgstr ""
2150
-
2151
- #: admin/core/um-admin-functions.php:54
2152
- msgid "Role scheduled."
2153
- msgstr ""
2154
-
2155
- #: admin/core/um-admin-functions.php:55
2156
- msgid "Role draft updated."
2157
- msgstr ""
2158
-
2159
- #: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:214
2160
- #: um-config.php:224 um-config.php:234 um-config.php:244 um-config.php:276
2161
- msgid "Yes"
2162
- msgstr ""
2163
-
2164
- #: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
2165
- #: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:215 um-config.php:225
2166
- #: um-config.php:235 um-config.php:245 um-config.php:277
2167
- msgid "No"
2168
- msgstr ""
2169
-
2170
- #: admin/core/um-admin-metabox.php:233
2171
- msgid "General Options"
2172
- msgstr ""
2173
-
2174
- #: admin/core/um-admin-metabox.php:234
2175
- msgid "Profile Card"
2176
- msgstr ""
2177
-
2178
- #: admin/core/um-admin-metabox.php:235
2179
- msgid "Search Options"
2180
- msgstr ""
2181
-
2182
- #: admin/core/um-admin-metabox.php:236
2183
- msgid "Results &amp; Pagination"
2184
- msgstr ""
2185
-
2186
- #: admin/core/um-admin-metabox.php:240
2187
- msgid "Styling: General"
2188
- msgstr ""
2189
-
2190
- #: admin/core/um-admin-metabox.php:242
2191
- msgid "Styling: Profile Card"
2192
- msgstr ""
2193
-
2194
- #: admin/core/um-admin-metabox.php:251
2195
- msgid "Administrative Permissions"
2196
- msgstr ""
2197
-
2198
- #: admin/core/um-admin-metabox.php:253
2199
- msgid "General Permissions"
2200
- msgstr ""
2201
-
2202
- #: admin/core/um-admin-metabox.php:255
2203
- msgid "Profile Access"
2204
- msgstr ""
2205
-
2206
- #: admin/core/um-admin-metabox.php:257
2207
- msgid "Homepage Options"
2208
- msgstr ""
2209
-
2210
- #: admin/core/um-admin-metabox.php:259
2211
- msgid "Registration Options"
2212
- msgstr ""
2213
-
2214
- #: admin/core/um-admin-metabox.php:261
2215
- msgid "Login Options"
2216
- msgstr ""
2217
-
2218
- #: admin/core/um-admin-metabox.php:263
2219
- msgid "Logout Options"
2220
- msgstr ""
2221
-
2222
- #: admin/core/um-admin-metabox.php:265
2223
- msgid "Delete Options"
2224
- msgstr ""
2225
-
2226
- #: admin/core/um-admin-metabox.php:276
2227
- msgid "Select Form Type"
2228
- msgstr ""
2229
-
2230
- #: admin/core/um-admin-metabox.php:277
2231
- msgid "Form Builder"
2232
- msgstr ""
2233
-
2234
- #: admin/core/um-admin-metabox.php:280 admin/core/um-admin-metabox.php:285 admin/core/um-admin-metabox.php:291
2235
- msgid "Customize this form"
2236
- msgstr ""
2237
-
2238
- #: admin/core/um-admin-metabox.php:286
2239
- msgid "User Meta"
2240
- msgstr ""
2241
-
2242
- #: admin/core/um-admin-metabox.php:444
2243
- msgid ""
2244
- "Select where this field should appear. This option should only be changed on the profile form and allows you "
2245
- "to show a field in one mode only (edit or view) or in both modes."
2246
- msgstr ""
2247
-
2248
- #: admin/core/um-admin-metabox.php:478
2249
- msgid "If"
2250
- msgstr ""
2251
-
2252
- #: admin/core/um-admin-metabox.php:547
2253
- msgid "Value"
2254
- msgstr ""
2255
-
2256
- #: admin/core/um-admin-metabox.php:665
2257
- msgid "Optional text to include with the divider"
2258
- msgstr ""
2259
-
2260
- #: admin/core/um-admin-metabox.php:856
2261
- msgid ""
2262
- "Turn on to force users to create a strong password (A combination of one lowercase letter, one uppercase "
2263
- "letter, and one number). If turned on this option is only applied to register forms and not to login forms."
2264
- msgstr ""
2265
-
2266
- #: admin/core/um-admin-metabox.php:866
2267
- msgid ""
2268
- "Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
2269
- "forms and not on login forms."
2270
- msgstr ""
2271
-
2272
- #: admin/core/um-admin-notices.php:24
2273
- #, php-format
2274
- msgid ""
2275
- "Registration is disabled. Please go to the <a href=\"%s\">general settings</a> page in the WordPress admin "
2276
- "and select anyone can register. <a href=\"%s\">Hide this notice</a>"
2277
- msgstr ""
2278
-
2279
- #: admin/core/um-admin-notices.php:36
2280
- #, php-format
2281
- msgid ""
2282
- "Exif is not enabled on your server. Mobile photo uploads will not be rotated correctly until you enable the "
2283
- "exif extension. <a href=\"%s\">Hide this notice</a>"
2284
- msgstr ""
2285
-
2286
- #: admin/core/um-admin-notices.php:55
2287
- msgid "User has been updated."
2288
- msgstr ""
2289
-
2290
- #: admin/core/um-admin-notices.php:59
2291
- msgid "Users have been updated."
2292
- msgstr ""
2293
-
2294
- #: admin/core/um-admin-notices.php:63
2295
- msgid "Super administrators cannot be modified."
2296
- msgstr ""
2297
-
2298
- #: admin/core/um-admin-notices.php:64
2299
- msgid "Other users have been updated."
2300
- msgstr ""
2301
-
2302
- #: admin/core/um-admin-redux.php:59 admin/core/um-admin-redux.php:60 index.php:59
2303
- msgid "Settings"
2304
- msgstr ""
2305
-
2306
- #: admin/core/um-admin-roles.php:20
2307
- msgid "Role Title"
2308
- msgstr ""
2309
-
2310
- #: admin/core/um-admin-roles.php:21
2311
- msgid "No. of Members"
2312
- msgstr ""
2313
-
2314
- #: admin/core/um-admin-roles.php:21
2315
- msgid "The total number of members who have this role on your site"
2316
- msgstr ""
2317
-
2318
- #: admin/core/um-admin-roles.php:22
2319
- msgid "Core / Built-in"
2320
- msgstr ""
2321
-
2322
- #: admin/core/um-admin-roles.php:22
2323
- msgid "A core role is installed by default and may not be removed"
2324
- msgstr ""
2325
-
2326
- #: admin/core/um-admin-roles.php:23
2327
- msgid "WP-Admin Access"
2328
- msgstr ""
2329
-
2330
- #: admin/core/um-admin-roles.php:23
2331
- msgid "Let you know If users of this role can view the WordPress backend or not"
2332
- msgstr ""
2333
-
2334
- #: admin/core/um-admin-roles.php:46
2335
- msgid "This role can access the WordPress backend"
2336
- msgstr ""
2337
-
2338
- #: admin/core/um-admin-roles.php:64
2339
- msgid "Core"
2340
- msgstr ""
2341
-
2342
- #: admin/core/um-admin-tracking.php:149
2343
- msgid ""
2344
- "Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-"
2345
- "sensitive data on your site. Click <a href=\"https://ultimatemember.com/tracking/\" target=\"_blank\">here</"
2346
- "a> to see what data we track."
2347
- msgstr ""
2348
-
2349
- #: admin/core/um-admin-users.php:34
2350
- msgid "Edit"
2351
- msgstr ""
2352
-
2353
- #: admin/core/um-admin-users.php:35
2354
- msgid "Edit in frontend"
2355
- msgstr ""
2356
-
2357
- #: admin/core/um-admin-users.php:111 admin/core/um-admin-users.php:147
2358
- msgid "You do not have enough permissions to do that."
2359
- msgstr ""
2360
-
2361
- #: admin/core/um-admin-users.php:194 admin/core/um-admin-users.php:196
2362
- msgid "Take Action"
2363
- msgstr ""
2364
-
2365
- #: admin/core/um-admin-users.php:200 core/um-fields.php:1197
2366
- msgid "Apply"
2367
- msgstr ""
2368
-
2369
- #: admin/core/um-admin-users.php:206
2370
- msgid "Community role&hellip;"
2371
- msgstr ""
2372
-
2373
- #: admin/core/um-admin-users.php:213
2374
- msgid "Change"
2375
- msgstr ""
2376
-
2377
- #: admin/core/um-admin-users.php:231
2378
- msgid "Community Role"
2379
- msgstr ""
2380
-
2381
- #: admin/core/um-admin-users.php:231
2382
- msgid "This is the membership role set by Ultimate Member plugin"
2383
- msgstr ""
2384
-
2385
- #: admin/core/um-admin-users.php:233
2386
- msgid "WordPress Role"
2387
- msgstr ""
2388
-
2389
- #: admin/core/um-admin-users.php:233
2390
- msgid "This is the membership role set by WordPress"
2391
- msgstr ""
2392
-
2393
- #: admin/core/um-admin-users.php:235
2394
- msgid "Status"
2395
- msgstr ""
2396
-
2397
- #: admin/core/um-admin-users.php:235
2398
- msgid "This is current user status in your membership site"
2399
- msgstr ""
2400
-
2401
- #: admin/templates/access/settings.php:1
2402
- msgid "Apply custom access settings?"
2403
- msgstr ""
2404
-
2405
- #: admin/templates/access/settings.php:1
2406
- msgid "Switch to yes to override global access settings"
2407
- msgstr ""
2408
-
2409
- #: admin/templates/access/settings.php:10
2410
- msgid "Content Availability"
2411
- msgstr ""
2412
-
2413
- #: admin/templates/access/settings.php:10
2414
- msgid "Who can access this content?"
2415
- msgstr ""
2416
-
2417
- #: admin/templates/access/settings.php:16
2418
- msgid "Content accessible to Everyone"
2419
- msgstr ""
2420
-
2421
- #: admin/templates/access/settings.php:17
2422
- msgid "Content accessible to Logged Out Users"
2423
- msgstr ""
2424
-
2425
- #: admin/templates/access/settings.php:18
2426
- msgid "Content accessible to Logged In Users"
2427
- msgstr ""
2428
-
2429
- #: admin/templates/access/settings.php:24 admin/templates/access/settings.php:50
2430
- msgid "Redirect URL"
2431
- msgstr ""
2432
-
2433
- #: admin/templates/access/settings.php:24 admin/templates/access/settings.php:50
2434
- msgid "This is the URL that user is redirected to If he is not permitted to view this content"
2435
- msgstr ""
2436
-
2437
- #: admin/templates/access/settings.php:38
2438
- msgid "Select the member roles that can see this content?"
2439
- msgstr ""
2440
-
2441
- #: admin/templates/access/settings.php:38
2442
- msgid "If you do not select any role, all members will be able to view this content"
2443
- msgstr ""
2444
-
2445
- #: admin/templates/dashboard/overview.php:83
2446
- msgid "No users are awaiting manual verification so far."
2447
- msgstr ""
2448
-
2449
- #: admin/templates/dashboard/overview.php:120
2450
- msgid "No users are awaiting e-mail validation yet."
2451
- msgstr ""
2452
-
2453
- #: admin/templates/dashboard/overview.php:153
2454
- msgid "No users have been deactivated recently."
2455
- msgstr ""
2456
-
2457
- #: admin/templates/directory/appearance.php:3 admin/templates/form/login_customize.php:14
2458
- #: admin/templates/form/profile_customize.php:26 admin/templates/form/register_customize.php:26
2459
- msgid "Template"
2460
- msgstr ""
2461
-
2462
- #: admin/templates/directory/general.php:19
2463
- msgid "User Roles to Display"
2464
- msgstr ""
2465
-
2466
- #: admin/templates/directory/general.php:32
2467
- msgid "Only show members who have uploaded a profile photo"
2468
- msgstr ""
2469
-
2470
- #: admin/templates/directory/general.php:41
2471
- msgid "Only show members who have uploaded a cover photo"
2472
- msgstr ""
2473
-
2474
- #: admin/templates/directory/general.php:50
2475
- msgid "Sort users by"
2476
- msgstr ""
2477
-
2478
- #: admin/templates/directory/general.php:67
2479
- msgid "Meta key"
2480
- msgstr ""
2481
-
2482
- #: admin/templates/directory/pagination.php:6
2483
- msgid "Number of profiles per page"
2484
- msgstr ""
2485
-
2486
- #: admin/templates/directory/pagination.php:6
2487
- msgid "Number of profiles to appear on page for standard users"
2488
- msgstr ""
2489
-
2490
- #: admin/templates/directory/pagination.php:15
2491
- msgid "Number of profiles per page (for Mobiles & Tablets)"
2492
- msgstr ""
2493
-
2494
- #: admin/templates/directory/pagination.php:15
2495
- msgid "Number of profiles to appear on page for mobile users"
2496
- msgstr ""
2497
-
2498
- #: admin/templates/directory/pagination.php:24
2499
- msgid "Maximum number of profiles"
2500
- msgstr ""
2501
-
2502
- #: admin/templates/directory/pagination.php:24
2503
- msgid ""
2504
- "Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to "
2505
- "disable this limit"
2506
- msgstr ""
2507
-
2508
- #: admin/templates/directory/profile.php:6
2509
- msgid "Enable Profile Photo"
2510
- msgstr ""
2511
-
2512
- #: admin/templates/directory/profile.php:15
2513
- msgid "Enable Cover Photo"
2514
- msgstr ""
2515
-
2516
- #: admin/templates/directory/profile.php:24
2517
- msgid "Show display name"
2518
- msgstr ""
2519
-
2520
- #: admin/templates/directory/profile.php:33
2521
- msgid "Show tagline below profile name"
2522
- msgstr ""
2523
-
2524
- #: admin/templates/directory/profile.php:42
2525
- msgid "Choose field(s) to display in tagline"
2526
- msgstr ""
2527
-
2528
- #: admin/templates/directory/profile.php:90
2529
- msgid "Show extra user information below tagline?"
2530
- msgstr ""
2531
-
2532
- #: admin/templates/directory/profile.php:99
2533
- msgid "Enable reveal section transition by default"
2534
- msgstr ""
2535
-
2536
- #: admin/templates/directory/profile.php:108
2537
- msgid "Choose field(s) to display in reveal section"
2538
- msgstr ""
2539
-
2540
- #: admin/templates/directory/profile.php:156
2541
- msgid "Show social connect icons"
2542
- msgstr ""
2543
-
2544
- #: admin/templates/directory/profile_card.php:3
2545
- msgid "Profile card background"
2546
- msgstr ""
2547
-
2548
- #: admin/templates/directory/profile_card.php:7
2549
- msgid "Profile card text"
2550
- msgstr ""
2551
-
2552
- #: admin/templates/directory/profile_card.php:11
2553
- msgid "Profile card border color"
2554
- msgstr ""
2555
-
2556
- #: admin/templates/directory/profile_card.php:15
2557
- msgid "Profile photo border color"
2558
- msgstr ""
2559
-
2560
- #: admin/templates/directory/profile_card.php:19
2561
- msgid "Profile card border thickness"
2562
- msgstr ""
2563
-
2564
- #: admin/templates/directory/search.php:6
2565
- msgid "Enable Search feature"
2566
- msgstr ""
2567
-
2568
- #: admin/templates/directory/search.php:15
2569
- msgid "User Roles that can use search"
2570
- msgstr ""
2571
-
2572
- #: admin/templates/directory/search.php:28
2573
- msgid "Choose field(s) to enable in search"
2574
- msgstr ""
2575
-
2576
- #: admin/templates/directory/search.php:76
2577
- msgid "Results Text"
2578
- msgstr ""
2579
-
2580
- #: admin/templates/directory/search.php:76
2581
- msgid "Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text"
2582
- msgstr ""
2583
-
2584
- #: admin/templates/directory/search.php:79 core/um-setup.php:47 core/um-setup.php:152
2585
- msgid "{total_users} Members"
2586
- msgstr ""
2587
-
2588
- #: admin/templates/directory/search.php:85
2589
- msgid "Single Result Text"
2590
- msgstr ""
2591
-
2592
- #: admin/templates/directory/search.php:85
2593
- msgid "Same as above but in case of 1 user found only"
2594
- msgstr ""
2595
-
2596
- #: admin/templates/directory/search.php:88 core/um-setup.php:48 core/um-setup.php:153
2597
- msgid "{total_users} Member"
2598
- msgstr ""
2599
-
2600
- #: admin/templates/directory/search.php:94
2601
- msgid "Custom text if no users were found"
2602
- msgstr ""
2603
-
2604
- #: admin/templates/directory/search.php:97 core/um-setup.php:49
2605
- msgid "We are sorry. We cannot find any users who match your search criteria."
2606
- msgstr ""
2607
-
2608
- #: admin/templates/form/builder.php:14
2609
- msgid "Live Preview"
2610
- msgstr ""
2611
-
2612
- #: admin/templates/form/builder.php:28
2613
- msgid "Add Master Row"
2614
- msgstr ""
2615
-
2616
- #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
2617
- #: admin/templates/form/register_css.php:4
2618