Version Description
Download this release
Release Info
Developer | ultimatemember |
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 +4 -0
- admin/assets/js/um-admin-scripts.js +1 -1
- admin/core/um-admin-actions.php +35 -0
- admin/core/um-admin-notices.php +44 -0
- core/um-actions-account.php +4 -2
- core/um-form.php +3 -1
- core/um-rewrite.php +2 -2
- index.php +2 -10
- languages/ultimatemember-en_US.mo +0 -0
- languages/ultimatemember-en_US.po +0 -4709
- languages/ultimatemember-tr_TR.mo +0 -0
- languages/ultimatemember-tr_TR.po +0 -4719
- readme.txt +18 -2
- um-config.php +4 -4
- um-init.php +10 -0
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 |
-
|
|
|
|
|
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 |
-
|
|
|
|
|
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.
|
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 & 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 → 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 “%s”"
|
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 & 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…"
|
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 |
-
msgid "Enter custom css that will be applied to this form only"
|
2619 |
-
msgstr ""
|
2620 |
-
|
2621 |
-
#: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
|
2622 |
-
#: admin/templates/form/register_customize.php:4
|
2623 |
-
msgid "Use global settings?"
|
2624 |
-
msgstr ""
|
2625 |
-
|
2626 |
-
#: admin/templates/form/login_customize.php:26 admin/templates/form/profile_customize.php:38
|
2627 |
-
#: admin/templates/form/register_customize.php:38
|
2628 |
-
msgid "Max. Width (px)"
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:46
|
2632 |
-
#: admin/templates/form/register_customize.php:42
|
2633 |
-
msgid "Alignment"
|
2634 |
-
msgstr ""
|
2635 |
-
|
2636 |
-
#: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:56
|
2637 |
-
#: admin/templates/form/register_customize.php:52
|
2638 |
-
msgid "Field Icons"
|
2639 |
-
msgstr ""
|
2640 |
-
|
2641 |
-
#: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:66
|
2642 |
-
#: admin/templates/form/register_customize.php:62
|
2643 |
-
msgid "Primary Button Text"
|
2644 |
-
msgstr ""
|
2645 |
-
|
2646 |
-
#: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:70
|
2647 |
-
#: admin/templates/form/register_customize.php:66
|
2648 |
-
msgid "Primary Button Color"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:74
|
2652 |
-
#: admin/templates/form/register_customize.php:70
|
2653 |
-
msgid "Primary Button Hover Color"
|
2654 |
-
msgstr ""
|
2655 |
-
|
2656 |
-
#: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:78
|
2657 |
-
#: admin/templates/form/register_customize.php:74
|
2658 |
-
msgid "Primary Button Text Color"
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
#: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:83
|
2662 |
-
#: admin/templates/form/register_customize.php:79
|
2663 |
-
msgid "Show Secondary Button"
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
#: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:91
|
2667 |
-
#: admin/templates/form/register_customize.php:87
|
2668 |
-
msgid "Secondary Button Text"
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
#: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:95
|
2672 |
-
#: admin/templates/form/register_customize.php:91
|
2673 |
-
msgid "Secondary Button Color"
|
2674 |
-
msgstr ""
|
2675 |
-
|
2676 |
-
#: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:99
|
2677 |
-
#: admin/templates/form/register_customize.php:95
|
2678 |
-
msgid "Secondary Button Hover Color"
|
2679 |
-
msgstr ""
|
2680 |
-
|
2681 |
-
#: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:103
|
2682 |
-
#: admin/templates/form/register_customize.php:99
|
2683 |
-
msgid "Secondary Button Text Color"
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#: admin/templates/form/login_customize.php:92
|
2687 |
-
msgid "Show Forgot Password Link?"
|
2688 |
-
msgstr ""
|
2689 |
-
|
2690 |
-
#: admin/templates/form/login_settings.php:3
|
2691 |
-
msgid "Redirection after Login"
|
2692 |
-
msgstr ""
|
2693 |
-
|
2694 |
-
#: admin/templates/form/login_settings.php:16 admin/templates/role/delete.php:18
|
2695 |
-
#: admin/templates/role/login.php:20 admin/templates/role/logout.php:18 admin/templates/role/register.php:37
|
2696 |
-
#: admin/templates/role/register.php:75 admin/templates/role/register.php:113
|
2697 |
-
msgid "Set Custom Redirect URL"
|
2698 |
-
msgstr ""
|
2699 |
-
|
2700 |
-
#: admin/templates/form/mode.php:6
|
2701 |
-
msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
|
2702 |
-
msgstr ""
|
2703 |
-
|
2704 |
-
#: admin/templates/form/mode.php:9 um-config.php:1397
|
2705 |
-
msgid "Registration Form"
|
2706 |
-
msgstr ""
|
2707 |
-
|
2708 |
-
#: admin/templates/form/mode.php:11
|
2709 |
-
msgid "Profile Form"
|
2710 |
-
msgstr ""
|
2711 |
-
|
2712 |
-
#: admin/templates/form/mode.php:13 um-config.php:1488
|
2713 |
-
msgid "Login Form"
|
2714 |
-
msgstr ""
|
2715 |
-
|
2716 |
-
#: admin/templates/form/profile_customize.php:14
|
2717 |
-
msgid "Make this profile role-specific"
|
2718 |
-
msgstr ""
|
2719 |
-
|
2720 |
-
#: admin/templates/form/profile_customize.php:42
|
2721 |
-
msgid "Profile Area Max. Width (px)"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: admin/templates/form/profile_customize.php:107
|
2725 |
-
msgid "Base Background Color"
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: admin/templates/form/profile_customize.php:111
|
2729 |
-
msgid "Enable Cover Photos"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: admin/templates/form/profile_customize.php:119
|
2733 |
-
msgid "Cover photo ratio"
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: admin/templates/form/profile_customize.php:129 um-config.php:1195
|
2737 |
-
msgid "Profile Photo Size"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: admin/templates/form/profile_customize.php:133 um-config.php:1204
|
2741 |
-
msgid "Profile Photo Style"
|
2742 |
-
msgstr ""
|
2743 |
-
|
2744 |
-
#: admin/templates/form/profile_customize.php:136 um-config.php:1208
|
2745 |
-
msgid "Circle"
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#: admin/templates/form/profile_customize.php:137 um-config.php:1209
|
2749 |
-
msgid "Rounded Corners"
|
2750 |
-
msgstr ""
|
2751 |
-
|
2752 |
-
#: admin/templates/form/profile_customize.php:138 um-config.php:1210
|
2753 |
-
msgid "Square"
|
2754 |
-
msgstr ""
|
2755 |
-
|
2756 |
-
#: admin/templates/form/profile_customize.php:143
|
2757 |
-
msgid "Header Background Color"
|
2758 |
-
msgstr ""
|
2759 |
-
|
2760 |
-
#: admin/templates/form/profile_customize.php:147
|
2761 |
-
msgid "Header Meta Text Color"
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: admin/templates/form/profile_customize.php:151
|
2765 |
-
msgid "Header Link Color"
|
2766 |
-
msgstr ""
|
2767 |
-
|
2768 |
-
#: admin/templates/form/profile_customize.php:155
|
2769 |
-
msgid "Header Link Hover"
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: admin/templates/form/profile_customize.php:159
|
2773 |
-
msgid "Header Icon Link Color"
|
2774 |
-
msgstr ""
|
2775 |
-
|
2776 |
-
#: admin/templates/form/profile_customize.php:163
|
2777 |
-
msgid "Header Icon Link Hover"
|
2778 |
-
msgstr ""
|
2779 |
-
|
2780 |
-
#: admin/templates/form/profile_customize.php:168
|
2781 |
-
msgid "Show display name in profile header?"
|
2782 |
-
msgstr ""
|
2783 |
-
|
2784 |
-
#: admin/templates/form/profile_customize.php:177
|
2785 |
-
msgid "Show user description in profile header?"
|
2786 |
-
msgstr ""
|
2787 |
-
|
2788 |
-
#: admin/templates/form/profile_settings.php:4
|
2789 |
-
msgid "Field(s) to show in user meta"
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: admin/templates/form/register_customize.php:4
|
2793 |
-
msgid "Switch to no if you want to customize this form settings, styling & appearance"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: admin/templates/form/register_customize.php:14
|
2797 |
-
msgid "Assign role to form"
|
2798 |
-
msgstr ""
|
2799 |
-
|
2800 |
-
#: admin/templates/form/register_customize.php:42 um-config.php:1097 um-config.php:1423 um-config.php:1514
|
2801 |
-
msgid "The shortcode is centered by default unless you specify otherwise here"
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: admin/templates/form/register_customize.php:52
|
2805 |
-
msgid "Whether to show field icons and where to show them relative to the field"
|
2806 |
-
msgstr ""
|
2807 |
-
|
2808 |
-
#: admin/templates/form/register_customize.php:62 admin/templates/form/register_customize.php:87
|
2809 |
-
msgid "Customize the button text"
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#: admin/templates/form/register_customize.php:66
|
2813 |
-
msgid "Override the default primary button color"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: admin/templates/form/register_customize.php:70
|
2817 |
-
msgid "Override the default primary button hover color"
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: admin/templates/form/register_customize.php:74
|
2821 |
-
msgid "Override the default primary button text color"
|
2822 |
-
msgstr ""
|
2823 |
-
|
2824 |
-
#: admin/templates/form/register_customize.php:91
|
2825 |
-
msgid "Override the default secondary button color"
|
2826 |
-
msgstr ""
|
2827 |
-
|
2828 |
-
#: admin/templates/form/register_customize.php:95
|
2829 |
-
msgid "Override the default secondary button hover color"
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: admin/templates/form/register_customize.php:99
|
2833 |
-
msgid "Override the default secondary button text color"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: admin/templates/modal/dynamic_edit_field.php:6
|
2837 |
-
msgid "Edit Field"
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: admin/templates/modal/dynamic_edit_field.php:14 admin/templates/modal/dynamic_edit_row.php:14
|
2841 |
-
msgid "Update"
|
2842 |
-
msgstr ""
|
2843 |
-
|
2844 |
-
#: admin/templates/modal/dynamic_edit_field.php:15 admin/templates/modal/dynamic_edit_row.php:15
|
2845 |
-
#: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
|
2846 |
-
#: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:169
|
2847 |
-
#: core/um-actions-profile.php:268 core/um-actions-profile.php:278 core/um-actions-profile.php:403
|
2848 |
-
#: core/um-fields.php:1198 core/um-fields.php:1283
|
2849 |
-
msgid "Cancel"
|
2850 |
-
msgstr ""
|
2851 |
-
|
2852 |
-
#: admin/templates/modal/dynamic_edit_row.php:6
|
2853 |
-
msgid "Edit Row Settings"
|
2854 |
-
msgstr ""
|
2855 |
-
|
2856 |
-
#: admin/templates/modal/dynamic_form_preview.php:4
|
2857 |
-
msgid "Live Form Preview"
|
2858 |
-
msgstr ""
|
2859 |
-
|
2860 |
-
#: admin/templates/modal/dynamic_form_preview.php:12
|
2861 |
-
msgid "Continue editing"
|
2862 |
-
msgstr ""
|
2863 |
-
|
2864 |
-
#: admin/templates/modal/dynamic_new_divider.php:6
|
2865 |
-
msgid "Add a New Divider"
|
2866 |
-
msgstr ""
|
2867 |
-
|
2868 |
-
#: admin/templates/modal/dynamic_new_divider.php:14 admin/templates/modal/dynamic_new_field.php:14
|
2869 |
-
#: admin/templates/modal/dynamic_new_group.php:14
|
2870 |
-
msgid "Add"
|
2871 |
-
msgstr ""
|
2872 |
-
|
2873 |
-
#: admin/templates/modal/dynamic_new_field.php:6
|
2874 |
-
msgid "Add a New Field"
|
2875 |
-
msgstr ""
|
2876 |
-
|
2877 |
-
#: admin/templates/modal/dynamic_new_group.php:6
|
2878 |
-
msgid "Add a New Field Group"
|
2879 |
-
msgstr ""
|
2880 |
-
|
2881 |
-
#: admin/templates/modal/dynamic_registration_preview.php:4
|
2882 |
-
msgid "Review Registration Details"
|
2883 |
-
msgstr ""
|
2884 |
-
|
2885 |
-
#: admin/templates/modal/fields.php:4
|
2886 |
-
msgid "Fields Manager"
|
2887 |
-
msgstr ""
|
2888 |
-
|
2889 |
-
#: admin/templates/modal/fonticons.php:4
|
2890 |
-
#, php-format
|
2891 |
-
msgid "Choose from %s available icons"
|
2892 |
-
msgstr ""
|
2893 |
-
|
2894 |
-
#: admin/templates/role/admin.php:7 admin/templates/role/admin.php:16
|
2895 |
-
msgid "Can access wp-admin?"
|
2896 |
-
msgstr ""
|
2897 |
-
|
2898 |
-
#: admin/templates/role/admin.php:7
|
2899 |
-
msgid "The core admin role must always have access to wp-admin / WordPress backend"
|
2900 |
-
msgstr ""
|
2901 |
-
|
2902 |
-
#: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
|
2903 |
-
msgid "Force hiding adminbar in frontend?"
|
2904 |
-
msgstr ""
|
2905 |
-
|
2906 |
-
#: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
|
2907 |
-
msgid "Show/hide the adminbar on frontend"
|
2908 |
-
msgstr ""
|
2909 |
-
|
2910 |
-
#: admin/templates/role/admin.php:16
|
2911 |
-
msgid ""
|
2912 |
-
"Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the "
|
2913 |
-
"page."
|
2914 |
-
msgstr ""
|
2915 |
-
|
2916 |
-
#: admin/templates/role/admin.php:26
|
2917 |
-
msgid "Can edit other member accounts?"
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
#: admin/templates/role/admin.php:26
|
2921 |
-
msgid "Allow this role to edit accounts of other members"
|
2922 |
-
msgstr ""
|
2923 |
-
|
2924 |
-
#: admin/templates/role/admin.php:31
|
2925 |
-
msgid "Can edit these user roles only"
|
2926 |
-
msgstr ""
|
2927 |
-
|
2928 |
-
#: admin/templates/role/admin.php:31
|
2929 |
-
msgid "Which roles that role can edit, choose none to allow role to edit all member roles"
|
2930 |
-
msgstr ""
|
2931 |
-
|
2932 |
-
#: admin/templates/role/admin.php:44
|
2933 |
-
msgid "Can delete other member accounts?"
|
2934 |
-
msgstr ""
|
2935 |
-
|
2936 |
-
#: admin/templates/role/admin.php:44
|
2937 |
-
msgid "Allow this role to edit the profile fields of certain roles only"
|
2938 |
-
msgstr ""
|
2939 |
-
|
2940 |
-
#: admin/templates/role/admin.php:49
|
2941 |
-
msgid "Can delete these user roles only"
|
2942 |
-
msgstr ""
|
2943 |
-
|
2944 |
-
#: admin/templates/role/admin.php:49
|
2945 |
-
msgid "Which roles that role can delete, choose none to allow role to delete all member roles"
|
2946 |
-
msgstr ""
|
2947 |
-
|
2948 |
-
#: admin/templates/role/delete.php:6
|
2949 |
-
msgid "Action to be taken after account is deleted"
|
2950 |
-
msgstr ""
|
2951 |
-
|
2952 |
-
#: admin/templates/role/delete.php:6
|
2953 |
-
msgid "Select what happens when a user with this role deletes their own account"
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: admin/templates/role/delete.php:10 admin/templates/role/logout.php:10
|
2957 |
-
msgid "Go to Homepage"
|
2958 |
-
msgstr ""
|
2959 |
-
|
2960 |
-
#: admin/templates/role/delete.php:11 admin/templates/role/logout.php:11
|
2961 |
-
msgid "Go to Custom URL"
|
2962 |
-
msgstr ""
|
2963 |
-
|
2964 |
-
#: admin/templates/role/delete.php:18
|
2965 |
-
msgid "Set a url to redirect this user role to after they delete account"
|
2966 |
-
msgstr ""
|
2967 |
-
|
2968 |
-
#: admin/templates/role/general.php:6
|
2969 |
-
msgid "Can edit their profile?"
|
2970 |
-
msgstr ""
|
2971 |
-
|
2972 |
-
#: admin/templates/role/general.php:6
|
2973 |
-
msgid "Can this role edit his own profile?"
|
2974 |
-
msgstr ""
|
2975 |
-
|
2976 |
-
#: admin/templates/role/general.php:11
|
2977 |
-
msgid "Can delete their account?"
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: admin/templates/role/general.php:11
|
2981 |
-
msgid "Allow this role to delete their account and end their membership on your site"
|
2982 |
-
msgstr ""
|
2983 |
-
|
2984 |
-
#: admin/templates/role/home.php:6
|
2985 |
-
msgid "Can view default homepage?"
|
2986 |
-
msgstr ""
|
2987 |
-
|
2988 |
-
#: admin/templates/role/home.php:6
|
2989 |
-
msgid "Allow this user role to view your site's homepage"
|
2990 |
-
msgstr ""
|
2991 |
-
|
2992 |
-
#: admin/templates/role/home.php:15
|
2993 |
-
msgid "Custom Homepage Redirect"
|
2994 |
-
msgstr ""
|
2995 |
-
|
2996 |
-
#: admin/templates/role/home.php:15
|
2997 |
-
msgid "Set a url to redirect this user role to if they try to view your site's homepage "
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: admin/templates/role/login.php:6
|
3001 |
-
msgid "Action to be taken after login"
|
3002 |
-
msgstr ""
|
3003 |
-
|
3004 |
-
#: admin/templates/role/login.php:6
|
3005 |
-
msgid "Select what happens when a user with this role logins to your site"
|
3006 |
-
msgstr ""
|
3007 |
-
|
3008 |
-
#: admin/templates/role/login.php:10 admin/templates/role/register.php:29
|
3009 |
-
msgid "Redirect to profile"
|
3010 |
-
msgstr ""
|
3011 |
-
|
3012 |
-
#: admin/templates/role/login.php:11 admin/templates/role/register.php:30 admin/templates/role/register.php:59
|
3013 |
-
#: admin/templates/role/register.php:97
|
3014 |
-
msgid "Redirect to URL"
|
3015 |
-
msgstr ""
|
3016 |
-
|
3017 |
-
#: admin/templates/role/login.php:12
|
3018 |
-
msgid "Refresh active page"
|
3019 |
-
msgstr ""
|
3020 |
-
|
3021 |
-
#: admin/templates/role/login.php:13
|
3022 |
-
msgid "Redirect to WordPress Admin"
|
3023 |
-
msgstr ""
|
3024 |
-
|
3025 |
-
#: admin/templates/role/login.php:20
|
3026 |
-
msgid "Set a url to redirect this user role to after they login with their account"
|
3027 |
-
msgstr ""
|
3028 |
-
|
3029 |
-
#: admin/templates/role/logout.php:6
|
3030 |
-
msgid "Action to be taken after logout"
|
3031 |
-
msgstr ""
|
3032 |
-
|
3033 |
-
#: admin/templates/role/logout.php:6
|
3034 |
-
msgid "Select what happens when a user with this role logouts of your site"
|
3035 |
-
msgstr ""
|
3036 |
-
|
3037 |
-
#: admin/templates/role/logout.php:18
|
3038 |
-
msgid "Set a url to redirect this user role to after they logout from site"
|
3039 |
-
msgstr ""
|
3040 |
-
|
3041 |
-
#: admin/templates/role/profile.php:6
|
3042 |
-
msgid "Can view other member profiles?"
|
3043 |
-
msgstr ""
|
3044 |
-
|
3045 |
-
#: admin/templates/role/profile.php:6
|
3046 |
-
msgid "Can this role view all member profiles?"
|
3047 |
-
msgstr ""
|
3048 |
-
|
3049 |
-
#: admin/templates/role/profile.php:11
|
3050 |
-
msgid "Can view these user roles only"
|
3051 |
-
msgstr ""
|
3052 |
-
|
3053 |
-
#: admin/templates/role/profile.php:11
|
3054 |
-
msgid "Which roles that role can view, choose none to allow role to view all member roles"
|
3055 |
-
msgstr ""
|
3056 |
-
|
3057 |
-
#: admin/templates/role/profile.php:24
|
3058 |
-
msgid "Can make their profile private?"
|
3059 |
-
msgstr ""
|
3060 |
-
|
3061 |
-
#: admin/templates/role/profile.php:24
|
3062 |
-
msgid "Can this role make their profile private?"
|
3063 |
-
msgstr ""
|
3064 |
-
|
3065 |
-
#: admin/templates/role/profile.php:29
|
3066 |
-
msgid "Can view/access private profiles?"
|
3067 |
-
msgstr ""
|
3068 |
-
|
3069 |
-
#: admin/templates/role/profile.php:29
|
3070 |
-
msgid "Can this role view private profiles?"
|
3071 |
-
msgstr ""
|
3072 |
-
|
3073 |
-
#: admin/templates/role/register.php:6
|
3074 |
-
msgid "Registration Status"
|
3075 |
-
msgstr ""
|
3076 |
-
|
3077 |
-
#: admin/templates/role/register.php:6
|
3078 |
-
msgid "Select the status you would like this user role to have after they register on your site"
|
3079 |
-
msgstr ""
|
3080 |
-
|
3081 |
-
#: admin/templates/role/register.php:13
|
3082 |
-
msgid "Auto Approve"
|
3083 |
-
msgstr ""
|
3084 |
-
|
3085 |
-
#: admin/templates/role/register.php:14
|
3086 |
-
msgid "Require Email Activation"
|
3087 |
-
msgstr ""
|
3088 |
-
|
3089 |
-
#: admin/templates/role/register.php:15
|
3090 |
-
msgid "Require Admin Review"
|
3091 |
-
msgstr ""
|
3092 |
-
|
3093 |
-
#: admin/templates/role/register.php:25 admin/templates/role/register.php:52
|
3094 |
-
#: admin/templates/role/register.php:90
|
3095 |
-
msgid "Action to be taken after registration"
|
3096 |
-
msgstr ""
|
3097 |
-
|
3098 |
-
#: admin/templates/role/register.php:25 admin/templates/role/register.php:52
|
3099 |
-
#: admin/templates/role/register.php:90
|
3100 |
-
msgid ""
|
3101 |
-
"Select what action is taken after a person registers on your site. Depending on the status you can redirect "
|
3102 |
-
"them to their profile, a custom url or show a custom message"
|
3103 |
-
msgstr ""
|
3104 |
-
|
3105 |
-
#: admin/templates/role/register.php:58 admin/templates/role/register.php:96
|
3106 |
-
msgid "Show custom message"
|
3107 |
-
msgstr ""
|
3108 |
-
|
3109 |
-
#: admin/templates/role/register.php:66 admin/templates/role/register.php:104
|
3110 |
-
msgid "Personalize the custom message"
|
3111 |
-
msgstr ""
|
3112 |
-
|
3113 |
-
#: admin/templates/role/register.php:69
|
3114 |
-
msgid ""
|
3115 |
-
"Thank you for registering. Before you can login we need you to activate your account by clicking the "
|
3116 |
-
"activation link in the email we just sent you."
|
3117 |
-
msgstr ""
|
3118 |
-
|
3119 |
-
#: admin/templates/role/register.php:107
|
3120 |
-
msgid ""
|
3121 |
-
"Thank you for applying for membership to our site. We will review your details and send you an email letting "
|
3122 |
-
"you know whether your application has been successful or not."
|
3123 |
-
msgstr ""
|
3124 |
-
|
3125 |
-
#: admin/um-admin-init.php:36
|
3126 |
-
msgid "Ultimate Member"
|
3127 |
-
msgstr ""
|
3128 |
-
|
3129 |
-
#: admin/um-admin-init.php:38
|
3130 |
-
msgid "Dashboard"
|
3131 |
-
msgstr ""
|
3132 |
-
|
3133 |
-
#: admin/um-admin-init.php:41
|
3134 |
-
#, php-format
|
3135 |
-
msgid "%s | Ultimate Member"
|
3136 |
-
msgstr ""
|
3137 |
-
|
3138 |
-
#: admin/um-admin-init.php:51 core/um-taxonomies.php:18
|
3139 |
-
msgid "Forms"
|
3140 |
-
msgstr ""
|
3141 |
-
|
3142 |
-
#: admin/um-admin-init.php:53 core/um-taxonomies.php:36
|
3143 |
-
msgid "User Roles"
|
3144 |
-
msgstr ""
|
3145 |
-
|
3146 |
-
#: admin/um-admin-init.php:56 core/um-taxonomies.php:56
|
3147 |
-
msgid "Member Directories"
|
3148 |
-
msgstr ""
|
3149 |
-
|
3150 |
-
#: admin/um-admin-init.php:82
|
3151 |
-
msgid "Please create a team.php template in admin templates."
|
3152 |
-
msgstr ""
|
3153 |
-
|
3154 |
-
#: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
|
3155 |
-
#: core/um-actions-account.php:294 core/um-builtin.php:818 core/um-builtin.php:821
|
3156 |
-
msgid "Delete Account"
|
3157 |
-
msgstr ""
|
3158 |
-
|
3159 |
-
#: core/um-actions-account.php:82 core/um-actions-password.php:121
|
3160 |
-
msgid "Your password must contain at least 8 characters"
|
3161 |
-
msgstr ""
|
3162 |
-
|
3163 |
-
#: core/um-actions-account.php:86 core/um-actions-password.php:125
|
3164 |
-
msgid "Your password must contain less than 30 characters"
|
3165 |
-
msgstr ""
|
3166 |
-
|
3167 |
-
#: core/um-actions-account.php:90 core/um-actions-form.php:176 core/um-actions-password.php:129
|
3168 |
-
msgid "Your password must contain at least one lowercase letter, one capital letter and one number"
|
3169 |
-
msgstr ""
|
3170 |
-
|
3171 |
-
#: core/um-actions-account.php:165
|
3172 |
-
msgid "Update Privacy"
|
3173 |
-
msgstr ""
|
3174 |
-
|
3175 |
-
#: core/um-actions-account.php:188
|
3176 |
-
msgid "Update Account"
|
3177 |
-
msgstr ""
|
3178 |
-
|
3179 |
-
#: core/um-actions-account.php:212
|
3180 |
-
msgid "Update Password"
|
3181 |
-
msgstr ""
|
3182 |
-
|
3183 |
-
#: core/um-actions-account.php:282 um-config.php:106
|
3184 |
-
msgid "Account"
|
3185 |
-
msgstr ""
|
3186 |
-
|
3187 |
-
#: core/um-actions-account.php:285
|
3188 |
-
msgid "Change Password"
|
3189 |
-
msgstr ""
|
3190 |
-
|
3191 |
-
#: core/um-actions-account.php:288
|
3192 |
-
msgid "Privacy"
|
3193 |
-
msgstr ""
|
3194 |
-
|
3195 |
-
#: core/um-actions-account.php:291 um-config.php:664
|
3196 |
-
msgid "Notifications"
|
3197 |
-
msgstr ""
|
3198 |
-
|
3199 |
-
#: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
|
3200 |
-
msgid "You can not edit this user"
|
3201 |
-
msgstr ""
|
3202 |
-
|
3203 |
-
#: core/um-actions-ajax.php:73
|
3204 |
-
msgid "Invalid parameters"
|
3205 |
-
msgstr ""
|
3206 |
-
|
3207 |
-
#: core/um-actions-ajax.php:76
|
3208 |
-
msgid "Invalid coordinates"
|
3209 |
-
msgstr ""
|
3210 |
-
|
3211 |
-
#: core/um-actions-ajax.php:79
|
3212 |
-
msgid "Invalid Image file"
|
3213 |
-
msgstr ""
|
3214 |
-
|
3215 |
-
#: core/um-actions-core.php:65
|
3216 |
-
msgid "You do not have permission to delete this user."
|
3217 |
-
msgstr ""
|
3218 |
-
|
3219 |
-
#: core/um-actions-form.php:83
|
3220 |
-
msgid "You are not allowed to use this word as your username."
|
3221 |
-
msgstr ""
|
3222 |
-
|
3223 |
-
#: core/um-actions-form.php:146
|
3224 |
-
#, php-format
|
3225 |
-
msgid "%s is required"
|
3226 |
-
msgstr ""
|
3227 |
-
|
3228 |
-
#: core/um-actions-form.php:152
|
3229 |
-
#, php-format
|
3230 |
-
msgid "You are only allowed to enter a maximum of %s words"
|
3231 |
-
msgstr ""
|
3232 |
-
|
3233 |
-
#: core/um-actions-form.php:158
|
3234 |
-
#, php-format
|
3235 |
-
msgid "Your %s must contain at least %s characters"
|
3236 |
-
msgstr ""
|
3237 |
-
|
3238 |
-
#: core/um-actions-form.php:164
|
3239 |
-
#, php-format
|
3240 |
-
msgid "Your %s must contain less than %s characters"
|
3241 |
-
msgstr ""
|
3242 |
-
|
3243 |
-
#: core/um-actions-form.php:170
|
3244 |
-
msgid "You can not use HTML tags here"
|
3245 |
-
msgstr ""
|
3246 |
-
|
3247 |
-
#: core/um-actions-form.php:182
|
3248 |
-
msgid "Please confirm your password"
|
3249 |
-
msgstr ""
|
3250 |
-
|
3251 |
-
#: core/um-actions-form.php:185
|
3252 |
-
msgid "Your passwords do not match"
|
3253 |
-
msgstr ""
|
3254 |
-
|
3255 |
-
#: core/um-actions-form.php:191
|
3256 |
-
#, php-format
|
3257 |
-
msgid "Please select at least %s choices"
|
3258 |
-
msgstr ""
|
3259 |
-
|
3260 |
-
#: core/um-actions-form.php:197
|
3261 |
-
#, php-format
|
3262 |
-
msgid "You can only select up to %s choices"
|
3263 |
-
msgstr ""
|
3264 |
-
|
3265 |
-
#: core/um-actions-form.php:207
|
3266 |
-
msgid "Please enter a valid phone number"
|
3267 |
-
msgstr ""
|
3268 |
-
|
3269 |
-
#: core/um-actions-form.php:213 core/um-actions-form.php:219 core/um-actions-form.php:225
|
3270 |
-
#: core/um-actions-form.php:231 core/um-actions-form.php:237 core/um-actions-form.php:243
|
3271 |
-
#, php-format
|
3272 |
-
msgid "Please enter a valid %s username or profile URL"
|
3273 |
-
msgstr ""
|
3274 |
-
|
3275 |
-
#: core/um-actions-form.php:250 core/um-actions-form.php:264
|
3276 |
-
msgid "You must provide a username"
|
3277 |
-
msgstr ""
|
3278 |
-
|
3279 |
-
#: core/um-actions-form.php:252 core/um-actions-form.php:266
|
3280 |
-
msgid "Your username is already taken"
|
3281 |
-
msgstr ""
|
3282 |
-
|
3283 |
-
#: core/um-actions-form.php:254
|
3284 |
-
msgid "Username cannot be an email"
|
3285 |
-
msgstr ""
|
3286 |
-
|
3287 |
-
#: core/um-actions-form.php:256 core/um-actions-form.php:270
|
3288 |
-
msgid "Your username contains invalid characters"
|
3289 |
-
msgstr ""
|
3290 |
-
|
3291 |
-
#: core/um-actions-form.php:268 core/um-actions-form.php:280
|
3292 |
-
msgid "This email is already linked to an existing account"
|
3293 |
-
msgstr ""
|
3294 |
-
|
3295 |
-
#: core/um-actions-form.php:278
|
3296 |
-
msgid "You must provide your email"
|
3297 |
-
msgstr ""
|
3298 |
-
|
3299 |
-
#: core/um-actions-form.php:282
|
3300 |
-
msgid "This is not a valid email"
|
3301 |
-
msgstr ""
|
3302 |
-
|
3303 |
-
#: core/um-actions-form.php:284
|
3304 |
-
msgid "Your email contains invalid characters"
|
3305 |
-
msgstr ""
|
3306 |
-
|
3307 |
-
#: core/um-actions-form.php:298
|
3308 |
-
#, php-format
|
3309 |
-
msgid "Your user description must contain less than %s characters"
|
3310 |
-
msgstr ""
|
3311 |
-
|
3312 |
-
#: core/um-actions-global.php:28
|
3313 |
-
msgid "Only fill in if you are not human"
|
3314 |
-
msgstr ""
|
3315 |
-
|
3316 |
-
#: core/um-actions-login.php:16
|
3317 |
-
msgid "Please enter your username or email"
|
3318 |
-
msgstr ""
|
3319 |
-
|
3320 |
-
#: core/um-actions-login.php:20
|
3321 |
-
msgid "Please enter your username"
|
3322 |
-
msgstr ""
|
3323 |
-
|
3324 |
-
#: core/um-actions-login.php:24
|
3325 |
-
msgid "Please enter your email"
|
3326 |
-
msgstr ""
|
3327 |
-
|
3328 |
-
#: core/um-actions-login.php:48
|
3329 |
-
msgid " Sorry, we can't find an account with that email address"
|
3330 |
-
msgstr ""
|
3331 |
-
|
3332 |
-
#: core/um-actions-login.php:50
|
3333 |
-
msgid " Sorry, we can't find an account with that username"
|
3334 |
-
msgstr ""
|
3335 |
-
|
3336 |
-
#: core/um-actions-login.php:54
|
3337 |
-
msgid "Please enter your password"
|
3338 |
-
msgstr ""
|
3339 |
-
|
3340 |
-
#: core/um-actions-login.php:69
|
3341 |
-
msgid "Password is incorrect. Please try again."
|
3342 |
-
msgstr ""
|
3343 |
-
|
3344 |
-
#: core/um-actions-login.php:207
|
3345 |
-
msgid "Forgot your password?"
|
3346 |
-
msgstr ""
|
3347 |
-
|
3348 |
-
#: core/um-actions-members.php:60
|
3349 |
-
msgid "Search"
|
3350 |
-
msgstr ""
|
3351 |
-
|
3352 |
-
#: core/um-actions-members.php:60
|
3353 |
-
msgid "Reset"
|
3354 |
-
msgstr ""
|
3355 |
-
|
3356 |
-
#: core/um-actions-members.php:119
|
3357 |
-
msgid "Jump to page:"
|
3358 |
-
msgstr ""
|
3359 |
-
|
3360 |
-
#: core/um-actions-members.php:123
|
3361 |
-
#, php-format
|
3362 |
-
msgid "%s of %d"
|
3363 |
-
msgstr ""
|
3364 |
-
|
3365 |
-
#: core/um-actions-members.php:132
|
3366 |
-
msgid "First Page"
|
3367 |
-
msgstr ""
|
3368 |
-
|
3369 |
-
#: core/um-actions-members.php:138
|
3370 |
-
msgid "Previous"
|
3371 |
-
msgstr ""
|
3372 |
-
|
3373 |
-
#: core/um-actions-members.php:156
|
3374 |
-
msgid "Next"
|
3375 |
-
msgstr ""
|
3376 |
-
|
3377 |
-
#: core/um-actions-members.php:162
|
3378 |
-
msgid "Last Page"
|
3379 |
-
msgstr ""
|
3380 |
-
|
3381 |
-
#: core/um-actions-misc.php:58 core/um-actions-misc.php:85
|
3382 |
-
msgid "Registration is currently disabled"
|
3383 |
-
msgstr ""
|
3384 |
-
|
3385 |
-
#: core/um-actions-misc.php:65
|
3386 |
-
msgid "You have successfully changed your password."
|
3387 |
-
msgstr ""
|
3388 |
-
|
3389 |
-
#: core/um-actions-misc.php:69
|
3390 |
-
msgid "Your account is now active! You can login."
|
3391 |
-
msgstr ""
|
3392 |
-
|
3393 |
-
#: core/um-actions-misc.php:81
|
3394 |
-
msgid "An error has been encountered"
|
3395 |
-
msgstr ""
|
3396 |
-
|
3397 |
-
#: core/um-actions-misc.php:89 core/um-filters-login.php:33
|
3398 |
-
msgid "This email address has been blocked."
|
3399 |
-
msgstr ""
|
3400 |
-
|
3401 |
-
#: core/um-actions-misc.php:93 core/um-filters-login.php:36
|
3402 |
-
msgid "Your IP address has been blocked."
|
3403 |
-
msgstr ""
|
3404 |
-
|
3405 |
-
#: core/um-actions-misc.php:97 core/um-filters-login.php:78
|
3406 |
-
msgid "Your account has been disabled."
|
3407 |
-
msgstr ""
|
3408 |
-
|
3409 |
-
#: core/um-actions-misc.php:101 core/um-filters-login.php:81
|
3410 |
-
msgid "Your account has not been approved yet."
|
3411 |
-
msgstr ""
|
3412 |
-
|
3413 |
-
#: core/um-actions-misc.php:105 core/um-filters-login.php:84
|
3414 |
-
msgid "Your account is awaiting e-mail verifications."
|
3415 |
-
msgstr ""
|
3416 |
-
|
3417 |
-
#: core/um-actions-misc.php:109 core/um-filters-login.php:87
|
3418 |
-
msgid "Your membership request has been rejected."
|
3419 |
-
msgstr ""
|
3420 |
-
|
3421 |
-
#: core/um-actions-password.php:80 core/um-actions-password.php:111 core/um-form.php:80
|
3422 |
-
msgid "Hello, spam bot!"
|
3423 |
-
msgstr ""
|
3424 |
-
|
3425 |
-
#: core/um-actions-password.php:83 core/um-actions-password.php:114 core/um-form.php:83
|
3426 |
-
msgid ""
|
3427 |
-
"Whoa, slow down! You're seeing this message because you tried to submit a form too fast and we think you "
|
3428 |
-
"might be a spam bot. If you are a real human being please wait a few seconds before submitting the form. "
|
3429 |
-
"Thanks!"
|
3430 |
-
msgstr ""
|
3431 |
-
|
3432 |
-
#: core/um-actions-password.php:86
|
3433 |
-
msgid "Please provide your username or email"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: core/um-actions-password.php:92
|
3437 |
-
msgid " We can't find an account registered with that address or username "
|
3438 |
-
msgstr ""
|
3439 |
-
|
3440 |
-
#: core/um-actions-password.php:189
|
3441 |
-
msgid "Reset my password"
|
3442 |
-
msgstr ""
|
3443 |
-
|
3444 |
-
#: core/um-actions-password.php:216
|
3445 |
-
msgid "Change my password"
|
3446 |
-
msgstr ""
|
3447 |
-
|
3448 |
-
#: core/um-actions-profile.php:40
|
3449 |
-
msgid "You are not allowed to edit this user."
|
3450 |
-
msgstr ""
|
3451 |
-
|
3452 |
-
#: core/um-actions-profile.php:153 core/um-builtin.php:756
|
3453 |
-
msgid "Change your cover photo"
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: core/um-actions-profile.php:167
|
3457 |
-
msgid "Change cover photo"
|
3458 |
-
msgstr ""
|
3459 |
-
|
3460 |
-
#: core/um-actions-profile.php:209
|
3461 |
-
msgid "Upload a cover photo"
|
3462 |
-
msgstr ""
|
3463 |
-
|
3464 |
-
#: core/um-actions-profile.php:267
|
3465 |
-
msgid "Upload photo"
|
3466 |
-
msgstr ""
|
3467 |
-
|
3468 |
-
#: core/um-actions-profile.php:276 core/um-fields.php:1164 core/um-fields.php:1197
|
3469 |
-
msgid "Change photo"
|
3470 |
-
msgstr ""
|
3471 |
-
|
3472 |
-
#: core/um-actions-profile.php:277
|
3473 |
-
msgid "Remove photo"
|
3474 |
-
msgstr ""
|
3475 |
-
|
3476 |
-
#: core/um-actions-profile.php:315
|
3477 |
-
msgid "Tell us a bit about yourself..."
|
3478 |
-
msgstr ""
|
3479 |
-
|
3480 |
-
#: core/um-actions-profile.php:325
|
3481 |
-
#, php-format
|
3482 |
-
msgid "This user account status is %s"
|
3483 |
-
msgstr ""
|
3484 |
-
|
3485 |
-
#: core/um-actions-profile.php:400
|
3486 |
-
msgid "Edit Profile"
|
3487 |
-
msgstr ""
|
3488 |
-
|
3489 |
-
#: core/um-actions-profile.php:401
|
3490 |
-
msgid "My Account"
|
3491 |
-
msgstr ""
|
3492 |
-
|
3493 |
-
#: core/um-actions-profile.php:402
|
3494 |
-
msgid "Logout"
|
3495 |
-
msgstr ""
|
3496 |
-
|
3497 |
-
#: core/um-builtin.php:458 core/um-builtin.php:461 core/um-builtin.php:774
|
3498 |
-
msgid "Username or E-mail"
|
3499 |
-
msgstr ""
|
3500 |
-
|
3501 |
-
#: core/um-builtin.php:483 core/um-builtin.php:486
|
3502 |
-
msgid "First Name"
|
3503 |
-
msgstr ""
|
3504 |
-
|
3505 |
-
#: core/um-builtin.php:493 core/um-builtin.php:496
|
3506 |
-
msgid "Last Name"
|
3507 |
-
msgstr ""
|
3508 |
-
|
3509 |
-
#: core/um-builtin.php:503 core/um-builtin.php:506
|
3510 |
-
msgid "Display Name"
|
3511 |
-
msgstr ""
|
3512 |
-
|
3513 |
-
#: core/um-builtin.php:513 core/um-builtin.php:516
|
3514 |
-
msgid "E-mail Address"
|
3515 |
-
msgstr ""
|
3516 |
-
|
3517 |
-
#: core/um-builtin.php:524 core/um-builtin.php:527
|
3518 |
-
msgid "Biography"
|
3519 |
-
msgstr ""
|
3520 |
-
|
3521 |
-
#: core/um-builtin.php:537 core/um-builtin.php:540
|
3522 |
-
msgid "Birth Date"
|
3523 |
-
msgstr ""
|
3524 |
-
|
3525 |
-
#: core/um-builtin.php:551 core/um-builtin.php:554
|
3526 |
-
msgid "Gender"
|
3527 |
-
msgstr ""
|
3528 |
-
|
3529 |
-
#: core/um-builtin.php:562
|
3530 |
-
msgid "Countries"
|
3531 |
-
msgstr ""
|
3532 |
-
|
3533 |
-
#: core/um-builtin.php:565
|
3534 |
-
msgid "Country"
|
3535 |
-
msgstr ""
|
3536 |
-
|
3537 |
-
#: core/um-builtin.php:574 core/um-builtin.php:577
|
3538 |
-
msgid "Facebook"
|
3539 |
-
msgstr ""
|
3540 |
-
|
3541 |
-
#: core/um-builtin.php:592 core/um-builtin.php:595
|
3542 |
-
msgid "Twitter"
|
3543 |
-
msgstr ""
|
3544 |
-
|
3545 |
-
#: core/um-builtin.php:610 core/um-builtin.php:613
|
3546 |
-
msgid "LinkedIn"
|
3547 |
-
msgstr ""
|
3548 |
-
|
3549 |
-
#: core/um-builtin.php:628 core/um-builtin.php:631
|
3550 |
-
msgid "Google+"
|
3551 |
-
msgstr ""
|
3552 |
-
|
3553 |
-
#: core/um-builtin.php:646 core/um-builtin.php:649
|
3554 |
-
msgid "Instagram"
|
3555 |
-
msgstr ""
|
3556 |
-
|
3557 |
-
#: core/um-builtin.php:664 core/um-builtin.php:667
|
3558 |
-
msgid "Skype ID"
|
3559 |
-
msgstr ""
|
3560 |
-
|
3561 |
-
#: core/um-builtin.php:679
|
3562 |
-
msgid "Roles (Dropdown)"
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: core/um-builtin.php:682 core/um-builtin.php:694
|
3566 |
-
msgid "Account Type"
|
3567 |
-
msgstr ""
|
3568 |
-
|
3569 |
-
#: core/um-builtin.php:691
|
3570 |
-
msgid "Roles (Radio)"
|
3571 |
-
msgstr ""
|
3572 |
-
|
3573 |
-
#: core/um-builtin.php:702
|
3574 |
-
msgid "Languages"
|
3575 |
-
msgstr ""
|
3576 |
-
|
3577 |
-
#: core/um-builtin.php:705
|
3578 |
-
msgid "Languages Spoken"
|
3579 |
-
msgstr ""
|
3580 |
-
|
3581 |
-
#: core/um-builtin.php:706
|
3582 |
-
msgid "Select languages"
|
3583 |
-
msgstr ""
|
3584 |
-
|
3585 |
-
#: core/um-builtin.php:714 core/um-builtin.php:717
|
3586 |
-
msgid "Phone Number"
|
3587 |
-
msgstr ""
|
3588 |
-
|
3589 |
-
#: core/um-builtin.php:726 core/um-builtin.php:729
|
3590 |
-
msgid "Mobile Number"
|
3591 |
-
msgstr ""
|
3592 |
-
|
3593 |
-
#: core/um-builtin.php:740
|
3594 |
-
msgid "Profile Photo"
|
3595 |
-
msgstr ""
|
3596 |
-
|
3597 |
-
#: core/um-builtin.php:743
|
3598 |
-
msgid "Change your profile photo"
|
3599 |
-
msgstr ""
|
3600 |
-
|
3601 |
-
#: core/um-builtin.php:744
|
3602 |
-
msgid "Upload your photo here"
|
3603 |
-
msgstr ""
|
3604 |
-
|
3605 |
-
#: core/um-builtin.php:753
|
3606 |
-
msgid "Cover Photo"
|
3607 |
-
msgstr ""
|
3608 |
-
|
3609 |
-
#: core/um-builtin.php:757
|
3610 |
-
msgid "Upload profile cover here"
|
3611 |
-
msgstr ""
|
3612 |
-
|
3613 |
-
#: core/um-builtin.php:767
|
3614 |
-
msgid "Password Reset"
|
3615 |
-
msgstr ""
|
3616 |
-
|
3617 |
-
#: core/um-builtin.php:769
|
3618 |
-
msgid "To reset your password, please enter your email address or username below"
|
3619 |
-
msgstr ""
|
3620 |
-
|
3621 |
-
#: core/um-builtin.php:777
|
3622 |
-
msgid "Enter your username or email"
|
3623 |
-
msgstr ""
|
3624 |
-
|
3625 |
-
#: core/um-builtin.php:787 core/um-builtin.php:790
|
3626 |
-
msgid "Profile Privacy"
|
3627 |
-
msgstr ""
|
3628 |
-
|
3629 |
-
#: core/um-builtin.php:791
|
3630 |
-
msgid "Who can see your public profile?"
|
3631 |
-
msgstr ""
|
3632 |
-
|
3633 |
-
#: core/um-builtin.php:795 core/um-builtin.php:796
|
3634 |
-
msgid "Everyone"
|
3635 |
-
msgstr ""
|
3636 |
-
|
3637 |
-
#: core/um-builtin.php:796 core/um-user.php:407
|
3638 |
-
msgid "Only me"
|
3639 |
-
msgstr ""
|
3640 |
-
|
3641 |
-
#: core/um-builtin.php:803 core/um-builtin.php:806
|
3642 |
-
msgid "Hide my profile from directory"
|
3643 |
-
msgstr ""
|
3644 |
-
|
3645 |
-
#: core/um-builtin.php:807
|
3646 |
-
msgid "Here you can hide yourself from appearing in public directory"
|
3647 |
-
msgstr ""
|
3648 |
-
|
3649 |
-
#: core/um-builtin.php:822
|
3650 |
-
msgid "If you confirm, everything related to your profile will be deleted permanently from the site"
|
3651 |
-
msgstr ""
|
3652 |
-
|
3653 |
-
#: core/um-cron.php:15
|
3654 |
-
msgid "Once Weekly"
|
3655 |
-
msgstr ""
|
3656 |
-
|
3657 |
-
#: core/um-datetime.php:25
|
3658 |
-
#, php-format
|
3659 |
-
msgid "%s year old"
|
3660 |
-
msgstr ""
|
3661 |
-
|
3662 |
-
#: core/um-datetime.php:27
|
3663 |
-
#, php-format
|
3664 |
-
msgid "%s years old"
|
3665 |
-
msgstr ""
|
3666 |
-
|
3667 |
-
#: core/um-datetime.php:29
|
3668 |
-
msgid "Less than 1 year old"
|
3669 |
-
msgstr ""
|
3670 |
-
|
3671 |
-
#: core/um-fields.php:915
|
3672 |
-
msgid "Current Password"
|
3673 |
-
msgstr ""
|
3674 |
-
|
3675 |
-
#: core/um-fields.php:944
|
3676 |
-
msgid "New Password"
|
3677 |
-
msgstr ""
|
3678 |
-
|
3679 |
-
#: core/um-fields.php:976
|
3680 |
-
#, php-format
|
3681 |
-
msgid "Confirm New %s"
|
3682 |
-
msgstr ""
|
3683 |
-
|
3684 |
-
#: core/um-fields.php:1155 core/um-fields.php:1227
|
3685 |
-
msgid "Upload Photo"
|
3686 |
-
msgstr ""
|
3687 |
-
|
3688 |
-
#: core/um-fields.php:1197 core/um-fields.php:1282
|
3689 |
-
msgid "Processing..."
|
3690 |
-
msgstr ""
|
3691 |
-
|
3692 |
-
#: core/um-fields.php:1243 core/um-fields.php:1282
|
3693 |
-
msgid "Change file"
|
3694 |
-
msgstr ""
|
3695 |
-
|
3696 |
-
#: core/um-fields.php:1282
|
3697 |
-
msgid "Save"
|
3698 |
-
msgstr ""
|
3699 |
-
|
3700 |
-
#: core/um-fields.php:1929
|
3701 |
-
#, php-format
|
3702 |
-
msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
|
3703 |
-
msgstr ""
|
3704 |
-
|
3705 |
-
#: core/um-fields.php:1931
|
3706 |
-
msgid "This user has not added any information to their profile yet."
|
3707 |
-
msgstr ""
|
3708 |
-
|
3709 |
-
#: core/um-files.php:307
|
3710 |
-
msgid "Your image is invalid or too large!"
|
3711 |
-
msgstr ""
|
3712 |
-
|
3713 |
-
#: core/um-files.php:313 core/um-files.php:315
|
3714 |
-
#, php-format
|
3715 |
-
msgid "Your photo is too small. It must be at least %spx wide."
|
3716 |
-
msgstr ""
|
3717 |
-
|
3718 |
-
#: core/um-filters-fields.php:11
|
3719 |
-
msgid "Required"
|
3720 |
-
msgstr ""
|
3721 |
-
|
3722 |
-
#: core/um-filters-fields.php:21
|
3723 |
-
msgid "Age"
|
3724 |
-
msgstr ""
|
3725 |
-
|
3726 |
-
#: core/um-filters-fields.php:97
|
3727 |
-
msgid "This file has been removed."
|
3728 |
-
msgstr ""
|
3729 |
-
|
3730 |
-
#: core/um-filters-fields.php:119
|
3731 |
-
msgid "Untitled photo"
|
3732 |
-
msgstr ""
|
3733 |
-
|
3734 |
-
#: core/um-filters-profile.php:10
|
3735 |
-
msgid "About"
|
3736 |
-
msgstr ""
|
3737 |
-
|
3738 |
-
#: core/um-filters-user.php:11 core/um-filters-user.php:33 core/um-filters-user.php:38
|
3739 |
-
msgid "Approve Membership"
|
3740 |
-
msgstr ""
|
3741 |
-
|
3742 |
-
#: core/um-filters-user.php:12 core/um-filters-user.php:34
|
3743 |
-
msgid "Reject Membership"
|
3744 |
-
msgstr ""
|
3745 |
-
|
3746 |
-
#: core/um-filters-user.php:13 core/um-filters-user.php:42
|
3747 |
-
msgid "Put as Pending Review"
|
3748 |
-
msgstr ""
|
3749 |
-
|
3750 |
-
#: core/um-filters-user.php:14 core/um-filters-user.php:46
|
3751 |
-
msgid "Resend Activation E-mail"
|
3752 |
-
msgstr ""
|
3753 |
-
|
3754 |
-
#: core/um-filters-user.php:15
|
3755 |
-
msgid "Deactivate"
|
3756 |
-
msgstr ""
|
3757 |
-
|
3758 |
-
#: core/um-filters-user.php:16
|
3759 |
-
msgid "Reactivate"
|
3760 |
-
msgstr ""
|
3761 |
-
|
3762 |
-
#: core/um-filters-user.php:50
|
3763 |
-
msgid "Deactivate this account"
|
3764 |
-
msgstr ""
|
3765 |
-
|
3766 |
-
#: core/um-filters-user.php:54
|
3767 |
-
msgid "Reactivate this account"
|
3768 |
-
msgstr ""
|
3769 |
-
|
3770 |
-
#: core/um-filters-user.php:58
|
3771 |
-
msgid "Delete this user"
|
3772 |
-
msgstr ""
|
3773 |
-
|
3774 |
-
#: core/um-navmenu-walker-edit.php:18
|
3775 |
-
msgid "Display Mode"
|
3776 |
-
msgstr ""
|
3777 |
-
|
3778 |
-
#: core/um-navmenu-walker-edit.php:19
|
3779 |
-
msgid "By Role"
|
3780 |
-
msgstr ""
|
3781 |
-
|
3782 |
-
#: core/um-navmenu-walker-edit.php:78
|
3783 |
-
msgid "Who can see this menu link?"
|
3784 |
-
msgstr ""
|
3785 |
-
|
3786 |
-
#: core/um-navmenu-walker-edit.php:98
|
3787 |
-
msgid "Select the member roles that can see this link"
|
3788 |
-
msgstr ""
|
3789 |
-
|
3790 |
-
#: core/um-password.php:29
|
3791 |
-
msgid "This is not a valid hash, or it has expired."
|
3792 |
-
msgstr ""
|
3793 |
-
|
3794 |
-
#: core/um-setup.php:128 core/um-setup.php:147
|
3795 |
-
msgid "Register"
|
3796 |
-
msgstr ""
|
3797 |
-
|
3798 |
-
#: core/um-setup.php:133 core/um-setup.php:141
|
3799 |
-
msgid "Login"
|
3800 |
-
msgstr ""
|
3801 |
-
|
3802 |
-
#: core/um-taxonomies.php:19
|
3803 |
-
msgid "Form"
|
3804 |
-
msgstr ""
|
3805 |
-
|
3806 |
-
#: core/um-taxonomies.php:20 core/um-taxonomies.php:38 core/um-taxonomies.php:58
|
3807 |
-
msgid "Add New"
|
3808 |
-
msgstr ""
|
3809 |
-
|
3810 |
-
#: core/um-taxonomies.php:21
|
3811 |
-
msgid "Add New Form"
|
3812 |
-
msgstr ""
|
3813 |
-
|
3814 |
-
#: core/um-taxonomies.php:22
|
3815 |
-
msgid "Edit Form"
|
3816 |
-
msgstr ""
|
3817 |
-
|
3818 |
-
#: core/um-taxonomies.php:23
|
3819 |
-
msgid "You did not create any forms yet"
|
3820 |
-
msgstr ""
|
3821 |
-
|
3822 |
-
#: core/um-taxonomies.php:24 core/um-taxonomies.php:42 core/um-taxonomies.php:62
|
3823 |
-
msgid "Nothing found in Trash"
|
3824 |
-
msgstr ""
|
3825 |
-
|
3826 |
-
#: core/um-taxonomies.php:25
|
3827 |
-
msgid "Search Forms"
|
3828 |
-
msgstr ""
|
3829 |
-
|
3830 |
-
#: core/um-taxonomies.php:37
|
3831 |
-
msgid "User Role"
|
3832 |
-
msgstr ""
|
3833 |
-
|
3834 |
-
#: core/um-taxonomies.php:39
|
3835 |
-
msgid "Add New User Role"
|
3836 |
-
msgstr ""
|
3837 |
-
|
3838 |
-
#: core/um-taxonomies.php:40
|
3839 |
-
msgid "Edit User Role"
|
3840 |
-
msgstr ""
|
3841 |
-
|
3842 |
-
#: core/um-taxonomies.php:41
|
3843 |
-
msgid "You did not create any user roles yet"
|
3844 |
-
msgstr ""
|
3845 |
-
|
3846 |
-
#: core/um-taxonomies.php:43
|
3847 |
-
msgid "Search User Roles"
|
3848 |
-
msgstr ""
|
3849 |
-
|
3850 |
-
#: core/um-taxonomies.php:57
|
3851 |
-
msgid "Member Directory"
|
3852 |
-
msgstr ""
|
3853 |
-
|
3854 |
-
#: core/um-taxonomies.php:59
|
3855 |
-
msgid "Add New Member Directory"
|
3856 |
-
msgstr ""
|
3857 |
-
|
3858 |
-
#: core/um-taxonomies.php:60
|
3859 |
-
msgid "Edit Member Directory"
|
3860 |
-
msgstr ""
|
3861 |
-
|
3862 |
-
#: core/um-taxonomies.php:61
|
3863 |
-
msgid "You did not create any member directories yet"
|
3864 |
-
msgstr ""
|
3865 |
-
|
3866 |
-
#: core/um-taxonomies.php:63
|
3867 |
-
msgid "Search Member Directories"
|
3868 |
-
msgstr ""
|
3869 |
-
|
3870 |
-
#: core/um-user-posts.php:65
|
3871 |
-
msgid "Posts"
|
3872 |
-
msgstr ""
|
3873 |
-
|
3874 |
-
#: core/um-user-posts.php:71
|
3875 |
-
msgid "Comments"
|
3876 |
-
msgstr ""
|
3877 |
-
|
3878 |
-
#: index.php:57
|
3879 |
-
msgid "Docs"
|
3880 |
-
msgstr ""
|
3881 |
-
|
3882 |
-
#: index.php:63
|
3883 |
-
msgid "Remove this plugin"
|
3884 |
-
msgstr ""
|
3885 |
-
|
3886 |
-
#: index.php:63
|
3887 |
-
msgid "Uninstall"
|
3888 |
-
msgstr ""
|
3889 |
-
|
3890 |
-
#: templates/profile/comments-single.php:6
|
3891 |
-
#, php-format
|
3892 |
-
msgid "On <a href=\"%1$s\">%2$s</a>"
|
3893 |
-
msgstr ""
|
3894 |
-
|
3895 |
-
#: templates/profile/comments-single.php:15 templates/profile/comments.php:14
|
3896 |
-
msgid "load more comments"
|
3897 |
-
msgstr ""
|
3898 |
-
|
3899 |
-
#: templates/profile/comments.php:23
|
3900 |
-
msgid "You have not made any comments."
|
3901 |
-
msgstr ""
|
3902 |
-
|
3903 |
-
#: templates/profile/comments.php:23
|
3904 |
-
msgid "This user has not made any comments."
|
3905 |
-
msgstr ""
|
3906 |
-
|
3907 |
-
#: templates/profile/posts-single.php:6
|
3908 |
-
#, php-format
|
3909 |
-
msgid "%s ago"
|
3910 |
-
msgstr ""
|
3911 |
-
|
3912 |
-
#: templates/profile/posts-single.php:8
|
3913 |
-
msgid "no comments"
|
3914 |
-
msgstr ""
|
3915 |
-
|
3916 |
-
#: templates/profile/posts-single.php:8
|
3917 |
-
msgid "1 comment"
|
3918 |
-
msgstr ""
|
3919 |
-
|
3920 |
-
#: templates/profile/posts-single.php:8
|
3921 |
-
#, php-format
|
3922 |
-
msgid "% comments"
|
3923 |
-
msgstr ""
|
3924 |
-
|
3925 |
-
#: templates/profile/posts-single.php:17 templates/profile/posts.php:14
|
3926 |
-
msgid "load more posts"
|
3927 |
-
msgstr ""
|
3928 |
-
|
3929 |
-
#: templates/profile/posts.php:23
|
3930 |
-
msgid "You have not created any posts."
|
3931 |
-
msgstr ""
|
3932 |
-
|
3933 |
-
#: templates/profile/posts.php:23
|
3934 |
-
msgid "This user has not created any posts."
|
3935 |
-
msgstr ""
|
3936 |
-
|
3937 |
-
#: um-config.php:13
|
3938 |
-
msgid "Users"
|
3939 |
-
msgstr ""
|
3940 |
-
|
3941 |
-
#: um-config.php:20
|
3942 |
-
msgid "Default New User Role"
|
3943 |
-
msgstr ""
|
3944 |
-
|
3945 |
-
#: um-config.php:21
|
3946 |
-
msgid ""
|
3947 |
-
"Select the default role that will be assigned to user after registration If you did not specify custom role "
|
3948 |
-
"settings per form."
|
3949 |
-
msgstr ""
|
3950 |
-
|
3951 |
-
#: um-config.php:24
|
3952 |
-
msgid "Choose user role..."
|
3953 |
-
msgstr ""
|
3954 |
-
|
3955 |
-
#: um-config.php:31
|
3956 |
-
msgid "Profile Permalink Base"
|
3957 |
-
msgstr ""
|
3958 |
-
|
3959 |
-
#: um-config.php:32
|
3960 |
-
msgid "Here you can control the permalink structure of the user profile URL globally"
|
3961 |
-
msgstr ""
|
3962 |
-
|
3963 |
-
#: um-config.php:40 um-config.php:60
|
3964 |
-
msgid "Select..."
|
3965 |
-
msgstr ""
|
3966 |
-
|
3967 |
-
#: um-config.php:47
|
3968 |
-
msgid "User Display Name"
|
3969 |
-
msgstr ""
|
3970 |
-
|
3971 |
-
#: um-config.php:48
|
3972 |
-
msgid ""
|
3973 |
-
"This is the name that will be displayed for users on the front end of your site. Default setting uses first/"
|
3974 |
-
"last name as display name if it exists"
|
3975 |
-
msgstr ""
|
3976 |
-
|
3977 |
-
#: um-config.php:66
|
3978 |
-
msgid "Display Name Custom Field(s)"
|
3979 |
-
msgstr ""
|
3980 |
-
|
3981 |
-
#: um-config.php:74
|
3982 |
-
msgid "Automatically redirect author page to their profile?"
|
3983 |
-
msgstr ""
|
3984 |
-
|
3985 |
-
#: um-config.php:76
|
3986 |
-
msgid "If enabled, author pages will automatically redirect to the user's profile page"
|
3987 |
-
msgstr ""
|
3988 |
-
|
3989 |
-
#: um-config.php:82
|
3990 |
-
msgid "Members Directory"
|
3991 |
-
msgstr ""
|
3992 |
-
|
3993 |
-
#: um-config.php:90
|
3994 |
-
msgid "Use Gravatars?"
|
3995 |
-
msgstr ""
|
3996 |
-
|
3997 |
-
#: um-config.php:92
|
3998 |
-
msgid ""
|
3999 |
-
"Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a "
|
4000 |
-
"custom profile photo / avatar)"
|
4001 |
-
msgstr ""
|
4002 |
-
|
4003 |
-
#: um-config.php:112
|
4004 |
-
msgid "Password Account Tab"
|
4005 |
-
msgstr ""
|
4006 |
-
|
4007 |
-
#: um-config.php:120
|
4008 |
-
msgid "Privacy Account Tab"
|
4009 |
-
msgstr ""
|
4010 |
-
|
4011 |
-
#: um-config.php:128
|
4012 |
-
msgid "Notifications Account Tab"
|
4013 |
-
msgstr ""
|
4014 |
-
|
4015 |
-
#: um-config.php:136
|
4016 |
-
msgid "Delete Account Tab"
|
4017 |
-
msgstr ""
|
4018 |
-
|
4019 |
-
#: um-config.php:144
|
4020 |
-
msgid "Account Deletion Custom Text"
|
4021 |
-
msgstr ""
|
4022 |
-
|
4023 |
-
#: um-config.php:146
|
4024 |
-
msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
|
4025 |
-
msgstr ""
|
4026 |
-
|
4027 |
-
#: um-config.php:165
|
4028 |
-
msgid "Access"
|
4029 |
-
msgstr ""
|
4030 |
-
|
4031 |
-
#: um-config.php:171
|
4032 |
-
msgid "Panic Key"
|
4033 |
-
msgstr ""
|
4034 |
-
|
4035 |
-
#: um-config.php:181
|
4036 |
-
msgid "Global Site Access"
|
4037 |
-
msgstr ""
|
4038 |
-
|
4039 |
-
#: um-config.php:193
|
4040 |
-
msgid "Custom Redirect URL"
|
4041 |
-
msgstr ""
|
4042 |
-
|
4043 |
-
#: um-config.php:202
|
4044 |
-
msgid "Exclude the following URLs"
|
4045 |
-
msgstr ""
|
4046 |
-
|
4047 |
-
#: um-config.php:203
|
4048 |
-
msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
|
4049 |
-
msgstr ""
|
4050 |
-
|
4051 |
-
#: um-config.php:204
|
4052 |
-
msgid "Add New URL"
|
4053 |
-
msgstr ""
|
4054 |
-
|
4055 |
-
#: um-config.php:211
|
4056 |
-
msgid "Exclude restricted pages from main loop"
|
4057 |
-
msgstr ""
|
4058 |
-
|
4059 |
-
#: um-config.php:221
|
4060 |
-
msgid "Exclude restricted pages from search loop"
|
4061 |
-
msgstr ""
|
4062 |
-
|
4063 |
-
#: um-config.php:231
|
4064 |
-
msgid "Exclude restricted pages from archive loop"
|
4065 |
-
msgstr ""
|
4066 |
-
|
4067 |
-
#: um-config.php:241
|
4068 |
-
msgid "Allow Backend Login Screen for Guests"
|
4069 |
-
msgstr ""
|
4070 |
-
|
4071 |
-
#: um-config.php:252
|
4072 |
-
msgid "Redirect to alternative login page"
|
4073 |
-
msgstr ""
|
4074 |
-
|
4075 |
-
#: um-config.php:253
|
4076 |
-
msgid "If you disable backend access to login screen, specify here where a user will be redirected"
|
4077 |
-
msgstr ""
|
4078 |
-
|
4079 |
-
#: um-config.php:265 um-config.php:297
|
4080 |
-
msgid "Custom URL"
|
4081 |
-
msgstr ""
|
4082 |
-
|
4083 |
-
#: um-config.php:273
|
4084 |
-
msgid "Allow Backend Register Screen for Guests"
|
4085 |
-
msgstr ""
|
4086 |
-
|
4087 |
-
#: um-config.php:284
|
4088 |
-
msgid "Redirect to alternative register page"
|
4089 |
-
msgstr ""
|
4090 |
-
|
4091 |
-
#: um-config.php:285
|
4092 |
-
msgid "If you disable backend access to register screen, specify here where a user will be redirected"
|
4093 |
-
msgstr ""
|
4094 |
-
|
4095 |
-
#: um-config.php:305
|
4096 |
-
msgid "Whitelisted Backend IPs"
|
4097 |
-
msgstr ""
|
4098 |
-
|
4099 |
-
#: um-config.php:306
|
4100 |
-
msgid ""
|
4101 |
-
"Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being "
|
4102 |
-
"locked from site backend."
|
4103 |
-
msgstr ""
|
4104 |
-
|
4105 |
-
#: um-config.php:312
|
4106 |
-
msgid "Blocked IP Addresses"
|
4107 |
-
msgstr ""
|
4108 |
-
|
4109 |
-
#: um-config.php:313
|
4110 |
-
msgid ""
|
4111 |
-
"This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
|
4112 |
-
"target specific range with a wildcard"
|
4113 |
-
msgstr ""
|
4114 |
-
|
4115 |
-
#: um-config.php:319
|
4116 |
-
msgid "Blocked Email Addresses"
|
4117 |
-
msgstr ""
|
4118 |
-
|
4119 |
-
#: um-config.php:320
|
4120 |
-
msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
|
4121 |
-
msgstr ""
|
4122 |
-
|
4123 |
-
#: um-config.php:326
|
4124 |
-
msgid "Blacklist Words"
|
4125 |
-
msgstr ""
|
4126 |
-
|
4127 |
-
#: um-config.php:327
|
4128 |
-
msgid ""
|
4129 |
-
"This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
|
4130 |
-
"username"
|
4131 |
-
msgstr ""
|
4132 |
-
|
4133 |
-
#: um-config.php:342
|
4134 |
-
msgid "Emails"
|
4135 |
-
msgstr ""
|
4136 |
-
|
4137 |
-
#: um-config.php:348
|
4138 |
-
msgid "Mail appears from"
|
4139 |
-
msgstr ""
|
4140 |
-
|
4141 |
-
#: um-config.php:349
|
4142 |
-
msgid "e.g. Site Name"
|
4143 |
-
msgstr ""
|
4144 |
-
|
4145 |
-
#: um-config.php:356
|
4146 |
-
msgid "Mail appears from address"
|
4147 |
-
msgstr ""
|
4148 |
-
|
4149 |
-
#: um-config.php:357 um-config.php:672
|
4150 |
-
msgid "e.g. admin@companyname.com"
|
4151 |
-
msgstr ""
|
4152 |
-
|
4153 |
-
#: um-config.php:364 um-config.php:372 um-config.php:382
|
4154 |
-
msgid "Account Welcome Email"
|
4155 |
-
msgstr ""
|
4156 |
-
|
4157 |
-
#: um-config.php:373 um-config.php:409 um-config.php:441 um-config.php:473 um-config.php:509 um-config.php:540
|
4158 |
-
#: um-config.php:571 um-config.php:602 um-config.php:634 um-config.php:687 um-config.php:718 um-config.php:750
|
4159 |
-
msgid "Subject Line"
|
4160 |
-
msgstr ""
|
4161 |
-
|
4162 |
-
#: um-config.php:383 um-config.php:419 um-config.php:451 um-config.php:483 um-config.php:519 um-config.php:550
|
4163 |
-
#: um-config.php:581 um-config.php:612 um-config.php:644 um-config.php:697 um-config.php:728 um-config.php:760
|
4164 |
-
msgid "Message Body"
|
4165 |
-
msgstr ""
|
4166 |
-
|
4167 |
-
#: um-config.php:400 um-config.php:408 um-config.php:418
|
4168 |
-
msgid "Account Activation Email"
|
4169 |
-
msgstr ""
|
4170 |
-
|
4171 |
-
#: um-config.php:432 um-config.php:440 um-config.php:450
|
4172 |
-
msgid "Pending Review Email"
|
4173 |
-
msgstr ""
|
4174 |
-
|
4175 |
-
#: um-config.php:464 um-config.php:472 um-config.php:482
|
4176 |
-
msgid "Account Approved Email"
|
4177 |
-
msgstr ""
|
4178 |
-
|
4179 |
-
#: um-config.php:500 um-config.php:508 um-config.php:518
|
4180 |
-
msgid "Account Rejected Email"
|
4181 |
-
msgstr ""
|
4182 |
-
|
4183 |
-
#: um-config.php:531 um-config.php:539 um-config.php:549
|
4184 |
-
msgid "Account Deactivated Email"
|
4185 |
-
msgstr ""
|
4186 |
-
|
4187 |
-
#: um-config.php:562 um-config.php:570 um-config.php:580
|
4188 |
-
msgid "Account Deleted Email"
|
4189 |
-
msgstr ""
|
4190 |
-
|
4191 |
-
#: um-config.php:593 um-config.php:601 um-config.php:611
|
4192 |
-
msgid "Password Reset Email"
|
4193 |
-
msgstr ""
|
4194 |
-
|
4195 |
-
#: um-config.php:625 um-config.php:633 um-config.php:643
|
4196 |
-
msgid "Password Changed Email"
|
4197 |
-
msgstr ""
|
4198 |
-
|
4199 |
-
#: um-config.php:670
|
4200 |
-
msgid "Admin E-mail Address"
|
4201 |
-
msgstr ""
|
4202 |
-
|
4203 |
-
#: um-config.php:678 um-config.php:686 um-config.php:696
|
4204 |
-
msgid "New User Notification"
|
4205 |
-
msgstr ""
|
4206 |
-
|
4207 |
-
#: um-config.php:709 um-config.php:717 um-config.php:727
|
4208 |
-
msgid "Account Needs Review Notification"
|
4209 |
-
msgstr ""
|
4210 |
-
|
4211 |
-
#: um-config.php:741 um-config.php:749 um-config.php:759
|
4212 |
-
msgid "Account Deletion Notification"
|
4213 |
-
msgstr ""
|
4214 |
-
|
4215 |
-
#: um-config.php:777
|
4216 |
-
msgid "Uploads"
|
4217 |
-
msgstr ""
|
4218 |
-
|
4219 |
-
#: um-config.php:783
|
4220 |
-
msgid "Profile Photo Thumbnail Sizes"
|
4221 |
-
msgstr ""
|
4222 |
-
|
4223 |
-
#: um-config.php:784
|
4224 |
-
msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
|
4225 |
-
msgstr ""
|
4226 |
-
|
4227 |
-
#: um-config.php:787 um-config.php:797
|
4228 |
-
msgid "Add New Size"
|
4229 |
-
msgstr ""
|
4230 |
-
|
4231 |
-
#: um-config.php:793
|
4232 |
-
msgid "Cover Photo Thumbnail Sizes"
|
4233 |
-
msgstr ""
|
4234 |
-
|
4235 |
-
#: um-config.php:794
|
4236 |
-
msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
|
4237 |
-
msgstr ""
|
4238 |
-
|
4239 |
-
#: um-config.php:803
|
4240 |
-
msgid "Image Quality"
|
4241 |
-
msgstr ""
|
4242 |
-
|
4243 |
-
#: um-config.php:804
|
4244 |
-
msgid ""
|
4245 |
-
"Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
|
4246 |
-
"100 (best quality, biggest file). The default range is 60."
|
4247 |
-
msgstr ""
|
4248 |
-
|
4249 |
-
#: um-config.php:812
|
4250 |
-
msgid "Image Upload Maximum Width"
|
4251 |
-
msgstr ""
|
4252 |
-
|
4253 |
-
#: um-config.php:813
|
4254 |
-
msgid "Any image upload above this width will be resized to this limit automatically."
|
4255 |
-
msgstr ""
|
4256 |
-
|
4257 |
-
#: um-config.php:821
|
4258 |
-
msgid "Cover Photo Minimum Width"
|
4259 |
-
msgstr ""
|
4260 |
-
|
4261 |
-
#: um-config.php:822
|
4262 |
-
msgid "This will be the minimum width for cover photo uploads"
|
4263 |
-
msgstr ""
|
4264 |
-
|
4265 |
-
#: um-config.php:838
|
4266 |
-
msgid "SEO"
|
4267 |
-
msgstr ""
|
4268 |
-
|
4269 |
-
#: um-config.php:844
|
4270 |
-
msgid "User Profile Title"
|
4271 |
-
msgstr ""
|
4272 |
-
|
4273 |
-
#: um-config.php:853
|
4274 |
-
msgid "User Profile Dynamic Meta Description"
|
4275 |
-
msgstr ""
|
4276 |
-
|
4277 |
-
#: um-config.php:854
|
4278 |
-
msgid "You can use dynamic tags to display dynamic user profile data in this field."
|
4279 |
-
msgstr ""
|
4280 |
-
|
4281 |
-
#: um-config.php:855
|
4282 |
-
msgid "This will be used in the meta description that is available for search-engines."
|
4283 |
-
msgstr ""
|
4284 |
-
|
4285 |
-
#: um-config.php:869
|
4286 |
-
msgid "Appearance"
|
4287 |
-
msgstr ""
|
4288 |
-
|
4289 |
-
#: um-config.php:879
|
4290 |
-
msgid "General"
|
4291 |
-
msgstr ""
|
4292 |
-
|
4293 |
-
#: um-config.php:886
|
4294 |
-
msgid "Members Default Template"
|
4295 |
-
msgstr ""
|
4296 |
-
|
4297 |
-
#: um-config.php:887
|
4298 |
-
msgid "This will be the default template to output member directory"
|
4299 |
-
msgstr ""
|
4300 |
-
|
4301 |
-
#: um-config.php:897
|
4302 |
-
msgid "General Active Color"
|
4303 |
-
msgstr ""
|
4304 |
-
|
4305 |
-
#: um-config.php:899
|
4306 |
-
msgid ""
|
4307 |
-
"Active color is used commonly with many plugin elements as highlighted color or active selection for "
|
4308 |
-
"example. This color demonstrates the primary active color of the plugin"
|
4309 |
-
msgstr ""
|
4310 |
-
|
4311 |
-
#: um-config.php:907
|
4312 |
-
msgid "General Secondary Color"
|
4313 |
-
msgstr ""
|
4314 |
-
|
4315 |
-
#: um-config.php:909
|
4316 |
-
msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
|
4317 |
-
msgstr ""
|
4318 |
-
|
4319 |
-
#: um-config.php:917
|
4320 |
-
msgid "Default Primary Button Color"
|
4321 |
-
msgstr ""
|
4322 |
-
|
4323 |
-
#: um-config.php:926
|
4324 |
-
msgid "Default Primary Button Hover Color"
|
4325 |
-
msgstr ""
|
4326 |
-
|
4327 |
-
#: um-config.php:935
|
4328 |
-
msgid "Default Primary Button Text Color"
|
4329 |
-
msgstr ""
|
4330 |
-
|
4331 |
-
#: um-config.php:944
|
4332 |
-
msgid "Default Secondary Button Color"
|
4333 |
-
msgstr ""
|
4334 |
-
|
4335 |
-
#: um-config.php:953
|
4336 |
-
msgid "Default Secondary Button Hover Color"
|
4337 |
-
msgstr ""
|
4338 |
-
|
4339 |
-
#: um-config.php:962
|
4340 |
-
msgid "Default Secondary Button Text Color"
|
4341 |
-
msgstr ""
|
4342 |
-
|
4343 |
-
#: um-config.php:971
|
4344 |
-
msgid "Default Help Icon Color"
|
4345 |
-
msgstr ""
|
4346 |
-
|
4347 |
-
#: um-config.php:983
|
4348 |
-
msgid "Form Inputs"
|
4349 |
-
msgstr ""
|
4350 |
-
|
4351 |
-
#: um-config.php:990
|
4352 |
-
msgid "Field Label Color"
|
4353 |
-
msgstr ""
|
4354 |
-
|
4355 |
-
#: um-config.php:998
|
4356 |
-
msgid "Field Border Style"
|
4357 |
-
msgstr ""
|
4358 |
-
|
4359 |
-
#: um-config.php:1007
|
4360 |
-
msgid "Field Background Color"
|
4361 |
-
msgstr ""
|
4362 |
-
|
4363 |
-
#: um-config.php:1016
|
4364 |
-
msgid "Field Text Color"
|
4365 |
-
msgstr ""
|
4366 |
-
|
4367 |
-
#: um-config.php:1025
|
4368 |
-
msgid "Field Placeholder Color"
|
4369 |
-
msgstr ""
|
4370 |
-
|
4371 |
-
#: um-config.php:1034
|
4372 |
-
msgid "Field Font Icon Color"
|
4373 |
-
msgstr ""
|
4374 |
-
|
4375 |
-
#: um-config.php:1042
|
4376 |
-
msgid "Show an asterisk for required fields"
|
4377 |
-
msgstr ""
|
4378 |
-
|
4379 |
-
#: um-config.php:1050
|
4380 |
-
msgid "Field Required Asterisk Color"
|
4381 |
-
msgstr ""
|
4382 |
-
|
4383 |
-
#: um-config.php:1063
|
4384 |
-
msgid "Profile"
|
4385 |
-
msgstr ""
|
4386 |
-
|
4387 |
-
#: um-config.php:1070
|
4388 |
-
msgid "Profile Default Template"
|
4389 |
-
msgstr ""
|
4390 |
-
|
4391 |
-
#: um-config.php:1071
|
4392 |
-
msgid "This will be the default template to output profile"
|
4393 |
-
msgstr ""
|
4394 |
-
|
4395 |
-
#: um-config.php:1079
|
4396 |
-
msgid "Profile Maximum Width"
|
4397 |
-
msgstr ""
|
4398 |
-
|
4399 |
-
#: um-config.php:1087
|
4400 |
-
msgid "Profile Area Maximum Width"
|
4401 |
-
msgstr ""
|
4402 |
-
|
4403 |
-
#: um-config.php:1096
|
4404 |
-
msgid "Profile Shortcode Alignment"
|
4405 |
-
msgstr ""
|
4406 |
-
|
4407 |
-
#: um-config.php:1100 um-config.php:1426 um-config.php:1517
|
4408 |
-
msgid "Centered"
|
4409 |
-
msgstr ""
|
4410 |
-
|
4411 |
-
#: um-config.php:1101 um-config.php:1427 um-config.php:1518
|
4412 |
-
msgid "Left aligned"
|
4413 |
-
msgstr ""
|
4414 |
-
|
4415 |
-
#: um-config.php:1102 um-config.php:1428 um-config.php:1519
|
4416 |
-
msgid "Right aligned"
|
4417 |
-
msgstr ""
|
4418 |
-
|
4419 |
-
#: um-config.php:1110
|
4420 |
-
msgid "Profile Field Icons"
|
4421 |
-
msgstr ""
|
4422 |
-
|
4423 |
-
#: um-config.php:1111
|
4424 |
-
msgid "This is applicable for edit mode only"
|
4425 |
-
msgstr ""
|
4426 |
-
|
4427 |
-
#: um-config.php:1114 um-config.php:1440 um-config.php:1531
|
4428 |
-
msgid "Show inside text field"
|
4429 |
-
msgstr ""
|
4430 |
-
|
4431 |
-
#: um-config.php:1115 um-config.php:1441 um-config.php:1532
|
4432 |
-
msgid "Show with label"
|
4433 |
-
msgstr ""
|
4434 |
-
|
4435 |
-
#: um-config.php:1116 um-config.php:1442 um-config.php:1533
|
4436 |
-
msgid "Turn off"
|
4437 |
-
msgstr ""
|
4438 |
-
|
4439 |
-
#: um-config.php:1123
|
4440 |
-
msgid "Profile Primary Button Text"
|
4441 |
-
msgstr ""
|
4442 |
-
|
4443 |
-
#: um-config.php:1131
|
4444 |
-
msgid "Profile Secondary Button"
|
4445 |
-
msgstr ""
|
4446 |
-
|
4447 |
-
#: um-config.php:1139
|
4448 |
-
msgid "Profile Secondary Button Text"
|
4449 |
-
msgstr ""
|
4450 |
-
|
4451 |
-
#: um-config.php:1149
|
4452 |
-
msgid "Profile Associated Role"
|
4453 |
-
msgstr ""
|
4454 |
-
|
4455 |
-
#: um-config.php:1150
|
4456 |
-
msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
|
4457 |
-
msgstr ""
|
4458 |
-
|
4459 |
-
#: um-config.php:1159
|
4460 |
-
msgid "Profile Base Background Color"
|
4461 |
-
msgstr ""
|
4462 |
-
|
4463 |
-
#: um-config.php:1168
|
4464 |
-
msgid "Profile Header Background Color"
|
4465 |
-
msgstr ""
|
4466 |
-
|
4467 |
-
#: um-config.php:1176
|
4468 |
-
msgid "Default Profile Photo"
|
4469 |
-
msgstr ""
|
4470 |
-
|
4471 |
-
#: um-config.php:1177
|
4472 |
-
msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
|
4473 |
-
msgstr ""
|
4474 |
-
|
4475 |
-
#: um-config.php:1188
|
4476 |
-
msgid "Default Cover Photo"
|
4477 |
-
msgstr ""
|
4478 |
-
|
4479 |
-
#: um-config.php:1189
|
4480 |
-
msgid ""
|
4481 |
-
"You can change the default cover photo globally here. Please make sure that the default cover is large "
|
4482 |
-
"enough and respects the ratio you are using for cover photos."
|
4483 |
-
msgstr ""
|
4484 |
-
|
4485 |
-
#: um-config.php:1205
|
4486 |
-
msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
|
4487 |
-
msgstr ""
|
4488 |
-
|
4489 |
-
#: um-config.php:1217
|
4490 |
-
msgid "Profile Cover Photos"
|
4491 |
-
msgstr ""
|
4492 |
-
|
4493 |
-
#: um-config.php:1226
|
4494 |
-
msgid "Profile Cover Ratio"
|
4495 |
-
msgstr ""
|
4496 |
-
|
4497 |
-
#: um-config.php:1227
|
4498 |
-
msgid "Choose global ratio for cover photos of profiles"
|
4499 |
-
msgstr ""
|
4500 |
-
|
4501 |
-
#: um-config.php:1241
|
4502 |
-
msgid "Profile Header Meta Text Color"
|
4503 |
-
msgstr ""
|
4504 |
-
|
4505 |
-
#: um-config.php:1250
|
4506 |
-
msgid "Profile Header Link Color"
|
4507 |
-
msgstr ""
|
4508 |
-
|
4509 |
-
#: um-config.php:1259
|
4510 |
-
msgid "Profile Header Link Hover"
|
4511 |
-
msgstr ""
|
4512 |
-
|
4513 |
-
#: um-config.php:1268
|
4514 |
-
msgid "Profile Header Icon Link Color"
|
4515 |
-
msgstr ""
|
4516 |
-
|
4517 |
-
#: um-config.php:1277
|
4518 |
-
msgid "Profile Header Icon Link Hover"
|
4519 |
-
msgstr ""
|
4520 |
-
|
4521 |
-
#: um-config.php:1285
|
4522 |
-
msgid "Show display name in profile header"
|
4523 |
-
msgstr ""
|
4524 |
-
|
4525 |
-
#: um-config.php:1293
|
4526 |
-
msgid "Show user description in header"
|
4527 |
-
msgstr ""
|
4528 |
-
|
4529 |
-
#: um-config.php:1301
|
4530 |
-
msgid "User description maximum chars"
|
4531 |
-
msgstr ""
|
4532 |
-
|
4533 |
-
#: um-config.php:1310
|
4534 |
-
msgid "Profile Header Menu Position"
|
4535 |
-
msgstr ""
|
4536 |
-
|
4537 |
-
#: um-config.php:1312
|
4538 |
-
msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
|
4539 |
-
msgstr ""
|
4540 |
-
|
4541 |
-
#: um-config.php:1323
|
4542 |
-
msgid "Show a custom message if profile is empty"
|
4543 |
-
msgstr ""
|
4544 |
-
|
4545 |
-
#: um-config.php:1331
|
4546 |
-
msgid "Show the emoticon"
|
4547 |
-
msgstr ""
|
4548 |
-
|
4549 |
-
#: um-config.php:1345
|
4550 |
-
msgid "Enable profile menu"
|
4551 |
-
msgstr ""
|
4552 |
-
|
4553 |
-
#: um-config.php:1353
|
4554 |
-
#, php-format
|
4555 |
-
msgid "%s Tab"
|
4556 |
-
msgstr ""
|
4557 |
-
|
4558 |
-
#: um-config.php:1363
|
4559 |
-
msgid "Profile menu default tab"
|
4560 |
-
msgstr ""
|
4561 |
-
|
4562 |
-
#: um-config.php:1364
|
4563 |
-
msgid "This will be the default tab on user profile page"
|
4564 |
-
msgstr ""
|
4565 |
-
|
4566 |
-
#: um-config.php:1373
|
4567 |
-
msgid "Enable menu icons in desktop view"
|
4568 |
-
msgstr ""
|
4569 |
-
|
4570 |
-
#: um-config.php:1381
|
4571 |
-
msgid "Enable counts in menu"
|
4572 |
-
msgstr ""
|
4573 |
-
|
4574 |
-
#: um-config.php:1389
|
4575 |
-
msgid "Profile Menu"
|
4576 |
-
msgstr ""
|
4577 |
-
|
4578 |
-
#: um-config.php:1404
|
4579 |
-
msgid "Registration Default Template"
|
4580 |
-
msgstr ""
|
4581 |
-
|
4582 |
-
#: um-config.php:1405
|
4583 |
-
msgid "This will be the default template to output registration"
|
4584 |
-
msgstr ""
|
4585 |
-
|
4586 |
-
#: um-config.php:1413
|
4587 |
-
msgid "Registration Maximum Width"
|
4588 |
-
msgstr ""
|
4589 |
-
|
4590 |
-
#: um-config.php:1422
|
4591 |
-
msgid "Registration Shortcode Alignment"
|
4592 |
-
msgstr ""
|
4593 |
-
|
4594 |
-
#: um-config.php:1436
|
4595 |
-
msgid "Registration Field Icons"
|
4596 |
-
msgstr ""
|
4597 |
-
|
4598 |
-
#: um-config.php:1437
|
4599 |
-
msgid "This controls the display of field icons in the registration form"
|
4600 |
-
msgstr ""
|
4601 |
-
|
4602 |
-
#: um-config.php:1449
|
4603 |
-
msgid "Registration Primary Button Text"
|
4604 |
-
msgstr ""
|
4605 |
-
|
4606 |
-
#: um-config.php:1457
|
4607 |
-
msgid "Registration Secondary Button"
|
4608 |
-
msgstr ""
|
4609 |
-
|
4610 |
-
#: um-config.php:1465
|
4611 |
-
msgid "Registration Secondary Button Text"
|
4612 |
-
msgstr ""
|
4613 |
-
|
4614 |
-
#: um-config.php:1475
|
4615 |
-
msgid "Registration Default Role"
|
4616 |
-
msgstr ""
|
4617 |
-
|
4618 |
-
#: um-config.php:1476
|
4619 |
-
msgid "This will be the default role assigned to users registering thru registration form"
|
4620 |
-
msgstr ""
|
4621 |
-
|
4622 |
-
#: um-config.php:1495
|
4623 |
-
msgid "Login Default Template"
|
4624 |
-
msgstr ""
|
4625 |
-
|
4626 |
-
#: um-config.php:1496
|
4627 |
-
msgid "This will be the default template to output login"
|
4628 |
-
msgstr ""
|
4629 |
-
|
4630 |
-
#: um-config.php:1504
|
4631 |
-
msgid "Login Maximum Width"
|
4632 |
-
msgstr ""
|
4633 |
-
|
4634 |
-
#: um-config.php:1513
|
4635 |
-
msgid "Login Shortcode Alignment"
|
4636 |
-
msgstr ""
|
4637 |
-
|
4638 |
-
#: um-config.php:1527
|
4639 |
-
msgid "Login Field Icons"
|
4640 |
-
msgstr ""
|
4641 |
-
|
4642 |
-
#: um-config.php:1528
|
4643 |
-
msgid "This controls the display of field icons in the login form"
|
4644 |
-
msgstr ""
|
4645 |
-
|
4646 |
-
#: um-config.php:1540
|
4647 |
-
msgid "Login Primary Button Text"
|
4648 |
-
msgstr ""
|
4649 |
-
|
4650 |
-
#: um-config.php:1548
|
4651 |
-
msgid "Login Secondary Button"
|
4652 |
-
msgstr ""
|
4653 |
-
|
4654 |
-
#: um-config.php:1556
|
4655 |
-
msgid "Login Secondary Button Text"
|
4656 |
-
msgstr ""
|
4657 |
-
|
4658 |
-
#: um-config.php:1565
|
4659 |
-
msgid "Login Forgot Password Link"
|
4660 |
-
msgstr ""
|
4661 |
-
|
4662 |
-
#: um-config.php:1584
|
4663 |
-
msgid "Any custom css rules that you specify here will be applied globally to the plugin."
|
4664 |
-
msgstr ""
|
4665 |
-
|
4666 |
-
#: um-config.php:1599
|
4667 |
-
msgid "Advanced"
|
4668 |
-
msgstr ""
|
4669 |
-
|
4670 |
-
#: um-config.php:1605
|
4671 |
-
msgid "Disable JS/CSS Compression"
|
4672 |
-
msgstr ""
|
4673 |
-
|
4674 |
-
#: um-config.php:1607
|
4675 |
-
msgid ""
|
4676 |
-
"Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
|
4677 |
-
"this setting for development or debugging purposes only."
|
4678 |
-
msgstr ""
|
4679 |
-
|
4680 |
-
#: um-config.php:1614
|
4681 |
-
msgid "Never load plugin JS and CSS on the following pages"
|
4682 |
-
msgstr ""
|
4683 |
-
|
4684 |
-
#: um-config.php:1615
|
4685 |
-
msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
|
4686 |
-
msgstr ""
|
4687 |
-
|
4688 |
-
#: um-config.php:1616
|
4689 |
-
msgid "Add New Page"
|
4690 |
-
msgstr ""
|
4691 |
-
|
4692 |
-
#: um-config.php:1622
|
4693 |
-
msgid "Allow Tracking"
|
4694 |
-
msgstr ""
|
4695 |
-
|
4696 |
-
#: um-config.php:1626
|
4697 |
-
msgid "Do not allow"
|
4698 |
-
msgstr ""
|
4699 |
-
|
4700 |
-
#~ msgid "outdatedBrowser_page_message"
|
4701 |
-
#~ msgstr ""
|
4702 |
-
#~ "The site you are visiting can only be viewed using a modern browser. Please upgrade your browser to "
|
4703 |
-
#~ "increase safety and your browsing experience. Choose one of the browsers above. If you don't care <a href="
|
4704 |
-
#~ "\"?forwardOutdatedBrowser=1\">click here</a>"
|
4705 |
-
|
4706 |
-
#~ msgid "404_page_message"
|
4707 |
-
#~ msgstr ""
|
4708 |
-
#~ "The Page you are looking for doesn't exist or an other error occurred. <a href=\"javascript:history."
|
4709 |
-
#~ "go(-1)\">Go back</a>, or head over to <a href=\"%s\">%s</a> to choose a new direction."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/ultimatemember-tr_TR.mo
DELETED
Binary file
|
languages/ultimatemember-tr_TR.po
DELETED
@@ -1,4719 +0,0 @@
|
|
1 |
-
#
|
2 |
-
# Translators:
|
3 |
-
# marty mcfly <orakmetin@gmail.com>, 2015
|
4 |
-
msgid ""
|
5 |
-
msgstr ""
|
6 |
-
"Project-Id-Version: Ultimate Member English=>Turkish\n"
|
7 |
-
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-02-01 23:22+0200\n"
|
9 |
-
"PO-Revision-Date: 2015-02-01 23:22+0200\n"
|
10 |
-
"Last-Translator: Calum Allison <umplugin@gmail.com>\n"
|
11 |
-
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/ultimate-member-englishturkish/language/"
|
12 |
-
"tr_TR/)\n"
|
13 |
-
"Language: tr_TR\n"
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
-
"X-Generator: Poedit 1.7.1\n"
|
19 |
-
"X-Poedit-Basepath: .\n"
|
20 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
21 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
-
"X-Poedit-SearchPath-0: .\n"
|
23 |
-
|
24 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:530
|
25 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1950
|
26 |
-
msgid "You have changes that are not saved. Would you like to save them now?"
|
27 |
-
msgstr "Kaydedilmemiş değişiklikleriniz bulunmakta. Şimdi kaydetmek ister misiniz?"
|
28 |
-
|
29 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:531
|
30 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1958
|
31 |
-
msgid "Are you sure? Resetting will lose all custom values."
|
32 |
-
msgstr "Emin misiniz? Sıfırlamak özel değerlerinizi kaybetmenize yol açar."
|
33 |
-
|
34 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:532
|
35 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1974
|
36 |
-
msgid "Your current options will be replaced with the values of this preset. Would you like to proceed?"
|
37 |
-
msgstr "Sizin güncel ayarlarınız varsayılan değerlerin yerine geçecek. Devam etmek istiyor musunuz?"
|
38 |
-
|
39 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:565
|
40 |
-
msgid "You have changes that are not saved. Would you like to save them now?"
|
41 |
-
msgstr "Kaydedilmemiş değişiklikleriniz bulunmakta. Şimdi kaydetmek ister misiniz?"
|
42 |
-
|
43 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:566
|
44 |
-
msgid "Are you sure? Resetting will lose all custom values."
|
45 |
-
msgstr "Emin misiniz? Sıfırlamak özel değerlerinizi kaybetmenize yol açar."
|
46 |
-
|
47 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/extensions/customizer/extension_customizer.php:567
|
48 |
-
msgid "Your current options will be replaced with the values of this preset. Would you like to proceed?"
|
49 |
-
msgstr "Sizin güncel ayarlarınız varsayılan değerlerin yerine geçecek. Devam etmek istiyor musunuz?"
|
50 |
-
|
51 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:213
|
52 |
-
#, php-format
|
53 |
-
msgid "Options panel created using %1$s"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:213
|
57 |
-
msgid "Redux Framework"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
|
61 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:292
|
62 |
-
msgid "Options"
|
63 |
-
msgstr "Ayarlar"
|
64 |
-
|
65 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1369
|
66 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1370
|
67 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3587
|
68 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3666
|
69 |
-
msgid "System Info"
|
70 |
-
msgstr "Sistem Bilgisi"
|
71 |
-
|
72 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1966
|
73 |
-
msgid "Are you sure? Resetting will lose all custom values in this section."
|
74 |
-
msgstr "Emin misiniz? Sıfırlamak bu bölümdeki tüm özel değerlerinizi kaybetmenize yol açar."
|
75 |
-
|
76 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:1981
|
77 |
-
msgid "Please Wait"
|
78 |
-
msgstr "Lütfen Bekleyin"
|
79 |
-
|
80 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2106
|
81 |
-
msgid "Enable"
|
82 |
-
msgstr "Etkinleştir"
|
83 |
-
|
84 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2111
|
85 |
-
msgid "Disable"
|
86 |
-
msgstr "Etkisizleştir"
|
87 |
-
|
88 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2117
|
89 |
-
msgid "moving the mouse over"
|
90 |
-
msgstr "imleç ile oynatmak"
|
91 |
-
|
92 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2119
|
93 |
-
msgid "clicking"
|
94 |
-
msgstr "tıklamak"
|
95 |
-
|
96 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2123
|
97 |
-
#, php-format
|
98 |
-
msgid ""
|
99 |
-
"Hints are tooltips that popup when %d the hint icon, offering addition information about the field in which "
|
100 |
-
"they appear. They can be %d d by using the link below."
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2128
|
104 |
-
msgid "Hints"
|
105 |
-
msgstr "İpuçları"
|
106 |
-
|
107 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:2253 admin/templates/form/login_settings.php:6
|
108 |
-
msgid "Default"
|
109 |
-
msgstr "Varsayılan"
|
110 |
-
|
111 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3334
|
112 |
-
msgid "Warning- This options panel will not work properly without javascript!"
|
113 |
-
msgstr "Uyarı- Ayarlar paneli JavaScript olmadan düzgün şekilde çalışmaz!"
|
114 |
-
|
115 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3385
|
116 |
-
msgid "Developer Mode Enabled"
|
117 |
-
msgstr "Geliştirici Modu Etkin"
|
118 |
-
|
119 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3413
|
120 |
-
msgid "Expand"
|
121 |
-
msgstr "Genişlet"
|
122 |
-
|
123 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3415
|
124 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3723
|
125 |
-
msgid "Save Changes"
|
126 |
-
msgstr "Değişiklikleri Kaydet"
|
127 |
-
|
128 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3419
|
129 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3727
|
130 |
-
msgid "Reset Section"
|
131 |
-
msgstr "Bölümü Sıfırla"
|
132 |
-
|
133 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3421
|
134 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3729
|
135 |
-
msgid "Reset All"
|
136 |
-
msgstr "Hepsini Sıfırla"
|
137 |
-
|
138 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3426
|
139 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3734
|
140 |
-
msgid "Working..."
|
141 |
-
msgstr "Çalışıyor..."
|
142 |
-
|
143 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3446
|
144 |
-
msgid "Settings Imported!"
|
145 |
-
msgstr "Ayarlar Yüklendi!"
|
146 |
-
|
147 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3461
|
148 |
-
msgid "All Defaults Restored!"
|
149 |
-
msgstr "Tüm Varsayılanlar Yüklendi!"
|
150 |
-
|
151 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3475
|
152 |
-
msgid "Section Defaults Restored!"
|
153 |
-
msgstr "Bölüm Varsayılanları Yüklendi!"
|
154 |
-
|
155 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3489
|
156 |
-
msgid "Settings Saved!"
|
157 |
-
msgstr "Ayarlar Kaydedildi!"
|
158 |
-
|
159 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3507
|
160 |
-
msgid "Settings have changed, you should save them!"
|
161 |
-
msgstr "Ayarlar değiştirildi, kaydetmelisin!"
|
162 |
-
|
163 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3515
|
164 |
-
msgid "error(s) were found!"
|
165 |
-
msgstr "hata(lar) bulundu!"
|
166 |
-
|
167 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/framework.php:3523
|
168 |
-
msgid "warning(s) were found!"
|
169 |
-
msgstr "uyarı(lar) bulundu!"
|
170 |
-
|
171 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_filesystem.php:22
|
172 |
-
msgid "Unable to create a required directory. Please ensure that"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_filesystem.php:24
|
176 |
-
msgid "has the proper read/write permissions or enter your FTP information below."
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_functions.php:253
|
180 |
-
msgid "Dismiss"
|
181 |
-
msgstr "Reddet"
|
182 |
-
|
183 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_themecheck.php:61
|
184 |
-
#, php-format
|
185 |
-
msgid ""
|
186 |
-
"The theme you are testing has %s embedded. We invite you to read the %sTheme-Check Documentation%s to "
|
187 |
-
"understand some warnings you will see because of Redux."
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/class.redux_themecheck.php:109
|
191 |
-
msgid ""
|
192 |
-
"The following directories & files are still located in your <strong>Redux</strong> directory. They may "
|
193 |
-
"cause errors in Theme-Check."
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:41
|
197 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:69
|
198 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:76
|
199 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:77
|
200 |
-
msgid "Options Object"
|
201 |
-
msgstr "Seçenekler Nesnesi"
|
202 |
-
|
203 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/debug.php:54
|
204 |
-
msgid "Show Object in Javascript Console Object"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:124
|
208 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color/field_color.php:72
|
209 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:79
|
210 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:91
|
211 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_rgba/field_color_rgba.php:77
|
212 |
-
msgid "Transparent"
|
213 |
-
msgstr "Şeffaflık"
|
214 |
-
|
215 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:141
|
216 |
-
msgid "Background Repeat"
|
217 |
-
msgstr "Arkaplan Tekrarı"
|
218 |
-
|
219 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:157
|
220 |
-
msgid "Background Clip"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:173
|
224 |
-
msgid "Background Origin"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:188
|
228 |
-
msgid "Background Size"
|
229 |
-
msgstr "Arkaplan Boyutu"
|
230 |
-
|
231 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:203
|
232 |
-
msgid "Background Attachment"
|
233 |
-
msgstr "Arkaplan Eki"
|
234 |
-
|
235 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:223
|
236 |
-
msgid "Background Position"
|
237 |
-
msgstr "Arkaplan Pozisyonu"
|
238 |
-
|
239 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:277
|
240 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:149
|
241 |
-
msgid "No media selected"
|
242 |
-
msgstr "Hiç ortam dosyası seçilmedi"
|
243 |
-
|
244 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
|
245 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
|
246 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
|
247 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:742
|
248 |
-
#: core/um-fields.php:763
|
249 |
-
msgid "Upload"
|
250 |
-
msgstr "Yükle"
|
251 |
-
|
252 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:321
|
253 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:200
|
254 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:69
|
255 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:73
|
256 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:76
|
257 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:133
|
258 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:190
|
259 |
-
#: core/um-actions-profile.php:168
|
260 |
-
msgid "Remove"
|
261 |
-
msgstr "Kaldır"
|
262 |
-
|
263 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:114
|
264 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:191
|
265 |
-
msgid "All"
|
266 |
-
msgstr "Hepsi"
|
267 |
-
|
268 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:127
|
269 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:215
|
270 |
-
msgid "Top"
|
271 |
-
msgstr "Üst"
|
272 |
-
|
273 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:134
|
274 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:222
|
275 |
-
msgid "Right"
|
276 |
-
msgstr "Sağ"
|
277 |
-
|
278 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:141
|
279 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:229
|
280 |
-
msgid "Bottom"
|
281 |
-
msgstr "Alt"
|
282 |
-
|
283 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:148
|
284 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:236
|
285 |
-
msgid "Left"
|
286 |
-
msgstr "Sol"
|
287 |
-
|
288 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/border/field_border.php:162
|
289 |
-
msgid "Border style"
|
290 |
-
msgstr "Kenar biçimi"
|
291 |
-
|
292 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:68
|
293 |
-
msgid "From "
|
294 |
-
msgstr ""
|
295 |
-
|
296 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/color_gradient/field_color_gradient.php:82
|
297 |
-
msgid "To "
|
298 |
-
msgstr ""
|
299 |
-
|
300 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:161
|
301 |
-
msgid "Width"
|
302 |
-
msgstr "Genişlik"
|
303 |
-
|
304 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:177
|
305 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:436
|
306 |
-
msgid "Height"
|
307 |
-
msgstr "Uzunluk"
|
308 |
-
|
309 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:188
|
310 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/dimensions/field_dimensions.php:189
|
311 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:245
|
312 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/spacing/field_spacing.php:246
|
313 |
-
msgid "Units"
|
314 |
-
msgstr "Birimler"
|
315 |
-
|
316 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/gallery/field_gallery.php:73
|
317 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:313
|
318 |
-
msgid "Add/Edit Gallery"
|
319 |
-
msgstr "Galeri Ekle/Düzenle"
|
320 |
-
|
321 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/gallery/field_gallery.php:74
|
322 |
-
msgid "Clear Gallery"
|
323 |
-
msgstr "Galeriyi Temizle"
|
324 |
-
|
325 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:87
|
326 |
-
msgid "Regular"
|
327 |
-
msgstr "Düzenli"
|
328 |
-
|
329 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:91
|
330 |
-
msgid "Hover"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:95
|
334 |
-
msgid "Visited"
|
335 |
-
msgstr "Ziyaret Edildi"
|
336 |
-
|
337 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/link_color/field_link_color.php:99
|
338 |
-
msgid "Active"
|
339 |
-
msgstr "Aktif"
|
340 |
-
|
341 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/multi_text/field_multi_text.php:61
|
342 |
-
msgid "Add More"
|
343 |
-
msgstr "Daha Fazla Ekle"
|
344 |
-
|
345 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:62 core/um-builtin.php:469
|
346 |
-
#: core/um-builtin.php:472 core/um-builtin.php:832 core/um-builtin.php:835
|
347 |
-
msgid "Password"
|
348 |
-
msgstr "Parola"
|
349 |
-
|
350 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/password/field_password.php:63 core/um-builtin.php:445
|
351 |
-
#: core/um-builtin.php:448
|
352 |
-
msgid "Username"
|
353 |
-
msgstr "Kullanıcı Adı"
|
354 |
-
|
355 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select/field_select.php:82
|
356 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select_image/field_select_image.php:62
|
357 |
-
msgid "Select an item"
|
358 |
-
msgstr "Bir madde seçin"
|
359 |
-
|
360 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select/field_select.php:126
|
361 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/select_image/field_select_image.php:143
|
362 |
-
msgid "No items of this type were found."
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:68
|
366 |
-
msgid "Slide"
|
367 |
-
msgstr "Slayt"
|
368 |
-
|
369 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:73
|
370 |
-
#, php-format
|
371 |
-
msgid "New %s"
|
372 |
-
msgstr "Yeni %s"
|
373 |
-
|
374 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:145
|
375 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:200
|
376 |
-
#: admin/core/um-admin-columns.php:26 admin/core/um-admin-columns.php:44
|
377 |
-
msgid "Title"
|
378 |
-
msgstr "Başlık"
|
379 |
-
|
380 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:149
|
381 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:204
|
382 |
-
msgid "Description"
|
383 |
-
msgstr "Açıklama"
|
384 |
-
|
385 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:153
|
386 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:207
|
387 |
-
msgid "URL"
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:167
|
391 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:220 core/um-filters-user.php:17
|
392 |
-
msgid "Delete"
|
393 |
-
msgstr "Sil"
|
394 |
-
|
395 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:223
|
396 |
-
#, php-format
|
397 |
-
msgid "Add %s"
|
398 |
-
msgstr "Ekle %s"
|
399 |
-
|
400 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/switch/field_switch.php:41
|
401 |
-
msgid "On"
|
402 |
-
msgstr "Açık"
|
403 |
-
|
404 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/switch/field_switch.php:44
|
405 |
-
msgid "Off"
|
406 |
-
msgstr "Kapalı"
|
407 |
-
|
408 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:227
|
409 |
-
msgid "Font Family"
|
410 |
-
msgstr "Yazı Tipi"
|
411 |
-
|
412 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:228
|
413 |
-
msgid "Font family"
|
414 |
-
msgstr "Yazı tipi"
|
415 |
-
|
416 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:254
|
417 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:255
|
418 |
-
msgid "Backup Font Family"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:269
|
422 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:276
|
423 |
-
msgid "Font style"
|
424 |
-
msgstr "Yazı tipi"
|
425 |
-
|
426 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:270
|
427 |
-
msgid "Font Weight & Style"
|
428 |
-
msgstr "Yazı Genişliği & Biçimi"
|
429 |
-
|
430 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:276
|
431 |
-
msgid "Style"
|
432 |
-
msgstr "Biçim"
|
433 |
-
|
434 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:316
|
435 |
-
msgid "Font subsets"
|
436 |
-
msgstr "Yazı tipi kümeleri"
|
437 |
-
|
438 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:318
|
439 |
-
msgid "Font Subsets"
|
440 |
-
msgstr "Yazı Tipi Kümeleri"
|
441 |
-
|
442 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:319
|
443 |
-
msgid "Subsets"
|
444 |
-
msgstr "Kümeler"
|
445 |
-
|
446 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:319
|
447 |
-
msgid "Font script"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:336
|
451 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:337
|
452 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:338
|
453 |
-
msgid "Text Align"
|
454 |
-
msgstr "Yazı Hizası"
|
455 |
-
|
456 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:359
|
457 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:360
|
458 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:361
|
459 |
-
msgid "Text Transform"
|
460 |
-
msgstr "Yazı Dönüşümü"
|
461 |
-
|
462 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:382
|
463 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:383
|
464 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:384
|
465 |
-
msgid "Font Variant"
|
466 |
-
msgstr "Yazı Varyantı"
|
467 |
-
|
468 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:402
|
469 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:403
|
470 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:404
|
471 |
-
msgid "Text Decoration"
|
472 |
-
msgstr "Yazı Tasarımı"
|
473 |
-
|
474 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:426
|
475 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:427
|
476 |
-
msgid "Font Size"
|
477 |
-
msgstr "Yazı Boyutu"
|
478 |
-
|
479 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:427
|
480 |
-
msgid "Size"
|
481 |
-
msgstr "Boyut"
|
482 |
-
|
483 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:435
|
484 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:436
|
485 |
-
msgid "Line Height"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:444
|
489 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:445
|
490 |
-
msgid "Word Spacing"
|
491 |
-
msgstr "Kelime Aralığı"
|
492 |
-
|
493 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:453
|
494 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:454
|
495 |
-
msgid "Letter Spacing"
|
496 |
-
msgstr "Harf Aralığı"
|
497 |
-
|
498 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:472
|
499 |
-
msgid "Font Color"
|
500 |
-
msgstr "Yazı Rengi"
|
501 |
-
|
502 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:474
|
503 |
-
msgid "Font color"
|
504 |
-
msgstr "Yazı rengi"
|
505 |
-
|
506 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:851
|
507 |
-
msgid "Standard Fonts"
|
508 |
-
msgstr "Standart Yazı Tipleri"
|
509 |
-
|
510 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/typography/field_typography.php:952
|
511 |
-
msgid "Google Webfonts"
|
512 |
-
msgstr ""
|
513 |
-
|
514 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:78
|
515 |
-
msgid "Import / Export Options"
|
516 |
-
msgstr "Ayarları İçe aktar/Dışa aktar"
|
517 |
-
|
518 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:81
|
519 |
-
msgid "Import Options"
|
520 |
-
msgstr "Ayarları İçe Aktar"
|
521 |
-
|
522 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:82
|
523 |
-
msgid "Import from file"
|
524 |
-
msgstr "Dosyadan çek"
|
525 |
-
|
526 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:82
|
527 |
-
msgid "Import from URL"
|
528 |
-
msgstr "URL den çek"
|
529 |
-
|
530 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:85
|
531 |
-
msgid "Input your backup file below and hit Import to restore your sites options from a backup."
|
532 |
-
msgstr ""
|
533 |
-
|
534 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:90
|
535 |
-
msgid "Input the URL to another sites options set and hit Import to load the options from that site."
|
536 |
-
msgstr ""
|
537 |
-
|
538 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:94
|
539 |
-
msgid "Import"
|
540 |
-
msgstr "İçe Aktar"
|
541 |
-
|
542 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:94
|
543 |
-
msgid "WARNING! This will overwrite all existing option values, please proceed with caution!"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:97
|
547 |
-
msgid "Export Options"
|
548 |
-
msgstr "Ayarları Dışa Aktar"
|
549 |
-
|
550 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:100
|
551 |
-
msgid ""
|
552 |
-
"Here you can copy/download your current option settings. Keep this safe as you can use it as a backup should "
|
553 |
-
"anything go wrong, or you can use it to restore your settings on this site (or any other site)."
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
|
557 |
-
msgid "Copy"
|
558 |
-
msgstr "Kopyala"
|
559 |
-
|
560 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
|
561 |
-
msgid "Download"
|
562 |
-
msgstr "İndir"
|
563 |
-
|
564 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:104
|
565 |
-
msgid "Copy Link"
|
566 |
-
msgstr "Linki Kopyala"
|
567 |
-
|
568 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:140
|
569 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:149
|
570 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/import_export.php:150
|
571 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1533
|
572 |
-
msgid "Import / Export"
|
573 |
-
msgstr "İçe Aktar/Dışa Aktar"
|
574 |
-
|
575 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:129
|
576 |
-
msgid "Help improve Our Panel"
|
577 |
-
msgstr "Geliştirme Panelimize Yardım Et"
|
578 |
-
|
579 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:130
|
580 |
-
msgid ""
|
581 |
-
"Please helps us improve our panel by allowing us to gather anonymous usage stats so we know which "
|
582 |
-
"configurations, plugins and themes to test to ensure compatibility."
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
|
586 |
-
#: um-config.php:1625
|
587 |
-
msgid "Allow tracking"
|
588 |
-
msgstr "İzlemeye izin ver"
|
589 |
-
|
590 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:140 admin/core/um-admin-tracking.php:154
|
591 |
-
msgid "Do not allow tracking"
|
592 |
-
msgstr "İzlemeye izin verme"
|
593 |
-
|
594 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:151
|
595 |
-
msgid "Welcome to the Redux Demo Panel"
|
596 |
-
msgstr "Redux Demo Paneli'ne Hoşgeldiniz"
|
597 |
-
|
598 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
|
599 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:139
|
600 |
-
msgid "Getting Started"
|
601 |
-
msgstr "Başlangıç"
|
602 |
-
|
603 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
|
604 |
-
#, php-format
|
605 |
-
msgid ""
|
606 |
-
"This panel demonstrates the many features of Redux. Before digging in, we suggest you get up to speed by "
|
607 |
-
"reviewing %1$s."
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:152
|
611 |
-
msgid "our documentation"
|
612 |
-
msgstr "dökümanlarımız"
|
613 |
-
|
614 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:153
|
615 |
-
msgid "Redux Generator"
|
616 |
-
msgstr ""
|
617 |
-
|
618 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:153
|
619 |
-
#, php-format
|
620 |
-
msgid ""
|
621 |
-
"Want to get a head start? Use the %1$s. It will create a customized boilerplate theme or a standalone admin "
|
622 |
-
"folder complete with all things Redux (with the help of Underscores and TGM). Save yourself a headache and "
|
623 |
-
"try it today."
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
|
627 |
-
msgid "Redux Extensions"
|
628 |
-
msgstr "Redux Uzantılar"
|
629 |
-
|
630 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
|
631 |
-
#, php-format
|
632 |
-
msgid ""
|
633 |
-
"Did you know we have extensions, which greatly enhance the features of Redux? Visit our %1$s to learn more!"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:154
|
637 |
-
msgid "extensions directory"
|
638 |
-
msgstr "uzantılar klasörü"
|
639 |
-
|
640 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
|
641 |
-
msgid "Like Redux?"
|
642 |
-
msgstr "Redux'u Beğendin mi?"
|
643 |
-
|
644 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
|
645 |
-
#, php-format
|
646 |
-
msgid "If so, please %1$s and consider making a %2$s to keep development of Redux moving forward."
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
|
650 |
-
msgid "leave us a favorable review on WordPress.org"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:155
|
654 |
-
msgid "donation"
|
655 |
-
msgstr "bağış"
|
656 |
-
|
657 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:156
|
658 |
-
msgid "Newsletter"
|
659 |
-
msgstr "Bülten"
|
660 |
-
|
661 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:156
|
662 |
-
msgid "If you'd like to keep up to with all things Redux, please subscribe to our newsletter"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:157
|
666 |
-
msgid "Email address"
|
667 |
-
msgstr "E-posta adresi"
|
668 |
-
|
669 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:157
|
670 |
-
msgid "Subscribe"
|
671 |
-
msgstr "Abone"
|
672 |
-
|
673 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:166
|
674 |
-
msgid "Close"
|
675 |
-
msgstr "Kapat"
|
676 |
-
|
677 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/color/validation_color.php:15
|
678 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/color_rgba/validation_color_rgba.php:14
|
679 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/colorrgba/validation_colorrgba.php:16
|
680 |
-
msgid "This field must be a valid color value."
|
681 |
-
msgstr "Bu alan bir renk değeri olmalı."
|
682 |
-
|
683 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php:16
|
684 |
-
msgid "You must provide a comma separated list of numerical values for this option."
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/date/validation_date.php:16
|
688 |
-
msgid "This field must be a valid date."
|
689 |
-
msgstr "Bu alan bir tarih girilmeli."
|
690 |
-
|
691 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/email/validation_email.php:16
|
692 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php:16
|
693 |
-
msgid "You must provide a valid email for this option."
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/no_html/validation_no_html.php:15
|
697 |
-
msgid "You must not enter any HTML in this field, all HTML tags have been removed."
|
698 |
-
msgstr "Buraya hiç HTML etiketi girmemelisinz, tüm HTML etiketleri silinecektir."
|
699 |
-
|
700 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php:16
|
701 |
-
msgid "You must not enter any special characters in this field, all special characters have been removed."
|
702 |
-
msgstr "Buraya hiç bir özel karakter girmemelisiniz, tüm özel karakterler silinir."
|
703 |
-
|
704 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/not_empty/validation_not_empty.php:16
|
705 |
-
msgid "This field cannot be empty. Please provide a value."
|
706 |
-
msgstr "Bu alan boş olmamalı. Lütfen bir değer giriniz."
|
707 |
-
|
708 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/numeric/validation_numeric.php:16
|
709 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php:16
|
710 |
-
msgid "You must provide a numerical value for this option."
|
711 |
-
msgstr "Bu seçenek için sayısal bir değer girmelisiniz."
|
712 |
-
|
713 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/validation/url/validation_url.php:16
|
714 |
-
msgid "You must provide a valid URL for this option."
|
715 |
-
msgstr "Bu seçenek için bir URL girilmeli."
|
716 |
-
|
717 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:40
|
718 |
-
msgid "Welcome to Redux Framework"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:48
|
722 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:295
|
723 |
-
msgid "Redux Framework Changelog"
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:56
|
727 |
-
msgid "Getting started with Redux Framework"
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:64
|
731 |
-
msgid "The people that develop Redux Framework"
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:135
|
735 |
-
msgid "What's New"
|
736 |
-
msgstr "Neler Yeni"
|
737 |
-
|
738 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:143
|
739 |
-
msgid "Changelog"
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:147
|
743 |
-
msgid "Credits"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:164
|
747 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:333
|
748 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:471
|
749 |
-
#, php-format
|
750 |
-
msgid "Welcome to Redux Framework %s"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:167
|
754 |
-
#, php-format
|
755 |
-
msgid "Thank you for updating to the latest version! Redux Framework %s is ready to <add description>"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:169
|
759 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:300
|
760 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:338
|
761 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:476
|
762 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:210
|
763 |
-
#, php-format
|
764 |
-
msgid "Version %s"
|
765 |
-
msgstr "Sürüm %s"
|
766 |
-
|
767 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:174
|
768 |
-
msgid "Some Feature"
|
769 |
-
msgstr "Bazı Özellikler"
|
770 |
-
|
771 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:178
|
772 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:182
|
773 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:195
|
774 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:199
|
775 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:203
|
776 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:208
|
777 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:221
|
778 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:225
|
779 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:230
|
780 |
-
msgid "Feature"
|
781 |
-
msgstr "Özellik"
|
782 |
-
|
783 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:190
|
784 |
-
msgid "Some feature"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:217
|
788 |
-
msgid "More Features"
|
789 |
-
msgstr "Daha Fazla Özellik"
|
790 |
-
|
791 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:223
|
792 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:227
|
793 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:232
|
794 |
-
msgid "description"
|
795 |
-
msgstr "açıklama"
|
796 |
-
|
797 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:238
|
798 |
-
msgid "Additional Updates"
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:242
|
802 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:246
|
803 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:252
|
804 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:256
|
805 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:262
|
806 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:266
|
807 |
-
msgid "Cool thing"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:244
|
811 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:248
|
812 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:254
|
813 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:258
|
814 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:264
|
815 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:268
|
816 |
-
msgid "cool thing description."
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:277
|
820 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:316
|
821 |
-
msgid "Go to Redux Framework"
|
822 |
-
msgstr ""
|
823 |
-
|
824 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:278
|
825 |
-
msgid "View the Full Changelog"
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:298
|
829 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:336
|
830 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:474
|
831 |
-
#, php-format
|
832 |
-
msgid "Thank you for updating to the latest version! Redux Framework %s is ready to make your <description>"
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:305
|
836 |
-
msgid "Full Changelog"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:342
|
840 |
-
msgid "Use the tips below to get started using Redux Framework. You'll be up and running in no time!"
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:345
|
844 |
-
msgid "Creating Your First Panel"
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:350
|
848 |
-
#, php-format
|
849 |
-
msgid "<a href=\"%s\">%s → Add New</a>"
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:352
|
853 |
-
#, php-format
|
854 |
-
msgid ""
|
855 |
-
"The %s menu is your access point for all aspects of your Easy Digital Downloads product creation and setup. "
|
856 |
-
"To create your first product, simply click Add New and then fill out the product details."
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:354
|
860 |
-
msgid "Product Price"
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:356
|
864 |
-
msgid ""
|
865 |
-
"Products can have simple prices or variable prices if you wish to have more than one price point for a "
|
866 |
-
"product. For a single price, simply enter the price. For multiple price points, click <em>Enable variable "
|
867 |
-
"pricing</em> and enter the options."
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:358
|
871 |
-
msgid "Download Files"
|
872 |
-
msgstr "Dosyları İndir"
|
873 |
-
|
874 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:360
|
875 |
-
msgid ""
|
876 |
-
"Uploading the downloadable files is simple. Click <em>Upload File</em> in the Download Files section and "
|
877 |
-
"choose your download file. To add more than one file, simply click the <em>Add New</em> button."
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:366
|
881 |
-
msgid "Display a Product Grid"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:373
|
885 |
-
msgid "Flexible Product Grids"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:375
|
889 |
-
msgid ""
|
890 |
-
"The [downloads] shortcode will display a product grid that works with any theme, no matter the size. It is "
|
891 |
-
"even responsive!"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:377
|
895 |
-
msgid "Change the Number of Columns"
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:379
|
899 |
-
msgid "You can easily change the number of columns by adding the columns=\"x\" parameter:"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:385
|
903 |
-
msgid "Additional Display Options"
|
904 |
-
msgstr ""
|
905 |
-
|
906 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:387
|
907 |
-
#, php-format
|
908 |
-
msgid ""
|
909 |
-
"The product grids can be customized in any way you wish and there is <a href=\"%s\">extensive documentation</"
|
910 |
-
"a> to assist you."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:392
|
914 |
-
msgid "Purchase Buttons Anywhere"
|
915 |
-
msgstr ""
|
916 |
-
|
917 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:397
|
918 |
-
msgid "The <em>[purchase_link]</em> Shortcode"
|
919 |
-
msgstr ""
|
920 |
-
|
921 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:399
|
922 |
-
msgid ""
|
923 |
-
"With easily accessible shortcodes to display purchase buttons, you can add a Buy Now or Add to Cart button "
|
924 |
-
"for any product anywhere on your site in seconds."
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:401
|
928 |
-
msgid "Buy Now Buttons"
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:403
|
932 |
-
msgid ""
|
933 |
-
"Purchase buttons can behave as either Add to Cart or Buy Now buttons. With Buy Now buttons customers are "
|
934 |
-
"taken straight to PayPal, giving them the most frictionless purchasing experience possible."
|
935 |
-
msgstr ""
|
936 |
-
|
937 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:409
|
938 |
-
msgid "Need Help?"
|
939 |
-
msgstr "Yardıma ihtiyacın mı var?"
|
940 |
-
|
941 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:413
|
942 |
-
msgid "Phenomenal Support"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:415
|
946 |
-
msgid ""
|
947 |
-
"We do our best to provide the best support we can. If you encounter a problem or have a question, post a "
|
948 |
-
"question in the <a href=\"https://easydigitaldownloads.com/support\">support forums</a>."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:417
|
952 |
-
msgid "Need Even Faster Support?"
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:419
|
956 |
-
msgid ""
|
957 |
-
"Our <a href=\"https://easydigitaldownloads.com/support/pricing/\">Priority Support forums</a> are there for "
|
958 |
-
"customers that need faster and/or more in-depth assistance."
|
959 |
-
msgstr ""
|
960 |
-
|
961 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:425
|
962 |
-
msgid "Stay Up to Date"
|
963 |
-
msgstr ""
|
964 |
-
|
965 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:429
|
966 |
-
msgid "Get Notified of Extension Releases"
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:431
|
970 |
-
msgid ""
|
971 |
-
"New extensions that make Easy Digital Downloads even more powerful are released nearly every single week. "
|
972 |
-
"Subscribe to the newsletter to stay up to date with our latest releases. <a href=\"http://eepurl.com/kaerz\" "
|
973 |
-
"target=\"_blank\">Signup now</a> to ensure you do not miss a release!"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:433
|
977 |
-
msgid "Get Alerted About New Tutorials"
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:435
|
981 |
-
msgid ""
|
982 |
-
"<a href=\"http://eepurl.com/kaerz\" target=\"_blank\">Signup now</a> to hear about the latest tutorial "
|
983 |
-
"releases that explain how to take Easy Digital Downloads further."
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:441
|
987 |
-
msgid "Extensions for Everything"
|
988 |
-
msgstr "Herşey için Uzantılar"
|
989 |
-
|
990 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:445
|
991 |
-
msgid "Over 250 Extensions"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:447
|
995 |
-
msgid ""
|
996 |
-
"Add-on plugins are available that greatly extend the default functionality of Easy Digital Downloads. There "
|
997 |
-
"are extensions for payment processors, such as Stripe and PayPal, extensions for newsletter integrations, "
|
998 |
-
"and many, many more."
|
999 |
-
msgstr ""
|
1000 |
-
|
1001 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:449
|
1002 |
-
msgid "Visit the Extension Store"
|
1003 |
-
msgstr "Uzantı Mağazasını Ziyaret Et"
|
1004 |
-
|
1005 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:451
|
1006 |
-
msgid ""
|
1007 |
-
"<a href=\"https://asydigitaldownloads.com/extensions\" target=\"_blank\">The Extensions store</a> has a list "
|
1008 |
-
"of all available extensions, including convenient category filters so you can find exactly what you are "
|
1009 |
-
"looking for."
|
1010 |
-
msgstr ""
|
1011 |
-
|
1012 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:480
|
1013 |
-
msgid "Redux Framework is created by a worldwide team of developers who <something witty here>"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:500
|
1017 |
-
msgid "No valid changlog was found."
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: admin/core/lib/ReduxFramework/ReduxCore/inc/welcome.php:539
|
1021 |
-
#, php-format
|
1022 |
-
msgid "View %s"
|
1023 |
-
msgstr "%s Görüntülenme"
|
1024 |
-
|
1025 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:306
|
1026 |
-
msgid "Redux Framework has an embedded demo."
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:306
|
1030 |
-
msgid "Click here to activate the sample config file."
|
1031 |
-
msgstr "Örnek yapılandırma dosyasını etkinleştirmek için tıkla."
|
1032 |
-
|
1033 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:407
|
1034 |
-
msgid "Repo"
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:408
|
1038 |
-
msgid "Generator"
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:409
|
1042 |
-
msgid "Issues"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:410
|
1046 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1337
|
1047 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1567
|
1048 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1713
|
1049 |
-
msgid "Documentation"
|
1050 |
-
msgstr "Belgeleme"
|
1051 |
-
|
1052 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:415
|
1053 |
-
msgid "Deactivate Demo Mode"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: admin/core/lib/ReduxFramework/class.redux-plugin.php:417
|
1057 |
-
msgid "Activate Demo Mode"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:55
|
1061 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:239
|
1062 |
-
msgid "Home Settings"
|
1063 |
-
msgstr "Ana Ayarlar"
|
1064 |
-
|
1065 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:56
|
1066 |
-
#, php-format
|
1067 |
-
msgid ""
|
1068 |
-
"Redux Framework was created with the developer in mind. It allows for any theme developer to have an "
|
1069 |
-
"advanced theme panel with most of the features a developer would need. For more information check out the "
|
1070 |
-
"Github repo at: %d"
|
1071 |
-
msgstr ""
|
1072 |
-
|
1073 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:64
|
1074 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:248
|
1075 |
-
msgid "Web Fonts"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:68
|
1079 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:252
|
1080 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:281
|
1081 |
-
msgid "Basic media uploader with disabled URL input field."
|
1082 |
-
msgstr ""
|
1083 |
-
|
1084 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:69
|
1085 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:253
|
1086 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:282
|
1087 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:300
|
1088 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:308
|
1089 |
-
msgid "Upload any media using the WordPress native uploader"
|
1090 |
-
msgstr ""
|
1091 |
-
|
1092 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:84
|
1093 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1578
|
1094 |
-
msgid "Theme Information 1"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:85
|
1098 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:91
|
1099 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1579
|
1100 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1585
|
1101 |
-
msgid "<p>This is the tab content, HTML is allowed.</p>"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:90
|
1105 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1584
|
1106 |
-
msgid "Theme Information 2"
|
1107 |
-
msgstr ""
|
1108 |
-
|
1109 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:95
|
1110 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1589
|
1111 |
-
msgid "<p>This is the sidebar content, HTML is allowed.</p>"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:118
|
1115 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:119
|
1116 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1612
|
1117 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1613
|
1118 |
-
msgid "Sample Options"
|
1119 |
-
msgstr ""
|
1120 |
-
|
1121 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:236
|
1122 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1758
|
1123 |
-
#, php-format
|
1124 |
-
msgid ""
|
1125 |
-
"<p>Did you know that Redux sets a global variable for you? To access any of your saved options from within "
|
1126 |
-
"your code you can use your global variable: <strong>$%1$s</strong></p>"
|
1127 |
-
msgstr ""
|
1128 |
-
|
1129 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:238
|
1130 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1760
|
1131 |
-
msgid ""
|
1132 |
-
"<p>This text is displayed above the options panel. It isn't required, but more info is always better! The "
|
1133 |
-
"intro_text field accepts all HTML.</p>"
|
1134 |
-
msgstr ""
|
1135 |
-
|
1136 |
-
#: admin/core/lib/ReduxFramework/sample/barebones-config.php:242
|
1137 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1764
|
1138 |
-
msgid ""
|
1139 |
-
"<p>This text is displayed below the options panel. It isn't required, but more info is always better! The "
|
1140 |
-
"footer_text field accepts all HTML.</p>"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:108
|
1144 |
-
msgid "Section via hook"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:109
|
1148 |
-
msgid ""
|
1149 |
-
"<p class=\"description\">This is a section created by adding a filter to the sections array. Can be used by "
|
1150 |
-
"child themes to add/remove sections from the options.</p>"
|
1151 |
-
msgstr ""
|
1152 |
-
|
1153 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:189
|
1154 |
-
#, php-format
|
1155 |
-
msgid "Customize “%s”"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:209
|
1159 |
-
#, php-format
|
1160 |
-
msgid "By %s"
|
1161 |
-
msgstr ""
|
1162 |
-
|
1163 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:211
|
1164 |
-
msgid "Tags"
|
1165 |
-
msgstr "Etiketler"
|
1166 |
-
|
1167 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:216
|
1168 |
-
#, php-format
|
1169 |
-
msgid "This <a href=\"%1$s\">child theme</a> requires its parent theme, %2$s."
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:216
|
1173 |
-
msgid "http://codex.wordpress.org/Child_Themes"
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:240
|
1177 |
-
msgid ""
|
1178 |
-
"Redux Framework was created with the developer in mind. It allows for any theme developer to have an "
|
1179 |
-
"advanced theme panel with most of the features a developer would need. For more information check out the "
|
1180 |
-
"Github repo at: <a href=\"https://github.com/ReduxFramework/Redux-Framework\">https://github.com/"
|
1181 |
-
"ReduxFramework/Redux-Framework</a>"
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:262
|
1185 |
-
msgid "Section Show"
|
1186 |
-
msgstr "Bölüm Gösterimi"
|
1187 |
-
|
1188 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:263
|
1189 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:270
|
1190 |
-
msgid "With the \"section\" field you can create indent option sections."
|
1191 |
-
msgstr ""
|
1192 |
-
|
1193 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:269
|
1194 |
-
msgid "Media Options"
|
1195 |
-
msgstr "Ortam Seçenekleri"
|
1196 |
-
|
1197 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:278
|
1198 |
-
msgid "Media w/ URL"
|
1199 |
-
msgstr ""
|
1200 |
-
|
1201 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:298
|
1202 |
-
msgid "Media w/o URL"
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:299
|
1206 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:307
|
1207 |
-
msgid ""
|
1208 |
-
"This represents the minimalistic view. It does not have the preview box or the display URL in an input box. "
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:306
|
1212 |
-
msgid "Media No Preview"
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:314
|
1216 |
-
msgid "Create a new Gallery by selecting existing or uploading new images using the WordPress native uploader"
|
1217 |
-
msgstr ""
|
1218 |
-
|
1219 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:315
|
1220 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:702
|
1221 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:713
|
1222 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:731
|
1223 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:829
|
1224 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:843
|
1225 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:852
|
1226 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:859
|
1227 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:872
|
1228 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:881
|
1229 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:890
|
1230 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:912
|
1231 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:925
|
1232 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:934
|
1233 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:949
|
1234 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:958
|
1235 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:967
|
1236 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:977
|
1237 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:993
|
1238 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1001
|
1239 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1020
|
1240 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1028
|
1241 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1036
|
1242 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1050
|
1243 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1058
|
1244 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1108
|
1245 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1121
|
1246 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1141
|
1247 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1156
|
1248 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1189
|
1249 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1198
|
1250 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1206
|
1251 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1215
|
1252 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1223
|
1253 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1232
|
1254 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1240
|
1255 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1249
|
1256 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1257
|
1257 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1266
|
1258 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1276
|
1259 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1284
|
1260 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1293
|
1261 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1301
|
1262 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1310
|
1263 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1360
|
1264 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1371
|
1265 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1385
|
1266 |
-
msgid "This is the description field, again good for additional info."
|
1267 |
-
msgstr ""
|
1268 |
-
|
1269 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:320
|
1270 |
-
msgid "Slider Example 1"
|
1271 |
-
msgstr ""
|
1272 |
-
|
1273 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:321
|
1274 |
-
msgid "This slider displays the value as a label."
|
1275 |
-
msgstr ""
|
1276 |
-
|
1277 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:322
|
1278 |
-
msgid "Slider description. Min: 1, max: 500, step: 1, default value: 250"
|
1279 |
-
msgstr ""
|
1280 |
-
|
1281 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:332
|
1282 |
-
msgid "Slider Example 2 with Steps (5)"
|
1283 |
-
msgstr ""
|
1284 |
-
|
1285 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:333
|
1286 |
-
msgid "This example displays the value in a text box"
|
1287 |
-
msgstr ""
|
1288 |
-
|
1289 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:334
|
1290 |
-
msgid "Slider description. Min: 0, max: 300, step: 5, default value: 75"
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:344
|
1294 |
-
msgid "Slider Example 3 with two sliders"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:345
|
1298 |
-
msgid "This example displays the values in select boxes"
|
1299 |
-
msgstr ""
|
1300 |
-
|
1301 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:346
|
1302 |
-
msgid "Slider description. Min: 0, max: 500, step: 5, slider 1 default value: 100, slider 2 default value: 300"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:360
|
1306 |
-
msgid "Slider Example 4 with float values"
|
1307 |
-
msgstr ""
|
1308 |
-
|
1309 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:361
|
1310 |
-
msgid "This example displays float values"
|
1311 |
-
msgstr ""
|
1312 |
-
|
1313 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:362
|
1314 |
-
msgid "Slider description. Min: 0, max: 1, step: .1, default value: .5"
|
1315 |
-
msgstr ""
|
1316 |
-
|
1317 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:373
|
1318 |
-
msgid "JQuery UI Spinner Example 1"
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:374
|
1322 |
-
msgid "JQuery UI spinner description. Min:20, max: 100, step:20, default value: 40"
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:383
|
1326 |
-
msgid "Switch On"
|
1327 |
-
msgstr ""
|
1328 |
-
|
1329 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:384
|
1330 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:391
|
1331 |
-
msgid "Look, it's on!"
|
1332 |
-
msgstr ""
|
1333 |
-
|
1334 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:390
|
1335 |
-
msgid "Switch Off"
|
1336 |
-
msgstr ""
|
1337 |
-
|
1338 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:398
|
1339 |
-
msgid "Switch - Nested Children, Enable to show"
|
1340 |
-
msgstr ""
|
1341 |
-
|
1342 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:399
|
1343 |
-
msgid "Look, it's on! Also hidden child elements!"
|
1344 |
-
msgstr ""
|
1345 |
-
|
1346 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:408
|
1347 |
-
msgid "Switch - This and the next switch required for patterns to show"
|
1348 |
-
msgstr ""
|
1349 |
-
|
1350 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:409
|
1351 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:418
|
1352 |
-
msgid "Also called a \"fold\" parent."
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:410
|
1356 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:419
|
1357 |
-
msgid "Items set with a fold to this ID will hide unless this is set to the appropriate value."
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:417
|
1361 |
-
msgid "Switch2 - Enable the above switch and this one for patterns to show"
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:430
|
1365 |
-
msgid "Images Option (with pattern=>true)"
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:431
|
1369 |
-
msgid "Select a background pattern."
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:477
|
1373 |
-
msgid "Slides Options"
|
1374 |
-
msgstr "Slayt Seçenekleri"
|
1375 |
-
|
1376 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:478
|
1377 |
-
msgid "Unlimited slides with drag and drop sortings."
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:479
|
1381 |
-
msgid "This field will store all slides values into a multidimensional array to use into a foreach loop."
|
1382 |
-
msgstr ""
|
1383 |
-
|
1384 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:481
|
1385 |
-
msgid "This is a title"
|
1386 |
-
msgstr "Bu bir başlıktır"
|
1387 |
-
|
1388 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:482
|
1389 |
-
msgid "Description Here"
|
1390 |
-
msgstr "Açıklama Buraya"
|
1391 |
-
|
1392 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:483
|
1393 |
-
msgid "Give us a link!"
|
1394 |
-
msgstr ""
|
1395 |
-
|
1396 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:490
|
1397 |
-
msgid "Preset"
|
1398 |
-
msgstr "Ön Ayar"
|
1399 |
-
|
1400 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:491
|
1401 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:493
|
1402 |
-
msgid "This allows you to set a json string or array to override multiple preferences in your theme."
|
1403 |
-
msgstr ""
|
1404 |
-
|
1405 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:514
|
1406 |
-
msgid "Typography"
|
1407 |
-
msgstr ""
|
1408 |
-
|
1409 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:536
|
1410 |
-
msgid "Typography option with each property can be called individually."
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:555
|
1414 |
-
msgid "General Settings"
|
1415 |
-
msgstr "Genel Ayarlar"
|
1416 |
-
|
1417 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:561
|
1418 |
-
msgid "Main Layout"
|
1419 |
-
msgstr "Ana Düzen"
|
1420 |
-
|
1421 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:562
|
1422 |
-
msgid "Select main content and sidebar alignment. Choose between 1, 2 or 3 column layout."
|
1423 |
-
msgstr ""
|
1424 |
-
|
1425 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:595
|
1426 |
-
msgid "Tracking Code"
|
1427 |
-
msgstr "İzleme Kodu"
|
1428 |
-
|
1429 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:596
|
1430 |
-
msgid ""
|
1431 |
-
"Paste your Google Analytics (or other) tracking code here. This will be added into the footer template of "
|
1432 |
-
"your theme."
|
1433 |
-
msgstr ""
|
1434 |
-
|
1435 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:603
|
1436 |
-
msgid "CSS Code"
|
1437 |
-
msgstr "CSS Kod"
|
1438 |
-
|
1439 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:604
|
1440 |
-
msgid "Paste your CSS code here."
|
1441 |
-
msgstr "CSS kodunuzu buraya yapıştırınız."
|
1442 |
-
|
1443 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:635
|
1444 |
-
msgid "Footer Text"
|
1445 |
-
msgstr "Alt Bölüm Yazısı"
|
1446 |
-
|
1447 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:636
|
1448 |
-
msgid ""
|
1449 |
-
"You can use the following shortcodes in your footer text: [wp-url] [site-url] [theme-url] [login-url] "
|
1450 |
-
"[logout-url] [site-title] [site-tagline] [current-year]"
|
1451 |
-
msgstr ""
|
1452 |
-
|
1453 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:651
|
1454 |
-
msgid "Styling Options"
|
1455 |
-
msgstr "Biçim Seçenekleri"
|
1456 |
-
|
1457 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:657
|
1458 |
-
msgid "Theme Stylesheet"
|
1459 |
-
msgstr ""
|
1460 |
-
|
1461 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:658
|
1462 |
-
msgid "Select your themes alternative color scheme."
|
1463 |
-
msgstr ""
|
1464 |
-
|
1465 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:666
|
1466 |
-
msgid "Body Background Color"
|
1467 |
-
msgstr ""
|
1468 |
-
|
1469 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:667
|
1470 |
-
msgid "Pick a background color for the theme (default: #fff)."
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:675
|
1474 |
-
msgid "Body Background"
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:676
|
1478 |
-
msgid "Body background with image, color, etc."
|
1479 |
-
msgstr ""
|
1480 |
-
|
1481 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:682
|
1482 |
-
msgid "Footer Background Color"
|
1483 |
-
msgstr ""
|
1484 |
-
|
1485 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:683
|
1486 |
-
msgid "Pick a background color for the footer (default: #dd9933)."
|
1487 |
-
msgstr ""
|
1488 |
-
|
1489 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:690
|
1490 |
-
msgid "Color RGBA - BETA"
|
1491 |
-
msgstr ""
|
1492 |
-
|
1493 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:691
|
1494 |
-
msgid "Gives you the RGBA color. Still quite experimental. Use at your own risk."
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:700
|
1498 |
-
msgid "Header Gradient Color Option"
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:701
|
1502 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:712
|
1503 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:728
|
1504 |
-
msgid "Only color validation can be done on this field type"
|
1505 |
-
msgstr ""
|
1506 |
-
|
1507 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:711
|
1508 |
-
msgid "Links Color Option"
|
1509 |
-
msgstr "Bağlantı Rengi Seçeneği"
|
1510 |
-
|
1511 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:727
|
1512 |
-
msgid "Header Border Option"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:757
|
1516 |
-
msgid "Padding/Margin Option"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:758
|
1520 |
-
msgid "Allow your users to choose the spacing or margin they want."
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:759
|
1524 |
-
msgid "You can enable or disable any piece of this field. Top, Right, Bottom, Left, or Units."
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:772
|
1528 |
-
msgid "Dimensions (Width/Height) Option"
|
1529 |
-
msgstr ""
|
1530 |
-
|
1531 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:773
|
1532 |
-
msgid "Allow your users to choose width, height, and/or unit."
|
1533 |
-
msgstr ""
|
1534 |
-
|
1535 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:774
|
1536 |
-
msgid "You can enable or disable any piece of this field. Width, Height, or Units."
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:783
|
1540 |
-
msgid "Body Font"
|
1541 |
-
msgstr ""
|
1542 |
-
|
1543 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:784
|
1544 |
-
msgid "Specify the body font properties."
|
1545 |
-
msgstr ""
|
1546 |
-
|
1547 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:796 admin/core/um-admin-metabox.php:281
|
1548 |
-
#: admin/core/um-admin-metabox.php:287 admin/core/um-admin-metabox.php:293
|
1549 |
-
#: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
|
1550 |
-
#: admin/templates/form/register_css.php:4 um-config.php:1577 um-config.php:1583
|
1551 |
-
msgid "Custom CSS"
|
1552 |
-
msgstr "Özel CSS"
|
1553 |
-
|
1554 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:797
|
1555 |
-
msgid "Quickly add some CSS to your theme by adding it to this block."
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:798
|
1559 |
-
msgid "This field is even CSS validated!"
|
1560 |
-
msgstr ""
|
1561 |
-
|
1562 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:804
|
1563 |
-
msgid "Custom HTML"
|
1564 |
-
msgstr "Özel HTML"
|
1565 |
-
|
1566 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:805
|
1567 |
-
msgid "Just like a text box widget."
|
1568 |
-
msgstr "Sadece metin kutusu bileşeninin bir benzeri."
|
1569 |
-
|
1570 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:806
|
1571 |
-
msgid "This field is even HTML validated!"
|
1572 |
-
msgstr ""
|
1573 |
-
|
1574 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:820
|
1575 |
-
msgid "Field Validation"
|
1576 |
-
msgstr "Onaylama Alanı"
|
1577 |
-
|
1578 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:821
|
1579 |
-
msgid "Validate ALL fields within Redux."
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:822
|
1583 |
-
msgid "<p class=\"description\">This is the Description. Again HTML is allowed2</p>"
|
1584 |
-
msgstr ""
|
1585 |
-
|
1586 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:827
|
1587 |
-
msgid "Text Option - Email Validated"
|
1588 |
-
msgstr "Metin Seçeneği - E-posta Onayı"
|
1589 |
-
|
1590 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:828
|
1591 |
-
msgid "This is a little space under the Field Title in the Options table, additional info is good in here."
|
1592 |
-
msgstr ""
|
1593 |
-
|
1594 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:841
|
1595 |
-
msgid "Text Option with Data Attributes"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:842
|
1599 |
-
msgid "You can also pass an options array if you want. Set the default to whatever you like."
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:849
|
1603 |
-
msgid "Multi Text Option - Color Validated"
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:851
|
1607 |
-
msgid "If you enter an invalid color it will be removed. Try using the text \"blue\" as a color. ;)"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:857
|
1611 |
-
msgid "Text Option - URL Validated"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:858
|
1615 |
-
msgid "This must be a URL."
|
1616 |
-
msgstr "Bu bir URL olmalı."
|
1617 |
-
|
1618 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:870
|
1619 |
-
msgid "Text Option - Numeric Validated"
|
1620 |
-
msgstr ""
|
1621 |
-
|
1622 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:871
|
1623 |
-
msgid "This must be numeric."
|
1624 |
-
msgstr "Buraya bir sayısal değer gelmeli."
|
1625 |
-
|
1626 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:879
|
1627 |
-
msgid "Text Option - Comma Numeric Validated"
|
1628 |
-
msgstr ""
|
1629 |
-
|
1630 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:880
|
1631 |
-
msgid "This must be a comma separated string of numerical values."
|
1632 |
-
msgstr ""
|
1633 |
-
|
1634 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:888
|
1635 |
-
msgid "Text Option - No Special Chars Validated"
|
1636 |
-
msgstr ""
|
1637 |
-
|
1638 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:889
|
1639 |
-
msgid "This must be a alpha numeric only."
|
1640 |
-
msgstr "Buraya alfabetik ve sayısal bir değer gelmeli."
|
1641 |
-
|
1642 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:897
|
1643 |
-
msgid "Text Option - Str Replace Validated"
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:898
|
1647 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:911
|
1648 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:924
|
1649 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:933
|
1650 |
-
msgid "You decide."
|
1651 |
-
msgstr "Sen karar ver."
|
1652 |
-
|
1653 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:899
|
1654 |
-
msgid "This field's default value was changed by a filter hook!"
|
1655 |
-
msgstr ""
|
1656 |
-
|
1657 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:910
|
1658 |
-
msgid "Text Option - Preg Replace Validated"
|
1659 |
-
msgstr ""
|
1660 |
-
|
1661 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:923
|
1662 |
-
msgid "Text Option - Custom Callback Validated"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:932
|
1666 |
-
msgid "Text Option - Custom Callback Validated - Class"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:947
|
1670 |
-
msgid "Textarea Option - No HTML Validated"
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:948
|
1674 |
-
msgid "All HTML will be stripped"
|
1675 |
-
msgstr ""
|
1676 |
-
|
1677 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:956
|
1678 |
-
msgid "Textarea Option - HTML Validated"
|
1679 |
-
msgstr ""
|
1680 |
-
|
1681 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:957
|
1682 |
-
msgid "HTML Allowed (wp_kses)"
|
1683 |
-
msgstr ""
|
1684 |
-
|
1685 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:965
|
1686 |
-
msgid "Textarea Option - HTML Validated Custom"
|
1687 |
-
msgstr ""
|
1688 |
-
|
1689 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:966
|
1690 |
-
msgid "Custom HTML Allowed (wp_kses)"
|
1691 |
-
msgstr ""
|
1692 |
-
|
1693 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:975
|
1694 |
-
msgid "Textarea Option - JS Validated"
|
1695 |
-
msgstr ""
|
1696 |
-
|
1697 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:976
|
1698 |
-
msgid "JS will be escaped"
|
1699 |
-
msgstr ""
|
1700 |
-
|
1701 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:985
|
1702 |
-
msgid "Radio/Checkbox Fields"
|
1703 |
-
msgstr ""
|
1704 |
-
|
1705 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:986
|
1706 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1134
|
1707 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1353
|
1708 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1554
|
1709 |
-
msgid "<p class=\"description\">This is the Description. Again HTML is allowed</p>"
|
1710 |
-
msgstr ""
|
1711 |
-
|
1712 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:991
|
1713 |
-
msgid "Checkbox Option"
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:992
|
1717 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1000
|
1718 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1019
|
1719 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1027
|
1720 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1035
|
1721 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1049
|
1722 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1057
|
1723 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1072
|
1724 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1140
|
1725 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1155
|
1726 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1188
|
1727 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1197
|
1728 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1205
|
1729 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1214
|
1730 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1222
|
1731 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1231
|
1732 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1239
|
1733 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1248
|
1734 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1256
|
1735 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1265
|
1736 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1283
|
1737 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1292
|
1738 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1300
|
1739 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1309
|
1740 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1317
|
1741 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1359
|
1742 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1370
|
1743 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1384
|
1744 |
-
msgid "No validation can be done on this field type"
|
1745 |
-
msgstr ""
|
1746 |
-
|
1747 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:999
|
1748 |
-
msgid "Multi Checkbox Option"
|
1749 |
-
msgstr ""
|
1750 |
-
|
1751 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1018
|
1752 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1048
|
1753 |
-
msgid "Multi Checkbox Option (with menu data)"
|
1754 |
-
msgstr ""
|
1755 |
-
|
1756 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1026
|
1757 |
-
msgid "Multi Checkbox Option (with sidebar data)"
|
1758 |
-
msgstr ""
|
1759 |
-
|
1760 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1034
|
1761 |
-
msgid "Radio Option"
|
1762 |
-
msgstr ""
|
1763 |
-
|
1764 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1056
|
1765 |
-
msgid "Images Option"
|
1766 |
-
msgstr "Görseller Seçeneği"
|
1767 |
-
|
1768 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1071
|
1769 |
-
msgid "Images Option for Layout"
|
1770 |
-
msgstr ""
|
1771 |
-
|
1772 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1073
|
1773 |
-
msgid "This uses some of the built in images, you can use them for layout options."
|
1774 |
-
msgstr ""
|
1775 |
-
|
1776 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1106
|
1777 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1119
|
1778 |
-
msgid "Sortable Text Option"
|
1779 |
-
msgstr ""
|
1780 |
-
|
1781 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1107
|
1782 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1120
|
1783 |
-
msgid "Define and reorder these however you want."
|
1784 |
-
msgstr ""
|
1785 |
-
|
1786 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1133
|
1787 |
-
msgid "Select Fields"
|
1788 |
-
msgstr "Seçim Alanları"
|
1789 |
-
|
1790 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1139
|
1791 |
-
msgid "Select Option"
|
1792 |
-
msgstr "Ayar Seç"
|
1793 |
-
|
1794 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1154
|
1795 |
-
msgid "Multi Select Option"
|
1796 |
-
msgstr "Çoklu Seçme Ayarı"
|
1797 |
-
|
1798 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1169
|
1799 |
-
msgid "Select Image"
|
1800 |
-
msgstr "Görsel Seç"
|
1801 |
-
|
1802 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1170
|
1803 |
-
msgid "A preview of the selected image will appear underneath the select box."
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1181
|
1807 |
-
msgid "You can easily add a variety of data from WordPress."
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1187
|
1811 |
-
msgid "Categories Select Option"
|
1812 |
-
msgstr "Kategori Seçme Ayarı"
|
1813 |
-
|
1814 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1196
|
1815 |
-
msgid "Categories Multi Select Option"
|
1816 |
-
msgstr "Kategorileri Çoklu Seçme Ayarı"
|
1817 |
-
|
1818 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1204
|
1819 |
-
msgid "Pages Select Option"
|
1820 |
-
msgstr "Sayfa Seçme Ayarı"
|
1821 |
-
|
1822 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1213
|
1823 |
-
msgid "Pages Multi Select Option"
|
1824 |
-
msgstr "Sayfaları Çoklu Seçme Ayarı"
|
1825 |
-
|
1826 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1221
|
1827 |
-
msgid "Tags Select Option"
|
1828 |
-
msgstr "Etiket Seçme Ayarı"
|
1829 |
-
|
1830 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1230
|
1831 |
-
msgid "Tags Multi Select Option"
|
1832 |
-
msgstr "Etiketleri Çoklu Seçme Ayarı"
|
1833 |
-
|
1834 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1238
|
1835 |
-
msgid "Menus Select Option"
|
1836 |
-
msgstr "Menü Seçme Ayarı"
|
1837 |
-
|
1838 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1247
|
1839 |
-
msgid "Menus Multi Select Option"
|
1840 |
-
msgstr "Menüleri Çoklu Seçme Ayarı"
|
1841 |
-
|
1842 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1255
|
1843 |
-
msgid "Post Type Select Option"
|
1844 |
-
msgstr "Yazı Biçimi Seçme Ayarı"
|
1845 |
-
|
1846 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1264
|
1847 |
-
msgid "Post Type Multi Select Option"
|
1848 |
-
msgstr "Yazı Biçimlerini Çoklu Seçme Ayarı"
|
1849 |
-
|
1850 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1274
|
1851 |
-
msgid "Post Type Multi Select Option + Sortable"
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1275
|
1855 |
-
msgid "This field also has sortable enabled!"
|
1856 |
-
msgstr ""
|
1857 |
-
|
1858 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1282
|
1859 |
-
msgid "Posts Select Option2"
|
1860 |
-
msgstr ""
|
1861 |
-
|
1862 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1291
|
1863 |
-
msgid "Posts Multi Select Option"
|
1864 |
-
msgstr ""
|
1865 |
-
|
1866 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1299
|
1867 |
-
msgid "User Role Select Option"
|
1868 |
-
msgstr ""
|
1869 |
-
|
1870 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1308
|
1871 |
-
msgid "Capabilities Select Option"
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1316
|
1875 |
-
msgid "Elusive Icons Select Option"
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1318
|
1879 |
-
msgid "Here's a list of all the elusive icons by name and icon."
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1324
|
1883 |
-
msgid "<strong>Theme URL:</strong> "
|
1884 |
-
msgstr "<strong>Tema URLsi:</strong> "
|
1885 |
-
|
1886 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1325
|
1887 |
-
msgid "<strong>Author:</strong> "
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1326
|
1891 |
-
msgid "<strong>Version:</strong> "
|
1892 |
-
msgstr ""
|
1893 |
-
|
1894 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1330
|
1895 |
-
msgid "<strong>Tags:</strong> "
|
1896 |
-
msgstr ""
|
1897 |
-
|
1898 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1352
|
1899 |
-
msgid "Additional Fields"
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1358
|
1903 |
-
msgid "Date Option"
|
1904 |
-
msgstr "Tarih Seçeneği"
|
1905 |
-
|
1906 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1369
|
1907 |
-
msgid "Button Set Option"
|
1908 |
-
msgstr ""
|
1909 |
-
|
1910 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1383
|
1911 |
-
msgid "Button Set, Multi Select"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1398
|
1915 |
-
msgid "This is the info field, if you want to break sections up."
|
1916 |
-
msgstr ""
|
1917 |
-
|
1918 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1404
|
1919 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1412
|
1920 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1420
|
1921 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1434
|
1922 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1442
|
1923 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1451
|
1924 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1460
|
1925 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1469
|
1926 |
-
msgid "This is a title."
|
1927 |
-
msgstr "Bu bir başlıktır."
|
1928 |
-
|
1929 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1405
|
1930 |
-
msgid "This is an info field with the warning style applied and a header."
|
1931 |
-
msgstr ""
|
1932 |
-
|
1933 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1413
|
1934 |
-
msgid "This is an info field with the success style applied, a header and an icon."
|
1935 |
-
msgstr ""
|
1936 |
-
|
1937 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1421
|
1938 |
-
msgid "This is an info field with the critical style applied, a header and an icon."
|
1939 |
-
msgstr ""
|
1940 |
-
|
1941 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1435
|
1942 |
-
msgid "This is an info notice field with the normal style applied, a header and an icon."
|
1943 |
-
msgstr ""
|
1944 |
-
|
1945 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1443
|
1946 |
-
msgid "This is an info notice field with the info style applied, a header and an icon."
|
1947 |
-
msgstr ""
|
1948 |
-
|
1949 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1452
|
1950 |
-
msgid "This is an info notice field with the warning style applied, a header and an icon."
|
1951 |
-
msgstr ""
|
1952 |
-
|
1953 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1461
|
1954 |
-
msgid "This is an info notice field with the success style applied, a header and an icon."
|
1955 |
-
msgstr ""
|
1956 |
-
|
1957 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1470
|
1958 |
-
msgid "This is an notice field with the critical style applied, a header and an icon."
|
1959 |
-
msgstr ""
|
1960 |
-
|
1961 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1475
|
1962 |
-
msgid "Custom Field Callback"
|
1963 |
-
msgstr ""
|
1964 |
-
|
1965 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1476
|
1966 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1484
|
1967 |
-
msgid "This is a completely unique field type"
|
1968 |
-
msgstr ""
|
1969 |
-
|
1970 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1477
|
1971 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1485
|
1972 |
-
msgid ""
|
1973 |
-
"This is created with a callback function, so anything goes in this field. Make sure to define the function "
|
1974 |
-
"though."
|
1975 |
-
msgstr ""
|
1976 |
-
|
1977 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1483
|
1978 |
-
msgid "Custom Field Callback - Class"
|
1979 |
-
msgstr ""
|
1980 |
-
|
1981 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1493
|
1982 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1517
|
1983 |
-
msgid "Customizer Only Option"
|
1984 |
-
msgstr ""
|
1985 |
-
|
1986 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1494
|
1987 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1518
|
1988 |
-
msgid "The subtitle is NOT visible in customizer"
|
1989 |
-
msgstr ""
|
1990 |
-
|
1991 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1495
|
1992 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1519
|
1993 |
-
msgid "The field desc is NOT visible in customizer."
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1510
|
1997 |
-
msgid "Customizer Only"
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1511
|
2001 |
-
msgid "<p class=\"description\">This Section should be visible only in Customizer</p>"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1534
|
2005 |
-
msgid "Import and Export your Redux Framework settings from file, text or URL."
|
2006 |
-
msgstr ""
|
2007 |
-
|
2008 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1553
|
2009 |
-
msgid "Theme Information"
|
2010 |
-
msgstr "Tema Bilgisi."
|
2011 |
-
|
2012 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1719 index.php:58
|
2013 |
-
msgid "Support"
|
2014 |
-
msgstr "Destek"
|
2015 |
-
|
2016 |
-
#: admin/core/lib/ReduxFramework/sample/sample-config.php:1725
|
2017 |
-
msgid "Extensions"
|
2018 |
-
msgstr "Uzantılar"
|
2019 |
-
|
2020 |
-
#: admin/core/um-admin-access.php:95
|
2021 |
-
msgid "Access Control"
|
2022 |
-
msgstr "Veritabanı Kontrolu"
|
2023 |
-
|
2024 |
-
#: admin/core/um-admin-actions-ajax.php:11 admin/core/um-admin-actions-fields.php:11
|
2025 |
-
#: admin/core/um-admin-actions-modal.php:98
|
2026 |
-
msgid "Please login as administrator"
|
2027 |
-
msgstr "Lütfen yönetici olarak giriş yapın"
|
2028 |
-
|
2029 |
-
#: admin/core/um-admin-actions-modal.php:23
|
2030 |
-
msgid "Manage conditional fields support"
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#: admin/core/um-admin-actions-modal.php:25
|
2034 |
-
msgid "Add conditional fields support"
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: admin/core/um-admin-actions-modal.php:30
|
2038 |
-
msgid "Reset all rules"
|
2039 |
-
msgstr "Tüm kuralları sıfırla"
|
2040 |
-
|
2041 |
-
#: admin/core/um-admin-actions-modal.php:123
|
2042 |
-
msgid "Search Icons..."
|
2043 |
-
msgstr "İkon ara..."
|
2044 |
-
|
2045 |
-
#: admin/core/um-admin-actions-modal.php:144
|
2046 |
-
msgid "Setup New Field"
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
#: admin/core/um-admin-actions-modal.php:160
|
2050 |
-
msgid "Predefined Fields"
|
2051 |
-
msgstr ""
|
2052 |
-
|
2053 |
-
#: admin/core/um-admin-actions-modal.php:172
|
2054 |
-
msgid "None"
|
2055 |
-
msgstr "Yok"
|
2056 |
-
|
2057 |
-
#: admin/core/um-admin-actions-modal.php:176
|
2058 |
-
msgid "Custom Fields"
|
2059 |
-
msgstr ""
|
2060 |
-
|
2061 |
-
#: admin/core/um-admin-actions-modal.php:187
|
2062 |
-
msgid "You did not create any custom fields"
|
2063 |
-
msgstr ""
|
2064 |
-
|
2065 |
-
#: admin/core/um-admin-actions-modal.php:221 admin/core/um-admin-actions-modal.php:291
|
2066 |
-
msgid "This field type is not setup correcty."
|
2067 |
-
msgstr ""
|
2068 |
-
|
2069 |
-
#: admin/core/um-admin-builder.php:92 admin/core/um-admin-builder.php:158 admin/core/um-admin-dragdrop.php:140
|
2070 |
-
msgid "Add Row"
|
2071 |
-
msgstr ""
|
2072 |
-
|
2073 |
-
#: admin/core/um-admin-builder.php:93 admin/core/um-admin-builder.php:159 admin/core/um-admin-dragdrop.php:141
|
2074 |
-
msgid "Edit Row"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: admin/core/um-admin-builder.php:162 admin/core/um-admin-dragdrop.php:143
|
2078 |
-
#: admin/core/um-admin-dragdrop.php:157 admin/core/um-admin-dragdrop.php:182
|
2079 |
-
msgid "Delete Row"
|
2080 |
-
msgstr ""
|
2081 |
-
|
2082 |
-
#: admin/core/um-admin-columns.php:25 admin/core/um-admin-columns.php:43
|
2083 |
-
msgid "ID"
|
2084 |
-
msgstr ""
|
2085 |
-
|
2086 |
-
#: admin/core/um-admin-columns.php:27
|
2087 |
-
msgid "Type"
|
2088 |
-
msgstr ""
|
2089 |
-
|
2090 |
-
#: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:238
|
2091 |
-
#: admin/core/um-admin-metabox.php:278
|
2092 |
-
msgid "Shortcode"
|
2093 |
-
msgstr ""
|
2094 |
-
|
2095 |
-
#: admin/core/um-admin-columns.php:29 admin/core/um-admin-columns.php:46
|
2096 |
-
msgid "Date"
|
2097 |
-
msgstr "Tarih"
|
2098 |
-
|
2099 |
-
#: admin/core/um-admin-functions.php:28 admin/core/um-admin-functions.php:31
|
2100 |
-
msgid "Form updated."
|
2101 |
-
msgstr "Form güncellendi."
|
2102 |
-
|
2103 |
-
#: admin/core/um-admin-functions.php:29 admin/core/um-admin-functions.php:47
|
2104 |
-
msgid "Custom field updated."
|
2105 |
-
msgstr ""
|
2106 |
-
|
2107 |
-
#: admin/core/um-admin-functions.php:30 admin/core/um-admin-functions.php:48
|
2108 |
-
msgid "Custom field deleted."
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
#: admin/core/um-admin-functions.php:32
|
2112 |
-
msgid "Form restored to revision."
|
2113 |
-
msgstr ""
|
2114 |
-
|
2115 |
-
#: admin/core/um-admin-functions.php:33
|
2116 |
-
msgid "Form created."
|
2117 |
-
msgstr "Form oluşturuldu."
|
2118 |
-
|
2119 |
-
#: admin/core/um-admin-functions.php:34
|
2120 |
-
msgid "Form saved."
|
2121 |
-
msgstr "Form kaydedildi."
|
2122 |
-
|
2123 |
-
#: admin/core/um-admin-functions.php:35
|
2124 |
-
msgid "Form submitted."
|
2125 |
-
msgstr ""
|
2126 |
-
|
2127 |
-
#: admin/core/um-admin-functions.php:36
|
2128 |
-
msgid "Form scheduled."
|
2129 |
-
msgstr ""
|
2130 |
-
|
2131 |
-
#: admin/core/um-admin-functions.php:37
|
2132 |
-
msgid "Form draft updated."
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: admin/core/um-admin-functions.php:46 admin/core/um-admin-functions.php:49
|
2136 |
-
msgid "Role updated."
|
2137 |
-
msgstr "Rol güncellendi."
|
2138 |
-
|
2139 |
-
#: admin/core/um-admin-functions.php:50
|
2140 |
-
msgid "Role restored to revision."
|
2141 |
-
msgstr ""
|
2142 |
-
|
2143 |
-
#: admin/core/um-admin-functions.php:51
|
2144 |
-
msgid "Role created."
|
2145 |
-
msgstr "Rol oluşturuldu."
|
2146 |
-
|
2147 |
-
#: admin/core/um-admin-functions.php:52
|
2148 |
-
msgid "Role saved."
|
2149 |
-
msgstr "Rol kaydedildi."
|
2150 |
-
|
2151 |
-
#: admin/core/um-admin-functions.php:53
|
2152 |
-
msgid "Role submitted."
|
2153 |
-
msgstr ""
|
2154 |
-
|
2155 |
-
#: admin/core/um-admin-functions.php:54
|
2156 |
-
msgid "Role scheduled."
|
2157 |
-
msgstr ""
|
2158 |
-
|
2159 |
-
#: admin/core/um-admin-functions.php:55
|
2160 |
-
msgid "Role draft updated."
|
2161 |
-
msgstr ""
|
2162 |
-
|
2163 |
-
#: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:214
|
2164 |
-
#: um-config.php:224 um-config.php:234 um-config.php:244 um-config.php:276
|
2165 |
-
msgid "Yes"
|
2166 |
-
msgstr "Evet"
|
2167 |
-
|
2168 |
-
#: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
|
2169 |
-
#: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:215 um-config.php:225
|
2170 |
-
#: um-config.php:235 um-config.php:245 um-config.php:277
|
2171 |
-
msgid "No"
|
2172 |
-
msgstr "Hayır"
|
2173 |
-
|
2174 |
-
#: admin/core/um-admin-metabox.php:233
|
2175 |
-
msgid "General Options"
|
2176 |
-
msgstr "Genel Ayarlar"
|
2177 |
-
|
2178 |
-
#: admin/core/um-admin-metabox.php:234
|
2179 |
-
msgid "Profile Card"
|
2180 |
-
msgstr ""
|
2181 |
-
|
2182 |
-
#: admin/core/um-admin-metabox.php:235
|
2183 |
-
msgid "Search Options"
|
2184 |
-
msgstr "Arama Seçeneği"
|
2185 |
-
|
2186 |
-
#: admin/core/um-admin-metabox.php:236
|
2187 |
-
msgid "Results & Pagination"
|
2188 |
-
msgstr ""
|
2189 |
-
|
2190 |
-
#: admin/core/um-admin-metabox.php:240
|
2191 |
-
msgid "Styling: General"
|
2192 |
-
msgstr ""
|
2193 |
-
|
2194 |
-
#: admin/core/um-admin-metabox.php:242
|
2195 |
-
msgid "Styling: Profile Card"
|
2196 |
-
msgstr ""
|
2197 |
-
|
2198 |
-
#: admin/core/um-admin-metabox.php:251
|
2199 |
-
msgid "Administrative Permissions"
|
2200 |
-
msgstr ""
|
2201 |
-
|
2202 |
-
#: admin/core/um-admin-metabox.php:253
|
2203 |
-
msgid "General Permissions"
|
2204 |
-
msgstr "Genel İzinler"
|
2205 |
-
|
2206 |
-
#: admin/core/um-admin-metabox.php:255
|
2207 |
-
msgid "Profile Access"
|
2208 |
-
msgstr "Profil Verisi"
|
2209 |
-
|
2210 |
-
#: admin/core/um-admin-metabox.php:257
|
2211 |
-
msgid "Homepage Options"
|
2212 |
-
msgstr "Anasayfa Ayarları"
|
2213 |
-
|
2214 |
-
#: admin/core/um-admin-metabox.php:259
|
2215 |
-
msgid "Registration Options"
|
2216 |
-
msgstr "Kayıt Ayarları"
|
2217 |
-
|
2218 |
-
#: admin/core/um-admin-metabox.php:261
|
2219 |
-
msgid "Login Options"
|
2220 |
-
msgstr "Giriş Ayarları"
|
2221 |
-
|
2222 |
-
#: admin/core/um-admin-metabox.php:263
|
2223 |
-
msgid "Logout Options"
|
2224 |
-
msgstr "Çıkış Ayarları"
|
2225 |
-
|
2226 |
-
#: admin/core/um-admin-metabox.php:265
|
2227 |
-
msgid "Delete Options"
|
2228 |
-
msgstr "Silme Ayarları"
|
2229 |
-
|
2230 |
-
#: admin/core/um-admin-metabox.php:276
|
2231 |
-
msgid "Select Form Type"
|
2232 |
-
msgstr ""
|
2233 |
-
|
2234 |
-
#: admin/core/um-admin-metabox.php:277
|
2235 |
-
msgid "Form Builder"
|
2236 |
-
msgstr "Form Oluşturucu"
|
2237 |
-
|
2238 |
-
#: admin/core/um-admin-metabox.php:280 admin/core/um-admin-metabox.php:285 admin/core/um-admin-metabox.php:291
|
2239 |
-
msgid "Customize this form"
|
2240 |
-
msgstr ""
|
2241 |
-
|
2242 |
-
#: admin/core/um-admin-metabox.php:286
|
2243 |
-
msgid "User Meta"
|
2244 |
-
msgstr ""
|
2245 |
-
|
2246 |
-
#: admin/core/um-admin-metabox.php:444
|
2247 |
-
msgid ""
|
2248 |
-
"Select where this field should appear. This option should only be changed on the profile form and allows you "
|
2249 |
-
"to show a field in one mode only (edit or view) or in both modes."
|
2250 |
-
msgstr ""
|
2251 |
-
|
2252 |
-
#: admin/core/um-admin-metabox.php:478
|
2253 |
-
msgid "If"
|
2254 |
-
msgstr ""
|
2255 |
-
|
2256 |
-
#: admin/core/um-admin-metabox.php:547
|
2257 |
-
msgid "Value"
|
2258 |
-
msgstr ""
|
2259 |
-
|
2260 |
-
#: admin/core/um-admin-metabox.php:665
|
2261 |
-
msgid "Optional text to include with the divider"
|
2262 |
-
msgstr ""
|
2263 |
-
|
2264 |
-
#: admin/core/um-admin-metabox.php:856
|
2265 |
-
msgid ""
|
2266 |
-
"Turn on to force users to create a strong password (A combination of one lowercase letter, one uppercase "
|
2267 |
-
"letter, and one number). If turned on this option is only applied to register forms and not to login forms."
|
2268 |
-
msgstr ""
|
2269 |
-
|
2270 |
-
#: admin/core/um-admin-metabox.php:866
|
2271 |
-
msgid ""
|
2272 |
-
"Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
|
2273 |
-
"forms and not on login forms."
|
2274 |
-
msgstr ""
|
2275 |
-
|
2276 |
-
#: admin/core/um-admin-notices.php:24
|
2277 |
-
#, php-format
|
2278 |
-
msgid ""
|
2279 |
-
"Registration is disabled. Please go to the <a href=\"%s\">general settings</a> page in the WordPress admin "
|
2280 |
-
"and select anyone can register. <a href=\"%s\">Hide this notice</a>"
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
#: admin/core/um-admin-notices.php:36
|
2284 |
-
#, php-format
|
2285 |
-
msgid ""
|
2286 |
-
"Exif is not enabled on your server. Mobile photo uploads will not be rotated correctly until you enable the "
|
2287 |
-
"exif extension. <a href=\"%s\">Hide this notice</a>"
|
2288 |
-
msgstr ""
|
2289 |
-
|
2290 |
-
#: admin/core/um-admin-notices.php:55
|
2291 |
-
msgid "User has been updated."
|
2292 |
-
msgstr "Kullanıcı güncellendi."
|
2293 |
-
|
2294 |
-
#: admin/core/um-admin-notices.php:59
|
2295 |
-
msgid "Users have been updated."
|
2296 |
-
msgstr "Kullanıcılar güncellendi."
|
2297 |
-
|
2298 |
-
#: admin/core/um-admin-notices.php:63
|
2299 |
-
msgid "Super administrators cannot be modified."
|
2300 |
-
msgstr ""
|
2301 |
-
|
2302 |
-
#: admin/core/um-admin-notices.php:64
|
2303 |
-
msgid "Other users have been updated."
|
2304 |
-
msgstr ""
|
2305 |
-
|
2306 |
-
#: admin/core/um-admin-redux.php:59 admin/core/um-admin-redux.php:60 index.php:59
|
2307 |
-
msgid "Settings"
|
2308 |
-
msgstr "Ayarlar"
|
2309 |
-
|
2310 |
-
#: admin/core/um-admin-roles.php:20
|
2311 |
-
msgid "Role Title"
|
2312 |
-
msgstr "Rol Başlığı"
|
2313 |
-
|
2314 |
-
#: admin/core/um-admin-roles.php:21
|
2315 |
-
msgid "No. of Members"
|
2316 |
-
msgstr ""
|
2317 |
-
|
2318 |
-
#: admin/core/um-admin-roles.php:21
|
2319 |
-
msgid "The total number of members who have this role on your site"
|
2320 |
-
msgstr ""
|
2321 |
-
|
2322 |
-
#: admin/core/um-admin-roles.php:22
|
2323 |
-
msgid "Core / Built-in"
|
2324 |
-
msgstr ""
|
2325 |
-
|
2326 |
-
#: admin/core/um-admin-roles.php:22
|
2327 |
-
msgid "A core role is installed by default and may not be removed"
|
2328 |
-
msgstr ""
|
2329 |
-
|
2330 |
-
#: admin/core/um-admin-roles.php:23
|
2331 |
-
msgid "WP-Admin Access"
|
2332 |
-
msgstr ""
|
2333 |
-
|
2334 |
-
#: admin/core/um-admin-roles.php:23
|
2335 |
-
msgid "Let you know If users of this role can view the WordPress backend or not"
|
2336 |
-
msgstr ""
|
2337 |
-
|
2338 |
-
#: admin/core/um-admin-roles.php:46
|
2339 |
-
msgid "This role can access the WordPress backend"
|
2340 |
-
msgstr ""
|
2341 |
-
|
2342 |
-
#: admin/core/um-admin-roles.php:64
|
2343 |
-
msgid "Core"
|
2344 |
-
msgstr ""
|
2345 |
-
|
2346 |
-
#: admin/core/um-admin-tracking.php:149
|
2347 |
-
msgid ""
|
2348 |
-
"Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-"
|
2349 |
-
"sensitive data on your site. Click <a href=\"https://ultimatemember.com/tracking/\" target=\"_blank\">here</"
|
2350 |
-
"a> to see what data we track."
|
2351 |
-
msgstr ""
|
2352 |
-
|
2353 |
-
#: admin/core/um-admin-users.php:34
|
2354 |
-
msgid "Edit"
|
2355 |
-
msgstr "Düzenle"
|
2356 |
-
|
2357 |
-
#: admin/core/um-admin-users.php:35
|
2358 |
-
msgid "Edit in frontend"
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
#: admin/core/um-admin-users.php:111 admin/core/um-admin-users.php:147
|
2362 |
-
msgid "You do not have enough permissions to do that."
|
2363 |
-
msgstr ""
|
2364 |
-
|
2365 |
-
#: admin/core/um-admin-users.php:194 admin/core/um-admin-users.php:196
|
2366 |
-
msgid "Take Action"
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#: admin/core/um-admin-users.php:200 core/um-fields.php:1197
|
2370 |
-
msgid "Apply"
|
2371 |
-
msgstr "Uygula"
|
2372 |
-
|
2373 |
-
#: admin/core/um-admin-users.php:206
|
2374 |
-
msgid "Community role…"
|
2375 |
-
msgstr ""
|
2376 |
-
|
2377 |
-
#: admin/core/um-admin-users.php:213
|
2378 |
-
msgid "Change"
|
2379 |
-
msgstr "Değiştir"
|
2380 |
-
|
2381 |
-
#: admin/core/um-admin-users.php:231
|
2382 |
-
msgid "Community Role"
|
2383 |
-
msgstr "Topluluk Rolü"
|
2384 |
-
|
2385 |
-
#: admin/core/um-admin-users.php:231
|
2386 |
-
msgid "This is the membership role set by Ultimate Member plugin"
|
2387 |
-
msgstr ""
|
2388 |
-
|
2389 |
-
#: admin/core/um-admin-users.php:233
|
2390 |
-
msgid "WordPress Role"
|
2391 |
-
msgstr "WordPress Rolü"
|
2392 |
-
|
2393 |
-
#: admin/core/um-admin-users.php:233
|
2394 |
-
msgid "This is the membership role set by WordPress"
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
#: admin/core/um-admin-users.php:235
|
2398 |
-
msgid "Status"
|
2399 |
-
msgstr "Durum"
|
2400 |
-
|
2401 |
-
#: admin/core/um-admin-users.php:235
|
2402 |
-
msgid "This is current user status in your membership site"
|
2403 |
-
msgstr ""
|
2404 |
-
|
2405 |
-
#: admin/templates/access/settings.php:1
|
2406 |
-
msgid "Apply custom access settings?"
|
2407 |
-
msgstr ""
|
2408 |
-
|
2409 |
-
#: admin/templates/access/settings.php:1
|
2410 |
-
msgid "Switch to yes to override global access settings"
|
2411 |
-
msgstr ""
|
2412 |
-
|
2413 |
-
#: admin/templates/access/settings.php:10
|
2414 |
-
msgid "Content Availability"
|
2415 |
-
msgstr ""
|
2416 |
-
|
2417 |
-
#: admin/templates/access/settings.php:10
|
2418 |
-
msgid "Who can access this content?"
|
2419 |
-
msgstr ""
|
2420 |
-
|
2421 |
-
#: admin/templates/access/settings.php:16
|
2422 |
-
msgid "Content accessible to Everyone"
|
2423 |
-
msgstr ""
|
2424 |
-
|
2425 |
-
#: admin/templates/access/settings.php:17
|
2426 |
-
msgid "Content accessible to Logged Out Users"
|
2427 |
-
msgstr ""
|
2428 |
-
|
2429 |
-
#: admin/templates/access/settings.php:18
|
2430 |
-
msgid "Content accessible to Logged In Users"
|
2431 |
-
msgstr ""
|
2432 |
-
|
2433 |
-
#: admin/templates/access/settings.php:24 admin/templates/access/settings.php:50
|
2434 |
-
msgid "Redirect URL"
|
2435 |
-
msgstr "URL Yönlendirme"
|
2436 |
-
|
2437 |
-
#: admin/templates/access/settings.php:24 admin/templates/access/settings.php:50
|
2438 |
-
msgid "This is the URL that user is redirected to If he is not permitted to view this content"
|
2439 |
-
msgstr ""
|
2440 |
-
|
2441 |
-
#: admin/templates/access/settings.php:38
|
2442 |
-
msgid "Select the member roles that can see this content?"
|
2443 |
-
msgstr ""
|
2444 |
-
|
2445 |
-
#: admin/templates/access/settings.php:38
|
2446 |
-
msgid "If you do not select any role, all members will be able to view this content"
|
2447 |
-
msgstr ""
|
2448 |
-
|
2449 |
-
#: admin/templates/dashboard/overview.php:83
|
2450 |
-
msgid "No users are awaiting manual verification so far."
|
2451 |
-
msgstr ""
|
2452 |
-
|
2453 |
-
#: admin/templates/dashboard/overview.php:120
|
2454 |
-
msgid "No users are awaiting e-mail validation yet."
|
2455 |
-
msgstr ""
|
2456 |
-
|
2457 |
-
#: admin/templates/dashboard/overview.php:153
|
2458 |
-
msgid "No users have been deactivated recently."
|
2459 |
-
msgstr ""
|
2460 |
-
|
2461 |
-
#: admin/templates/directory/appearance.php:3 admin/templates/form/login_customize.php:14
|
2462 |
-
#: admin/templates/form/profile_customize.php:26 admin/templates/form/register_customize.php:26
|
2463 |
-
msgid "Template"
|
2464 |
-
msgstr "Tema"
|
2465 |
-
|
2466 |
-
#: admin/templates/directory/general.php:19
|
2467 |
-
msgid "User Roles to Display"
|
2468 |
-
msgstr ""
|
2469 |
-
|
2470 |
-
#: admin/templates/directory/general.php:32
|
2471 |
-
msgid "Only show members who have uploaded a profile photo"
|
2472 |
-
msgstr "Sadece profil fotosu yükleyen kullanıcıları göster"
|
2473 |
-
|
2474 |
-
#: admin/templates/directory/general.php:41
|
2475 |
-
msgid "Only show members who have uploaded a cover photo"
|
2476 |
-
msgstr "Sadece kapak fotosu yükleyen kullanıcıları göster"
|
2477 |
-
|
2478 |
-
#: admin/templates/directory/general.php:50
|
2479 |
-
msgid "Sort users by"
|
2480 |
-
msgstr ""
|
2481 |
-
|
2482 |
-
#: admin/templates/directory/general.php:67
|
2483 |
-
msgid "Meta key"
|
2484 |
-
msgstr "Anahtar kelime"
|
2485 |
-
|
2486 |
-
#: admin/templates/directory/pagination.php:6
|
2487 |
-
msgid "Number of profiles per page"
|
2488 |
-
msgstr "Sayfa başına düşen profil sayısı"
|
2489 |
-
|
2490 |
-
#: admin/templates/directory/pagination.php:6
|
2491 |
-
msgid "Number of profiles to appear on page for standard users"
|
2492 |
-
msgstr ""
|
2493 |
-
|
2494 |
-
#: admin/templates/directory/pagination.php:15
|
2495 |
-
msgid "Number of profiles per page (for Mobiles & Tablets)"
|
2496 |
-
msgstr ""
|
2497 |
-
|
2498 |
-
#: admin/templates/directory/pagination.php:15
|
2499 |
-
msgid "Number of profiles to appear on page for mobile users"
|
2500 |
-
msgstr ""
|
2501 |
-
|
2502 |
-
#: admin/templates/directory/pagination.php:24
|
2503 |
-
msgid "Maximum number of profiles"
|
2504 |
-
msgstr "En yüksek profil sayısı"
|
2505 |
-
|
2506 |
-
#: admin/templates/directory/pagination.php:24
|
2507 |
-
msgid ""
|
2508 |
-
"Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to "
|
2509 |
-
"disable this limit"
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: admin/templates/directory/profile.php:6
|
2513 |
-
msgid "Enable Profile Photo"
|
2514 |
-
msgstr "Profil Fotosunu Etkinleştir"
|
2515 |
-
|
2516 |
-
#: admin/templates/directory/profile.php:15
|
2517 |
-
msgid "Enable Cover Photo"
|
2518 |
-
msgstr "Kapak Fotoğrafını Etkinleştir"
|
2519 |
-
|
2520 |
-
#: admin/templates/directory/profile.php:24
|
2521 |
-
msgid "Show display name"
|
2522 |
-
msgstr "Görünür ismi göster"
|
2523 |
-
|
2524 |
-
#: admin/templates/directory/profile.php:33
|
2525 |
-
msgid "Show tagline below profile name"
|
2526 |
-
msgstr ""
|
2527 |
-
|
2528 |
-
#: admin/templates/directory/profile.php:42
|
2529 |
-
msgid "Choose field(s) to display in tagline"
|
2530 |
-
msgstr ""
|
2531 |
-
|
2532 |
-
#: admin/templates/directory/profile.php:90
|
2533 |
-
msgid "Show extra user information below tagline?"
|
2534 |
-
msgstr ""
|
2535 |
-
|
2536 |
-
#: admin/templates/directory/profile.php:99
|
2537 |
-
msgid "Enable reveal section transition by default"
|
2538 |
-
msgstr ""
|
2539 |
-
|
2540 |
-
#: admin/templates/directory/profile.php:108
|
2541 |
-
msgid "Choose field(s) to display in reveal section"
|
2542 |
-
msgstr ""
|
2543 |
-
|
2544 |
-
#: admin/templates/directory/profile.php:156
|
2545 |
-
msgid "Show social connect icons"
|
2546 |
-
msgstr "Sosyal bağlantı ikonlarını göster"
|
2547 |
-
|
2548 |
-
#: admin/templates/directory/profile_card.php:3
|
2549 |
-
msgid "Profile card background"
|
2550 |
-
msgstr ""
|
2551 |
-
|
2552 |
-
#: admin/templates/directory/profile_card.php:7
|
2553 |
-
msgid "Profile card text"
|
2554 |
-
msgstr "Profil kart yazısı"
|
2555 |
-
|
2556 |
-
#: admin/templates/directory/profile_card.php:11
|
2557 |
-
msgid "Profile card border color"
|
2558 |
-
msgstr ""
|
2559 |
-
|
2560 |
-
#: admin/templates/directory/profile_card.php:15
|
2561 |
-
msgid "Profile photo border color"
|
2562 |
-
msgstr ""
|
2563 |
-
|
2564 |
-
#: admin/templates/directory/profile_card.php:19
|
2565 |
-
msgid "Profile card border thickness"
|
2566 |
-
msgstr ""
|
2567 |
-
|
2568 |
-
#: admin/templates/directory/search.php:6
|
2569 |
-
msgid "Enable Search feature"
|
2570 |
-
msgstr "Arama Özelliğini Etkinleştir"
|
2571 |
-
|
2572 |
-
#: admin/templates/directory/search.php:15
|
2573 |
-
msgid "User Roles that can use search"
|
2574 |
-
msgstr ""
|
2575 |
-
|
2576 |
-
#: admin/templates/directory/search.php:28
|
2577 |
-
msgid "Choose field(s) to enable in search"
|
2578 |
-
msgstr ""
|
2579 |
-
|
2580 |
-
#: admin/templates/directory/search.php:76
|
2581 |
-
msgid "Results Text"
|
2582 |
-
msgstr ""
|
2583 |
-
|
2584 |
-
#: admin/templates/directory/search.php:76
|
2585 |
-
msgid "Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text"
|
2586 |
-
msgstr ""
|
2587 |
-
|
2588 |
-
#: admin/templates/directory/search.php:79 core/um-setup.php:47 core/um-setup.php:152
|
2589 |
-
msgid "{total_users} Members"
|
2590 |
-
msgstr ""
|
2591 |
-
|
2592 |
-
#: admin/templates/directory/search.php:85
|
2593 |
-
msgid "Single Result Text"
|
2594 |
-
msgstr ""
|
2595 |
-
|
2596 |
-
#: admin/templates/directory/search.php:85
|
2597 |
-
msgid "Same as above but in case of 1 user found only"
|
2598 |
-
msgstr ""
|
2599 |
-
|
2600 |
-
#: admin/templates/directory/search.php:88 core/um-setup.php:48 core/um-setup.php:153
|
2601 |
-
msgid "{total_users} Member"
|
2602 |
-
msgstr "{total_users} Üye"
|
2603 |
-
|
2604 |
-
#: admin/templates/directory/search.php:94
|
2605 |
-
msgid "Custom text if no users were found"
|
2606 |
-
msgstr ""
|
2607 |
-
|
2608 |
-
#: admin/templates/directory/search.php:97 core/um-setup.php:49
|
2609 |
-
msgid "We are sorry. We cannot find any users who match your search criteria."
|
2610 |
-
msgstr "Üzgünüz. Sizin arama kriterlerinize uygun bir üye bulamadık."
|
2611 |
-
|
2612 |
-
#: admin/templates/form/builder.php:14
|
2613 |
-
msgid "Live Preview"
|
2614 |
-
msgstr "Canlı Önizleme"
|
2615 |
-
|
2616 |
-
#: admin/templates/form/builder.php:28
|
2617 |
-
msgid "Add Master Row"
|
2618 |
-
msgstr ""
|
2619 |
-
|
2620 |
-
#: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
|
2621 |
-
#: admin/templates/form/register_css.php:4
|
2622 |
-
msgid "Enter custom css that will be applied to this form only"
|
2623 |
-
msgstr ""
|
2624 |
-
|
2625 |
-
#: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
|
2626 |
-
#: admin/templates/form/register_customize.php:4
|
2627 |
-
msgid "Use global settings?"
|
2628 |
-
msgstr ""
|
2629 |
-
|
2630 |
-
#: admin/templates/form/login_customize.php:26 admin/templates/form/profile_customize.php:38
|
2631 |
-
#: admin/templates/form/register_customize.php:38
|
2632 |
-
msgid "Max. Width (px)"
|
2633 |
-
msgstr "Max. Genişlik (px)"
|
2634 |
-
|
2635 |
-
#: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:46
|
2636 |
-
#: admin/templates/form/register_customize.php:42
|
2637 |
-
msgid "Alignment"
|
2638 |
-
msgstr "Hiza"
|
2639 |
-
|
2640 |
-
#: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:56
|
2641 |
-
#: admin/templates/form/register_customize.php:52
|
2642 |
-
msgid "Field Icons"
|
2643 |
-
msgstr ""
|
2644 |
-
|
2645 |
-
#: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:66
|
2646 |
-
#: admin/templates/form/register_customize.php:62
|
2647 |
-
msgid "Primary Button Text"
|
2648 |
-
msgstr ""
|
2649 |
-
|
2650 |
-
#: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:70
|
2651 |
-
#: admin/templates/form/register_customize.php:66
|
2652 |
-
msgid "Primary Button Color"
|
2653 |
-
msgstr ""
|
2654 |
-
|
2655 |
-
#: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:74
|
2656 |
-
#: admin/templates/form/register_customize.php:70
|
2657 |
-
msgid "Primary Button Hover Color"
|
2658 |
-
msgstr ""
|
2659 |
-
|
2660 |
-
#: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:78
|
2661 |
-
#: admin/templates/form/register_customize.php:74
|
2662 |
-
msgid "Primary Button Text Color"
|
2663 |
-
msgstr ""
|
2664 |
-
|
2665 |
-
#: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:83
|
2666 |
-
#: admin/templates/form/register_customize.php:79
|
2667 |
-
msgid "Show Secondary Button"
|
2668 |
-
msgstr ""
|
2669 |
-
|
2670 |
-
#: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:91
|
2671 |
-
#: admin/templates/form/register_customize.php:87
|
2672 |
-
msgid "Secondary Button Text"
|
2673 |
-
msgstr ""
|
2674 |
-
|
2675 |
-
#: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:95
|
2676 |
-
#: admin/templates/form/register_customize.php:91
|
2677 |
-
msgid "Secondary Button Color"
|
2678 |
-
msgstr ""
|
2679 |
-
|
2680 |
-
#: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:99
|
2681 |
-
#: admin/templates/form/register_customize.php:95
|
2682 |
-
msgid "Secondary Button Hover Color"
|
2683 |
-
msgstr ""
|
2684 |
-
|
2685 |
-
#: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:103
|
2686 |
-
#: admin/templates/form/register_customize.php:99
|
2687 |
-
msgid "Secondary Button Text Color"
|
2688 |
-
msgstr ""
|
2689 |
-
|
2690 |
-
#: admin/templates/form/login_customize.php:92
|
2691 |
-
msgid "Show Forgot Password Link?"
|
2692 |
-
msgstr "Parolamı Unuttum Bağalntısı Görünsün mü?"
|
2693 |
-
|
2694 |
-
#: admin/templates/form/login_settings.php:3
|
2695 |
-
msgid "Redirection after Login"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: admin/templates/form/login_settings.php:16 admin/templates/role/delete.php:18
|
2699 |
-
#: admin/templates/role/login.php:20 admin/templates/role/logout.php:18 admin/templates/role/register.php:37
|
2700 |
-
#: admin/templates/role/register.php:75 admin/templates/role/register.php:113
|
2701 |
-
msgid "Set Custom Redirect URL"
|
2702 |
-
msgstr ""
|
2703 |
-
|
2704 |
-
#: admin/templates/form/mode.php:6
|
2705 |
-
msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
|
2706 |
-
msgstr ""
|
2707 |
-
|
2708 |
-
#: admin/templates/form/mode.php:9 um-config.php:1397
|
2709 |
-
msgid "Registration Form"
|
2710 |
-
msgstr "Kayıt Formu"
|
2711 |
-
|
2712 |
-
#: admin/templates/form/mode.php:11
|
2713 |
-
msgid "Profile Form"
|
2714 |
-
msgstr "Profil Formu"
|
2715 |
-
|
2716 |
-
#: admin/templates/form/mode.php:13 um-config.php:1488
|
2717 |
-
msgid "Login Form"
|
2718 |
-
msgstr "Giriş Formu"
|
2719 |
-
|
2720 |
-
#: admin/templates/form/profile_customize.php:14
|
2721 |
-
msgid "Make this profile role-specific"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: admin/templates/form/profile_customize.php:42
|
2725 |
-
msgid "Profile Area Max. Width (px)"
|
2726 |
-
msgstr "Profil Bölgesi Max. Genişlik (px)"
|
2727 |
-
|
2728 |
-
#: admin/templates/form/profile_customize.php:107
|
2729 |
-
msgid "Base Background Color"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: admin/templates/form/profile_customize.php:111
|
2733 |
-
msgid "Enable Cover Photos"
|
2734 |
-
msgstr "Kapak Fotoğrafını Etkinleştir"
|
2735 |
-
|
2736 |
-
#: admin/templates/form/profile_customize.php:119
|
2737 |
-
msgid "Cover photo ratio"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: admin/templates/form/profile_customize.php:129 um-config.php:1195
|
2741 |
-
msgid "Profile Photo Size"
|
2742 |
-
msgstr "Profil Foto Boyutu"
|
2743 |
-
|
2744 |
-
#: admin/templates/form/profile_customize.php:133 um-config.php:1204
|
2745 |
-
msgid "Profile Photo Style"
|
2746 |
-
msgstr "Profil Foto Biçimi"
|
2747 |
-
|
2748 |
-
#: admin/templates/form/profile_customize.php:136 um-config.php:1208
|
2749 |
-
msgid "Circle"
|
2750 |
-
msgstr "Çember"
|
2751 |
-
|
2752 |
-
#: admin/templates/form/profile_customize.php:137 um-config.php:1209
|
2753 |
-
msgid "Rounded Corners"
|
2754 |
-
msgstr "Yuvarlatılmış Köşeler"
|
2755 |
-
|
2756 |
-
#: admin/templates/form/profile_customize.php:138 um-config.php:1210
|
2757 |
-
msgid "Square"
|
2758 |
-
msgstr "Kare"
|
2759 |
-
|
2760 |
-
#: admin/templates/form/profile_customize.php:143
|
2761 |
-
msgid "Header Background Color"
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: admin/templates/form/profile_customize.php:147
|
2765 |
-
msgid "Header Meta Text Color"
|
2766 |
-
msgstr ""
|
2767 |
-
|
2768 |
-
#: admin/templates/form/profile_customize.php:151
|
2769 |
-
msgid "Header Link Color"
|
2770 |
-
msgstr "Başlık Linki Rengi"
|
2771 |
-
|
2772 |
-
#: admin/templates/form/profile_customize.php:155
|
2773 |
-
msgid "Header Link Hover"
|
2774 |
-
msgstr ""
|
2775 |
-
|
2776 |
-
#: admin/templates/form/profile_customize.php:159
|
2777 |
-
msgid "Header Icon Link Color"
|
2778 |
-
msgstr ""
|
2779 |
-
|
2780 |
-
#: admin/templates/form/profile_customize.php:163
|
2781 |
-
msgid "Header Icon Link Hover"
|
2782 |
-
msgstr ""
|
2783 |
-
|
2784 |
-
#: admin/templates/form/profile_customize.php:168
|
2785 |
-
msgid "Show display name in profile header?"
|
2786 |
-
msgstr "Profil başlığında görünür ismi göster?"
|
2787 |
-
|
2788 |
-
#: admin/templates/form/profile_customize.php:177
|
2789 |
-
msgid "Show user description in profile header?"
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: admin/templates/form/profile_settings.php:4
|
2793 |
-
msgid "Field(s) to show in user meta"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: admin/templates/form/register_customize.php:4
|
2797 |
-
msgid "Switch to no if you want to customize this form settings, styling & appearance"
|
2798 |
-
msgstr ""
|
2799 |
-
|
2800 |
-
#: admin/templates/form/register_customize.php:14
|
2801 |
-
msgid "Assign role to form"
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: admin/templates/form/register_customize.php:42 um-config.php:1097 um-config.php:1423 um-config.php:1514
|
2805 |
-
msgid "The shortcode is centered by default unless you specify otherwise here"
|
2806 |
-
msgstr ""
|
2807 |
-
|
2808 |
-
#: admin/templates/form/register_customize.php:52
|
2809 |
-
msgid "Whether to show field icons and where to show them relative to the field"
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#: admin/templates/form/register_customize.php:62 admin/templates/form/register_customize.php:87
|
2813 |
-
msgid "Customize the button text"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: admin/templates/form/register_customize.php:66
|
2817 |
-
msgid "Override the default primary button color"
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: admin/templates/form/register_customize.php:70
|
2821 |
-
msgid "Override the default primary button hover color"
|
2822 |
-
msgstr ""
|
2823 |
-
|
2824 |
-
#: admin/templates/form/register_customize.php:74
|
2825 |
-
msgid "Override the default primary button text color"
|
2826 |
-
msgstr ""
|
2827 |
-
|
2828 |
-
#: admin/templates/form/register_customize.php:91
|
2829 |
-
msgid "Override the default secondary button color"
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: admin/templates/form/register_customize.php:95
|
2833 |
-
msgid "Override the default secondary button hover color"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: admin/templates/form/register_customize.php:99
|
2837 |
-
msgid "Override the default secondary button text color"
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: admin/templates/modal/dynamic_edit_field.php:6
|
2841 |
-
msgid "Edit Field"
|
2842 |
-
msgstr "Alanı Düzenle"
|
2843 |
-
|
2844 |
-
#: admin/templates/modal/dynamic_edit_field.php:14 admin/templates/modal/dynamic_edit_row.php:14
|
2845 |
-
msgid "Update"
|
2846 |
-
msgstr "Güncelle"
|
2847 |
-
|
2848 |
-
#: admin/templates/modal/dynamic_edit_field.php:15 admin/templates/modal/dynamic_edit_row.php:15
|
2849 |
-
#: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
|
2850 |
-
#: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:169
|
2851 |
-
#: core/um-actions-profile.php:268 core/um-actions-profile.php:278 core/um-actions-profile.php:403
|
2852 |
-
#: core/um-fields.php:1198 core/um-fields.php:1283
|
2853 |
-
msgid "Cancel"
|
2854 |
-
msgstr "Vazgeç"
|
2855 |
-
|
2856 |
-
#: admin/templates/modal/dynamic_edit_row.php:6
|
2857 |
-
msgid "Edit Row Settings"
|
2858 |
-
msgstr ""
|
2859 |
-
|
2860 |
-
#: admin/templates/modal/dynamic_form_preview.php:4
|
2861 |
-
msgid "Live Form Preview"
|
2862 |
-
msgstr ""
|
2863 |
-
|
2864 |
-
#: admin/templates/modal/dynamic_form_preview.php:12
|
2865 |
-
msgid "Continue editing"
|
2866 |
-
msgstr "Düzenlemeye devam et"
|
2867 |
-
|
2868 |
-
#: admin/templates/modal/dynamic_new_divider.php:6
|
2869 |
-
msgid "Add a New Divider"
|
2870 |
-
msgstr ""
|
2871 |
-
|
2872 |
-
#: admin/templates/modal/dynamic_new_divider.php:14 admin/templates/modal/dynamic_new_field.php:14
|
2873 |
-
#: admin/templates/modal/dynamic_new_group.php:14
|
2874 |
-
msgid "Add"
|
2875 |
-
msgstr "Ekle"
|
2876 |
-
|
2877 |
-
#: admin/templates/modal/dynamic_new_field.php:6
|
2878 |
-
msgid "Add a New Field"
|
2879 |
-
msgstr "Yeni Alan Ekle"
|
2880 |
-
|
2881 |
-
#: admin/templates/modal/dynamic_new_group.php:6
|
2882 |
-
msgid "Add a New Field Group"
|
2883 |
-
msgstr ""
|
2884 |
-
|
2885 |
-
#: admin/templates/modal/dynamic_registration_preview.php:4
|
2886 |
-
msgid "Review Registration Details"
|
2887 |
-
msgstr ""
|
2888 |
-
|
2889 |
-
#: admin/templates/modal/fields.php:4
|
2890 |
-
msgid "Fields Manager"
|
2891 |
-
msgstr "Alan Yöneticisi"
|
2892 |
-
|
2893 |
-
#: admin/templates/modal/fonticons.php:4
|
2894 |
-
#, php-format
|
2895 |
-
msgid "Choose from %s available icons"
|
2896 |
-
msgstr ""
|
2897 |
-
|
2898 |
-
#: admin/templates/role/admin.php:7 admin/templates/role/admin.php:16
|
2899 |
-
msgid "Can access wp-admin?"
|
2900 |
-
msgstr ""
|
2901 |
-
|
2902 |
-
#: admin/templates/role/admin.php:7
|
2903 |
-
msgid "The core admin role must always have access to wp-admin / WordPress backend"
|
2904 |
-
msgstr ""
|
2905 |
-
|
2906 |
-
#: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
|
2907 |
-
msgid "Force hiding adminbar in frontend?"
|
2908 |
-
msgstr ""
|
2909 |
-
|
2910 |
-
#: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
|
2911 |
-
msgid "Show/hide the adminbar on frontend"
|
2912 |
-
msgstr ""
|
2913 |
-
|
2914 |
-
#: admin/templates/role/admin.php:16
|
2915 |
-
msgid ""
|
2916 |
-
"Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the "
|
2917 |
-
"page."
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
#: admin/templates/role/admin.php:26
|
2921 |
-
msgid "Can edit other member accounts?"
|
2922 |
-
msgstr "Diğer üyelerin hesaplarını düzenleyebilsin mi?"
|
2923 |
-
|
2924 |
-
#: admin/templates/role/admin.php:26
|
2925 |
-
msgid "Allow this role to edit accounts of other members"
|
2926 |
-
msgstr ""
|
2927 |
-
|
2928 |
-
#: admin/templates/role/admin.php:31
|
2929 |
-
msgid "Can edit these user roles only"
|
2930 |
-
msgstr ""
|
2931 |
-
|
2932 |
-
#: admin/templates/role/admin.php:31
|
2933 |
-
msgid "Which roles that role can edit, choose none to allow role to edit all member roles"
|
2934 |
-
msgstr ""
|
2935 |
-
|
2936 |
-
#: admin/templates/role/admin.php:44
|
2937 |
-
msgid "Can delete other member accounts?"
|
2938 |
-
msgstr "Diğer üyelerin hesaplarını silebilsin mi?"
|
2939 |
-
|
2940 |
-
#: admin/templates/role/admin.php:44
|
2941 |
-
msgid "Allow this role to edit the profile fields of certain roles only"
|
2942 |
-
msgstr ""
|
2943 |
-
|
2944 |
-
#: admin/templates/role/admin.php:49
|
2945 |
-
msgid "Can delete these user roles only"
|
2946 |
-
msgstr ""
|
2947 |
-
|
2948 |
-
#: admin/templates/role/admin.php:49
|
2949 |
-
msgid "Which roles that role can delete, choose none to allow role to delete all member roles"
|
2950 |
-
msgstr ""
|
2951 |
-
|
2952 |
-
#: admin/templates/role/delete.php:6
|
2953 |
-
msgid "Action to be taken after account is deleted"
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: admin/templates/role/delete.php:6
|
2957 |
-
msgid "Select what happens when a user with this role deletes their own account"
|
2958 |
-
msgstr ""
|
2959 |
-
|
2960 |
-
#: admin/templates/role/delete.php:10 admin/templates/role/logout.php:10
|
2961 |
-
msgid "Go to Homepage"
|
2962 |
-
msgstr "Anasayfaya Git"
|
2963 |
-
|
2964 |
-
#: admin/templates/role/delete.php:11 admin/templates/role/logout.php:11
|
2965 |
-
msgid "Go to Custom URL"
|
2966 |
-
msgstr "Özel URL ye Git"
|
2967 |
-
|
2968 |
-
#: admin/templates/role/delete.php:18
|
2969 |
-
msgid "Set a url to redirect this user role to after they delete account"
|
2970 |
-
msgstr ""
|
2971 |
-
|
2972 |
-
#: admin/templates/role/general.php:6
|
2973 |
-
msgid "Can edit their profile?"
|
2974 |
-
msgstr "Profillerini düzenleyebilsinler mi?"
|
2975 |
-
|
2976 |
-
#: admin/templates/role/general.php:6
|
2977 |
-
msgid "Can this role edit his own profile?"
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: admin/templates/role/general.php:11
|
2981 |
-
msgid "Can delete their account?"
|
2982 |
-
msgstr "Hesaplarını silebilsinler mi?"
|
2983 |
-
|
2984 |
-
#: admin/templates/role/general.php:11
|
2985 |
-
msgid "Allow this role to delete their account and end their membership on your site"
|
2986 |
-
msgstr ""
|
2987 |
-
|
2988 |
-
#: admin/templates/role/home.php:6
|
2989 |
-
msgid "Can view default homepage?"
|
2990 |
-
msgstr ""
|
2991 |
-
|
2992 |
-
#: admin/templates/role/home.php:6
|
2993 |
-
msgid "Allow this user role to view your site's homepage"
|
2994 |
-
msgstr ""
|
2995 |
-
|
2996 |
-
#: admin/templates/role/home.php:15
|
2997 |
-
msgid "Custom Homepage Redirect"
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: admin/templates/role/home.php:15
|
3001 |
-
msgid "Set a url to redirect this user role to if they try to view your site's homepage "
|
3002 |
-
msgstr ""
|
3003 |
-
|
3004 |
-
#: admin/templates/role/login.php:6
|
3005 |
-
msgid "Action to be taken after login"
|
3006 |
-
msgstr ""
|
3007 |
-
|
3008 |
-
#: admin/templates/role/login.php:6
|
3009 |
-
msgid "Select what happens when a user with this role logins to your site"
|
3010 |
-
msgstr ""
|
3011 |
-
|
3012 |
-
#: admin/templates/role/login.php:10 admin/templates/role/register.php:29
|
3013 |
-
msgid "Redirect to profile"
|
3014 |
-
msgstr ""
|
3015 |
-
|
3016 |
-
#: admin/templates/role/login.php:11 admin/templates/role/register.php:30 admin/templates/role/register.php:59
|
3017 |
-
#: admin/templates/role/register.php:97
|
3018 |
-
msgid "Redirect to URL"
|
3019 |
-
msgstr ""
|
3020 |
-
|
3021 |
-
#: admin/templates/role/login.php:12
|
3022 |
-
msgid "Refresh active page"
|
3023 |
-
msgstr ""
|
3024 |
-
|
3025 |
-
#: admin/templates/role/login.php:13
|
3026 |
-
msgid "Redirect to WordPress Admin"
|
3027 |
-
msgstr ""
|
3028 |
-
|
3029 |
-
#: admin/templates/role/login.php:20
|
3030 |
-
msgid "Set a url to redirect this user role to after they login with their account"
|
3031 |
-
msgstr ""
|
3032 |
-
|
3033 |
-
#: admin/templates/role/logout.php:6
|
3034 |
-
msgid "Action to be taken after logout"
|
3035 |
-
msgstr ""
|
3036 |
-
|
3037 |
-
#: admin/templates/role/logout.php:6
|
3038 |
-
msgid "Select what happens when a user with this role logouts of your site"
|
3039 |
-
msgstr ""
|
3040 |
-
|
3041 |
-
#: admin/templates/role/logout.php:18
|
3042 |
-
msgid "Set a url to redirect this user role to after they logout from site"
|
3043 |
-
msgstr ""
|
3044 |
-
|
3045 |
-
#: admin/templates/role/profile.php:6
|
3046 |
-
msgid "Can view other member profiles?"
|
3047 |
-
msgstr "Diğer üyelerin profillerine bakabilsinler mi?"
|
3048 |
-
|
3049 |
-
#: admin/templates/role/profile.php:6
|
3050 |
-
msgid "Can this role view all member profiles?"
|
3051 |
-
msgstr ""
|
3052 |
-
|
3053 |
-
#: admin/templates/role/profile.php:11
|
3054 |
-
msgid "Can view these user roles only"
|
3055 |
-
msgstr ""
|
3056 |
-
|
3057 |
-
#: admin/templates/role/profile.php:11
|
3058 |
-
msgid "Which roles that role can view, choose none to allow role to view all member roles"
|
3059 |
-
msgstr ""
|
3060 |
-
|
3061 |
-
#: admin/templates/role/profile.php:24
|
3062 |
-
msgid "Can make their profile private?"
|
3063 |
-
msgstr "Profillerini gizli yapabilsinler mi?"
|
3064 |
-
|
3065 |
-
#: admin/templates/role/profile.php:24
|
3066 |
-
msgid "Can this role make their profile private?"
|
3067 |
-
msgstr ""
|
3068 |
-
|
3069 |
-
#: admin/templates/role/profile.php:29
|
3070 |
-
msgid "Can view/access private profiles?"
|
3071 |
-
msgstr ""
|
3072 |
-
|
3073 |
-
#: admin/templates/role/profile.php:29
|
3074 |
-
msgid "Can this role view private profiles?"
|
3075 |
-
msgstr ""
|
3076 |
-
|
3077 |
-
#: admin/templates/role/register.php:6
|
3078 |
-
msgid "Registration Status"
|
3079 |
-
msgstr "Kayıt Durumu"
|
3080 |
-
|
3081 |
-
#: admin/templates/role/register.php:6
|
3082 |
-
msgid "Select the status you would like this user role to have after they register on your site"
|
3083 |
-
msgstr ""
|
3084 |
-
|
3085 |
-
#: admin/templates/role/register.php:13
|
3086 |
-
msgid "Auto Approve"
|
3087 |
-
msgstr ""
|
3088 |
-
|
3089 |
-
#: admin/templates/role/register.php:14
|
3090 |
-
msgid "Require Email Activation"
|
3091 |
-
msgstr ""
|
3092 |
-
|
3093 |
-
#: admin/templates/role/register.php:15
|
3094 |
-
msgid "Require Admin Review"
|
3095 |
-
msgstr ""
|
3096 |
-
|
3097 |
-
#: admin/templates/role/register.php:25 admin/templates/role/register.php:52
|
3098 |
-
#: admin/templates/role/register.php:90
|
3099 |
-
msgid "Action to be taken after registration"
|
3100 |
-
msgstr ""
|
3101 |
-
|
3102 |
-
#: admin/templates/role/register.php:25 admin/templates/role/register.php:52
|
3103 |
-
#: admin/templates/role/register.php:90
|
3104 |
-
msgid ""
|
3105 |
-
"Select what action is taken after a person registers on your site. Depending on the status you can redirect "
|
3106 |
-
"them to their profile, a custom url or show a custom message"
|
3107 |
-
msgstr ""
|
3108 |
-
|
3109 |
-
#: admin/templates/role/register.php:58 admin/templates/role/register.php:96
|
3110 |
-
msgid "Show custom message"
|
3111 |
-
msgstr "Özel ileti göster"
|
3112 |
-
|
3113 |
-
#: admin/templates/role/register.php:66 admin/templates/role/register.php:104
|
3114 |
-
msgid "Personalize the custom message"
|
3115 |
-
msgstr ""
|
3116 |
-
|
3117 |
-
#: admin/templates/role/register.php:69
|
3118 |
-
msgid ""
|
3119 |
-
"Thank you for registering. Before you can login we need you to activate your account by clicking the "
|
3120 |
-
"activation link in the email we just sent you."
|
3121 |
-
msgstr ""
|
3122 |
-
|
3123 |
-
#: admin/templates/role/register.php:107
|
3124 |
-
msgid ""
|
3125 |
-
"Thank you for applying for membership to our site. We will review your details and send you an email letting "
|
3126 |
-
"you know whether your application has been successful or not."
|
3127 |
-
msgstr ""
|
3128 |
-
|
3129 |
-
#: admin/um-admin-init.php:36
|
3130 |
-
msgid "Ultimate Member"
|
3131 |
-
msgstr ""
|
3132 |
-
|
3133 |
-
#: admin/um-admin-init.php:38
|
3134 |
-
msgid "Dashboard"
|
3135 |
-
msgstr ""
|
3136 |
-
|
3137 |
-
#: admin/um-admin-init.php:41
|
3138 |
-
#, php-format
|
3139 |
-
msgid "%s | Ultimate Member"
|
3140 |
-
msgstr ""
|
3141 |
-
|
3142 |
-
#: admin/um-admin-init.php:51 core/um-taxonomies.php:18
|
3143 |
-
msgid "Forms"
|
3144 |
-
msgstr "Formlar"
|
3145 |
-
|
3146 |
-
#: admin/um-admin-init.php:53 core/um-taxonomies.php:36
|
3147 |
-
msgid "User Roles"
|
3148 |
-
msgstr "Kullanıcı Rolleri"
|
3149 |
-
|
3150 |
-
#: admin/um-admin-init.php:56 core/um-taxonomies.php:56
|
3151 |
-
msgid "Member Directories"
|
3152 |
-
msgstr "Üye Klasörleri"
|
3153 |
-
|
3154 |
-
#: admin/um-admin-init.php:82
|
3155 |
-
msgid "Please create a team.php template in admin templates."
|
3156 |
-
msgstr ""
|
3157 |
-
|
3158 |
-
#: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
|
3159 |
-
#: core/um-actions-account.php:294 core/um-builtin.php:818 core/um-builtin.php:821
|
3160 |
-
msgid "Delete Account"
|
3161 |
-
msgstr "Hesabı Sil"
|
3162 |
-
|
3163 |
-
#: core/um-actions-account.php:82 core/um-actions-password.php:121
|
3164 |
-
msgid "Your password must contain at least 8 characters"
|
3165 |
-
msgstr "Parolanız en az 8 karakterden oluşmalı"
|
3166 |
-
|
3167 |
-
#: core/um-actions-account.php:86 core/um-actions-password.php:125
|
3168 |
-
msgid "Your password must contain less than 30 characters"
|
3169 |
-
msgstr "Parolanız en fazla 30 karakterden oluşabilir."
|
3170 |
-
|
3171 |
-
#: core/um-actions-account.php:90 core/um-actions-form.php:176 core/um-actions-password.php:129
|
3172 |
-
msgid "Your password must contain at least one lowercase letter, one capital letter and one number"
|
3173 |
-
msgstr "Parolan en az bir küçük harf, bir büyük harf ve bir sayıdan oluşmak zorundadır"
|
3174 |
-
|
3175 |
-
#: core/um-actions-account.php:165
|
3176 |
-
msgid "Update Privacy"
|
3177 |
-
msgstr "Gizliliği Güncelle"
|
3178 |
-
|
3179 |
-
#: core/um-actions-account.php:188
|
3180 |
-
msgid "Update Account"
|
3181 |
-
msgstr "Hesabı Güncelle"
|
3182 |
-
|
3183 |
-
#: core/um-actions-account.php:212
|
3184 |
-
msgid "Update Password"
|
3185 |
-
msgstr "Parolayı Güncelle"
|
3186 |
-
|
3187 |
-
#: core/um-actions-account.php:282 um-config.php:106
|
3188 |
-
msgid "Account"
|
3189 |
-
msgstr "Hesap"
|
3190 |
-
|
3191 |
-
#: core/um-actions-account.php:285
|
3192 |
-
msgid "Change Password"
|
3193 |
-
msgstr "Parolayı Değiştir"
|
3194 |
-
|
3195 |
-
#: core/um-actions-account.php:288
|
3196 |
-
msgid "Privacy"
|
3197 |
-
msgstr "Gizlilik"
|
3198 |
-
|
3199 |
-
#: core/um-actions-account.php:291 um-config.php:664
|
3200 |
-
msgid "Notifications"
|
3201 |
-
msgstr "Bildirimler"
|
3202 |
-
|
3203 |
-
#: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
|
3204 |
-
msgid "You can not edit this user"
|
3205 |
-
msgstr "Sen bu üyeyi düzenleyemezsin"
|
3206 |
-
|
3207 |
-
#: core/um-actions-ajax.php:73
|
3208 |
-
msgid "Invalid parameters"
|
3209 |
-
msgstr ""
|
3210 |
-
|
3211 |
-
#: core/um-actions-ajax.php:76
|
3212 |
-
msgid "Invalid coordinates"
|
3213 |
-
msgstr ""
|
3214 |
-
|
3215 |
-
#: core/um-actions-ajax.php:79
|
3216 |
-
msgid "Invalid Image file"
|
3217 |
-
msgstr ""
|
3218 |
-
|
3219 |
-
#: core/um-actions-core.php:65
|
3220 |
-
msgid "You do not have permission to delete this user."
|
3221 |
-
msgstr ""
|
3222 |
-
|
3223 |
-
#: core/um-actions-form.php:83
|
3224 |
-
msgid "You are not allowed to use this word as your username."
|
3225 |
-
msgstr ""
|
3226 |
-
|
3227 |
-
#: core/um-actions-form.php:146
|
3228 |
-
#, php-format
|
3229 |
-
msgid "%s is required"
|
3230 |
-
msgstr ""
|
3231 |
-
|
3232 |
-
#: core/um-actions-form.php:152
|
3233 |
-
#, php-format
|
3234 |
-
msgid "You are only allowed to enter a maximum of %s words"
|
3235 |
-
msgstr ""
|
3236 |
-
|
3237 |
-
#: core/um-actions-form.php:158
|
3238 |
-
#, php-format
|
3239 |
-
msgid "Your %s must contain at least %s characters"
|
3240 |
-
msgstr ""
|
3241 |
-
|
3242 |
-
#: core/um-actions-form.php:164
|
3243 |
-
#, php-format
|
3244 |
-
msgid "Your %s must contain less than %s characters"
|
3245 |
-
msgstr ""
|
3246 |
-
|
3247 |
-
#: core/um-actions-form.php:170
|
3248 |
-
msgid "You can not use HTML tags here"
|
3249 |
-
msgstr "Sen burada HTML taglarını kullanamazsın"
|
3250 |
-
|
3251 |
-
#: core/um-actions-form.php:182
|
3252 |
-
msgid "Please confirm your password"
|
3253 |
-
msgstr "Lütfen parolanızı doğrulayın"
|
3254 |
-
|
3255 |
-
#: core/um-actions-form.php:185
|
3256 |
-
msgid "Your passwords do not match"
|
3257 |
-
msgstr "Parolalarınız eşleşmiyor"
|
3258 |
-
|
3259 |
-
#: core/um-actions-form.php:191
|
3260 |
-
#, php-format
|
3261 |
-
msgid "Please select at least %s choices"
|
3262 |
-
msgstr ""
|
3263 |
-
|
3264 |
-
#: core/um-actions-form.php:197
|
3265 |
-
#, php-format
|
3266 |
-
msgid "You can only select up to %s choices"
|
3267 |
-
msgstr ""
|
3268 |
-
|
3269 |
-
#: core/um-actions-form.php:207
|
3270 |
-
msgid "Please enter a valid phone number"
|
3271 |
-
msgstr "Lütfen bir telefon numarası giriniz"
|
3272 |
-
|
3273 |
-
#: core/um-actions-form.php:213 core/um-actions-form.php:219 core/um-actions-form.php:225
|
3274 |
-
#: core/um-actions-form.php:231 core/um-actions-form.php:237 core/um-actions-form.php:243
|
3275 |
-
#, php-format
|
3276 |
-
msgid "Please enter a valid %s username or profile URL"
|
3277 |
-
msgstr ""
|
3278 |
-
|
3279 |
-
#: core/um-actions-form.php:250 core/um-actions-form.php:264
|
3280 |
-
msgid "You must provide a username"
|
3281 |
-
msgstr ""
|
3282 |
-
|
3283 |
-
#: core/um-actions-form.php:252 core/um-actions-form.php:266
|
3284 |
-
msgid "Your username is already taken"
|
3285 |
-
msgstr "Bu kullanıcı adı önceden alınmış"
|
3286 |
-
|
3287 |
-
#: core/um-actions-form.php:254
|
3288 |
-
msgid "Username cannot be an email"
|
3289 |
-
msgstr "Kullanıcı adı bir e-posta adresi olamaz"
|
3290 |
-
|
3291 |
-
#: core/um-actions-form.php:256 core/um-actions-form.php:270
|
3292 |
-
msgid "Your username contains invalid characters"
|
3293 |
-
msgstr ""
|
3294 |
-
|
3295 |
-
#: core/um-actions-form.php:268 core/um-actions-form.php:280
|
3296 |
-
msgid "This email is already linked to an existing account"
|
3297 |
-
msgstr ""
|
3298 |
-
|
3299 |
-
#: core/um-actions-form.php:278
|
3300 |
-
msgid "You must provide your email"
|
3301 |
-
msgstr ""
|
3302 |
-
|
3303 |
-
#: core/um-actions-form.php:282
|
3304 |
-
msgid "This is not a valid email"
|
3305 |
-
msgstr ""
|
3306 |
-
|
3307 |
-
#: core/um-actions-form.php:284
|
3308 |
-
msgid "Your email contains invalid characters"
|
3309 |
-
msgstr ""
|
3310 |
-
|
3311 |
-
#: core/um-actions-form.php:298
|
3312 |
-
#, php-format
|
3313 |
-
msgid "Your user description must contain less than %s characters"
|
3314 |
-
msgstr ""
|
3315 |
-
|
3316 |
-
#: core/um-actions-global.php:28
|
3317 |
-
msgid "Only fill in if you are not human"
|
3318 |
-
msgstr ""
|
3319 |
-
|
3320 |
-
#: core/um-actions-login.php:16
|
3321 |
-
msgid "Please enter your username or email"
|
3322 |
-
msgstr "Lütfen kullanıcı adı veya e-posta giriniz"
|
3323 |
-
|
3324 |
-
#: core/um-actions-login.php:20
|
3325 |
-
msgid "Please enter your username"
|
3326 |
-
msgstr "Lütfen kullanıcı adınızı giriniz"
|
3327 |
-
|
3328 |
-
#: core/um-actions-login.php:24
|
3329 |
-
msgid "Please enter your email"
|
3330 |
-
msgstr "Lütfen e-posta adresinizi giriniz"
|
3331 |
-
|
3332 |
-
#: core/um-actions-login.php:48
|
3333 |
-
msgid " Sorry, we can't find an account with that email address"
|
3334 |
-
msgstr "Üzgünüz, bu e-posta adresine sahip bir hesap bulamıyoruz"
|
3335 |
-
|
3336 |
-
#: core/um-actions-login.php:50
|
3337 |
-
msgid " Sorry, we can't find an account with that username"
|
3338 |
-
msgstr "Üzgünüz, bu kullanıcı adında bir hesap bulamıyoruz"
|
3339 |
-
|
3340 |
-
#: core/um-actions-login.php:54
|
3341 |
-
msgid "Please enter your password"
|
3342 |
-
msgstr "Lütfen parolanızı giriniz"
|
3343 |
-
|
3344 |
-
#: core/um-actions-login.php:69
|
3345 |
-
msgid "Password is incorrect. Please try again."
|
3346 |
-
msgstr "Parolanız yanlış. Lütfen tekrar deneyin."
|
3347 |
-
|
3348 |
-
#: core/um-actions-login.php:207
|
3349 |
-
msgid "Forgot your password?"
|
3350 |
-
msgstr "Parolanızı mı unuttunuz?"
|
3351 |
-
|
3352 |
-
#: core/um-actions-members.php:60
|
3353 |
-
msgid "Search"
|
3354 |
-
msgstr "Ara"
|
3355 |
-
|
3356 |
-
#: core/um-actions-members.php:60
|
3357 |
-
msgid "Reset"
|
3358 |
-
msgstr "Sıfırla"
|
3359 |
-
|
3360 |
-
#: core/um-actions-members.php:119
|
3361 |
-
msgid "Jump to page:"
|
3362 |
-
msgstr "Sayfaya atla:"
|
3363 |
-
|
3364 |
-
#: core/um-actions-members.php:123
|
3365 |
-
#, php-format
|
3366 |
-
msgid "%s of %d"
|
3367 |
-
msgstr ""
|
3368 |
-
|
3369 |
-
#: core/um-actions-members.php:132
|
3370 |
-
msgid "First Page"
|
3371 |
-
msgstr ""
|
3372 |
-
|
3373 |
-
#: core/um-actions-members.php:138
|
3374 |
-
msgid "Previous"
|
3375 |
-
msgstr ""
|
3376 |
-
|
3377 |
-
#: core/um-actions-members.php:156
|
3378 |
-
msgid "Next"
|
3379 |
-
msgstr ""
|
3380 |
-
|
3381 |
-
#: core/um-actions-members.php:162
|
3382 |
-
msgid "Last Page"
|
3383 |
-
msgstr ""
|
3384 |
-
|
3385 |
-
#: core/um-actions-misc.php:58 core/um-actions-misc.php:85
|
3386 |
-
msgid "Registration is currently disabled"
|
3387 |
-
msgstr ""
|
3388 |
-
|
3389 |
-
#: core/um-actions-misc.php:65
|
3390 |
-
msgid "You have successfully changed your password."
|
3391 |
-
msgstr "Parolanız başarıyla değiştirildi."
|
3392 |
-
|
3393 |
-
#: core/um-actions-misc.php:69
|
3394 |
-
msgid "Your account is now active! You can login."
|
3395 |
-
msgstr "Hesabınız şu an aktif! Giriş yapabilirsiniz."
|
3396 |
-
|
3397 |
-
#: core/um-actions-misc.php:81
|
3398 |
-
msgid "An error has been encountered"
|
3399 |
-
msgstr ""
|
3400 |
-
|
3401 |
-
#: core/um-actions-misc.php:89 core/um-filters-login.php:33
|
3402 |
-
msgid "This email address has been blocked."
|
3403 |
-
msgstr "Bu e-posta adresi engellenmiş."
|
3404 |
-
|
3405 |
-
#: core/um-actions-misc.php:93 core/um-filters-login.php:36
|
3406 |
-
msgid "Your IP address has been blocked."
|
3407 |
-
msgstr "Sizin IP adresini engellenmiş."
|
3408 |
-
|
3409 |
-
#: core/um-actions-misc.php:97 core/um-filters-login.php:78
|
3410 |
-
msgid "Your account has been disabled."
|
3411 |
-
msgstr "Sizin hesabınız etkin değil."
|
3412 |
-
|
3413 |
-
#: core/um-actions-misc.php:101 core/um-filters-login.php:81
|
3414 |
-
msgid "Your account has not been approved yet."
|
3415 |
-
msgstr ""
|
3416 |
-
|
3417 |
-
#: core/um-actions-misc.php:105 core/um-filters-login.php:84
|
3418 |
-
msgid "Your account is awaiting e-mail verifications."
|
3419 |
-
msgstr "Hesabınız e-posta doğrulamasını beklemekte."
|
3420 |
-
|
3421 |
-
#: core/um-actions-misc.php:109 core/um-filters-login.php:87
|
3422 |
-
msgid "Your membership request has been rejected."
|
3423 |
-
msgstr ""
|
3424 |
-
|
3425 |
-
#: core/um-actions-password.php:80 core/um-actions-password.php:111 core/um-form.php:80
|
3426 |
-
msgid "Hello, spam bot!"
|
3427 |
-
msgstr ""
|
3428 |
-
|
3429 |
-
#: core/um-actions-password.php:83 core/um-actions-password.php:114 core/um-form.php:83
|
3430 |
-
msgid ""
|
3431 |
-
"Whoa, slow down! You're seeing this message because you tried to submit a form too fast and we think you "
|
3432 |
-
"might be a spam bot. If you are a real human being please wait a few seconds before submitting the form. "
|
3433 |
-
"Thanks!"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: core/um-actions-password.php:86
|
3437 |
-
msgid "Please provide your username or email"
|
3438 |
-
msgstr ""
|
3439 |
-
|
3440 |
-
#: core/um-actions-password.php:92
|
3441 |
-
msgid " We can't find an account registered with that address or username "
|
3442 |
-
msgstr ""
|
3443 |
-
|
3444 |
-
#: core/um-actions-password.php:189
|
3445 |
-
msgid "Reset my password"
|
3446 |
-
msgstr "Parolamı sıfırla"
|
3447 |
-
|
3448 |
-
#: core/um-actions-password.php:216
|
3449 |
-
msgid "Change my password"
|
3450 |
-
msgstr "Parolamı değiştir"
|
3451 |
-
|
3452 |
-
#: core/um-actions-profile.php:40
|
3453 |
-
msgid "You are not allowed to edit this user."
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: core/um-actions-profile.php:153 core/um-builtin.php:756
|
3457 |
-
msgid "Change your cover photo"
|
3458 |
-
msgstr "Kapak fotomu değiştir"
|
3459 |
-
|
3460 |
-
#: core/um-actions-profile.php:167
|
3461 |
-
msgid "Change cover photo"
|
3462 |
-
msgstr "Kapak fotosunu değiştir"
|
3463 |
-
|
3464 |
-
#: core/um-actions-profile.php:209
|
3465 |
-
msgid "Upload a cover photo"
|
3466 |
-
msgstr "Bir kapak fotoğrafı yükle"
|
3467 |
-
|
3468 |
-
#: core/um-actions-profile.php:267
|
3469 |
-
msgid "Upload photo"
|
3470 |
-
msgstr "Fotoğraf yükle"
|
3471 |
-
|
3472 |
-
#: core/um-actions-profile.php:276 core/um-fields.php:1164 core/um-fields.php:1197
|
3473 |
-
msgid "Change photo"
|
3474 |
-
msgstr "Fotoğraf değiştir"
|
3475 |
-
|
3476 |
-
#: core/um-actions-profile.php:277
|
3477 |
-
msgid "Remove photo"
|
3478 |
-
msgstr "Fotoğrafı kaldır"
|
3479 |
-
|
3480 |
-
#: core/um-actions-profile.php:315
|
3481 |
-
msgid "Tell us a bit about yourself..."
|
3482 |
-
msgstr "Kendin hakkında birazcık bilgi ver..."
|
3483 |
-
|
3484 |
-
#: core/um-actions-profile.php:325
|
3485 |
-
#, php-format
|
3486 |
-
msgid "This user account status is %s"
|
3487 |
-
msgstr "Kullanıcı durumu: %s"
|
3488 |
-
|
3489 |
-
#: core/um-actions-profile.php:400
|
3490 |
-
msgid "Edit Profile"
|
3491 |
-
msgstr "Profili Düzenle"
|
3492 |
-
|
3493 |
-
#: core/um-actions-profile.php:401
|
3494 |
-
msgid "My Account"
|
3495 |
-
msgstr "Hesabım"
|
3496 |
-
|
3497 |
-
#: core/um-actions-profile.php:402
|
3498 |
-
msgid "Logout"
|
3499 |
-
msgstr "Çıkış"
|
3500 |
-
|
3501 |
-
#: core/um-builtin.php:458 core/um-builtin.php:461 core/um-builtin.php:774
|
3502 |
-
msgid "Username or E-mail"
|
3503 |
-
msgstr "Kullanıcı adı veya E-posta"
|
3504 |
-
|
3505 |
-
#: core/um-builtin.php:483 core/um-builtin.php:486
|
3506 |
-
msgid "First Name"
|
3507 |
-
msgstr "İsim"
|
3508 |
-
|
3509 |
-
#: core/um-builtin.php:493 core/um-builtin.php:496
|
3510 |
-
msgid "Last Name"
|
3511 |
-
msgstr "Soyisim"
|
3512 |
-
|
3513 |
-
#: core/um-builtin.php:503 core/um-builtin.php:506
|
3514 |
-
msgid "Display Name"
|
3515 |
-
msgstr "Görünen İsim"
|
3516 |
-
|
3517 |
-
#: core/um-builtin.php:513 core/um-builtin.php:516
|
3518 |
-
msgid "E-mail Address"
|
3519 |
-
msgstr "E-posta Adresi"
|
3520 |
-
|
3521 |
-
#: core/um-builtin.php:524 core/um-builtin.php:527
|
3522 |
-
msgid "Biography"
|
3523 |
-
msgstr "Biyografik Bilgi"
|
3524 |
-
|
3525 |
-
#: core/um-builtin.php:537 core/um-builtin.php:540
|
3526 |
-
msgid "Birth Date"
|
3527 |
-
msgstr "Doğum Tarihi"
|
3528 |
-
|
3529 |
-
#: core/um-builtin.php:551 core/um-builtin.php:554
|
3530 |
-
msgid "Gender"
|
3531 |
-
msgstr "Cinsiyet"
|
3532 |
-
|
3533 |
-
#: core/um-builtin.php:562
|
3534 |
-
msgid "Countries"
|
3535 |
-
msgstr "Ülkeler"
|
3536 |
-
|
3537 |
-
#: core/um-builtin.php:565
|
3538 |
-
msgid "Country"
|
3539 |
-
msgstr "Ülke"
|
3540 |
-
|
3541 |
-
#: core/um-builtin.php:574 core/um-builtin.php:577
|
3542 |
-
msgid "Facebook"
|
3543 |
-
msgstr ""
|
3544 |
-
|
3545 |
-
#: core/um-builtin.php:592 core/um-builtin.php:595
|
3546 |
-
msgid "Twitter"
|
3547 |
-
msgstr ""
|
3548 |
-
|
3549 |
-
#: core/um-builtin.php:610 core/um-builtin.php:613
|
3550 |
-
msgid "LinkedIn"
|
3551 |
-
msgstr ""
|
3552 |
-
|
3553 |
-
#: core/um-builtin.php:628 core/um-builtin.php:631
|
3554 |
-
msgid "Google+"
|
3555 |
-
msgstr ""
|
3556 |
-
|
3557 |
-
#: core/um-builtin.php:646 core/um-builtin.php:649
|
3558 |
-
msgid "Instagram"
|
3559 |
-
msgstr ""
|
3560 |
-
|
3561 |
-
#: core/um-builtin.php:664 core/um-builtin.php:667
|
3562 |
-
msgid "Skype ID"
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: core/um-builtin.php:679
|
3566 |
-
msgid "Roles (Dropdown)"
|
3567 |
-
msgstr ""
|
3568 |
-
|
3569 |
-
#: core/um-builtin.php:682 core/um-builtin.php:694
|
3570 |
-
msgid "Account Type"
|
3571 |
-
msgstr "Hesap Tipi"
|
3572 |
-
|
3573 |
-
#: core/um-builtin.php:691
|
3574 |
-
msgid "Roles (Radio)"
|
3575 |
-
msgstr ""
|
3576 |
-
|
3577 |
-
#: core/um-builtin.php:702
|
3578 |
-
msgid "Languages"
|
3579 |
-
msgstr "Diller"
|
3580 |
-
|
3581 |
-
#: core/um-builtin.php:705
|
3582 |
-
msgid "Languages Spoken"
|
3583 |
-
msgstr "Konuştuğu Diller"
|
3584 |
-
|
3585 |
-
#: core/um-builtin.php:706
|
3586 |
-
msgid "Select languages"
|
3587 |
-
msgstr "Dil seçiniz"
|
3588 |
-
|
3589 |
-
#: core/um-builtin.php:714 core/um-builtin.php:717
|
3590 |
-
msgid "Phone Number"
|
3591 |
-
msgstr "Telefon Numarası"
|
3592 |
-
|
3593 |
-
#: core/um-builtin.php:726 core/um-builtin.php:729
|
3594 |
-
msgid "Mobile Number"
|
3595 |
-
msgstr "Cep Telefonu Numarası"
|
3596 |
-
|
3597 |
-
#: core/um-builtin.php:740
|
3598 |
-
msgid "Profile Photo"
|
3599 |
-
msgstr "Profil Fotoğrafı"
|
3600 |
-
|
3601 |
-
#: core/um-builtin.php:743
|
3602 |
-
msgid "Change your profile photo"
|
3603 |
-
msgstr "Profil fotoğrafını değiştir"
|
3604 |
-
|
3605 |
-
#: core/um-builtin.php:744
|
3606 |
-
msgid "Upload your photo here"
|
3607 |
-
msgstr "Fotoğrafı buradan yükle"
|
3608 |
-
|
3609 |
-
#: core/um-builtin.php:753
|
3610 |
-
msgid "Cover Photo"
|
3611 |
-
msgstr "Kapak Fotoğrafı"
|
3612 |
-
|
3613 |
-
#: core/um-builtin.php:757
|
3614 |
-
msgid "Upload profile cover here"
|
3615 |
-
msgstr "Kapak fotoğrafını buradan yükle"
|
3616 |
-
|
3617 |
-
#: core/um-builtin.php:767
|
3618 |
-
msgid "Password Reset"
|
3619 |
-
msgstr "Parola Sıfırlama"
|
3620 |
-
|
3621 |
-
#: core/um-builtin.php:769
|
3622 |
-
msgid "To reset your password, please enter your email address or username below"
|
3623 |
-
msgstr "Parola sıfırlamak için, lütfen e-posta adresinizi veya kullanıcı adınızı giriniz"
|
3624 |
-
|
3625 |
-
#: core/um-builtin.php:777
|
3626 |
-
msgid "Enter your username or email"
|
3627 |
-
msgstr "Kullanıcı adınızı veya e-posta adresinizi giriniz"
|
3628 |
-
|
3629 |
-
#: core/um-builtin.php:787 core/um-builtin.php:790
|
3630 |
-
msgid "Profile Privacy"
|
3631 |
-
msgstr "Profil Gizliliği"
|
3632 |
-
|
3633 |
-
#: core/um-builtin.php:791
|
3634 |
-
msgid "Who can see your public profile?"
|
3635 |
-
msgstr ""
|
3636 |
-
|
3637 |
-
#: core/um-builtin.php:795 core/um-builtin.php:796
|
3638 |
-
msgid "Everyone"
|
3639 |
-
msgstr "Herkes"
|
3640 |
-
|
3641 |
-
#: core/um-builtin.php:796 core/um-user.php:407
|
3642 |
-
msgid "Only me"
|
3643 |
-
msgstr "Sadece ben"
|
3644 |
-
|
3645 |
-
#: core/um-builtin.php:803 core/um-builtin.php:806
|
3646 |
-
msgid "Hide my profile from directory"
|
3647 |
-
msgstr "Benim profilimi diğer üyelerden gizle"
|
3648 |
-
|
3649 |
-
#: core/um-builtin.php:807
|
3650 |
-
msgid "Here you can hide yourself from appearing in public directory"
|
3651 |
-
msgstr ""
|
3652 |
-
|
3653 |
-
#: core/um-builtin.php:822
|
3654 |
-
msgid "If you confirm, everything related to your profile will be deleted permanently from the site"
|
3655 |
-
msgstr ""
|
3656 |
-
|
3657 |
-
#: core/um-cron.php:15
|
3658 |
-
msgid "Once Weekly"
|
3659 |
-
msgstr "Haftada Bir"
|
3660 |
-
|
3661 |
-
#: core/um-datetime.php:25
|
3662 |
-
#, php-format
|
3663 |
-
msgid "%s year old"
|
3664 |
-
msgstr "%s yaşında"
|
3665 |
-
|
3666 |
-
#: core/um-datetime.php:27
|
3667 |
-
#, php-format
|
3668 |
-
msgid "%s years old"
|
3669 |
-
msgstr "%s yaşında"
|
3670 |
-
|
3671 |
-
#: core/um-datetime.php:29
|
3672 |
-
msgid "Less than 1 year old"
|
3673 |
-
msgstr ""
|
3674 |
-
|
3675 |
-
#: core/um-fields.php:915
|
3676 |
-
msgid "Current Password"
|
3677 |
-
msgstr "Geçerli Parola"
|
3678 |
-
|
3679 |
-
#: core/um-fields.php:944
|
3680 |
-
msgid "New Password"
|
3681 |
-
msgstr ""
|
3682 |
-
|
3683 |
-
#: core/um-fields.php:976
|
3684 |
-
#, php-format
|
3685 |
-
msgid "Confirm New %s"
|
3686 |
-
msgstr "Doğrula Yeni %s yı"
|
3687 |
-
|
3688 |
-
#: core/um-fields.php:1155 core/um-fields.php:1227
|
3689 |
-
msgid "Upload Photo"
|
3690 |
-
msgstr "Foto Yükle"
|
3691 |
-
|
3692 |
-
#: core/um-fields.php:1197 core/um-fields.php:1282
|
3693 |
-
msgid "Processing..."
|
3694 |
-
msgstr ""
|
3695 |
-
|
3696 |
-
#: core/um-fields.php:1243 core/um-fields.php:1282
|
3697 |
-
msgid "Change file"
|
3698 |
-
msgstr "Dosya değiştir"
|
3699 |
-
|
3700 |
-
#: core/um-fields.php:1282
|
3701 |
-
msgid "Save"
|
3702 |
-
msgstr "Kaydet"
|
3703 |
-
|
3704 |
-
#: core/um-fields.php:1929
|
3705 |
-
#, php-format
|
3706 |
-
msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
|
3707 |
-
msgstr "Profiliniz birazcık boş gözüküyor. Biraz bilgi <a href=\"%s\">eklemeye</a> ne dersin?"
|
3708 |
-
|
3709 |
-
#: core/um-fields.php:1931
|
3710 |
-
msgid "This user has not added any information to their profile yet."
|
3711 |
-
msgstr "Bu kullanıcı henüz profiline hiç bir bilgi eklemedi."
|
3712 |
-
|
3713 |
-
#: core/um-files.php:307
|
3714 |
-
msgid "Your image is invalid or too large!"
|
3715 |
-
msgstr ""
|
3716 |
-
|
3717 |
-
#: core/um-files.php:313 core/um-files.php:315
|
3718 |
-
#, php-format
|
3719 |
-
msgid "Your photo is too small. It must be at least %spx wide."
|
3720 |
-
msgstr ""
|
3721 |
-
|
3722 |
-
#: core/um-filters-fields.php:11
|
3723 |
-
msgid "Required"
|
3724 |
-
msgstr ""
|
3725 |
-
|
3726 |
-
#: core/um-filters-fields.php:21
|
3727 |
-
msgid "Age"
|
3728 |
-
msgstr "Yaş"
|
3729 |
-
|
3730 |
-
#: core/um-filters-fields.php:97
|
3731 |
-
msgid "This file has been removed."
|
3732 |
-
msgstr "Bu dosya silindi."
|
3733 |
-
|
3734 |
-
#: core/um-filters-fields.php:119
|
3735 |
-
msgid "Untitled photo"
|
3736 |
-
msgstr "Başlıksız foto"
|
3737 |
-
|
3738 |
-
#: core/um-filters-profile.php:10
|
3739 |
-
msgid "About"
|
3740 |
-
msgstr "Hakkında"
|
3741 |
-
|
3742 |
-
#: core/um-filters-user.php:11 core/um-filters-user.php:33 core/um-filters-user.php:38
|
3743 |
-
msgid "Approve Membership"
|
3744 |
-
msgstr ""
|
3745 |
-
|
3746 |
-
#: core/um-filters-user.php:12 core/um-filters-user.php:34
|
3747 |
-
msgid "Reject Membership"
|
3748 |
-
msgstr ""
|
3749 |
-
|
3750 |
-
#: core/um-filters-user.php:13 core/um-filters-user.php:42
|
3751 |
-
msgid "Put as Pending Review"
|
3752 |
-
msgstr ""
|
3753 |
-
|
3754 |
-
#: core/um-filters-user.php:14 core/um-filters-user.php:46
|
3755 |
-
msgid "Resend Activation E-mail"
|
3756 |
-
msgstr ""
|
3757 |
-
|
3758 |
-
#: core/um-filters-user.php:15
|
3759 |
-
msgid "Deactivate"
|
3760 |
-
msgstr "Etkisizleştir"
|
3761 |
-
|
3762 |
-
#: core/um-filters-user.php:16
|
3763 |
-
msgid "Reactivate"
|
3764 |
-
msgstr "Yeniden Etkinleştir"
|
3765 |
-
|
3766 |
-
#: core/um-filters-user.php:50
|
3767 |
-
msgid "Deactivate this account"
|
3768 |
-
msgstr "Bu hesabı etkisizleştir"
|
3769 |
-
|
3770 |
-
#: core/um-filters-user.php:54
|
3771 |
-
msgid "Reactivate this account"
|
3772 |
-
msgstr "Bu hesabı etkinleştir"
|
3773 |
-
|
3774 |
-
#: core/um-filters-user.php:58
|
3775 |
-
msgid "Delete this user"
|
3776 |
-
msgstr "Bu üyeyi sil"
|
3777 |
-
|
3778 |
-
#: core/um-navmenu-walker-edit.php:18
|
3779 |
-
msgid "Display Mode"
|
3780 |
-
msgstr ""
|
3781 |
-
|
3782 |
-
#: core/um-navmenu-walker-edit.php:19
|
3783 |
-
msgid "By Role"
|
3784 |
-
msgstr ""
|
3785 |
-
|
3786 |
-
#: core/um-navmenu-walker-edit.php:78
|
3787 |
-
msgid "Who can see this menu link?"
|
3788 |
-
msgstr ""
|
3789 |
-
|
3790 |
-
#: core/um-navmenu-walker-edit.php:98
|
3791 |
-
msgid "Select the member roles that can see this link"
|
3792 |
-
msgstr ""
|
3793 |
-
|
3794 |
-
#: core/um-password.php:29
|
3795 |
-
msgid "This is not a valid hash, or it has expired."
|
3796 |
-
msgstr ""
|
3797 |
-
|
3798 |
-
#: core/um-setup.php:128 core/um-setup.php:147
|
3799 |
-
msgid "Register"
|
3800 |
-
msgstr ""
|
3801 |
-
|
3802 |
-
#: core/um-setup.php:133 core/um-setup.php:141
|
3803 |
-
msgid "Login"
|
3804 |
-
msgstr ""
|
3805 |
-
|
3806 |
-
#: core/um-taxonomies.php:19
|
3807 |
-
msgid "Form"
|
3808 |
-
msgstr ""
|
3809 |
-
|
3810 |
-
#: core/um-taxonomies.php:20 core/um-taxonomies.php:38 core/um-taxonomies.php:58
|
3811 |
-
msgid "Add New"
|
3812 |
-
msgstr "Yeni Ekle"
|
3813 |
-
|
3814 |
-
#: core/um-taxonomies.php:21
|
3815 |
-
msgid "Add New Form"
|
3816 |
-
msgstr "Yeni Form Ekle"
|
3817 |
-
|
3818 |
-
#: core/um-taxonomies.php:22
|
3819 |
-
msgid "Edit Form"
|
3820 |
-
msgstr "Formu Düzenle"
|
3821 |
-
|
3822 |
-
#: core/um-taxonomies.php:23
|
3823 |
-
msgid "You did not create any forms yet"
|
3824 |
-
msgstr "Henüz form oluşturmadınız."
|
3825 |
-
|
3826 |
-
#: core/um-taxonomies.php:24 core/um-taxonomies.php:42 core/um-taxonomies.php:62
|
3827 |
-
msgid "Nothing found in Trash"
|
3828 |
-
msgstr ""
|
3829 |
-
|
3830 |
-
#: core/um-taxonomies.php:25
|
3831 |
-
msgid "Search Forms"
|
3832 |
-
msgstr "Arama Formu"
|
3833 |
-
|
3834 |
-
#: core/um-taxonomies.php:37
|
3835 |
-
msgid "User Role"
|
3836 |
-
msgstr ""
|
3837 |
-
|
3838 |
-
#: core/um-taxonomies.php:39
|
3839 |
-
msgid "Add New User Role"
|
3840 |
-
msgstr ""
|
3841 |
-
|
3842 |
-
#: core/um-taxonomies.php:40
|
3843 |
-
msgid "Edit User Role"
|
3844 |
-
msgstr "Üye Rolünü Düzenle"
|
3845 |
-
|
3846 |
-
#: core/um-taxonomies.php:41
|
3847 |
-
msgid "You did not create any user roles yet"
|
3848 |
-
msgstr ""
|
3849 |
-
|
3850 |
-
#: core/um-taxonomies.php:43
|
3851 |
-
msgid "Search User Roles"
|
3852 |
-
msgstr "Üye Rollerini Ara"
|
3853 |
-
|
3854 |
-
#: core/um-taxonomies.php:57
|
3855 |
-
msgid "Member Directory"
|
3856 |
-
msgstr "Üyeler Sayfası"
|
3857 |
-
|
3858 |
-
#: core/um-taxonomies.php:59
|
3859 |
-
msgid "Add New Member Directory"
|
3860 |
-
msgstr "Yeni Üyeler Sayfası Ekle"
|
3861 |
-
|
3862 |
-
#: core/um-taxonomies.php:60
|
3863 |
-
msgid "Edit Member Directory"
|
3864 |
-
msgstr "Üyeler Sayfasını Düzenle"
|
3865 |
-
|
3866 |
-
#: core/um-taxonomies.php:61
|
3867 |
-
msgid "You did not create any member directories yet"
|
3868 |
-
msgstr ""
|
3869 |
-
|
3870 |
-
#: core/um-taxonomies.php:63
|
3871 |
-
msgid "Search Member Directories"
|
3872 |
-
msgstr "Üye Klasörlerini Ara"
|
3873 |
-
|
3874 |
-
#: core/um-user-posts.php:65
|
3875 |
-
msgid "Posts"
|
3876 |
-
msgstr "Yazılar"
|
3877 |
-
|
3878 |
-
#: core/um-user-posts.php:71
|
3879 |
-
msgid "Comments"
|
3880 |
-
msgstr "Yorumlar"
|
3881 |
-
|
3882 |
-
#: index.php:57
|
3883 |
-
msgid "Docs"
|
3884 |
-
msgstr ""
|
3885 |
-
|
3886 |
-
#: index.php:63
|
3887 |
-
msgid "Remove this plugin"
|
3888 |
-
msgstr ""
|
3889 |
-
|
3890 |
-
#: index.php:63
|
3891 |
-
msgid "Uninstall"
|
3892 |
-
msgstr ""
|
3893 |
-
|
3894 |
-
#: templates/profile/comments-single.php:6
|
3895 |
-
#, php-format
|
3896 |
-
msgid "On <a href=\"%1$s\">%2$s</a>"
|
3897 |
-
msgstr ""
|
3898 |
-
|
3899 |
-
#: templates/profile/comments-single.php:15 templates/profile/comments.php:14
|
3900 |
-
msgid "load more comments"
|
3901 |
-
msgstr "daha fazla yorum"
|
3902 |
-
|
3903 |
-
#: templates/profile/comments.php:23
|
3904 |
-
msgid "You have not made any comments."
|
3905 |
-
msgstr "Hiç yorumunuz bulunmuyor."
|
3906 |
-
|
3907 |
-
#: templates/profile/comments.php:23
|
3908 |
-
msgid "This user has not made any comments."
|
3909 |
-
msgstr "Bu üyenin hiç bir yorumu yok."
|
3910 |
-
|
3911 |
-
#: templates/profile/posts-single.php:6
|
3912 |
-
#, php-format
|
3913 |
-
msgid "%s ago"
|
3914 |
-
msgstr "%s önce"
|
3915 |
-
|
3916 |
-
#: templates/profile/posts-single.php:8
|
3917 |
-
msgid "no comments"
|
3918 |
-
msgstr "yorumsuz"
|
3919 |
-
|
3920 |
-
#: templates/profile/posts-single.php:8
|
3921 |
-
msgid "1 comment"
|
3922 |
-
msgstr "1 yorum"
|
3923 |
-
|
3924 |
-
#: templates/profile/posts-single.php:8
|
3925 |
-
#, php-format
|
3926 |
-
msgid "% comments"
|
3927 |
-
msgstr ""
|
3928 |
-
|
3929 |
-
#: templates/profile/posts-single.php:17 templates/profile/posts.php:14
|
3930 |
-
msgid "load more posts"
|
3931 |
-
msgstr "daha fazla yazı"
|
3932 |
-
|
3933 |
-
#: templates/profile/posts.php:23
|
3934 |
-
msgid "You have not created any posts."
|
3935 |
-
msgstr "Hiç yazınız bulunmuyor."
|
3936 |
-
|
3937 |
-
#: templates/profile/posts.php:23
|
3938 |
-
msgid "This user has not created any posts."
|
3939 |
-
msgstr "Bu üyenin hiç yazısı yok."
|
3940 |
-
|
3941 |
-
#: um-config.php:13
|
3942 |
-
msgid "Users"
|
3943 |
-
msgstr ""
|
3944 |
-
|
3945 |
-
#: um-config.php:20
|
3946 |
-
msgid "Default New User Role"
|
3947 |
-
msgstr "Varsayılan Yeni Kullanıcı Rolü"
|
3948 |
-
|
3949 |
-
#: um-config.php:21
|
3950 |
-
msgid ""
|
3951 |
-
"Select the default role that will be assigned to user after registration If you did not specify custom role "
|
3952 |
-
"settings per form."
|
3953 |
-
msgstr ""
|
3954 |
-
|
3955 |
-
#: um-config.php:24
|
3956 |
-
msgid "Choose user role..."
|
3957 |
-
msgstr ""
|
3958 |
-
|
3959 |
-
#: um-config.php:31
|
3960 |
-
msgid "Profile Permalink Base"
|
3961 |
-
msgstr "Profil Bağlantı Temeli"
|
3962 |
-
|
3963 |
-
#: um-config.php:32
|
3964 |
-
msgid "Here you can control the permalink structure of the user profile URL globally"
|
3965 |
-
msgstr ""
|
3966 |
-
|
3967 |
-
#: um-config.php:40 um-config.php:60
|
3968 |
-
msgid "Select..."
|
3969 |
-
msgstr ""
|
3970 |
-
|
3971 |
-
#: um-config.php:47
|
3972 |
-
msgid "User Display Name"
|
3973 |
-
msgstr "Üyenin Görünen Adı"
|
3974 |
-
|
3975 |
-
#: um-config.php:48
|
3976 |
-
msgid ""
|
3977 |
-
"This is the name that will be displayed for users on the front end of your site. Default setting uses first/"
|
3978 |
-
"last name as display name if it exists"
|
3979 |
-
msgstr ""
|
3980 |
-
|
3981 |
-
#: um-config.php:66
|
3982 |
-
msgid "Display Name Custom Field(s)"
|
3983 |
-
msgstr ""
|
3984 |
-
|
3985 |
-
#: um-config.php:74
|
3986 |
-
msgid "Automatically redirect author page to their profile?"
|
3987 |
-
msgstr ""
|
3988 |
-
|
3989 |
-
#: um-config.php:76
|
3990 |
-
msgid "If enabled, author pages will automatically redirect to the user's profile page"
|
3991 |
-
msgstr ""
|
3992 |
-
|
3993 |
-
#: um-config.php:82
|
3994 |
-
msgid "Members Directory"
|
3995 |
-
msgstr "Üyeler Syfası"
|
3996 |
-
|
3997 |
-
#: um-config.php:90
|
3998 |
-
msgid "Use Gravatars?"
|
3999 |
-
msgstr "Gravatars Kullanılsın mı?"
|
4000 |
-
|
4001 |
-
#: um-config.php:92
|
4002 |
-
msgid ""
|
4003 |
-
"Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a "
|
4004 |
-
"custom profile photo / avatar)"
|
4005 |
-
msgstr ""
|
4006 |
-
|
4007 |
-
#: um-config.php:112
|
4008 |
-
msgid "Password Account Tab"
|
4009 |
-
msgstr "Hesap Parolası Sekmesi"
|
4010 |
-
|
4011 |
-
#: um-config.php:120
|
4012 |
-
msgid "Privacy Account Tab"
|
4013 |
-
msgstr "Hesap Gizlilik Sekmesi"
|
4014 |
-
|
4015 |
-
#: um-config.php:128
|
4016 |
-
msgid "Notifications Account Tab"
|
4017 |
-
msgstr "Hesap Bildirimler Sekmesi"
|
4018 |
-
|
4019 |
-
#: um-config.php:136
|
4020 |
-
msgid "Delete Account Tab"
|
4021 |
-
msgstr "Hesabı Silme Sekmesi"
|
4022 |
-
|
4023 |
-
#: um-config.php:144
|
4024 |
-
msgid "Account Deletion Custom Text"
|
4025 |
-
msgstr "Hesap Silme Özelleştirilebilir Yazısı"
|
4026 |
-
|
4027 |
-
#: um-config.php:146
|
4028 |
-
msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
|
4029 |
-
msgstr ""
|
4030 |
-
|
4031 |
-
#: um-config.php:165
|
4032 |
-
msgid "Access"
|
4033 |
-
msgstr ""
|
4034 |
-
|
4035 |
-
#: um-config.php:171
|
4036 |
-
msgid "Panic Key"
|
4037 |
-
msgstr "Panik Anahtarı"
|
4038 |
-
|
4039 |
-
#: um-config.php:181
|
4040 |
-
msgid "Global Site Access"
|
4041 |
-
msgstr "Genel Site Ulaşımı"
|
4042 |
-
|
4043 |
-
#: um-config.php:193
|
4044 |
-
msgid "Custom Redirect URL"
|
4045 |
-
msgstr ""
|
4046 |
-
|
4047 |
-
#: um-config.php:202
|
4048 |
-
msgid "Exclude the following URLs"
|
4049 |
-
msgstr "Takip URLlerini kısıtla"
|
4050 |
-
|
4051 |
-
#: um-config.php:203
|
4052 |
-
msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
|
4053 |
-
msgstr ""
|
4054 |
-
|
4055 |
-
#: um-config.php:204
|
4056 |
-
msgid "Add New URL"
|
4057 |
-
msgstr ""
|
4058 |
-
|
4059 |
-
#: um-config.php:211
|
4060 |
-
msgid "Exclude restricted pages from main loop"
|
4061 |
-
msgstr ""
|
4062 |
-
|
4063 |
-
#: um-config.php:221
|
4064 |
-
msgid "Exclude restricted pages from search loop"
|
4065 |
-
msgstr ""
|
4066 |
-
|
4067 |
-
#: um-config.php:231
|
4068 |
-
msgid "Exclude restricted pages from archive loop"
|
4069 |
-
msgstr ""
|
4070 |
-
|
4071 |
-
#: um-config.php:241
|
4072 |
-
msgid "Allow Backend Login Screen for Guests"
|
4073 |
-
msgstr ""
|
4074 |
-
|
4075 |
-
#: um-config.php:252
|
4076 |
-
msgid "Redirect to alternative login page"
|
4077 |
-
msgstr ""
|
4078 |
-
|
4079 |
-
#: um-config.php:253
|
4080 |
-
msgid "If you disable backend access to login screen, specify here where a user will be redirected"
|
4081 |
-
msgstr ""
|
4082 |
-
|
4083 |
-
#: um-config.php:265 um-config.php:297
|
4084 |
-
msgid "Custom URL"
|
4085 |
-
msgstr ""
|
4086 |
-
|
4087 |
-
#: um-config.php:273
|
4088 |
-
msgid "Allow Backend Register Screen for Guests"
|
4089 |
-
msgstr ""
|
4090 |
-
|
4091 |
-
#: um-config.php:284
|
4092 |
-
msgid "Redirect to alternative register page"
|
4093 |
-
msgstr ""
|
4094 |
-
|
4095 |
-
#: um-config.php:285
|
4096 |
-
msgid "If you disable backend access to register screen, specify here where a user will be redirected"
|
4097 |
-
msgstr ""
|
4098 |
-
|
4099 |
-
#: um-config.php:305
|
4100 |
-
msgid "Whitelisted Backend IPs"
|
4101 |
-
msgstr ""
|
4102 |
-
|
4103 |
-
#: um-config.php:306
|
4104 |
-
msgid ""
|
4105 |
-
"Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being "
|
4106 |
-
"locked from site backend."
|
4107 |
-
msgstr ""
|
4108 |
-
|
4109 |
-
#: um-config.php:312
|
4110 |
-
msgid "Blocked IP Addresses"
|
4111 |
-
msgstr ""
|
4112 |
-
|
4113 |
-
#: um-config.php:313
|
4114 |
-
msgid ""
|
4115 |
-
"This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
|
4116 |
-
"target specific range with a wildcard"
|
4117 |
-
msgstr ""
|
4118 |
-
|
4119 |
-
#: um-config.php:319
|
4120 |
-
msgid "Blocked Email Addresses"
|
4121 |
-
msgstr ""
|
4122 |
-
|
4123 |
-
#: um-config.php:320
|
4124 |
-
msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
|
4125 |
-
msgstr ""
|
4126 |
-
|
4127 |
-
#: um-config.php:326
|
4128 |
-
msgid "Blacklist Words"
|
4129 |
-
msgstr "Yasaklanmış Kelimeler Listesi"
|
4130 |
-
|
4131 |
-
#: um-config.php:327
|
4132 |
-
msgid ""
|
4133 |
-
"This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
|
4134 |
-
"username"
|
4135 |
-
msgstr ""
|
4136 |
-
|
4137 |
-
#: um-config.php:342
|
4138 |
-
msgid "Emails"
|
4139 |
-
msgstr ""
|
4140 |
-
|
4141 |
-
#: um-config.php:348
|
4142 |
-
msgid "Mail appears from"
|
4143 |
-
msgstr "Postanın kimden geldiğini gösteren isim"
|
4144 |
-
|
4145 |
-
#: um-config.php:349
|
4146 |
-
msgid "e.g. Site Name"
|
4147 |
-
msgstr ""
|
4148 |
-
|
4149 |
-
#: um-config.php:356
|
4150 |
-
msgid "Mail appears from address"
|
4151 |
-
msgstr "Postanın geldiği adres"
|
4152 |
-
|
4153 |
-
#: um-config.php:357 um-config.php:672
|
4154 |
-
msgid "e.g. admin@companyname.com"
|
4155 |
-
msgstr ""
|
4156 |
-
|
4157 |
-
#: um-config.php:364 um-config.php:372 um-config.php:382
|
4158 |
-
msgid "Account Welcome Email"
|
4159 |
-
msgstr "Üyeliğe Hoşgeldin E-postası"
|
4160 |
-
|
4161 |
-
#: um-config.php:373 um-config.php:409 um-config.php:441 um-config.php:473 um-config.php:509 um-config.php:540
|
4162 |
-
#: um-config.php:571 um-config.php:602 um-config.php:634 um-config.php:687 um-config.php:718 um-config.php:750
|
4163 |
-
msgid "Subject Line"
|
4164 |
-
msgstr ""
|
4165 |
-
|
4166 |
-
#: um-config.php:383 um-config.php:419 um-config.php:451 um-config.php:483 um-config.php:519 um-config.php:550
|
4167 |
-
#: um-config.php:581 um-config.php:612 um-config.php:644 um-config.php:697 um-config.php:728 um-config.php:760
|
4168 |
-
msgid "Message Body"
|
4169 |
-
msgstr ""
|
4170 |
-
|
4171 |
-
#: um-config.php:400 um-config.php:408 um-config.php:418
|
4172 |
-
msgid "Account Activation Email"
|
4173 |
-
msgstr "Üyelik Etkinleştirme E-postası"
|
4174 |
-
|
4175 |
-
#: um-config.php:432 um-config.php:440 um-config.php:450
|
4176 |
-
msgid "Pending Review Email"
|
4177 |
-
msgstr ""
|
4178 |
-
|
4179 |
-
#: um-config.php:464 um-config.php:472 um-config.php:482
|
4180 |
-
msgid "Account Approved Email"
|
4181 |
-
msgstr ""
|
4182 |
-
|
4183 |
-
#: um-config.php:500 um-config.php:508 um-config.php:518
|
4184 |
-
msgid "Account Rejected Email"
|
4185 |
-
msgstr ""
|
4186 |
-
|
4187 |
-
#: um-config.php:531 um-config.php:539 um-config.php:549
|
4188 |
-
msgid "Account Deactivated Email"
|
4189 |
-
msgstr ""
|
4190 |
-
|
4191 |
-
#: um-config.php:562 um-config.php:570 um-config.php:580
|
4192 |
-
msgid "Account Deleted Email"
|
4193 |
-
msgstr ""
|
4194 |
-
|
4195 |
-
#: um-config.php:593 um-config.php:601 um-config.php:611
|
4196 |
-
msgid "Password Reset Email"
|
4197 |
-
msgstr "Parola Sıfırlama E-postası"
|
4198 |
-
|
4199 |
-
#: um-config.php:625 um-config.php:633 um-config.php:643
|
4200 |
-
msgid "Password Changed Email"
|
4201 |
-
msgstr "Parolanız Değişti E-postası"
|
4202 |
-
|
4203 |
-
#: um-config.php:670
|
4204 |
-
msgid "Admin E-mail Address"
|
4205 |
-
msgstr "Yönetici E-posta Adresi"
|
4206 |
-
|
4207 |
-
#: um-config.php:678 um-config.php:686 um-config.php:696
|
4208 |
-
msgid "New User Notification"
|
4209 |
-
msgstr "Yeni Kullanıcı Bildirimi"
|
4210 |
-
|
4211 |
-
#: um-config.php:709 um-config.php:717 um-config.php:727
|
4212 |
-
msgid "Account Needs Review Notification"
|
4213 |
-
msgstr ""
|
4214 |
-
|
4215 |
-
#: um-config.php:741 um-config.php:749 um-config.php:759
|
4216 |
-
msgid "Account Deletion Notification"
|
4217 |
-
msgstr "Hesap Silme Bildirimi"
|
4218 |
-
|
4219 |
-
#: um-config.php:777
|
4220 |
-
msgid "Uploads"
|
4221 |
-
msgstr ""
|
4222 |
-
|
4223 |
-
#: um-config.php:783
|
4224 |
-
msgid "Profile Photo Thumbnail Sizes"
|
4225 |
-
msgstr "Profil Fotosu Boyutları"
|
4226 |
-
|
4227 |
-
#: um-config.php:784
|
4228 |
-
msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
|
4229 |
-
msgstr ""
|
4230 |
-
|
4231 |
-
#: um-config.php:787 um-config.php:797
|
4232 |
-
msgid "Add New Size"
|
4233 |
-
msgstr "Yeni Boyut Ekle"
|
4234 |
-
|
4235 |
-
#: um-config.php:793
|
4236 |
-
msgid "Cover Photo Thumbnail Sizes"
|
4237 |
-
msgstr "Kapak Fotosu Boyutları"
|
4238 |
-
|
4239 |
-
#: um-config.php:794
|
4240 |
-
msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
|
4241 |
-
msgstr ""
|
4242 |
-
|
4243 |
-
#: um-config.php:803
|
4244 |
-
msgid "Image Quality"
|
4245 |
-
msgstr "Fotoğraf Kalitesi"
|
4246 |
-
|
4247 |
-
#: um-config.php:804
|
4248 |
-
msgid ""
|
4249 |
-
"Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
|
4250 |
-
"100 (best quality, biggest file). The default range is 60."
|
4251 |
-
msgstr ""
|
4252 |
-
|
4253 |
-
#: um-config.php:812
|
4254 |
-
msgid "Image Upload Maximum Width"
|
4255 |
-
msgstr "Yüklenen Fotoğrafın Maksimum Genişliği"
|
4256 |
-
|
4257 |
-
#: um-config.php:813
|
4258 |
-
msgid "Any image upload above this width will be resized to this limit automatically."
|
4259 |
-
msgstr ""
|
4260 |
-
|
4261 |
-
#: um-config.php:821
|
4262 |
-
msgid "Cover Photo Minimum Width"
|
4263 |
-
msgstr "Kapak Fotoğrafının Minimum Genişliği Olacak"
|
4264 |
-
|
4265 |
-
#: um-config.php:822
|
4266 |
-
msgid "This will be the minimum width for cover photo uploads"
|
4267 |
-
msgstr "Bu kapak fotoğrafının minimum genişliği olacak"
|
4268 |
-
|
4269 |
-
#: um-config.php:838
|
4270 |
-
msgid "SEO"
|
4271 |
-
msgstr ""
|
4272 |
-
|
4273 |
-
#: um-config.php:844
|
4274 |
-
msgid "User Profile Title"
|
4275 |
-
msgstr "Üye Profil Başlığı"
|
4276 |
-
|
4277 |
-
#: um-config.php:853
|
4278 |
-
msgid "User Profile Dynamic Meta Description"
|
4279 |
-
msgstr "Üye Profilinin Meta Açıklaması"
|
4280 |
-
|
4281 |
-
#: um-config.php:854
|
4282 |
-
msgid "You can use dynamic tags to display dynamic user profile data in this field."
|
4283 |
-
msgstr ""
|
4284 |
-
|
4285 |
-
#: um-config.php:855
|
4286 |
-
msgid "This will be used in the meta description that is available for search-engines."
|
4287 |
-
msgstr "Bu arama motorları tarafından kullanılabilir meta açıklaması olarak."
|
4288 |
-
|
4289 |
-
#: um-config.php:869
|
4290 |
-
msgid "Appearance"
|
4291 |
-
msgstr ""
|
4292 |
-
|
4293 |
-
#: um-config.php:879
|
4294 |
-
msgid "General"
|
4295 |
-
msgstr ""
|
4296 |
-
|
4297 |
-
#: um-config.php:886
|
4298 |
-
msgid "Members Default Template"
|
4299 |
-
msgstr ""
|
4300 |
-
|
4301 |
-
#: um-config.php:887
|
4302 |
-
msgid "This will be the default template to output member directory"
|
4303 |
-
msgstr ""
|
4304 |
-
|
4305 |
-
#: um-config.php:897
|
4306 |
-
msgid "General Active Color"
|
4307 |
-
msgstr "Genel Aktif Renk"
|
4308 |
-
|
4309 |
-
#: um-config.php:899
|
4310 |
-
msgid ""
|
4311 |
-
"Active color is used commonly with many plugin elements as highlighted color or active selection for "
|
4312 |
-
"example. This color demonstrates the primary active color of the plugin"
|
4313 |
-
msgstr ""
|
4314 |
-
|
4315 |
-
#: um-config.php:907
|
4316 |
-
msgid "General Secondary Color"
|
4317 |
-
msgstr "Genel İkincil Renk"
|
4318 |
-
|
4319 |
-
#: um-config.php:909
|
4320 |
-
msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
|
4321 |
-
msgstr ""
|
4322 |
-
|
4323 |
-
#: um-config.php:917
|
4324 |
-
msgid "Default Primary Button Color"
|
4325 |
-
msgstr "Varsayılan Birincil Buton Rengi"
|
4326 |
-
|
4327 |
-
#: um-config.php:926
|
4328 |
-
msgid "Default Primary Button Hover Color"
|
4329 |
-
msgstr "Varsayılan Birincil Buton Üst Rengi"
|
4330 |
-
|
4331 |
-
#: um-config.php:935
|
4332 |
-
msgid "Default Primary Button Text Color"
|
4333 |
-
msgstr "Varsayılan Birincil Buton Metin Rengi"
|
4334 |
-
|
4335 |
-
#: um-config.php:944
|
4336 |
-
msgid "Default Secondary Button Color"
|
4337 |
-
msgstr "Varsayılan İkincil Buton Rengi"
|
4338 |
-
|
4339 |
-
#: um-config.php:953
|
4340 |
-
msgid "Default Secondary Button Hover Color"
|
4341 |
-
msgstr "Varsayılan İkincil Buton Üst Rengi"
|
4342 |
-
|
4343 |
-
#: um-config.php:962
|
4344 |
-
msgid "Default Secondary Button Text Color"
|
4345 |
-
msgstr "Varsayılan İkincil Buton Metin Rengi"
|
4346 |
-
|
4347 |
-
#: um-config.php:971
|
4348 |
-
msgid "Default Help Icon Color"
|
4349 |
-
msgstr "Varsayılan Yardım İkonu Rengi"
|
4350 |
-
|
4351 |
-
#: um-config.php:983
|
4352 |
-
msgid "Form Inputs"
|
4353 |
-
msgstr "Form Girişleri"
|
4354 |
-
|
4355 |
-
#: um-config.php:990
|
4356 |
-
msgid "Field Label Color"
|
4357 |
-
msgstr "Etiket Alanı Rengi"
|
4358 |
-
|
4359 |
-
#: um-config.php:998
|
4360 |
-
msgid "Field Border Style"
|
4361 |
-
msgstr "Sınır Alanı Biçimi"
|
4362 |
-
|
4363 |
-
#: um-config.php:1007
|
4364 |
-
msgid "Field Background Color"
|
4365 |
-
msgstr "Boşluk Alanının Arkaplan Rengi"
|
4366 |
-
|
4367 |
-
#: um-config.php:1016
|
4368 |
-
msgid "Field Text Color"
|
4369 |
-
msgstr "Yazı Rengi"
|
4370 |
-
|
4371 |
-
#: um-config.php:1025
|
4372 |
-
msgid "Field Placeholder Color"
|
4373 |
-
msgstr ""
|
4374 |
-
|
4375 |
-
#: um-config.php:1034
|
4376 |
-
msgid "Field Font Icon Color"
|
4377 |
-
msgstr ""
|
4378 |
-
|
4379 |
-
#: um-config.php:1042
|
4380 |
-
msgid "Show an asterisk for required fields"
|
4381 |
-
msgstr ""
|
4382 |
-
|
4383 |
-
#: um-config.php:1050
|
4384 |
-
msgid "Field Required Asterisk Color"
|
4385 |
-
msgstr ""
|
4386 |
-
|
4387 |
-
#: um-config.php:1063
|
4388 |
-
msgid "Profile"
|
4389 |
-
msgstr ""
|
4390 |
-
|
4391 |
-
#: um-config.php:1070
|
4392 |
-
msgid "Profile Default Template"
|
4393 |
-
msgstr ""
|
4394 |
-
|
4395 |
-
#: um-config.php:1071
|
4396 |
-
msgid "This will be the default template to output profile"
|
4397 |
-
msgstr ""
|
4398 |
-
|
4399 |
-
#: um-config.php:1079
|
4400 |
-
msgid "Profile Maximum Width"
|
4401 |
-
msgstr ""
|
4402 |
-
|
4403 |
-
#: um-config.php:1087
|
4404 |
-
msgid "Profile Area Maximum Width"
|
4405 |
-
msgstr ""
|
4406 |
-
|
4407 |
-
#: um-config.php:1096
|
4408 |
-
msgid "Profile Shortcode Alignment"
|
4409 |
-
msgstr ""
|
4410 |
-
|
4411 |
-
#: um-config.php:1100 um-config.php:1426 um-config.php:1517
|
4412 |
-
msgid "Centered"
|
4413 |
-
msgstr ""
|
4414 |
-
|
4415 |
-
#: um-config.php:1101 um-config.php:1427 um-config.php:1518
|
4416 |
-
msgid "Left aligned"
|
4417 |
-
msgstr ""
|
4418 |
-
|
4419 |
-
#: um-config.php:1102 um-config.php:1428 um-config.php:1519
|
4420 |
-
msgid "Right aligned"
|
4421 |
-
msgstr ""
|
4422 |
-
|
4423 |
-
#: um-config.php:1110
|
4424 |
-
msgid "Profile Field Icons"
|
4425 |
-
msgstr ""
|
4426 |
-
|
4427 |
-
#: um-config.php:1111
|
4428 |
-
msgid "This is applicable for edit mode only"
|
4429 |
-
msgstr ""
|
4430 |
-
|
4431 |
-
#: um-config.php:1114 um-config.php:1440 um-config.php:1531
|
4432 |
-
msgid "Show inside text field"
|
4433 |
-
msgstr ""
|
4434 |
-
|
4435 |
-
#: um-config.php:1115 um-config.php:1441 um-config.php:1532
|
4436 |
-
msgid "Show with label"
|
4437 |
-
msgstr ""
|
4438 |
-
|
4439 |
-
#: um-config.php:1116 um-config.php:1442 um-config.php:1533
|
4440 |
-
msgid "Turn off"
|
4441 |
-
msgstr ""
|
4442 |
-
|
4443 |
-
#: um-config.php:1123
|
4444 |
-
msgid "Profile Primary Button Text"
|
4445 |
-
msgstr ""
|
4446 |
-
|
4447 |
-
#: um-config.php:1131
|
4448 |
-
msgid "Profile Secondary Button"
|
4449 |
-
msgstr ""
|
4450 |
-
|
4451 |
-
#: um-config.php:1139
|
4452 |
-
msgid "Profile Secondary Button Text"
|
4453 |
-
msgstr ""
|
4454 |
-
|
4455 |
-
#: um-config.php:1149
|
4456 |
-
msgid "Profile Associated Role"
|
4457 |
-
msgstr ""
|
4458 |
-
|
4459 |
-
#: um-config.php:1150
|
4460 |
-
msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
|
4461 |
-
msgstr ""
|
4462 |
-
|
4463 |
-
#: um-config.php:1159
|
4464 |
-
msgid "Profile Base Background Color"
|
4465 |
-
msgstr ""
|
4466 |
-
|
4467 |
-
#: um-config.php:1168
|
4468 |
-
msgid "Profile Header Background Color"
|
4469 |
-
msgstr ""
|
4470 |
-
|
4471 |
-
#: um-config.php:1176
|
4472 |
-
msgid "Default Profile Photo"
|
4473 |
-
msgstr ""
|
4474 |
-
|
4475 |
-
#: um-config.php:1177
|
4476 |
-
msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
|
4477 |
-
msgstr ""
|
4478 |
-
|
4479 |
-
#: um-config.php:1188
|
4480 |
-
msgid "Default Cover Photo"
|
4481 |
-
msgstr ""
|
4482 |
-
|
4483 |
-
#: um-config.php:1189
|
4484 |
-
msgid ""
|
4485 |
-
"You can change the default cover photo globally here. Please make sure that the default cover is large "
|
4486 |
-
"enough and respects the ratio you are using for cover photos."
|
4487 |
-
msgstr ""
|
4488 |
-
|
4489 |
-
#: um-config.php:1205
|
4490 |
-
msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
|
4491 |
-
msgstr ""
|
4492 |
-
|
4493 |
-
#: um-config.php:1217
|
4494 |
-
msgid "Profile Cover Photos"
|
4495 |
-
msgstr ""
|
4496 |
-
|
4497 |
-
#: um-config.php:1226
|
4498 |
-
msgid "Profile Cover Ratio"
|
4499 |
-
msgstr ""
|
4500 |
-
|
4501 |
-
#: um-config.php:1227
|
4502 |
-
msgid "Choose global ratio for cover photos of profiles"
|
4503 |
-
msgstr ""
|
4504 |
-
|
4505 |
-
#: um-config.php:1241
|
4506 |
-
msgid "Profile Header Meta Text Color"
|
4507 |
-
msgstr ""
|
4508 |
-
|
4509 |
-
#: um-config.php:1250
|
4510 |
-
msgid "Profile Header Link Color"
|
4511 |
-
msgstr ""
|
4512 |
-
|
4513 |
-
#: um-config.php:1259
|
4514 |
-
msgid "Profile Header Link Hover"
|
4515 |
-
msgstr ""
|
4516 |
-
|
4517 |
-
#: um-config.php:1268
|
4518 |
-
msgid "Profile Header Icon Link Color"
|
4519 |
-
msgstr ""
|
4520 |
-
|
4521 |
-
#: um-config.php:1277
|
4522 |
-
msgid "Profile Header Icon Link Hover"
|
4523 |
-
msgstr ""
|
4524 |
-
|
4525 |
-
#: um-config.php:1285
|
4526 |
-
msgid "Show display name in profile header"
|
4527 |
-
msgstr ""
|
4528 |
-
|
4529 |
-
#: um-config.php:1293
|
4530 |
-
msgid "Show user description in header"
|
4531 |
-
msgstr ""
|
4532 |
-
|
4533 |
-
#: um-config.php:1301
|
4534 |
-
msgid "User description maximum chars"
|
4535 |
-
msgstr ""
|
4536 |
-
|
4537 |
-
#: um-config.php:1310
|
4538 |
-
msgid "Profile Header Menu Position"
|
4539 |
-
msgstr ""
|
4540 |
-
|
4541 |
-
#: um-config.php:1312
|
4542 |
-
msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
|
4543 |
-
msgstr ""
|
4544 |
-
|
4545 |
-
#: um-config.php:1323
|
4546 |
-
msgid "Show a custom message if profile is empty"
|
4547 |
-
msgstr ""
|
4548 |
-
|
4549 |
-
#: um-config.php:1331
|
4550 |
-
msgid "Show the emoticon"
|
4551 |
-
msgstr ""
|
4552 |
-
|
4553 |
-
#: um-config.php:1345
|
4554 |
-
msgid "Enable profile menu"
|
4555 |
-
msgstr ""
|
4556 |
-
|
4557 |
-
#: um-config.php:1353
|
4558 |
-
#, php-format
|
4559 |
-
msgid "%s Tab"
|
4560 |
-
msgstr "%s Sekmesi"
|
4561 |
-
|
4562 |
-
#: um-config.php:1363
|
4563 |
-
msgid "Profile menu default tab"
|
4564 |
-
msgstr "Varsayılan profil menüsü sekmesi"
|
4565 |
-
|
4566 |
-
#: um-config.php:1364
|
4567 |
-
msgid "This will be the default tab on user profile page"
|
4568 |
-
msgstr "Bu varsayılan sekme olabilir kullanıcı profil sayfasında"
|
4569 |
-
|
4570 |
-
#: um-config.php:1373
|
4571 |
-
msgid "Enable menu icons in desktop view"
|
4572 |
-
msgstr ""
|
4573 |
-
|
4574 |
-
#: um-config.php:1381
|
4575 |
-
msgid "Enable counts in menu"
|
4576 |
-
msgstr ""
|
4577 |
-
|
4578 |
-
#: um-config.php:1389
|
4579 |
-
msgid "Profile Menu"
|
4580 |
-
msgstr "Profil Menüsü"
|
4581 |
-
|
4582 |
-
#: um-config.php:1404
|
4583 |
-
msgid "Registration Default Template"
|
4584 |
-
msgstr "Varsayılan Kayıt Şablonu"
|
4585 |
-
|
4586 |
-
#: um-config.php:1405
|
4587 |
-
msgid "This will be the default template to output registration"
|
4588 |
-
msgstr ""
|
4589 |
-
|
4590 |
-
#: um-config.php:1413
|
4591 |
-
msgid "Registration Maximum Width"
|
4592 |
-
msgstr "Maksimum Kayıt Alanı Genişliği"
|
4593 |
-
|
4594 |
-
#: um-config.php:1422
|
4595 |
-
msgid "Registration Shortcode Alignment"
|
4596 |
-
msgstr ""
|
4597 |
-
|
4598 |
-
#: um-config.php:1436
|
4599 |
-
msgid "Registration Field Icons"
|
4600 |
-
msgstr ""
|
4601 |
-
|
4602 |
-
#: um-config.php:1437
|
4603 |
-
msgid "This controls the display of field icons in the registration form"
|
4604 |
-
msgstr ""
|
4605 |
-
|
4606 |
-
#: um-config.php:1449
|
4607 |
-
msgid "Registration Primary Button Text"
|
4608 |
-
msgstr ""
|
4609 |
-
|
4610 |
-
#: um-config.php:1457
|
4611 |
-
msgid "Registration Secondary Button"
|
4612 |
-
msgstr ""
|
4613 |
-
|
4614 |
-
#: um-config.php:1465
|
4615 |
-
msgid "Registration Secondary Button Text"
|
4616 |
-
msgstr ""
|
4617 |
-
|
4618 |
-
#: um-config.php:1475
|
4619 |
-
msgid "Registration Default Role"
|
4620 |
-
msgstr ""
|
4621 |
-
|
4622 |
-
#: um-config.php:1476
|
4623 |
-
msgid "This will be the default role assigned to users registering thru registration form"
|
4624 |
-
msgstr ""
|
4625 |
-
|
4626 |
-
#: um-config.php:1495
|
4627 |
-
msgid "Login Default Template"
|
4628 |
-
msgstr "Varsayılan Giriş Şablonu"
|
4629 |
-
|
4630 |
-
#: um-config.php:1496
|
4631 |
-
msgid "This will be the default template to output login"
|
4632 |
-
msgstr ""
|
4633 |
-
|
4634 |
-
#: um-config.php:1504
|
4635 |
-
msgid "Login Maximum Width"
|
4636 |
-
msgstr "Maksimum Giriş Alanı Genişliği"
|
4637 |
-
|
4638 |
-
#: um-config.php:1513
|
4639 |
-
msgid "Login Shortcode Alignment"
|
4640 |
-
msgstr ""
|
4641 |
-
|
4642 |
-
#: um-config.php:1527
|
4643 |
-
msgid "Login Field Icons"
|
4644 |
-
msgstr ""
|
4645 |
-
|
4646 |
-
#: um-config.php:1528
|
4647 |
-
msgid "This controls the display of field icons in the login form"
|
4648 |
-
msgstr ""
|
4649 |
-
|
4650 |
-
#: um-config.php:1540
|
4651 |
-
msgid "Login Primary Button Text"
|
4652 |
-
msgstr ""
|
4653 |
-
|
4654 |
-
#: um-config.php:1548
|
4655 |
-
msgid "Login Secondary Button"
|
4656 |
-
msgstr ""
|
4657 |
-
|
4658 |
-
#: um-config.php:1556
|
4659 |
-
msgid "Login Secondary Button Text"
|
4660 |
-
msgstr ""
|
4661 |
-
|
4662 |
-
#: um-config.php:1565
|
4663 |
-
msgid "Login Forgot Password Link"
|
4664 |
-
msgstr "Parolamı Unuttum Bağlantısına Gir"
|
4665 |
-
|
4666 |
-
#: um-config.php:1584
|
4667 |
-
msgid "Any custom css rules that you specify here will be applied globally to the plugin."
|
4668 |
-
msgstr ""
|
4669 |
-
|
4670 |
-
#: um-config.php:1599
|
4671 |
-
msgid "Advanced"
|
4672 |
-
msgstr "Gelişmiş"
|
4673 |
-
|
4674 |
-
#: um-config.php:1605
|
4675 |
-
msgid "Disable JS/CSS Compression"
|
4676 |
-
msgstr ""
|
4677 |
-
|
4678 |
-
#: um-config.php:1607
|
4679 |
-
msgid ""
|
4680 |
-
"Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
|
4681 |
-
"this setting for development or debugging purposes only."
|
4682 |
-
msgstr ""
|
4683 |
-
|
4684 |
-
#: um-config.php:1614
|
4685 |
-
msgid "Never load plugin JS and CSS on the following pages"
|
4686 |
-
msgstr ""
|
4687 |
-
|
4688 |
-
#: um-config.php:1615
|
4689 |
-
msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
|
4690 |
-
msgstr ""
|
4691 |
-
|
4692 |
-
#: um-config.php:1616
|
4693 |
-
msgid "Add New Page"
|
4694 |
-
msgstr "Yeni Sayfa Ekle"
|
4695 |
-
|
4696 |
-
#: um-config.php:1622
|
4697 |
-
msgid "Allow Tracking"
|
4698 |
-
msgstr ""
|
4699 |
-
|
4700 |
-
#: um-config.php:1626
|
4701 |
-
msgid "Do not allow"
|
4702 |
-
msgstr ""
|
4703 |
-
|
4704 |
-
#~ msgid "Enabled"
|
4705 |
-
#~ msgstr "Etkinleştir"
|
4706 |
-
|
4707 |
-
#~ msgid "Disabled"
|
4708 |
-
#~ msgstr "Etkisizleştir"
|
4709 |
-
|
4710 |
-
#~ msgid "outdatedBrowser_page_message"
|
4711 |
-
#~ msgstr ""
|
4712 |
-
#~ "The site you are visiting can only be viewed using a modern browser. Please upgrade your browser to "
|
4713 |
-
#~ "increase safety and your browsing experience. Choose one of the browsers above. If you don't care <a href="
|
4714 |
-
#~ "\"?forwardOutdatedBrowser=1\">click here</a>"
|
4715 |
-
|
4716 |
-
#~ msgid "404_page_message"
|
4717 |
-
#~ msgstr ""
|
4718 |
-
#~ "The Page you are looking for doesn't exist or an other error occurred. <a href=\"javascript:history."
|
4719 |
-
#~ "go(-1)\">Go back</a>, or head over to <a href=\"%s\">%s</a> to choose a new direction."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|