WP-Members Membership Plugin - Version 3.3.6

Version Description

  • Improved admin tab for captcha settings. You can now change the captcha type from the captcha tab (previously, you could only do this from the main options tab).
  • Removed "pattern" attribute from number field type. HTML5 does not support this attribute for this input type.
  • Fix issues with custom fields in admin/user dashboard profile. This involved a change to how fields were loaded for both display and validation (so that now it is a singular process).
  • Fix undefined has_access() (replaced with API function) when renewing a membership.
  • Fix issues with WooCommerce registration integration.
  • Fix issue of undefined array keys if Really Simple Captcha is selected, but the plugin is not enabled.
  • Fix issue that caused users to not be properly set when moderated registration is used along with BuddyPress and users are created manually.
  • Fix issue in WP CLI wpmem settings command that caused error to be displayed when viewing content settings.
Download this release

Release Info

Developer cbutlerjr
Plugin Icon 128x128 WP-Members Membership Plugin
Version 3.3.6
Comparing to
See all releases

Code changes from version 3.3.4.3 to 3.3.6

admin/post.php CHANGED
@@ -1,6 +1,6 @@
1
- <?php
2
- /**
3
- * Included for legacy reasons: backward compatibility.
4
- *
5
- * Remove later.
6
  */
1
+ <?php
2
+ /**
3
+ * Included for legacy reasons: backward compatibility.
4
+ *
5
+ * Remove later.
6
  */
admin/tab-options.php CHANGED
@@ -1,9 +1,9 @@
1
- <?php
2
- /**
3
- * Included for legacy reasons: backward compatibility with
4
- * WP-Members User List 1.9.4 and earlier. Those will actually
5
- * still function, and there is no front end issue, but removing
6
- * this file causes a PHP notice in the admin panel.
7
- *
8
- * Remove later.
9
  */
1
+ <?php
2
+ /**
3
+ * Included for legacy reasons: backward compatibility with
4
+ * WP-Members User List 1.9.4 and earlier. Those will actually
5
+ * still function, and there is no front end issue, but removing
6
+ * this file causes a PHP notice in the admin panel.
7
+ *
8
+ * Remove later.
9
  */
assets/css/admin.css CHANGED
@@ -1,125 +1,126 @@
1
- /**
2
- * WP-Members Admin Styles CSS
3
- *
4
- * CSS for the WP-Members admin panels
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2020 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WP-Members
12
- * @author Chad Butler
13
- * @copyright 2006-2020
14
- */
15
-
16
-
17
- .wpmem_tbl_drag {
18
- background:#fffbcc;
19
- font-weight: bold;
20
- border: 1px solid #990000;
21
- }
22
-
23
- .column-wpmem_block {
24
- width: 80px;
25
- }
26
-
27
- #addfieldform li,
28
- #editfieldform li,
29
- #updatesettings li {
30
- padding: 5px 0;
31
- }
32
-
33
- #addfieldform label,
34
- #editfieldform label,
35
- #updatesettings label {
36
- float:left;
37
- width: 166px;
38
- clear: both;
39
- display: block;
40
- }
41
-
42
- #addfieldform .add-field-indent,
43
- #editfieldform .add-field-indent {
44
- margin-left: 165px;
45
- }
46
-
47
- #fields_postbox,
48
- #add_field_postbox {
49
- min-width:950px;
50
- }
51
-
52
- .req {
53
- color: #f00;
54
- }
55
-
56
- #the-list {
57
- cursor: move;
58
- }
59
- #sort, #edit {
60
- width: 30px;
61
- }
62
-
63
- #wpmem_block input {
64
- vertical-align: -webkit-baseline-middle;
65
- margin: 0 0 8px 0;
66
- }
67
- #wpmem_block label {
68
- margin: 0 0 0 8px;
69
- }
70
- #wpmem_ok_block_status {
71
- margin: 5px 0 0 0;
72
- }
73
- #wpmem_post_block_status {
74
- font-weight: 600;
75
- }
76
- #wpmem_post_icon_0 {
77
- color: red;
78
- }
79
- #wpmem_post_icon_1 {
80
- color: green;
81
- }
82
- #wpmem_post_icon_2 {
83
- color: black;
84
- }
85
- #wpmem_product_enabled {
86
- color: green;
87
- }
88
- #s2id__wpmem_products,
89
- .select2-search-field,
90
- #_wpmem_products {
91
- width: 100%;
92
- }
93
-
94
- /** User Profile Tabs **/
95
- #wpmem_user_profile_tabs {
96
- padding: 0px;
97
- background: none;
98
- border-width: 0px;
99
- }
100
- #wpmem_user_profile_tabs .ui-tabs-nav {
101
- padding-left: 0px;
102
- background: transparent;
103
- border-width: 0px 0px 1px 0px;
104
- -moz-border-radius: 0px;
105
- -webkit-border-radius: 0px;
106
- border-radius: 0px;
107
- }
108
- #wpmem_user_profile_tabs .ui-tabs-panel {
109
- background: #fff;
110
- border-width: 0px 1px 1px 1px;
111
- }
112
- #wpmem_user_profile_tabs .ui-state-active {
113
- border: 1px solid #006799;
114
- background: #008ec2;
115
- }
116
- #wpmem_user_profile_tabs .ui-state-active a {
117
- color: #fff;
118
- }
119
-
120
- #wpmem_product_fixed_period_select input,
121
- #wpmem_product_no_gap,
122
- #wpmem_product_fixed_period {
123
- margin-top: 10px;
124
- margin-left: 24px;
125
- }
 
1
+ /**
2
+ * WP-Members Admin Styles CSS
3
+ *
4
+ * CSS for the WP-Members admin panels
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2020 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WP-Members
12
+ * @author Chad Butler
13
+ * @copyright 2006-2020
14
+ */
15
+
16
+
17
+ .wpmem_tbl_drag {
18
+ background:#fffbcc;
19
+ font-weight: bold;
20
+ border: 1px solid #990000;
21
+ }
22
+
23
+ .column-wpmem_block {
24
+ width: 80px;
25
+ }
26
+
27
+ #addfieldform li,
28
+ #editfieldform li,
29
+ #updatesettings li {
30
+ padding: 5px 0;
31
+ }
32
+
33
+ #addfieldform label,
34
+ #editfieldform label,
35
+ #updatesettings label {
36
+ float:left;
37
+ width: 166px;
38
+ clear: both;
39
+ display: block;
40
+ }
41
+
42
+ #addfieldform .add-field-indent,
43
+ #editfieldform .add-field-indent {
44
+ margin-left: 165px;
45
+ }
46
+
47
+ #fields_postbox,
48
+ #add_field_postbox {
49
+ min-width:950px;
50
+ }
51
+
52
+ .req {
53
+ color: #f00;
54
+ }
55
+
56
+ #the-list {
57
+ cursor: move;
58
+ }
59
+ #sort, #edit {
60
+ width: 30px;
61
+ }
62
+
63
+ #wpmem_block input {
64
+ vertical-align: -webkit-baseline-middle;
65
+ margin: 0 0 8px 0;
66
+ }
67
+ #wpmem_block label {
68
+ margin: 0 0 0 8px;
69
+ }
70
+ #wpmem_ok_block_status {
71
+ margin: 5px 0 0 0;
72
+ }
73
+ #wpmem_post_block_status {
74
+ font-weight: 600;
75
+ }
76
+ #wpmem_post_icon_0 {
77
+ color: red;
78
+ }
79
+ #wpmem_post_icon_1 {
80
+ color: green;
81
+ }
82
+ #wpmem_post_icon_2 {
83
+ color: black;
84
+ }
85
+ #wpmem_product_enabled {
86
+ color: green;
87
+ }
88
+ #s2id__wpmem_products,
89
+ .select2-search-field,
90
+ #_wpmem_products {
91
+ width: 100%;
92
+ }
93
+
94
+ /** User Profile Tabs **/
95
+ #wpmem_user_profile_tabs {
96
+ padding: 0px;
97
+ background: none;
98
+ border-width: 0px;
99
+ }
100
+ #wpmem_user_profile_tabs .ui-tabs-nav {
101
+ padding-left: 0px;
102
+ background: transparent;
103
+ border-width: 0px 0px 1px 0px;
104
+ -moz-border-radius: 0px;
105
+ -webkit-border-radius: 0px;
106
+ border-radius: 0px;
107
+ }
108
+ #wpmem_user_profile_tabs .ui-tabs-panel {
109
+ background: #fff;
110
+ border-width: 0px 1px 1px 1px;
111
+ }
112
+ #wpmem_user_profile_tabs .ui-state-active {
113
+ border: 1px solid #006799;
114
+ background: #008ec2;
115
+ }
116
+ #wpmem_user_profile_tabs .ui-state-active a {
117
+ color: #fff;
118
+ }
119
+
120
+ #wpmem_product_fixed_period_select label,
121
+ #wpmem_product_fixed_period_select input,
122
+ #wpmem_product_no_gap,
123
+ #wpmem_product_fixed_period {
124
+ margin-top: 10px;
125
+ margin-left: 24px;
126
+ }
assets/css/forms/generic-no-float.css CHANGED
@@ -1,283 +1,283 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2020 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WP-Members
12
- * @author Chad Butler
13
- * @copyright 2006-2020
14
- */
15
-
16
- /*
17
- This stylesheet is designed to integrate WP-Members floated form elements
18
- as simply as possible with most themes. There are quite a few examples
19
- in here of what you can do to style the forms. You can build off of this
20
- or start from scratch and set your own custom css for the plugin
21
- (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg,
34
- .wpmem_msg {
35
- background: #F9F9F9;
36
- border:1px solid lightGrey;
37
- border-radius: 3px;
38
- padding: 20px 0 0 0;
39
- }
40
- #wpmem_msg {
41
- width: 100%;
42
- }
43
- .wpmem_msg {
44
- width: 74%;
45
- }
46
-
47
-
48
- /* Sidebar Login Widget */
49
-
50
- #wp-members {
51
- width: 100%;
52
- }
53
- #wp-members fieldset {
54
- border:none;
55
- padding:0px
56
- }
57
- #wp-members input {
58
- font-family: inherit;
59
- }
60
- #wp-members input[type="text"],
61
- #wp-members input[type="password"]{
62
- margin: 0 0 4px 0;
63
- }
64
- #wp-members input[type="submit"] {
65
- padding: 5px 6px 4px;
66
- margin: 0 4px 0 0;
67
- }
68
- #wp-members .button_div {
69
- margin-top:4px;
70
- }
71
- #wp-members .err {
72
- width:100%;
73
- padding: 5px;
74
- font-family: inherit;
75
- border: 1px solid #ccc;
76
- border-radius: 3px;
77
- }
78
-
79
-
80
- /* Login Form and Registration Form */
81
- #wpmem_reg,
82
- #wpmem_login {
83
- color: rgb(43, 43, 43);
84
- font-family: Arial,sans-serif;
85
- font-size: 16px;
86
- font-weight: 400;
87
- line-height: 1.5;
88
- }
89
-
90
- #wpmem_reg label,
91
- #wpmem_login label {
92
- display: initial;
93
- }
94
-
95
- #wpmem_reg input[type="text"],
96
- #wpmem_reg input[type="password"],
97
- #wpmem_reg input[type="email"],
98
- #wpmem_reg input[type="url"],
99
- #wpmem_reg input[type="number"],
100
- #wpmem_reg input[type="date"],
101
- #wpmem_reg textarea,
102
- #wpmem_login input[type="text"],
103
- #wpmem_login input[type="password"] {
104
- border: 1px solid rgba(0, 0, 0, 0.1);
105
- border-radius: 2px;
106
- color: rgb(43, 43, 43);
107
- padding: 8px 10px 8px;
108
- background: none repeat scroll 0% 0% #fff;
109
- }
110
-
111
- #wpmem_reg input,
112
- #wpmem_reg button,
113
- #wpmem_reg select,
114
- #wpmem_reg textarea,
115
- #wpmem_login input,
116
- #wpmem_login button {
117
- -moz-box-sizing: border-box;
118
- font-size: 100%;
119
- margin: 0px;
120
- max-width: 100%;
121
- vertical-align: baseline;
122
- }
123
-
124
- #wpmem_reg input:focus,
125
- #wpmem_reg textarea:focus,
126
- #wpmem_login input:focus {
127
- border: 1px solid rgba(0, 0, 0, 0.3);
128
- outline: 0px none;
129
- }
130
-
131
- #wpmem_reg select {
132
- width:100%;
133
- padding: 8px 10px 7px;
134
- border: 1px solid rgba(0, 0, 0, 0.1);
135
- border-radius: 2px;
136
- color: rgb(43, 43, 43);
137
- margin: 5px 0;
138
- }
139
-
140
- #wpmem_reg fieldset,
141
- #wpmem_login fieldset {
142
- border: none;
143
- padding: 0;
144
- margin: 40px 0;
145
- }
146
- #wpmem_reg legend,
147
- #wpmem_login legend {
148
- font-size: 24px;
149
- line-height: 1;
150
- font-weight: 700;
151
- margin-bottom: 10px;
152
- width: 100%;
153
- }
154
- #wpmem_reg .form,
155
- #wpmem_login .form {
156
- margin:0;
157
- padding:0;
158
- }
159
- #wpmem_reg .clear,
160
- #wpmem_login .clear {
161
- clear:both;
162
- }
163
- #wpmem_reg .holder,
164
- #wpmem_login .holder {
165
- background-color:#fff;
166
- }
167
-
168
- #wpmem_login .div_text,
169
- #wpmem_reg .div_text,
170
- #wpmem_reg .div_textarea,
171
- #wpmem_reg .div_select,
172
- #wpmem_reg .div_checkbox,
173
- #wpmem_reg .div_multiselect,
174
- #wpmem_reg .div_multicheckbox,
175
- #wpmem_reg .div_radio,
176
- #wpmem_reg .div_image,
177
- #wpmem_reg .div_file,
178
- #wpmem_reg .div_url,
179
- #wpmem_reg .div_number,
180
- #wpmem_reg .div_date {
181
- width:74%;
182
- margin:0 0 14px 0;
183
- }
184
- #wpmem_login input[type="checkbox"] {
185
- margin: 12px 2px;
186
- }
187
- #wpmem_reg .div_textarea textarea,
188
- #wpmem_reg .textbox,
189
- #wpmem_login .textbox,
190
- #wpmem_reg .username,
191
- #wpmem_reg .password,
192
- #wpmem_reg .file,
193
- #wpmem_reg .image,
194
- #wpmem_login .username,
195
- #wpmem_login .password {
196
- width:100%;
197
- }
198
-
199
-
200
- #wpmem_reg textarea {
201
- height:185px;
202
- }
203
- #wpmem_reg .req {
204
- color: #bd3500;
205
- font-size: 22px;
206
- line-height: 50%;
207
- }
208
-
209
- #wpmem_reg .req-text {
210
- margin: 20px 0px 0px 5px;
211
- }
212
-
213
- #wpmem_reg .noinput {
214
- width:93%;
215
- padding: 8px 10px 7px;
216
- border: 1px solid rgba(0, 0, 0, 0.1);
217
- border-radius: 2px;
218
- color: rgb(43, 43, 43);
219
- margin: 5px 0;
220
- }
221
-
222
- #wpmem_reg .captcha {
223
- width: 74%;
224
- margin: 5px 0px;
225
- }
226
- #wpmem_reg .captcha table{
227
- line-height: 0px;
228
- }
229
- #wpmem_login .link-text {
230
- padding: 4px 0;
231
- width: 74%;
232
- text-align:right;
233
- }
234
-
235
- #tos {
236
- margin-right:5px;
237
- }
238
-
239
-
240
- /* Buttons */
241
-
242
- #wpmem_reg .button_div, #wpmem_login .button_div {
243
- width:74%;
244
- /* height:55px; */
245
- padding: 6px 0;
246
- text-align: right;
247
- }
248
-
249
-
250
- /** for smaller screens */
251
-
252
- @media screen and (max-width: 720px) {
253
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
254
- #wpmem_reg label.textarea , #wpmem_reg label.select,
255
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
256
- #wpmem_reg .div_select, #wpmem_login .div_text,
257
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
258
- float: none;
259
- }
260
-
261
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
262
- #wpmem_reg label.textarea , #wpmem_reg label.select {
263
- width: 90%;
264
- padding: 5px 0 0 0;
265
- }
266
- #wpmem_reg label.textarea {
267
- height: 26px;
268
- }
269
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
270
- #wpmem_reg .div_select, #wpmem_login .div_text,
271
- #wpmem_reg .div_checkbox {
272
- width: 98%;
273
- }
274
- #wpmem_msg, .wpmem_msg {
275
- width: 100%;
276
- }
277
-
278
- #wpmem_reg .button_div,
279
- #wpmem_login .button_div,
280
- #wpmem_login .link-text {
281
- width:98%;
282
- }
283
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2020 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WP-Members
12
+ * @author Chad Butler
13
+ * @copyright 2006-2020
14
+ */
15
+
16
+ /*
17
+ This stylesheet is designed to integrate WP-Members floated form elements
18
+ as simply as possible with most themes. There are quite a few examples
19
+ in here of what you can do to style the forms. You can build off of this
20
+ or start from scratch and set your own custom css for the plugin
21
+ (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg,
34
+ .wpmem_msg {
35
+ background: #F9F9F9;
36
+ border:1px solid lightGrey;
37
+ border-radius: 3px;
38
+ padding: 20px 0 0 0;
39
+ }
40
+ #wpmem_msg {
41
+ width: 100%;
42
+ }
43
+ .wpmem_msg {
44
+ width: 74%;
45
+ }
46
+
47
+
48
+ /* Sidebar Login Widget */
49
+
50
+ #wp-members {
51
+ width: 100%;
52
+ }
53
+ #wp-members fieldset {
54
+ border:none;
55
+ padding:0px
56
+ }
57
+ #wp-members input {
58
+ font-family: inherit;
59
+ }
60
+ #wp-members input[type="text"],
61
+ #wp-members input[type="password"]{
62
+ margin: 0 0 4px 0;
63
+ }
64
+ #wp-members input[type="submit"] {
65
+ padding: 5px 6px 4px;
66
+ margin: 0 4px 0 0;
67
+ }
68
+ #wp-members .button_div {
69
+ margin-top:4px;
70
+ }
71
+ #wp-members .err {
72
+ width:100%;
73
+ padding: 5px;
74
+ font-family: inherit;
75
+ border: 1px solid #ccc;
76
+ border-radius: 3px;
77
+ }
78
+
79
+
80
+ /* Login Form and Registration Form */
81
+ #wpmem_reg,
82
+ #wpmem_login {
83
+ color: rgb(43, 43, 43);
84
+ font-family: Arial,sans-serif;
85
+ font-size: 16px;
86
+ font-weight: 400;
87
+ line-height: 1.5;
88
+ }
89
+
90
+ #wpmem_reg label,
91
+ #wpmem_login label {
92
+ display: initial;
93
+ }
94
+
95
+ #wpmem_reg input[type="text"],
96
+ #wpmem_reg input[type="password"],
97
+ #wpmem_reg input[type="email"],
98
+ #wpmem_reg input[type="url"],
99
+ #wpmem_reg input[type="number"],
100
+ #wpmem_reg input[type="date"],
101
+ #wpmem_reg textarea,
102
+ #wpmem_login input[type="text"],
103
+ #wpmem_login input[type="password"] {
104
+ border: 1px solid rgba(0, 0, 0, 0.1);
105
+ border-radius: 2px;
106
+ color: rgb(43, 43, 43);
107
+ padding: 8px 10px 8px;
108
+ background: none repeat scroll 0% 0% #fff;
109
+ }
110
+
111
+ #wpmem_reg input,
112
+ #wpmem_reg button,
113
+ #wpmem_reg select,
114
+ #wpmem_reg textarea,
115
+ #wpmem_login input,
116
+ #wpmem_login button {
117
+ -moz-box-sizing: border-box;
118
+ font-size: 100%;
119
+ margin: 0px;
120
+ max-width: 100%;
121
+ vertical-align: baseline;
122
+ }
123
+
124
+ #wpmem_reg input:focus,
125
+ #wpmem_reg textarea:focus,
126
+ #wpmem_login input:focus {
127
+ border: 1px solid rgba(0, 0, 0, 0.3);
128
+ outline: 0px none;
129
+ }
130
+
131
+ #wpmem_reg select {
132
+ width:100%;
133
+ padding: 8px 10px 7px;
134
+ border: 1px solid rgba(0, 0, 0, 0.1);
135
+ border-radius: 2px;
136
+ color: rgb(43, 43, 43);
137
+ margin: 5px 0;
138
+ }
139
+
140
+ #wpmem_reg fieldset,
141
+ #wpmem_login fieldset {
142
+ border: none;
143
+ padding: 0;
144
+ margin: 40px 0;
145
+ }
146
+ #wpmem_reg legend,
147
+ #wpmem_login legend {
148
+ font-size: 24px;
149
+ line-height: 1;
150
+ font-weight: 700;
151
+ margin-bottom: 10px;
152
+ width: 100%;
153
+ }
154
+ #wpmem_reg .form,
155
+ #wpmem_login .form {
156
+ margin:0;
157
+ padding:0;
158
+ }
159
+ #wpmem_reg .clear,
160
+ #wpmem_login .clear {
161
+ clear:both;
162
+ }
163
+ #wpmem_reg .holder,
164
+ #wpmem_login .holder {
165
+ background-color:#fff;
166
+ }
167
+
168
+ #wpmem_login .div_text,
169
+ #wpmem_reg .div_text,
170
+ #wpmem_reg .div_textarea,
171
+ #wpmem_reg .div_select,
172
+ #wpmem_reg .div_checkbox,
173
+ #wpmem_reg .div_multiselect,
174
+ #wpmem_reg .div_multicheckbox,
175
+ #wpmem_reg .div_radio,
176
+ #wpmem_reg .div_image,
177
+ #wpmem_reg .div_file,
178
+ #wpmem_reg .div_url,
179
+ #wpmem_reg .div_number,
180
+ #wpmem_reg .div_date {
181
+ width:74%;
182
+ margin:0 0 14px 0;
183
+ }
184
+ #wpmem_login input[type="checkbox"] {
185
+ margin: 12px 2px;
186
+ }
187
+ #wpmem_reg .div_textarea textarea,
188
+ #wpmem_reg .textbox,
189
+ #wpmem_login .textbox,
190
+ #wpmem_reg .username,
191
+ #wpmem_reg .password,
192
+ #wpmem_reg .file,
193
+ #wpmem_reg .image,
194
+ #wpmem_login .username,
195
+ #wpmem_login .password {
196
+ width:100%;
197
+ }
198
+
199
+
200
+ #wpmem_reg textarea {
201
+ height:185px;
202
+ }
203
+ #wpmem_reg .req {
204
+ color: #bd3500;
205
+ font-size: 22px;
206
+ line-height: 50%;
207
+ }
208
+
209
+ #wpmem_reg .req-text {
210
+ margin: 20px 0px 0px 5px;
211
+ }
212
+
213
+ #wpmem_reg .noinput {
214
+ width:93%;
215
+ padding: 8px 10px 7px;
216
+ border: 1px solid rgba(0, 0, 0, 0.1);
217
+ border-radius: 2px;
218
+ color: rgb(43, 43, 43);
219
+ margin: 5px 0;
220
+ }
221
+
222
+ #wpmem_reg .captcha {
223
+ width: 74%;
224
+ margin: 5px 0px;
225
+ }
226
+ #wpmem_reg .captcha table{
227
+ line-height: 0px;
228
+ }
229
+ #wpmem_login .link-text {
230
+ padding: 4px 0;
231
+ width: 74%;
232
+ text-align:right;
233
+ }
234
+
235
+ #tos {
236
+ margin-right:5px;
237
+ }
238
+
239
+
240
+ /* Buttons */
241
+
242
+ #wpmem_reg .button_div, #wpmem_login .button_div {
243
+ width:74%;
244
+ /* height:55px; */
245
+ padding: 6px 0;
246
+ text-align: right;
247
+ }
248
+
249
+
250
+ /** for smaller screens */
251
+
252
+ @media screen and (max-width: 720px) {
253
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
254
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
255
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
256
+ #wpmem_reg .div_select, #wpmem_login .div_text,
257
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
258
+ float: none;
259
+ }
260
+
261
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
262
+ #wpmem_reg label.textarea , #wpmem_reg label.select {
263
+ width: 90%;
264
+ padding: 5px 0 0 0;
265
+ }
266
+ #wpmem_reg label.textarea {
267
+ height: 26px;
268
+ }
269
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
270
+ #wpmem_reg .div_select, #wpmem_login .div_text,
271
+ #wpmem_reg .div_checkbox {
272
+ width: 98%;
273
+ }
274
+ #wpmem_msg, .wpmem_msg {
275
+ width: 100%;
276
+ }
277
+
278
+ #wpmem_reg .button_div,
279
+ #wpmem_login .button_div,
280
+ #wpmem_login .link-text {
281
+ width:98%;
282
+ }
283
  }
assets/css/forms/generic-rigid.css CHANGED
@@ -1,338 +1,338 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2020 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WP-Members
12
- * @author Chad Butler
13
- * @copyright 2006-2020
14
- */
15
-
16
- /*
17
- This stylesheet is designed to integrate WP-Members floated form elements
18
- as simply as possible with most themes using more rigid element properties.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- width: 100%;
35
- background: #F9F9F9;
36
- border:1px solid lightGrey;
37
- border-radius: 3px;
38
- padding: 20px 0 0 0;
39
- }
40
-
41
-
42
- /* Sidebar Login Widget */
43
-
44
- #wp-members {
45
- width: 100%;
46
- }
47
- #wp-members fieldset {
48
- border:none;
49
- padding:0px
50
- }
51
- #wp-members input {
52
- font-family: inherit;
53
- }
54
- #wp-members input[type="text"],
55
- #wp-members input[type="password"]{
56
- margin: 0 0 4px 0;
57
- }
58
- #wp-members input[type="submit"] {
59
- padding: 5px 6px 4px;
60
- margin: 0 4px 0 0;
61
- }
62
- #wp-members .button_div {
63
- margin-top:4px;
64
- }
65
- #wp-members .err {
66
- width:100%;
67
- padding: 5px;
68
- font-family: inherit;
69
- border: 1px solid #ccc;
70
- border-radius: 3px;
71
- }
72
-
73
-
74
- /* Login Form and Registration Form */
75
-
76
- /**
77
- Fonts
78
- */
79
-
80
- #wpmem_reg label,
81
- #wpmem_login label {
82
- font-family: Arial,sans-serif;
83
- font-size: 100%;
84
- font-size: 14px;
85
- font-weight: 400;
86
- }
87
-
88
- #wpmem_reg legend,
89
- #wpmem_login legend {
90
- font-size: 24px;
91
- font-weight: 700;
92
- }
93
-
94
- #wpmem_reg input,
95
- #wpmem_reg textarea,
96
- #wpmem_reg select,
97
- #wpmem_login input {
98
- font-family: Arial,sans-serif;
99
- font-size: 100%;
100
- font-size: 14px;
101
- font-weight: 400;
102
- }
103
-
104
- #wpmem_reg .req {
105
- font-size: 22px;
106
- color: #bd3500;
107
- }
108
-
109
- /**
110
- Form Design
111
- */
112
-
113
- #wpmem_reg fieldset,
114
- #wpmem_login fieldset {
115
- border: none;
116
- }
117
-
118
- #wpmem_reg input,
119
- #wpmem_reg textarea,
120
- #wpmem_reg select,
121
- #wpmem_login input {
122
- border: 1px solid rgba(0, 0, 0, 0.3);
123
- outline: 0px none;
124
- border-radius: 2px;
125
- color: rgb(43, 43, 43);
126
- padding: 8px 10px;
127
- -moz-box-sizing: border-box;
128
- margin: 0px;
129
- max-width: 315px;
130
- vertical-align: baseline;
131
- }
132
-
133
-
134
- #wpmem_reg select {
135
- width:311px;
136
- }
137
- #wpmem_reg .dropdown:focus {
138
- border: 1px solid rgba(0, 0, 0, 0.3);
139
- outline: 0;
140
- }
141
-
142
- #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
143
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover,
144
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
145
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
146
- background-color:inherit;
147
- }
148
-
149
- /**
150
- Size and Spacing
151
- */
152
-
153
- #wpmem_reg fieldset,
154
- #wpmem_login fieldset {
155
- padding: 0;
156
- margin: 40px 0;
157
- }
158
- #wpmem_reg legend,
159
- #wpmem_login legend {
160
- line-height: 1;
161
- margin-bottom: 10px;
162
- }
163
- #wpmem_reg label.text,
164
- #wpmem_reg label.checkbox,
165
- #wpmem_reg label.textarea ,
166
- #wpmem_reg label.select,
167
- #wpmem_login label {
168
- height: 30px;
169
- width:32%;
170
- float:left;
171
- display: block;
172
- }
173
- #wpmem_reg label.text,
174
- #wpmem_reg label.checkbox,
175
- #wpmem_reg label.select,
176
- #wpmem_reg label.radio
177
- #wpmem_reg label.multicheckbox,
178
- #wpmem_reg.multiselect,
179
- #wpmem_login label{
180
- padding: 14px 0 4px 0;
181
- }
182
- #wpmem_reg label.textarea {
183
- height: 176px;
184
- padding: 16px 0 2px;
185
- }
186
- #wpmem_login label[for="rememberme"] {
187
- float: none;
188
- display: initial;
189
- }
190
- #wpmem_reg input[type="checkbox"] {
191
- margin-top:18px;
192
- }
193
- #wpmem_reg .div_multicheckbox input[type="checkbox"] {
194
- margin: 0 0 0 0;
195
- }
196
- #wpmem_reg .form,
197
- #wpmem_login .form {
198
- margin:0;
199
- padding:0;
200
- }
201
- #wpmem_reg .clear,
202
- #wpmem_login .clear {
203
- clear:both;
204
- }
205
- #wpmem_reg .holder,
206
- #wpmem_login .holder {
207
- background-color:#fff;
208
- }
209
- #wpmem_login .div_text,
210
- #wpmem_reg .div_text,
211
- #wpmem_reg .div_checkbox,
212
- #wpmem_reg .div_select,
213
- #wpmem_reg .div_textarea,
214
- #wpmem_reg .div_multiselect,
215
- #wpmem_reg .div_multicheckbox,
216
- #wpmem_reg .div_radio {
217
- width:311px;
218
- float:right;
219
- }
220
- #wpmem_reg .div_text,
221
- #wpmem_login .div_text {
222
- padding: 8px 0 6px;
223
- }
224
- #wpmem_reg .div_checkbox {
225
- height: 48px;
226
- }
227
- #wpmem_reg .div_select {
228
- padding: 2px 0 1px;
229
- }
230
- #wpmem_reg .div_textarea {
231
- padding: 5px 0 4px 0;
232
- }
233
- #wpmem_login input[type="checkbox"] {
234
- margin: 12px 2px;
235
- }
236
- #wpmem_reg .textbox,
237
- #wpmem_reg .username,
238
- #wpmem_reg .password,
239
- #wpmem_login .textbox,
240
- #wpmem_login .username,
241
- #wpmem_login .password {
242
- display: block;
243
- width:100%;
244
- height: 34px;
245
- }
246
- #wpmem_reg .div_textarea textarea {
247
- display: block;
248
- width:100%;
249
- }
250
- #wpmem_reg .dropdown {
251
- height: 36px;
252
- padding: 8px 10px;
253
- margin: 5px 0 4px 0;
254
- background-color: transparent;
255
- }
256
- #wpmem_reg textarea {
257
- height:185px;
258
- }
259
- #wpmem_reg .req {
260
- line-height: 50%;
261
- }
262
-
263
- #wpmem_reg .req-text {
264
- float:left;
265
- margin: 20px 0px 0px 5px;
266
- }
267
-
268
- #wpmem_reg .noinput {
269
- margin: 6px 0px 7px 10px;
270
- }
271
-
272
- #wpmem_reg .captcha {
273
- margin: 5px -3px 5px 0;
274
- }
275
- #wpmem_reg .captcha table{
276
- line-height: 0px;
277
- }
278
-
279
- #tos {
280
- margin-right:5px;
281
- }
282
-
283
- #wpmem_login .link-text {
284
- width: 100%;
285
- float:right;
286
- text-align:right;
287
- }
288
-
289
-
290
- /* Buttons */
291
-
292
- #wpmem_reg .button_div,
293
- #wpmem_login .button_div {
294
- width:100%;
295
- float:right;
296
- text-align:right;
297
- /*height:55px;*/
298
- padding: 6px 0;
299
- }
300
-
301
-
302
- /** for smaller screens */
303
-
304
- @media screen and (max-width: 720px) {
305
- #wpmem_reg label.text,
306
- #wpmem_reg label.checkbox,
307
- #wpmem_reg label.textarea,
308
- #wpmem_reg label.select,
309
- #wpmem_reg .div_text,
310
- #wpmem_reg .div_textarea,
311
- #wpmem_reg .div_select,
312
- #wpmem_reg .div_checkbox,
313
- #wpmem_reg .button_div,
314
- #wpmem_login label,
315
- #wpmem_login .button_div,
316
- #wpmem_login .div_text {
317
- float: none;
318
- }
319
-
320
- #wpmem_reg label.text,
321
- #wpmem_reg label.checkbox,
322
- #wpmem_reg label.textarea,
323
- #wpmem_reg label.select,
324
- #wpmem_login label {
325
- width: 90%;
326
- padding: 5px 0 0 0;
327
- }
328
- #wpmem_reg label.textarea {
329
- height: 26px;
330
- }
331
- #wpmem_reg .div_text,
332
- #wpmem_reg .div_textarea,
333
- #wpmem_reg .div_select,
334
- #wpmem_reg .div_checkbox,
335
- #wpmem_login .div_text {
336
- width: 98%;
337
- }
338
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2020 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WP-Members
12
+ * @author Chad Butler
13
+ * @copyright 2006-2020
14
+ */
15
+
16
+ /*
17
+ This stylesheet is designed to integrate WP-Members floated form elements
18
+ as simply as possible with most themes using more rigid element properties.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ width: 100%;
35
+ background: #F9F9F9;
36
+ border:1px solid lightGrey;
37
+ border-radius: 3px;
38
+ padding: 20px 0 0 0;
39
+ }
40
+
41
+
42
+ /* Sidebar Login Widget */
43
+
44
+ #wp-members {
45
+ width: 100%;
46
+ }
47
+ #wp-members fieldset {
48
+ border:none;
49
+ padding:0px
50
+ }
51
+ #wp-members input {
52
+ font-family: inherit;
53
+ }
54
+ #wp-members input[type="text"],
55
+ #wp-members input[type="password"]{
56
+ margin: 0 0 4px 0;
57
+ }
58
+ #wp-members input[type="submit"] {
59
+ padding: 5px 6px 4px;
60
+ margin: 0 4px 0 0;
61
+ }
62
+ #wp-members .button_div {
63
+ margin-top:4px;
64
+ }
65
+ #wp-members .err {
66
+ width:100%;
67
+ padding: 5px;
68
+ font-family: inherit;
69
+ border: 1px solid #ccc;
70
+ border-radius: 3px;
71
+ }
72
+
73
+
74
+ /* Login Form and Registration Form */
75
+
76
+ /**
77
+ Fonts
78
+ */
79
+
80
+ #wpmem_reg label,
81
+ #wpmem_login label {
82
+ font-family: Arial,sans-serif;
83
+ font-size: 100%;
84
+ font-size: 14px;
85
+ font-weight: 400;
86
+ }
87
+
88
+ #wpmem_reg legend,
89
+ #wpmem_login legend {
90
+ font-size: 24px;
91
+ font-weight: 700;
92
+ }
93
+
94
+ #wpmem_reg input,
95
+ #wpmem_reg textarea,
96
+ #wpmem_reg select,
97
+ #wpmem_login input {
98
+ font-family: Arial,sans-serif;
99
+ font-size: 100%;
100
+ font-size: 14px;
101
+ font-weight: 400;
102
+ }
103
+
104
+ #wpmem_reg .req {
105
+ font-size: 22px;
106
+ color: #bd3500;
107
+ }
108
+
109
+ /**
110
+ Form Design
111
+ */
112
+
113
+ #wpmem_reg fieldset,
114
+ #wpmem_login fieldset {
115
+ border: none;
116
+ }
117
+
118
+ #wpmem_reg input,
119
+ #wpmem_reg textarea,
120
+ #wpmem_reg select,
121
+ #wpmem_login input {
122
+ border: 1px solid rgba(0, 0, 0, 0.3);
123
+ outline: 0px none;
124
+ border-radius: 2px;
125
+ color: rgb(43, 43, 43);
126
+ padding: 8px 10px;
127
+ -moz-box-sizing: border-box;
128
+ margin: 0px;
129
+ max-width: 315px;
130
+ vertical-align: baseline;
131
+ }
132
+
133
+
134
+ #wpmem_reg select {
135
+ width:311px;
136
+ }
137
+ #wpmem_reg .dropdown:focus {
138
+ border: 1px solid rgba(0, 0, 0, 0.3);
139
+ outline: 0;
140
+ }
141
+
142
+ #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
143
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover,
144
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
145
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
146
+ background-color:inherit;
147
+ }
148
+
149
+ /**
150
+ Size and Spacing
151
+ */
152
+
153
+ #wpmem_reg fieldset,
154
+ #wpmem_login fieldset {
155
+ padding: 0;
156
+ margin: 40px 0;
157
+ }
158
+ #wpmem_reg legend,
159
+ #wpmem_login legend {
160
+ line-height: 1;
161
+ margin-bottom: 10px;
162
+ }
163
+ #wpmem_reg label.text,
164
+ #wpmem_reg label.checkbox,
165
+ #wpmem_reg label.textarea ,
166
+ #wpmem_reg label.select,
167
+ #wpmem_login label {
168
+ height: 30px;
169
+ width:32%;
170
+ float:left;
171
+ display: block;
172
+ }
173
+ #wpmem_reg label.text,
174
+ #wpmem_reg label.checkbox,
175
+ #wpmem_reg label.select,
176
+ #wpmem_reg label.radio
177
+ #wpmem_reg label.multicheckbox,
178
+ #wpmem_reg.multiselect,
179
+ #wpmem_login label{
180
+ padding: 14px 0 4px 0;
181
+ }
182
+ #wpmem_reg label.textarea {
183
+ height: 176px;
184
+ padding: 16px 0 2px;
185
+ }
186
+ #wpmem_login label[for="rememberme"] {
187
+ float: none;
188
+ display: initial;
189
+ }
190
+ #wpmem_reg input[type="checkbox"] {
191
+ margin-top:18px;
192
+ }
193
+ #wpmem_reg .div_multicheckbox input[type="checkbox"] {
194
+ margin: 0 0 0 0;
195
+ }
196
+ #wpmem_reg .form,
197
+ #wpmem_login .form {
198
+ margin:0;
199
+ padding:0;
200
+ }
201
+ #wpmem_reg .clear,
202
+ #wpmem_login .clear {
203
+ clear:both;
204
+ }
205
+ #wpmem_reg .holder,
206
+ #wpmem_login .holder {
207
+ background-color:#fff;
208
+ }
209
+ #wpmem_login .div_text,
210
+ #wpmem_reg .div_text,
211
+ #wpmem_reg .div_checkbox,
212
+ #wpmem_reg .div_select,
213
+ #wpmem_reg .div_textarea,
214
+ #wpmem_reg .div_multiselect,
215
+ #wpmem_reg .div_multicheckbox,
216
+ #wpmem_reg .div_radio {
217
+ width:311px;
218
+ float:right;
219
+ }
220
+ #wpmem_reg .div_text,
221
+ #wpmem_login .div_text {
222
+ padding: 8px 0 6px;
223
+ }
224
+ #wpmem_reg .div_checkbox {
225
+ height: 48px;
226
+ }
227
+ #wpmem_reg .div_select {
228
+ padding: 2px 0 1px;
229
+ }
230
+ #wpmem_reg .div_textarea {
231
+ padding: 5px 0 4px 0;
232
+ }
233
+ #wpmem_login input[type="checkbox"] {
234
+ margin: 12px 2px;
235
+ }
236
+ #wpmem_reg .textbox,
237
+ #wpmem_reg .username,
238
+ #wpmem_reg .password,
239
+ #wpmem_login .textbox,
240
+ #wpmem_login .username,
241
+ #wpmem_login .password {
242
+ display: block;
243
+ width:100%;
244
+ height: 34px;
245
+ }
246
+ #wpmem_reg .div_textarea textarea {
247
+ display: block;
248
+ width:100%;
249
+ }
250
+ #wpmem_reg .dropdown {
251
+ height: 36px;
252
+ padding: 8px 10px;
253
+ margin: 5px 0 4px 0;
254
+ background-color: transparent;
255
+ }
256
+ #wpmem_reg textarea {
257
+ height:185px;
258
+ }
259
+ #wpmem_reg .req {
260
+ line-height: 50%;
261
+ }
262
+
263
+ #wpmem_reg .req-text {
264
+ float:left;
265
+ margin: 20px 0px 0px 5px;
266
+ }
267
+
268
+ #wpmem_reg .noinput {
269
+ margin: 6px 0px 7px 10px;
270
+ }
271
+
272
+ #wpmem_reg .captcha {
273
+ margin: 5px -3px 5px 0;
274
+ }
275
+ #wpmem_reg .captcha table{
276
+ line-height: 0px;
277
+ }
278
+
279
+ #tos {
280
+ margin-right:5px;
281
+ }
282
+
283
+ #wpmem_login .link-text {
284
+ width: 100%;
285
+ float:right;
286
+ text-align:right;
287
+ }
288
+
289
+
290
+ /* Buttons */
291
+
292
+ #wpmem_reg .button_div,
293
+ #wpmem_login .button_div {
294
+ width:100%;
295
+ float:right;
296
+ text-align:right;
297
+ /*height:55px;*/
298
+ padding: 6px 0;
299
+ }
300
+
301
+
302
+ /** for smaller screens */
303
+
304
+ @media screen and (max-width: 720px) {
305
+ #wpmem_reg label.text,
306
+ #wpmem_reg label.checkbox,
307
+ #wpmem_reg label.textarea,
308
+ #wpmem_reg label.select,
309
+ #wpmem_reg .div_text,
310
+ #wpmem_reg .div_textarea,
311
+ #wpmem_reg .div_select,
312
+ #wpmem_reg .div_checkbox,
313
+ #wpmem_reg .button_div,
314
+ #wpmem_login label,
315
+ #wpmem_login .button_div,
316
+ #wpmem_login .div_text {
317
+ float: none;
318
+ }
319
+
320
+ #wpmem_reg label.text,
321
+ #wpmem_reg label.checkbox,
322
+ #wpmem_reg label.textarea,
323
+ #wpmem_reg label.select,
324
+ #wpmem_login label {
325
+ width: 90%;
326
+ padding: 5px 0 0 0;
327
+ }
328
+ #wpmem_reg label.textarea {
329
+ height: 26px;
330
+ }
331
+ #wpmem_reg .div_text,
332
+ #wpmem_reg .div_textarea,
333
+ #wpmem_reg .div_select,
334
+ #wpmem_reg .div_checkbox,
335
+ #wpmem_login .div_text {
336
+ width: 98%;
337
+ }
338
  }
assets/css/forms/wp-members-2011.css CHANGED
@@ -1,323 +1,323 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Eleven Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Eleven theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- margin-left:-26px;
35
- padding-top: 40px;
36
- width: 595px;
37
- background: #ddd;
38
- border:1px solid lightGrey;
39
- border-radius: 3px;
40
- padding:20px;
41
- font-size: 14px;
42
- font-weight: bold;
43
- margin-bottom: 15px;
44
- }
45
- #wpmem_msg h2, .wpmem_msg h2 {
46
- font-size: 24px;
47
- color: #373737;
48
- line-height: 30px;
49
- }
50
-
51
-
52
- /* Sidebar Login Widget */
53
-
54
- #wp-members {
55
- width: 100%;
56
- margin-bottom: 20px;
57
- font-weight: bold;
58
- color: #1982D1;
59
- }
60
- #wp-members p {
61
- font-weight: normal;
62
- color: #777;
63
- }
64
- #wp-members fieldset {
65
- margin-top: 10px;
66
- }
67
- #wp-members label {
68
- font-weight: normal;
69
- color: #777;
70
- }
71
- #wp-members input {
72
- color: #888;
73
- font-size: 14px;
74
- height: 22px;
75
- line-height: 1.2em;
76
- padding: 4px; 10px; 4px; 28px;
77
- border: 1px solid #ddd;
78
- border-radius: 2px;
79
- }
80
- #wp-members input[type="text"],
81
- #wp-members input[type="password"]{
82
- width: 174px;
83
- }
84
- #wp-members .div_text { padding-top: 4px; }
85
- #wp-members .button_div { margin-top:10px; }
86
- #wp-members .buttons {
87
- height: 30px;
88
- background: #222;
89
- border: none;
90
- -moz-border-radius: 3px;
91
- border-radius: 3px;
92
- -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
93
- -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
94
- box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
95
- color: #eee;
96
- cursor: pointer;
97
- font-size: 15px;
98
- margin-left: 0px;
99
- padding: 5px 28px 5px 22px;
100
- position: relative;
101
- text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
102
- }
103
- #wp-members .buttons:active {
104
- background: #1982d1;
105
- color: #bfddf3;
106
- }
107
- #wp-members .err {
108
- width:100%;
109
- padding: 5px;
110
- border: 1px #000 solid;
111
- background-color:#E6E6E6;
112
- }
113
-
114
-
115
- /* Login Form and Registration Form */
116
-
117
- #wpmem_reg, #wpmem_login {
118
- margin-left:-26px;
119
- width: 595px;
120
- background: #ddd;
121
- border:1px solid lightGrey;
122
- border-radius: 3px;
123
- padding:20px;
124
- margin-bottom:20px;
125
- }
126
- #wpmem_reg legend, #wpmem_login legend {
127
- color: #373737;
128
- font-size: 24px;
129
- font-weight: bold;
130
- }
131
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
132
- #wpmem_reg label.textarea , #wpmem_reg label.select,
133
- #wpmem_login label {
134
- left:4px;
135
- top: 40px;
136
- color:#555;
137
- width:210px;
138
- margin-top:8px;
139
- padding-top:5px;
140
- padding-bottom:5px;
141
- padding-left:5px;
142
- background-color:#eee;
143
- float:left;
144
- display: block;
145
- font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
146
- font-size: 115%;
147
- line-height: 2.2;
148
- height: 35px;
149
- display: block;
150
- border: 4px solid #eee;
151
- border-radius: 5px;
152
- }
153
- #wpmem_reg label.textarea {
154
- height: 200px;
155
- margin-bottom: 5px;
156
- }
157
- #wpmem_login label[for="rememberme"] {
158
- float: none;
159
- display: initial;
160
- background-color: initial;
161
- padding: initial;
162
- font-size: initial;
163
- border: initial;
164
- }
165
-
166
- #wpmem_reg .form, #wpmem_login .form {
167
- margin:0;
168
- padding:0;
169
- }
170
- #wpmem_reg .clear, #wpmem_login .clear {
171
- clear:both;
172
- }
173
- #wpmem_reg .holder, #wpmem_login .holder {
174
- background-color:#fff;
175
- }
176
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
177
- #wpmem_reg .div_textarea, #wpmem_reg .div_select,
178
- #wpmem_login .div_text {
179
- width:360px;
180
- float:right;
181
- margin-top:3px;
182
- padding-top:5px;
183
- padding-bottom:3px;
184
- padding-left:5px;
185
- }
186
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
187
- #wpmem_reg .div_select, #wpmem_login .div_text {
188
- height:35px;
189
- margin-bottom: 15px;
190
- }
191
- #wpmem_login input[type="password"],
192
- #wpmem_login input[type="text"],
193
- #wpmem_reg input[type="text"],
194
- #wpmem_reg input[type="password"],
195
- #wpmem_reg input[type="email"],
196
- #wpmem_reg input[type="url"] {
197
- height: 26px;
198
- }
199
- #wpmem_reg input[type=checkbox]{
200
- outline: 4px solid #eee;
201
- border: none;
202
- background: none;
203
- margin:20px 0 0 5px;
204
- }
205
- #wpmem_reg .dropdown,
206
- #wpmem_reg .textbox, #wpmem_login .textbox,
207
- #wpmem_reg .username, #wpmem_login .username,
208
- #wpmem_reg .password, #wpmem_login .password {
209
- height: 24px;
210
- }
211
- #wpmem_reg .div_textarea textarea,
212
- #wpmem_reg .textbox, #wpmem_login .textbox,
213
- #wpmem_reg .username, #wpmem_login .username,
214
- #wpmem_reg .password, #wpmem_login .password {
215
- display: block;
216
- width: 75%;
217
- background-color:white;
218
- border: 4px solid #eee;
219
- border-radius: 5px;
220
- width:340px;
221
- -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
222
- box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
223
- color: #888;
224
- padding: 10px;
225
- font-size: 15px;
226
- font-family: "Helvetica Neue", Arial, sans serif;
227
- font-weight: 300;
228
- line-height: 1.625;
229
- }
230
- #wpmem_reg .dropdown {
231
- height: 53px;
232
- background-color:white;
233
- border: 4px solid #eee;
234
- border-radius: 5px;
235
- width:340px;
236
- -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
237
- box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
238
- color: #888;
239
- padding: 10px;
240
- font: 15px "Helvetica Neue", Arial, sans serif;
241
- font-weight: 300;
242
- line-height: 1.625;
243
  width: 368px;
244
- }
245
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
246
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
247
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
248
- background-color:#F0FFE6;
249
- }
250
-
251
- #wpmem_reg .textarea {
252
- width:346px;
253
- height:190px;
254
- }
255
-
256
- #wpmem_reg .req {
257
- color: #bd3500;
258
- font-size: 22px;
259
- font-weight: bold;
260
- line-height: 50%;
261
- }
262
-
263
- #wpmem_reg .req-text {
264
- float:left;
265
- margin: 15px 0px 0px 8px;
266
- }
267
-
268
- #wpmem_reg .captcha {
269
- margin: 5px -10px 5px 0;
270
- }
271
- #wpmem_reg .captcha table{
272
- line-height: 0px;
273
- }
274
-
275
- #wpmem_reg .noinput {
276
- margin: 0px;
277
- padding: 5px 0 5px 0;
278
- color:#555;
279
- width:100%;
280
- background-color:#eee;
281
- float:left;
282
- font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
283
- font-size: 115%;
284
- line-height: 2.2;
285
- height: 35px;
286
- display: block;
287
- border: 4px solid #eee;
288
- border-radius: 5px;
289
- }
290
-
291
-
292
- /* Buttons */
293
-
294
- #wpmem_reg .button_div, #wpmem_login .button_div {
295
- width:360px;
296
- float:right;
297
- text-align:right;
298
- height:35px;
299
- margin-top:3px;
300
- padding:5px;
301
- white-space:nowrap;
302
- }
303
-
304
- #wpmem_reg .buttons, #wpmem_login .buttons {
305
- background: #222;
306
- border: none;
307
- -moz-border-radius: 3px;
308
- border-radius: 3px;
309
- -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
310
- -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
311
- box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
312
- color: #eee;
313
- cursor: pointer;
314
- font-size: 15px;
315
- padding: 5px 42px 5px 22px;
316
- position: relative;
317
- left: 15px;
318
- text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
319
- }
320
- #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
321
- background: #1982d1;
322
- color: #bfddf3;
323
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Eleven Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Eleven theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ margin-left:-26px;
35
+ padding-top: 40px;
36
+ width: 595px;
37
+ background: #ddd;
38
+ border:1px solid lightGrey;
39
+ border-radius: 3px;
40
+ padding:20px;
41
+ font-size: 14px;
42
+ font-weight: bold;
43
+ margin-bottom: 15px;
44
+ }
45
+ #wpmem_msg h2, .wpmem_msg h2 {
46
+ font-size: 24px;
47
+ color: #373737;
48
+ line-height: 30px;
49
+ }
50
+
51
+
52
+ /* Sidebar Login Widget */
53
+
54
+ #wp-members {
55
+ width: 100%;
56
+ margin-bottom: 20px;
57
+ font-weight: bold;
58
+ color: #1982D1;
59
+ }
60
+ #wp-members p {
61
+ font-weight: normal;
62
+ color: #777;
63
+ }
64
+ #wp-members fieldset {
65
+ margin-top: 10px;
66
+ }
67
+ #wp-members label {
68
+ font-weight: normal;
69
+ color: #777;
70
+ }
71
+ #wp-members input {
72
+ color: #888;
73
+ font-size: 14px;
74
+ height: 22px;
75
+ line-height: 1.2em;
76
+ padding: 4px; 10px; 4px; 28px;
77
+ border: 1px solid #ddd;
78
+ border-radius: 2px;
79
+ }
80
+ #wp-members input[type="text"],
81
+ #wp-members input[type="password"]{
82
+ width: 174px;
83
+ }
84
+ #wp-members .div_text { padding-top: 4px; }
85
+ #wp-members .button_div { margin-top:10px; }
86
+ #wp-members .buttons {
87
+ height: 30px;
88
+ background: #222;
89
+ border: none;
90
+ -moz-border-radius: 3px;
91
+ border-radius: 3px;
92
+ -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
93
+ -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
94
+ box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
95
+ color: #eee;
96
+ cursor: pointer;
97
+ font-size: 15px;
98
+ margin-left: 0px;
99
+ padding: 5px 28px 5px 22px;
100
+ position: relative;
101
+ text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
102
+ }
103
+ #wp-members .buttons:active {
104
+ background: #1982d1;
105
+ color: #bfddf3;
106
+ }
107
+ #wp-members .err {
108
+ width:100%;
109
+ padding: 5px;
110
+ border: 1px #000 solid;
111
+ background-color:#E6E6E6;
112
+ }
113
+
114
+
115
+ /* Login Form and Registration Form */
116
+
117
+ #wpmem_reg, #wpmem_login {
118
+ margin-left:-26px;
119
+ width: 595px;
120
+ background: #ddd;
121
+ border:1px solid lightGrey;
122
+ border-radius: 3px;
123
+ padding:20px;
124
+ margin-bottom:20px;
125
+ }
126
+ #wpmem_reg legend, #wpmem_login legend {
127
+ color: #373737;
128
+ font-size: 24px;
129
+ font-weight: bold;
130
+ }
131
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
132
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
133
+ #wpmem_login label {
134
+ left:4px;
135
+ top: 40px;
136
+ color:#555;
137
+ width:210px;
138
+ margin-top:8px;
139
+ padding-top:5px;
140
+ padding-bottom:5px;
141
+ padding-left:5px;
142
+ background-color:#eee;
143
+ float:left;
144
+ display: block;
145
+ font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
146
+ font-size: 115%;
147
+ line-height: 2.2;
148
+ height: 35px;
149
+ display: block;
150
+ border: 4px solid #eee;
151
+ border-radius: 5px;
152
+ }
153
+ #wpmem_reg label.textarea {
154
+ height: 200px;
155
+ margin-bottom: 5px;
156
+ }
157
+ #wpmem_login label[for="rememberme"] {
158
+ float: none;
159
+ display: initial;
160
+ background-color: initial;
161
+ padding: initial;
162
+ font-size: initial;
163
+ border: initial;
164
+ }
165
+
166
+ #wpmem_reg .form, #wpmem_login .form {
167
+ margin:0;
168
+ padding:0;
169
+ }
170
+ #wpmem_reg .clear, #wpmem_login .clear {
171
+ clear:both;
172
+ }
173
+ #wpmem_reg .holder, #wpmem_login .holder {
174
+ background-color:#fff;
175
+ }
176
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
177
+ #wpmem_reg .div_textarea, #wpmem_reg .div_select,
178
+ #wpmem_login .div_text {
179
+ width:360px;
180
+ float:right;
181
+ margin-top:3px;
182
+ padding-top:5px;
183
+ padding-bottom:3px;
184
+ padding-left:5px;
185
+ }
186
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
187
+ #wpmem_reg .div_select, #wpmem_login .div_text {
188
+ height:35px;
189
+ margin-bottom: 15px;
190
+ }
191
+ #wpmem_login input[type="password"],
192
+ #wpmem_login input[type="text"],
193
+ #wpmem_reg input[type="text"],
194
+ #wpmem_reg input[type="password"],
195
+ #wpmem_reg input[type="email"],
196
+ #wpmem_reg input[type="url"] {
197
+ height: 26px;
198
+ }
199
+ #wpmem_reg input[type=checkbox]{
200
+ outline: 4px solid #eee;
201
+ border: none;
202
+ background: none;
203
+ margin:20px 0 0 5px;
204
+ }
205
+ #wpmem_reg .dropdown,
206
+ #wpmem_reg .textbox, #wpmem_login .textbox,
207
+ #wpmem_reg .username, #wpmem_login .username,
208
+ #wpmem_reg .password, #wpmem_login .password {
209
+ height: 24px;
210
+ }
211
+ #wpmem_reg .div_textarea textarea,
212
+ #wpmem_reg .textbox, #wpmem_login .textbox,
213
+ #wpmem_reg .username, #wpmem_login .username,
214
+ #wpmem_reg .password, #wpmem_login .password {
215
+ display: block;
216
+ width: 75%;
217
+ background-color:white;
218
+ border: 4px solid #eee;
219
+ border-radius: 5px;
220
+ width:340px;
221
+ -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
222
+ box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
223
+ color: #888;
224
+ padding: 10px;
225
+ font-size: 15px;
226
+ font-family: "Helvetica Neue", Arial, sans serif;
227
+ font-weight: 300;
228
+ line-height: 1.625;
229
+ }
230
+ #wpmem_reg .dropdown {
231
+ height: 53px;
232
+ background-color:white;
233
+ border: 4px solid #eee;
234
+ border-radius: 5px;
235
+ width:340px;
236
+ -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
237
+ box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
238
+ color: #888;
239
+ padding: 10px;
240
+ font: 15px "Helvetica Neue", Arial, sans serif;
241
+ font-weight: 300;
242
+ line-height: 1.625;
243
  width: 368px;
244
+ }
245
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
246
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
247
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
248
+ background-color:#F0FFE6;
249
+ }
250
+
251
+ #wpmem_reg .textarea {
252
+ width:346px;
253
+ height:190px;
254
+ }
255
+
256
+ #wpmem_reg .req {
257
+ color: #bd3500;
258
+ font-size: 22px;
259
+ font-weight: bold;
260
+ line-height: 50%;
261
+ }
262
+
263
+ #wpmem_reg .req-text {
264
+ float:left;
265
+ margin: 15px 0px 0px 8px;
266
+ }
267
+
268
+ #wpmem_reg .captcha {
269
+ margin: 5px -10px 5px 0;
270
+ }
271
+ #wpmem_reg .captcha table{
272
+ line-height: 0px;
273
+ }
274
+
275
+ #wpmem_reg .noinput {
276
+ margin: 0px;
277
+ padding: 5px 0 5px 0;
278
+ color:#555;
279
+ width:100%;
280
+ background-color:#eee;
281
+ float:left;
282
+ font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
283
+ font-size: 115%;
284
+ line-height: 2.2;
285
+ height: 35px;
286
+ display: block;
287
+ border: 4px solid #eee;
288
+ border-radius: 5px;
289
+ }
290
+
291
+
292
+ /* Buttons */
293
+
294
+ #wpmem_reg .button_div, #wpmem_login .button_div {
295
+ width:360px;
296
+ float:right;
297
+ text-align:right;
298
+ height:35px;
299
+ margin-top:3px;
300
+ padding:5px;
301
+ white-space:nowrap;
302
+ }
303
+
304
+ #wpmem_reg .buttons, #wpmem_login .buttons {
305
+ background: #222;
306
+ border: none;
307
+ -moz-border-radius: 3px;
308
+ border-radius: 3px;
309
+ -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
310
+ -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
311
+ box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
312
+ color: #eee;
313
+ cursor: pointer;
314
+ font-size: 15px;
315
+ padding: 5px 42px 5px 22px;
316
+ position: relative;
317
+ left: 15px;
318
+ text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
319
+ }
320
+ #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
321
+ background: #1982d1;
322
+ color: #bfddf3;
323
  }
assets/css/forms/wp-members-2012.css CHANGED
@@ -1,304 +1,304 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Twelve Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Twelve theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- margin-left:-6px;
35
- width: 100%;
36
- background: #F9F9F9;
37
- border:1px solid lightGrey;
38
- border-radius: 3px;
39
- font-size: 14px;
40
- font-weight: bold;
41
- }
42
- .wpmem_msg{
43
- padding: 20px 0 0 0;
44
- }
45
- #wpmem_msg{
46
- padding: 0 0 20px 0;
47
- }
48
- #wpmem_msg h2, .wpmem_msg h2 {
49
- font-size: 24px;
50
- color: #373737;
51
- line-height: 30px;
52
- }
53
-
54
-
55
- /* Sidebar Login Widget */
56
-
57
- #wp-members {
58
- width: 100%;
59
- margin-bottom: 20px;
60
- }
61
- #wp-members p {
62
- font-size: 13px;
63
- font-size: 0.928571429rem;
64
- line-height: 1.846153846;
65
- }
66
- #wp-members fieldset {
67
- margin-top: 15px;
68
- }
69
- #wp-members label {
70
- font-weight: normal;
71
- color: #777;
72
- }
73
- #wp-members input {
74
- padding: 6px;
75
- padding: 0.428571429rem;
76
- font-family: inherit;
77
- border: 1px solid #ccc;
78
- border-radius: 3px;
79
- }
80
- #wp-members input[type="text"],
81
- #wp-members input[type="password"]{
82
- margin: 0 0 4px 0;
83
- width: 85%;
84
- }
85
- #wp-members .button_div { margin-top:4px; }
86
- #wp-members .buttons {
87
- height: 30px;
88
- padding: 6px 10px;
89
- padding: 0.428571429rem 0.714285714rem;
90
- font-size: 11px;
91
- font-size: 0.785714286rem;
92
- line-height: 1.428571429;
93
- }
94
- #wp-members .buttons:hover{
95
- color: #5e5e5e;
96
- }
97
- #wp-members .buttons:active {
98
- color: #777;
99
- }
100
- #wp-members .err {
101
- width:85%;
102
- padding: 5px;
103
- background-color:#F9F9F9;
104
- font-family: inherit;
105
- border: 1px solid #ccc;
106
- border-radius: 3px;
107
- }
108
-
109
-
110
- /* Login Form and Registration Form */
111
-
112
- #wpmem_reg, #wpmem_login {
113
- margin-left:-26px;
114
- padding-top:30px;
115
- }
116
- #wpmem_reg fieldset, #wpmem_login fieldset {
117
- padding:10px 0 10px 28px;
118
- }
119
- #wpmem_reg legend, #wpmem_login legend {
120
- font-size: 20px;
121
- font-size: 1.428571429rem;
122
- line-height: 1.2;
123
- font-weight: normal;
124
- }
125
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
126
- #wpmem_reg label.textarea , #wpmem_reg label.select,
127
- #wpmem_login label {
128
- height: 26px;
129
- width:30%;
130
- float:left;
131
- display: block;
132
- }
133
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
134
- #wpmem_login label {
135
- padding: 16px 0;
136
- }
137
- #wpmem_reg label.textarea {
138
- height: 200px;
139
- padding: 10px 0;
140
- }
141
- #wpmem_reg label.select {
142
- padding: 18px 0;
143
- }
144
- #wpmem_login label[for="rememberme"] {
145
- float: none;
146
- display: initial;
147
- background-color: initial;
148
- padding: initial;
149
- font-size: initial;
150
- }
151
- #wpmem_reg .form, #wpmem_login .form {
152
- margin:0;
153
- padding:0;
154
- }
155
- #wpmem_reg .clear, #wpmem_login .clear {
156
- clear:both;
157
- }
158
- #wpmem_reg .holder, #wpmem_login .holder {
159
- background-color:#fff;
160
- }
161
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
162
- #wpmem_reg .div_select, #wpmem_login .div_text,
163
- #wpmem_reg .div_checkbox {
164
- width:68%;
165
- float:right;
166
- padding: 6px 0;
167
- }
168
- #wpmem_reg .div_checkbox {
169
- padding: 17px 0;
170
- }
171
- #wpmem_reg .dropdown,
172
- #wpmem_reg .textbox, #wpmem_login .textbox,
173
- #wpmem_reg .username, #wpmem_login .username,
174
- #wpmem_reg .password, #wpmem_login .password {
175
- height: 24px;
176
- }
177
- #wpmem_reg .div_textarea textarea,
178
- #wpmem_reg .textbox, #wpmem_login .textbox,
179
- #wpmem_reg .username, #wpmem_login .username,
180
- #wpmem_reg .password, #wpmem_login .password {
181
- display: block;
182
- width:95%;
183
- padding: 10px;
184
- font: inherit;
185
- }
186
- #wpmem_reg .dropdown {
187
- height: 50px;
188
- border: 1px solid #ccc;
189
- border-radius: 3px;
190
- color: inherit;
191
- padding: 10px;
192
- font: inherit;
193
- width:100%;
194
- }
195
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
196
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
197
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
198
- background-color:inherit;
199
- }
200
- #wpmem_reg textarea {
201
- height:185px;
202
- }
203
- #wpmem_reg .req {
204
- color: #bd3500;
205
- font-size: 22px;
206
- line-height: 50%;
207
- }
208
-
209
- #wpmem_reg .req-text {
210
- float:left;
211
- margin: 20px 0px 0px 5px;
212
- }
213
-
214
- #wpmem_reg .noinput {
215
- margin: 10px 0 12px 10px;
216
- }
217
-
218
- #wpmem_reg .captcha {
219
- margin: 5px 0px;
220
- }
221
- #wpmem_reg .captcha table{
222
- line-height: 0px;
223
- }
224
-
225
-
226
- /* Buttons */
227
-
228
- #wpmem_reg .button_div, #wpmem_login .button_div {
229
- width:100%;
230
- float:right;
231
- text-align:right;
232
- height:35px;
233
- padding: 6px 0;
234
- }
235
-
236
- #wpmem_reg .buttons, #wpmem_login .buttons {
237
- padding: 6px 10px;
238
- padding: 0.428571429rem 0.714285714rem;
239
- font-size: 11px;
240
- font-size: 0.785714286rem;
241
- line-height: 1.428571429;
242
- font-weight: normal;
243
- color: #7c7c7c;
244
- background-color: #e6e6e6;
245
- background-repeat: repeat-x;
246
- background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
247
- background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
248
- background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
249
- background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
250
- background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
251
- border: 1px solid #d2d2d2;
252
- border-radius: 3px;
253
- box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
254
- }
255
- #wpmem_reg .buttons:hover, #wpmem_login .buttons:hover {
256
- color: #5e5e5e;
257
- background-color: #ebebeb;
258
- background-repeat: repeat-x;
259
- background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
260
- background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
261
- background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
262
- background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
263
- background-image: linear-gradient(top, #f9f9f9, #ebebeb);
264
- }
265
- #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
266
- color: #777;
267
- background-color: #e1e1e1;
268
- background-repeat: repeat-x;
269
- background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
270
- background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
271
- background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
272
- background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
273
- background-image: linear-gradient(top, #ebebeb, #e1e1e1);
274
- box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
275
- border: none;
276
- }
277
-
278
-
279
- /** for smaller screens */
280
-
281
- @media screen and (max-width: 720px) {
282
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
283
- #wpmem_reg label.textarea , #wpmem_reg label.select,
284
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
285
- #wpmem_reg .div_select, #wpmem_login .div_text,
286
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
287
- float: none;
288
- }
289
-
290
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
291
- #wpmem_reg label.textarea , #wpmem_reg label.select,
292
- #wpmem_login label {
293
- width: 90%;
294
- padding: 5px 0 0 0;
295
- }
296
- #wpmem_reg label.textarea {
297
- height: 26px;
298
- }
299
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
300
- #wpmem_reg .div_select, #wpmem_login .div_text,
301
- #wpmem_reg .div_checkbox {
302
- width: 98%;
303
- }
304
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Twelve Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Twelve theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ margin-left:-6px;
35
+ width: 100%;
36
+ background: #F9F9F9;
37
+ border:1px solid lightGrey;
38
+ border-radius: 3px;
39
+ font-size: 14px;
40
+ font-weight: bold;
41
+ }
42
+ .wpmem_msg{
43
+ padding: 20px 0 0 0;
44
+ }
45
+ #wpmem_msg{
46
+ padding: 0 0 20px 0;
47
+ }
48
+ #wpmem_msg h2, .wpmem_msg h2 {
49
+ font-size: 24px;
50
+ color: #373737;
51
+ line-height: 30px;
52
+ }
53
+
54
+
55
+ /* Sidebar Login Widget */
56
+
57
+ #wp-members {
58
+ width: 100%;
59
+ margin-bottom: 20px;
60
+ }
61
+ #wp-members p {
62
+ font-size: 13px;
63
+ font-size: 0.928571429rem;
64
+ line-height: 1.846153846;
65
+ }
66
+ #wp-members fieldset {
67
+ margin-top: 15px;
68
+ }
69
+ #wp-members label {
70
+ font-weight: normal;
71
+ color: #777;
72
+ }
73
+ #wp-members input {
74
+ padding: 6px;
75
+ padding: 0.428571429rem;
76
+ font-family: inherit;
77
+ border: 1px solid #ccc;
78
+ border-radius: 3px;
79
+ }
80
+ #wp-members input[type="text"],
81
+ #wp-members input[type="password"]{
82
+ margin: 0 0 4px 0;
83
+ width: 85%;
84
+ }
85
+ #wp-members .button_div { margin-top:4px; }
86
+ #wp-members .buttons {
87
+ height: 30px;
88
+ padding: 6px 10px;
89
+ padding: 0.428571429rem 0.714285714rem;
90
+ font-size: 11px;
91
+ font-size: 0.785714286rem;
92
+ line-height: 1.428571429;
93
+ }
94
+ #wp-members .buttons:hover{
95
+ color: #5e5e5e;
96
+ }
97
+ #wp-members .buttons:active {
98
+ color: #777;
99
+ }
100
+ #wp-members .err {
101
+ width:85%;
102
+ padding: 5px;
103
+ background-color:#F9F9F9;
104
+ font-family: inherit;
105
+ border: 1px solid #ccc;
106
+ border-radius: 3px;
107
+ }
108
+
109
+
110
+ /* Login Form and Registration Form */
111
+
112
+ #wpmem_reg, #wpmem_login {
113
+ margin-left:-26px;
114
+ padding-top:30px;
115
+ }
116
+ #wpmem_reg fieldset, #wpmem_login fieldset {
117
+ padding:10px 0 10px 28px;
118
+ }
119
+ #wpmem_reg legend, #wpmem_login legend {
120
+ font-size: 20px;
121
+ font-size: 1.428571429rem;
122
+ line-height: 1.2;
123
+ font-weight: normal;
124
+ }
125
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
126
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
127
+ #wpmem_login label {
128
+ height: 26px;
129
+ width:30%;
130
+ float:left;
131
+ display: block;
132
+ }
133
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
134
+ #wpmem_login label {
135
+ padding: 16px 0;
136
+ }
137
+ #wpmem_reg label.textarea {
138
+ height: 200px;
139
+ padding: 10px 0;
140
+ }
141
+ #wpmem_reg label.select {
142
+ padding: 18px 0;
143
+ }
144
+ #wpmem_login label[for="rememberme"] {
145
+ float: none;
146
+ display: initial;
147
+ background-color: initial;
148
+ padding: initial;
149
+ font-size: initial;
150
+ }
151
+ #wpmem_reg .form, #wpmem_login .form {
152
+ margin:0;
153
+ padding:0;
154
+ }
155
+ #wpmem_reg .clear, #wpmem_login .clear {
156
+ clear:both;
157
+ }
158
+ #wpmem_reg .holder, #wpmem_login .holder {
159
+ background-color:#fff;
160
+ }
161
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
162
+ #wpmem_reg .div_select, #wpmem_login .div_text,
163
+ #wpmem_reg .div_checkbox {
164
+ width:68%;
165
+ float:right;
166
+ padding: 6px 0;
167
+ }
168
+ #wpmem_reg .div_checkbox {
169
+ padding: 17px 0;
170
+ }
171
+ #wpmem_reg .dropdown,
172
+ #wpmem_reg .textbox, #wpmem_login .textbox,
173
+ #wpmem_reg .username, #wpmem_login .username,
174
+ #wpmem_reg .password, #wpmem_login .password {
175
+ height: 24px;
176
+ }
177
+ #wpmem_reg .div_textarea textarea,
178
+ #wpmem_reg .textbox, #wpmem_login .textbox,
179
+ #wpmem_reg .username, #wpmem_login .username,
180
+ #wpmem_reg .password, #wpmem_login .password {
181
+ display: block;
182
+ width:95%;
183
+ padding: 10px;
184
+ font: inherit;
185
+ }
186
+ #wpmem_reg .dropdown {
187
+ height: 50px;
188
+ border: 1px solid #ccc;
189
+ border-radius: 3px;
190
+ color: inherit;
191
+ padding: 10px;
192
+ font: inherit;
193
+ width:100%;
194
+ }
195
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
196
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
197
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
198
+ background-color:inherit;
199
+ }
200
+ #wpmem_reg textarea {
201
+ height:185px;
202
+ }
203
+ #wpmem_reg .req {
204
+ color: #bd3500;
205
+ font-size: 22px;
206
+ line-height: 50%;
207
+ }
208
+
209
+ #wpmem_reg .req-text {
210
+ float:left;
211
+ margin: 20px 0px 0px 5px;
212
+ }
213
+
214
+ #wpmem_reg .noinput {
215
+ margin: 10px 0 12px 10px;
216
+ }
217
+
218
+ #wpmem_reg .captcha {
219
+ margin: 5px 0px;
220
+ }
221
+ #wpmem_reg .captcha table{
222
+ line-height: 0px;
223
+ }
224
+
225
+
226
+ /* Buttons */
227
+
228
+ #wpmem_reg .button_div, #wpmem_login .button_div {
229
+ width:100%;
230
+ float:right;
231
+ text-align:right;
232
+ height:35px;
233
+ padding: 6px 0;
234
+ }
235
+
236
+ #wpmem_reg .buttons, #wpmem_login .buttons {
237
+ padding: 6px 10px;
238
+ padding: 0.428571429rem 0.714285714rem;
239
+ font-size: 11px;
240
+ font-size: 0.785714286rem;
241
+ line-height: 1.428571429;
242
+ font-weight: normal;
243
+ color: #7c7c7c;
244
+ background-color: #e6e6e6;
245
+ background-repeat: repeat-x;
246
+ background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
247
+ background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
248
+ background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
249
+ background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
250
+ background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
251
+ border: 1px solid #d2d2d2;
252
+ border-radius: 3px;
253
+ box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
254
+ }
255
+ #wpmem_reg .buttons:hover, #wpmem_login .buttons:hover {
256
+ color: #5e5e5e;
257
+ background-color: #ebebeb;
258
+ background-repeat: repeat-x;
259
+ background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
260
+ background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
261
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
262
+ background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
263
+ background-image: linear-gradient(top, #f9f9f9, #ebebeb);
264
+ }
265
+ #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
266
+ color: #777;
267
+ background-color: #e1e1e1;
268
+ background-repeat: repeat-x;
269
+ background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
270
+ background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
271
+ background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
272
+ background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
273
+ background-image: linear-gradient(top, #ebebeb, #e1e1e1);
274
+ box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
275
+ border: none;
276
+ }
277
+
278
+
279
+ /** for smaller screens */
280
+
281
+ @media screen and (max-width: 720px) {
282
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
283
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
284
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
285
+ #wpmem_reg .div_select, #wpmem_login .div_text,
286
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
287
+ float: none;
288
+ }
289
+
290
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
291
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
292
+ #wpmem_login label {
293
+ width: 90%;
294
+ padding: 5px 0 0 0;
295
+ }
296
+ #wpmem_reg label.textarea {
297
+ height: 26px;
298
+ }
299
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
300
+ #wpmem_reg .div_select, #wpmem_login .div_text,
301
+ #wpmem_reg .div_checkbox {
302
+ width: 98%;
303
+ }
304
  }
assets/css/forms/wp-members-2013.css CHANGED
@@ -1,213 +1,213 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Thirteen Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Thirteen theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- margin-left:-6px;
35
- width: 100%;
36
- background-color: rgba(247, 245, 231, 0.7);
37
- border: 2px solid rgb(195, 192, 171);
38
- }
39
-
40
-
41
- /* Sidebar Login Widget */
42
-
43
- #wp-members {
44
- width: 98%;
45
- margin-bottom: 20px;
46
- }
47
- #wp-members fieldset {
48
- margin-top: 15px;
49
- margin-left: -8px;
50
- border: none;
51
- }
52
- #wp-members input {
53
- padding: 6px;
54
- margin-bottom: 6px;
55
- font-family: inherit;
56
- }
57
- #wp-members input[type="text"],
58
- #wp-members input[type="password"]{
59
- width: 225px;
60
- }
61
- #wp-members .err {
62
- width:225px;
63
- padding: 5px;
64
- font-family: inherit;
65
- border: 2px solid rgb(195, 192, 171);
66
- }
67
-
68
-
69
- /* Login Form and Registration Form */
70
-
71
- #wpmem_reg, #wpmem_login {
72
- margin-left:-16px;
73
- }
74
-
75
- #wpmem_reg fieldset, #wpmem_login fieldset {
76
- padding:14px;
77
- margin-bottom:4px;
78
- border: none;
79
- }
80
- #wpmem_reg legend, #wpmem_login legend {
81
- margin: 14px 0;
82
- font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
83
- }
84
- #wpmem_reg label,
85
- #wpmem_login label {
86
- height: 40px;
87
- margin: 2px 0;
88
- padding: 4px 0;
89
- }
90
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
91
- #wpmem_reg label.textarea , #wpmem_reg label.select,
92
- #wpmem_login label {
93
- width: 28%;
94
- float:left;
95
- }
96
- #wpmem_reg label.textarea {
97
- height: 190px;
98
- }
99
- #wpmem_login label[for="rememberme"] {
100
- float: none;
101
- display: initial;
102
- }
103
- #wpmem_reg .form, #wpmem_login .form {
104
- margin:0;
105
- padding:0;
106
- }
107
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
108
- #wpmem_reg .div_select, #wpmem_login .div_text,
109
- #wpmem_reg .div_checkbox {
110
- width: 68%;
111
- float:right;
112
- }
113
- #wpmem_login .div_text,
114
- #wpmem_reg .div_text,
115
- #wpmem_reg .div_checkbox,
116
- #wpmem_reg .div_select{
117
- height: 40px;
118
- }
119
- #wpmem_login .div_text,
120
- #wpmem_reg .div_text,
121
- #wpmem_reg .div_textarea,
122
- #wpmem_reg .div_checkbox,
123
- #wpmem_reg .div_select{
124
- margin: 2px 0;
125
- padding: 0px;
126
- }
127
- #wpmem_reg input[type=checkbox]{
128
- outline: 2px solid rgb(195, 192, 171);
129
- border: none;
130
- background: none;
131
- margin:10px 0 0 2px;
132
- }
133
- #wpmem_reg .div_textarea textarea,
134
- #wpmem_reg .textbox, #wpmem_login .textbox,
135
- #wpmem_reg .username, #wpmem_login .username,
136
- #wpmem_reg .password, #wpmem_login .password,
137
- #wpmem_reg .dropdown {
138
- width: 100%;
139
- }
140
- #wpmem_reg .dropdown {
141
- height: 36px;
142
- border: 2px solid rgb(195, 192, 171);
143
- }
144
- #wpmem_reg .textarea {
145
- width:100%;
146
- height:190px;
147
- }
148
- #wpmem_reg .button_div, #wpmem_login .button_div {
149
- width:100%;
150
- float:right;
151
- text-align:right;
152
- height:65px;
153
- margin-top:3px;
154
- padding-top:10px;
155
- white-space:nowrap;
156
- }
157
- #wpmem_reg .req {
158
- color: #bd3500;
159
- font-size: 22px;
160
- line-height: 50%;
161
- }
162
- #wpmem_reg .req-text {
163
- float:left;
164
- margin: 20px 0px 0px 5px;
165
- }
166
- #wpmem_reg .clear, #wpmem_login .clear {
167
- clear:both;
168
- }
169
- #wpmem_reg .holder, #wpmem_login .holder {
170
- background-color:#fff;
171
- }
172
- #wpmem_reg .noinput {
173
- margin: 4px 0px 12px 6px;
174
- }
175
- #wpmem_reg .captcha {
176
- margin: 5px 0px;
177
- }
178
- #wpmem_reg .captcha table{
179
- line-height: 0px;
180
- }
181
- #wpmem_login .link-text {
182
- float:right;
183
- width:100%;
184
- }
185
-
186
-
187
-
188
- /** for smaller screens */
189
-
190
- @media screen and (max-width: 720px) {
191
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
192
- #wpmem_reg label.textarea , #wpmem_reg label.select,
193
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
194
- #wpmem_reg .div_select, #wpmem_login .div_text,
195
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
196
- float: none;
197
- }
198
-
199
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
200
- #wpmem_reg label.textarea , #wpmem_reg label.select,
201
- #wpmem_login label {
202
- width: 90%;
203
- padding: 5px 0 0 0;
204
- }
205
- #wpmem_reg label.textarea {
206
- height: 26px;
207
- }
208
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
209
- #wpmem_reg .div_select, #wpmem_login .div_text,
210
- #wpmem_reg .div_checkbox {
211
- width: 98%;
212
- }
213
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Thirteen Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Thirteen theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ margin-left:-6px;
35
+ width: 100%;
36
+ background-color: rgba(247, 245, 231, 0.7);
37
+ border: 2px solid rgb(195, 192, 171);
38
+ }
39
+
40
+
41
+ /* Sidebar Login Widget */
42
+
43
+ #wp-members {
44
+ width: 98%;
45
+ margin-bottom: 20px;
46
+ }
47
+ #wp-members fieldset {
48
+ margin-top: 15px;
49
+ margin-left: -8px;
50
+ border: none;
51
+ }
52
+ #wp-members input {
53
+ padding: 6px;
54
+ margin-bottom: 6px;
55
+ font-family: inherit;
56
+ }
57
+ #wp-members input[type="text"],
58
+ #wp-members input[type="password"]{
59
+ width: 225px;
60
+ }
61
+ #wp-members .err {
62
+ width:225px;
63
+ padding: 5px;
64
+ font-family: inherit;
65
+ border: 2px solid rgb(195, 192, 171);
66
+ }
67
+
68
+
69
+ /* Login Form and Registration Form */
70
+
71
+ #wpmem_reg, #wpmem_login {
72
+ margin-left:-16px;
73
+ }
74
+
75
+ #wpmem_reg fieldset, #wpmem_login fieldset {
76
+ padding:14px;
77
+ margin-bottom:4px;
78
+ border: none;
79
+ }
80
+ #wpmem_reg legend, #wpmem_login legend {
81
+ margin: 14px 0;
82
+ font: 300 italic 28px "Source Sans Pro", Helvetica, sans-serif;
83
+ }
84
+ #wpmem_reg label,
85
+ #wpmem_login label {
86
+ height: 40px;
87
+ margin: 2px 0;
88
+ padding: 4px 0;
89
+ }
90
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
91
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
92
+ #wpmem_login label {
93
+ width: 28%;
94
+ float:left;
95
+ }
96
+ #wpmem_reg label.textarea {
97
+ height: 190px;
98
+ }
99
+ #wpmem_login label[for="rememberme"] {
100
+ float: none;
101
+ display: initial;
102
+ }
103
+ #wpmem_reg .form, #wpmem_login .form {
104
+ margin:0;
105
+ padding:0;
106
+ }
107
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
108
+ #wpmem_reg .div_select, #wpmem_login .div_text,
109
+ #wpmem_reg .div_checkbox {
110
+ width: 68%;
111
+ float:right;
112
+ }
113
+ #wpmem_login .div_text,
114
+ #wpmem_reg .div_text,
115
+ #wpmem_reg .div_checkbox,
116
+ #wpmem_reg .div_select{
117
+ height: 40px;
118
+ }
119
+ #wpmem_login .div_text,
120
+ #wpmem_reg .div_text,
121
+ #wpmem_reg .div_textarea,
122
+ #wpmem_reg .div_checkbox,
123
+ #wpmem_reg .div_select{
124
+ margin: 2px 0;
125
+ padding: 0px;
126
+ }
127
+ #wpmem_reg input[type=checkbox]{
128
+ outline: 2px solid rgb(195, 192, 171);
129
+ border: none;
130
+ background: none;
131
+ margin:10px 0 0 2px;
132
+ }
133
+ #wpmem_reg .div_textarea textarea,
134
+ #wpmem_reg .textbox, #wpmem_login .textbox,
135
+ #wpmem_reg .username, #wpmem_login .username,
136
+ #wpmem_reg .password, #wpmem_login .password,
137
+ #wpmem_reg .dropdown {
138
+ width: 100%;
139
+ }
140
+ #wpmem_reg .dropdown {
141
+ height: 36px;
142
+ border: 2px solid rgb(195, 192, 171);
143
+ }
144
+ #wpmem_reg .textarea {
145
+ width:100%;
146
+ height:190px;
147
+ }
148
+ #wpmem_reg .button_div, #wpmem_login .button_div {
149
+ width:100%;
150
+ float:right;
151
+ text-align:right;
152
+ height:65px;
153
+ margin-top:3px;
154
+ padding-top:10px;
155
+ white-space:nowrap;
156
+ }
157
+ #wpmem_reg .req {
158
+ color: #bd3500;
159
+ font-size: 22px;
160
+ line-height: 50%;
161
+ }
162
+ #wpmem_reg .req-text {
163
+ float:left;
164
+ margin: 20px 0px 0px 5px;
165
+ }
166
+ #wpmem_reg .clear, #wpmem_login .clear {
167
+ clear:both;
168
+ }
169
+ #wpmem_reg .holder, #wpmem_login .holder {
170
+ background-color:#fff;
171
+ }
172
+ #wpmem_reg .noinput {
173
+ margin: 4px 0px 12px 6px;
174
+ }
175
+ #wpmem_reg .captcha {
176
+ margin: 5px 0px;
177
+ }
178
+ #wpmem_reg .captcha table{
179
+ line-height: 0px;
180
+ }
181
+ #wpmem_login .link-text {
182
+ float:right;
183
+ width:100%;
184
+ }
185
+
186
+
187
+
188
+ /** for smaller screens */
189
+
190
+ @media screen and (max-width: 720px) {
191
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
192
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
193
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
194
+ #wpmem_reg .div_select, #wpmem_login .div_text,
195
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
196
+ float: none;
197
+ }
198
+
199
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
200
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
201
+ #wpmem_login label {
202
+ width: 90%;
203
+ padding: 5px 0 0 0;
204
+ }
205
+ #wpmem_reg label.textarea {
206
+ height: 26px;
207
+ }
208
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
209
+ #wpmem_reg .div_select, #wpmem_login .div_text,
210
+ #wpmem_reg .div_checkbox {
211
+ width: 98%;
212
+ }
213
  }
assets/css/forms/wp-members-2014-no-float.css CHANGED
@@ -1,256 +1,256 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Fourteen Theme, no float
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Fourteen theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- background: #F9F9F9;
35
- border:1px solid lightGrey;
36
- border-radius: 3px;
37
- padding: 20px 0 0 0;
38
- }
39
- #wpmem_msg {
40
- width: 100%;
41
- }
42
- .wpmem_msg {
43
- width: 74%;
44
- }
45
-
46
-
47
- /* Sidebar Login Widget */
48
-
49
- #wp-members {
50
- width: 100%;
51
- }
52
- #wp-members fieldset {
53
- border:none;
54
- padding:0px
55
- }
56
- #wp-members input {
57
- font-family: inherit;
58
- }
59
- #wp-members input[type="text"],
60
- #wp-members input[type="password"]{
61
- margin: 0 0 4px 0;
62
- width: 92%;
63
- }
64
- #wp-members input[type="submit"] {
65
- padding: 5px 6px 4px;
66
- margin: 0 4px 0 0;
67
- }
68
- #wp-members .button_div {
69
- margin-top:4px;
70
- }
71
- #wp-members .err {
72
- width:100%;
73
- padding: 5px;
74
- font-family: inherit;
75
- border: 1px solid #ccc;
76
- border-radius: 3px;
77
- }
78
-
79
-
80
- /* Login Form and Registration Form */
81
-
82
- #wpmem_reg fieldset,
83
- #wpmem_login fieldset {
84
- border: none;
85
- padding: 0;
86
- margin: 40px 0;
87
- }
88
- #wpmem_reg legend,
89
- #wpmem_login legend {
90
- font-size: 24px;
91
- line-height: 1;
92
- font-weight: 700;
93
- margin-bottom: 10px;
94
- }
95
- #wpmem_reg .form,
96
- #wpmem_login .form {
97
- margin:0;
98
- padding:0;
99
- }
100
- #wpmem_reg .clear,
101
- #wpmem_login .clear {
102
- clear:both;
103
- }
104
- #wpmem_reg .holder,
105
- #wpmem_login .holder {
106
- background-color:#fff;
107
- }
108
- #wpmem_login .div_text,
109
- #wpmem_reg .div_text,
110
- #wpmem_reg .div_textarea,
111
- #wpmem_reg .div_select,
112
- #wpmem_reg .div_checkbox,
113
- #wpmem_reg .div_multicheckbox,
114
- #wpmem_reg .div_multiselect,
115
- #wpmem_reg .div_radio,
116
- #wpmem_reg .div_image,
117
- #wpmem_reg .div_file,
118
- #wpmem_reg .div_url,
119
- #wpmem_reg .div_number,
120
- #wpmem_reg .div_date {
121
- width:74%;
122
- margin:0 0 14px 0;
123
- }
124
- #wpmem_login input[type="checkbox"] {
125
- margin: 12px 2px;
126
- }
127
- #wpmem_reg .div_textarea textarea,
128
- #wpmem_reg .textbox,
129
- #wpmem_reg .username,
130
- #wpmem_reg .password,
131
- #wpmem_login .textbox,
132
- #wpmem_login .username,
133
- #wpmem_login .password {
134
- width:100%;
135
- }
136
- #wpmem_reg .dropdown,
137
- #wpmem_reg select,
138
- #wpmem_reg input[type="file"] {
139
- width:100%;
140
- padding: 8px 10px 7px;
141
- border: 1px solid rgba(0, 0, 0, 0.1);
142
- border-radius: 2px;
143
- color: rgb(43, 43, 43);
144
- margin: 5px 0;
145
- }
146
- #wpmem_reg .dropdown:focus {
147
- border: 1px solid rgba(0, 0, 0, 0.3);
148
- outline: 0;
149
- }
150
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
151
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
152
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
153
- background-color:inherit;
154
- }
155
- #wpmem_reg textarea {
156
- height:185px;
157
- }
158
- #wpmem_reg .req {
159
- color: #bd3500;
160
- font-size: 22px;
161
- line-height: 50%;
162
- }
163
-
164
- #wpmem_reg .req-text {
165
- margin: 20px 0px 0px 5px;
166
- }
167
-
168
- #wpmem_reg .noinput {
169
- width:94%;
170
- padding: 8px 10px 7px;
171
- border: 1px solid rgba(0, 0, 0, 0.1);
172
- border-radius: 2px;
173
- color: rgb(43, 43, 43);
174
- margin: 5px 0;
175
- }
176
-
177
- #wpmem_reg .captcha {
178
- width: 74%;
179
- margin: 5px 0px;
180
- }
181
- #wpmem_reg .captcha table{
182
- line-height: 0px;
183
- }
184
- #wpmem_login .link-text {
185
- width: 74%;
186
- text-align:right;
187
- }
188
-
189
- #tos {
190
- margin-right:5px;
191
- }
192
-
193
-
194
- /* Buttons */
195
-
196
- #wpmem_reg .button_div,
197
- #wpmem_login .button_div {
198
- width:74%;
199
- height:35px;
200
- padding: 6px 0;
201
- text-align: right;
202
- }
203
-
204
-
205
- /** for smaller screens */
206
-
207
- @media screen and (max-width: 1079px) {
208
- #wp-members .button_div {
209
- text-align:center;
210
- }
211
- #wp-members input[type="submit"] {
212
- width: 92%;
213
- margin: 0 10px 6px 0;
214
- }
215
- }
216
-
217
- @media screen and (max-width: 1007px) {
218
- #wp-members {
219
- width: 179px;
220
- }
221
- #wp-members .button_div {
222
- text-align: inherit;
223
- }
224
- #wp-members input[type="submit"] {
225
- width: inherit;
226
- margin: 0 4px 0 0;
227
- }
228
- }
229
-
230
- @media screen and (max-width: 720px) {
231
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
232
- #wpmem_reg label.textarea , #wpmem_reg label.select,
233
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
234
- #wpmem_reg .div_select, #wpmem_login .div_text,
235
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
236
- float: none;
237
- }
238
-
239
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
240
- #wpmem_reg label.textarea , #wpmem_reg label.select,
241
- #wpmem_login label {
242
- width: 90%;
243
- padding: 5px 0 0 0;
244
- }
245
- #wpmem_reg label.textarea {
246
- height: 26px;
247
- }
248
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
249
- #wpmem_reg .div_select, #wpmem_login .div_text,
250
- #wpmem_reg .div_checkbox {
251
- width: 98%;
252
- }
253
- #wpmem_msg, .wpmem_msg {
254
- width: 100%;
255
- }
256
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Fourteen Theme, no float
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Fourteen theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ background: #F9F9F9;
35
+ border:1px solid lightGrey;
36
+ border-radius: 3px;
37
+ padding: 20px 0 0 0;
38
+ }
39
+ #wpmem_msg {
40
+ width: 100%;
41
+ }
42
+ .wpmem_msg {
43
+ width: 74%;
44
+ }
45
+
46
+
47
+ /* Sidebar Login Widget */
48
+
49
+ #wp-members {
50
+ width: 100%;
51
+ }
52
+ #wp-members fieldset {
53
+ border:none;
54
+ padding:0px
55
+ }
56
+ #wp-members input {
57
+ font-family: inherit;
58
+ }
59
+ #wp-members input[type="text"],
60
+ #wp-members input[type="password"]{
61
+ margin: 0 0 4px 0;
62
+ width: 92%;
63
+ }
64
+ #wp-members input[type="submit"] {
65
+ padding: 5px 6px 4px;
66
+ margin: 0 4px 0 0;
67
+ }
68
+ #wp-members .button_div {
69
+ margin-top:4px;
70
+ }
71
+ #wp-members .err {
72
+ width:100%;
73
+ padding: 5px;
74
+ font-family: inherit;
75
+ border: 1px solid #ccc;
76
+ border-radius: 3px;
77
+ }
78
+
79
+
80
+ /* Login Form and Registration Form */
81
+
82
+ #wpmem_reg fieldset,
83
+ #wpmem_login fieldset {
84
+ border: none;
85
+ padding: 0;
86
+ margin: 40px 0;
87
+ }
88
+ #wpmem_reg legend,
89
+ #wpmem_login legend {
90
+ font-size: 24px;
91
+ line-height: 1;
92
+ font-weight: 700;
93
+ margin-bottom: 10px;
94
+ }
95
+ #wpmem_reg .form,
96
+ #wpmem_login .form {
97
+ margin:0;
98
+ padding:0;
99
+ }
100
+ #wpmem_reg .clear,
101
+ #wpmem_login .clear {
102
+ clear:both;
103
+ }
104
+ #wpmem_reg .holder,
105
+ #wpmem_login .holder {
106
+ background-color:#fff;
107
+ }
108
+ #wpmem_login .div_text,
109
+ #wpmem_reg .div_text,
110
+ #wpmem_reg .div_textarea,
111
+ #wpmem_reg .div_select,
112
+ #wpmem_reg .div_checkbox,
113
+ #wpmem_reg .div_multicheckbox,
114
+ #wpmem_reg .div_multiselect,
115
+ #wpmem_reg .div_radio,
116
+ #wpmem_reg .div_image,
117
+ #wpmem_reg .div_file,
118
+ #wpmem_reg .div_url,
119
+ #wpmem_reg .div_number,
120
+ #wpmem_reg .div_date {
121
+ width:74%;
122
+ margin:0 0 14px 0;
123
+ }
124
+ #wpmem_login input[type="checkbox"] {
125
+ margin: 12px 2px;
126
+ }
127
+ #wpmem_reg .div_textarea textarea,
128
+ #wpmem_reg .textbox,
129
+ #wpmem_reg .username,
130
+ #wpmem_reg .password,
131
+ #wpmem_login .textbox,
132
+ #wpmem_login .username,
133
+ #wpmem_login .password {
134
+ width:100%;
135
+ }
136
+ #wpmem_reg .dropdown,
137
+ #wpmem_reg select,
138
+ #wpmem_reg input[type="file"] {
139
+ width:100%;
140
+ padding: 8px 10px 7px;
141
+ border: 1px solid rgba(0, 0, 0, 0.1);
142
+ border-radius: 2px;
143
+ color: rgb(43, 43, 43);
144
+ margin: 5px 0;
145
+ }
146
+ #wpmem_reg .dropdown:focus {
147
+ border: 1px solid rgba(0, 0, 0, 0.3);
148
+ outline: 0;
149
+ }
150
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
151
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
152
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
153
+ background-color:inherit;
154
+ }
155
+ #wpmem_reg textarea {
156
+ height:185px;
157
+ }
158
+ #wpmem_reg .req {
159
+ color: #bd3500;
160
+ font-size: 22px;
161
+ line-height: 50%;
162
+ }
163
+
164
+ #wpmem_reg .req-text {
165
+ margin: 20px 0px 0px 5px;
166
+ }
167
+
168
+ #wpmem_reg .noinput {
169
+ width:94%;
170
+ padding: 8px 10px 7px;
171
+ border: 1px solid rgba(0, 0, 0, 0.1);
172
+ border-radius: 2px;
173
+ color: rgb(43, 43, 43);
174
+ margin: 5px 0;
175
+ }
176
+
177
+ #wpmem_reg .captcha {
178
+ width: 74%;
179
+ margin: 5px 0px;
180
+ }
181
+ #wpmem_reg .captcha table{
182
+ line-height: 0px;
183
+ }
184
+ #wpmem_login .link-text {
185
+ width: 74%;
186
+ text-align:right;
187
+ }
188
+
189
+ #tos {
190
+ margin-right:5px;
191
+ }
192
+
193
+
194
+ /* Buttons */
195
+
196
+ #wpmem_reg .button_div,
197
+ #wpmem_login .button_div {
198
+ width:74%;
199
+ height:35px;
200
+ padding: 6px 0;
201
+ text-align: right;
202
+ }
203
+
204
+
205
+ /** for smaller screens */
206
+
207
+ @media screen and (max-width: 1079px) {
208
+ #wp-members .button_div {
209
+ text-align:center;
210
+ }
211
+ #wp-members input[type="submit"] {
212
+ width: 92%;
213
+ margin: 0 10px 6px 0;
214
+ }
215
+ }
216
+
217
+ @media screen and (max-width: 1007px) {
218
+ #wp-members {
219
+ width: 179px;
220
+ }
221
+ #wp-members .button_div {
222
+ text-align: inherit;
223
+ }
224
+ #wp-members input[type="submit"] {
225
+ width: inherit;
226
+ margin: 0 4px 0 0;
227
+ }
228
+ }
229
+
230
+ @media screen and (max-width: 720px) {
231
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
232
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
233
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
234
+ #wpmem_reg .div_select, #wpmem_login .div_text,
235
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
236
+ float: none;
237
+ }
238
+
239
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
240
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
241
+ #wpmem_login label {
242
+ width: 90%;
243
+ padding: 5px 0 0 0;
244
+ }
245
+ #wpmem_reg label.textarea {
246
+ height: 26px;
247
+ }
248
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
249
+ #wpmem_reg .div_select, #wpmem_login .div_text,
250
+ #wpmem_reg .div_checkbox {
251
+ width: 98%;
252
+ }
253
+ #wpmem_msg, .wpmem_msg {
254
+ width: 100%;
255
+ }
256
  }
assets/css/forms/wp-members-2014.css CHANGED
@@ -1,263 +1,263 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Fourteen Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Twelve theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- width: 100%;
35
- background: #F9F9F9;
36
- border:1px solid lightGrey;
37
- border-radius: 3px;
38
- padding: 20px 0 0 0;
39
- }
40
-
41
-
42
- /* Sidebar Login Widget */
43
-
44
- #wp-members {
45
- width: 100%;
46
- }
47
- #wp-members fieldset {
48
- border:none;
49
- padding:0px
50
- }
51
- #wp-members input {
52
- font-family: inherit;
53
- }
54
- #wp-members input[type="text"],
55
- #wp-members input[type="password"]{
56
- margin: 0 0 4px 0;
57
- width: 92%;
58
- }
59
- #wp-members input[type="submit"] {
60
- padding: 5px 6px 4px;
61
- margin: 0 4px 0 0;
62
- }
63
- #wp-members .button_div {
64
- margin-top:4px;
65
- }
66
- #wp-members .err {
67
- width:100%;
68
- padding: 5px;
69
- font-family: inherit;
70
- border: 1px solid #ccc;
71
- border-radius: 3px;
72
- }
73
-
74
-
75
- /* Login Form and Registration Form */
76
-
77
- #wpmem_reg, #wpmem_login {
78
-
79
- }
80
- #wpmem_reg fieldset, #wpmem_login fieldset {
81
- border: none;
82
- padding: 0;
83
- margin: 40px 0;
84
- }
85
- #wpmem_reg legend, #wpmem_login legend {
86
- font-size: 24px;
87
- line-height: 1;
88
- font-weight: 700;
89
- margin-bottom: 10px;
90
- }
91
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
92
- #wpmem_reg label.textarea , #wpmem_reg label.select,
93
- #wpmem_login label {
94
- height: 30px;
95
- width:32%;
96
- float:left;
97
- display: block;
98
- }
99
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
100
- #wpmem_reg label.select, #wpmem_login label{
101
- padding: 13px 0px 5px;
102
- }
103
- #wpmem_reg label.textarea {
104
- height: 176px;
105
- padding: 9px 0;
106
- }
107
- #wpmem_login label[for="rememberme"] {
108
- display: initial;
109
- float: none;
110
- }
111
- #wpmem_reg .form, #wpmem_login .form {
112
- margin:0;
113
- padding:0;
114
- }
115
- #wpmem_reg .clear, #wpmem_login .clear {
116
- clear:both;
117
- }
118
- #wpmem_reg .holder, #wpmem_login .holder {
119
- background-color:#fff;
120
- }
121
- #wpmem_reg .div_text, #wpmem_login .div_text,
122
- #wpmem_reg .div_checkbox, #wpmem_reg .div_select {
123
- width:66%;
124
- float:right;
125
- height: 48px;
126
- }
127
- #wpmem_reg .div_textarea {
128
  width:66%;
129
- float:right;
130
- padding: 5px 0 4px 0;
131
- }
132
- #wpmem_login input[type="checkbox"] {
133
- margin: 12px 2px;
134
- }
135
- #wpmem_reg input[type="checkbox"] {
136
- margin: 20px 0 0 0;
137
- }
138
- #wpmem_reg .dropdown,
139
- #wpmem_reg .textbox, #wpmem_login .textbox,
140
- #wpmem_reg .username, #wpmem_login .username,
141
- #wpmem_reg .password, #wpmem_login .password {
142
- margin: 6px 0 0 0;
143
- }
144
- #wpmem_reg .div_textarea textarea,
145
- #wpmem_reg .textbox, #wpmem_login .textbox,
146
- #wpmem_reg .username, #wpmem_login .username,
147
- #wpmem_reg .password, #wpmem_login .password {
148
- display: block;
149
- width:100%;
150
- }
151
- #wpmem_reg .dropdown {
152
- width:100%;
153
- padding: 8px 10px 7px;
154
- border: 1px solid rgba(0, 0, 0, 0.1);
155
- border-radius: 2px;
156
- color: rgb(43, 43, 43);
157
- margin: 5px 0 4px 0;
158
- }
159
- #wpmem_reg .dropdown:focus {
160
- border: 1px solid rgba(0, 0, 0, 0.3);
161
- outline: 0;
162
- }
163
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
164
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
165
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
166
- background-color:inherit;
167
- }
168
- #wpmem_reg textarea {
169
- height:185px;
170
- }
171
- #wpmem_reg .req {
172
- color: #bd3500;
173
- font-size: 22px;
174
- line-height: 50%;
175
- }
176
-
177
- #wpmem_reg .req-text {
178
- float:left;
179
- margin: 20px 0px 0px 5px;
180
- }
181
-
182
- #wpmem_reg .noinput {
183
- margin:7px 0px 6px 10px;
184
- }
185
-
186
- #wpmem_reg .captcha {
187
- margin: 5px 0px;
188
- }
189
- #wpmem_reg .captcha table{
190
- line-height: 0px;
191
- }
192
-
193
- #tos {
194
- margin-right:5px;
195
- }
196
-
197
- #wpmem_login .link-text {
198
- float:right;
199
- width:100%;
200
- text-align:right;
201
- }
202
-
203
-
204
- /* Buttons */
205
-
206
- #wpmem_reg .button_div, #wpmem_login .button_div {
207
- width:100%;
208
- float:right;
209
- text-align:right;
210
- height:35px;
211
- padding: 6px 0;
212
- }
213
-
214
-
215
- /** for smaller screens */
216
-
217
- @media screen and (max-width: 1079px) {
218
- #wp-members .button_div {
219
- text-align:center;
220
- }
221
- #wp-members input[type="submit"] {
222
- width: 92%;
223
- margin: 0 10px 6px 0;
224
- }
225
- }
226
-
227
- @media screen and (max-width: 1007px) {
228
- #wp-members {
229
- width: 179px;
230
- }
231
- #wp-members .button_div {
232
- text-align: inherit;
233
- }
234
- #wp-members input[type="submit"] {
235
- width: inherit;
236
- margin: 0 4px 0 0;
237
- }
238
- }
239
-
240
- @media screen and (max-width: 720px) {
241
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
242
- #wpmem_reg label.textarea , #wpmem_reg label.select,
243
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
244
- #wpmem_reg .div_select, #wpmem_login .div_text,
245
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
246
- float: none;
247
- }
248
-
249
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
250
- #wpmem_reg label.textarea , #wpmem_reg label.select,
251
- #wpmem_login label {
252
- width: 90%;
253
- padding: 5px 0 0 0;
254
- }
255
- #wpmem_reg label.textarea {
256
- height: 26px;
257
- }
258
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
259
- #wpmem_reg .div_select, #wpmem_login .div_text,
260
- #wpmem_reg .div_checkbox {
261
- width: 98%;
262
- }
 
 
 
 
 
263
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Fourteen Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Twelve theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ width: 100%;
35
+ background: #F9F9F9;
36
+ border:1px solid lightGrey;
37
+ border-radius: 3px;
38
+ padding: 20px 0 0 0;
39
+ }
40
+
41
+
42
+ /* Sidebar Login Widget */
43
+
44
+ #wp-members {
45
+ width: 100%;
46
+ }
47
+ #wp-members fieldset {
48
+ border:none;
49
+ padding:0px
50
+ }
51
+ #wp-members input {
52
+ font-family: inherit;
53
+ }
54
+ #wp-members input[type="text"],
55
+ #wp-members input[type="password"]{
56
+ margin: 0 0 4px 0;
57
+ width: 92%;
58
+ }
59
+ #wp-members input[type="submit"] {
60
+ padding: 5px 6px 4px;
61
+ margin: 0 4px 0 0;
62
+ }
63
+ #wp-members .button_div {
64
+ margin-top:4px;
65
+ }
66
+ #wp-members .err {
67
+ width:100%;
68
+ padding: 5px;
69
+ font-family: inherit;
70
+ border: 1px solid #ccc;
71
+ border-radius: 3px;
72
+ }
73
+
74
+
75
+ /* Login Form and Registration Form */
76
+
77
+ #wpmem_reg, #wpmem_login {
78
+
79
+ }
80
+ #wpmem_reg fieldset, #wpmem_login fieldset {
81
+ border: none;
82
+ padding: 0;
83
+ margin: 40px 0;
84
+ }
85
+ #wpmem_reg legend, #wpmem_login legend {
86
+ font-size: 24px;
87
+ line-height: 1;
88
+ font-weight: 700;
89
+ margin-bottom: 10px;
90
+ }
91
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
92
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
93
+ #wpmem_login label {
94
+ height: 30px;
95
+ width:32%;
96
+ float:left;
97
+ display: block;
98
+ }
99
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
100
+ #wpmem_reg label.select, #wpmem_login label{
101
+ padding: 13px 0px 5px;
102
+ }
103
+ #wpmem_reg label.textarea {
104
+ height: 176px;
105
+ padding: 9px 0;
106
+ }
107
+ #wpmem_login label[for="rememberme"] {
108
+ display: initial;
109
+ float: none;
110
+ }
111
+ #wpmem_reg .form, #wpmem_login .form {
112
+ margin:0;
113
+ padding:0;
114
+ }
115
+ #wpmem_reg .clear, #wpmem_login .clear {
116
+ clear:both;
117
+ }
118
+ #wpmem_reg .holder, #wpmem_login .holder {
119
+ background-color:#fff;
120
+ }
121
+ #wpmem_reg .div_text, #wpmem_login .div_text,
122
+ #wpmem_reg .div_checkbox, #wpmem_reg .div_select {
 
 
 
 
 
123
  width:66%;
124
+ float:right;
125
+ height: 48px;
126
+ }
127
+ #wpmem_reg .div_textarea {
128
+ width:66%;
129
+ float:right;
130
+ padding: 5px 0 4px 0;
131
+ }
132
+ #wpmem_login input[type="checkbox"] {
133
+ margin: 12px 2px;
134
+ }
135
+ #wpmem_reg input[type="checkbox"] {
136
+ margin: 20px 0 0 0;
137
+ }
138
+ #wpmem_reg .dropdown,
139
+ #wpmem_reg .textbox, #wpmem_login .textbox,
140
+ #wpmem_reg .username, #wpmem_login .username,
141
+ #wpmem_reg .password, #wpmem_login .password {
142
+ margin: 6px 0 0 0;
143
+ }
144
+ #wpmem_reg .div_textarea textarea,
145
+ #wpmem_reg .textbox, #wpmem_login .textbox,
146
+ #wpmem_reg .username, #wpmem_login .username,
147
+ #wpmem_reg .password, #wpmem_login .password {
148
+ display: block;
149
+ width:100%;
150
+ }
151
+ #wpmem_reg .dropdown {
152
+ width:100%;
153
+ padding: 8px 10px 7px;
154
+ border: 1px solid rgba(0, 0, 0, 0.1);
155
+ border-radius: 2px;
156
+ color: rgb(43, 43, 43);
157
+ margin: 5px 0 4px 0;
158
+ }
159
+ #wpmem_reg .dropdown:focus {
160
+ border: 1px solid rgba(0, 0, 0, 0.3);
161
+ outline: 0;
162
+ }
163
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
164
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
165
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
166
+ background-color:inherit;
167
+ }
168
+ #wpmem_reg textarea {
169
+ height:185px;
170
+ }
171
+ #wpmem_reg .req {
172
+ color: #bd3500;
173
+ font-size: 22px;
174
+ line-height: 50%;
175
+ }
176
+
177
+ #wpmem_reg .req-text {
178
+ float:left;
179
+ margin: 20px 0px 0px 5px;
180
+ }
181
+
182
+ #wpmem_reg .noinput {
183
+ margin:7px 0px 6px 10px;
184
+ }
185
+
186
+ #wpmem_reg .captcha {
187
+ margin: 5px 0px;
188
+ }
189
+ #wpmem_reg .captcha table{
190
+ line-height: 0px;
191
+ }
192
+
193
+ #tos {
194
+ margin-right:5px;
195
+ }
196
+
197
+ #wpmem_login .link-text {
198
+ float:right;
199
+ width:100%;
200
+ text-align:right;
201
+ }
202
+
203
+
204
+ /* Buttons */
205
+
206
+ #wpmem_reg .button_div, #wpmem_login .button_div {
207
+ width:100%;
208
+ float:right;
209
+ text-align:right;
210
+ height:35px;
211
+ padding: 6px 0;
212
+ }
213
+
214
+
215
+ /** for smaller screens */
216
+
217
+ @media screen and (max-width: 1079px) {
218
+ #wp-members .button_div {
219
+ text-align:center;
220
+ }
221
+ #wp-members input[type="submit"] {
222
+ width: 92%;
223
+ margin: 0 10px 6px 0;
224
+ }
225
+ }
226
+
227
+ @media screen and (max-width: 1007px) {
228
+ #wp-members {
229
+ width: 179px;
230
+ }
231
+ #wp-members .button_div {
232
+ text-align: inherit;
233
+ }
234
+ #wp-members input[type="submit"] {
235
+ width: inherit;
236
+ margin: 0 4px 0 0;
237
+ }
238
+ }
239
+
240
+ @media screen and (max-width: 720px) {
241
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
242
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
243
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
244
+ #wpmem_reg .div_select, #wpmem_login .div_text,
245
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
246
+ float: none;
247
+ }
248
+
249
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
250
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
251
+ #wpmem_login label {
252
+ width: 90%;
253
+ padding: 5px 0 0 0;
254
+ }
255
+ #wpmem_reg label.textarea {
256
+ height: 26px;
257
+ }
258
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
259
+ #wpmem_reg .div_select, #wpmem_login .div_text,
260
+ #wpmem_reg .div_checkbox {
261
+ width: 98%;
262
+ }
263
  }
assets/css/forms/wp-members-2015-no-float.css CHANGED
@@ -1,256 +1,256 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin - Twenty Fifteen Theme, No Float
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members floated form elements
19
- as simply as possible with most themes. There are quite a few examples
20
- in here of what you can do to style the forms. You can build off of this
21
- or start from scratch and set your own custom css for the plugin
22
- (set the location in the admin panel).
23
-
24
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
25
- for information on how to set up the plugin with a custom stylesheet.
26
-
27
- For information how to load custom stylesheets with wp_enqueue_style,
28
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
29
- */
30
-
31
-
32
- /* Error and Dialog Messages */
33
-
34
- #wpmem_msg, .wpmem_msg {
35
- background: #F7F7F7;
36
- border: 1px solid rgba(51, 51, 51, 0.3);
37
- padding: 0;
38
- }
39
- #wpmem_msg h2 {
40
- margin: 0;
41
- padding: 30px;
42
- }
43
- #wpmem_msg {
44
- width: 100%;
45
- }
46
- .wpmem_msg {
47
- margin: 0;
48
- padding: 32px 26px 4px;
49
- }
50
-
51
-
52
- /* Sidebar Login Widget */
53
-
54
- #wp-members {
55
- width: 100%;
56
- }
57
- #wp-members fieldset {
58
- border: none;
59
- padding: 10px 0 0 0;
60
- }
61
- #wp-members input {
62
- font-family: inherit;
63
- }
64
- #wp-members input[type="text"],
65
- #wp-members input[type="password"]{
66
- margin: 0 0 8px 0;
67
- }
68
- #wp-members input[type="submit"] {
69
- padding: 5px 10px;
70
- margin: 0 6px 0 0;
71
- }
72
- #wp-members .button_div {
73
- margin-top: 8px;
74
- }
75
- #wp-members .err {
76
- width:100%;
77
- padding: 5px;
78
- font-family: inherit;
79
- background: #F7F7F7;
80
- border: 1px solid rgba(51, 51, 51, 0.3);
81
- }
82
-
83
-
84
- /* Login Form and Registration Form */
85
-
86
- #wpmem_reg label,
87
- #wpmem_login label {
88
- font-size: 1.6rem;
89
- color: #707070;
90
- color: rgba(51, 51, 51, 0.7);
91
- font-family: "Noto Sans", sans-serif;
92
- font-weight: 700;
93
- display: block;
94
- letter-spacing: 0.04em;
95
- line-height: 1.5;
96
- text-transform: uppercase;
97
- margin-bottom: 6px;
98
- }
99
- #wpmem_login label[for="rememberme"] {
100
- float: none;
101
- display: initial;
102
- }
103
-
104
- #wpmem_reg select,
105
- #wpmem_reg input[type="file"] {
106
- width:100%;
107
- padding: 8px 10px 7px;
108
- border: 1px solid rgba(0, 0, 0, 0.1);
109
- margin: 5px 0;
110
- }
111
-
112
- #wpmem_reg fieldset,
113
- #wpmem_login fieldset {
114
- border: none;
115
- padding: 0;
116
- margin: 40px 0;
117
- }
118
- #wpmem_reg legend,
119
- #wpmem_login legend {
120
- font-weight: 700;
121
- margin-bottom: 25px;
122
- font-size: 27px;
123
- font-size: 2.7rem;
124
- line-height: 1.1852;
125
- }
126
- #wpmem_reg .form,
127
- #wpmem_login .form {
128
- margin:0;
129
- padding:0;
130
- }
131
- #wpmem_reg .clear,
132
- #wpmem_login .clear {
133
- clear:both;
134
- }
135
- #wpmem_reg .holder,
136
- #wpmem_login .holder {
137
- background-color:#fff;
138
- }
139
- #wpmem_login .div_text,
140
- #wpmem_reg .div_text,
141
- #wpmem_reg .div_textarea,
142
- #wpmem_reg .div_select,
143
- #wpmem_reg .div_checkbox,
144
- #wpmem_reg .div_multicheckbox,
145
- #wpmem_reg .div_multiselect,
146
- #wpmem_reg .div_radio,
147
- #wpmem_reg .div_url,
148
- #wpmem_reg .div_image,
149
- #wpmem_reg .div_file,
150
- #wpmem_reg .div_number,
151
- #wpmem_reg .div_date {
152
- width:74%;
153
- margin:0 0 14px 0;
154
- }
155
- #wpmem_login input[type="checkbox"] {
156
- margin: 12px 2px;
157
- }
158
- #wpmem_reg .div_textarea textarea,
159
- #wpmem_reg .textbox,
160
- #wpmem_reg .username,
161
- #wpmem_reg .password,
162
- #wpmem_reg input[type="file"],
163
- #wpmem_login .textbox,
164
- #wpmem_login .username,
165
- #wpmem_login .password {
166
- width:100%;
167
- }
168
-
169
-
170
- #wpmem_reg textarea {
171
- height:185px;
172
- }
173
- #wpmem_reg .req {
174
- color: #bd3500;
175
- font-size: 22px;
176
- line-height: 50%;
177
- }
178
-
179
- #wpmem_reg .req-text {
180
- margin: 20px 0px 0px 5px;
181
- }
182
-
183
- #wpmem_reg .noinput {
184
- width:100%;
185
- padding: 8px 10px 7px;
186
- border: 1px solid rgba(0, 0, 0, 0.1);
187
- border-radius: 2px;
188
- color: rgb(43, 43, 43);
189
- margin: 5px 0;
190
- }
191
-
192
- #wpmem_reg .captcha {
193
- width: 74%;
194
- margin: 5px 0px;
195
- }
196
- #wpmem_reg .captcha table{
197
- line-height: 0px;
198
- }
199
- #wpmem_login .link-text {
200
- width: 74%;
201
- margin: 4px 0;
202
- text-align: right;
203
- }
204
-
205
- #tos {
206
- margin-right:5px;
207
- }
208
-
209
-
210
- /* Buttons */
211
-
212
- #wpmem_reg .button_div,
213
- #wpmem_login .button_div {
214
- width:74%;
215
- height: 62px;
216
- padding: 6px 0;
217
- text-align: right;
218
- }
219
-
220
-
221
- /** for smaller screens */
222
-
223
- @media screen and (max-width: 720px) {
224
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
225
- #wpmem_reg label.textarea , #wpmem_reg label.select,
226
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
227
- #wpmem_reg .div_select, #wpmem_login .div_text,
228
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
229
- float: none;
230
- }
231
-
232
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
233
- #wpmem_reg label.textarea , #wpmem_reg label.select,
234
- #wpmem_login label {
235
- width: 90%;
236
- padding: 5px 0 0 0;
237
- }
238
- #wpmem_reg label.textarea {
239
- height: 26px;
240
- }
241
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
242
- #wpmem_reg .div_select, #wpmem_login .div_text,
243
- #wpmem_reg .div_checkbox {
244
- width: 98%;
245
- font-size: 80%;
246
- }
247
- #wpmem_msg, .wpmem_msg {
248
- width: 100%;
249
- }
250
-
251
- #wpmem_reg .button_div,
252
- #wpmem_login .button_div,
253
- #wpmem_login .link-text {
254
- width:98%;
255
- }
256
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin - Twenty Fifteen Theme, No Float
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members floated form elements
19
+ as simply as possible with most themes. There are quite a few examples
20
+ in here of what you can do to style the forms. You can build off of this
21
+ or start from scratch and set your own custom css for the plugin
22
+ (set the location in the admin panel).
23
+
24
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
25
+ for information on how to set up the plugin with a custom stylesheet.
26
+
27
+ For information how to load custom stylesheets with wp_enqueue_style,
28
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
29
+ */
30
+
31
+
32
+ /* Error and Dialog Messages */
33
+
34
+ #wpmem_msg, .wpmem_msg {
35
+ background: #F7F7F7;
36
+ border: 1px solid rgba(51, 51, 51, 0.3);
37
+ padding: 0;
38
+ }
39
+ #wpmem_msg h2 {
40
+ margin: 0;
41
+ padding: 30px;
42
+ }
43
+ #wpmem_msg {
44
+ width: 100%;
45
+ }
46
+ .wpmem_msg {
47
+ margin: 0;
48
+ padding: 32px 26px 4px;
49
+ }
50
+
51
+
52
+ /* Sidebar Login Widget */
53
+
54
+ #wp-members {
55
+ width: 100%;
56
+ }
57
+ #wp-members fieldset {
58
+ border: none;
59
+ padding: 10px 0 0 0;
60
+ }
61
+ #wp-members input {
62
+ font-family: inherit;
63
+ }
64
+ #wp-members input[type="text"],
65
+ #wp-members input[type="password"]{
66
+ margin: 0 0 8px 0;
67
+ }
68
+ #wp-members input[type="submit"] {
69
+ padding: 5px 10px;
70
+ margin: 0 6px 0 0;
71
+ }
72
+ #wp-members .button_div {
73
+ margin-top: 8px;
74
+ }
75
+ #wp-members .err {
76
+ width:100%;
77
+ padding: 5px;
78
+ font-family: inherit;
79
+ background: #F7F7F7;
80
+ border: 1px solid rgba(51, 51, 51, 0.3);
81
+ }
82
+
83
+
84
+ /* Login Form and Registration Form */
85
+
86
+ #wpmem_reg label,
87
+ #wpmem_login label {
88
+ font-size: 1.6rem;
89
+ color: #707070;
90
+ color: rgba(51, 51, 51, 0.7);
91
+ font-family: "Noto Sans", sans-serif;
92
+ font-weight: 700;
93
+ display: block;
94
+ letter-spacing: 0.04em;
95
+ line-height: 1.5;
96
+ text-transform: uppercase;
97
+ margin-bottom: 6px;
98
+ }
99
+ #wpmem_login label[for="rememberme"] {
100
+ float: none;
101
+ display: initial;
102
+ }
103
+
104
+ #wpmem_reg select,
105
+ #wpmem_reg input[type="file"] {
106
+ width:100%;
107
+ padding: 8px 10px 7px;
108
+ border: 1px solid rgba(0, 0, 0, 0.1);
109
+ margin: 5px 0;
110
+ }
111
+
112
+ #wpmem_reg fieldset,
113
+ #wpmem_login fieldset {
114
+ border: none;
115
+ padding: 0;
116
+ margin: 40px 0;
117
+ }
118
+ #wpmem_reg legend,
119
+ #wpmem_login legend {
120
+ font-weight: 700;
121
+ margin-bottom: 25px;
122
+ font-size: 27px;
123
+ font-size: 2.7rem;
124
+ line-height: 1.1852;
125
+ }
126
+ #wpmem_reg .form,
127
+ #wpmem_login .form {
128
+ margin:0;
129
+ padding:0;
130
+ }
131
+ #wpmem_reg .clear,
132
+ #wpmem_login .clear {
133
+ clear:both;
134
+ }
135
+ #wpmem_reg .holder,
136
+ #wpmem_login .holder {
137
+ background-color:#fff;
138
+ }
139
+ #wpmem_login .div_text,
140
+ #wpmem_reg .div_text,
141
+ #wpmem_reg .div_textarea,
142
+ #wpmem_reg .div_select,
143
+ #wpmem_reg .div_checkbox,
144
+ #wpmem_reg .div_multicheckbox,
145
+ #wpmem_reg .div_multiselect,
146
+ #wpmem_reg .div_radio,
147
+ #wpmem_reg .div_url,
148
+ #wpmem_reg .div_image,
149
+ #wpmem_reg .div_file,
150
+ #wpmem_reg .div_number,
151
+ #wpmem_reg .div_date {
152
+ width:74%;
153
+ margin:0 0 14px 0;
154
+ }
155
+ #wpmem_login input[type="checkbox"] {
156
+ margin: 12px 2px;
157
+ }
158
+ #wpmem_reg .div_textarea textarea,
159
+ #wpmem_reg .textbox,
160
+ #wpmem_reg .username,
161
+ #wpmem_reg .password,
162
+ #wpmem_reg input[type="file"],
163
+ #wpmem_login .textbox,
164
+ #wpmem_login .username,
165
+ #wpmem_login .password {
166
+ width:100%;
167
+ }
168
+
169
+
170
+ #wpmem_reg textarea {
171
+ height:185px;
172
+ }
173
+ #wpmem_reg .req {
174
+ color: #bd3500;
175
+ font-size: 22px;
176
+ line-height: 50%;
177
+ }
178
+
179
+ #wpmem_reg .req-text {
180
+ margin: 20px 0px 0px 5px;
181
+ }
182
+
183
+ #wpmem_reg .noinput {
184
+ width:100%;
185
+ padding: 8px 10px 7px;
186
+ border: 1px solid rgba(0, 0, 0, 0.1);
187
+ border-radius: 2px;
188
+ color: rgb(43, 43, 43);
189
+ margin: 5px 0;
190
+ }
191
+
192
+ #wpmem_reg .captcha {
193
+ width: 74%;
194
+ margin: 5px 0px;
195
+ }
196
+ #wpmem_reg .captcha table{
197
+ line-height: 0px;
198
+ }
199
+ #wpmem_login .link-text {
200
+ width: 74%;
201
+ margin: 4px 0;
202
+ text-align: right;
203
+ }
204
+
205
+ #tos {
206
+ margin-right:5px;
207
+ }
208
+
209
+
210
+ /* Buttons */
211
+
212
+ #wpmem_reg .button_div,
213
+ #wpmem_login .button_div {
214
+ width:74%;
215
+ height: 62px;
216
+ padding: 6px 0;
217
+ text-align: right;
218
+ }
219
+
220
+
221
+ /** for smaller screens */
222
+
223
+ @media screen and (max-width: 720px) {
224
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
225
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
226
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
227
+ #wpmem_reg .div_select, #wpmem_login .div_text,
228
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
229
+ float: none;
230
+ }
231
+
232
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
233
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
234
+ #wpmem_login label {
235
+ width: 90%;
236
+ padding: 5px 0 0 0;
237
+ }
238
+ #wpmem_reg label.textarea {
239
+ height: 26px;
240
+ }
241
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
242
+ #wpmem_reg .div_select, #wpmem_login .div_text,
243
+ #wpmem_reg .div_checkbox {
244
+ width: 98%;
245
+ font-size: 80%;
246
+ }
247
+ #wpmem_msg, .wpmem_msg {
248
+ width: 100%;
249
+ }
250
+
251
+ #wpmem_reg .button_div,
252
+ #wpmem_login .button_div,
253
+ #wpmem_login .link-text {
254
+ width:98%;
255
+ }
256
  }
assets/css/forms/wp-members-2015.css CHANGED
@@ -1,261 +1,261 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin - Twenty Fifteen Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members floated form elements
19
- as simply as possible with most themes. There are quite a few examples
20
- in here of what you can do to style the forms. You can build off of this
21
- or start from scratch and set your own custom css for the plugin
22
- (set the location in the admin panel).
23
-
24
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
25
- for information on how to set up the plugin with a custom stylesheet.
26
-
27
- For information how to load custom stylesheets with wp_enqueue_style,
28
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
29
- */
30
-
31
-
32
- /* Error and Dialog Messages */
33
-
34
- #wpmem_msg, .wpmem_msg {
35
- background: #F7F7F7;
36
- border: 1px solid rgba(51, 51, 51, 0.3);
37
- padding: 0;
38
- }
39
- #wpmem_msg h2 {
40
- margin: 0;
41
- padding: 30px;
42
- }
43
- #wpmem_msg {
44
- width: 100%;
45
- }
46
- .wpmem_msg {
47
- margin: 0;
48
- padding: 32px 26px 4px;
49
- }
50
-
51
-
52
- /* Sidebar Login Widget */
53
-
54
- #wp-members {
55
- width: 100%;
56
- }
57
- #wp-members fieldset {
58
- border: none;
59
- padding: 0px
60
- }
61
- #wp-members input {
62
- font-family: inherit;
63
- }
64
- #wp-members input[type="text"],
65
- #wp-members input[type="password"]{
66
- margin: 0 0 4px 0;
67
- }
68
- #wp-members input[type="submit"] {
69
- padding: 5px 6px 4px;
70
- margin: 0 4px 0 0;
71
- }
72
- #wp-members .button_div {
73
- margin-top: 4px;
74
- }
75
- #wp-members .err {
76
- width:100%;
77
- padding: 5px;
78
- font-family: inherit;
79
- background: #F7F7F7;
80
- border: 1px solid rgba(51, 51, 51, 0.3);
81
- }
82
-
83
-
84
- /* Login Form and Registration Form */
85
- #wpmem_reg select {
86
- width:100%;
87
- padding: 6px 10px 7px;
88
- border: 1px solid rgba(0, 0, 0, 0.1);
89
- margin: 3px 0;
90
- }
91
-
92
- #wpmem_reg fieldset, #wpmem_login fieldset {
93
- border: none;
94
- padding: 0;
95
- margin: 40px 0;
96
- }
97
- #wpmem_reg legend, #wpmem_login legend {
98
- font-size: 24px;
99
- line-height: 1;
100
- font-weight: 700;
101
- margin-bottom: 30px;
102
- }
103
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
104
- #wpmem_reg label.textarea, #wpmem_reg label.select,
105
- #wpmem_login label {
106
- height: 30px;
107
- width:32%;
108
- float:left;
109
- padding: 12px 0px 0px;
110
- -webkit-padding: 15px 0px 0px;
111
- margin: 0px 0px 14px;
112
- height: 49px;
113
- }
114
- #wpmem_reg label,
115
- #wpmem_login label {
116
- font-size: 1.6rem;
117
- color: #707070;
118
- color: rgba(51, 51, 51, 0.7);
119
- font-family: "Noto Sans", sans-serif;
120
- font-weight: 700;
121
- display: block;
122
- letter-spacing: 0.04em;
123
- line-height: 1.5;
124
- text-transform: uppercase;
125
- margin-bottom: 13px;
126
- }
127
- #wpmem_reg label.textarea {
128
- height: 185px;
129
- }
130
- #wpmem_login label[for="rememberme"] {
131
- float: none;
132
- display: initial;
133
- }
134
- #wpmem_reg .form, #wpmem_login .form {
135
- margin:0;
136
- padding:0;
137
- }
138
- #wpmem_reg .clear, #wpmem_login .clear {
139
- clear:both;
140
- }
141
- #wpmem_reg .holder, #wpmem_login .holder {
142
- background-color:#fff;
143
- }
144
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
145
- #wpmem_reg .div_select, #wpmem_login .div_text,
146
- #wpmem_reg .div_checkbox {
147
- width:66%;
148
- float:right;
149
- margin:0 0 14px 0;
150
- }
151
- #wpmem_reg .div_text, #wpmem_reg .div_select,
152
- #wpmem_login .div_text, #wpmem_reg .div_checkbox {
153
- height: 49px;
154
- }
155
- #wpmem_reg .div_checkbox {
156
- padding: 9px 0;
157
- }
158
- #wpmem_login input[type="checkbox"] {
159
- margin: 18px 2px;
160
- }
161
- #wpmem_reg .div_textarea textarea,
162
- #wpmem_reg .textbox, #wpmem_login .textbox,
163
- #wpmem_reg .username, #wpmem_login .username,
164
- #wpmem_reg .password, #wpmem_login .password {
165
- width:100%;
166
- }
167
-
168
-
169
- #wpmem_reg textarea {
170
- height:185px;
171
- }
172
- #wpmem_reg .req {
173
- color: #bd3500;
174
- font-size: 22px;
175
- line-height: 50%;
176
- }
177
-
178
- #wpmem_reg .req-text {
179
- margin: 20px 0px 0px 5px;
180
- display: inline-block;
181
- width: 100%;
182
- }
183
-
184
- #wpmem_reg .noinput {
185
- width:93%;
186
- padding: 8px 10px 7px;
187
- border: 1px solid rgba(0, 0, 0, 0.1);
188
- border-radius: 2px;
189
- color: rgb(43, 43, 43);
190
- margin: 5px 0;
191
- }
192
-
193
- #wpmem_reg .captcha {
194
- width: 74%;
195
- margin: 5px 0px;
196
- }
197
- #wpmem_reg .captcha table{
198
- line-height: 0px;
199
- }
200
- #wpmem_login .link-text {
201
- width: 100%;
202
- margin: 4px 0;
203
- float: right;
204
- text-align: right;
205
- }
206
-
207
- #tos {
208
- margin-right:5px;
209
- }
210
-
211
-
212
- /* Buttons */
213
-
214
- #wpmem_reg .button_div, #wpmem_login .button_div {
215
- width:100%;
216
- float:right;
217
- height: 62px;
218
- padding: 6px 0;
219
- text-align: right;
220
- }
221
-
222
-
223
- /** for smaller screens */
224
-
225
- @media screen and (max-width: 720px) {
226
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
227
- #wpmem_reg label.textarea , #wpmem_reg label.select,
228
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
229
- #wpmem_reg .div_select, #wpmem_login .div_text,
230
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
231
- float: none;
232
- }
233
-
234
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
235
- #wpmem_reg label.textarea , #wpmem_reg label.select,
236
- #wpmem_login label {
237
- height: 20px;
238
- width: 90%;
239
- padding: 5px 0 0 0;
240
- }
241
- #wpmem_reg label.textarea {
242
- height: 26px;
243
- }
244
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
245
- #wpmem_reg .div_select, #wpmem_login .div_text,
246
- #wpmem_reg .div_checkbox {
247
- width: 98%;
248
- }
249
- #wpmem_reg .div_text {
250
- font-size: 80%;
251
- }
252
- #wpmem_msg, .wpmem_msg {
253
- width: 100%;
254
- }
255
-
256
- #wpmem_reg .button_div,
257
- #wpmem_login .button_div,
258
- #wpmem_login .link-text {
259
- width:98%;
260
- }
261
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin - Twenty Fifteen Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members floated form elements
19
+ as simply as possible with most themes. There are quite a few examples
20
+ in here of what you can do to style the forms. You can build off of this
21
+ or start from scratch and set your own custom css for the plugin
22
+ (set the location in the admin panel).
23
+
24
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
25
+ for information on how to set up the plugin with a custom stylesheet.
26
+
27
+ For information how to load custom stylesheets with wp_enqueue_style,
28
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
29
+ */
30
+
31
+
32
+ /* Error and Dialog Messages */
33
+
34
+ #wpmem_msg, .wpmem_msg {
35
+ background: #F7F7F7;
36
+ border: 1px solid rgba(51, 51, 51, 0.3);
37
+ padding: 0;
38
+ }
39
+ #wpmem_msg h2 {
40
+ margin: 0;
41
+ padding: 30px;
42
+ }
43
+ #wpmem_msg {
44
+ width: 100%;
45
+ }
46
+ .wpmem_msg {
47
+ margin: 0;
48
+ padding: 32px 26px 4px;
49
+ }
50
+
51
+
52
+ /* Sidebar Login Widget */
53
+
54
+ #wp-members {
55
+ width: 100%;
56
+ }
57
+ #wp-members fieldset {
58
+ border: none;
59
+ padding: 0px
60
+ }
61
+ #wp-members input {
62
+ font-family: inherit;
63
+ }
64
+ #wp-members input[type="text"],
65
+ #wp-members input[type="password"]{
66
+ margin: 0 0 4px 0;
67
+ }
68
+ #wp-members input[type="submit"] {
69
+ padding: 5px 6px 4px;
70
+ margin: 0 4px 0 0;
71
+ }
72
+ #wp-members .button_div {
73
+ margin-top: 4px;
74
+ }
75
+ #wp-members .err {
76
+ width:100%;
77
+ padding: 5px;
78
+ font-family: inherit;
79
+ background: #F7F7F7;
80
+ border: 1px solid rgba(51, 51, 51, 0.3);
81
+ }
82
+
83
+
84
+ /* Login Form and Registration Form */
85
+ #wpmem_reg select {
86
+ width:100%;
87
+ padding: 6px 10px 7px;
88
+ border: 1px solid rgba(0, 0, 0, 0.1);
89
+ margin: 3px 0;
90
+ }
91
+
92
+ #wpmem_reg fieldset, #wpmem_login fieldset {
93
+ border: none;
94
+ padding: 0;
95
+ margin: 40px 0;
96
+ }
97
+ #wpmem_reg legend, #wpmem_login legend {
98
+ font-size: 24px;
99
+ line-height: 1;
100
+ font-weight: 700;
101
+ margin-bottom: 30px;
102
+ }
103
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
104
+ #wpmem_reg label.textarea, #wpmem_reg label.select,
105
+ #wpmem_login label {
106
+ height: 30px;
107
+ width:32%;
108
+ float:left;
109
+ padding: 12px 0px 0px;
110
+ -webkit-padding: 15px 0px 0px;
111
+ margin: 0px 0px 14px;
112
+ height: 49px;
113
+ }
114
+ #wpmem_reg label,
115
+ #wpmem_login label {
116
+ font-size: 1.6rem;
117
+ color: #707070;
118
+ color: rgba(51, 51, 51, 0.7);
119
+ font-family: "Noto Sans", sans-serif;
120
+ font-weight: 700;
121
+ display: block;
122
+ letter-spacing: 0.04em;
123
+ line-height: 1.5;
124
+ text-transform: uppercase;
125
+ margin-bottom: 13px;
126
+ }
127
+ #wpmem_reg label.textarea {
128
+ height: 185px;
129
+ }
130
+ #wpmem_login label[for="rememberme"] {
131
+ float: none;
132
+ display: initial;
133
+ }
134
+ #wpmem_reg .form, #wpmem_login .form {
135
+ margin:0;
136
+ padding:0;
137
+ }
138
+ #wpmem_reg .clear, #wpmem_login .clear {
139
+ clear:both;
140
+ }
141
+ #wpmem_reg .holder, #wpmem_login .holder {
142
+ background-color:#fff;
143
+ }
144
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
145
+ #wpmem_reg .div_select, #wpmem_login .div_text,
146
+ #wpmem_reg .div_checkbox {
147
+ width:66%;
148
+ float:right;
149
+ margin:0 0 14px 0;
150
+ }
151
+ #wpmem_reg .div_text, #wpmem_reg .div_select,
152
+ #wpmem_login .div_text, #wpmem_reg .div_checkbox {
153
+ height: 49px;
154
+ }
155
+ #wpmem_reg .div_checkbox {
156
+ padding: 9px 0;
157
+ }
158
+ #wpmem_login input[type="checkbox"] {
159
+ margin: 18px 2px;
160
+ }
161
+ #wpmem_reg .div_textarea textarea,
162
+ #wpmem_reg .textbox, #wpmem_login .textbox,
163
+ #wpmem_reg .username, #wpmem_login .username,
164
+ #wpmem_reg .password, #wpmem_login .password {
165
+ width:100%;
166
+ }
167
+
168
+
169
+ #wpmem_reg textarea {
170
+ height:185px;
171
+ }
172
+ #wpmem_reg .req {
173
+ color: #bd3500;
174
+ font-size: 22px;
175
+ line-height: 50%;
176
+ }
177
+
178
+ #wpmem_reg .req-text {
179
+ margin: 20px 0px 0px 5px;
180
+ display: inline-block;
181
+ width: 100%;
182
+ }
183
+
184
+ #wpmem_reg .noinput {
185
+ width:93%;
186
+ padding: 8px 10px 7px;
187
+ border: 1px solid rgba(0, 0, 0, 0.1);
188
+ border-radius: 2px;
189
+ color: rgb(43, 43, 43);
190
+ margin: 5px 0;
191
+ }
192
+
193
+ #wpmem_reg .captcha {
194
+ width: 74%;
195
+ margin: 5px 0px;
196
+ }
197
+ #wpmem_reg .captcha table{
198
+ line-height: 0px;
199
+ }
200
+ #wpmem_login .link-text {
201
+ width: 100%;
202
+ margin: 4px 0;
203
+ float: right;
204
+ text-align: right;
205
+ }
206
+
207
+ #tos {
208
+ margin-right:5px;
209
+ }
210
+
211
+
212
+ /* Buttons */
213
+
214
+ #wpmem_reg .button_div, #wpmem_login .button_div {
215
+ width:100%;
216
+ float:right;
217
+ height: 62px;
218
+ padding: 6px 0;
219
+ text-align: right;
220
+ }
221
+
222
+
223
+ /** for smaller screens */
224
+
225
+ @media screen and (max-width: 720px) {
226
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
227
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
228
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
229
+ #wpmem_reg .div_select, #wpmem_login .div_text,
230
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
231
+ float: none;
232
+ }
233
+
234
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
235
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
236
+ #wpmem_login label {
237
+ height: 20px;
238
+ width: 90%;
239
+ padding: 5px 0 0 0;
240
+ }
241
+ #wpmem_reg label.textarea {
242
+ height: 26px;
243
+ }
244
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
245
+ #wpmem_reg .div_select, #wpmem_login .div_text,
246
+ #wpmem_reg .div_checkbox {
247
+ width: 98%;
248
+ }
249
+ #wpmem_reg .div_text {
250
+ font-size: 80%;
251
+ }
252
+ #wpmem_msg, .wpmem_msg {
253
+ width: 100%;
254
+ }
255
+
256
+ #wpmem_reg .button_div,
257
+ #wpmem_login .button_div,
258
+ #wpmem_login .link-text {
259
+ width:98%;
260
+ }
261
  }
assets/css/forms/wp-members-2016-no-float.css CHANGED
@@ -1,294 +1,294 @@
1
- /**
2
- * WP-Members Styles CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Sixteen Theme, no float
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Fourteen theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
-
31
- /* Error and Dialog Messages */
32
-
33
- #wpmem_msg, .wpmem_msg {
34
- background: #F9F9F9;
35
- border:1px solid lightGrey;
36
- border-radius: 3px;
37
- padding: 20px 0 0 0;
38
- }
39
- #wpmem_msg {
40
- width: 100%;
41
- }
42
- #wpmem_msg h2 {
43
- font-family: Montserrat, "Helvetica Neue", sans-serif;
44
- }
45
- .wpmem_msg {
46
- width: 74%;
47
- }
48
- .wpmem_msg p {
49
- margin: 0 0 1.3em;
50
- }
51
-
52
- /* Sidebar Login Widget */
53
-
54
- #wp-members {
55
- width: 100%;
56
- }
57
- #wp-members fieldset {
58
- border:none;
59
- padding:0px
60
- }
61
- #wp-members label {
62
- font-family: Montserrat, "Helvetica Neue", sans-serif;
63
- color: #686868;
64
- display: block;
65
- font-size: 13px;
66
- font-size: 0.8125rem;
67
- letter-spacing: 0.076923077em;
68
- line-height: 1.6153846154;
69
- margin-bottom: 0.5384615385em;
70
- text-transform: uppercase;
71
- }
72
- #wp-members input {
73
- font-family: Merriweather, Georgia, serif;
74
- }
75
- #wp-members input[type="text"],
76
- #wp-members input[type="password"]{
77
- margin: 0 0 4px 0;
78
- width: 92%;
79
- }
80
- #wp-members input[type="submit"] {
81
- font-family: Montserrat, "Helvetica Neue", sans-serif;
82
- padding: 10px 10px 8px;
83
- margin: 0 4px 0 0;
84
- }
85
- #wp-members .button_div {
86
- margin-top:4px;
87
- }
88
- #wp-members .err {
89
- width:92%;
90
- padding: 5px;
91
- font-family: inherit;
92
- border: 1px solid #ccc;
93
- border-radius: 3px;
94
- }
95
-
96
-
97
- /* Login Form and Registration Form */
98
-
99
- #wpmem_reg fieldset,
100
- #wpmem_login fieldset {
101
- border: none;
102
- padding: 0;
103
- margin: 40px 0;
104
- }
105
- #wpmem_reg legend,
106
- #wpmem_login legend {
107
- border-top: 4px solid #1a1a1a;
108
- font-family: Montserrat, "Helvetica Neue", sans-serif;
109
- font-size: 23px;
110
- font-size: 1.4375rem;
111
- font-weight: 700;
112
- line-height: 1.3125;
113
- padding-top: 1.217391304em;
114
- padding-bottom: 1.75em;
115
- box-sizing: inherit;
116
- width: 100%;
117
- }
118
- #wpmem_reg label,
119
- #wpmem_login label {
120
- color: #686868;
121
- display: block;
122
- font-family: Montserrat, "Helvetica Neue", sans-serif;
123
- font-size: 13px;
124
- font-size: 0.8125rem;
125
- letter-spacing: 0.076923077em;
126
- line-height: 1.6153846154;
127
- margin-bottom: 0.5384615385em;
128
- text-transform: uppercase;
129
- }
130
- #wpmem_login label[for="rememberme"] {
131
- display: initial;
132
- }
133
-
134
- #wpmem_reg .form,
135
- #wpmem_login .form {
136
- margin:0;
137
- padding:0;
138
- }
139
- #wpmem_reg .clear,
140
- #wpmem_login .clear {
141
- clear:both;
142
- }
143
- #wpmem_reg .holder,
144
- #wpmem_login .holder {
145
- background-color:#fff;
146
- }
147
- #wpmem_login .div_text,
148
- #wpmem_reg .div_text,
149
- #wpmem_reg .div_textarea,
150
- #wpmem_reg .div_select,
151
- #wpmem_reg .div_checkbox,
152
- #wpmem_reg .div_multicheckbox,
153
- #wpmem_reg .div_multiselect,
154
- #wpmem_reg .div_radio,
155
- #wpmem_reg .div_url,
156
- #wpmem_reg .div_file,
157
- #wpmem_reg .div_image,
158
- #wpmem_reg .div_number,
159
- #wpmem_reg .div_date {
160
- width:74%;
161
- margin:0 0 14px 0;
162
- }
163
- #wpmem_login input[type="checkbox"] {
164
- margin: 12px 2px;
165
- }
166
- #wpmem_reg .div_textarea textarea,
167
- #wpmem_reg .textbox,
168
- #wpmem_reg .username,
169
- #wpmem_reg .password,
170
- #wpmem_login .textbox,
171
- #wpmem_login .username,
172
- #wpmem_login .password{
173
- width:100%;
174
- }
175
- #wpmem_reg .dropdown,
176
- #wpmem_reg select,
177
- #wpmem_reg input[type="file"] {
178
- width:100%;
179
- padding: 8px 10px 7px;
180
- border: 1px solid rgba(0, 0, 0, 0.1);
181
- border-radius: 2px;
182
- color: rgb(43, 43, 43);
183
- margin: 5px 0;
184
- }
185
- #wpmem_reg .dropdown:focus {
186
- border: 1px solid rgba(0, 0, 0, 0.3);
187
- outline: 0;
188
- }
189
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
190
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
191
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
192
- background-color:inherit;
193
- }
194
- #wpmem_reg textarea {
195
- height:185px;
196
- }
197
- #wpmem_reg .req {
198
- color: #bd3500;
199
- font-size: 22px;
200
- line-height: 50%;
201
- }
202
-
203
- #wpmem_reg .req-text {
204
- margin: 20px 0px 0px 5px;
205
- }
206
-
207
- #wpmem_reg .noinput {
208
- width:100%;
209
- padding: 8px 10px 7px;
210
- border: 1px solid rgba(0, 0, 0, 0.1);
211
- border-radius: 2px;
212
- color: rgb(43, 43, 43);
213
- margin: 5px 0;
214
- }
215
-
216
- #wpmem_reg .captcha {
217
- width: 74%;
218
- margin: 5px 0px;
219
- }
220
- #wpmem_reg .captcha table{
221
- line-height: 0px;
222
- }
223
- #wpmem_login .link-text {
224
- width: 74%;
225
- text-align:right;
226
- }
227
-
228
- #tos {
229
- margin-right:5px;
230
- }
231
-
232
-
233
- /* Buttons */
234
-
235
- #wpmem_reg .button_div, #wpmem_login .button_div {
236
- width:74%;
237
- height:55px;
238
- padding: 6px 0;
239
- text-align: right;
240
- }
241
-
242
-
243
- /** for smaller screens */
244
-
245
- @media screen and (max-width: 1079px) {
246
- #wp-members .button_div {
247
- text-align:center;
248
- }
249
- #wp-members input[type="submit"] {
250
- width: 92%;
251
- margin: 0 10px 6px 0;
252
- }
253
- }
254
-
255
- @media screen and (max-width: 1007px) {
256
- #wp-members {
257
- width: 179px;
258
- }
259
- #wp-members .button_div {
260
- text-align: inherit;
261
- }
262
- #wp-members input[type="submit"] {
263
- width: inherit;
264
- margin: 0 4px 0 0;
265
- }
266
- }
267
-
268
- @media screen and (max-width: 720px) {
269
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
270
- #wpmem_reg label.textarea , #wpmem_reg label.select,
271
- #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
272
- #wpmem_reg .div_select, #wpmem_login .div_text,
273
- #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
274
- float: none;
275
- }
276
-
277
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
278
- #wpmem_reg label.textarea , #wpmem_reg label.select,
279
- #wpmem_login label {
280
- width: 90%;
281
- padding: 5px 0 0 0;
282
- }
283
- #wpmem_reg label.textarea {
284
- height: 26px;
285
- }
286
- #wpmem_reg .div_text, #wpmem_reg .div_textarea,
287
- #wpmem_reg .div_select, #wpmem_login .div_text,
288
- #wpmem_reg .div_checkbox {
289
- width: 98%;
290
- }
291
- #wpmem_msg, .wpmem_msg {
292
- width: 100%;
293
- }
294
  }
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Sixteen Theme, no float
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Fourteen theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg, .wpmem_msg {
34
+ background: #F9F9F9;
35
+ border:1px solid lightGrey;
36
+ border-radius: 3px;
37
+ padding: 20px 0 0 0;
38
+ }
39
+ #wpmem_msg {
40
+ width: 100%;
41
+ }
42
+ #wpmem_msg h2 {
43
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
44
+ }
45
+ .wpmem_msg {
46
+ width: 74%;
47
+ }
48
+ .wpmem_msg p {
49
+ margin: 0 0 1.3em;
50
+ }
51
+
52
+ /* Sidebar Login Widget */
53
+
54
+ #wp-members {
55
+ width: 100%;
56
+ }
57
+ #wp-members fieldset {
58
+ border:none;
59
+ padding:0px
60
+ }
61
+ #wp-members label {
62
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
63
+ color: #686868;
64
+ display: block;
65
+ font-size: 13px;
66
+ font-size: 0.8125rem;
67
+ letter-spacing: 0.076923077em;
68
+ line-height: 1.6153846154;
69
+ margin-bottom: 0.5384615385em;
70
+ text-transform: uppercase;
71
+ }
72
+ #wp-members input {
73
+ font-family: Merriweather, Georgia, serif;
74
+ }
75
+ #wp-members input[type="text"],
76
+ #wp-members input[type="password"]{
77
+ margin: 0 0 4px 0;
78
+ width: 92%;
79
+ }
80
+ #wp-members input[type="submit"] {
81
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
82
+ padding: 10px 10px 8px;
83
+ margin: 0 4px 0 0;
84
+ }
85
+ #wp-members .button_div {
86
+ margin-top:4px;
87
+ }
88
+ #wp-members .err {
89
+ width:92%;
90
+ padding: 5px;
91
+ font-family: inherit;
92
+ border: 1px solid #ccc;
93
+ border-radius: 3px;
94
+ }
95
+
96
+
97
+ /* Login Form and Registration Form */
98
+
99
+ #wpmem_reg fieldset,
100
+ #wpmem_login fieldset {
101
+ border: none;
102
+ padding: 0;
103
+ margin: 40px 0;
104
+ }
105
+ #wpmem_reg legend,
106
+ #wpmem_login legend {
107
+ border-top: 4px solid #1a1a1a;
108
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
109
+ font-size: 23px;
110
+ font-size: 1.4375rem;
111
+ font-weight: 700;
112
+ line-height: 1.3125;
113
+ padding-top: 1.217391304em;
114
+ padding-bottom: 1.75em;
115
+ box-sizing: inherit;
116
+ width: 100%;
117
+ }
118
+ #wpmem_reg label,
119
+ #wpmem_login label {
120
+ color: #686868;
121
+ display: block;
122
+ font-family: Montserrat, "Helvetica Neue", sans-serif;
123
+ font-size: 13px;
124
+ font-size: 0.8125rem;
125
+ letter-spacing: 0.076923077em;
126
+ line-height: 1.6153846154;
127
+ margin-bottom: 0.5384615385em;
128
+ text-transform: uppercase;
129
+ }
130
+ #wpmem_login label[for="rememberme"] {
131
+ display: initial;
132
+ }
133
+
134
+ #wpmem_reg .form,
135
+ #wpmem_login .form {
136
+ margin:0;
137
+ padding:0;
138
+ }
139
+ #wpmem_reg .clear,
140
+ #wpmem_login .clear {
141
+ clear:both;
142
+ }
143
+ #wpmem_reg .holder,
144
+ #wpmem_login .holder {
145
+ background-color:#fff;
146
+ }
147
+ #wpmem_login .div_text,
148
+ #wpmem_reg .div_text,
149
+ #wpmem_reg .div_textarea,
150
+ #wpmem_reg .div_select,
151
+ #wpmem_reg .div_checkbox,
152
+ #wpmem_reg .div_multicheckbox,
153
+ #wpmem_reg .div_multiselect,
154
+ #wpmem_reg .div_radio,
155
+ #wpmem_reg .div_url,
156
+ #wpmem_reg .div_file,
157
+ #wpmem_reg .div_image,
158
+ #wpmem_reg .div_number,
159
+ #wpmem_reg .div_date {
160
+ width:74%;
161
+ margin:0 0 14px 0;
162
+ }
163
+ #wpmem_login input[type="checkbox"] {
164
+ margin: 12px 2px;
165
+ }
166
+ #wpmem_reg .div_textarea textarea,
167
+ #wpmem_reg .textbox,
168
+ #wpmem_reg .username,
169
+ #wpmem_reg .password,
170
+ #wpmem_login .textbox,
171
+ #wpmem_login .username,
172
+ #wpmem_login .password{
173
+ width:100%;
174
+ }
175
+ #wpmem_reg .dropdown,
176
+ #wpmem_reg select,
177
+ #wpmem_reg input[type="file"] {
178
+ width:100%;
179
+ padding: 8px 10px 7px;
180
+ border: 1px solid rgba(0, 0, 0, 0.1);
181
+ border-radius: 2px;
182
+ color: rgb(43, 43, 43);
183
+ margin: 5px 0;
184
+ }
185
+ #wpmem_reg .dropdown:focus {
186
+ border: 1px solid rgba(0, 0, 0, 0.3);
187
+ outline: 0;
188
+ }
189
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
190
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
191
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
192
+ background-color:inherit;
193
+ }
194
+ #wpmem_reg textarea {
195
+ height:185px;
196
+ }
197
+ #wpmem_reg .req {
198
+ color: #bd3500;
199
+ font-size: 22px;
200
+ line-height: 50%;
201
+ }
202
+
203
+ #wpmem_reg .req-text {
204
+ margin: 20px 0px 0px 5px;
205
+ }
206
+
207
+ #wpmem_reg .noinput {
208
+ width:100%;
209
+ padding: 8px 10px 7px;
210
+ border: 1px solid rgba(0, 0, 0, 0.1);
211
+ border-radius: 2px;
212
+ color: rgb(43, 43, 43);
213
+ margin: 5px 0;
214
+ }
215
+
216
+ #wpmem_reg .captcha {
217
+ width: 74%;
218
+ margin: 5px 0px;
219
+ }
220
+ #wpmem_reg .captcha table{
221
+ line-height: 0px;
222
+ }
223
+ #wpmem_login .link-text {
224
+ width: 74%;
225
+ text-align:right;
226
+ }
227
+
228
+ #tos {
229
+ margin-right:5px;
230
+ }
231
+
232
+
233
+ /* Buttons */
234
+
235
+ #wpmem_reg .button_div, #wpmem_login .button_div {
236
+ width:74%;
237
+ height:55px;
238
+ padding: 6px 0;
239
+ text-align: right;
240
+ }
241
+
242
+
243
+ /** for smaller screens */
244
+
245
+ @media screen and (max-width: 1079px) {
246
+ #wp-members .button_div {
247
+ text-align:center;
248
+ }
249
+ #wp-members input[type="submit"] {
250
+ width: 92%;
251
+ margin: 0 10px 6px 0;
252
+ }
253
+ }
254
+
255
+ @media screen and (max-width: 1007px) {
256
+ #wp-members {
257
+ width: 179px;
258
+ }
259
+ #wp-members .button_div {
260
+ text-align: inherit;
261
+ }
262
+ #wp-members input[type="submit"] {
263
+ width: inherit;
264
+ margin: 0 4px 0 0;
265
+ }
266
+ }
267
+
268
+ @media screen and (max-width: 720px) {
269
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
270
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
271
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
272
+ #wpmem_reg .div_select, #wpmem_login .div_text,
273
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
274
+ float: none;
275
+ }
276
+
277
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
278
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
279
+ #wpmem_login label {
280
+ width: 90%;
281
+ padding: 5px 0 0 0;
282
+ }
283
+ #wpmem_reg label.textarea {
284
+ height: 26px;
285
+ }
286
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
287
+ #wpmem_reg .div_select, #wpmem_login .div_text,
288
+ #wpmem_reg .div_checkbox {
289
+ width: 98%;
290
+ }
291
+ #wpmem_msg, .wpmem_msg {
292
+ width: 100%;
293
+ }
294
  }
assets/css/forms/wp-members-kubrick.css CHANGED
@@ -1,188 +1,188 @@
1
- /**
2
- * WP-Members CSS
3
- *
4
- * CSS for the WP-Members plugin using Kubrick Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with a narrower body theme.
19
- There are quite a few examples in here of what you can do with the table-less
20
- forms. You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a cusotm stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
- /* Error and Dialog Messages */
31
-
32
- #wpmem_msg, .wpmem_msg {
33
- width:452px;
34
- padding-top: 10px;
35
- border: 1px #000 solid;
36
- background-color:#E6E6E6;
37
- }
38
-
39
- /* Sidebar Login Widget */
40
-
41
- #wp-members {
42
- margin-bottom: 20px;
43
- border: none;
44
- }
45
- #wp-members fieldset { border: none; }
46
- #wp-members label { color: #000; }
47
- #wp-members .div_text { padding-top: 4px; }
48
- #wp-members .username, #wp-members .password {
49
- border: 1px solid #ccc;
50
- background-color:#fff;
51
- width:160px;
52
- font:10px verdana,sans-serif;
53
- color: #000;
54
- padding:3px 5px 3px 5px;
55
- }
56
- #wp-members .button_div { margin-top:3px; }
57
- #wp-members .buttons {
58
- font-family:Arial,Helvetica,sans-serif;
59
- background: #e3e3db;
60
- font-size:10px;
61
- color: #000;
62
- margin-left: 0px;
63
- border-width: 2px;
64
- border-style: solid;
65
- border-color: #fff #d8d8d0 #d8d8d0 #fff;
66
- text-decoration: none;
67
- font-weight:bold;
68
- }
69
- #wp-members .err {
70
- width:100%;
71
- padding: 5px;
72
- border: 1px #000 solid;
73
- background-color:#E6E6E6;
74
- }
75
-
76
- /* Login Form and Registration Form */
77
-
78
- #wpmem_reg, #wpmem_login {
79
- width:460px;
80
- padding-top:30px;
81
- float:left;
82
- }
83
-
84
- #wpmem_reg fieldset, #wpmem_login fieldset {
85
- border: none;
86
- padding-top: 20px;
87
- }
88
- #wpmem_reg legend, #wpmem_login legend {
89
- font-family: Arial,Helvetica,sans-serif;
90
- font-weight: bold;
91
- font-size: 1.6em;
92
- text-align: left;
93
- }
94
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
95
- #wpmem_reg label.textarea , #wpmem_reg label.select,
96
- #wpmem_login label {
97
- width:150px;
98
- float:left;
99
- display: block;
100
- color:#666;
101
- text-align: right;
102
- padding: 4px;
103
- font-family: Verdana, Arial,Helvetica,sans-serif;
104
- line-height: 1.4em;
105
- }
106
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
107
- #wpmem_reg label.select, #wpmem_login label {
108
- height:20px;
109
- }
110
- #wpmem_reg label.textarea {
111
- height:197px;
112
- }
113
- #wpmem_reg .form, #wpmem_login .form {
114
- margin:0;
115
- padding:0;
116
- }
117
- #wpmem_reg .clear, #wpmem_login .clear {
118
- clear:both;
119
- }
120
- #wpmem_reg .holder, #wpmem_login .holder {
121
- background-color:#fff;
122
- }
123
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
124
- #wpmem_reg .div_textarea, #wpmem_reg .div_select,
125
- #wpmem_login .div_text {
126
- width:270px;
127
- float:right;
128
- margin:4px;
129
- }
130
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
131
- #wpmem_reg .div_select, #wpmem_login .div_text {
132
- height:20px;
133
- }
134
- #wpmem_reg .div_textarea textarea{
135
- height:200px;
136
- }
137
- #wpmem_reg .dropdown,
138
- #wpmem_reg .textbox, #wpmem_login .textbox,
139
- #wpmem_reg .username, #wpmem_login .username,
140
- #wpmem_reg .password, #wpmem_login .password {
141
- border: 1px solid #ccc;
142
- background-color:#fff;
143
- width:270px;
144
- font:normal 11px verdana, arial, sans serif;
145
- color: #000000;
146
- }
147
- #wpmem_reg .dropdown {
148
- width:272px;
149
- }
150
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
151
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
152
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
153
- background-color:#F0FFE6;
154
- }
155
- #wpmem_reg .textarea {
156
- width:266px;
157
- height:190px;
158
- }
159
- #wpmem_reg input[type="checkbox"]{
160
- align: left;
161
- }
162
- #wpmem_reg .button_div, #wpmem_login .button_div {
163
- text-align:right;
164
- width:240px;
165
- float:right;
166
- background-color:#fff;
167
- margin-top: 10px;
168
- margin-bottom: 10px;
169
- white-space:nowrap;
170
- }
171
- #wpmem_reg .buttons, #wpmem_login .buttons {
172
- font-family:Arial,Helvetica,sans-serif;
173
- background: #e3e3db;
174
- font-size:12px;
175
- color: #000;
176
- padding: 4px 12px;
177
- border-width: 2px;
178
- border-style: solid;
179
- border-color: #fff #d8d8d0 #d8d8d0 #fff;
180
- text-decoration: none;
181
- font-weight:bold;
182
- }
183
- #wpmem_reg .req { color: red; }
184
-
185
- #wpmem_reg .req-text {
186
- float:left;
187
- margin: 15px 0px 0px 5px;
188
  }
1
+ /**
2
+ * WP-Members CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Kubrick Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with a narrower body theme.
19
+ There are quite a few examples in here of what you can do with the table-less
20
+ forms. You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a cusotm stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+ /* Error and Dialog Messages */
31
+
32
+ #wpmem_msg, .wpmem_msg {
33
+ width:452px;
34
+ padding-top: 10px;
35
+ border: 1px #000 solid;
36
+ background-color:#E6E6E6;
37
+ }
38
+
39
+ /* Sidebar Login Widget */
40
+
41
+ #wp-members {
42
+ margin-bottom: 20px;
43
+ border: none;
44
+ }
45
+ #wp-members fieldset { border: none; }
46
+ #wp-members label { color: #000; }
47
+ #wp-members .div_text { padding-top: 4px; }
48
+ #wp-members .username, #wp-members .password {
49
+ border: 1px solid #ccc;
50
+ background-color:#fff;
51
+ width:160px;
52
+ font:10px verdana,sans-serif;
53
+ color: #000;
54
+ padding:3px 5px 3px 5px;
55
+ }
56
+ #wp-members .button_div { margin-top:3px; }
57
+ #wp-members .buttons {
58
+ font-family:Arial,Helvetica,sans-serif;
59
+ background: #e3e3db;
60
+ font-size:10px;
61
+ color: #000;
62
+ margin-left: 0px;
63
+ border-width: 2px;
64
+ border-style: solid;
65
+ border-color: #fff #d8d8d0 #d8d8d0 #fff;
66
+ text-decoration: none;
67
+ font-weight:bold;
68
+ }
69
+ #wp-members .err {
70
+ width:100%;
71
+ padding: 5px;
72
+ border: 1px #000 solid;
73
+ background-color:#E6E6E6;
74
+ }
75
+
76
+ /* Login Form and Registration Form */
77
+
78
+ #wpmem_reg, #wpmem_login {
79
+ width:460px;
80
+ padding-top:30px;
81
+ float:left;
82
+ }
83
+
84
+ #wpmem_reg fieldset, #wpmem_login fieldset {
85
+ border: none;
86
+ padding-top: 20px;
87
+ }
88
+ #wpmem_reg legend, #wpmem_login legend {
89
+ font-family: Arial,Helvetica,sans-serif;
90
+ font-weight: bold;
91
+ font-size: 1.6em;
92
+ text-align: left;
93
+ }
94
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
95
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
96
+ #wpmem_login label {
97
+ width:150px;
98
+ float:left;
99
+ display: block;
100
+ color:#666;
101
+ text-align: right;
102
+ padding: 4px;
103
+ font-family: Verdana, Arial,Helvetica,sans-serif;
104
+ line-height: 1.4em;
105
+ }
106
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
107
+ #wpmem_reg label.select, #wpmem_login label {
108
+ height:20px;
109
+ }
110
+ #wpmem_reg label.textarea {
111
+ height:197px;
112
+ }
113
+ #wpmem_reg .form, #wpmem_login .form {
114
+ margin:0;
115
+ padding:0;
116
+ }
117
+ #wpmem_reg .clear, #wpmem_login .clear {
118
+ clear:both;
119
+ }
120
+ #wpmem_reg .holder, #wpmem_login .holder {
121
+ background-color:#fff;
122
+ }
123
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
124
+ #wpmem_reg .div_textarea, #wpmem_reg .div_select,
125
+ #wpmem_login .div_text {
126
+ width:270px;
127
+ float:right;
128
+ margin:4px;
129
+ }
130
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
131
+ #wpmem_reg .div_select, #wpmem_login .div_text {
132
+ height:20px;
133
+ }
134
+ #wpmem_reg .div_textarea textarea{
135
+ height:200px;
136
+ }
137
+ #wpmem_reg .dropdown,
138
+ #wpmem_reg .textbox, #wpmem_login .textbox,
139
+ #wpmem_reg .username, #wpmem_login .username,
140
+ #wpmem_reg .password, #wpmem_login .password {
141
+ border: 1px solid #ccc;
142
+ background-color:#fff;
143
+ width:270px;
144
+ font:normal 11px verdana, arial, sans serif;
145
+ color: #000000;
146
+ }
147
+ #wpmem_reg .dropdown {
148
+ width:272px;
149
+ }
150
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
151
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
152
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
153
+ background-color:#F0FFE6;
154
+ }
155
+ #wpmem_reg .textarea {
156
+ width:266px;
157
+ height:190px;
158
+ }
159
+ #wpmem_reg input[type="checkbox"]{
160
+ align: left;
161
+ }
162
+ #wpmem_reg .button_div, #wpmem_login .button_div {
163
+ text-align:right;
164
+ width:240px;
165
+ float:right;
166
+ background-color:#fff;
167
+ margin-top: 10px;
168
+ margin-bottom: 10px;
169
+ white-space:nowrap;
170
+ }
171
+ #wpmem_reg .buttons, #wpmem_login .buttons {
172
+ font-family:Arial,Helvetica,sans-serif;
173
+ background: #e3e3db;
174
+ font-size:12px;
175
+ color: #000;
176
+ padding: 4px 12px;
177
+ border-width: 2px;
178
+ border-style: solid;
179
+ border-color: #fff #d8d8d0 #d8d8d0 #fff;
180
+ text-decoration: none;
181
+ font-weight:bold;
182
+ }
183
+ #wpmem_reg .req { color: red; }
184
+
185
+ #wpmem_reg .req-text {
186
+ float:left;
187
+ margin: 15px 0px 0px 5px;
188
  }
assets/css/forms/wp-members-styles.css ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * WP-Members Styles CSS
3
+ *
4
+ * CSS for the WP-Members plugin
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2020 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WP-Members
12
+ * @author Chad Butler
13
+ * @copyright 2006-2020
14
+ */
15
+
16
+ /*
17
+ This stylesheet is designed to integrate WP-Members floated form elements
18
+ as simply as possible with most themes. There are quite a few examples
19
+ in here of what you can do to style the forms. You can build off of this
20
+ or start from scratch and set your own custom css for the plugin
21
+ (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+
31
+ /* Error and Dialog Messages */
32
+
33
+ #wpmem_msg,
34
+ .wpmem_msg,
35
+ #wpmem_restricted_msg {
36
+ background: #F9F9F9;
37
+ border:1px solid lightGrey;
38
+ border-radius: 3px;
39
+ padding: 20px;
40
+ width: 100%;
41
+ }
42
+
43
+ #wpmem_msg p,
44
+ .wpmem_msg p,
45
+ #wpmem_restricted_msg p {
46
+ margin: initial;
47
+ padding: initial;
48
+ }
49
+
50
+ /* Sidebar Login Widget */
51
+
52
+ #wp-members {
53
+ width: 100%;
54
+ }
55
+ #wp-members fieldset {
56
+ border:none;
57
+ padding:0px
58
+ }
59
+ #wp-members input {
60
+ font-family: inherit;
61
+ }
62
+ #wp-members input[type="text"],
63
+ #wp-members input[type="password"]{
64
+ margin: 0 0 4px 0;
65
+ }
66
+ #wp-members input[type="submit"] {
67
+ padding: 5px 6px 4px;
68
+ margin: 0 4px 0 0;
69
+ }
70
+ #wp-members .button_div {
71
+ margin-top:4px;
72
+ }
73
+ #wp-members .err {
74
+ width:100%;
75
+ padding: 5px;
76
+ font-family: inherit;
77
+ border: 1px solid #ccc;
78
+ border-radius: 3px;
79
+ }
80
+
81
+
82
+ /* Login Form and Registration Form */
83
+ #wpmem_reg,
84
+ #wpmem_login {}
85
+
86
+ #wpmem_reg label,
87
+ #wpmem_login label {
88
+ display: initial;
89
+ }
90
+
91
+ #wpmem_reg input[type="text"],
92
+ #wpmem_reg input[type="password"],
93
+ #wpmem_reg input[type="email"],
94
+ #wpmem_reg input[type="url"],
95
+ #wpmem_reg input[type="number"],
96
+ #wpmem_reg input[type="date"],
97
+ #wpmem_reg textarea,
98
+ #wpmem_login input[type="text"],
99
+ #wpmem_login input[type="password"] {
100
+ border: 1px solid rgba(0, 0, 0, 0.1);
101
+ border-radius: 2px;
102
+ color: rgb(43, 43, 43);
103
+ padding: 8px 10px 8px;
104
+ background: none repeat scroll 0% 0% #fff;
105
+ }
106
+
107
+ #wpmem_reg input,
108
+ #wpmem_reg button,
109
+ #wpmem_reg select,
110
+ #wpmem_reg textarea,
111
+ #wpmem_login input,
112
+ #wpmem_login button {
113
+ -moz-box-sizing: border-box;
114
+ font-size: 100%;
115
+ margin: 0px;
116
+ max-width: 100%;
117
+ vertical-align: baseline;
118
+ }
119
+
120
+ #wpmem_reg input:focus,
121
+ #wpmem_reg textarea:focus,
122
+ #wpmem_login input:focus {
123
+ border: 1px solid rgba(0, 0, 0, 0.3);
124
+ outline: 0px none;
125
+ }
126
+
127
+ #wpmem_reg select {
128
+ width:100%;
129
+ padding: 8px 10px 7px;
130
+ border: 1px solid rgba(0, 0, 0, 0.1);
131
+ border-radius: 2px;
132
+ color: rgb(43, 43, 43);
133
+ margin: 5px 0;
134
+ }
135
+
136
+ #wpmem_reg fieldset,
137
+ #wpmem_login fieldset {
138
+ border: none;
139
+ padding: 0;
140
+ margin: 40px 0;
141
+ }
142
+ #wpmem_reg legend,
143
+ #wpmem_login legend {
144
+ font-size: 115%;
145
+ line-height: 1;
146
+ margin-bottom: 10px;
147
+ width: 100%;
148
+ }
149
+ #wpmem_reg .form,
150
+ #wpmem_login .form {
151
+ margin:0;
152
+ padding:0;
153
+ }
154
+ #wpmem_reg .clear,
155
+ #wpmem_login .clear {
156
+ clear:both;
157
+ }
158
+ #wpmem_reg .holder,
159
+ #wpmem_login .holder {
160
+ background-color:#fff;
161
+ }
162
+
163
+ #wpmem_login .div_text,
164
+ #wpmem_reg .div_text,
165
+ #wpmem_reg .div_textarea,
166
+ #wpmem_reg .div_select,
167
+ #wpmem_reg .div_checkbox,
168
+ #wpmem_reg .div_multiselect,
169
+ #wpmem_reg .div_multicheckbox,
170
+ #wpmem_reg .div_radio,
171
+ #wpmem_reg .div_image,
172
+ #wpmem_reg .div_file,
173
+ #wpmem_reg .div_url,
174
+ #wpmem_reg .div_number,
175
+ #wpmem_reg .div_date {
176
+ width:100%;
177
+ margin:0 0 14px 0;
178
+ }
179
+ #wpmem_login input[type="checkbox"] {
180
+ margin: 12px 2px;
181
+ }
182
+ #wpmem_reg .div_textarea textarea,
183
+ #wpmem_reg .file,
184
+ #wpmem_reg .image,
185
+ #wpmem_reg .username,
186
+ #wpmem_reg .password,
187
+ #wpmem_reg .textbox,
188
+ #wpmem_login .textbox,
189
+ #wpmem_login .username,
190
+ #wpmem_login .password {
191
+ width:100%;
192
+ }
193
+
194
+
195
+ #wpmem_reg textarea {
196
+ height:185px;
197
+ }
198
+ #wpmem_reg .req {
199
+ color: #bd3500;
200
+ font-size: 22px;
201
+ line-height: 50%;
202
+ }
203
+
204
+ #wpmem_reg .req-text {
205
+ margin: 20px 0px 0px 5px;
206
+ }
207
+
208
+ #wpmem_reg .noinput {
209
+ width:93%;
210
+ padding: 8px 10px 7px;
211
+ border: 1px solid rgba(0, 0, 0, 0.1);
212
+ border-radius: 2px;
213
+ color: rgb(43, 43, 43);
214
+ margin: 5px 0;
215
+ }
216
+
217
+ #wpmem_reg .captcha {
218
+ width: 100%;
219
+ margin: 5px 0px;
220
+ }
221
+ #wpmem_reg .captcha table{
222
+ line-height: 0px;
223
+ }
224
+ #wpmem_login .link-text {
225
+ padding: 4px 0;
226
+ width: 100%;
227
+ text-align:right;
228
+ }
229
+
230
+ #tos {
231
+ margin-right:5px;
232
+ }
233
+
234
+
235
+ /* Buttons */
236
+
237
+ #wpmem_reg .button_div,
238
+ #wpmem_login .button_div {
239
+ width:100%;
240
+ /* height:55px; */
241
+ padding: 6px 0;
242
+ text-align: right;
243
+ }
244
+
245
+
246
+ /** for smaller screens */
247
+
248
+ @media screen and (max-width: 720px) {
249
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
250
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
251
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
252
+ #wpmem_reg .div_select, #wpmem_login .div_text,
253
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
254
+ float: none;
255
+ }
256
+
257
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
258
+ #wpmem_reg label.textarea , #wpmem_reg label.select {
259
+ width: 90%;
260
+ padding: 5px 0 0 0;
261
+ }
262
+ #wpmem_reg label.textarea {
263
+ height: 26px;
264
+ }
265
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
266
+ #wpmem_reg .div_select, #wpmem_login .div_text,
267
+ #wpmem_reg .div_checkbox {
268
+ width: 98%;
269
+ }
270
+ #wpmem_msg, .wpmem_msg {
271
+ width: 100%;
272
+ }
273
+
274
+ #wpmem_reg .button_div,
275
+ #wpmem_login .button_div,
276
+ #wpmem_login .link-text {
277
+ width:98%;
278
+ }
279
+ }
assets/css/forms/wp-members-styles.min.css ADDED
@@ -0,0 +1 @@
 
1
+ #wpmem_msg,#wpmem_restricted_msg,.wpmem_msg{background:#f9f9f9;border:1px solid #d3d3d3;border-radius:3px;padding:20px;width:100%}#wpmem_msg p,#wpmem_restricted_msg p,.wpmem_msg p{margin:initial;padding:initial}#wp-members{width:100%}#wp-members fieldset{border:none;padding:0}#wp-members input{font-family:inherit}#wp-members input[type=password],#wp-members input[type=text]{margin:0 0 4px 0}#wp-members input[type=submit]{padding:5px 6px 4px;margin:0 4px 0 0}#wp-members .button_div{margin-top:4px}#wp-members .err{width:100%;padding:5px;font-family:inherit;border:1px solid #ccc;border-radius:3px}#wpmem_login label,#wpmem_reg label{display:initial}#wpmem_login input[type=password],#wpmem_login input[type=text],#wpmem_reg input[type=date],#wpmem_reg input[type=email],#wpmem_reg input[type=number],#wpmem_reg input[type=password],#wpmem_reg input[type=text],#wpmem_reg input[type=url],#wpmem_reg textarea{border:1px solid rgba(0,0,0,.1);border-radius:2px;color:#2b2b2b;padding:8px 10px 8px;background:none repeat scroll 0 0 #fff}#wpmem_login button,#wpmem_login input,#wpmem_reg button,#wpmem_reg input,#wpmem_reg select,#wpmem_reg textarea{-moz-box-sizing:border-box;font-size:100%;margin:0;max-width:100%;vertical-align:baseline}#wpmem_login input:focus,#wpmem_reg input:focus,#wpmem_reg textarea:focus{border:1px solid rgba(0,0,0,.3);outline:0 none}#wpmem_reg select{width:100%;padding:8px 10px 7px;border:1px solid rgba(0,0,0,.1);border-radius:2px;color:#2b2b2b;margin:5px 0}#wpmem_login fieldset,#wpmem_reg fieldset{border:none;padding:0;margin:40px 0}#wpmem_login legend,#wpmem_reg legend{font-size:115%;line-height:1;margin-bottom:10px;width:100%}#wpmem_login .form,#wpmem_reg .form{margin:0;padding:0}#wpmem_login .clear,#wpmem_reg .clear{clear:both}#wpmem_login .holder,#wpmem_reg .holder{background-color:#fff}#wpmem_login .div_text,#wpmem_reg .div_checkbox,#wpmem_reg .div_date,#wpmem_reg .div_file,#wpmem_reg .div_image,#wpmem_reg .div_multicheckbox,#wpmem_reg .div_multiselect,#wpmem_reg .div_number,#wpmem_reg .div_radio,#wpmem_reg .div_select,#wpmem_reg .div_text,#wpmem_reg .div_textarea,#wpmem_reg .div_url{width:100%;margin:0 0 14px 0}#wpmem_login input[type=checkbox]{margin:12px 2px}#wpmem_login .password,#wpmem_login .textbox,#wpmem_login .username,#wpmem_reg .div_textarea textarea,#wpmem_reg .file,#wpmem_reg .image,#wpmem_reg .password,#wpmem_reg .textbox,#wpmem_reg .username{width:100%}#wpmem_reg textarea{height:185px}#wpmem_reg .req{color:#bd3500;font-size:22px;line-height:50%}#wpmem_reg .req-text{margin:20px 0 0 5px}#wpmem_reg .noinput{width:93%;padding:8px 10px 7px;border:1px solid rgba(0,0,0,.1);border-radius:2px;color:#2b2b2b;margin:5px 0}#wpmem_reg .captcha{width:100%;margin:5px 0}#wpmem_reg .captcha table{line-height:0}#wpmem_login .link-text{padding:4px 0;width:100%;text-align:right}#tos{margin-right:5px}#wpmem_login .button_div,#wpmem_reg .button_div{width:100%;padding:6px 0;text-align:right}@media screen and (max-width:720px){#wpmem_login .button_div,#wpmem_login .div_text,#wpmem_login label,#wpmem_reg .button_div,#wpmem_reg .div_checkbox,#wpmem_reg .div_select,#wpmem_reg .div_text,#wpmem_reg .div_textarea,#wpmem_reg label.checkbox,#wpmem_reg label.select,#wpmem_reg label.text,#wpmem_reg label.textarea{float:none}#wpmem_reg label.checkbox,#wpmem_reg label.select,#wpmem_reg label.text,#wpmem_reg label.textarea{width:90%;padding:5px 0 0 0}#wpmem_reg label.textarea{height:26px}#wpmem_login .div_text,#wpmem_reg .div_checkbox,#wpmem_reg .div_select,#wpmem_reg .div_text,#wpmem_reg .div_textarea{width:98%}#wpmem_msg,.wpmem_msg{width:100%}#wpmem_login .button_div,#wpmem_login .link-text,#wpmem_reg .button_div{width:98%}}
assets/css/forms/wp-members.css CHANGED
@@ -1,223 +1,223 @@
1
- /**
2
- * WP-Members CSS
3
- *
4
- * CSS for the WP-Members plugin using Twenty Ten Theme
5
- *
6
- * This file is part of the WP-Members plugin by Chad Butler
7
- * You can find out more about this plugin at https://rocketgeek.com
8
- * Copyright (c) 2006-2015 Chad Butler
9
- * WP-Members(tm) is a trademark of butlerblog.com
10
- *
11
- * @package WordPress
12
- * @subpackage WP-Members
13
- * @author Chad Butler
14
- * @copyright 2006-2015
15
- */
16
-
17
- /*
18
- This stylesheet is designed to integrate WP-Members with the Twenty Ten theme.
19
- There are quite a few examples in here of what you can do to style the forms.
20
- You can build off of this or start from scratch and set your own
21
- custom css for the plugin (set the location in the admin panel).
22
-
23
- See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
- for information on how to set up the plugin with a custom stylesheet.
25
-
26
- For information how to load custom stylesheets with wp_enqueue_style,
27
- see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
- */
29
-
30
- /* Error and Dialog Messages */
31
-
32
- #wpmem_msg, .wpmem_msg {
33
- width:630px;
34
- padding-top: 10px;
35
- border: 1px #000 solid;
36
- background-color:#E6E6E6;
37
- }
38
-
39
- /* Sidebar Login Widget */
40
-
41
- #wp-members { margin-bottom: 20px; }
42
- #wp-members label { color: #000; }
43
- #wp-members .div_text { padding-top: 4px; }
44
- #wp-members .username, #wp-members .password {
45
- border: 1px solid #ccc;
46
- background-color:#fff;
47
- width:176px;
48
- font:10px verdana,sans-serif;
49
- color: #000;
50
- padding:3px 5px 3px 5px;
51
- }
52
- #wp-members .button_div { margin-top:3px; }
53
- #wp-members .buttons {
54
- font-family:Arial,Helvetica,sans-serif;
55
- background: #e3e3db;
56
- font-size:10px;
57
- color: #000;
58
- margin-left: 0px;
59
- border-width: 2px;
60
- border-style: solid;
61
- border-color: #fff #d8d8d0 #d8d8d0 #fff;
62
- text-decoration: none;
63
- text-transform:uppercase;
64
- font-weight:bold;
65
- }
66
- #wp-members .err {
67
- width:100%;
68
- padding: 5px;
69
- border: 1px #000 solid;
70
- background-color:#E6E6E6;
71
- }
72
-
73
- /* Login Form and Registration Form */
74
-
75
- #wpmem_reg, #wpmem_login {
76
- width:630px;
77
- padding-top:30px;
78
- float:left;
79
- }
80
-
81
- #wpmem_reg fieldset, #wpmem_login fieldset {
82
- border:1px dashed #ccc;
83
- padding:10px;
84
- margin-top:20px;
85
- margin-bottom:20px;
86
- }
87
- #wpmem_reg legend, #wpmem_login legend {
88
- font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
89
- font-weight: bold;
90
- font-size: 20px;
91
- background: #c4c4c4;
92
- border: 1px solid #333;
93
- padding: 8px;
94
- }
95
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
96
- #wpmem_reg label.textarea , #wpmem_reg label.select,
97
- #wpmem_login label {
98
- width:230px;
99
- margin-top:3px;
100
- margin-right:2px;
101
- padding-top:11px;
102
- padding-left:6px;
103
- background-color:#ccc;
104
- float:left;
105
- display: block;
106
- font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
107
- font-size: 115%;
108
- line-height: 1.1;
109
- color:#666;
110
- }
111
- #wpmem_reg label.text, #wpmem_reg label.checkbox,
112
- #wpmem_reg label.select, #wpmem_login label {
113
- height:32px;
114
- }
115
- #wpmem_reg label.textarea {
116
- height:197px;
117
- }
118
- #wpmem_login label[for="rememberme"] {
119
- float: none;
120
- display: initial;
121
- background-color: initial;
122
- padding: initial;
123
- font-size: initial;
124
- }
125
- #wpmem_reg .form, #wpmem_login .form {
126
- margin:0;
127
- padding:0;
128
- }
129
- #wpmem_reg .clear, #wpmem_login .clear {
130
- clear:both;
131
- }
132
- #wpmem_reg .holder, #wpmem_login .holder {
133
- background-color:#fff;
134
- }
135
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
136
- #wpmem_reg .div_textarea, #wpmem_reg .div_select,
137
- #wpmem_login .div_text {
138
- width:360px;
139
- float:right;
140
- background-color:#E6E6E6;
141
- margin-top:3px;
142
- padding-top:5px;
143
- padding-bottom:3px;
144
- padding-left:5px;
145
- }
146
- #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
147
- #wpmem_reg .div_select, #wpmem_login .div_text {
148
- height:35px;
149
- }
150
- #wpmem_reg .div_textarea {
151
- height:200px;
152
- }
153
- #wpmem_reg .dropdown,
154
- #wpmem_reg .textbox, #wpmem_login .textbox,
155
- #wpmem_reg .username, #wpmem_login .username,
156
- #wpmem_reg .password, #wpmem_login .password {
157
- border: 1px solid #ccc;
158
- background-color:#fff;
159
- width:340px;
160
- font:normal 18px Times New Roman;
161
- color: #000000;
162
- padding:3px 5px 3px 5px;
163
- }
164
- #wpmem_reg .dropdown {
165
- width:352px;
166
- }
167
- #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
168
- #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
169
- #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
170
- background-color:#F0FFE6;
171
- }
172
-
173
- #wpmem_reg .textarea {
174
- width:346px;
175
- height:190px;
176
- }
177
-
178
- #wpmem_reg .button_div, #wpmem_login .button_div {
179
- width:353px;
180
- float:right;
181
- background-color:#fff;
182
- border:1px solid #ccc;
183
- text-align:right;
184
- height:35px;
185
- margin-top:3px;
186
- padding:5px;
187
- white-space:nowrap;
188
- }
189
-
190
- #wpmem_reg .buttons, #wpmem_login .buttons {
191
- font-family:Arial,Helvetica,sans-serif;
192
- background: #e3e3db;
193
- font-size:12px;
194
- color: #000;
195
- padding: 4px 12px;
196
- border-width: 2px;
197
- border-style: solid;
198
- border-color: #fff #d8d8d0 #d8d8d0 #fff;
199
- text-decoration: none;
200
- text-transform:uppercase;
201
- font-weight:bold;
202
- }
203
- #wpmem_reg .req { color: red; }
204
- #wpmem_reg .noinput{
205
- height: 32px;
206
- padding-top: 5px;
207
- padding-left: 6px;
208
- }
209
- #wpmem_reg input[type="checkbox"] {
210
- margin: 9px 0 0 2px;
211
- }
212
-
213
- #wpmem_reg .req-text {
214
- float:left;
215
- margin: 15px 0px 0px 5px;
216
- }
217
-
218
- #wpmem_reg .captcha {
219
- margin: 5px 0px;
220
- }
221
- #wpmem_reg .captcha table{
222
- line-height: 0px;
223
  }
1
+ /**
2
+ * WP-Members CSS
3
+ *
4
+ * CSS for the WP-Members plugin using Twenty Ten Theme
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at https://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * @package WordPress
12
+ * @subpackage WP-Members
13
+ * @author Chad Butler
14
+ * @copyright 2006-2015
15
+ */
16
+
17
+ /*
18
+ This stylesheet is designed to integrate WP-Members with the Twenty Ten theme.
19
+ There are quite a few examples in here of what you can do to style the forms.
20
+ You can build off of this or start from scratch and set your own
21
+ custom css for the plugin (set the location in the admin panel).
22
+
23
+ See https://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
24
+ for information on how to set up the plugin with a custom stylesheet.
25
+
26
+ For information how to load custom stylesheets with wp_enqueue_style,
27
+ see https://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
28
+ */
29
+
30
+ /* Error and Dialog Messages */
31
+
32
+ #wpmem_msg, .wpmem_msg {
33
+ width:630px;
34
+ padding-top: 10px;
35
+ border: 1px #000 solid;
36
+ background-color:#E6E6E6;
37
+ }
38
+
39
+ /* Sidebar Login Widget */
40
+
41
+ #wp-members { margin-bottom: 20px; }
42
+ #wp-members label { color: #000; }
43
+ #wp-members .div_text { padding-top: 4px; }
44
+ #wp-members .username, #wp-members .password {
45
+ border: 1px solid #ccc;
46
+ background-color:#fff;
47
+ width:176px;
48
+ font:10px verdana,sans-serif;
49
+ color: #000;
50
+ padding:3px 5px 3px 5px;
51
+ }
52
+ #wp-members .button_div { margin-top:3px; }
53
+ #wp-members .buttons {
54
+ font-family:Arial,Helvetica,sans-serif;
55
+ background: #e3e3db;
56
+ font-size:10px;
57
+ color: #000;
58
+ margin-left: 0px;
59
+ border-width: 2px;
60
+ border-style: solid;
61
+ border-color: #fff #d8d8d0 #d8d8d0 #fff;
62
+ text-decoration: none;
63
+ text-transform:uppercase;
64
+ font-weight:bold;
65
+ }
66
+ #wp-members .err {
67
+ width:100%;
68
+ padding: 5px;
69
+ border: 1px #000 solid;
70
+ background-color:#E6E6E6;
71
+ }
72
+
73
+ /* Login Form and Registration Form */
74
+
75
+ #wpmem_reg, #wpmem_login {
76
+ width:630px;
77
+ padding-top:30px;
78
+ float:left;
79
+ }
80
+
81
+ #wpmem_reg fieldset, #wpmem_login fieldset {
82
+ border:1px dashed #ccc;
83
+ padding:10px;
84
+ margin-top:20px;
85
+ margin-bottom:20px;
86
+ }
87
+ #wpmem_reg legend, #wpmem_login legend {
88
+ font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
89
+ font-weight: bold;
90
+ font-size: 20px;
91
+ background: #c4c4c4;
92
+ border: 1px solid #333;
93
+ padding: 8px;
94
+ }
95
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
96
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
97
+ #wpmem_login label {
98
+ width:230px;
99
+ margin-top:3px;
100
+ margin-right:2px;
101
+ padding-top:11px;
102
+ padding-left:6px;
103
+ background-color:#ccc;
104
+ float:left;
105
+ display: block;
106
+ font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
107
+ font-size: 115%;
108
+ line-height: 1.1;
109
+ color:#666;
110
+ }
111
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
112
+ #wpmem_reg label.select, #wpmem_login label {
113
+ height:32px;
114
+ }
115
+ #wpmem_reg label.textarea {
116
+ height:197px;
117
+ }
118
+ #wpmem_login label[for="rememberme"] {
119
+ float: none;
120
+ display: initial;
121
+ background-color: initial;
122
+ padding: initial;
123
+ font-size: initial;
124
+ }
125
+ #wpmem_reg .form, #wpmem_login .form {
126
+ margin:0;
127
+ padding:0;
128
+ }
129
+ #wpmem_reg .clear, #wpmem_login .clear {
130
+ clear:both;
131
+ }
132
+ #wpmem_reg .holder, #wpmem_login .holder {
133
+ background-color:#fff;
134
+ }
135
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
136
+ #wpmem_reg .div_textarea, #wpmem_reg .div_select,
137
+ #wpmem_login .div_text {
138
+ width:360px;
139
+ float:right;
140
+ background-color:#E6E6E6;
141
+ margin-top:3px;
142
+ padding-top:5px;
143
+ padding-bottom:3px;
144
+ padding-left:5px;
145
+ }
146
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
147
+ #wpmem_reg .div_select, #wpmem_login .div_text {
148
+ height:35px;
149
+ }
150
+ #wpmem_reg .div_textarea {
151
+ height:200px;
152
+ }
153
+ #wpmem_reg .dropdown,
154
+ #wpmem_reg .textbox, #wpmem_login .textbox,
155
+ #wpmem_reg .username, #wpmem_login .username,
156
+ #wpmem_reg .password, #wpmem_login .password {
157
+ border: 1px solid #ccc;
158
+ background-color:#fff;
159
+ width:340px;
160
+ font:normal 18px Times New Roman;
161
+ color: #000000;
162
+ padding:3px 5px 3px 5px;
163
+ }
164
+ #wpmem_reg .dropdown {
165
+ width:352px;
166
+ }
167
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
168
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
169
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
170
+ background-color:#F0FFE6;
171
+ }
172
+
173
+ #wpmem_reg .textarea {
174
+ width:346px;
175
+ height:190px;
176
+ }
177
+
178
+ #wpmem_reg .button_div, #wpmem_login .button_div {
179
+ width:353px;
180
+ float:right;
181
+ background-color:#fff;
182
+ border:1px solid #ccc;
183
+ text-align:right;
184
+ height:35px;
185
+ margin-top:3px;
186
+ padding:5px;
187
+ white-space:nowrap;
188
+ }
189
+
190
+ #wpmem_reg .buttons, #wpmem_login .buttons {
191
+ font-family:Arial,Helvetica,sans-serif;
192
+ background: #e3e3db;
193
+ font-size:12px;
194
+ color: #000;
195
+ padding: 4px 12px;
196
+ border-width: 2px;
197
+ border-style: solid;
198
+ border-color: #fff #d8d8d0 #d8d8d0 #fff;
199
+ text-decoration: none;
200
+ text-transform:uppercase;
201
+ font-weight:bold;
202
+ }
203
+ #wpmem_reg .req { color: red; }
204
+ #wpmem_reg .noinput{
205
+ height: 32px;
206
+ padding-top: 5px;
207
+ padding-left: 6px;
208
+ }
209
+ #wpmem_reg input[type="checkbox"] {
210
+ margin: 9px 0 0 2px;
211
+ }
212
+
213
+ #wpmem_reg .req-text {
214
+ float:left;
215
+ margin: 15px 0px 0px 5px;
216
+ }
217
+
218
+ #wpmem_reg .captcha {
219
+ margin: 5px 0px;
220
+ }
221
+ #wpmem_reg .captcha table{
222
+ line-height: 0px;
223
  }
assets/js/admin.js CHANGED
@@ -127,7 +127,6 @@
127
  || $("#wpmem_field_type_select").val() == 'password'
128
  || $("#wpmem_field_type_select").val() == 'email'
129
  || $("#wpmem_field_type_select").val() == 'url'
130
- || $("#wpmem_field_type_select").val() == 'number'
131
  || $("#wpmem_field_type_select").val() == 'date' ) {
132
  $("#wpmem_pattern").show();
133
  $("#wpmem_title").show();
127
  || $("#wpmem_field_type_select").val() == 'password'
128
  || $("#wpmem_field_type_select").val() == 'email'
129
  || $("#wpmem_field_type_select").val() == 'url'
 
130
  || $("#wpmem_field_type_select").val() == 'date' ) {
131
  $("#wpmem_pattern").show();
132
  $("#wpmem_title").show();
assets/js/admin.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(e){e("#the-list").sortable({items:".list_item",opacity:.6,cursor:"move",axis:"y",update:function(){var m=e(this).sortable("serialize")+"&action=wpmem_do_field_reorder";e.post(ajaxurl,m,function(e){alert(e)}),e(".list_item").each(function(m){e(this).data("id",m+1),e(this).attr("list_item",m+1)})}})}),function(e){e(document).ready(function(){"use_custom"==e("#wpmem_logpage_select").val()?e("#wpmem_logpage_custom").show():e("#wpmem_logpage_custom").hide(),"use_custom"==e("#wpmem_regpage_select").val()?e("#wpmem_regpage_custom").show():e("#wpmem_regpage_custom").hide(),"use_custom"==e("#wpmem_mspage_select").val()?e("#wpmem_mspage_custom").show():e("#wpmem_mspage_custom").hide(),"use_custom"==e("#wpmem_stylesheet_select").val()?e("#wpmem_stylesheet_custom").show():e("#wpmem_stylesheet_custom").hide(),e("#wpmem_logpage_select").change(function(){"use_custom"==e("#wpmem_logpage_select").val()?e("#wpmem_logpage_custom").show():e("#wpmem_logpage_custom").hide()}),e("#wpmem_regpage_select").change(function(){"use_custom"==e("#wpmem_regpage_select").val()?e("#wpmem_regpage_custom").show():e("#wpmem_regpage_custom").hide()}),e("#wpmem_mspage_select").change(function(){"use_custom"==e("#wpmem_mspage_select").val()?e("#wpmem_mspage_custom").show():e("#wpmem_mspage_custom").hide()}),e("#wpmem_stylesheet_select").change(function(){"use_custom"==e("#wpmem_stylesheet_select").val()?e("#wpmem_stylesheet_custom").show():e("#wpmem_stylesheet_custom").hide()})})}(jQuery),function(e){e(document).ready(function(){e("#wpmem_allowhtml").hide(),e("#wpmem_rows_cols").hide(),e("#wpmem_min_max").hide(),e("#wpmem_checkbox_info").hide(),e("#wpmem_dropdown_info").hide(),e("#wpmem_file_info").hide(),e("#wpmem_delimiter_info").hide(),e("#wpmem_hidden_info").hide()}),e(document).ready(function(){e("#wpmem_field_type_select").change(function(){"text"==e("#wpmem_field_type_select").val()||"password"==e("#wpmem_field_type_select").val()||"email"==e("#wpmem_field_type_select").val()||"url"==e("#wpmem_field_type_select").val()||"number"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()||"textarea"==e("#wpmem_field_type_select").val()?e("#wpmem_placeholder").show():e("#wpmem_placeholder").hide(),"text"==e("#wpmem_field_type_select").val()||"password"==e("#wpmem_field_type_select").val()||"email"==e("#wpmem_field_type_select").val()||"url"==e("#wpmem_field_type_select").val()||"number"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()?(e("#wpmem_pattern").show(),e("#wpmem_title").show()):(e("#wpmem_pattern").hide(),e("#wpmem_title").hide()),"textarea"==e("#wpmem_field_type_select").val()?(e("#wpmem_allowhtml").show(),e("#wpmem_rows_cols").show()):(e("#wpmem_allowhtml").hide(),e("#wpmem_rows_cols").hide()),"number"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()?e("#wpmem_min_max").show():e("#wpmem_min_max").hide(),"checkbox"==e("#wpmem_field_type_select").val()?(e("#wpmem_checkbox_info").show(),e("#add_checked_value").prop("required",!0)):(e("#wpmem_checkbox_info").hide(),e("#add_checked_value").prop("required",!1)),"select"==e("#wpmem_field_type_select").val()||"multiselect"==e("#wpmem_field_type_select").val()||"radio"==e("#wpmem_field_type_select").val()||"multicheckbox"==e("#wpmem_field_type_select").val()?(e("#wpmem_dropdown_info").show(),e("#add_dropdown_value").prop("required",!0)):(e("#wpmem_dropdown_info").hide(),e("#add_dropdown_value").prop("required",!1)),"multiselect"==e("#wpmem_field_type_select").val()||"multicheckbox"==e("#wpmem_field_type_select").val()?e("#wpmem_delimiter_info").show():e("#wpmem_delimiter_info").hide(),"file"==e("#wpmem_field_type_select").val()||"image"==e("#wpmem_field_type_select").val()?e("#wpmem_file_info").show():e("#wpmem_file_info").hide(),"hidden"==e("#wpmem_field_type_select").val()?(e("#wpmem_hidden_info").show(),e("#add_hidden_value").prop("required",!0)):(e("#wpmem_hidden_info").hide(),e("#add_hidden_value").prop("required",!1))})})}(jQuery),function(e){e(document).ready(function(){e("#wpmem_block").hide()}),e(document).ready(function(){e("#wpmem_edit_block_status").click(function(){e("#wpmem_block").show("normal"),e("#wpmem_edit_block_status").hide()}),e("#wpmem_cancel_block_status").click(function(){e("#wpmem_block").hide("normal"),e("#wpmem_edit_block_status").show(),e("#wpmem_post_block_status").text(e("input[name=wpmem_block_original_label]").val()),e("#wpmem_post_block_status_"+e("input[name=wpmem_block_original_value]")).val().prop("checked",!0)}),e("#wpmem_ok_block_status").click(function(){e("#wpmem_block").hide("normal"),e("#wpmem_edit_block_status").show(),e("#wpmem_post_block_status").text(e("input[name=wpmem_block]:checked + label").text()),e("#wpmem_block_status_0").is(":checked")&&(e("#wpmem_post_icon_0").show(),e("#wpmem_post_icon_1").hide(),e("#wpmem_post_icon_2").hide()),e("#wpmem_block_status_1").is(":checked")&&(e("#wpmem_post_icon_0").hide(),e("#wpmem_post_icon_1").show(),e("#wpmem_post_icon_2").hide()),e("#wpmem_block_status_2").is(":checked")&&(e("#wpmem_post_icon_0").hide(),e("#wpmem_post_icon_1").hide(),e("#wpmem_post_icon_2").show())})})}(jQuery);
1
+ jQuery(document).ready(function(e){e("#the-list").sortable({items:".list_item",opacity:.6,cursor:"move",axis:"y",update:function(){var m=e(this).sortable("serialize")+"&action=wpmem_do_field_reorder";e.post(ajaxurl,m,function(e){alert(e)}),e(".list_item").each(function(m){e(this).data("id",m+1),e(this).attr("list_item",m+1)})}})}),function(e){e(document).ready(function(){"use_custom"==e("#wpmem_logpage_select").val()?e("#wpmem_logpage_custom").show():e("#wpmem_logpage_custom").hide(),"use_custom"==e("#wpmem_regpage_select").val()?e("#wpmem_regpage_custom").show():e("#wpmem_regpage_custom").hide(),"use_custom"==e("#wpmem_mspage_select").val()?e("#wpmem_mspage_custom").show():e("#wpmem_mspage_custom").hide(),"use_custom"==e("#wpmem_stylesheet_select").val()?e("#wpmem_stylesheet_custom").show():e("#wpmem_stylesheet_custom").hide(),e("#wpmem_logpage_select").change(function(){"use_custom"==e("#wpmem_logpage_select").val()?e("#wpmem_logpage_custom").show():e("#wpmem_logpage_custom").hide()}),e("#wpmem_regpage_select").change(function(){"use_custom"==e("#wpmem_regpage_select").val()?e("#wpmem_regpage_custom").show():e("#wpmem_regpage_custom").hide()}),e("#wpmem_mspage_select").change(function(){"use_custom"==e("#wpmem_mspage_select").val()?e("#wpmem_mspage_custom").show():e("#wpmem_mspage_custom").hide()}),e("#wpmem_stylesheet_select").change(function(){"use_custom"==e("#wpmem_stylesheet_select").val()?e("#wpmem_stylesheet_custom").show():e("#wpmem_stylesheet_custom").hide()})})}(jQuery),function(e){e(document).ready(function(){e("#wpmem_allowhtml").hide(),e("#wpmem_rows_cols").hide(),e("#wpmem_min_max").hide(),e("#wpmem_checkbox_info").hide(),e("#wpmem_dropdown_info").hide(),e("#wpmem_file_info").hide(),e("#wpmem_delimiter_info").hide(),e("#wpmem_hidden_info").hide()}),e(document).ready(function(){e("#wpmem_field_type_select").change(function(){"text"==e("#wpmem_field_type_select").val()||"password"==e("#wpmem_field_type_select").val()||"email"==e("#wpmem_field_type_select").val()||"url"==e("#wpmem_field_type_select").val()||"number"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()||"textarea"==e("#wpmem_field_type_select").val()?e("#wpmem_placeholder").show():e("#wpmem_placeholder").hide(),"text"==e("#wpmem_field_type_select").val()||"password"==e("#wpmem_field_type_select").val()||"email"==e("#wpmem_field_type_select").val()||"url"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()?(e("#wpmem_pattern").show(),e("#wpmem_title").show()):(e("#wpmem_pattern").hide(),e("#wpmem_title").hide()),"textarea"==e("#wpmem_field_type_select").val()?(e("#wpmem_allowhtml").show(),e("#wpmem_rows_cols").show()):(e("#wpmem_allowhtml").hide(),e("#wpmem_rows_cols").hide()),"number"==e("#wpmem_field_type_select").val()||"date"==e("#wpmem_field_type_select").val()?e("#wpmem_min_max").show():e("#wpmem_min_max").hide(),"checkbox"==e("#wpmem_field_type_select").val()?(e("#wpmem_checkbox_info").show(),e("#add_checked_value").prop("required",!0)):(e("#wpmem_checkbox_info").hide(),e("#add_checked_value").prop("required",!1)),"select"==e("#wpmem_field_type_select").val()||"multiselect"==e("#wpmem_field_type_select").val()||"radio"==e("#wpmem_field_type_select").val()||"multicheckbox"==e("#wpmem_field_type_select").val()?(e("#wpmem_dropdown_info").show(),e("#add_dropdown_value").prop("required",!0)):(e("#wpmem_dropdown_info").hide(),e("#add_dropdown_value").prop("required",!1)),"multiselect"==e("#wpmem_field_type_select").val()||"multicheckbox"==e("#wpmem_field_type_select").val()?e("#wpmem_delimiter_info").show():e("#wpmem_delimiter_info").hide(),"file"==e("#wpmem_field_type_select").val()||"image"==e("#wpmem_field_type_select").val()?e("#wpmem_file_info").show():e("#wpmem_file_info").hide(),"hidden"==e("#wpmem_field_type_select").val()?(e("#wpmem_hidden_info").show(),e("#add_hidden_value").prop("required",!0)):(e("#wpmem_hidden_info").hide(),e("#add_hidden_value").prop("required",!1))})})}(jQuery),function(e){e(document).ready(function(){e("#wpmem_block").hide()}),e(document).ready(function(){e("#wpmem_edit_block_status").click(function(){e("#wpmem_block").show("normal"),e("#wpmem_edit_block_status").hide()}),e("#wpmem_cancel_block_status").click(function(){e("#wpmem_block").hide("normal"),e("#wpmem_edit_block_status").show(),e("#wpmem_post_block_status").text(e("input[name=wpmem_block_original_label]").val()),e("#wpmem_post_block_status_"+e("input[name=wpmem_block_original_value]")).val().prop("checked",!0)}),e("#wpmem_ok_block_status").click(function(){e("#wpmem_block").hide("normal"),e("#wpmem_edit_block_status").show(),e("#wpmem_post_block_status").text(e("input[name=wpmem_block]:checked + label").text()),e("#wpmem_block_status_0").is(":checked")&&(e("#wpmem_post_icon_0").show(),e("#wpmem_post_icon_1").hide(),e("#wpmem_post_icon_2").hide()),e("#wpmem_block_status_1").is(":checked")&&(e("#wpmem_post_icon_0").hide(),e("#wpmem_post_icon_1").show(),e("#wpmem_post_icon_2").hide()),e("#wpmem_block_status_2").is(":checked")&&(e("#wpmem_post_icon_0").hide(),e("#wpmem_post_icon_1").hide(),e("#wpmem_post_icon_2").show())})})}(jQuery);
assets/js/shortcodes_tinymce.js CHANGED
@@ -1,222 +1,222 @@
1
- (function () {
2
- "use strict";
3
-
4
- var wcShortcodeManager = function(editor, url) {
5
- var wcDummyContent = 'Sample Content';
6
- var wcParagraphContent = '<p>Sample Content</p>';
7
-
8
-
9
- editor.addButton('wpmem_shortcodes_button', function() {
10
- return {
11
- title: "WP-Members Shortcodes",
12
- tooltip: "WP-Members Shortcodes",
13
- icon: "user",
14
- type: 'menubutton',
15
- icons: false,
16
- menu: [
17
- {
18
- text: 'WP-Members Shortcodes',
19
- },
20
- {
21
- text: 'Login Forms',
22
- menu: [
23
- {
24
- text: "basic login",
25
- onclick: function(){
26
- editor.insertContent('[wpmem_form login]');
27
- }
28
- },
29
- {
30
- text: "login + redirect",
31
- onclick: function(){
32
- editor.insertContent('[wpmem_form login redirect_to="https://mysite.com/my-page/"]');
33
- }
34
- },
35
- {
36
- text: "login + logged in content",
37
- onclick: function(){
38
- editor.insertContent('[wpmem_form login]<br />This displays when logged in<br />[/wpmem_form]');
39
- }
40
- },
41
- {
42
- text: "login + redirect + content",
43
- onclick: function(){
44
- editor.insertContent('[wpmem_form login redirect_to="https://mysite.com/my-page/"]<br />This displays when logged in<br />[/wpmem_form]');
45
- }
46
- },
47
- ]
48
- },
49
- {
50
- text: 'Registration Forms',
51
- menu: [
52
- {
53
- text: "basic registration",
54
- onclick: function(){
55
- editor.insertContent('[wpmem_form register]');
56
- }
57
- },
58
- {
59
- text: "registration + redirect",
60
- onclick: function(){
61
- editor.insertContent('[wpmem_form register redirect_to="https://mysite.com/my-page/"]');
62
- }
63
- },
64
- {
65
- text: "registration + logged in content",
66
- onclick: function(){
67
- editor.insertContent('[wpmem_form register]<br />This displays when logged in<br />[/wpmem_form]');
68
- }
69
- },
70
- {
71
- text: "registration + redirect + content",
72
- onclick: function(){
73
- editor.insertContent('[wpmem_form register redirect_to="https://mysite.com/my-page/"]<br />This displays when logged in<br />[/wpmem_form]');
74
- }
75
- },
76
- ]
77
- },
78
- {
79
- text: 'User Profile',
80
- menu: [
81
- {
82
- text: "User Profile Page",
83
- onclick: function(){
84
- editor.insertContent('[wpmem_profile]');
85
- }
86
- },
87
- {
88
- text: "|"
89
- },
90
- {
91
- text: "Individual Components (optional):"
92
- },
93
- {
94
- text: "Password Reset/Change",
95
- onclick: function(){
96
- editor.insertContent('[wpmem_form password]');
97
- }
98
- },
99
- {
100
- text: "Password Reset Only",
101
- onclick: function(){
102
- editor.insertContent('[wpmem_logged_out][wpmem_form password][/wpmem_logged_out]');
103
- }
104
- },
105
- {
106
- text: "Password Change Only",
107
- onclick: function(){
108
- editor.insertContent('[wpmem_logged_in][wpmem_form password][/wpmem_logged_in]');
109
- }
110
- },
111
- {
112
- text: "User Data Edit",
113
- onclick: function(){
114
- editor.insertContent('[wpmem_logged_in][wpmem_form user_edit][/wpmem_logged_in]');
115
- }
116
- },
117
- {
118
- text: "Forgot Username",
119
- onclick: function(){
120
- editor.insertContent('[wpmem_logged_out][wpmem_form forgot_username][/wpmem_logged_out]');
121
- }
122
- },
123
- ]
124
- },
125
- {
126
- text: 'Content Restriction',
127
- menu: [
128
- {
129
- text: "logged in content",
130
- onclick: function(){
131
- editor.insertContent('[wpmem_logged_in]<br />This displays when logged in<br />[/wpmem_logged_in]');
132
- }
133
- },
134
- {
135
- text: "logged out content",
136
- onclick: function(){
137
- editor.insertContent('[wpmem_logged_out]<br />This displays when logged out<br />[/wpmem_logged_out]');
138
- }
139
- },
140
- ]
141
- },
142
- {
143
- text: 'Links',
144
- menu: [
145
- {
146
- text: "log in/log out link",
147
- onclick: function(){
148
- editor.insertContent('[wpmem_loginout]');
149
- }
150
- },
151
- {
152
- text: "|"
153
- },
154
- {
155
- text: "basic logout link",
156
- onclick: function(){
157
- editor.insertContent('[wpmem_logout]');
158
- }
159
- },
160
- {
161
- text: "logout link + custom link text",
162
- onclick: function(){
163
- editor.insertContent('[wpmem_logout]This the link text[/wpmem_logout]');
164
- }
165
- },
166
- {
167
- text: "|"
168
- },
169
- {
170
- text: "log in link",
171
- onclick: function(){
172
- editor.insertContent('[wpmem_login_link]');
173
- }
174
- },
175
- {
176
- text: "log in link + custom link text",
177
- onclick: function(){
178
- editor.insertContent('[wpmem_login_link]Link Text[/wpmem_login_link]');
179
- }
180
- },
181
- {
182
- text: "|"
183
- },
184
- {
185
- text: "register link",
186
- onclick: function(){
187
- editor.insertContent('[wpmem_reg_link]');
188
- }
189
- },
190
- {
191
- text: "register link + custom link text",
192
- onclick: function(){
193
- editor.insertContent('[wpmem_reg_link]Link Text[/wpmem_reg_link]');
194
- }
195
- }
196
- ]
197
- },
198
- {
199
- text: 'User Fields',
200
- onclick: function(){
201
- editor.insertContent('[wpmem_field field=user_login]');
202
- }
203
- },
204
- {
205
- text: 'User Count',
206
- onclick: function(){
207
- editor.insertContent('[wpmem_show_count label="Active Users: " key=active value=1]');
208
- }
209
- },
210
- {
211
- text: 'User Avatar',
212
- onclick: function(){
213
- editor.insertContent('[wpmem_avatar]');
214
- }
215
- },
216
- ]
217
- }
218
- });
219
- };
220
-
221
- tinymce.PluginManager.add( "wpmem_shortcodes", wcShortcodeManager );
222
- })();
1
+ (function () {
2
+ "use strict";
3
+
4
+ var wcShortcodeManager = function(editor, url) {
5
+ var wcDummyContent = 'Sample Content';
6
+ var wcParagraphContent = '<p>Sample Content</p>';
7
+
8
+
9
+ editor.addButton('wpmem_shortcodes_button', function() {
10
+ return {
11
+ title: "WP-Members Shortcodes",
12
+ tooltip: "WP-Members Shortcodes",
13
+ icon: "user",
14
+ type: 'menubutton',
15
+ icons: false,
16
+ menu: [
17
+ {
18
+ text: 'WP-Members Shortcodes',
19
+ },
20
+ {
21
+ text: 'Login Forms',
22
+ menu: [
23
+ {
24
+ text: "basic login",
25
+ onclick: function(){
26
+ editor.insertContent('[wpmem_form login]');
27
+ }
28
+ },
29
+ {
30
+ text: "login + redirect",
31
+ onclick: function(){
32
+ editor.insertContent('[wpmem_form login redirect_to="https://mysite.com/my-page/"]');
33
+ }
34
+ },
35
+ {
36
+ text: "login + logged in content",
37
+ onclick: function(){
38
+ editor.insertContent('[wpmem_form login]<br />This displays when logged in<br />[/wpmem_form]');
39
+ }
40
+ },
41
+ {
42
+ text: "login + redirect + content",
43
+ onclick: function(){
44
+ editor.insertContent('[wpmem_form login redirect_to="https://mysite.com/my-page/"]<br />This displays when logged in<br />[/wpmem_form]');
45
+ }
46
+ },
47
+ ]
48
+ },
49
+ {
50
+ text: 'Registration Forms',
51
+ menu: [
52
+ {
53
+ text: "basic registration",
54
+ onclick: function(){
55
+ editor.insertContent('[wpmem_form register]');
56
+ }
57
+ },
58
+ {
59
+ text: "registration + redirect",
60
+ onclick: function(){
61
+ editor.insertContent('[wpmem_form register redirect_to="https://mysite.com/my-page/"]');
62
+ }
63
+ },
64
+ {
65
+ text: "registration + logged in content",
66
+ onclick: function(){
67
+ editor.insertContent('[wpmem_form register]<br />This displays when logged in<br />[/wpmem_form]');
68
+ }
69
+ },
70
+ {
71
+ text: "registration + redirect + content",
72
+ onclick: function(){
73
+ editor.insertContent('[wpmem_form register redirect_to="https://mysite.com/my-page/"]<br />This displays when logged in<br />[/wpmem_form]');
74
+ }
75
+ },
76
+ ]
77
+ },
78
+ {
79
+ text: 'User Profile',
80
+ menu: [
81
+ {
82
+ text: "User Profile Page",
83
+ onclick: function(){
84
+ editor.insertContent('[wpmem_profile]');
85
+ }
86
+ },
87
+ {
88
+ text: "|"
89
+ },
90
+ {
91
+ text: "Individual Components (optional):"
92
+ },
93
+ {
94
+ text: "Password Reset/Change",
95
+ onclick: function(){
96
+ editor.insertContent('[wpmem_form password]');
97
+ }
98
+ },
99
+ {
100
+ text: "Password Reset Only",
101
+ onclick: function(){
102
+ editor.insertContent('[wpmem_logged_out][wpmem_form password][/wpmem_logged_out]');
103
+ }
104
+ },
105
+ {
106
+ text: "Password Change Only",
107
+ onclick: function(){
108
+ editor.insertContent('[wpmem_logged_in][wpmem_form password][/wpmem_logged_in]');
109
+ }
110
+ },
111
+ {
112
+ text: "User Data Edit",
113
+ onclick: function(){
114
+ editor.insertContent('[wpmem_logged_in][wpmem_form user_edit][/wpmem_logged_in]');
115
+ }
116
+ },
117
+ {
118
+ text: "Forgot Username",
119
+ onclick: function(){
120
+ editor.insertContent('[wpmem_logged_out][wpmem_form forgot_username][/wpmem_logged_out]');
121
+ }
122
+ },
123
+ ]
124
+ },
125
+ {
126
+ text: 'Content Restriction',
127
+ menu: [
128
+ {
129
+ text: "logged in content",
130
+ onclick: function(){
131
+ editor.insertContent('[wpmem_logged_in]<br />This displays when logged in<br />[/wpmem_logged_in]');
132
+ }
133
+ },
134
+ {
135
+ text: "logged out content",
136
+ onclick: function(){
137
+ editor.insertContent('[wpmem_logged_out]<br />This displays when logged out<br />[/wpmem_logged_out]');
138
+ }
139
+ },
140
+ ]
141
+ },
142
+ {
143
+ text: 'Links',
144
+ menu: [
145
+ {
146
+ text: "log in/log out link",
147
+ onclick: function(){
148
+ editor.insertContent('[wpmem_loginout]');
149
+ }
150
+ },
151
+ {
152
+ text: "|"
153
+ },
154
+ {
155
+ text: "basic logout link",
156
+ onclick: function(){
157
+ editor.insertContent('[wpmem_logout]');
158
+ }
159
+ },
160
+ {
161
+ text: "logout link + custom link text",
162
+ onclick: function(){
163
+ editor.insertContent('[wpmem_logout]This the link text[/wpmem_logout]');
164
+ }
165
+ },
166
+ {
167
+ text: "|"
168
+ },
169
+ {
170
+ text: "log in link",
171
+ onclick: function(){
172
+ editor.insertContent('[wpmem_login_link]');
173
+ }
174
+ },
175
+ {
176
+ text: "log in link + custom link text",
177
+ onclick: function(){
178
+ editor.insertContent('[wpmem_login_link]Link Text[/wpmem_login_link]');
179
+ }
180
+ },
181
+ {
182
+ text: "|"
183
+ },
184
+ {
185
+ text: "register link",
186
+ onclick: function(){
187
+ editor.insertContent('[wpmem_reg_link]');
188
+ }
189
+ },
190
+ {
191
+ text: "register link + custom link text",
192
+ onclick: function(){
193
+ editor.insertContent('[wpmem_reg_link]Link Text[/wpmem_reg_link]');
194
+ }
195
+ }
196
+ ]
197
+ },
198
+ {
199
+ text: 'User Fields',
200
+ onclick: function(){
201
+ editor.insertContent('[wpmem_field field=user_login]');
202
+ }
203
+ },
204
+ {
205
+ text: 'User Count',
206
+ onclick: function(){
207
+ editor.insertContent('[wpmem_show_count label="Active Users: " key=active value=1]');
208
+ }
209
+ },
210
+ {
211
+ text: 'User Avatar',
212
+ onclick: function(){
213
+ editor.insertContent('[wpmem_avatar]');
214
+ }
215
+ },
216
+ ]
217
+ }
218
+ });
219
+ };
220
+
221
+ tinymce.PluginManager.add( "wpmem_shortcodes", wcShortcodeManager );
222
+ })();
i18n/languages/wp-members-ca_CA.mo CHANGED
Binary file
i18n/languages/wp-members-ca_CA.po CHANGED
@@ -1,2065 +1,2372 @@
1
- # Copyright (C) 2010 WP-Members
2
- # This file is distributed under the same license as the WP-Members package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP-Members 3.2.6\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
8
- "PO-Revision-Date: 2019-04-02 09:51-0400\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: ca_CA\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: .\n"
17
- "X-Generator: Poedit 2.2.1\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-SearchPath-0: /home/aure/raid/www/wordpress_31RC2_coitcv/wp-content/"
20
- "plugins/wp-members\n"
21
-
22
- #: admin/dialogs.php:116
23
- msgid ""
24
- "Your WP settings allow anyone to register - this is not the recommended "
25
- "setting."
26
- msgstr ""
27
- "La seva configuració de WP permet que qualsevol persona pugui registrar-se, "
28
- "això no és el més recomenat. "
29
-
30
- #: admin/dialogs.php:117
31
- #, php-format
32
- msgid ""
33
- "You can %s change this here %s making sure the box next to \"Anyone can "
34
- "register\" is unchecked."
35
- msgstr ""
36
- "Pot %s canviar això aquí %s revistant la casella \"Qualsevol pot registrar-se"
37
- "\" està demercada."
38
-
39
- #: admin/dialogs.php:118
40
- msgid ""
41
- "This setting allows a link on the /wp-login.php page to register using the "
42
- "WP native registration process thus circumventing any registration you are "
43
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
44
- "but most users should uncheck this option. If you do not change this "
45
- "setting, you can choose to ignore these warning messages under WP-Members "
46
- "Settings."
47
- msgstr ""
48
- "La configuració permet un enllaç a /wp-login.php per registra-se usant el "
49
- "procés WP i així eludir qualsevol registre que utilitzem amb WP-Members. En "
50
- "alguns casos, pot ser útil, però la majoria de vegades aquesta opció ha "
51
- "d'estar desactivada. Si decideix deixar la configuració aixó, pot escollir "
52
- "ignorar els missatges d'alerta en la configuració de WP-Members."
53
-
54
- #: admin/dialogs.php:122
55
- msgid ""
56
- "Your WP settings allow anyone to comment - this is not the recommended "
57
- "setting."
58
- msgstr ""
59
- "La seva configuració de WP permet a qualsevol fer comentaris, això no és el "
60
- "més recomenat. "
61
-
62
- #: admin/dialogs.php:123
63
- #, php-format
64
- msgid ""
65
- "You can %s change this here %s by checking the box next to \"Users must be "
66
- "registered and logged in to comment.\""
67
- msgstr ""
68
- "Pot %s canviar %s això marcant la casella al costat de \"Els usuaris han "
69
- "d'estar registrats i connectats per fer comentaris.\""
70
-
71
- #: admin/dialogs.php:124
72
- msgid ""
73
- "This setting allows any users to comment, whether or not they are "
74
- "registered. Depending on how you are using WP-Members will determine whether "
75
- "you should change this setting or not. If you do not change this setting, "
76
- "you can choose to ignore these warning messages under WP-Members Settings."
77
- msgstr ""
78
- "Aquesta condició permet a qualsevol usuari comentar, estigui o no registrat. "
79
- "Depenen de com estigui usant el WP-Members haurà de canviar aquesta opció. "
80
- "Si decideix deixar la configuració així, pot marcar \"ignorar els missatges "
81
- "d'alerta en el panell la configuració de WP-Members."
82
-
83
- #: admin/dialogs.php:128
84
- msgid ""
85
- "Your WP settings allow full text rss feeds - this is not the recommended "
86
- "setting."
87
- msgstr ""
88
- "La teva configuració de WP permet textos complets en el canal RSS, això no "
89
- "és el més recomenat."
90
-
91
- #: admin/dialogs.php:129
92
- #, php-format
93
- msgid ""
94
- "You can %s change this here %s by changing \"For each article in a feed, show"
95
- "\" to \"Summary.\""
96
- msgstr ""
97
- "Pots %s canviar això aquí %s per canviar-ho \"Per a cada article en una "
98
- "font , mostra\" el \"Resum.\""
99
-
100
- #: admin/dialogs.php:130
101
- msgid ""
102
- "Leaving this set to full text allows anyone to read your protected content "
103
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
104
- "only show summary text."
105
- msgstr ""
106
- "Deixant l'opció a text complet permet a qualsevol llegir el text del seu "
107
- "contingut protegit amb un lector de RSS. Canviar això evita aquesta "
108
- "possibilitat."
109
-
110
- #: admin/dialogs.php:134
111
- msgid "You have set WP-Members to hold registrations for approval"
112
- msgstr ""
113
- "Ha configurat WP-Members perquè els nous registres estiguin retinguts fins "
114
- "que siguin aprovats. "
115
-
116
- #: admin/dialogs.php:135
117
- msgid ""
118
- "but you have not changed the default message for \"Registration Completed\" "
119
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
120
- "message to let users know they are pending approval."
121
- msgstr ""
122
- "però no ha canviat el missatge per defecte per \"Registre Complet\" a \"WP-"
123
- "Members Diàlegs i Missatges d'Error.\" Heu de canviar aquest missatge perquè "
124
- "els usuaris sàpiguen que estan pendents d'aprovació."
125
-
126
- #: admin/dialogs.php:139
127
- msgid "You have turned on reCAPTCHA"
128
- msgstr "Ha activat reCAPTCHA, el sistema per prevenir registres falsos."
129
-
130
- #: admin/dialogs.php:140
131
- msgid ""
132
- "but you have not entered API keys. You will need both a public and private "
133
- "key. The CAPTCHA will not display unless a valid API key is included."
134
- msgstr ""
135
- "però no ha introduit les claus API. Necessitaràs una clau pública i privada. "
136
- "El CAPTCHA no es mostrarà si no es mostra una clau API vàlida."
137
-
138
- #: admin/dialogs.php:144
139
- msgid "You have active settings that are not recommended."
140
- msgstr ""
141
-
142
- #: admin/dialogs.php:145
143
- msgid ""
144
- "If you will not be changing these settings, you can turn off these warning "
145
- "messages by checking the \"Ignore warning messages\" in the settings below."
146
- msgstr ""
147
-
148
- #: admin/dialogs.php:169
149
- msgid "Version:"
150
- msgstr "Versió:"
151
-
152
- #: admin/dialogs.php:170
153
- msgid "Quick Start Guide"
154
- msgstr ""
155
-
156
- #: admin/dialogs.php:171
157
- msgid "Online User Guide"
158
- msgstr ""
159
-
160
- #: admin/dialogs.php:172
161
- msgid "FAQs"
162
- msgstr ""
163
-
164
- #: admin/dialogs.php:179
165
- msgid "Thank you for using WP-Members"
166
- msgstr "Gràcies per utilitzar WP-Members"
167
-
168
- #: admin/dialogs.php:180
169
- msgid "A plugin developed by"
170
- msgstr ""
171
-
172
- #: admin/dialogs.php:181
173
- msgid "Follow"
174
- msgstr "Continuar:"
175
-
176
- #: admin/dialogs.php:198 admin/dialogs.php:202
177
- msgid "Latest from RocketGeek"
178
- msgstr ""
179
-
180
- #: admin/dialogs.php:219
181
- msgid "Like WP-Members?"
182
- msgstr ""
183
-
184
- #: admin/dialogs.php:220
185
- #, php-format
186
- msgid ""
187
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
188
- "%s rating. Thanks!!"
189
- msgstr ""
190
-
191
- #: admin/dialogs.php:231 admin/dialogs.php:244
192
- msgid "Latest from ButlerBlog"
193
- msgstr ""
194
-
195
- #: admin/includes/class-wp-members-admin-api.php:256
196
- msgid "Custom email"
197
- msgstr ""
198
-
199
- #: admin/includes/class-wp-members-admin-api.php:257
200
- #: admin/includes/class-wp-members-admin-api.php:259
201
- msgid "Subject"
202
- msgstr "Assumpte"
203
-
204
- #: admin/includes/class-wp-members-admin-api.php:260
205
- msgid "Body"
206
- msgstr "Cos"
207
-
208
- #: admin/includes/class-wp-members-admin-api.php:262
209
- msgid "Your custom email message content."
210
- msgstr ""
211
-
212
- #: admin/includes/class-wp-members-admin-api.php:340
213
- msgid "Options"
214
- msgstr "Opcions"
215
-
216
- #: admin/includes/class-wp-members-admin-api.php:341
217
- msgid "Fields"
218
- msgstr "Camps"
219
-
220
- #: admin/includes/class-wp-members-admin-api.php:342
221
- msgid "Dialogs"
222
- msgstr "Diàlegs"
223
-
224
- #: admin/includes/class-wp-members-admin-api.php:343
225
- msgid "Emails"
226
- msgstr "Emails"
227
-
228
- #: admin/includes/class-wp-members-admin-api.php:359
229
- msgid "New Registration"
230
- msgstr "Nou registre"
231
-
232
- #: admin/includes/class-wp-members-admin-api.php:368
233
- msgid "Registration is Moderated"
234
- msgstr "Registre complet"
235
-
236
- #: admin/includes/class-wp-members-admin-api.php:374
237
- msgid "Registration is Moderated, User is Approved"
238
- msgstr "El seu registre ha estat aprovat"
239
-
240
- #: admin/includes/class-wp-members-admin-api.php:382
241
- msgid "Password Reset"
242
- msgstr "Contrasenya reiniciada"
243
-
244
- #: admin/includes/class-wp-members-admin-api.php:389
245
- msgid "Retrieve Username"
246
- msgstr ""
247
-
248
- #: admin/includes/class-wp-members-admin-api.php:397
249
- msgid "Admin Notification"
250
- msgstr "Notificació de l'administrador"
251
-
252
- #: admin/includes/class-wp-members-admin-api.php:423
253
- msgid "Restricted post (or page), displays above the login/registration form"
254
- msgstr ""
255
- "Les entrades (o pàgines) bloquejades mostren sempre el formulari "
256
- "d'identificació/registre"
257
-
258
- #: admin/includes/class-wp-members-admin-api.php:424
259
- msgid "Username is taken"
260
- msgstr "El nom d'usuari ja està en ús"
261
-
262
- #: admin/includes/class-wp-members-admin-api.php:425
263
- msgid "Email is registered"
264
- msgstr "L'email ja està registrat"
265
-
266
- #: admin/includes/class-wp-members-admin-api.php:426
267
- msgid "Registration completed"
268
- msgstr "Registre complet"
269
-
270
- #: admin/includes/class-wp-members-admin-api.php:427
271
- msgid "User update"
272
- msgstr "Actualitza l'usuari"
273
-
274
- #: admin/includes/class-wp-members-admin-api.php:428
275
- msgid "Passwords did not match"
276
- msgstr "Les contrasenyes no coincideixen"
277
-
278
- #: admin/includes/class-wp-members-admin-api.php:429
279
- msgid "Password changes"
280
- msgstr "Canvi de contrasenya"
281
-
282
- #: admin/includes/class-wp-members-admin-api.php:430
283
- msgid "Username or email do not exist when trying to reset forgotten password"
284
- msgstr ""
285
- "L'usuari o email no existeixen quan intentem restablir la contrasenya "
286
- "oblidada "
287
-
288
- #: admin/includes/class-wp-members-admin-api.php:431
289
- msgid "Password reset"
290
- msgstr "Contrasenya restablerta"
291
-
292
- #: admin/includes/class-wp-members-admin-api.php:564
293
- msgid "Settings"
294
- msgstr "Preferències"
295
-
296
- #: admin/includes/class-wp-members-products-admin.php:57
297
- msgid "Slug"
298
- msgstr ""
299
-
300
- #: admin/includes/class-wp-members-products-admin.php:58
301
- msgid "Role"
302
- msgstr ""
303
-
304
- #: admin/includes/class-wp-members-products-admin.php:59
305
- #: admin/includes/class-wp-members-products-admin.php:162
306
- #: admin/tab-fields.php:459 admin/user-export.php:69
307
- msgid "Expires"
308
- msgstr "Expira"
309
-
310
- #: admin/includes/class-wp-members-products-admin.php:60
311
- msgid "Last updated"
312
- msgstr ""
313
-
314
- #: admin/includes/class-wp-members-products-admin.php:80
315
- msgid "No role required"
316
- msgstr ""
317
-
318
- #: admin/includes/class-wp-members-products-admin.php:84
319
- msgid "Does not expire"
320
- msgstr ""
321
-
322
- #: admin/includes/class-wp-members-products-admin.php:120
323
- msgid "Membership Product Details"
324
- msgstr ""
325
-
326
- #: admin/includes/class-wp-members-products-admin.php:142
327
- #: admin/includes/class-wp-members-products-admin.php:167
328
- msgid "Period"
329
- msgstr ""
330
-
331
- #: admin/includes/class-wp-members-products-admin.php:142
332
- msgid "Day"
333
- msgstr ""
334
-
335
- #: admin/includes/class-wp-members-products-admin.php:142
336
- msgid "Week"
337
- msgstr ""
338
-
339
- #: admin/includes/class-wp-members-products-admin.php:142
340
- msgid "Month"
341
- msgstr ""
342
-
343
- #: admin/includes/class-wp-members-products-admin.php:142
344
- msgid "Year"
345
- msgstr ""
346
-
347
- #: admin/includes/class-wp-members-products-admin.php:148
348
- msgid "Name (slug)"
349
- msgstr ""
350
-
351
- #: admin/includes/class-wp-members-products-admin.php:153
352
- msgid "Role Required?"
353
- msgstr ""
354
-
355
- #: admin/includes/class-wp-members-products-admin.php:156
356
- msgid "No Role"
357
- msgstr ""
358
-
359
- #: admin/includes/class-wp-members-products-admin.php:164
360
- #: admin/includes/class-wp-members-products-admin.php:166
361
- msgid "Number"
362
- msgstr ""
363
-
364
- #: admin/includes/class-wp-members-products-admin.php:245
365
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
366
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
367
- #: inc/deprecated.php:622
368
- msgid "None"
369
- msgstr ""
370
-
371
- #: admin/includes/class-wp-members-products-admin.php:251
372
- msgid "Limit access to:"
373
- msgstr ""
374
-
375
- #: admin/includes/class-wp-members-products-admin.php:321
376
- msgid "Required Membership"
377
- msgstr ""
378
-
379
- #: admin/includes/class-wp-members-products-admin.php:360
380
- msgid "Membership"
381
- msgstr ""
382
-
383
- #: admin/post.php:45 admin/post.php:48
384
- msgid "Unblock"
385
- msgstr ""
386
-
387
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
388
- msgid "Block"
389
- msgstr "Bloquejar"
390
-
391
- #: admin/post.php:47 admin/post.php:50
392
- msgid "Hide"
393
- msgstr ""
394
-
395
- #: admin/post.php:138
396
- #, php-format
397
- msgid "%s blocked"
398
- msgstr ""
399
-
400
- #: admin/post.php:138
401
- #, php-format
402
- msgid "%s unblocked"
403
- msgstr ""
404
-
405
- #: admin/post.php:177
406
- #, php-format
407
- msgid "%s Restriction"
408
- msgstr ""
409
-
410
- #: admin/post.php:206
411
- msgid "Unblocked"
412
- msgstr ""
413
-
414
- #: admin/post.php:207
415
- msgid "Blocked"
416
- msgstr ""
417
-
418
- #: admin/post.php:208
419
- msgid "Hidden"
420
- msgstr ""
421
-
422
- #: admin/post.php:214
423
- msgid "Status:"
424
- msgstr ""
425
-
426
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
427
- msgid "Edit"
428
- msgstr ""
429
-
430
- #: admin/post.php:229
431
- msgid "Ok"
432
- msgstr ""
433
-
434
- #: admin/post.php:230
435
- msgid "Cancel"
436
- msgstr ""
437
-
438
- #: admin/post.php:314
439
- msgid "Status"
440
- msgstr ""
441
-
442
- #: admin/tab-about.php:34 admin/tab-about.php:54
443
- msgid "About WP-Members"
444
- msgstr ""
445
-
446
- #: admin/tab-captcha.php:66
447
- #, php-format
448
- msgid "See the %sUsers Guide on CAPTCHA%s."
449
- msgstr ""
450
-
451
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
452
- #: admin/tab-fields.php:153 admin/tab-options.php:82
453
- msgid "Need help?"
454
- msgstr ""
455
-
456
- #: admin/tab-captcha.php:84
457
- msgid "Manage reCAPTCHA Options"
458
- msgstr "Gestionar les opcions de reCAPTCHA"
459
-
460
- #: admin/tab-captcha.php:98
461
- msgid ""
462
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
463
- "while blocking spam on your blog."
464
- msgstr ""
465
- "reCAPTCHA és un servei gratuit i accessible que ajuda als registres digitals "
466
- "mentre bloqueja el spam del seu blog."
467
-
468
- #: admin/tab-captcha.php:99
469
- #, php-format
470
- msgid ""
471
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
472
- "that they are a human. This verifies that they are not a spambot while also "
473
- "correcting the automatic scans of old books. So you get less spam, and the "
474
- "world gets accurately digitized books. Everybody wins! For details, visit "
475
- "the %s reCAPTCHA website%s"
476
- msgstr ""
477
- "reCAPTCHA pregunta als usuaris una clau de dues paraules mostrades en una "
478
- "imatge com a prova de que som humans. Això verifica que no som robots de "
479
- "spam inscrivint-nos automàticament. Així s'aconseguirà menys spam i més "
480
- "exactitud en els registres. Tothom hi guanya! Per a més informació, visiteu "
481
- "el %s lloc web de reCAPTCHA %s"
482
-
483
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
484
- msgid "reCAPTCHA Keys"
485
- msgstr "Claus de reCAPTCHA"
486
-
487
- #: admin/tab-captcha.php:106
488
- #, php-format
489
- msgid ""
490
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
491
- "key. You can sign up for a %s free reCAPTCHA key%s"
492
- msgstr ""
493
- "reCAPTCHA requereix una clau d'encriptació pública y privada. Pot apuntar-se "
494
- "per %s per aconseguir claus gratuïtes%s."
495
-
496
- #: admin/tab-captcha.php:107
497
- msgid "Public Key"
498
- msgstr "Clau pública"
499
-
500
- #: admin/tab-captcha.php:108
501
- msgid "Private Key"
502
- msgstr "Clau privada"
503
-
504
- #: admin/tab-captcha.php:112
505
- msgid "Choose Theme"
506
- msgstr "Escull el tema"
507
-
508
- #: admin/tab-captcha.php:115
509
- msgid "Red"
510
- msgstr "Vermell"
511
-
512
- #: admin/tab-captcha.php:116
513
- msgid "White"
514
- msgstr "Blanc"
515
-
516
- #: admin/tab-captcha.php:117
517
- msgid "Black Glass"
518
- msgstr "Negre cristall"
519
-
520
- #: admin/tab-captcha.php:118
521
- msgid "Clean"
522
- msgstr "Clar"
523
-
524
- #: admin/tab-captcha.php:132
525
- #, php-format
526
- msgid ""
527
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
528
- "key. You can sign up for a %s free reCAPTCHA key%s"
529
- msgstr ""
530
-
531
- #: admin/tab-captcha.php:133
532
- msgid "Site Key"
533
- msgstr ""
534
-
535
- #: admin/tab-captcha.php:134
536
- msgid "Secret Key"
537
- msgstr ""
538
-
539
- #: admin/tab-captcha.php:165
540
- msgid "Characters for image"
541
- msgstr ""
542
-
543
- #: admin/tab-captcha.php:169
544
- msgid "Number of characters"
545
- msgstr ""
546
-
547
- #: admin/tab-captcha.php:173
548
- msgid "Image dimensions"
549
- msgstr ""
550
-
551
- #: admin/tab-captcha.php:174
552
- msgid "Width"
553
- msgstr ""
554
-
555
- #: admin/tab-captcha.php:174
556
- msgid "Height"
557
- msgstr ""
558
-
559
- #: admin/tab-captcha.php:177
560
- msgid "Font color of characters"
561
- msgstr ""
562
-
563
- #: admin/tab-captcha.php:181
564
- msgid "Background color of image"
565
- msgstr ""
566
-
567
- #: admin/tab-captcha.php:185
568
- msgid "Font size"
569
- msgstr ""
570
-
571
- #: admin/tab-captcha.php:189
572
- msgid "Width between characters"
573
- msgstr ""
574
-
575
- #: admin/tab-captcha.php:193
576
- msgid "Image type"
577
- msgstr "Tipus d'Imatge"
578
-
579
- #: admin/tab-captcha.php:207
580
- msgid ""
581
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
582
- "installed and activated."
583
- msgstr ""
584
-
585
- #: admin/tab-captcha.php:231
586
- msgid "Update CAPTCHA Settings"
587
- msgstr "Actualizar configuració de CAPTCHA"
588
-
589
- #: admin/tab-captcha.php:301
590
- msgid "CAPTCHA was updated for WP-Members"
591
- msgstr "CAPTCHA s'ha actualitzat per WP-Members"
592
-
593
- #: admin/tab-dialogs.php:67
594
- msgid "Dialogs and Error Messages"
595
- msgstr "Diàlegs i missatges d'error"
596
-
597
- #: admin/tab-dialogs.php:69
598
- #, php-format
599
- msgid ""
600
- "You can customize the text for dialogs and error messages. Simple HTML is "
601
- "allowed %s etc."
602
- msgstr ""
603
- "Pot personalitzar els textes pels diàlegs i els missatges d'error. Es permet "
604
- "HTML simple %s etc."
605
-
606
- #: admin/tab-dialogs.php:80
607
- msgid "Terms of Service (TOS)"
608
- msgstr "Condicions d'ús"
609
-
610
- #: admin/tab-dialogs.php:87
611
- msgid "Update Dialogs"
612
- msgstr "Actualitza els diàlegs"
613
-
614
- #: admin/tab-dialogs.php:123
615
- msgid "WP-Members dialogs were updated"
616
- msgstr "Els diàlegs de WP-Members s'han actualitzat"
617
-
618
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
619
- msgid "WP-Members Dropin settings were updated"
620
- msgstr ""
621
-
622
- #: admin/tab-dropins.php:204
623
- msgid "Manage Dropins"
624
- msgstr ""
625
-
626
- #: admin/tab-dropins.php:205
627
- msgid "Current dropin folder: "
628
- msgstr ""
629
-
630
- #: admin/tab-dropins.php:206
631
- msgid ""
632
- "You can change location of the dropin folder using the "
633
- "<code>wpmem_dropin_folder</code> filter."
634
- msgstr ""
635
-
636
- #: admin/tab-dropins.php:269
637
- msgid "Name"
638
- msgstr ""
639
-
640
- #: admin/tab-dropins.php:270
641
- msgid "File"
642
- msgstr ""
643
-
644
- #: admin/tab-dropins.php:271
645
- msgid "Version"
646
- msgstr ""
647
-
648
- #: admin/tab-dropins.php:272
649
- msgid "Description"
650
- msgstr ""
651
-
652
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
653
- msgid "Save Settings"
654
- msgstr ""
655
-
656
- #: admin/tab-emails.php:58
657
- msgid "Email Messages"
658
- msgstr "Missatges d'email"
659
-
660
- #: admin/tab-emails.php:61
661
- msgid "You can customize the content of the emails sent by the plugin."
662
- msgstr "Pots personalitzar el contingut dels emails enviats per el plugin."
663
-
664
- #: admin/tab-emails.php:63
665
- msgid "A list of shortcodes is available here."
666
- msgstr "En aquesta pàgina podeu trobar una llista de codis."
667
-
668
- #: admin/tab-emails.php:70
669
- msgid "Set a custom email address"
670
- msgstr "Configureu una adreça de correu electrònic personalitzada"
671
-
672
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
673
- #: admin/tab-fields.php:179
674
- msgid "(optional)"
675
- msgstr "(opcional)"
676
-
677
- #: admin/tab-emails.php:74
678
- msgid "Set a custom email name"
679
- msgstr "Establiu un nom de correu electrònic personalitzat"
680
-
681
- #: admin/tab-emails.php:85
682
- msgid "Email Signature"
683
- msgstr "Signatura email"
684
-
685
- #: admin/tab-emails.php:93
686
- msgid "Update Emails"
687
- msgstr "Actualizar emails"
688
-
689
- #: admin/tab-emails.php:161
690
- msgid "WP-Members emails were updated"
691
- msgstr "Els emails de WP-Members s'han actualitzat"
692
-
693
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
694
- msgid "No fields selected for deletion"
695
- msgstr ""
696
-
697
- #: admin/tab-fields.php:115
698
- msgid "Are you sure you want to delete the following fields?"
699
- msgstr ""
700
-
701
- #: admin/tab-fields.php:141
702
- msgid "Fields deleted"
703
- msgstr ""
704
-
705
- #: admin/tab-fields.php:155
706
- msgid "Field Manager Documentation"
707
- msgstr ""
708
-
709
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
710
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
711
- #: inc/deprecated.php:646 inc/wp-registration.php:57
712
- #: inc/wp-registration.php:231
713
- msgid "(required)"
714
- msgstr "(requerit)"
715
-
716
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
717
- msgid "Edit Field"
718
- msgstr "Edita Camp"
719
-
720
- #: admin/tab-fields.php:185
721
- msgid "Add a Field"
722
- msgstr "Afegir un camp"
723
-
724
- #: admin/tab-fields.php:190
725
- msgid "Field Label"
726
- msgstr "Etiqueta del camp"
727
-
728
- #: admin/tab-fields.php:192
729
- msgid "The name of the field as it will be displayed to the user."
730
- msgstr ""
731
-
732
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
733
- msgid "Meta Key"
734
- msgstr ""
735
-
736
- #: admin/tab-fields.php:201
737
- msgid ""
738
- "The database meta value for the field. It must be unique and contain no "
739
- "spaces (underscores are ok)."
740
- msgstr ""
741
-
742
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
743
- msgid "Field Type"
744
- msgstr "Tipus de camp"
745
-
746
- #: admin/tab-fields.php:211
747
- msgid "text"
748
- msgstr "text"
749
-
750
- #: admin/tab-fields.php:212
751
- msgid "email"
752
- msgstr ""
753
-
754
- #: admin/tab-fields.php:213
755
- msgid "textarea"
756
- msgstr "àrea de text"
757
-
758
- #: admin/tab-fields.php:214
759
- msgid "checkbox"
760
- msgstr "checkbox"
761
-
762
- #: admin/tab-fields.php:215
763
- msgid "multiple checkbox"
764
- msgstr ""
765
-
766
- #: admin/tab-fields.php:216
767
- msgid "select (dropdown)"
768
- msgstr ""
769
-
770
- #: admin/tab-fields.php:217
771
- msgid "multiple select"
772
- msgstr ""
773
-
774
- #: admin/tab-fields.php:218
775
- msgid "radio group"
776
- msgstr ""
777
-
778
- #: admin/tab-fields.php:219
779
- msgid "password"
780
- msgstr "Contrasenya "
781
-
782
- #: admin/tab-fields.php:220
783
- msgid "image"
784
- msgstr ""
785
-
786
- #: admin/tab-fields.php:221
787
- msgid "file"
788
- msgstr ""
789
-
790
- #: admin/tab-fields.php:222
791
- msgid "url"
792
- msgstr ""
793
-
794
- #: admin/tab-fields.php:223
795
- msgid "number"
796
- msgstr ""
797
-
798
- #: admin/tab-fields.php:224
799
- msgid "date"
800
- msgstr ""
801
-
802
- #: admin/tab-fields.php:225
803
- msgid "hidden"
804
- msgstr ""
805
-
806
- #: admin/tab-fields.php:227
807
- msgid "membership"
808
- msgstr ""
809
-
810
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
811
- msgid "Display?"
812
- msgstr "Mostrar?"
813
-
814
- #: admin/tab-fields.php:237
815
- msgid "This field is always displayed"
816
- msgstr ""
817
-
818
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
819
- msgid "Required?"
820
- msgstr "Obligatori?"
821
-
822
- #: admin/tab-fields.php:246
823
- msgid "This field is always required"
824
- msgstr ""
825
-
826
- #: admin/tab-fields.php:252
827
- msgid "Allow HTML?"
828
- msgstr ""
829
-
830
- #: admin/tab-fields.php:259
831
- msgid "Placeholder"
832
- msgstr ""
833
-
834
- #: admin/tab-fields.php:267
835
- msgid "Pattern"
836
- msgstr ""
837
-
838
- #: admin/tab-fields.php:273
839
- msgid "Title"
840
- msgstr ""
841
-
842
- #: admin/tab-fields.php:282
843
- msgid "Minimum Value"
844
- msgstr ""
845
-
846
- #: admin/tab-fields.php:286
847
- msgid "Maximum Value"
848
- msgstr ""
849
-
850
- #: admin/tab-fields.php:294
851
- msgid "Rows"
852
- msgstr ""
853
-
854
- #: admin/tab-fields.php:298
855
- msgid "Columns"
856
- msgstr ""
857
-
858
- #: admin/tab-fields.php:306
859
- msgid "Accepted file types:"
860
- msgstr ""
861
-
862
- #: admin/tab-fields.php:311
863
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
864
- msgstr ""
865
-
866
- #: admin/tab-fields.php:318
867
- msgid "Checked by default?"
868
- msgstr "Marcada per defecte?"
869
-
870
- #: admin/tab-fields.php:322
871
- msgid "Stored value if checked:"
872
- msgstr "Valor emmagatzemat si s'activa:"
873
-
874
- #: admin/tab-fields.php:343
875
- msgid "Stored values delimiter:"
876
- msgstr ""
877
-
878
- #: admin/tab-fields.php:352
879
- msgid "Values (Displayed|Stored):"
880
- msgstr ""
881
-
882
- #: admin/tab-fields.php:377
883
- msgid "Options should be Option Name|option_value,"
884
- msgstr "Les opcions han de ser Option Name|option_value,"
885
-
886
- #: admin/tab-fields.php:381
887
- msgid "Visit plugin site for more information"
888
- msgstr "Per a més informació visita la pàgina del plugin "
889
-
890
- #: admin/tab-fields.php:388
891
- msgid "Value"
892
- msgstr ""
893
-
894
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
895
- msgid "Add Field"
896
- msgstr "afegir camp"
897
-
898
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
899
- msgid "Return to Fields Table"
900
- msgstr ""
901
-
902
- #: admin/tab-fields.php:449
903
- msgid "Drag and drop to reorder fields"
904
- msgstr ""
905
-
906
- #: admin/tab-fields.php:455
907
- msgid "Registration Date"
908
- msgstr "Data de Registre"
909
-
910
- #: admin/tab-fields.php:456
911
- msgid "Active"
912
- msgstr "Activar"
913
-
914
- #: admin/tab-fields.php:457
915
- msgid "Registration IP"
916
- msgstr "Adreça IP"
917
-
918
- #: admin/tab-fields.php:458
919
- msgid "Subscription Type"
920
- msgstr ""
921
-
922
- #: admin/tab-fields.php:460 admin/user-export.php:58
923
- msgid "User ID"
924
- msgstr ""
925
-
926
- #: admin/tab-fields.php:493
927
- msgid "Manage Fields"
928
- msgstr "Gestionar camps"
929
-
930
- #: admin/tab-fields.php:532
931
- msgid "delete"
932
- msgstr ""
933
-
934
- #: admin/tab-fields.php:546
935
- msgid "Display Label"
936
- msgstr ""
937
-
938
- #: admin/tab-fields.php:552
939
- msgid "Users Screen"
940
- msgstr ""
941
-
942
- #: admin/tab-fields.php:553
943
- msgid "Users Search"
944
- msgstr ""
945
-
946
- #: admin/tab-fields.php:555
947
- msgid "Sort"
948
- msgstr ""
949
-
950
- #: admin/tab-fields.php:596
951
- msgid "Delete Selected"
952
- msgstr ""
953
-
954
- #: admin/tab-fields.php:738
955
- msgid "WP-Members fields were updated"
956
- msgstr "Els camps dels WP-Members s'han actualitzat"
957
-
958
- #: admin/tab-fields.php:760
959
- msgid "Field Label is required. Nothing was updated."
960
- msgstr ""
961
-
962
- #: admin/tab-fields.php:761
963
- msgid "Meta Key is required. Nothing was updated."
964
- msgstr ""
965
-
966
- #: admin/tab-fields.php:763
967
- msgid "Meta Key must contain only letters, numbers, and underscores"
968
- msgstr ""
969
-
970
- #: admin/tab-fields.php:770
971
- msgid "A field with that meta key already exists"
972
- msgstr ""
973
-
974
- #: admin/tab-fields.php:775
975
- #, php-format
976
- msgid ""
977
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
978
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
979
- "Field was not added."
980
- msgstr ""
981
-
982
- #: admin/tab-fields.php:816
983
- msgid "Checked value is required for checkboxes. Nothing was updated."
984
- msgstr ""
985
- "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha actualitzat."
986
-
987
- #: admin/tab-fields.php:847
988
- msgid "A value is required for hidden fields. Nothing was updated."
989
- msgstr ""
990
-
991
- #: admin/tab-fields.php:854
992
- #, php-format
993
- msgid "%s was added"
994
- msgstr ""
995
-
996
- #: admin/tab-fields.php:867
997
- #, php-format
998
- msgid "%s was updated"
999
- msgstr ""
1000
-
1001
- #: admin/tab-fields.php:909
1002
- msgid "Form field order updated."
1003
- msgstr ""
1004
-
1005
- #: admin/tab-options.php:60
1006
- #, php-format
1007
- msgid "%sChange%s or %sFilter%s this address"
1008
- msgstr ""
1009
-
1010
- #: admin/tab-options.php:61
1011
- #, php-format
1012
- msgid "See the %sUsers Guide on plugin options%s."
1013
- msgstr ""
1014
-
1015
- #: admin/tab-options.php:66
1016
- msgid "Posts"
1017
- msgstr ""
1018
-
1019
- #: admin/tab-options.php:67 admin/tab-options.php:215
1020
- msgid "Pages"
1021
- msgstr ""
1022
-
1023
- #: admin/tab-options.php:94
1024
- msgid "Manage Options"
1025
- msgstr "Configurar opcions"
1026
-
1027
- #: admin/tab-options.php:98
1028
- msgid "Content"
1029
- msgstr ""
1030
-
1031
- #: admin/tab-options.php:109
1032
- msgid "Content Blocking"
1033
- msgstr ""
1034
-
1035
- #: admin/tab-options.php:113
1036
- msgid "Do not block"
1037
- msgstr ""
1038
-
1039
- #: admin/tab-options.php:127
1040
- msgid "Show Excerpts"
1041
- msgstr ""
1042
-
1043
- #: admin/tab-options.php:128
1044
- msgid "Show Login Form"
1045
- msgstr ""
1046
-
1047
- #: admin/tab-options.php:129
1048
- msgid "Show Registration Form"
1049
- msgstr ""
1050
-
1051
- #: admin/tab-options.php:130
1052
- msgid "Auto Excerpt:"
1053
- msgstr "Acte Extracte:"
1054
-
1055
- #: admin/tab-options.php:152
1056
- msgid "Number of words in excerpt:"
1057
- msgstr ""
1058
-
1059
- #: admin/tab-options.php:153
1060
- msgid "Custom read more link (optional):"
1061
- msgstr ""
1062
-
1063
- #: admin/tab-options.php:167
1064
- msgid "Time-based expiration"
1065
- msgstr "Venciment en funció del temps"
1066
-
1067
- #: admin/tab-options.php:167
1068
- msgid "Allows for access to expire"
1069
- msgstr "Permet que l'accés expiri"
1070
-
1071
- #: admin/tab-options.php:168
1072
- msgid "Trial period"
1073
- msgstr "Període de prova"
1074
-
1075
- #: admin/tab-options.php:168
1076
- msgid "Allows for a trial period"
1077
- msgstr "Permet un període de prova"
1078
-
1079
- #: admin/tab-options.php:170
1080
- msgid "Subscription Settings"
1081
- msgstr ""
1082
-
1083
- #: admin/tab-options.php:180
1084
- msgid "Other Settings"
1085
- msgstr ""
1086
-
1087
- #: admin/tab-options.php:186
1088
- msgid "Enable Products"
1089
- msgstr ""
1090
-
1091
- #: admin/tab-options.php:186
1092
- msgid "Enables creation of different membership products"
1093
- msgstr ""
1094
-
1095
- #: admin/tab-options.php:187
1096
- msgid "Clone menus"
1097
- msgstr ""
1098
-
1099
- #: admin/tab-options.php:187
1100
- msgid "Enables logged in menus"
1101
- msgstr ""
1102
-
1103
- #: admin/tab-options.php:188
1104
- msgid "Notify admin"
1105
- msgstr "Notificar a l'administrador"
1106
-
1107
- #: admin/tab-options.php:188
1108
- #, php-format
1109
- msgid "Notify %s for each new registration? %s"
1110
- msgstr "Enviar un email a %s per a cada nou registre? %s"
1111
-
1112
- #: admin/tab-options.php:189
1113
- msgid "Moderate registration"
1114
- msgstr "Confirmar registre"
1115
-
1116
- #: admin/tab-options.php:189
1117
- msgid "Holds new registrations for admin approval"
1118
- msgstr "Els nous registres seran aprovats per l'administrador"
1119
-
1120
- #: admin/tab-options.php:190
1121
- msgid "Ignore warning messages"
1122
- msgstr "Ignorar missatges d'advertència"
1123
-
1124
- #: admin/tab-options.php:190
1125
- msgid "Ignores WP-Members warning messages in the admin panel"
1126
- msgstr "Ignorar missatges de perill de WP-Members en el panell d'administració"
1127
-
1128
- #: admin/tab-options.php:201
1129
- msgid "Attribution"
1130
- msgstr ""
1131
-
1132
- #: admin/tab-options.php:203
1133
- msgid ""
1134
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1135
- msgstr ""
1136
-
1137
- #: admin/tab-options.php:206
1138
- msgid "Enable CAPTCHA"
1139
- msgstr "Permetre CAPTCHA"
1140
-
1141
- #: admin/tab-options.php:211
1142
- msgid "reCAPTCHA"
1143
- msgstr ""
1144
-
1145
- #: admin/tab-options.php:212
1146
- msgid "Really Simple CAPTCHA"
1147
- msgstr ""
1148
-
1149
- #: admin/tab-options.php:219
1150
- msgid "Login Page:"
1151
- msgstr ""
1152
-
1153
- #: admin/tab-options.php:222
1154
- msgid "Specify a login page (optional)"
1155
- msgstr ""
1156
-
1157
- #: admin/tab-options.php:231
1158
- msgid "Register Page:"
1159
- msgstr "Registrar la URL de la pàgina"
1160
-
1161
- #: admin/tab-options.php:234
1162
- msgid "For creating a register link in the login form"
1163
- msgstr ""
1164
-
1165
- #: admin/tab-options.php:243
1166
- msgid "User Profile Page:"
1167
- msgstr "Fitxa d'usuari de la pàgina:"
1168
-
1169
- #: admin/tab-options.php:246
1170
- msgid "For creating a forgot password link in the login form"
1171
- msgstr ""
1172
-
1173
- #: admin/tab-options.php:252 admin/tab-options.php:254
1174
- msgid "Stylesheet"
1175
- msgstr ""
1176
-
1177
- #: admin/tab-options.php:263
1178
- msgid "Custom Stylesheet:"
1179
- msgstr ""
1180
-
1181
- #: admin/tab-options.php:268 admin/tab-options.php:295
1182
- msgid "Update Settings"
1183
- msgstr "Actualizar configuració"
1184
-
1185
- #: admin/tab-options.php:276
1186
- msgid "Custom Post Types"
1187
- msgstr ""
1188
-
1189
- #: admin/tab-options.php:282
1190
- msgid "Add to WP-Members Settings"
1191
- msgstr ""
1192
-
1193
- #: admin/tab-options.php:312
1194
- msgid "Close"
1195
- msgstr ""
1196
-
1197
- #: admin/tab-options.php:330 admin/tab-options.php:331
1198
- msgid "WP-Members Settings"
1199
- msgstr ""
1200
-
1201
- #: admin/tab-options.php:332
1202
- msgid ""
1203
- "The following is your WP-Members settings information if needed for support."
1204
- msgstr ""
1205
-
1206
- #: admin/tab-options.php:359
1207
- msgid "Click to Copy"
1208
- msgstr ""
1209
-
1210
- #: admin/tab-options.php:435
1211
- msgid "Custom Post Type settings were updated"
1212
- msgstr ""
1213
-
1214
- #: admin/tab-options.php:551
1215
- msgid "WP-Members settings were updated"
1216
- msgstr "La configuració de WP-Members s'ha actualitzat"
1217
-
1218
- #: admin/tab-options.php:621 admin/tab-options.php:651
1219
- msgid "USE CUSTOM URL BELOW"
1220
- msgstr ""
1221
-
1222
- #: admin/tab-options.php:640
1223
- msgid "Select a page"
1224
- msgstr ""
1225
-
1226
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1227
- #: inc/class-wp-members.php:1255
1228
- msgid "Username"
1229
- msgstr ""
1230
-
1231
- #: admin/user-export.php:65
1232
- msgid "Activated?"
1233
- msgstr "Activa?"
1234
-
1235
- #: admin/user-export.php:68 admin/users.php:317
1236
- msgid "Subscription"
1237
- msgstr "Subscripció"
1238
-
1239
- #: admin/user-export.php:71
1240
- msgid "Registered"
1241
- msgstr "Registrat"
1242
-
1243
- #: admin/user-export.php:72
1244
- msgid "IP"
1245
- msgstr "IP"
1246
-
1247
- #: admin/user-export.php:135
1248
- msgid "Yes"
1249
- msgstr ""
1250
-
1251
- #: admin/user-export.php:135 admin/users.php:399
1252
- msgid "No"
1253
- msgstr ""
1254
-
1255
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1256
- msgid "Activate"
1257
- msgstr ""
1258
-
1259
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1260
- msgid "Deactivate"
1261
- msgstr ""
1262
-
1263
- #: admin/users.php:52 admin/users.php:57
1264
- msgid "Export"
1265
- msgstr "Exportar"
1266
-
1267
- #: admin/users.php:58 admin/users.php:109
1268
- msgid "Export All Users"
1269
- msgstr "Exportar tots els usuaris"
1270
-
1271
- #: admin/users.php:158
1272
- #, php-format
1273
- msgid "%s users activated"
1274
- msgstr ""
1275
-
1276
- #: admin/users.php:158
1277
- #, php-format
1278
- msgid "%s users deactivated"
1279
- msgstr ""
1280
-
1281
- #: admin/users.php:161
1282
- msgid "No users selected"
1283
- msgstr ""
1284
-
1285
- #: admin/users.php:181
1286
- #, php-format
1287
- msgid "%s activated"
1288
- msgstr ""
1289
-
1290
- #: admin/users.php:186
1291
- #, php-format
1292
- msgid "%s deactivated"
1293
- msgstr ""
1294
-
1295
- #: admin/users.php:190
1296
- msgid "That user is already active"
1297
- msgstr ""
1298
-
1299
- #: admin/users.php:315
1300
- msgid "Pending"
1301
- msgstr ""
1302
-
1303
- #: admin/users.php:316
1304
- msgid "Trial"
1305
- msgstr ""
1306
-
1307
- #: admin/users.php:318
1308
- msgid "Expired"
1309
- msgstr ""
1310
-
1311
- #: admin/users.php:321
1312
- msgid "Not Activated"
1313
- msgstr ""
1314
-
1315
- #: admin/users.php:322
1316
- msgid "Deactivated"
1317
- msgstr ""
1318
-
1319
- #: admin/users.php:324
1320
- msgid "Not Exported"
1321
- msgstr ""
1322
-
1323
- #: inc/api.php:304 inc/class-wp-members.php:1296
1324
- msgid "log in"
1325
- msgstr "Identifica't"
1326
-
1327
- #: inc/api.php:305
1328
- msgid "log out"
1329
- msgstr ""
1330
-
1331
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1332
- #: inc/wp-registration.php:77
1333
- #, php-format
1334
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1335
- msgstr ""
1336
-
1337
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1338
- #: inc/wp-registration.php:78
1339
- msgid "TOS"
1340
- msgstr "Condicions d'ús"
1341
-
1342
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1343
- #: wp-members-tos.php:23
1344
- msgid "Terms of Service"
1345
- msgstr "Condicions d'us"
1346
-
1347
- #: inc/class-wp-members-products.php:212
1348
- msgid "Product"
1349
- msgstr ""
1350
-
1351
- #: inc/class-wp-members-products.php:213
1352
- msgid "Products"
1353
- msgstr ""
1354
-
1355
- #: inc/class-wp-members-products.php:218
1356
- msgid "Memberships"
1357
- msgstr ""
1358
-
1359
- #: inc/class-wp-members-products.php:219
1360
- #, php-format
1361
- msgid "All %s"
1362
- msgstr ""
1363
-
1364
- #: inc/class-wp-members-products.php:220
1365
- #, php-format
1366
- msgid "Add New %s"
1367
- msgstr ""
1368
-
1369
- #: inc/class-wp-members-products.php:221
1370
- msgid "Add New"
1371
- msgstr ""
1372
-
1373
- #: inc/class-wp-members-products.php:222
1374
- #, php-format
1375
- msgid "New %s"
1376
- msgstr ""
1377
-
1378
- #: inc/class-wp-members-products.php:223
1379
- #, php-format
1380
- msgid "Edit %s"
1381
- msgstr ""
1382
-
1383
- #: inc/class-wp-members-products.php:224
1384
- #, php-format
1385
- msgid "Update %s"
1386
- msgstr ""
1387
-
1388
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1389
- #, php-format
1390
- msgid "View %s"
1391
- msgstr ""
1392
-
1393
- #: inc/class-wp-members-products.php:227
1394
- #, php-format
1395
- msgid "Search %s"
1396
- msgstr ""
1397
-
1398
- #: inc/class-wp-members-products.php:228
1399
- msgid "Not found"
1400
- msgstr ""
1401
-
1402
- #: inc/class-wp-members-products.php:229
1403
- msgid "Not found in Trash"
1404
- msgstr ""
1405
-
1406
- #: inc/class-wp-members-products.php:230
1407
- msgid "Insert into item"
1408
- msgstr ""
1409
-
1410
- #: inc/class-wp-members-products.php:231
1411
- #, php-format
1412
- msgid "Save %s Details"
1413
- msgstr ""
1414
-
1415
- #: inc/class-wp-members-products.php:234
1416
- msgid "Membership Product"
1417
- msgstr ""
1418
-
1419
- #: inc/class-wp-members-products.php:235
1420
- msgid "WP-Members Membership Products"
1421
- msgstr ""
1422
-
1423
- #: inc/class-wp-members-shortcodes.php:135
1424
- msgid ""
1425
- "This is a generic message to display the form message dialog in the "
1426
- "Customizer."
1427
- msgstr ""
1428
-
1429
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1430
- #: inc/deprecated.php:180
1431
- msgid "There was an error with the CAPTCHA form."
1432
- msgstr "Hi hagut un error amb el formulari de CAPTCHA"
1433
-
1434
- #: inc/class-wp-members-shortcodes.php:676
1435
- msgid "Click here to log out."
1436
- msgstr ""
1437
-
1438
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1439
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1440
- msgid "Register"
1441
- msgstr ""
1442
-
1443
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1444
- msgid "Log In"
1445
- msgstr ""
1446
-
1447
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1448
- msgid "WP-Members Additional Fields"
1449
- msgstr "WP-Members camps adicionals"
1450
-
1451
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1452
- msgid "Additional Information"
1453
- msgstr "Informació Addicional"
1454
-
1455
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1456
- msgid "Activate this user?"
1457
- msgstr "Activar usuari?"
1458
-
1459
- #: inc/class-wp-members-user-profile.php:453
1460
- msgid "Reactivate this user?"
1461
- msgstr "Voleu tornar a activar aquest usuari?"
1462
-
1463
- #: inc/class-wp-members-user-profile.php:458
1464
- msgid "Deactivate this user?"
1465
- msgstr "Desactivar usuari?"
1466
-
1467
- #: inc/class-wp-members-user-profile.php:507
1468
- msgid "IP @ registration"
1469
- msgstr "Adreça IP"
1470
-
1471
- #: inc/class-wp-members-user-profile.php:526
1472
- msgid "Product Access"
1473
- msgstr ""
1474
-
1475
- #: inc/class-wp-members-user-profile.php:534
1476
- msgid "Enable"
1477
- msgstr ""
1478
-
1479
- #: inc/class-wp-members-user-profile.php:535
1480
- msgid "Disable"
1481
- msgstr ""
1482
-
1483
- #: inc/class-wp-members-user-profile.php:541
1484
- msgid "Expires:"
1485
- msgstr ""
1486
-
1487
- #: inc/class-wp-members-user-profile.php:543
1488
- msgid "Enabled"
1489
- msgstr ""
1490
-
1491
- #: inc/class-wp-members-user.php:712
1492
- msgid "<strong>ERROR</strong>: User has not been activated."
1493
- msgstr "<strong>ERROR</strong>: L'usuari no ha estat activat."
1494
-
1495
- #: inc/class-wp-members-widget.php:24
1496
- msgid "Displays the WP-Members sidebar login."
1497
- msgstr ""
1498
-
1499
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1500
- msgid "Login Status"
1501
- msgstr "Estat de la identificació"
1502
-
1503
- #: inc/class-wp-members-widget.php:46
1504
- msgid "Title:"
1505
- msgstr "Titol:"
1506
-
1507
- #: inc/class-wp-members-widget.php:50
1508
- msgid "Redirect to (optional):"
1509
- msgstr ""
1510
-
1511
- #: inc/class-wp-members.php:1183
1512
- msgid "First Name"
1513
- msgstr "Nom"
1514
-
1515
- #: inc/class-wp-members.php:1184
1516
- msgid "Last Name"
1517
- msgstr "Cognoms"
1518
-
1519
- #: inc/class-wp-members.php:1185
1520
- msgid "Address 1"
1521
- msgstr "Adreça (línia 1)"
1522
-
1523
- #: inc/class-wp-members.php:1186
1524
- msgid "Address 2"
1525
- msgstr "Adreça (línia 2)"
1526
-
1527
- #: inc/class-wp-members.php:1187
1528
- msgid "City"
1529
- msgstr "Ciutat"
1530
-
1531
- #: inc/class-wp-members.php:1188
1532
- msgid "State"
1533
- msgstr "Província"
1534
-
1535
- #: inc/class-wp-members.php:1189
1536
- msgid "Zip"
1537
- msgstr "CP"
1538
-
1539
- #: inc/class-wp-members.php:1190
1540
- msgid "Country"
1541
- msgstr "País"
1542
-
1543
- #: inc/class-wp-members.php:1191
1544
- msgid "Day Phone"
1545
- msgstr "Telèfon"
1546
-
1547
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1548
- msgid "Email"
1549
- msgstr ""
1550
-
1551
- #: inc/class-wp-members.php:1193
1552
- msgid "Confirm Email"
1553
- msgstr ""
1554
-
1555
- #: inc/class-wp-members.php:1194
1556
- msgid "Website"
1557
- msgstr "Lloc web"
1558
-
1559
- #: inc/class-wp-members.php:1195
1560
- msgid "Biographical Info"
1561
- msgstr "Informació biogràfica"
1562
-
1563
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216
1564
- #: inc/class-wp-members.php:1295
1565
- msgid "Password"
1566
- msgstr ""
1567
-
1568
- #: inc/class-wp-members.php:1197
1569
- msgid "Confirm Password"
1570
- msgstr ""
1571
-
1572
- #: inc/class-wp-members.php:1208
1573
- msgid "You are not logged in."
1574
- msgstr "No ha entrat en"
1575
-
1576
- #: inc/class-wp-members.php:1214
1577
- msgid "Existing Users Log In"
1578
- msgstr "Usuaris Existents Entrada"
1579
-
1580
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1581
- msgid "Username or Email"
1582
- msgstr ""
1583
-
1584
- #: inc/class-wp-members.php:1218
1585
- msgid "Remember Me"
1586
- msgstr ""
1587
-
1588
- #: inc/class-wp-members.php:1219
1589
- msgid "Forgot password?"
1590
- msgstr "Has oblidat la contrasenya?"
1591
-
1592
- #: inc/class-wp-members.php:1220
1593
- msgid "Click here to reset"
1594
- msgstr "Prem aquí per reiniciar"
1595
-
1596
- #: inc/class-wp-members.php:1221
1597
- msgid "New User?"
1598
- msgstr "Nou usuari?"
1599
-
1600
- #: inc/class-wp-members.php:1222
1601
- msgid "Click here to register"
1602
- msgstr "Prem aquí per registrar-te"
1603
-
1604
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1605
- msgid "Change Password"
1606
- msgstr "Canvia la contrasenya"
1607
-
1608
- #: inc/class-wp-members.php:1226
1609
- msgid "New password"
1610
- msgstr ""
1611
-
1612
- #: inc/class-wp-members.php:1227
1613
- msgid "Confirm new password"
1614
- msgstr ""
1615
-
1616
- #: inc/class-wp-members.php:1228
1617
- msgid "Update Password"
1618
- msgstr "Actualitza la contrasenya"
1619
-
1620
- #: inc/class-wp-members.php:1231
1621
- msgid "Reset Forgotten Password"
1622
- msgstr "Reinicia la contrasenya oblidada"
1623
-
1624
- #: inc/class-wp-members.php:1234
1625
- msgid "Reset Password"
1626
- msgstr ""
1627
-
1628
- #: inc/class-wp-members.php:1235
1629
- msgid "Forgot username?"
1630
- msgstr ""
1631
-
1632
- #: inc/class-wp-members.php:1236
1633
- msgid "Click here"
1634
- msgstr ""
1635
-
1636
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1637
- msgid "Retrieve username"
1638
- msgstr ""
1639
-
1640
- #: inc/class-wp-members.php:1240
1641
- msgid "Email Address"
1642
- msgstr ""
1643
-
1644
- #: inc/class-wp-members.php:1244
1645
- msgid "New User Registration"
1646
- msgstr "Registre d'un nou usuari"
1647
-
1648
- #: inc/class-wp-members.php:1245
1649
- msgid "Choose a Username"
1650
- msgstr "Escull un nom d'usuari"
1651
-
1652
- #: inc/class-wp-members.php:1246
1653
- msgid "Input the code:"
1654
- msgstr ""
1655
-
1656
- #: inc/class-wp-members.php:1248
1657
- msgid "Reset Form"
1658
- msgstr "Restablir el Formulari"
1659
-
1660
- #: inc/class-wp-members.php:1251
1661
- msgid "Required field"
1662
- msgstr "Camp obligatori"
1663
-
1664
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1665
- msgid "Edit Your Information"
1666
- msgstr "Edita la teva informació"
1667
-
1668
- #: inc/class-wp-members.php:1256
1669
- msgid "Update Profile"
1670
- msgstr "Actualitzar Perfil"
1671
-
1672
- #: inc/class-wp-members.php:1257
1673
- msgid "Update this file"
1674
- msgstr ""
1675
-
1676
- #: inc/class-wp-members.php:1260
1677
- msgid "Login Failed!"
1678
- msgstr "¡Error d'identificació!"
1679
-
1680
- #: inc/class-wp-members.php:1261
1681
- msgid "You entered an invalid username or password."
1682
- msgstr "Ha introduit un nom d'usuari o una contrasenya incorrecta"
1683
-
1684
- #: inc/class-wp-members.php:1262
1685
- msgid "Click here to continue."
1686
- msgstr "Prem aquí per continuar."
1687
-
1688
- #: inc/class-wp-members.php:1263
1689
- msgid "Password fields cannot be empty"
1690
- msgstr "La contrasenya no coincideix"
1691
-
1692
- #: inc/class-wp-members.php:1264
1693
- msgid "Sorry, that email address was not found."
1694
- msgstr ""
1695
-
1696
- #: inc/class-wp-members.php:1265
1697
- #, php-format
1698
- msgid "An email was sent to %s with your username."
1699
- msgstr ""
1700
-
1701
- #: inc/class-wp-members.php:1266
1702
- #, php-format
1703
- msgid "Sorry, %s is a required field."
1704
- msgstr "Disculpa, %s és un camp obligatori."
1705
-
1706
- #: inc/class-wp-members.php:1267
1707
- msgid "You must enter a valid email address."
1708
- msgstr "Heu d'introduir un adreça de correu electrònic vàlida"
1709
-
1710
- #: inc/class-wp-members.php:1268
1711
- msgid "The username cannot include non-alphanumeric characters."
1712
- msgstr "El nom d'usuari no pot contenir caràcters que no siguin alfanumèrics."
1713
-
1714
- #: inc/class-wp-members.php:1269
1715
- msgid "Sorry, username is a required field"
1716
- msgstr "Disculpa, el nom d'usuari és obligatori"
1717
-
1718
- #: inc/class-wp-members.php:1270
1719
- msgid "Passwords did not match."
1720
- msgstr "Les contrasenyes no coincideixen"
1721
-
1722
- #: inc/class-wp-members.php:1271
1723
- msgid "Emails did not match."
1724
- msgstr "Les correus electrònics no coincideixen"
1725
-
1726
- #: inc/class-wp-members.php:1272
1727
- msgid "You must complete the CAPTCHA form."
1728
- msgstr "Heu de completar la paraula mostrada en la imatge"
1729
-
1730
- #: inc/class-wp-members.php:1273
1731
- msgid "CAPTCHA was not valid."
1732
- msgstr ""
1733
-
1734
- #: inc/class-wp-members.php:1274 inc/register.php:52
1735
- msgid "There was an error processing the form."
1736
- msgstr "Hi hagut un error amb el formulari"
1737
-
1738
- #: inc/class-wp-members.php:1278
1739
- msgid "Edit My Information"
1740
- msgstr "Editar la meva informació"
1741
-
1742
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283
1743
- #: inc/class-wp-members.php:1285 inc/class-wp-members.php:1290
1744
- #, php-format
1745
- msgid "You are logged in as %s"
1746
- msgstr "S'ha identificat com %s"
1747
-
1748
- #: inc/class-wp-members.php:1281
1749
- msgid "Click to log out."
1750
- msgstr "Prem aquí per desconnectar-te"
1751
-
1752
- #: inc/class-wp-members.php:1282
1753
- msgid "Begin using the site."
1754
- msgstr "Comença a utilitzar el web"
1755
-
1756
- #: inc/class-wp-members.php:1284
1757
- msgid "Click to log out"
1758
- msgstr "Prem aquí per desconnectar-te"
1759
-
1760
- #: inc/class-wp-members.php:1286
1761
- msgid "click to log out"
1762
- msgstr "Prem aquí per desconnectar-te"
1763
-
1764
- #: inc/class-wp-members.php:1287
1765
- msgid "Log Out"
1766
- msgstr ""
1767
-
1768
- #: inc/class-wp-members.php:1291
1769
- msgid "click here to log out"
1770
- msgstr "Prem aquí per desconnectar-te"
1771
-
1772
- #: inc/class-wp-members.php:1292
1773
- msgid "Login Failed!<br />You entered an invalid username or password."
1774
- msgstr ""
1775
- "Identificació fallada! <br />Has introduit un nom d'usuari o una contrasenya "
1776
- "incorrectes."
1777
-
1778
- #: inc/class-wp-members.php:1297
1779
- msgid "Forgot?"
1780
- msgstr "Has oblidat la contrasenya?"
1781
-
1782
- #: inc/class-wp-members.php:1301
1783
- msgid ""
1784
- "This content is restricted to site members. If you are an existing user, "
1785
- "please log in. New users may register below."
1786
- msgstr ""
1787
- "Aquest contingut és exclussiu pels usuaris registrats. Si ja ets un usuari "
1788
- "registrat, siusplau identifica't. Si és un nou usuari, siusplau registra't. "
1789
-
1790
- #: inc/class-wp-members.php:1302
1791
- msgid ""
1792
- "Congratulations! Your registration was successful.<br /><br />You may now "
1793
- "log in using the password that was emailed to you."
1794
- msgstr ""
1795
- "Felicitats! El procés de registre s'ha completat. <br /><br />Pots iniciar "
1796
- "la sessió identifican-te amb la contrasenya que ha estat enviada a la teva "
1797
- "adreça de correu. "
1798
-
1799
- #: inc/class-wp-members.php:1305
1800
- msgid "Sorry, that username is taken, please try another."
1801
- msgstr ""
1802
- "Ho sentim, aquest nom d'usuari ja està agafat, siusplau prova'n un altre. "
1803
-
1804
- #: inc/class-wp-members.php:1306
1805
- msgid ""
1806
- "Sorry, that email address already has an account.<br />Please try another."
1807
- msgstr "Ho sentim, aquest email ja està agafat, siusplau prova'n un altre. "
1808
-
1809
- #: inc/class-wp-members.php:1307
1810
- msgid "Your information was updated!"
1811
- msgstr "La teva informació ha estat actualitzada!"
1812
-
1813
- #: inc/class-wp-members.php:1310
1814
- msgid "Passwords did not match.<br /><br />Please try again."
1815
- msgstr ""
1816
- "Les contrasenyes no coincideixen<br /><br />Siusplau intenta-ho de nou."
1817
-
1818
- #: inc/class-wp-members.php:1311
1819
- msgid "Password successfully changed!"
1820
- msgstr ""
1821
-
1822
- #: inc/class-wp-members.php:1312
1823
- msgid "Either the username or email address do not exist in our records."
1824
- msgstr "El nom d'usuari o email no existeixen en la nostra base de dades."
1825
-
1826
- #: inc/class-wp-members.php:1313
1827
- msgid ""
1828
- "Password successfully reset!<br /><br />An email containing a new password "
1829
- "has been sent to the email address on file for your account."
1830
- msgstr ""
1831
-
1832
- #: inc/class-wp-members.php:1315
1833
- msgid "Sorry, you do not have access to this content."
1834
- msgstr ""
1835
-
1836
- #: inc/class-wp-members.php:1433
1837
- msgid "Show forms as logged out"
1838
- msgstr ""
1839
-
1840
- #: inc/class-wp-members.php:1442
1841
- msgid "Show form message dialog"
1842
- msgstr ""
1843
-
1844
- #: inc/class-wp-members.php:1538
1845
- msgid "(more&hellip;)"
1846
- msgstr ""
1847
-
1848
- #: inc/register.php:417
1849
- msgid "We were unable to validate the public key."
1850
- msgstr "No s'ha pogut validar la clau pública."
1851
-
1852
- #: inc/register.php:421
1853
- msgid "We were unable to validate the private key."
1854
- msgstr "No s'ha pogut validar la clau privada."
1855
-
1856
- #: inc/register.php:425
1857
- msgid "The challenge parameter of the verify script was incorrect."
1858
- msgstr "El paràmetre de verificació del script és incorrecte."
1859
-
1860
- #: inc/register.php:429
1861
- msgid "The CAPTCHA solution was incorrect."
1862
- msgstr "La resolució de CAPTCHA és incorrecte."
1863
-
1864
- #: inc/register.php:433
1865
- msgid "The parameters to verify were incorrect"
1866
- msgstr "Els paràmetres a verificar són incorrectes"
1867
-
1868
- #: inc/register.php:437
1869
- msgid ""
1870
- "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1871
- msgstr ""
1872
- "Les claus de reCAPTCHA van associades a un domini específic per raons de "
1873
- "seguretat. "
1874
-
1875
- #: inc/register.php:441
1876
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1877
- msgstr "El servidor de reCAPTCHA no respond, siusplau intenta-ho de nou."
1878
-
1879
- #: inc/register.php:445
1880
- msgid "You have entered an incorrect code value. Please try again."
1881
- msgstr ""
1882
-
1883
- #: wp-members-tos.php:35
1884
- #, php-format
1885
- msgid "%sclose%s"
1886
- msgstr "%stanca%s"
1887
-
1888
- #: wp-members-tos.php:37
1889
- #, php-format
1890
- msgid "%sprint%s"
1891
- msgstr "%simprimeix%s"
1892
-
1893
- #. Plugin Name of the plugin/theme
1894
- msgid "WP-Members"
1895
- msgstr ""
1896
-
1897
- #. Plugin URI of the plugin/theme
1898
- msgid "https://rocketgeek.com"
1899
- msgstr ""
1900
-
1901
- #. Description of the plugin/theme
1902
- msgid ""
1903
- "WP access restriction and user registration. For more information on plugin "
1904
- "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
1905
- "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
1906
- "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
1907
- "available. WP-Members(tm) is a trademark of butlerblog.com."
1908
- msgstr ""
1909
-
1910
- #. Author of the plugin/theme
1911
- msgid "Chad Butler"
1912
- msgstr ""
1913
-
1914
- #. Author URI of the plugin/theme
1915
- msgid "http://butlerblog.com/"
1916
- msgstr ""
1917
-
1918
- #~ msgid "You have set WP-Members to turn off the registration process"
1919
- #~ msgstr "Ha configurat WP-Members per desactivar el procés de registre "
1920
-
1921
- #~ msgid ""
1922
- #~ "but you also set to moderate and/or email admin new registrations. You "
1923
- #~ "will need to set up a registration page for users to register."
1924
- #~ msgstr ""
1925
- #~ "però també s'estableix com a moderador i/o l'administrador email per a "
1926
- #~ "nous registres. Necessiteu establir una pàgina de registres pels usuaris "
1927
- #~ "que vulguin registrar-se"
1928
-
1929
- #~ msgid "Unblocked?"
1930
- #~ msgstr "Desbloquejat?"
1931
-
1932
- #~ msgid "Blocked?"
1933
- #~ msgstr "Bloquejat?"
1934
-
1935
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
1936
- #~ msgstr ""
1937
- #~ "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha "
1938
- #~ "actualitzat."
1939
-
1940
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
1941
- #~ msgstr ""
1942
- #~ "L'opció del Nom és requereix per incloure un nou camp. Res s'ha "
1943
- #~ "actualitzat."
1944
-
1945
- #~ msgid "field was added"
1946
- #~ msgstr "es va afegir camp"
1947
-
1948
- #~ msgid "field was updated"
1949
- #~ msgstr "camp s'actualitza"
1950
-
1951
- #~ msgid "Option Name"
1952
- #~ msgstr "Opcions"
1953
-
1954
- #~ msgid "Additional information for checkbox fields"
1955
- #~ msgstr "Informació addicional per als camps de casella de verificació"
1956
-
1957
- #~ msgid "Additional information for dropdown fields"
1958
- #~ msgstr "Informació addicional per als camps desplegables"
1959
-
1960
- #~ msgid "For dropdown, array of values:"
1961
- #~ msgstr "Pel desplegable, valors:"
1962
-
1963
- #~ msgid ""
1964
- #~ "Determine which fields will display and which are required. This "
1965
- #~ "includes all fields, both native WP fields and WP-Members custom fields."
1966
- #~ msgstr ""
1967
- #~ "Determina quins camps es mostraran i quins són obligatoris. Això inclou "
1968
- #~ "tots els camps, els natius de WP com els creats a WP-Members."
1969
-
1970
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
1971
- #~ msgstr "(Nota: el camp email és obligatori, no pot canviar-se)"
1972
-
1973
- #~ msgid "Add/Delete"
1974
- #~ msgstr "Inclou/Suprimeix"
1975
-
1976
- #~ msgid "Checked?"
1977
- #~ msgstr "Comprovat?"
1978
-
1979
- #~ msgid "Delete"
1980
- #~ msgstr "Suprimeix"
1981
-
1982
- #~ msgid "(Email cannot be removed)"
1983
- #~ msgstr "(Nota: el camp de l'email és obligatori, no es pot canviar)"
1984
-
1985
- #~ msgid "Update Fields"
1986
- #~ msgstr "Actualitzar camps"
1987
-
1988
- #~ msgid "Please indicate that you agree to the %s TOS %s"
1989
- #~ msgstr ""
1990
- #~ "Siusplau indiqueu que heu llegit i esteu d'acord amb les %s condicions "
1991
- #~ "d'ús %s"
1992
-
1993
- #~ msgid "Post Restriction"
1994
- #~ msgstr "Restricció de l'anunci"
1995
-
1996
- #~ msgid "Page Restriction"
1997
- #~ msgstr "Pàgina Restricció"
1998
-
1999
- #~ msgid "dropdown"
2000
- #~ msgstr "desplegable"
2001
-
2002
- #~ msgid "Block Posts by default"
2003
- #~ msgstr "Bloquejar entrades per defecte"
2004
-
2005
- #~ msgid ""
2006
- #~ "Note: Posts can still be individually blocked or unblocked at the article "
2007
- #~ "level"
2008
- #~ msgstr ""
2009
- #~ "Nota: les entrades poden ser bloquejades o desbloquejades a nivell "
2010
- #~ "d'article"
2011
-
2012
- #~ msgid "Block Pages by default"
2013
- #~ msgstr "Bloquejar pàgines per defecte"
2014
-
2015
- #~ msgid ""
2016
- #~ "Note: Pages can still be individually blocked or unblocked at the article "
2017
- #~ "level"
2018
- #~ msgstr ""
2019
- #~ "Nota: les pàgines encara poden ser bloquejades o no bloquejades a nivell "
2020
- #~ "d'article"
2021
-
2022
- #~ msgid "Show excerpts"
2023
- #~ msgstr "Mostra resums"
2024
-
2025
- #~ msgid ""
2026
- #~ "Shows excerpted content above the login/registration on both Posts and "
2027
- #~ "Pages"
2028
- #~ msgstr ""
2029
- #~ "Mostra resums de contingut sobre el formulari d'accés, tant en entrades "
2030
- #~ "com en pàgines"
2031
-
2032
- #~ msgid "Turns on CAPTCHA for registration"
2033
- #~ msgstr "Activa CAPTCHA pel registre"
2034
-
2035
- #~ msgid "Hide registration"
2036
- #~ msgstr "Amaga registre"
2037
-
2038
- #~ msgid "Optional"
2039
- #~ msgstr "Opcional"
2040
-
2041
- #~ msgid "AIM"
2042
- #~ msgstr "AIM"
2043
-
2044
- #~ msgid "Yahoo IM"
2045
- #~ msgstr "Yahoo IM"
2046
-
2047
- #~ msgid "Jabber/Google Talk"
2048
- #~ msgstr "Jabber/Google Talk"
2049
-
2050
- #~ msgid ""
2051
- #~ "Password successfully changed!<br /><br />You will need to re-login with "
2052
- #~ "your new password."
2053
- #~ msgstr ""
2054
- #~ "La contrasenya s'ha canviat correctament!. <br/><br/> Hauràs de tornar-te "
2055
- #~ "identificar utilitzant la nova contrasenya."
2056
-
2057
- #~ msgid ""
2058
- #~ "Password successfully reset!<br /><br />An email containing a new "
2059
- #~ "password has been sent to the email address on file for your account. You "
2060
- #~ "may change this random password then re-login with your new password."
2061
- #~ msgstr ""
2062
- #~ "La contrasenya ha estat restablerta correctament<br /><br /> Li enviarem "
2063
- #~ "un email amb la nova contrasenya a l'adreça que ha registrat. Podrà "
2064
- #~ "canviar la contrasenya a l'atzar i després iniciar la sessió amb una nova "
2065
- #~ "contrasenya."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2010 WP-Members
2
+ # This file is distributed under the same license as the WP-Members package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Members 3.2.6\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
8
+ "PO-Revision-Date: 2020-05-22 17:49-0400\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: ca_CA\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Generator: Poedit 2.3.1\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-SearchPath-0: /home/aure/raid/www/wordpress_31RC2_coitcv/wp-content/"
20
+ "plugins/wp-members\n"
21
+
22
+ #: includes/admin/class-wp-members-admin-api.php:292
23
+ msgid "Custom email"
24
+ msgstr ""
25
+
26
+ #: includes/admin/class-wp-members-admin-api.php:293
27
+ #: includes/admin/class-wp-members-admin-api.php:295
28
+ msgid "Subject"
29
+ msgstr "Assumpte"
30
+
31
+ #: includes/admin/class-wp-members-admin-api.php:296
32
+ msgid "Body"
33
+ msgstr "Cos"
34
+
35
+ #: includes/admin/class-wp-members-admin-api.php:298
36
+ msgid "Your custom email message content."
37
+ msgstr ""
38
+
39
+ #: includes/admin/class-wp-members-admin-api.php:376
40
+ msgid "Options"
41
+ msgstr "Opcions"
42
+
43
+ #: includes/admin/class-wp-members-admin-api.php:377
44
+ msgid "Fields"
45
+ msgstr "Camps"
46
+
47
+ #: includes/admin/class-wp-members-admin-api.php:378
48
+ msgid "Dialogs"
49
+ msgstr "Diàlegs"
50
+
51
+ #: includes/admin/class-wp-members-admin-api.php:379
52
+ msgid "Emails"
53
+ msgstr "Emails"
54
+
55
+ #: includes/admin/class-wp-members-admin-api.php:395
56
+ msgid "New Registration"
57
+ msgstr "Nou registre"
58
+
59
+ #: includes/admin/class-wp-members-admin-api.php:404
60
+ msgid "Registration is Moderated"
61
+ msgstr "Registre complet"
62
+
63
+ #: includes/admin/class-wp-members-admin-api.php:410
64
+ msgid "Registration is Moderated, User is Approved"
65
+ msgstr "El seu registre ha estat aprovat"
66
+
67
+ #: includes/admin/class-wp-members-admin-api.php:418
68
+ msgid "Password Reset"
69
+ msgstr "Contrasenya reiniciada"
70
+
71
+ #: includes/admin/class-wp-members-admin-api.php:425
72
+ msgid "Retrieve Username"
73
+ msgstr ""
74
+
75
+ #: includes/admin/class-wp-members-admin-api.php:433
76
+ msgid "Admin Notification"
77
+ msgstr "Notificació de l'administrador"
78
+
79
+ #: includes/admin/class-wp-members-admin-api.php:459
80
+ msgid "Restricted post (or page), displays above the login/registration form"
81
+ msgstr ""
82
+ "Les entrades (o pàgines) bloquejades mostren sempre el formulari "
83
+ "d'identificació/registre"
84
+
85
+ #: includes/admin/class-wp-members-admin-api.php:460
86
+ msgid "Username is taken"
87
+ msgstr "El nom d'usuari ja està en ús"
88
+
89
+ #: includes/admin/class-wp-members-admin-api.php:461
90
+ msgid "Email is registered"
91
+ msgstr "L'email ja està registrat"
92
+
93
+ #: includes/admin/class-wp-members-admin-api.php:462
94
+ msgid "Registration completed"
95
+ msgstr "Registre complet"
96
+
97
+ #: includes/admin/class-wp-members-admin-api.php:463
98
+ msgid "User update"
99
+ msgstr "Actualitza l'usuari"
100
+
101
+ #: includes/admin/class-wp-members-admin-api.php:464
102
+ msgid "Passwords did not match"
103
+ msgstr "Les contrasenyes no coincideixen"
104
+
105
+ #: includes/admin/class-wp-members-admin-api.php:465
106
+ msgid "Password changes"
107
+ msgstr "Canvi de contrasenya"
108
+
109
+ #: includes/admin/class-wp-members-admin-api.php:466
110
+ msgid "Username or email do not exist when trying to reset forgotten password"
111
+ msgstr ""
112
+ "L'usuari o email no existeixen quan intentem restablir la contrasenya "
113
+ "oblidada "
114
+
115
+ #: includes/admin/class-wp-members-admin-api.php:467
116
+ msgid "Password reset"
117
+ msgstr "Contrasenya restablerta"
118
+
119
+ #: includes/admin/class-wp-members-admin-api.php:623
120
+ msgid "Settings"
121
+ msgstr "Preferències"
122
+
123
+ #: includes/admin/class-wp-members-admin-posts.php:30
124
+ #: includes/admin/class-wp-members-admin-posts.php:33
125
+ msgid "Unblock"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-members-admin-posts.php:31
129
+ #: includes/admin/class-wp-members-admin-posts.php:34
130
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
131
+ msgid "Block"
132
+ msgstr "Bloquejar"
133
+
134
+ #: includes/admin/class-wp-members-admin-posts.php:32
135
+ #: includes/admin/class-wp-members-admin-posts.php:35
136
+ msgid "Hide"
137
+ msgstr ""
138
+
139
+ #: includes/admin/class-wp-members-admin-posts.php:125
140
+ #, php-format
141
+ msgid "%s blocked"
142
+ msgstr ""
143
+
144
+ #: includes/admin/class-wp-members-admin-posts.php:125
145
+ #, php-format
146
+ msgid "%s unblocked"
147
+ msgstr ""
148
+
149
+ #: includes/admin/class-wp-members-admin-posts.php:165
150
+ #, php-format
151
+ msgid "%s Restriction"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-members-admin-posts.php:195
155
+ msgid "Unblocked"
156
+ msgstr ""
157
+
158
+ #: includes/admin/class-wp-members-admin-posts.php:196
159
+ msgid "Blocked"
160
+ msgstr ""
161
+
162
+ #: includes/admin/class-wp-members-admin-posts.php:197
163
+ msgid "Hidden"
164
+ msgstr ""
165
+
166
+ #: includes/admin/class-wp-members-admin-posts.php:203
167
+ msgid "Status:"
168
+ msgstr ""
169
+
170
+ #: includes/admin/class-wp-members-admin-posts.php:203
171
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
172
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
173
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
174
+ msgid "Edit"
175
+ msgstr ""
176
+
177
+ #: includes/admin/class-wp-members-admin-posts.php:218
178
+ msgid "Ok"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-members-admin-posts.php:219
182
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
183
+ msgid "Cancel"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-members-admin-posts.php:305
187
+ #: includes/admin/class-wp-members-products-admin.php:629
188
+ msgid "Status"
189
+ msgstr ""
190
+
191
+ #: includes/admin/class-wp-members-admin-users.php:28
192
+ #: includes/admin/class-wp-members-admin-users.php:33
193
+ #: includes/admin/class-wp-members-admin-users.php:59
194
+ msgid "Activate"
195
+ msgstr ""
196
+
197
+ #: includes/admin/class-wp-members-admin-users.php:29
198
+ #: includes/admin/class-wp-members-admin-users.php:34
199
+ #: includes/admin/class-wp-members-admin-users.php:62
200
+ msgid "Deactivate"
201
+ msgstr ""
202
+
203
+ #: includes/admin/class-wp-members-admin-users.php:31
204
+ #: includes/admin/class-wp-members-admin-users.php:36
205
+ msgid "Export"
206
+ msgstr "Exportar"
207
+
208
+ #: includes/admin/class-wp-members-admin-users.php:37
209
+ #: includes/admin/class-wp-members-admin-users.php:88
210
+ msgid "Export All Users"
211
+ msgstr "Exportar tots els usuaris"
212
+
213
+ #: includes/admin/class-wp-members-admin-users.php:126
214
+ #, php-format
215
+ msgid "%s users activated"
216
+ msgstr ""
217
+
218
+ #: includes/admin/class-wp-members-admin-users.php:126
219
+ #, php-format
220
+ msgid "%s users deactivated"
221
+ msgstr ""
222
+
223
+ #: includes/admin/class-wp-members-admin-users.php:129
224
+ msgid "No users selected"
225
+ msgstr ""
226
+
227
+ #: includes/admin/class-wp-members-admin-users.php:147
228
+ msgid "You cannot activate or deactivate yourself"
229
+ msgstr ""
230
+
231
+ #: includes/admin/class-wp-members-admin-users.php:152
232
+ #, php-format
233
+ msgid "%s activated"
234
+ msgstr ""
235
+
236
+ #: includes/admin/class-wp-members-admin-users.php:157
237
+ #, php-format
238
+ msgid "%s deactivated"
239
+ msgstr ""
240
+
241
+ #: includes/admin/class-wp-members-admin-users.php:161
242
+ msgid "That user is already active"
243
+ msgstr ""
244
+
245
+ #: includes/admin/class-wp-members-admin-users.php:288
246
+ msgid "Pending"
247
+ msgstr ""
248
+
249
+ #: includes/admin/class-wp-members-admin-users.php:289
250
+ msgid "Trial"
251
+ msgstr ""
252
+
253
+ #: includes/admin/class-wp-members-admin-users.php:290
254
+ #: includes/admin/class-wp-members-export.php:74
255
+ msgid "Subscription"
256
+ msgstr "Subscripció"
257
+
258
+ #: includes/admin/class-wp-members-admin-users.php:291
259
+ msgid "Expired"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-members-admin-users.php:294
263
+ msgid "Activated"
264
+ msgstr ""
265
+
266
+ #: includes/admin/class-wp-members-admin-users.php:295
267
+ msgid "Pending Activation"
268
+ msgstr ""
269
+
270
+ #: includes/admin/class-wp-members-admin-users.php:296
271
+ msgid "Deactivated"
272
+ msgstr ""
273
+
274
+ #: includes/admin/class-wp-members-admin-users.php:298
275
+ msgid "Not Exported"
276
+ msgstr ""
277
+
278
+ #: includes/admin/class-wp-members-admin-users.php:387
279
+ #: includes/admin/class-wp-members-export.php:160
280
+ msgid "No"
281
+ msgstr ""
282
+
283
+ #: includes/admin/class-wp-members-export.php:64
284
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
285
+ msgid "User ID"
286
+ msgstr ""
287
+
288
+ #: includes/admin/class-wp-members-export.php:65
289
+ #: includes/class-wp-members.php:1523 includes/class-wp-members.php:1546
290
+ msgid "Username"
291
+ msgstr ""
292
+
293
+ #: includes/admin/class-wp-members-export.php:71
294
+ msgid "Activated?"
295
+ msgstr "Activa?"
296
+
297
+ #: includes/admin/class-wp-members-export.php:75
298
+ #: includes/admin/class-wp-members-products-admin.php:64
299
+ #: includes/admin/class-wp-members-products-admin.php:632
300
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
301
+ msgid "Expires"
302
+ msgstr "Expira"
303
+
304
+ #: includes/admin/class-wp-members-export.php:77
305
+ msgid "Registered"
306
+ msgstr "Registrat"
307
+
308
+ #: includes/admin/class-wp-members-export.php:78
309
+ msgid "IP"
310
+ msgstr "IP"
311
+
312
+ #: includes/admin/class-wp-members-export.php:160
313
+ #: includes/admin/class-wp-members-products-admin.php:104
314
+ msgid "Yes"
315
+ msgstr ""
316
+
317
+ #: includes/admin/class-wp-members-products-admin.php:62
318
+ msgid "Slug"
319
+ msgstr ""
320
+
321
+ #: includes/admin/class-wp-members-products-admin.php:63
322
+ msgid "Role"
323
+ msgstr ""
324
+
325
+ #: includes/admin/class-wp-members-products-admin.php:66
326
+ msgid "Default"
327
+ msgstr ""
328
+
329
+ #: includes/admin/class-wp-members-products-admin.php:68
330
+ msgid "Last updated"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-members-products-admin.php:92
334
+ msgid "slug:"
335
+ msgstr ""
336
+
337
+ #: includes/admin/class-wp-members-products-admin.php:95
338
+ msgid "No role required"
339
+ msgstr ""
340
+
341
+ #: includes/admin/class-wp-members-products-admin.php:100
342
+ msgid "Does not expire"
343
+ msgstr ""
344
+
345
+ #: includes/admin/class-wp-members-products-admin.php:140
346
+ msgid "Membership Product Details"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-members-products-admin.php:148
350
+ msgid "Membership Product Message (optional)"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-members-products-admin.php:165
354
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
355
+ msgid "Posts"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-members-products-admin.php:166
359
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
360
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
361
+ msgid "Pages"
362
+ msgstr ""
363
+
364
+ #: includes/admin/class-wp-members-products-admin.php:193
365
+ #: includes/admin/class-wp-members-products-admin.php:235
366
+ #: includes/admin/class-wp-members-products-admin.php:280
367
+ msgid "Period"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-members-products-admin.php:193
371
+ msgid "Day"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-members-products-admin.php:193
375
+ msgid "Week"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-members-products-admin.php:193
379
+ msgid "Month"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-members-products-admin.php:193
383
+ msgid "Year"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-members-products-admin.php:199
387
+ msgid "Name (slug)"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-members-products-admin.php:201
391
+ msgid "Optional Defaults"
392
+ msgstr ""
393
+
394
+ #: includes/admin/class-wp-members-products-admin.php:204
395
+ msgid "Assign as default at registration? (optional)"
396
+ msgstr ""
397
+
398
+ #: includes/admin/class-wp-members-products-admin.php:212
399
+ #, php-format
400
+ msgid "Pre-selected by default for new %s"
401
+ msgstr ""
402
+
403
+ #: includes/admin/class-wp-members-products-admin.php:218
404
+ msgid "Optional Properties"
405
+ msgstr ""
406
+
407
+ #: includes/admin/class-wp-members-products-admin.php:221
408
+ msgid "Role Required? (optional)"
409
+ msgstr ""
410
+
411
+ #: includes/admin/class-wp-members-products-admin.php:224
412
+ msgid "No Role"
413
+ msgstr ""
414
+
415
+ #: includes/admin/class-wp-members-products-admin.php:230
416
+ msgid "Expires (optional)"
417
+ msgstr ""
418
+
419
+ #: includes/admin/class-wp-members-products-admin.php:232
420
+ #: includes/admin/class-wp-members-products-admin.php:234
421
+ #: includes/admin/class-wp-members-products-admin.php:277
422
+ #: includes/admin/class-wp-members-products-admin.php:279
423
+ msgid "Number"
424
+ msgstr ""
425
+
426
+ #: includes/admin/class-wp-members-products-admin.php:240
427
+ msgid "Use \"no gap\" renewal"
428
+ msgstr ""
429
+
430
+ #: includes/admin/class-wp-members-products-admin.php:244
431
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
432
+ msgstr ""
433
+
434
+ #: includes/admin/class-wp-members-products-admin.php:261
435
+ msgid "Period Start (dd-mm)"
436
+ msgstr ""
437
+
438
+ #: includes/admin/class-wp-members-products-admin.php:262
439
+ msgid "Period End (dd-mm)"
440
+ msgstr ""
441
+
442
+ #: includes/admin/class-wp-members-products-admin.php:275
443
+ msgid "Fixed period grace period"
444
+ msgstr ""
445
+
446
+ #: includes/admin/class-wp-members-products-admin.php:284
447
+ msgid ""
448
+ "Grace period is the point at which expiration date is for following time "
449
+ "period. For example, if user who register August 1st would be part of the "
450
+ "following year's Sept 1 - Aug 31 membership, set this at 1 Month. Leave "
451
+ "blank for no grace period."
452
+ msgstr ""
453
+
454
+ #: includes/admin/class-wp-members-products-admin.php:333
455
+ msgid ""
456
+ "Restricted Message (displays when a user does not have access to a "
457
+ "membership)"
458
+ msgstr ""
459
+
460
+ #: includes/admin/class-wp-members-products-admin.php:435
461
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
462
+ #: includes/class-wp-members-forms.php:1092
463
+ #: includes/class-wp-members-user-profile.php:112
464
+ msgid "None"
465
+ msgstr ""
466
+
467
+ #: includes/admin/class-wp-members-products-admin.php:450
468
+ msgid "Limit access to:"
469
+ msgstr ""
470
+
471
+ #: includes/admin/class-wp-members-products-admin.php:520
472
+ msgid "Required Membership"
473
+ msgstr ""
474
+
475
+ #: includes/admin/class-wp-members-products-admin.php:559
476
+ #: includes/admin/class-wp-members-products-admin.php:630
477
+ msgid "Membership"
478
+ msgstr ""
479
+
480
+ #: includes/admin/class-wp-members-products-admin.php:599
481
+ #: includes/class-wp-members-products.php:308
482
+ msgid "Memberships"
483
+ msgstr ""
484
+
485
+ #: includes/admin/class-wp-members-products-admin.php:626
486
+ msgid "Product Access"
487
+ msgstr ""
488
+
489
+ #: includes/admin/class-wp-members-products-admin.php:631
490
+ msgid "Enabled?"
491
+ msgstr ""
492
+
493
+ #: includes/admin/class-wp-members-products-admin.php:641
494
+ msgid "Enable"
495
+ msgstr ""
496
+
497
+ #: includes/admin/class-wp-members-products-admin.php:642
498
+ msgid "Disable"
499
+ msgstr ""
500
+
501
+ #: includes/admin/class-wp-members-products-admin.php:647
502
+ msgid "Expiration date (optional)"
503
+ msgstr ""
504
+
505
+ #: includes/admin/dialogs.php:117
506
+ msgid ""
507
+ "Your WP settings allow anyone to register - this is not the recommended "
508
+ "setting."
509
+ msgstr ""
510
+ "La seva configuració de WP permet que qualsevol persona pugui registrar-se, "
511
+ "això no és el més recomenat. "
512
+
513
+ #: includes/admin/dialogs.php:118
514
+ #, php-format
515
+ msgid ""
516
+ "You can %s change this here %s making sure the box next to \"Anyone can "
517
+ "register\" is unchecked."
518
+ msgstr ""
519
+ "Pot %s canviar això aquí %s revistant la casella \"Qualsevol pot registrar-se"
520
+ "\" està demercada."
521
+
522
+ #: includes/admin/dialogs.php:119
523
+ msgid ""
524
+ "This setting allows a link on the /wp-login.php page to register using the "
525
+ "WP native registration process thus circumventing any registration you are "
526
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
527
+ "but most users should uncheck this option. If you do not change this "
528
+ "setting, you can choose to ignore these warning messages under WP-Members "
529
+ "Settings."
530
+ msgstr ""
531
+ "La configuració permet un enllaç a /wp-login.php per registra-se usant el "
532
+ "procés WP i així eludir qualsevol registre que utilitzem amb WP-Members. En "
533
+ "alguns casos, pot ser útil, però la majoria de vegades aquesta opció ha "
534
+ "d'estar desactivada. Si decideix deixar la configuració aixó, pot escollir "
535
+ "ignorar els missatges d'alerta en la configuració de WP-Members."
536
+
537
+ #: includes/admin/dialogs.php:123
538
+ msgid ""
539
+ "Your WP settings allow anyone to comment - this is not the recommended "
540
+ "setting."
541
+ msgstr ""
542
+ "La seva configuració de WP permet a qualsevol fer comentaris, això no és el "
543
+ "més recomenat. "
544
+
545
+ #: includes/admin/dialogs.php:124
546
+ #, php-format
547
+ msgid ""
548
+ "You can %s change this here %s by checking the box next to \"Users must be "
549
+ "registered and logged in to comment.\""
550
+ msgstr ""
551
+ "Pot %s canviar %s això marcant la casella al costat de \"Els usuaris han "
552
+ "d'estar registrats i connectats per fer comentaris.\""
553
+
554
+ #: includes/admin/dialogs.php:125
555
+ msgid ""
556
+ "This setting allows any users to comment, whether or not they are "
557
+ "registered. Depending on how you are using WP-Members will determine whether "
558
+ "you should change this setting or not. If you do not change this setting, "
559
+ "you can choose to ignore these warning messages under WP-Members Settings."
560
+ msgstr ""
561
+ "Aquesta condició permet a qualsevol usuari comentar, estigui o no registrat. "
562
+ "Depenen de com estigui usant el WP-Members haurà de canviar aquesta opció. "
563
+ "Si decideix deixar la configuració així, pot marcar \"ignorar els missatges "
564
+ "d'alerta en el panell la configuració de WP-Members."
565
+
566
+ #: includes/admin/dialogs.php:129
567
+ msgid ""
568
+ "Your WP settings allow full text rss feeds - this is not the recommended "
569
+ "setting."
570
+ msgstr ""
571
+ "La teva configuració de WP permet textos complets en el canal RSS, això no "
572
+ "és el més recomenat."
573
+
574
+ #: includes/admin/dialogs.php:130
575
+ #, php-format
576
+ msgid ""
577
+ "You can %s change this here %s by changing \"For each article in a feed, show"
578
+ "\" to \"Summary.\""
579
+ msgstr ""
580
+ "Pots %s canviar això aquí %s per canviar-ho \"Per a cada article en una "
581
+ "font , mostra\" el \"Resum.\""
582
+
583
+ #: includes/admin/dialogs.php:131
584
+ msgid ""
585
+ "Leaving this set to full text allows anyone to read your protected content "
586
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
587
+ "only show summary text."
588
+ msgstr ""
589
+ "Deixant l'opció a text complet permet a qualsevol llegir el text del seu "
590
+ "contingut protegit amb un lector de RSS. Canviar això evita aquesta "
591
+ "possibilitat."
592
+
593
+ #: includes/admin/dialogs.php:135
594
+ msgid "You have set WP-Members to hold registrations for approval"
595
+ msgstr ""
596
+ "Ha configurat WP-Members perquè els nous registres estiguin retinguts fins "
597
+ "que siguin aprovats. "
598
+
599
+ #: includes/admin/dialogs.php:136
600
+ msgid ""
601
+ "but you have not changed the default message for \"Registration Completed\" "
602
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
603
+ "message to let users know they are pending approval."
604
+ msgstr ""
605
+ "però no ha canviat el missatge per defecte per \"Registre Complet\" a \"WP-"
606
+ "Members Diàlegs i Missatges d'Error.\" Heu de canviar aquest missatge perquè "
607
+ "els usuaris sàpiguen que estan pendents d'aprovació."
608
+
609
+ #: includes/admin/dialogs.php:140
610
+ msgid "You have turned on reCAPTCHA"
611
+ msgstr "Ha activat reCAPTCHA, el sistema per prevenir registres falsos."
612
+
613
+ #: includes/admin/dialogs.php:141
614
+ msgid ""
615
+ "but you have not entered API keys. You will need both a public and private "
616
+ "key. The CAPTCHA will not display unless a valid API key is included."
617
+ msgstr ""
618
+ "però no ha introduit les claus API. Necessitaràs una clau pública i privada. "
619
+ "El CAPTCHA no es mostrarà si no es mostra una clau API vàlida."
620
+
621
+ #: includes/admin/dialogs.php:145
622
+ msgid "You have active settings that are not recommended."
623
+ msgstr ""
624
+
625
+ #: includes/admin/dialogs.php:146
626
+ msgid ""
627
+ "If you will not be changing these settings, you can turn off these warning "
628
+ "messages by checking the \"Ignore warning messages\" in the settings below."
629
+ msgstr ""
630
+
631
+ #: includes/admin/dialogs.php:174
632
+ msgid "Version:"
633
+ msgstr "Versió:"
634
+
635
+ #: includes/admin/dialogs.php:175
636
+ msgid "Quick Start Guide"
637
+ msgstr ""
638
+
639
+ #: includes/admin/dialogs.php:176
640
+ msgid "Online User Guide"
641
+ msgstr ""
642
+
643
+ #: includes/admin/dialogs.php:177
644
+ msgid "FAQs"
645
+ msgstr ""
646
+
647
+ #: includes/admin/dialogs.php:184
648
+ msgid "Thank you for using WP-Members"
649
+ msgstr "Gràcies per utilitzar WP-Members"
650
+
651
+ #: includes/admin/dialogs.php:185
652
+ msgid "A plugin developed by"
653
+ msgstr ""
654
+
655
+ #: includes/admin/dialogs.php:186
656
+ msgid "Follow"
657
+ msgstr "Continuar:"
658
+
659
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
660
+ msgid "Latest from RocketGeek"
661
+ msgstr ""
662
+
663
+ #: includes/admin/dialogs.php:224
664
+ msgid "Like WP-Members?"
665
+ msgstr ""
666
+
667
+ #: includes/admin/dialogs.php:225
668
+ #, php-format
669
+ msgid ""
670
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
671
+ "%s rating. Thanks!!"
672
+ msgstr ""
673
+
674
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
675
+ msgid "Latest from ButlerBlog"
676
+ msgstr ""
677
+
678
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
679
+ #, php-format
680
+ msgid "See the %sUsers Guide on CAPTCHA%s."
681
+ msgstr ""
682
+
683
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
684
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
685
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
686
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
687
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
688
+ msgid "Need help?"
689
+ msgstr ""
690
+
691
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
692
+ msgid "Manage reCAPTCHA Options"
693
+ msgstr "Gestionar les opcions de reCAPTCHA"
694
+
695
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
696
+ msgid ""
697
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
698
+ "while blocking spam on your blog."
699
+ msgstr ""
700
+ "reCAPTCHA és un servei gratuit i accessible que ajuda als registres digitals "
701
+ "mentre bloqueja el spam del seu blog."
702
+
703
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
704
+ #, php-format
705
+ msgid ""
706
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
707
+ "that they are a human. This verifies that they are not a spambot while also "
708
+ "correcting the automatic scans of old books. So you get less spam, and the "
709
+ "world gets accurately digitized books. Everybody wins! For details, visit "
710
+ "the %s reCAPTCHA website%s"
711
+ msgstr ""
712
+ "reCAPTCHA pregunta als usuaris una clau de dues paraules mostrades en una "
713
+ "imatge com a prova de que som humans. Això verifica que no som robots de "
714
+ "spam inscrivint-nos automàticament. Així s'aconseguirà menys spam i més "
715
+ "exactitud en els registres. Tothom hi guanya! Per a més informació, visiteu "
716
+ "el %s lloc web de reCAPTCHA %s"
717
+
718
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
719
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
720
+ msgid "reCAPTCHA Keys"
721
+ msgstr "Claus de reCAPTCHA"
722
+
723
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
724
+ #, php-format
725
+ msgid ""
726
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
727
+ "key. You can sign up for a %s free reCAPTCHA key%s"
728
+ msgstr ""
729
+ "reCAPTCHA requereix una clau d'encriptació pública y privada. Pot apuntar-se "
730
+ "per %s per aconseguir claus gratuïtes%s."
731
+
732
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
733
+ msgid "Public Key"
734
+ msgstr "Clau pública"
735
+
736
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
737
+ msgid "Private Key"
738
+ msgstr "Clau privada"
739
+
740
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
741
+ msgid "Choose Theme"
742
+ msgstr "Escull el tema"
743
+
744
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
745
+ msgid "Red"
746
+ msgstr "Vermell"
747
+
748
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
749
+ msgid "White"
750
+ msgstr "Blanc"
751
+
752
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
753
+ msgid "Black Glass"
754
+ msgstr "Negre cristall"
755
+
756
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
757
+ msgid "Clean"
758
+ msgstr "Clar"
759
+
760
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
761
+ #, php-format
762
+ msgid ""
763
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
764
+ "key. You can sign up for a %s free reCAPTCHA key%s"
765
+ msgstr ""
766
+
767
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
768
+ msgid "Site Key"
769
+ msgstr ""
770
+
771
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
772
+ msgid "Secret Key"
773
+ msgstr ""
774
+
775
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
776
+ msgid "Characters for image"
777
+ msgstr ""
778
+
779
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
780
+ msgid "Number of characters"
781
+ msgstr ""
782
+
783
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
784
+ msgid "Image dimensions"
785
+ msgstr ""
786
+
787
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
788
+ msgid "Width"
789
+ msgstr ""
790
+
791
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
792
+ msgid "Height"
793
+ msgstr ""
794
+
795
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
796
+ msgid "Font color of characters"
797
+ msgstr ""
798
+
799
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
800
+ msgid "Background color of image"
801
+ msgstr ""
802
+
803
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
804
+ msgid "Font size"
805
+ msgstr ""
806
+
807
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
808
+ msgid "Width between characters"
809
+ msgstr ""
810
+
811
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
812
+ msgid "Image type"
813
+ msgstr "Tipus d'Imatge"
814
+
815
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
816
+ msgid ""
817
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
818
+ "installed and activated."
819
+ msgstr ""
820
+
821
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
822
+ msgid "Update CAPTCHA Settings"
823
+ msgstr "Actualizar configuració de CAPTCHA"
824
+
825
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
826
+ msgid "CAPTCHA was updated for WP-Members"
827
+ msgstr "CAPTCHA s'ha actualitzat per WP-Members"
828
+
829
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
830
+ msgid "Dialogs and Error Messages"
831
+ msgstr "Diàlegs i missatges d'error"
832
+
833
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
834
+ #, php-format
835
+ msgid ""
836
+ "You can customize the text for dialogs and error messages. Simple HTML is "
837
+ "allowed %s etc."
838
+ msgstr ""
839
+ "Pot personalitzar els textes pels diàlegs i els missatges d'error. Es permet "
840
+ "HTML simple %s etc."
841
+
842
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
843
+ msgid "Terms of Service (TOS)"
844
+ msgstr "Condicions d'ús"
845
+
846
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
847
+ msgid "Update Dialogs"
848
+ msgstr "Actualitza els diàlegs"
849
+
850
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
851
+ msgid "WP-Members dialogs were updated"
852
+ msgstr "Els diàlegs de WP-Members s'han actualitzat"
853
+
854
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
855
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
856
+ msgid "WP-Members Dropin settings were updated"
857
+ msgstr ""
858
+
859
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
860
+ msgid "Manage Dropins"
861
+ msgstr ""
862
+
863
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
864
+ msgid "Current dropin folder: "
865
+ msgstr ""
866
+
867
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
868
+ msgid ""
869
+ "You can change location of the dropin folder using the "
870
+ "<code>wpmem_dropin_folder</code> filter."
871
+ msgstr ""
872
+
873
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
874
+ msgid "Email Messages"
875
+ msgstr "Missatges d'email"
876
+
877
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
878
+ msgid "You can customize the content of the emails sent by the plugin."
879
+ msgstr "Pots personalitzar el contingut dels emails enviats per el plugin."
880
+
881
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
882
+ msgid "A list of shortcodes is available here."
883
+ msgstr "En aquesta pàgina podeu trobar una llista de codis."
884
+
885
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
886
+ msgid "Set a custom email address"
887
+ msgstr "Configureu una adreça de correu electrònic personalitzada"
888
+
889
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
890
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
891
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
892
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
893
+ msgid "(optional)"
894
+ msgstr "(opcional)"
895
+
896
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
897
+ msgid "Set a custom email name"
898
+ msgstr "Establiu un nom de correu electrònic personalitzat"
899
+
900
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
901
+ msgid "Email Signature"
902
+ msgstr "Signatura email"
903
+
904
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
905
+ msgid "Update Emails"
906
+ msgstr "Actualizar emails"
907
+
908
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
909
+ msgid "WP-Members emails were updated"
910
+ msgstr "Els emails de WP-Members s'han actualitzat"
911
+
912
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
913
+ #: includes/class-wp-members.php:1498
914
+ msgid "No fields selected for deletion"
915
+ msgstr ""
916
+
917
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
918
+ msgid "Are you sure you want to delete the following fields?"
919
+ msgstr ""
920
+
921
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
922
+ msgid "Fields deleted"
923
+ msgstr ""
924
+
925
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
926
+ msgid "Field Manager Documentation"
927
+ msgstr ""
928
+
929
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
930
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
931
+ #: includes/class-wp-members-forms.php:1626
932
+ #: includes/class-wp-members-forms.php:1803
933
+ #: includes/class-wp-members-user-profile.php:144
934
+ msgid "(required)"
935
+ msgstr "(requerit)"
936
+
937
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
938
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
939
+ msgid "Edit Field"
940
+ msgstr "Edita Camp"
941
+
942
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
943
+ msgid "Add a Field"
944
+ msgstr "Afegir un camp"
945
+
946
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
947
+ msgid "Field Label"
948
+ msgstr "Etiqueta del camp"
949
+
950
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
951
+ msgid "The name of the field as it will be displayed to the user."
952
+ msgstr ""
953
+
954
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
955
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
956
+ msgid "Meta Key"
957
+ msgstr ""
958
+
959
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
960
+ msgid ""
961
+ "The database meta value for the field. It must be unique and contain no "
962
+ "spaces (underscores are ok)."
963
+ msgstr ""
964
+
965
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
966
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
967
+ msgid "Field Type"
968
+ msgstr "Tipus de camp"
969
+
970
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
971
+ msgid "text"
972
+ msgstr "text"
973
+
974
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
975
+ msgid "email"
976
+ msgstr ""
977
+
978
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
979
+ msgid "textarea"
980
+ msgstr "àrea de text"
981
+
982
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
983
+ msgid "checkbox"
984
+ msgstr "checkbox"
985
+
986
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
987
+ msgid "multiple checkbox"
988
+ msgstr ""
989
+
990
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
991
+ msgid "select (dropdown)"
992
+ msgstr ""
993
+
994
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
995
+ msgid "multiple select"
996
+ msgstr ""
997
+
998
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
999
+ msgid "radio group"
1000
+ msgstr ""
1001
+
1002
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
1003
+ msgid "password"
1004
+ msgstr "Contrasenya "
1005
+
1006
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
1007
+ msgid "image"
1008
+ msgstr ""
1009
+
1010
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
1011
+ msgid "file"
1012
+ msgstr ""
1013
+
1014
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
1015
+ msgid "url"
1016
+ msgstr ""
1017
+
1018
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1019
+ msgid "number"
1020
+ msgstr ""
1021
+
1022
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1023
+ msgid "date"
1024
+ msgstr ""
1025
+
1026
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1027
+ msgid "hidden"
1028
+ msgstr ""
1029
+
1030
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1031
+ msgid "membership"
1032
+ msgstr ""
1033
+
1034
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1035
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1036
+ msgid "Display?"
1037
+ msgstr "Mostrar?"
1038
+
1039
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1040
+ msgid "This field is always displayed"
1041
+ msgstr ""
1042
+
1043
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1044
+ msgid "Required?"
1045
+ msgstr "Obligatori?"
1046
+
1047
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1048
+ msgid "This field is always required"
1049
+ msgstr ""
1050
+
1051
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1052
+ msgid "Allow HTML?"
1053
+ msgstr ""
1054
+
1055
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1056
+ msgid "Placeholder"
1057
+ msgstr ""
1058
+
1059
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1060
+ msgid "Pattern"
1061
+ msgstr ""
1062
+
1063
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1064
+ msgid "Title"
1065
+ msgstr ""
1066
+
1067
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1068
+ msgid "Minimum Value"
1069
+ msgstr ""
1070
+
1071
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1072
+ msgid "Maximum Value"
1073
+ msgstr ""
1074
+
1075
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1076
+ msgid "Rows"
1077
+ msgstr ""
1078
+
1079
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1080
+ msgid "Columns"
1081
+ msgstr ""
1082
+
1083
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1084
+ msgid "Accepted file types:"
1085
+ msgstr ""
1086
+
1087
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1088
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1089
+ msgstr ""
1090
+
1091
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1092
+ msgid "Checked by default?"
1093
+ msgstr "Marcada per defecte?"
1094
+
1095
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1096
+ msgid "Stored value if checked:"
1097
+ msgstr "Valor emmagatzemat si s'activa:"
1098
+
1099
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1100
+ msgid "Stored values delimiter:"
1101
+ msgstr ""
1102
+
1103
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1104
+ msgid "Values (Displayed|Stored):"
1105
+ msgstr ""
1106
+
1107
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1108
+ msgid "Options should be Option Name|option_value,"
1109
+ msgstr "Les opcions han de ser Option Name|option_value,"
1110
+
1111
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1112
+ msgid "Visit plugin site for more information"
1113
+ msgstr "Per a més informació visita la pàgina del plugin "
1114
+
1115
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1116
+ msgid "Value"
1117
+ msgstr ""
1118
+
1119
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1120
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1121
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1122
+ msgid "Add Field"
1123
+ msgstr "afegir camp"
1124
+
1125
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1126
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1127
+ msgid "Return to Fields Table"
1128
+ msgstr ""
1129
+
1130
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1131
+ msgid "Drag and drop to reorder fields"
1132
+ msgstr ""
1133
+
1134
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1135
+ msgid "Registration Date"
1136
+ msgstr "Data de Registre"
1137
+
1138
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1139
+ msgid "Active"
1140
+ msgstr "Activar"
1141
+
1142
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1143
+ msgid "Registration IP"
1144
+ msgstr "Adreça IP"
1145
+
1146
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1147
+ msgid "Subscription Type"
1148
+ msgstr ""
1149
+
1150
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1151
+ msgid "Manage Fields"
1152
+ msgstr "Gestionar camps"
1153
+
1154
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1155
+ msgid "WP-Members fields were updated"
1156
+ msgstr "Els camps dels WP-Members s'han actualitzat"
1157
+
1158
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1159
+ msgid "Field Label is required. Nothing was updated."
1160
+ msgstr ""
1161
+
1162
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1163
+ msgid "Meta Key is required. Nothing was updated."
1164
+ msgstr ""
1165
+
1166
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1167
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1168
+ msgstr ""
1169
+
1170
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1171
+ msgid "A field with that meta key already exists"
1172
+ msgstr ""
1173
+
1174
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1175
+ #, php-format
1176
+ msgid ""
1177
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1178
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1179
+ "Field was not added."
1180
+ msgstr ""
1181
+
1182
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1183
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1184
+ msgstr ""
1185
+ "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha actualitzat."
1186
+
1187
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1188
+ msgid "A value is required for hidden fields. Nothing was updated."
1189
+ msgstr ""
1190
+
1191
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1192
+ #, php-format
1193
+ msgid "%s was added"
1194
+ msgstr ""
1195
+
1196
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1197
+ #, php-format
1198
+ msgid "%s was updated"
1199
+ msgstr ""
1200
+
1201
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1202
+ msgid "Form field order updated."
1203
+ msgstr ""
1204
+
1205
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1206
+ #, php-format
1207
+ msgid "%sChange%s or %sFilter%s this address"
1208
+ msgstr ""
1209
+
1210
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1211
+ #, php-format
1212
+ msgid "See the %sUsers Guide on plugin options%s."
1213
+ msgstr ""
1214
+
1215
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1216
+ msgid "Manage Options"
1217
+ msgstr "Configurar opcions"
1218
+
1219
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1220
+ msgid "Content"
1221
+ msgstr ""
1222
+
1223
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1224
+ msgid "Content Blocking"
1225
+ msgstr ""
1226
+
1227
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1228
+ msgid "Do not block"
1229
+ msgstr ""
1230
+
1231
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1232
+ msgid "Show Excerpts"
1233
+ msgstr ""
1234
+
1235
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1236
+ msgid "Show Login Form"
1237
+ msgstr ""
1238
+
1239
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1240
+ msgid "Show Registration Form"
1241
+ msgstr ""
1242
+
1243
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1244
+ msgid "Auto Excerpt:"
1245
+ msgstr "Acte Extracte:"
1246
+
1247
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1248
+ msgid "Number of words in excerpt:"
1249
+ msgstr ""
1250
+
1251
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1252
+ msgid "Custom read more link (optional):"
1253
+ msgstr ""
1254
+
1255
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1256
+ msgid "Time-based expiration"
1257
+ msgstr "Venciment en funció del temps"
1258
+
1259
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1260
+ msgid "Allows for access to expire"
1261
+ msgstr "Permet que l'accés expiri"
1262
+
1263
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1264
+ msgid "Trial period"
1265
+ msgstr "Període de prova"
1266
+
1267
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1268
+ msgid "Allows for a trial period"
1269
+ msgstr "Permet un període de prova"
1270
+
1271
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1272
+ msgid "Subscription Settings"
1273
+ msgstr ""
1274
+
1275
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1276
+ msgid "Other Settings"
1277
+ msgstr ""
1278
+
1279
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1280
+ msgid "Activation"
1281
+ msgstr ""
1282
+
1283
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1284
+ msgid ""
1285
+ "Send initial activation link and password reset link instead of new "
1286
+ "password. (Requires additional configuration)"
1287
+ msgstr ""
1288
+
1289
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1290
+ msgid "Enable Products"
1291
+ msgstr ""
1292
+
1293
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1294
+ msgid "Enables creation of different membership products"
1295
+ msgstr ""
1296
+
1297
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1298
+ msgid "Clone menus"
1299
+ msgstr ""
1300
+
1301
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1302
+ msgid "Enables logged in menus"
1303
+ msgstr ""
1304
+
1305
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1306
+ msgid "Notify admin"
1307
+ msgstr "Notificar a l'administrador"
1308
+
1309
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1310
+ #, php-format
1311
+ msgid "Notify %s for each new registration? %s"
1312
+ msgstr "Enviar un email a %s per a cada nou registre? %s"
1313
+
1314
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1315
+ msgid "Moderate registration"
1316
+ msgstr "Confirmar registre"
1317
+
1318
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1319
+ msgid "Holds new registrations for admin approval"
1320
+ msgstr "Els nous registres seran aprovats per l'administrador"
1321
+
1322
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1323
+ msgid "Ignore warning messages"
1324
+ msgstr "Ignorar missatges d'advertència"
1325
+
1326
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1327
+ msgid "Ignores WP-Members warning messages in the admin panel"
1328
+ msgstr "Ignorar missatges de perill de WP-Members en el panell d'administració"
1329
+
1330
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1331
+ msgid "Attribution"
1332
+ msgstr ""
1333
+
1334
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1335
+ msgid ""
1336
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
1337
+ msgstr ""
1338
+
1339
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1340
+ msgid "Enable CAPTCHA"
1341
+ msgstr "Permetre CAPTCHA"
1342
+
1343
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1344
+ msgid "reCAPTCHA v2"
1345
+ msgstr ""
1346
+
1347
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1348
+ msgid "reCAPTCHA v3"
1349
+ msgstr ""
1350
+
1351
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1352
+ msgid "Really Simple CAPTCHA"
1353
+ msgstr ""
1354
+
1355
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1356
+ msgid "Login Page:"
1357
+ msgstr ""
1358
+
1359
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1360
+ msgid "Specify a login page (optional)"
1361
+ msgstr ""
1362
+
1363
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1364
+ msgid "Register Page:"
1365
+ msgstr "Registrar la URL de la pàgina"
1366
+
1367
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1368
+ msgid "For creating a register link in the login form"
1369
+ msgstr ""
1370
+
1371
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1372
+ msgid "User Profile Page:"
1373
+ msgstr "Fitxa d'usuari de la pàgina:"
1374
+
1375
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1376
+ msgid "For creating a forgot password link in the login form"
1377
+ msgstr ""
1378
+
1379
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1380
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1381
+ msgid "Stylesheet"
1382
+ msgstr ""
1383
+
1384
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1385
+ msgid "Custom Stylesheet:"
1386
+ msgstr ""
1387
+
1388
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1389
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1390
+ msgid "Update Settings"
1391
+ msgstr "Actualizar configuració"
1392
+
1393
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1394
+ msgid "Custom Post Types"
1395
+ msgstr ""
1396
+
1397
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1398
+ msgid "Add to WP-Members Settings"
1399
+ msgstr ""
1400
+
1401
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1402
+ msgid ""
1403
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not "
1404
+ "all of them will function exactly the same way. WP-Members will certainly "
1405
+ "work with any post type that operate like a post or a page; but you will "
1406
+ "need to review any custom post type added to determine that it functions the "
1407
+ "way you expect."
1408
+ msgstr ""
1409
+
1410
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1411
+ msgid "Close"
1412
+ msgstr ""
1413
+
1414
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1415
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1416
+ msgid "WP-Members Settings"
1417
+ msgstr ""
1418
+
1419
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1420
+ msgid ""
1421
+ "The following is your WP-Members settings information if needed for support."
1422
+ msgstr ""
1423
+
1424
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1425
+ msgid "Click to Copy"
1426
+ msgstr ""
1427
+
1428
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1429
+ msgid "Custom Post Type settings were updated"
1430
+ msgstr ""
1431
+
1432
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1433
+ msgid "WP-Members settings were updated"
1434
+ msgstr "La configuració de WP-Members s'ha actualitzat"
1435
+
1436
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1437
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1438
+ msgid "USE CUSTOM URL BELOW"
1439
+ msgstr ""
1440
+
1441
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1442
+ msgid "Select a page"
1443
+ msgstr ""
1444
+
1445
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1446
+ msgid "Name"
1447
+ msgstr ""
1448
+
1449
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1450
+ msgid "Enabled"
1451
+ msgstr ""
1452
+
1453
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1454
+ msgid "File"
1455
+ msgstr ""
1456
+
1457
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1458
+ msgid "Version"
1459
+ msgstr ""
1460
+
1461
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1462
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1463
+ msgid "Description"
1464
+ msgstr ""
1465
+
1466
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1467
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1468
+ msgid "Save Settings"
1469
+ msgstr ""
1470
+
1471
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1472
+ msgid "delete"
1473
+ msgstr ""
1474
+
1475
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1476
+ msgid "Display Label"
1477
+ msgstr ""
1478
+
1479
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1480
+ msgid "Required"
1481
+ msgstr ""
1482
+
1483
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1484
+ msgid "Users Screen"
1485
+ msgstr ""
1486
+
1487
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1488
+ msgid "Users Search"
1489
+ msgstr ""
1490
+
1491
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1492
+ msgid "Sort"
1493
+ msgstr ""
1494
+
1495
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1496
+ msgid "Delete Selected"
1497
+ msgstr ""
1498
+
1499
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1500
+ msgid "log in"
1501
+ msgstr "Identifica't"
1502
+
1503
+ #: includes/api/api.php:329
1504
+ msgid "log out"
1505
+ msgstr ""
1506
+
1507
+ #: includes/class-wp-members-activation-link.php:21
1508
+ msgid "Click to activate your account: "
1509
+ msgstr ""
1510
+
1511
+ #: includes/class-wp-members-activation-link.php:22
1512
+ msgid "Thank you for activating your account."
1513
+ msgstr ""
1514
+
1515
+ #: includes/class-wp-members-activation-link.php:23
1516
+ msgid "Activation key was expired or invalid"
1517
+ msgstr ""
1518
+
1519
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1520
+ #: includes/deprecated.php:501
1521
+ msgid "You have entered an incorrect code value. Please try again."
1522
+ msgstr ""
1523
+
1524
+ #: includes/class-wp-members-forms.php:1048
1525
+ #: includes/class-wp-members-forms.php:1646 includes/class-wp-members.php:1538
1526
+ #, php-format
1527
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1528
+ msgstr ""
1529
+
1530
+ #: includes/class-wp-members-forms.php:1049
1531
+ #: includes/class-wp-members-forms.php:1647 includes/class-wp-members.php:1489
1532
+ msgid "TOS"
1533
+ msgstr "Condicions d'ús"
1534
+
1535
+ #: includes/class-wp-members-forms.php:1049
1536
+ #: includes/class-wp-members-forms.php:1647 templates/tos.php:20
1537
+ msgid "Terms of Service"
1538
+ msgstr "Condicions d'us"
1539
+
1540
+ #: includes/class-wp-members-forms.php:1868
1541
+ #: includes/class-wp-members-user-profile.php:473
1542
+ msgid "Activate this user?"
1543
+ msgstr "Activar usuari?"
1544
+
1545
+ #: includes/class-wp-members-menus.php:131
1546
+ msgid "Display"
1547
+ msgstr ""
1548
+
1549
+ #: includes/class-wp-members-menus.php:139
1550
+ msgid "Logged In Users"
1551
+ msgstr ""
1552
+
1553
+ #: includes/class-wp-members-menus.php:146
1554
+ msgid "Logged Out Users"
1555
+ msgstr ""
1556
+
1557
+ #: includes/class-wp-members-menus.php:153
1558
+ msgid "All Users"
1559
+ msgstr ""
1560
+
1561
+ #: includes/class-wp-members-menus.php:167
1562
+ #, php-format
1563
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wp-members-menus.php:169
1567
+ msgid "Restrict menu item to a membership product"
1568
+ msgstr ""
1569
+
1570
+ #: includes/class-wp-members-products.php:302
1571
+ msgid "Product"
1572
+ msgstr ""
1573
+
1574
+ #: includes/class-wp-members-products.php:303
1575
+ msgid "Products"
1576
+ msgstr ""
1577
+
1578
+ #: includes/class-wp-members-products.php:309
1579
+ #, php-format
1580
+ msgid "All %s"
1581
+ msgstr ""
1582
+
1583
+ #: includes/class-wp-members-products.php:310
1584
+ #, php-format
1585
+ msgid "Add New %s"
1586
+ msgstr ""
1587
+
1588
+ #: includes/class-wp-members-products.php:311
1589
+ msgid "Add New"
1590
+ msgstr ""
1591
+
1592
+ #: includes/class-wp-members-products.php:312
1593
+ #, php-format
1594
+ msgid "New %s"
1595
+ msgstr ""
1596
+
1597
+ #: includes/class-wp-members-products.php:313
1598
+ #, php-format
1599
+ msgid "Edit %s"
1600
+ msgstr ""
1601
+
1602
+ #: includes/class-wp-members-products.php:314
1603
+ #, php-format
1604
+ msgid "Update %s"
1605
+ msgstr ""
1606
+
1607
+ #: includes/class-wp-members-products.php:315
1608
+ #: includes/class-wp-members-products.php:316
1609
+ #, php-format
1610
+ msgid "View %s"
1611
+ msgstr ""
1612
+
1613
+ #: includes/class-wp-members-products.php:317
1614
+ #, php-format
1615
+ msgid "Search %s"
1616
+ msgstr ""
1617
+
1618
+ #: includes/class-wp-members-products.php:318
1619
+ msgid "Not found"
1620
+ msgstr ""
1621
+
1622
+ #: includes/class-wp-members-products.php:319
1623
+ msgid "Not found in Trash"
1624
+ msgstr ""
1625
+
1626
+ #: includes/class-wp-members-products.php:320
1627
+ msgid "Insert into item"
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-wp-members-products.php:321
1631
+ #, php-format
1632
+ msgid "Save %s Details"
1633
+ msgstr ""
1634
+
1635
+ #: includes/class-wp-members-products.php:324
1636
+ msgid "Membership Product"
1637
+ msgstr ""
1638
+
1639
+ #: includes/class-wp-members-products.php:325
1640
+ msgid "WP-Members Membership Products"
1641
+ msgstr ""
1642
+
1643
+ #: includes/class-wp-members-pwd-reset.php:31
1644
+ #: includes/class-wp-members-pwd-reset.php:32
1645
+ msgid ""
1646
+ "Sorry, no password reset key was found. Please check your email and try "
1647
+ "again."
1648
+ msgstr ""
1649
+
1650
+ #: includes/class-wp-members-pwd-reset.php:33
1651
+ msgid "Sorry, the password reset key is expired."
1652
+ msgstr ""
1653
+
1654
+ #: includes/class-wp-members-shortcodes.php:147
1655
+ msgid ""
1656
+ "This is a generic message to display the form message dialog in the "
1657
+ "Customizer."
1658
+ msgstr ""
1659
+
1660
+ #: includes/class-wp-members-shortcodes.php:158
1661
+ #: includes/class-wp-members.php:1566 includes/deprecated - Copy.php:695
1662
+ msgid "There was an error with the CAPTCHA form."
1663
+ msgstr "Hi hagut un error amb el formulari de CAPTCHA"
1664
+
1665
+ #: includes/class-wp-members-shortcodes.php:717
1666
+ msgid "Click here to log out."
1667
+ msgstr ""
1668
+
1669
+ #: includes/class-wp-members-shortcodes.php:786
1670
+ #: includes/class-wp-members-user.php:172 includes/class-wp-members.php:1540
1671
+ #: includes/class-wp-members.php:1590
1672
+ msgid "Register"
1673
+ msgstr ""
1674
+
1675
+ #: includes/class-wp-members-shortcodes.php:789
1676
+ #: includes/class-wp-members.php:1508
1677
+ msgid "Log In"
1678
+ msgstr ""
1679
+
1680
+ #: includes/class-wp-members-user-profile.php:38
1681
+ msgid "WP-Members Additional Fields"
1682
+ msgstr "WP-Members camps adicionals"
1683
+
1684
+ #: includes/class-wp-members-user-profile.php:38
1685
+ msgid "Additional Information"
1686
+ msgstr "Informació Addicional"
1687
+
1688
+ #: includes/class-wp-members-user-profile.php:463
1689
+ msgid "Reactivate this user?"
1690
+ msgstr "Voleu tornar a activar aquest usuari?"
1691
+
1692
+ #: includes/class-wp-members-user-profile.php:468
1693
+ msgid "Deactivate this user?"
1694
+ msgstr "Desactivar usuari?"
1695
+
1696
+ #: includes/class-wp-members-user-profile.php:522
1697
+ msgid "IP @ registration"
1698
+ msgstr "Adreça IP"
1699
+
1700
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1701
+ msgid "There was an error processing the form."
1702
+ msgstr "Hi hagut un error amb el formulari"
1703
+
1704
+ #: includes/class-wp-members-user.php:1118
1705
+ msgid "<strong>ERROR</strong>: User has not been activated."
1706
+ msgstr "<strong>ERROR</strong>: L'usuari no ha estat activat."
1707
+
1708
+ #: includes/class-wp-members-widget.php:24
1709
+ msgid "Displays the WP-Members sidebar login."
1710
+ msgstr ""
1711
+
1712
+ #: includes/class-wp-members-widget.php:39
1713
+ #: includes/class-wp-members-widget.php:82
1714
+ msgid "Login Status"
1715
+ msgstr "Estat de la identificació"
1716
+
1717
+ #: includes/class-wp-members-widget.php:46
1718
+ msgid "Title:"
1719
+ msgstr "Titol:"
1720
+
1721
+ #: includes/class-wp-members-widget.php:50
1722
+ msgid "Redirect to (optional):"
1723
+ msgstr ""
1724
+
1725
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1726
+ msgid "You must be logged in to view this content."
1727
+ msgstr ""
1728
+
1729
+ #: includes/class-wp-members.php:1044
1730
+ msgid "The page you are looking for does not exist"
1731
+ msgstr ""
1732
+
1733
+ #: includes/class-wp-members.php:1436
1734
+ #, php-format
1735
+ msgid ""
1736
+ "You have a linked page in the WP-Members page settings that corresponds to a "
1737
+ "post ID that no longer exists. Please %s review and update the %s page "
1738
+ "settings %s."
1739
+ msgstr ""
1740
+
1741
+ #: includes/class-wp-members.php:1474
1742
+ msgid "First Name"
1743
+ msgstr "Nom"
1744
+
1745
+ #: includes/class-wp-members.php:1475
1746
+ msgid "Last Name"
1747
+ msgstr "Cognoms"
1748
+
1749
+ #: includes/class-wp-members.php:1476
1750
+ msgid "Address 1"
1751
+ msgstr "Adreça (línia 1)"
1752
+
1753
+ #: includes/class-wp-members.php:1477
1754
+ msgid "Address 2"
1755
+ msgstr "Adreça (línia 2)"
1756
+
1757
+ #: includes/class-wp-members.php:1478
1758
+ msgid "City"
1759
+ msgstr "Ciutat"
1760
+
1761
+ #: includes/class-wp-members.php:1479
1762
+ msgid "State"
1763
+ msgstr "Província"
1764
+
1765
+ #: includes/class-wp-members.php:1480
1766
+ msgid "Zip"
1767
+ msgstr "CP"
1768
+
1769
+ #: includes/class-wp-members.php:1481
1770
+ msgid "Country"
1771
+ msgstr "País"
1772
+
1773
+ #: includes/class-wp-members.php:1482
1774
+ msgid "Day Phone"
1775
+ msgstr "Telèfon"
1776
+
1777
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1778
+ msgid "Email"
1779
+ msgstr ""
1780
+
1781
+ #: includes/class-wp-members.php:1484
1782
+ msgid "Confirm Email"
1783
+ msgstr ""
1784
+
1785
+ #: includes/class-wp-members.php:1485
1786
+ msgid "Website"
1787
+ msgstr "Lloc web"
1788
+
1789
+ #: includes/class-wp-members.php:1486
1790
+ msgid "Biographical Info"
1791
+ msgstr "Informació biogràfica"
1792
+
1793
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1794
+ #: includes/class-wp-members.php:1587
1795
+ msgid "Password"
1796
+ msgstr ""
1797
+
1798
+ #: includes/class-wp-members.php:1488
1799
+ msgid "Confirm Password"
1800
+ msgstr ""
1801
+
1802
+ #: includes/class-wp-members.php:1499
1803
+ msgid "You are not logged in."
1804
+ msgstr "No ha entrat en"
1805
+
1806
+ #: includes/class-wp-members.php:1505
1807
+ msgid "Existing Users Log In"
1808
+ msgstr "Usuaris Existents Entrada"
1809
+
1810
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1811
+ msgid "Username or Email"
1812
+ msgstr ""
1813
+
1814
+ #: includes/class-wp-members.php:1509
1815
+ msgid "Remember Me"
1816
+ msgstr ""
1817
+
1818
+ #: includes/class-wp-members.php:1510
1819
+ msgid "Forgot password?"
1820
+ msgstr "Has oblidat la contrasenya?"
1821
+
1822
+ #: includes/class-wp-members.php:1511
1823
+ msgid "Click here to reset"
1824
+ msgstr "Prem aquí per reiniciar"
1825
+
1826
+ #: includes/class-wp-members.php:1512
1827
+ msgid "New User?"
1828
+ msgstr "Nou usuari?"
1829
+
1830
+ #: includes/class-wp-members.php:1513
1831
+ msgid "Click here to register"
1832
+ msgstr "Prem aquí per registrar-te"
1833
+
1834
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1835
+ msgid "Change Password"
1836
+ msgstr "Canvia la contrasenya"
1837
+
1838
+ #: includes/class-wp-members.php:1517
1839
+ msgid "New password"
1840
+ msgstr ""
1841
+
1842
+ #: includes/class-wp-members.php:1518
1843
+ msgid "Confirm new password"
1844
+ msgstr ""
1845
+
1846
+ #: includes/class-wp-members.php:1519
1847
+ msgid "Update Password"
1848
+ msgstr "Actualitza la contrasenya"
1849
+
1850
+ #: includes/class-wp-members.php:1522
1851
+ msgid "Reset Forgotten Password"
1852
+ msgstr "Reinicia la contrasenya oblidada"
1853
+
1854
+ #: includes/class-wp-members.php:1525
1855
+ msgid "Reset Password"
1856
+ msgstr ""
1857
+
1858
+ #: includes/class-wp-members.php:1526
1859
+ msgid "Forgot username?"
1860
+ msgstr ""
1861
+
1862
+ #: includes/class-wp-members.php:1527
1863
+ msgid "Click here"
1864
+ msgstr ""
1865
+
1866
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
1867
+ msgid "Retrieve username"
1868
+ msgstr ""
1869
+
1870
+ #: includes/class-wp-members.php:1531
1871
+ msgid "Email Address"
1872
+ msgstr ""
1873
+
1874
+ #: includes/class-wp-members.php:1535
1875
+ msgid "New User Registration"
1876
+ msgstr "Registre d'un nou usuari"
1877
+
1878
+ #: includes/class-wp-members.php:1536
1879
+ msgid "Choose a Username"
1880
+ msgstr "Escull un nom d'usuari"
1881
+
1882
+ #: includes/class-wp-members.php:1537
1883
+ msgid "Input the code:"
1884
+ msgstr ""
1885
+
1886
+ #: includes/class-wp-members.php:1539
1887
+ msgid "Reset Form"
1888
+ msgstr "Restablir el Formulari"
1889
+
1890
+ #: includes/class-wp-members.php:1542
1891
+ msgid "Required field"
1892
+ msgstr "Camp obligatori"
1893
+
1894
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
1895
+ msgid "Edit Your Information"
1896
+ msgstr "Edita la teva informació"
1897
+
1898
+ #: includes/class-wp-members.php:1547
1899
+ msgid "Update Profile"
1900
+ msgstr "Actualitzar Perfil"
1901
+
1902
+ #: includes/class-wp-members.php:1548
1903
+ msgid "Update this file"
1904
+ msgstr ""
1905
+
1906
+ #: includes/class-wp-members.php:1551
1907
+ msgid "Login Failed!"
1908
+ msgstr "¡Error d'identificació!"
1909
+
1910
+ #: includes/class-wp-members.php:1552
1911
+ msgid "You entered an invalid username or password."
1912
+ msgstr "Ha introduit un nom d'usuari o una contrasenya incorrecta"
1913
+
1914
+ #: includes/class-wp-members.php:1553
1915
+ msgid "Click here to continue."
1916
+ msgstr "Prem aquí per continuar."
1917
+
1918
+ #: includes/class-wp-members.php:1554
1919
+ msgid "Password fields cannot be empty"
1920
+ msgstr "La contrasenya no coincideix"
1921
+
1922
+ #: includes/class-wp-members.php:1555
1923
+ msgid "Sorry, that email address was not found."
1924
+ msgstr ""
1925
+
1926
+ #: includes/class-wp-members.php:1556
1927
+ #, php-format
1928
+ msgid "An email was sent to %s with your username."
1929
+ msgstr ""
1930
+
1931
+ #: includes/class-wp-members.php:1557
1932
+ #, php-format
1933
+ msgid "Sorry, %s is a required field."
1934
+ msgstr "Disculpa, %s és un camp obligatori."
1935
+
1936
+ #: includes/class-wp-members.php:1558
1937
+ msgid "You must enter a valid email address."
1938
+ msgstr "Heu d'introduir un adreça de correu electrònic vàlida"
1939
+
1940
+ #: includes/class-wp-members.php:1559
1941
+ msgid "The username cannot include non-alphanumeric characters."
1942
+ msgstr "El nom d'usuari no pot contenir caràcters que no siguin alfanumèrics."
1943
+
1944
+ #: includes/class-wp-members.php:1560
1945
+ msgid "Sorry, username is a required field"
1946
+ msgstr "Disculpa, el nom d'usuari és obligatori"
1947
+
1948
+ #: includes/class-wp-members.php:1561
1949
+ msgid "Passwords did not match."
1950
+ msgstr "Les contrasenyes no coincideixen"
1951
+
1952
+ #: includes/class-wp-members.php:1562
1953
+ msgid "Emails did not match."
1954
+ msgstr "Les correus electrònics no coincideixen"
1955
+
1956
+ #: includes/class-wp-members.php:1563
1957
+ msgid "You must complete the CAPTCHA form."
1958
+ msgstr "Heu de completar la paraula mostrada en la imatge"
1959
+
1960
+ #: includes/class-wp-members.php:1564
1961
+ msgid "CAPTCHA was not valid."
1962
+ msgstr ""
1963
+
1964
+ #: includes/class-wp-members.php:1567
1965
+ #, php-format
1966
+ msgid ""
1967
+ "Sorry, you can only upload the following file types for the %s field: %s."
1968
+ msgstr ""
1969
+
1970
+ #: includes/class-wp-members.php:1570
1971
+ msgid "Edit My Information"
1972
+ msgstr "Editar la meva informació"
1973
+
1974
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
1975
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
1976
+ #, php-format
1977
+ msgid "You are logged in as %s"
1978
+ msgstr "S'ha identificat com %s"
1979
+
1980
+ #: includes/class-wp-members.php:1573
1981
+ msgid "Log out"
1982
+ msgstr ""
1983
+
1984
+ #: includes/class-wp-members.php:1574
1985
+ msgid "Edit profile"
1986
+ msgstr ""
1987
+
1988
+ #: includes/class-wp-members.php:1574
1989
+ msgid "Begin using the site."
1990
+ msgstr "Comença a utilitzar el web"
1991
+
1992
+ #: includes/class-wp-members.php:1576
1993
+ msgid "Click to log out"
1994
+ msgstr "Prem aquí per desconnectar-te"
1995
+
1996
+ #: includes/class-wp-members.php:1578
1997
+ msgid "click to log out"
1998
+ msgstr "Prem aquí per desconnectar-te"
1999
+
2000
+ #: includes/class-wp-members.php:1579
2001
+ msgid "Log Out"
2002
+ msgstr ""
2003
+
2004
+ #: includes/class-wp-members.php:1583
2005
+ msgid "click here to log out"
2006
+ msgstr "Prem aquí per desconnectar-te"
2007
+
2008
+ #: includes/class-wp-members.php:1584
2009
+ msgid "Login Failed!<br />You entered an invalid username or password."
2010
+ msgstr ""
2011
+ "Identificació fallada! <br />Has introduit un nom d'usuari o una contrasenya "
2012
+ "incorrectes."
2013
+
2014
+ #: includes/class-wp-members.php:1589
2015
+ msgid "Forgot?"
2016
+ msgstr "Has oblidat la contrasenya?"
2017
+
2018
+ #: includes/class-wp-members.php:1593
2019
+ msgid ""
2020
+ "This content is restricted to site members. If you are an existing user, "
2021
+ "please log in. New users may register below."
2022
+ msgstr ""
2023
+ "Aquest contingut és exclussiu pels usuaris registrats. Si ja ets un usuari "
2024
+ "registrat, siusplau identifica't. Si és un nou usuari, siusplau registra't. "
2025
+
2026
+ #: includes/class-wp-members.php:1594
2027
+ msgid ""
2028
+ "Congratulations! Your registration was successful.<br /><br />You may now "
2029
+ "log in using the password that was emailed to you."
2030
+ msgstr ""
2031
+ "Felicitats! El procés de registre s'ha completat. <br /><br />Pots iniciar "
2032
+ "la sessió identifican-te amb la contrasenya que ha estat enviada a la teva "
2033
+ "adreça de correu. "
2034
+
2035
+ #: includes/class-wp-members.php:1597
2036
+ msgid "Sorry, that username is taken, please try another."
2037
+ msgstr ""
2038
+ "Ho sentim, aquest nom d'usuari ja està agafat, siusplau prova'n un altre. "
2039
+
2040
+ #: includes/class-wp-members.php:1598
2041
+ msgid ""
2042
+ "Sorry, that email address already has an account.<br />Please try another."
2043
+ msgstr "Ho sentim, aquest email ja està agafat, siusplau prova'n un altre. "
2044
+
2045
+ #: includes/class-wp-members.php:1599
2046
+ msgid "Your information was updated!"
2047
+ msgstr "La teva informació ha estat actualitzada!"
2048
+
2049
+ #: includes/class-wp-members.php:1602
2050
+ msgid "Passwords did not match.<br /><br />Please try again."
2051
+ msgstr ""
2052
+ "Les contrasenyes no coincideixen<br /><br />Siusplau intenta-ho de nou."
2053
+
2054
+ #: includes/class-wp-members.php:1603
2055
+ msgid "Password successfully changed!"
2056
+ msgstr ""
2057
+
2058
+ #: includes/class-wp-members.php:1604
2059
+ msgid "Either the username or email address do not exist in our records."
2060
+ msgstr "El nom d'usuari o email no existeixen en la nostra base de dades."
2061
+
2062
+ #: includes/class-wp-members.php:1605
2063
+ msgid ""
2064
+ "Password successfully reset!<br /><br />An email containing a new password "
2065
+ "has been sent to the email address on file for your account."
2066
+ msgstr ""
2067
+
2068
+ #: includes/class-wp-members.php:1607
2069
+ msgid "This content requires the following membership: "
2070
+ msgstr ""
2071
+
2072
+ #: includes/class-wp-members.php:1608
2073
+ msgid "This content requires one of the following memberships: "
2074
+ msgstr ""
2075
+
2076
+ #: includes/class-wp-members.php:1721
2077
+ msgid "Show forms as logged out"
2078
+ msgstr ""
2079
+
2080
+ #: includes/class-wp-members.php:1730
2081
+ msgid "Show form message dialog"
2082
+ msgstr ""
2083
+
2084
+ #: includes/class-wp-members.php:1838
2085
+ msgid "(more&hellip;)"
2086
+ msgstr ""
2087
+
2088
+ #: includes/cli/class-wp-members-cli.php:17
2089
+ #, php-format
2090
+ msgid "User: %s"
2091
+ msgstr ""
2092
+
2093
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2094
+ msgid "We were unable to validate the public key."
2095
+ msgstr "No s'ha pogut validar la clau pública."
2096
+
2097
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2098
+ msgid "We were unable to validate the private key."
2099
+ msgstr "No s'ha pogut validar la clau privada."
2100
+
2101
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2102
+ msgid "The challenge parameter of the verify script was incorrect."
2103
+ msgstr "El paràmetre de verificació del script és incorrecte."
2104
+
2105
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2106
+ msgid "The CAPTCHA solution was incorrect."
2107
+ msgstr "La resolució de CAPTCHA és incorrecte."
2108
+
2109
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2110
+ msgid "The parameters to verify were incorrect"
2111
+ msgstr "Els paràmetres a verificar són incorrectes"
2112
+
2113
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2114
+ msgid ""
2115
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2116
+ msgstr ""
2117
+ "Les claus de reCAPTCHA van associades a un domini específic per raons de "
2118
+ "seguretat. "
2119
+
2120
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2121
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2122
+ msgstr "El servidor de reCAPTCHA no respond, siusplau intenta-ho de nou."
2123
+
2124
+ #. translators: %s: title of menu item which is invalid
2125
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2126
+ #, php-format
2127
+ msgid "%s (Invalid)"
2128
+ msgstr ""
2129
+
2130
+ #. translators: %s: title of menu item in draft status
2131
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2132
+ #, php-format
2133
+ msgid "%s (Pending)"
2134
+ msgstr ""
2135
+
2136
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2137
+ msgid "Move up"
2138
+ msgstr ""
2139
+
2140
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2141
+ msgid "Move down"
2142
+ msgstr ""
2143
+
2144
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2145
+ msgid "Edit Menu Item"
2146
+ msgstr ""
2147
+
2148
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2149
+ msgid "URL"
2150
+ msgstr ""
2151
+
2152
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2153
+ msgid "Navigation Label"
2154
+ msgstr ""
2155
+
2156
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2157
+ msgid "Title Attribute"
2158
+ msgstr ""
2159
+
2160
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2161
+ msgid "Open link in a new window/tab"
2162
+ msgstr ""
2163
+
2164
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2165
+ msgid "CSS Classes (optional)"
2166
+ msgstr ""
2167
+
2168
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2169
+ msgid "Link Relationship (XFN)"
2170
+ msgstr ""
2171
+
2172
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2173
+ msgid ""
2174
+ "The description will be displayed in the menu if the current theme supports "
2175
+ "it."
2176
+ msgstr ""
2177
+
2178
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2179
+ #, php-format
2180
+ msgid "Original: %s"
2181
+ msgstr ""
2182
+
2183
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2184
+ msgid "Remove"
2185
+ msgstr ""
2186
+
2187
+ #: templates/tos.php:32
2188
+ #, php-format
2189
+ msgid "%sclose%s"
2190
+ msgstr "%stanca%s"
2191
+
2192
+ #: templates/tos.php:34
2193
+ #, php-format
2194
+ msgid "%sprint%s"
2195
+ msgstr "%simprimeix%s"
2196
+
2197
+ #. Plugin Name of the plugin/theme
2198
+ msgid "WP-Members"
2199
+ msgstr ""
2200
+
2201
+ #. Plugin URI of the plugin/theme
2202
+ msgid "https://rocketgeek.com"
2203
+ msgstr ""
2204
+
2205
+ #. Description of the plugin/theme
2206
+ msgid ""
2207
+ "WP access restriction and user registration. For more information on plugin "
2208
+ "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2209
+ "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2210
+ "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2211
+ "available. WP-Members(tm) is a trademark of butlerblog.com."
2212
+ msgstr ""
2213
+
2214
+ #. Author of the plugin/theme
2215
+ msgid "Chad Butler"
2216
+ msgstr ""
2217
+
2218
+ #. Author URI of the plugin/theme
2219
+ msgid "http://butlerblog.com/"
2220
+ msgstr ""
2221
+
2222
+ #~ msgid "Click to log out."
2223
+ #~ msgstr "Prem aquí per desconnectar-te"
2224
+
2225
+ #~ msgid "You have set WP-Members to turn off the registration process"
2226
+ #~ msgstr "Ha configurat WP-Members per desactivar el procés de registre "
2227
+
2228
+ #~ msgid ""
2229
+ #~ "but you also set to moderate and/or email admin new registrations. You "
2230
+ #~ "will need to set up a registration page for users to register."
2231
+ #~ msgstr ""
2232
+ #~ "però també s'estableix com a moderador i/o l'administrador email per a "
2233
+ #~ "nous registres. Necessiteu establir una pàgina de registres pels usuaris "
2234
+ #~ "que vulguin registrar-se"
2235
+
2236
+ #~ msgid "Unblocked?"
2237
+ #~ msgstr "Desbloquejat?"
2238
+
2239
+ #~ msgid "Blocked?"
2240
+ #~ msgstr "Bloquejat?"
2241
+
2242
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2243
+ #~ msgstr ""
2244
+ #~ "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha "
2245
+ #~ "actualitzat."
2246
+
2247
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2248
+ #~ msgstr ""
2249
+ #~ "L'opció del Nom és requereix per incloure un nou camp. Res s'ha "
2250
+ #~ "actualitzat."
2251
+
2252
+ #~ msgid "field was added"
2253
+ #~ msgstr "es va afegir camp"
2254
+
2255
+ #~ msgid "field was updated"
2256
+ #~ msgstr "camp s'actualitza"
2257
+
2258
+ #~ msgid "Option Name"
2259
+ #~ msgstr "Opcions"
2260
+
2261
+ #~ msgid "Additional information for checkbox fields"
2262
+ #~ msgstr "Informació addicional per als camps de casella de verificació"
2263
+
2264
+ #~ msgid "Additional information for dropdown fields"
2265
+ #~ msgstr "Informació addicional per als camps desplegables"
2266
+
2267
+ #~ msgid "For dropdown, array of values:"
2268
+ #~ msgstr "Pel desplegable, valors:"
2269
+
2270
+ #~ msgid ""
2271
+ #~ "Determine which fields will display and which are required. This "
2272
+ #~ "includes all fields, both native WP fields and WP-Members custom fields."
2273
+ #~ msgstr ""
2274
+ #~ "Determina quins camps es mostraran i quins són obligatoris. Això inclou "
2275
+ #~ "tots els camps, els natius de WP com els creats a WP-Members."
2276
+
2277
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2278
+ #~ msgstr "(Nota: el camp email és obligatori, no pot canviar-se)"
2279
+
2280
+ #~ msgid "Add/Delete"
2281
+ #~ msgstr "Inclou/Suprimeix"
2282
+
2283
+ #~ msgid "Checked?"
2284
+ #~ msgstr "Comprovat?"
2285
+
2286
+ #~ msgid "Delete"
2287
+ #~ msgstr "Suprimeix"
2288
+
2289
+ #~ msgid "(Email cannot be removed)"
2290
+ #~ msgstr "(Nota: el camp de l'email és obligatori, no es pot canviar)"
2291
+
2292
+ #~ msgid "Update Fields"
2293
+ #~ msgstr "Actualitzar camps"
2294
+
2295
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2296
+ #~ msgstr ""
2297
+ #~ "Siusplau indiqueu que heu llegit i esteu d'acord amb les %s condicions "
2298
+ #~ "d'ús %s"
2299
+
2300
+ #~ msgid "Post Restriction"
2301
+ #~ msgstr "Restricció de l'anunci"
2302
+
2303
+ #~ msgid "Page Restriction"
2304
+ #~ msgstr "Pàgina Restricció"
2305
+
2306
+ #~ msgid "dropdown"
2307
+ #~ msgstr "desplegable"
2308
+
2309
+ #~ msgid "Block Posts by default"
2310
+ #~ msgstr "Bloquejar entrades per defecte"
2311
+
2312
+ #~ msgid ""
2313
+ #~ "Note: Posts can still be individually blocked or unblocked at the article "
2314
+ #~ "level"
2315
+ #~ msgstr ""
2316
+ #~ "Nota: les entrades poden ser bloquejades o desbloquejades a nivell "
2317
+ #~ "d'article"
2318
+
2319
+ #~ msgid "Block Pages by default"
2320
+ #~ msgstr "Bloquejar pàgines per defecte"
2321
+
2322
+ #~ msgid ""
2323
+ #~ "Note: Pages can still be individually blocked or unblocked at the article "
2324
+ #~ "level"
2325
+ #~ msgstr ""
2326
+ #~ "Nota: les pàgines encara poden ser bloquejades o no bloquejades a nivell "
2327
+ #~ "d'article"
2328
+
2329
+ #~ msgid "Show excerpts"
2330
+ #~ msgstr "Mostra resums"
2331
+
2332
+ #~ msgid ""
2333
+ #~ "Shows excerpted content above the login/registration on both Posts and "
2334
+ #~ "Pages"
2335
+ #~ msgstr ""
2336
+ #~ "Mostra resums de contingut sobre el formulari d'accés, tant en entrades "
2337
+ #~ "com en pàgines"
2338
+
2339
+ #~ msgid "Turns on CAPTCHA for registration"
2340
+ #~ msgstr "Activa CAPTCHA pel registre"
2341
+
2342
+ #~ msgid "Hide registration"
2343
+ #~ msgstr "Amaga registre"
2344
+
2345
+ #~ msgid "Optional"
2346
+ #~ msgstr "Opcional"
2347
+
2348
+ #~ msgid "AIM"
2349
+ #~ msgstr "AIM"
2350
+
2351
+ #~ msgid "Yahoo IM"
2352
+ #~ msgstr "Yahoo IM"
2353
+
2354
+ #~ msgid "Jabber/Google Talk"
2355
+ #~ msgstr "Jabber/Google Talk"
2356
+
2357
+ #~ msgid ""
2358
+ #~ "Password successfully changed!<br /><br />You will need to re-login with "
2359
+ #~ "your new password."
2360
+ #~ msgstr ""
2361
+ #~ "La contrasenya s'ha canviat correctament!. <br/><br/> Hauràs de tornar-te "
2362
+ #~ "identificar utilitzant la nova contrasenya."
2363
+
2364
+ #~ msgid ""
2365
+ #~ "Password successfully reset!<br /><br />An email containing a new "
2366
+ #~ "password has been sent to the email address on file for your account. You "
2367
+ #~ "may change this random password then re-login with your new password."
2368
+ #~ msgstr ""
2369
+ #~ "La contrasenya ha estat restablerta correctament<br /><br /> Li enviarem "
2370
+ #~ "un email amb la nova contrasenya a l'adreça que ha registrat. Podrà "
2371
+ #~ "canviar la contrasenya a l'atzar i després iniciar la sessió amb una nova "
2372
+ #~ "contrasenya."
i18n/languages/wp-members-da_DK.mo CHANGED
Binary file
i18n/languages/wp-members-da_DK.po CHANGED
@@ -1,2223 +1,2530 @@
1
- # Copyright (C) 2010 WP-Members
2
- # This file is distributed under the same license as the WP-Members package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP-Members 3.2.6\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
8
- "PO-Revision-Date: 2019-04-02 09:53-0400\n"
9
- "Last-Translator: Chad Butler <plugins@butlerblog.com>\n"
10
- "Language-Team: mikael.boldt@mail.dk\n"
11
- "Language: da_DK\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_c\n"
17
- "X-Poedit-Basepath: D:/downloads/wp-members\n"
18
- "X-Generator: Poedit 2.2.1\n"
19
- "X-Poedit-SearchPath-0: D:/downloads/wp-members\n"
20
-
21
- #: admin/dialogs.php:116
22
- msgid ""
23
- "Your WP settings allow anyone to register - this is not the recommended "
24
- "setting."
25
- msgstr ""
26
- "Dine WP indstillinger tillader alle at registrere sig - dette kan ikke "
27
- "anbefales."
28
-
29
- #: admin/dialogs.php:117
30
- #, php-format
31
- msgid ""
32
- "You can %s change this here %s making sure the box next to \"Anyone can "
33
- "register\" is unchecked."
34
- msgstr ""
35
- "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Alle kan "
36
- "registrere \" er u-markeret."
37
-
38
- #: admin/dialogs.php:118
39
- msgid ""
40
- "This setting allows a link on the /wp-login.php page to register using the "
41
- "WP native registration process thus circumventing any registration you are "
42
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
43
- "but most users should uncheck this option. If you do not change this "
44
- "setting, you can choose to ignore these warning messages under WP-Members "
45
- "Settings."
46
- msgstr ""
47
- "Denne indstilling tillader at et link på /wp-login.php siden for at lade sig "
48
- "registrere ved hjælp af WP oprindelige registreringsprocessen således omgår "
49
- "enhver form for registrering, du bruger sammen med WP-Members. I nogle "
50
- "tilfælde passer dette til brugernes ønsker/behov, men de fleste brugere bør "
51
- "fjerne markeringen af denne mulighed. Hvis du ikke ændrer denne indstilling, "
52
- "kan du vælge at ignorere disse advarsler i henhold til WP-medlemmer "
53
- "indstillinger."
54
-
55
- #: admin/dialogs.php:122
56
- msgid ""
57
- "Your WP settings allow anyone to comment - this is not the recommended "
58
- "setting."
59
- msgstr ""
60
- "Dine WP indstillinger tillader alle at skrive kommentarer - denne "
61
- "indstilling kan ikke anbefales."
62
-
63
- #: admin/dialogs.php:123
64
- #, php-format
65
- msgid ""
66
- "You can %s change this here %s by checking the box next to \"Users must be "
67
- "registered and logged in to comment.\""
68
- msgstr ""
69
- "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Brugere "
70
- "skal være registrerede og logget ind for at kommentere \" er markeret."
71
-
72
- #: admin/dialogs.php:124
73
- msgid ""
74
- "This setting allows any users to comment, whether or not they are "
75
- "registered. Depending on how you are using WP-Members will determine whether "
76
- "you should change this setting or not. If you do not change this setting, "
77
- "you can choose to ignore these warning messages under WP-Members Settings."
78
- msgstr ""
79
- "Denne indstilling gør det muligt for alle brugere at kommentere, selv om de "
80
- "ikker er registreret. Afhængigt af, hvordan du bruger WP-Members afgør om "
81
- "du bør ændre denne indstilling eller ej. Hvis du ikke ændrer denne "
82
- "indstilling, kan du vælge at ignorere disse advarsler i henhold til WP-"
83
- "Members indstillinger."
84
-
85
- #: admin/dialogs.php:128
86
- msgid ""
87
- "Your WP settings allow full text rss feeds - this is not the recommended "
88
- "setting."
89
- msgstr ""
90
- "Din WP indstilling tilader fuld RSS feeds - denne indstilling kan ikke "
91
- "anbefales"
92
-
93
- #: admin/dialogs.php:129
94
- #, php-format
95
- msgid ""
96
- "You can %s change this here %s by changing \"For each article in a feed, show"
97
- "\" to \"Summary.\""
98
- msgstr ""
99
- "Du kan %s ændre dette %s ved at ændre \"For hvert indlæg, vis \" to \"Resume."
100
- "\""
101
-
102
- #: admin/dialogs.php:130
103
- msgid ""
104
- "Leaving this set to full text allows anyone to read your protected content "
105
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
106
- "only show summary text."
107
- msgstr ""
108
- "At sætte RSS til fuld tekst giver alle mulighed for at læse dit beskyttet "
109
- "indhold i en RSS-læser. At ændre RSS til Oversigt forhindrer dette og dine "
110
- "feeds vil kun blive vist som summarisk tekst."
111
-
112
- #: admin/dialogs.php:134
113
- msgid "You have set WP-Members to hold registrations for approval"
114
- msgstr "Du har sat WP-Members til at vente på godkendelse af registreringer"
115
-
116
- #: admin/dialogs.php:135
117
- msgid ""
118
- "but you have not changed the default message for \"Registration Completed\" "
119
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
120
- "message to let users know they are pending approval."
121
- msgstr ""
122
- "men du har ikke ændret standard besked for \"Registrering fuldført\" under "
123
- "\"WP-Members Dialoger og Fejlmeldinger.\" Du bør ændre denne besked så "
124
- "brugerne ved at deres tilmelding afventer godkendelsel."
125
-
126
- #: admin/dialogs.php:139
127
- msgid "You have turned on reCAPTCHA"
128
- msgstr "Du har slået reCAPTCHA til"
129
-
130
- #: admin/dialogs.php:140
131
- msgid ""
132
- "but you have not entered API keys. You will need both a public and private "
133
- "key. The CAPTCHA will not display unless a valid API key is included."
134
- msgstr ""
135
- "men du ikke har indtastet API nøgler. Du skal bruge både en offentlig og "
136
- "privat nøgle. Den CAPTCHA vises ikke, medmindre at en gyldig API-nøgle er "
137
- "inkluderet."
138
-
139
- #: admin/dialogs.php:144
140
- msgid "You have active settings that are not recommended."
141
- msgstr ""
142
-
143
- #: admin/dialogs.php:145
144
- msgid ""
145
- "If you will not be changing these settings, you can turn off these warning "
146
- "messages by checking the \"Ignore warning messages\" in the settings below."
147
- msgstr ""
148
-
149
- #: admin/dialogs.php:169
150
- msgid "Version:"
151
- msgstr "Version:"
152
-
153
- #: admin/dialogs.php:170
154
- msgid "Quick Start Guide"
155
- msgstr ""
156
-
157
- #: admin/dialogs.php:171
158
- msgid "Online User Guide"
159
- msgstr ""
160
-
161
- #: admin/dialogs.php:172
162
- msgid "FAQs"
163
- msgstr ""
164
-
165
- #: admin/dialogs.php:179
166
- msgid "Thank you for using WP-Members"
167
- msgstr "Thank you for using WP-Members"
168
-
169
- #: admin/dialogs.php:180
170
- msgid "A plugin developed by"
171
- msgstr ""
172
-
173
- #: admin/dialogs.php:181
174
- msgid "Follow"
175
- msgstr "Følg"
176
-
177
- #: admin/dialogs.php:198 admin/dialogs.php:202
178
- msgid "Latest from RocketGeek"
179
- msgstr ""
180
-
181
- #: admin/dialogs.php:219
182
- msgid "Like WP-Members?"
183
- msgstr ""
184
-
185
- #: admin/dialogs.php:220
186
- #, php-format
187
- msgid ""
188
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
189
- "%s rating. Thanks!!"
190
- msgstr ""
191
-
192
- #: admin/dialogs.php:231 admin/dialogs.php:244
193
- msgid "Latest from ButlerBlog"
194
- msgstr ""
195
-
196
- #: admin/includes/class-wp-members-admin-api.php:256
197
- msgid "Custom email"
198
- msgstr ""
199
-
200
- #: admin/includes/class-wp-members-admin-api.php:257
201
- #: admin/includes/class-wp-members-admin-api.php:259
202
- msgid "Subject"
203
- msgstr "Emne"
204
-
205
- #: admin/includes/class-wp-members-admin-api.php:260
206
- msgid "Body"
207
- msgstr "Brødtekst"
208
-
209
- #: admin/includes/class-wp-members-admin-api.php:262
210
- msgid "Your custom email message content."
211
- msgstr ""
212
-
213
- #: admin/includes/class-wp-members-admin-api.php:340
214
- msgid "Options"
215
- msgstr "Valg"
216
-
217
- #: admin/includes/class-wp-members-admin-api.php:341
218
- msgid "Fields"
219
- msgstr "Felter"
220
-
221
- #: admin/includes/class-wp-members-admin-api.php:342
222
- msgid "Dialogs"
223
- msgstr "Dialog"
224
-
225
- #: admin/includes/class-wp-members-admin-api.php:343
226
- msgid "Emails"
227
- msgstr "Email"
228
-
229
- #: admin/includes/class-wp-members-admin-api.php:359
230
- msgid "New Registration"
231
- msgstr "Ny Bruger Registrering"
232
-
233
- #: admin/includes/class-wp-members-admin-api.php:368
234
- msgid "Registration is Moderated"
235
- msgstr "Registrering fuldført"
236
-
237
- #: admin/includes/class-wp-members-admin-api.php:374
238
- msgid "Registration is Moderated, User is Approved"
239
- msgstr "Din registrering er godkendt"
240
-
241
- #: admin/includes/class-wp-members-admin-api.php:382
242
- msgid "Password Reset"
243
- msgstr "Kodeord Nulstillet"
244
-
245
- #: admin/includes/class-wp-members-admin-api.php:389
246
- msgid "Retrieve Username"
247
- msgstr ""
248
-
249
- #: admin/includes/class-wp-members-admin-api.php:397
250
- msgid "Admin Notification"
251
- msgstr "Admin Meddelelse"
252
-
253
- #: admin/includes/class-wp-members-admin-api.php:423
254
- msgid "Restricted post (or page), displays above the login/registration form"
255
- msgstr ""
256
- "Vises over Log på / Registrering på Post eller Side med begrænset adgang"
257
-
258
- #: admin/includes/class-wp-members-admin-api.php:424
259
- msgid "Username is taken"
260
- msgstr "Brugernavn er taget"
261
-
262
- #: admin/includes/class-wp-members-admin-api.php:425
263
- msgid "Email is registered"
264
- msgstr "Email er registreret"
265
-
266
- #: admin/includes/class-wp-members-admin-api.php:426
267
- msgid "Registration completed"
268
- msgstr "Registrering fuldført - afventer godkendelse"
269
-
270
- #: admin/includes/class-wp-members-admin-api.php:427
271
- msgid "User update"
272
- msgstr "Bruger opdatering"
273
-
274
- #: admin/includes/class-wp-members-admin-api.php:428
275
- msgid "Passwords did not match"
276
- msgstr "Kodeordene er ikke ens"
277
-
278
- #: admin/includes/class-wp-members-admin-api.php:429
279
- msgid "Password changes"
280
- msgstr "Ændret Kodeord"
281
-
282
- #: admin/includes/class-wp-members-admin-api.php:430
283
- msgid "Username or email do not exist when trying to reset forgotten password"
284
- msgstr ""
285
- "Brugernavn eller Email eksisterer ikke når glemt Kodeord forsøges nulstillet"
286
-
287
- #: admin/includes/class-wp-members-admin-api.php:431
288
- msgid "Password reset"
289
- msgstr "Nulstil Kodeord"
290
-
291
- #: admin/includes/class-wp-members-admin-api.php:564
292
- msgid "Settings"
293
- msgstr "Indstillinger"
294
-
295
- #: admin/includes/class-wp-members-products-admin.php:57
296
- msgid "Slug"
297
- msgstr ""
298
-
299
- #: admin/includes/class-wp-members-products-admin.php:58
300
- msgid "Role"
301
- msgstr ""
302
-
303
- #: admin/includes/class-wp-members-products-admin.php:59
304
- #: admin/includes/class-wp-members-products-admin.php:162
305
- #: admin/tab-fields.php:459 admin/user-export.php:69
306
- msgid "Expires"
307
- msgstr "Udløber"
308
-
309
- #: admin/includes/class-wp-members-products-admin.php:60
310
- msgid "Last updated"
311
- msgstr ""
312
-
313
- #: admin/includes/class-wp-members-products-admin.php:80
314
- msgid "No role required"
315
- msgstr ""
316
-
317
- #: admin/includes/class-wp-members-products-admin.php:84
318
- msgid "Does not expire"
319
- msgstr ""
320
-
321
- #: admin/includes/class-wp-members-products-admin.php:120
322
- msgid "Membership Product Details"
323
- msgstr ""
324
-
325
- #: admin/includes/class-wp-members-products-admin.php:142
326
- #: admin/includes/class-wp-members-products-admin.php:167
327
- msgid "Period"
328
- msgstr ""
329
-
330
- #: admin/includes/class-wp-members-products-admin.php:142
331
- msgid "Day"
332
- msgstr ""
333
-
334
- #: admin/includes/class-wp-members-products-admin.php:142
335
- msgid "Week"
336
- msgstr ""
337
-
338
- #: admin/includes/class-wp-members-products-admin.php:142
339
- msgid "Month"
340
- msgstr ""
341
-
342
- #: admin/includes/class-wp-members-products-admin.php:142
343
- msgid "Year"
344
- msgstr ""
345
-
346
- #: admin/includes/class-wp-members-products-admin.php:148
347
- msgid "Name (slug)"
348
- msgstr ""
349
-
350
- #: admin/includes/class-wp-members-products-admin.php:153
351
- msgid "Role Required?"
352
- msgstr ""
353
-
354
- #: admin/includes/class-wp-members-products-admin.php:156
355
- msgid "No Role"
356
- msgstr ""
357
-
358
- #: admin/includes/class-wp-members-products-admin.php:164
359
- #: admin/includes/class-wp-members-products-admin.php:166
360
- msgid "Number"
361
- msgstr ""
362
-
363
- #: admin/includes/class-wp-members-products-admin.php:245
364
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
365
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
366
- #: inc/deprecated.php:622
367
- msgid "None"
368
- msgstr ""
369
-
370
- #: admin/includes/class-wp-members-products-admin.php:251
371
- msgid "Limit access to:"
372
- msgstr ""
373
-
374
- #: admin/includes/class-wp-members-products-admin.php:321
375
- msgid "Required Membership"
376
- msgstr ""
377
-
378
- #: admin/includes/class-wp-members-products-admin.php:360
379
- msgid "Membership"
380
- msgstr ""
381
-
382
- #: admin/post.php:45 admin/post.php:48
383
- msgid "Unblock"
384
- msgstr ""
385
-
386
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
387
- msgid "Block"
388
- msgstr "Bloker"
389
-
390
- #: admin/post.php:47 admin/post.php:50
391
- msgid "Hide"
392
- msgstr ""
393
-
394
- #: admin/post.php:138
395
- #, php-format
396
- msgid "%s blocked"
397
- msgstr ""
398
-
399
- #: admin/post.php:138
400
- #, php-format
401
- msgid "%s unblocked"
402
- msgstr ""
403
-
404
- #: admin/post.php:177
405
- #, php-format
406
- msgid "%s Restriction"
407
- msgstr ""
408
-
409
- #: admin/post.php:206
410
- msgid "Unblocked"
411
- msgstr ""
412
-
413
- #: admin/post.php:207
414
- msgid "Blocked"
415
- msgstr ""
416
-
417
- #: admin/post.php:208
418
- msgid "Hidden"
419
- msgstr ""
420
-
421
- #: admin/post.php:214
422
- msgid "Status:"
423
- msgstr ""
424
-
425
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
426
- msgid "Edit"
427
- msgstr "Redigere"
428
-
429
- #: admin/post.php:229
430
- msgid "Ok"
431
- msgstr ""
432
-
433
- #: admin/post.php:230
434
- msgid "Cancel"
435
- msgstr ""
436
-
437
- #: admin/post.php:314
438
- msgid "Status"
439
- msgstr ""
440
-
441
- #: admin/tab-about.php:34 admin/tab-about.php:54
442
- msgid "About WP-Members"
443
- msgstr ""
444
-
445
- #: admin/tab-captcha.php:66
446
- #, php-format
447
- msgid "See the %sUsers Guide on CAPTCHA%s."
448
- msgstr ""
449
-
450
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
451
- #: admin/tab-fields.php:153 admin/tab-options.php:82
452
- msgid "Need help?"
453
- msgstr ""
454
-
455
- #: admin/tab-captcha.php:84
456
- msgid "Manage reCAPTCHA Options"
457
- msgstr "Administrer reCAPTCHA Valg"
458
-
459
- #: admin/tab-captcha.php:98
460
- msgid ""
461
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
462
- "while blocking spam on your blog."
463
- msgstr ""
464
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
465
- "while blocking spam on your blog."
466
-
467
- #: admin/tab-captcha.php:99
468
- #, php-format
469
- msgid ""
470
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
471
- "that they are a human. This verifies that they are not a spambot while also "
472
- "correcting the automatic scans of old books. So you get less spam, and the "
473
- "world gets accurately digitized books. Everybody wins! For details, visit "
474
- "the %s reCAPTCHA website%s"
475
- msgstr ""
476
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
477
- "that they are a human. This verifies that they are not a spambot while also "
478
- "correcting the automatic scans of old books. So you get less spam, and the "
479
- "world gets accurately digitized books. Everybody wins! For details, visit "
480
- "the %s reCAPTCHA website%s"
481
-
482
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
483
- msgid "reCAPTCHA Keys"
484
- msgstr "reCAPTCHA Keys"
485
-
486
- #: admin/tab-captcha.php:106
487
- #, php-format
488
- msgid ""
489
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
490
- "key. You can sign up for a %s free reCAPTCHA key%s"
491
- msgstr ""
492
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
493
- "key. You can sign up for a %s free reCAPTCHA key%s"
494
-
495
- #: admin/tab-captcha.php:107
496
- msgid "Public Key"
497
- msgstr "Public Key"
498
-
499
- #: admin/tab-captcha.php:108
500
- msgid "Private Key"
501
- msgstr "Private Key"
502
-
503
- #: admin/tab-captcha.php:112
504
- msgid "Choose Theme"
505
- msgstr "Choose Theme"
506
-
507
- #: admin/tab-captcha.php:115
508
- msgid "Red"
509
- msgstr "Rød"
510
-
511
- #: admin/tab-captcha.php:116
512
- msgid "White"
513
- msgstr "Hvid"
514
-
515
- #: admin/tab-captcha.php:117
516
- msgid "Black Glass"
517
- msgstr "Sort Glas"
518
-
519
- #: admin/tab-captcha.php:118
520
- msgid "Clean"
521
- msgstr "Ren"
522
-
523
- #: admin/tab-captcha.php:132
524
- #, php-format
525
- msgid ""
526
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
527
- "key. You can sign up for a %s free reCAPTCHA key%s"
528
- msgstr ""
529
-
530
- #: admin/tab-captcha.php:133
531
- msgid "Site Key"
532
- msgstr ""
533
-
534
- #: admin/tab-captcha.php:134
535
- msgid "Secret Key"
536
- msgstr ""
537
-
538
- #: admin/tab-captcha.php:165
539
- msgid "Characters for image"
540
- msgstr ""
541
-
542
- #: admin/tab-captcha.php:169
543
- msgid "Number of characters"
544
- msgstr ""
545
-
546
- #: admin/tab-captcha.php:173
547
- msgid "Image dimensions"
548
- msgstr ""
549
-
550
- #: admin/tab-captcha.php:174
551
- msgid "Width"
552
- msgstr ""
553
-
554
- #: admin/tab-captcha.php:174
555
- msgid "Height"
556
- msgstr ""
557
-
558
- #: admin/tab-captcha.php:177
559
- msgid "Font color of characters"
560
- msgstr ""
561
-
562
- #: admin/tab-captcha.php:181
563
- msgid "Background color of image"
564
- msgstr ""
565
-
566
- #: admin/tab-captcha.php:185
567
- msgid "Font size"
568
- msgstr ""
569
-
570
- #: admin/tab-captcha.php:189
571
- msgid "Width between characters"
572
- msgstr ""
573
-
574
- #: admin/tab-captcha.php:193
575
- msgid "Image type"
576
- msgstr ""
577
-
578
- #: admin/tab-captcha.php:207
579
- msgid ""
580
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
581
- "installed and activated."
582
- msgstr ""
583
-
584
- #: admin/tab-captcha.php:231
585
- msgid "Update CAPTCHA Settings"
586
- msgstr "Update CAPTCHA Settings"
587
-
588
- #: admin/tab-captcha.php:301
589
- msgid "CAPTCHA was updated for WP-Members"
590
- msgstr "CAPTCHA er opdateret for WP-Members"
591
-
592
- #: admin/tab-dialogs.php:67
593
- msgid "Dialogs and Error Messages"
594
- msgstr "Dialoger og Fejlmeldinger"
595
-
596
- #: admin/tab-dialogs.php:69
597
- #, php-format
598
- msgid ""
599
- "You can customize the text for dialogs and error messages. Simple HTML is "
600
- "allowed %s etc."
601
- msgstr ""
602
- "Du kan tilpasse tekster til dialog og fejlmeldinger. Simpel HTML er tilladt "
603
- "%s osv."
604
-
605
- #: admin/tab-dialogs.php:80
606
- msgid "Terms of Service (TOS)"
607
- msgstr "Vilkår for Deltagelse"
608
-
609
- #: admin/tab-dialogs.php:87
610
- msgid "Update Dialogs"
611
- msgstr "Opdater Dialoger"
612
-
613
- #: admin/tab-dialogs.php:123
614
- msgid "WP-Members dialogs were updated"
615
- msgstr "WP-Members dialoger er opdateret"
616
-
617
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
618
- msgid "WP-Members Dropin settings were updated"
619
- msgstr ""
620
-
621
- #: admin/tab-dropins.php:204
622
- msgid "Manage Dropins"
623
- msgstr ""
624
-
625
- #: admin/tab-dropins.php:205
626
- msgid "Current dropin folder: "
627
- msgstr ""
628
-
629
- #: admin/tab-dropins.php:206
630
- msgid ""
631
- "You can change location of the dropin folder using the "
632
- "<code>wpmem_dropin_folder</code> filter."
633
- msgstr ""
634
-
635
- #: admin/tab-dropins.php:269
636
- msgid "Name"
637
- msgstr ""
638
-
639
- #: admin/tab-dropins.php:270
640
- msgid "File"
641
- msgstr ""
642
-
643
- #: admin/tab-dropins.php:271
644
- msgid "Version"
645
- msgstr ""
646
-
647
- #: admin/tab-dropins.php:272
648
- msgid "Description"
649
- msgstr ""
650
-
651
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
652
- msgid "Save Settings"
653
- msgstr ""
654
-
655
- #: admin/tab-emails.php:58
656
- msgid "Email Messages"
657
- msgstr "Email Besked"
658
-
659
- #: admin/tab-emails.php:61
660
- msgid "You can customize the content of the emails sent by the plugin."
661
- msgstr "Du kan tilpasse indholdet af emails sendt fra denne plugin"
662
-
663
- #: admin/tab-emails.php:63
664
- msgid "A list of shortcodes is available here."
665
- msgstr "liste med shortcodes kan ses her."
666
-
667
- #: admin/tab-emails.php:70
668
- msgid "Set a custom email address"
669
- msgstr "Indsæt en gyldig Email-adresse"
670
-
671
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
672
- #: admin/tab-fields.php:179
673
- msgid "(optional)"
674
- msgstr "(obligatorisk)"
675
-
676
- #: admin/tab-emails.php:74
677
- msgid "Set a custom email name"
678
- msgstr "Skriv dit email navn her"
679
-
680
- #: admin/tab-emails.php:85
681
- msgid "Email Signature"
682
- msgstr "Email underskrift"
683
-
684
- #: admin/tab-emails.php:93
685
- msgid "Update Emails"
686
- msgstr "Opdater Emails"
687
-
688
- #: admin/tab-emails.php:161
689
- msgid "WP-Members emails were updated"
690
- msgstr "WP-Members emails er opdateret"
691
-
692
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
693
- msgid "No fields selected for deletion"
694
- msgstr ""
695
-
696
- #: admin/tab-fields.php:115
697
- msgid "Are you sure you want to delete the following fields?"
698
- msgstr ""
699
-
700
- #: admin/tab-fields.php:141
701
- msgid "Fields deleted"
702
- msgstr ""
703
-
704
- #: admin/tab-fields.php:155
705
- msgid "Field Manager Documentation"
706
- msgstr ""
707
-
708
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
709
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
710
- #: inc/deprecated.php:646 inc/wp-registration.php:57
711
- #: inc/wp-registration.php:231
712
- msgid "(required)"
713
- msgstr "(påkrævet)"
714
-
715
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
716
- msgid "Edit Field"
717
- msgstr ""
718
-
719
- #: admin/tab-fields.php:185
720
- msgid "Add a Field"
721
- msgstr ""
722
-
723
- #: admin/tab-fields.php:190
724
- msgid "Field Label"
725
- msgstr "Felt Etiket"
726
-
727
- #: admin/tab-fields.php:192
728
- msgid "The name of the field as it will be displayed to the user."
729
- msgstr ""
730
-
731
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
732
- msgid "Meta Key"
733
- msgstr ""
734
-
735
- #: admin/tab-fields.php:201
736
- msgid ""
737
- "The database meta value for the field. It must be unique and contain no "
738
- "spaces (underscores are ok)."
739
- msgstr ""
740
-
741
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
742
- msgid "Field Type"
743
- msgstr "Felt Type"
744
-
745
- #: admin/tab-fields.php:211
746
- msgid "text"
747
- msgstr "Tekst"
748
-
749
- #: admin/tab-fields.php:212
750
- msgid "email"
751
- msgstr ""
752
-
753
- #: admin/tab-fields.php:213
754
- msgid "textarea"
755
- msgstr "Tekstfelt"
756
-
757
- #: admin/tab-fields.php:214
758
- msgid "checkbox"
759
- msgstr "Markeringsboks"
760
-
761
- #: admin/tab-fields.php:215
762
- msgid "multiple checkbox"
763
- msgstr ""
764
-
765
- #: admin/tab-fields.php:216
766
- msgid "select (dropdown)"
767
- msgstr ""
768
-
769
- #: admin/tab-fields.php:217
770
- msgid "multiple select"
771
- msgstr ""
772
-
773
- #: admin/tab-fields.php:218
774
- msgid "radio group"
775
- msgstr ""
776
-
777
- #: admin/tab-fields.php:219
778
- msgid "password"
779
- msgstr "Kodeord"
780
-
781
- #: admin/tab-fields.php:220
782
- msgid "image"
783
- msgstr ""
784
-
785
- #: admin/tab-fields.php:221
786
- msgid "file"
787
- msgstr ""
788
-
789
- #: admin/tab-fields.php:222
790
- msgid "url"
791
- msgstr ""
792
-
793
- #: admin/tab-fields.php:223
794
- msgid "number"
795
- msgstr ""
796
-
797
- #: admin/tab-fields.php:224
798
- msgid "date"
799
- msgstr ""
800
-
801
- #: admin/tab-fields.php:225
802
- msgid "hidden"
803
- msgstr ""
804
-
805
- #: admin/tab-fields.php:227
806
- msgid "membership"
807
- msgstr ""
808
-
809
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
810
- msgid "Display?"
811
- msgstr "Vis?"
812
-
813
- #: admin/tab-fields.php:237
814
- msgid "This field is always displayed"
815
- msgstr ""
816
-
817
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
818
- msgid "Required?"
819
- msgstr "Obligatorisk?"
820
-
821
- #: admin/tab-fields.php:246
822
- msgid "This field is always required"
823
- msgstr ""
824
-
825
- #: admin/tab-fields.php:252
826
- msgid "Allow HTML?"
827
- msgstr ""
828
-
829
- #: admin/tab-fields.php:259
830
- msgid "Placeholder"
831
- msgstr ""
832
-
833
- #: admin/tab-fields.php:267
834
- msgid "Pattern"
835
- msgstr ""
836
-
837
- #: admin/tab-fields.php:273
838
- msgid "Title"
839
- msgstr ""
840
-
841
- #: admin/tab-fields.php:282
842
- msgid "Minimum Value"
843
- msgstr ""
844
-
845
- #: admin/tab-fields.php:286
846
- msgid "Maximum Value"
847
- msgstr ""
848
-
849
- #: admin/tab-fields.php:294
850
- msgid "Rows"
851
- msgstr ""
852
-
853
- #: admin/tab-fields.php:298
854
- msgid "Columns"
855
- msgstr ""
856
-
857
- #: admin/tab-fields.php:306
858
- msgid "Accepted file types:"
859
- msgstr ""
860
-
861
- #: admin/tab-fields.php:311
862
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
863
- msgstr ""
864
-
865
- #: admin/tab-fields.php:318
866
- msgid "Checked by default?"
867
- msgstr "Markering?"
868
-
869
- #: admin/tab-fields.php:322
870
- msgid "Stored value if checked:"
871
- msgstr ""
872
-
873
- #: admin/tab-fields.php:343
874
- msgid "Stored values delimiter:"
875
- msgstr ""
876
-
877
- #: admin/tab-fields.php:352
878
- msgid "Values (Displayed|Stored):"
879
- msgstr ""
880
-
881
- #: admin/tab-fields.php:377
882
- msgid "Options should be Option Name|option_value,"
883
- msgstr "Valg skal skrives Valg Navn|valg_værdi,"
884
-
885
- #: admin/tab-fields.php:381
886
- msgid "Visit plugin site for more information"
887
- msgstr "Besøg Plugin Site for mere information"
888
-
889
- #: admin/tab-fields.php:388
890
- msgid "Value"
891
- msgstr ""
892
-
893
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
894
- msgid "Add Field"
895
- msgstr ""
896
-
897
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
898
- msgid "Return to Fields Table"
899
- msgstr ""
900
-
901
- #: admin/tab-fields.php:449
902
- msgid "Drag and drop to reorder fields"
903
- msgstr ""
904
-
905
- #: admin/tab-fields.php:455
906
- msgid "Registration Date"
907
- msgstr ""
908
-
909
- #: admin/tab-fields.php:456
910
- msgid "Active"
911
- msgstr "Aktiver"
912
-
913
- #: admin/tab-fields.php:457
914
- msgid "Registration IP"
915
- msgstr "IP @ registration"
916
-
917
- #: admin/tab-fields.php:458
918
- msgid "Subscription Type"
919
- msgstr ""
920
-
921
- #: admin/tab-fields.php:460 admin/user-export.php:58
922
- msgid "User ID"
923
- msgstr ""
924
-
925
- #: admin/tab-fields.php:493
926
- msgid "Manage Fields"
927
- msgstr "Administrer Felter"
928
-
929
- #: admin/tab-fields.php:532
930
- msgid "delete"
931
- msgstr ""
932
-
933
- #: admin/tab-fields.php:546
934
- msgid "Display Label"
935
- msgstr ""
936
-
937
- #: admin/tab-fields.php:552
938
- msgid "Users Screen"
939
- msgstr ""
940
-
941
- #: admin/tab-fields.php:553
942
- msgid "Users Search"
943
- msgstr ""
944
-
945
- #: admin/tab-fields.php:555
946
- msgid "Sort"
947
- msgstr ""
948
-
949
- #: admin/tab-fields.php:596
950
- msgid "Delete Selected"
951
- msgstr ""
952
-
953
- #: admin/tab-fields.php:738
954
- msgid "WP-Members fields were updated"
955
- msgstr "WP-Members felter er opdateret"
956
-
957
- #: admin/tab-fields.php:760
958
- msgid "Field Label is required. Nothing was updated."
959
- msgstr ""
960
-
961
- #: admin/tab-fields.php:761
962
- msgid "Meta Key is required. Nothing was updated."
963
- msgstr ""
964
-
965
- #: admin/tab-fields.php:763
966
- msgid "Meta Key must contain only letters, numbers, and underscores"
967
- msgstr ""
968
-
969
- #: admin/tab-fields.php:770
970
- msgid "A field with that meta key already exists"
971
- msgstr ""
972
-
973
- #: admin/tab-fields.php:775
974
- #, php-format
975
- msgid ""
976
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
977
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
978
- "Field was not added."
979
- msgstr ""
980
-
981
- #: admin/tab-fields.php:816
982
- msgid "Checked value is required for checkboxes. Nothing was updated."
983
- msgstr ""
984
- "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
985
-
986
- #: admin/tab-fields.php:847
987
- msgid "A value is required for hidden fields. Nothing was updated."
988
- msgstr ""
989
-
990
- #: admin/tab-fields.php:854
991
- #, php-format
992
- msgid "%s was added"
993
- msgstr ""
994
-
995
- #: admin/tab-fields.php:867
996
- #, php-format
997
- msgid "%s was updated"
998
- msgstr ""
999
-
1000
- #: admin/tab-fields.php:909
1001
- msgid "Form field order updated."
1002
- msgstr ""
1003
-
1004
- #: admin/tab-options.php:60
1005
- #, php-format
1006
- msgid "%sChange%s or %sFilter%s this address"
1007
- msgstr ""
1008
-
1009
- #: admin/tab-options.php:61
1010
- #, php-format
1011
- msgid "See the %sUsers Guide on plugin options%s."
1012
- msgstr ""
1013
-
1014
- #: admin/tab-options.php:66
1015
- msgid "Posts"
1016
- msgstr ""
1017
-
1018
- #: admin/tab-options.php:67 admin/tab-options.php:215
1019
- msgid "Pages"
1020
- msgstr "Sider"
1021
-
1022
- #: admin/tab-options.php:94
1023
- msgid "Manage Options"
1024
- msgstr "Administrer Valgmuligheder"
1025
-
1026
- #: admin/tab-options.php:98
1027
- msgid "Content"
1028
- msgstr ""
1029
-
1030
- #: admin/tab-options.php:109
1031
- msgid "Content Blocking"
1032
- msgstr ""
1033
-
1034
- #: admin/tab-options.php:113
1035
- msgid "Do not block"
1036
- msgstr ""
1037
-
1038
- #: admin/tab-options.php:127
1039
- msgid "Show Excerpts"
1040
- msgstr ""
1041
-
1042
- #: admin/tab-options.php:128
1043
- msgid "Show Login Form"
1044
- msgstr ""
1045
-
1046
- #: admin/tab-options.php:129
1047
- msgid "Show Registration Form"
1048
- msgstr ""
1049
-
1050
- #: admin/tab-options.php:130
1051
- msgid "Auto Excerpt:"
1052
- msgstr "Vis Uddrag"
1053
-
1054
- #: admin/tab-options.php:152
1055
- msgid "Number of words in excerpt:"
1056
- msgstr ""
1057
-
1058
- #: admin/tab-options.php:153
1059
- msgid "Custom read more link (optional):"
1060
- msgstr ""
1061
-
1062
- #: admin/tab-options.php:167
1063
- msgid "Time-based expiration"
1064
- msgstr "Time-based expiration"
1065
-
1066
- #: admin/tab-options.php:167
1067
- msgid "Allows for access to expire"
1068
- msgstr "Allows for access to expire"
1069
-
1070
- #: admin/tab-options.php:168
1071
- msgid "Trial period"
1072
- msgstr "Prøveperiode"
1073
-
1074
- #: admin/tab-options.php:168
1075
- msgid "Allows for a trial period"
1076
- msgstr "Tillader en prøveperiode"
1077
-
1078
- #: admin/tab-options.php:170
1079
- msgid "Subscription Settings"
1080
- msgstr ""
1081
-
1082
- #: admin/tab-options.php:180
1083
- msgid "Other Settings"
1084
- msgstr ""
1085
-
1086
- #: admin/tab-options.php:186
1087
- msgid "Enable Products"
1088
- msgstr ""
1089
-
1090
- #: admin/tab-options.php:186
1091
- msgid "Enables creation of different membership products"
1092
- msgstr ""
1093
-
1094
- #: admin/tab-options.php:187
1095
- msgid "Clone menus"
1096
- msgstr ""
1097
-
1098
- #: admin/tab-options.php:187
1099
- msgid "Enables logged in menus"
1100
- msgstr ""
1101
-
1102
- #: admin/tab-options.php:188
1103
- msgid "Notify admin"
1104
- msgstr "Underret Admin"
1105
-
1106
- #: admin/tab-options.php:188
1107
- #, php-format
1108
- msgid "Notify %s for each new registration? %s"
1109
- msgstr "Send email til %s for hver ny registrering? %s"
1110
-
1111
- #: admin/tab-options.php:189
1112
- msgid "Moderate registration"
1113
- msgstr "Rediger registrering"
1114
-
1115
- #: admin/tab-options.php:189
1116
- msgid "Holds new registrations for admin approval"
1117
- msgstr "Tilbageholder nye registreringer for godkendelse fra Admin"
1118
-
1119
- #: admin/tab-options.php:190
1120
- msgid "Ignore warning messages"
1121
- msgstr "Ignorer advarsels-beskeder"
1122
-
1123
- #: admin/tab-options.php:190
1124
- msgid "Ignores WP-Members warning messages in the admin panel"
1125
- msgstr "Ignorerer WP-Members advarsels-beskeder i administrationspanelet"
1126
-
1127
- #: admin/tab-options.php:201
1128
- msgid "Attribution"
1129
- msgstr ""
1130
-
1131
- #: admin/tab-options.php:203
1132
- msgid ""
1133
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1134
- msgstr ""
1135
-
1136
- #: admin/tab-options.php:206
1137
- msgid "Enable CAPTCHA"
1138
- msgstr "Muliggøre CAPTCHA"
1139
-
1140
- #: admin/tab-options.php:211
1141
- msgid "reCAPTCHA"
1142
- msgstr ""
1143
-
1144
- #: admin/tab-options.php:212
1145
- msgid "Really Simple CAPTCHA"
1146
- msgstr ""
1147
-
1148
- #: admin/tab-options.php:219
1149
- msgid "Login Page:"
1150
- msgstr ""
1151
-
1152
- #: admin/tab-options.php:222
1153
- msgid "Specify a login page (optional)"
1154
- msgstr ""
1155
-
1156
- #: admin/tab-options.php:231
1157
- msgid "Register Page:"
1158
- msgstr "Register Page:"
1159
-
1160
- #: admin/tab-options.php:234
1161
- msgid "For creating a register link in the login form"
1162
- msgstr ""
1163
-
1164
- #: admin/tab-options.php:243
1165
- msgid "User Profile Page:"
1166
- msgstr "Brugeren Profil Sider"
1167
-
1168
- #: admin/tab-options.php:246
1169
- msgid "For creating a forgot password link in the login form"
1170
- msgstr ""
1171
-
1172
- #: admin/tab-options.php:252 admin/tab-options.php:254
1173
- msgid "Stylesheet"
1174
- msgstr ""
1175
-
1176
- #: admin/tab-options.php:263
1177
- msgid "Custom Stylesheet:"
1178
- msgstr "Custom Stylesheet:"
1179
-
1180
- #: admin/tab-options.php:268 admin/tab-options.php:295
1181
- msgid "Update Settings"
1182
- msgstr "Opdater Indstillinger"
1183
-
1184
- #: admin/tab-options.php:276
1185
- msgid "Custom Post Types"
1186
- msgstr ""
1187
-
1188
- #: admin/tab-options.php:282
1189
- msgid "Add to WP-Members Settings"
1190
- msgstr ""
1191
-
1192
- #: admin/tab-options.php:312
1193
- msgid "Close"
1194
- msgstr ""
1195
-
1196
- #: admin/tab-options.php:330 admin/tab-options.php:331
1197
- msgid "WP-Members Settings"
1198
- msgstr ""
1199
-
1200
- #: admin/tab-options.php:332
1201
- msgid ""
1202
- "The following is your WP-Members settings information if needed for support."
1203
- msgstr ""
1204
-
1205
- #: admin/tab-options.php:359
1206
- msgid "Click to Copy"
1207
- msgstr ""
1208
-
1209
- #: admin/tab-options.php:435
1210
- msgid "Custom Post Type settings were updated"
1211
- msgstr ""
1212
-
1213
- #: admin/tab-options.php:551
1214
- msgid "WP-Members settings were updated"
1215
- msgstr "WP-Member indstillinger er opdateret"
1216
-
1217
- #: admin/tab-options.php:621 admin/tab-options.php:651
1218
- msgid "USE CUSTOM URL BELOW"
1219
- msgstr ""
1220
-
1221
- #: admin/tab-options.php:640
1222
- msgid "Select a page"
1223
- msgstr "vælg en sider"
1224
-
1225
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1226
- #: inc/class-wp-members.php:1255
1227
- msgid "Username"
1228
- msgstr "Brugernavn"
1229
-
1230
- #: admin/user-export.php:65
1231
- msgid "Activated?"
1232
- msgstr "Aktiveret?"
1233
-
1234
- #: admin/user-export.php:68 admin/users.php:317
1235
- msgid "Subscription"
1236
- msgstr "Abonnement"
1237
-
1238
- #: admin/user-export.php:71
1239
- msgid "Registered"
1240
- msgstr "Registreret"
1241
-
1242
- #: admin/user-export.php:72
1243
- msgid "IP"
1244
- msgstr "IP"
1245
-
1246
- #: admin/user-export.php:135
1247
- msgid "Yes"
1248
- msgstr "Ja"
1249
-
1250
- #: admin/user-export.php:135 admin/users.php:399
1251
- msgid "No"
1252
- msgstr "Nej"
1253
-
1254
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1255
- msgid "Activate"
1256
- msgstr "Aktiver"
1257
-
1258
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1259
- msgid "Deactivate"
1260
- msgstr ""
1261
-
1262
- #: admin/users.php:52 admin/users.php:57
1263
- msgid "Export"
1264
- msgstr "Eksporter"
1265
-
1266
- #: admin/users.php:58 admin/users.php:109
1267
- msgid "Export All Users"
1268
- msgstr "Eksporter Alle Brugere"
1269
-
1270
- #: admin/users.php:158
1271
- #, php-format
1272
- msgid "%s users activated"
1273
- msgstr ""
1274
-
1275
- #: admin/users.php:158
1276
- #, php-format
1277
- msgid "%s users deactivated"
1278
- msgstr ""
1279
-
1280
- #: admin/users.php:161
1281
- msgid "No users selected"
1282
- msgstr ""
1283
-
1284
- #: admin/users.php:181
1285
- #, php-format
1286
- msgid "%s activated"
1287
- msgstr ""
1288
-
1289
- #: admin/users.php:186
1290
- #, php-format
1291
- msgid "%s deactivated"
1292
- msgstr ""
1293
-
1294
- #: admin/users.php:190
1295
- msgid "That user is already active"
1296
- msgstr ""
1297
-
1298
- #: admin/users.php:315
1299
- msgid "Pending"
1300
- msgstr ""
1301
-
1302
- #: admin/users.php:316
1303
- msgid "Trial"
1304
- msgstr ""
1305
-
1306
- #: admin/users.php:318
1307
- msgid "Expired"
1308
- msgstr ""
1309
-
1310
- #: admin/users.php:321
1311
- msgid "Not Activated"
1312
- msgstr ""
1313
-
1314
- #: admin/users.php:322
1315
- msgid "Deactivated"
1316
- msgstr ""
1317
-
1318
- #: admin/users.php:324
1319
- msgid "Not Exported"
1320
- msgstr ""
1321
-
1322
- #: inc/api.php:304 inc/class-wp-members.php:1296
1323
- msgid "log in"
1324
- msgstr "logge ind"
1325
-
1326
- #: inc/api.php:305
1327
- msgid "log out"
1328
- msgstr ""
1329
-
1330
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1331
- #: inc/wp-registration.php:77
1332
- #, php-format
1333
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1334
- msgstr ""
1335
-
1336
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1337
- #: inc/wp-registration.php:78
1338
- msgid "TOS"
1339
- msgstr "VfD"
1340
-
1341
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1342
- #: wp-members-tos.php:23
1343
- msgid "Terms of Service"
1344
- msgstr "Vilkår for Deltagelse"
1345
-
1346
- #: inc/class-wp-members-products.php:212
1347
- msgid "Product"
1348
- msgstr ""
1349
-
1350
- #: inc/class-wp-members-products.php:213
1351
- msgid "Products"
1352
- msgstr ""
1353
-
1354
- #: inc/class-wp-members-products.php:218
1355
- msgid "Memberships"
1356
- msgstr ""
1357
-
1358
- #: inc/class-wp-members-products.php:219
1359
- #, php-format
1360
- msgid "All %s"
1361
- msgstr ""
1362
-
1363
- #: inc/class-wp-members-products.php:220
1364
- #, php-format
1365
- msgid "Add New %s"
1366
- msgstr ""
1367
-
1368
- #: inc/class-wp-members-products.php:221
1369
- msgid "Add New"
1370
- msgstr "Tilføj Ny"
1371
-
1372
- #: inc/class-wp-members-products.php:222
1373
- #, php-format
1374
- msgid "New %s"
1375
- msgstr ""
1376
-
1377
- #: inc/class-wp-members-products.php:223
1378
- #, php-format
1379
- msgid "Edit %s"
1380
- msgstr ""
1381
-
1382
- #: inc/class-wp-members-products.php:224
1383
- #, php-format
1384
- msgid "Update %s"
1385
- msgstr ""
1386
-
1387
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1388
- #, php-format
1389
- msgid "View %s"
1390
- msgstr ""
1391
-
1392
- #: inc/class-wp-members-products.php:227
1393
- #, php-format
1394
- msgid "Search %s"
1395
- msgstr ""
1396
-
1397
- #: inc/class-wp-members-products.php:228
1398
- msgid "Not found"
1399
- msgstr ""
1400
-
1401
- #: inc/class-wp-members-products.php:229
1402
- msgid "Not found in Trash"
1403
- msgstr ""
1404
-
1405
- #: inc/class-wp-members-products.php:230
1406
- msgid "Insert into item"
1407
- msgstr ""
1408
-
1409
- #: inc/class-wp-members-products.php:231
1410
- #, php-format
1411
- msgid "Save %s Details"
1412
- msgstr ""
1413
-
1414
- #: inc/class-wp-members-products.php:234
1415
- msgid "Membership Product"
1416
- msgstr ""
1417
-
1418
- #: inc/class-wp-members-products.php:235
1419
- msgid "WP-Members Membership Products"
1420
- msgstr ""
1421
-
1422
- #: inc/class-wp-members-shortcodes.php:135
1423
- msgid ""
1424
- "This is a generic message to display the form message dialog in the "
1425
- "Customizer."
1426
- msgstr ""
1427
-
1428
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1429
- #: inc/deprecated.php:180
1430
- msgid "There was an error with the CAPTCHA form."
1431
- msgstr "Der opstod en fejl in CAPTCHA skemaet."
1432
-
1433
- #: inc/class-wp-members-shortcodes.php:676
1434
- msgid "Click here to log out."
1435
- msgstr ""
1436
-
1437
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1438
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1439
- msgid "Register"
1440
- msgstr "Registrer"
1441
-
1442
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1443
- msgid "Log In"
1444
- msgstr "Logge ind"
1445
-
1446
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1447
- msgid "WP-Members Additional Fields"
1448
- msgstr "WP-Members Ekstra Felter"
1449
-
1450
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1451
- msgid "Additional Information"
1452
- msgstr "Yderligere Information"
1453
-
1454
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1455
- msgid "Activate this user?"
1456
- msgstr "Aktiver denne bruger?"
1457
-
1458
- #: inc/class-wp-members-user-profile.php:453
1459
- msgid "Reactivate this user?"
1460
- msgstr "Genaktivere denne bruger?"
1461
-
1462
- #: inc/class-wp-members-user-profile.php:458
1463
- msgid "Deactivate this user?"
1464
- msgstr "Deactivate this user?"
1465
-
1466
- #: inc/class-wp-members-user-profile.php:507
1467
- msgid "IP @ registration"
1468
- msgstr "IP @ registration"
1469
-
1470
- #: inc/class-wp-members-user-profile.php:526
1471
- msgid "Product Access"
1472
- msgstr ""
1473
-
1474
- #: inc/class-wp-members-user-profile.php:534
1475
- msgid "Enable"
1476
- msgstr ""
1477
-
1478
- #: inc/class-wp-members-user-profile.php:535
1479
- msgid "Disable"
1480
- msgstr ""
1481
-
1482
- #: inc/class-wp-members-user-profile.php:541
1483
- msgid "Expires:"
1484
- msgstr ""
1485
-
1486
- #: inc/class-wp-members-user-profile.php:543
1487
- msgid "Enabled"
1488
- msgstr ""
1489
-
1490
- #: inc/class-wp-members-user.php:712
1491
- msgid "<strong>ERROR</strong>: User has not been activated."
1492
- msgstr ""
1493
-
1494
- #: inc/class-wp-members-widget.php:24
1495
- msgid "Displays the WP-Members sidebar login."
1496
- msgstr ""
1497
-
1498
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1499
- msgid "Login Status"
1500
- msgstr "Log Status"
1501
-
1502
- #: inc/class-wp-members-widget.php:46
1503
- msgid "Title:"
1504
- msgstr "Titel:"
1505
-
1506
- #: inc/class-wp-members-widget.php:50
1507
- msgid "Redirect to (optional):"
1508
- msgstr ""
1509
-
1510
- #: inc/class-wp-members.php:1183
1511
- msgid "First Name"
1512
- msgstr "Fornavn"
1513
-
1514
- #: inc/class-wp-members.php:1184
1515
- msgid "Last Name"
1516
- msgstr "Efternavn"
1517
-
1518
- #: inc/class-wp-members.php:1185
1519
- msgid "Address 1"
1520
- msgstr "Adresse1"
1521
-
1522
- #: inc/class-wp-members.php:1186
1523
- msgid "Address 2"
1524
- msgstr "Adresse2"
1525
-
1526
- #: inc/class-wp-members.php:1187
1527
- msgid "City"
1528
- msgstr "By"
1529
-
1530
- #: inc/class-wp-members.php:1188
1531
- msgid "State"
1532
- msgstr "Region"
1533
-
1534
- #: inc/class-wp-members.php:1189
1535
- msgid "Zip"
1536
- msgstr "Postnr"
1537
-
1538
- #: inc/class-wp-members.php:1190
1539
- msgid "Country"
1540
- msgstr "Land"
1541
-
1542
- #: inc/class-wp-members.php:1191
1543
- msgid "Day Phone"
1544
- msgstr "Telefon"
1545
-
1546
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1547
- msgid "Email"
1548
- msgstr "Email"
1549
-
1550
- #: inc/class-wp-members.php:1193
1551
- msgid "Confirm Email"
1552
- msgstr ""
1553
-
1554
- #: inc/class-wp-members.php:1194
1555
- msgid "Website"
1556
- msgstr "Website"
1557
-
1558
- #: inc/class-wp-members.php:1195
1559
- msgid "Biographical Info"
1560
- msgstr "Biographical Info"
1561
-
1562
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216
1563
- #: inc/class-wp-members.php:1295
1564
- msgid "Password"
1565
- msgstr "Kodeord"
1566
-
1567
- #: inc/class-wp-members.php:1197
1568
- msgid "Confirm Password"
1569
- msgstr ""
1570
-
1571
- #: inc/class-wp-members.php:1208
1572
- msgid "You are not logged in."
1573
- msgstr "Du er ikke logget ind."
1574
-
1575
- #: inc/class-wp-members.php:1214
1576
- msgid "Existing Users Log In"
1577
- msgstr "Logge Ind"
1578
-
1579
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1580
- msgid "Username or Email"
1581
- msgstr ""
1582
-
1583
- #: inc/class-wp-members.php:1218
1584
- msgid "Remember Me"
1585
- msgstr ""
1586
-
1587
- #: inc/class-wp-members.php:1219
1588
- msgid "Forgot password?"
1589
- msgstr "Glemt Kodeord?"
1590
-
1591
- #: inc/class-wp-members.php:1220
1592
- msgid "Click here to reset"
1593
- msgstr "Klik her for at nulstille"
1594
-
1595
- #: inc/class-wp-members.php:1221
1596
- msgid "New User?"
1597
- msgstr "Ny Bruger"
1598
-
1599
- #: inc/class-wp-members.php:1222
1600
- msgid "Click here to register"
1601
- msgstr "Klik her for at registrere"
1602
-
1603
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1604
- msgid "Change Password"
1605
- msgstr "Skift Kodeord"
1606
-
1607
- #: inc/class-wp-members.php:1226
1608
- msgid "New password"
1609
- msgstr ""
1610
-
1611
- #: inc/class-wp-members.php:1227
1612
- msgid "Confirm new password"
1613
- msgstr ""
1614
-
1615
- #: inc/class-wp-members.php:1228
1616
- msgid "Update Password"
1617
- msgstr "Opdater Kodeord"
1618
-
1619
- #: inc/class-wp-members.php:1231
1620
- msgid "Reset Forgotten Password"
1621
- msgstr "Nulstil glemt Kodeord"
1622
-
1623
- #: inc/class-wp-members.php:1234
1624
- msgid "Reset Password"
1625
- msgstr "Nulstil Kodeord"
1626
-
1627
- #: inc/class-wp-members.php:1235
1628
- msgid "Forgot username?"
1629
- msgstr ""
1630
-
1631
- #: inc/class-wp-members.php:1236
1632
- msgid "Click here"
1633
- msgstr ""
1634
-
1635
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1636
- msgid "Retrieve username"
1637
- msgstr ""
1638
-
1639
- #: inc/class-wp-members.php:1240
1640
- msgid "Email Address"
1641
- msgstr ""
1642
-
1643
- #: inc/class-wp-members.php:1244
1644
- msgid "New User Registration"
1645
- msgstr "Ny Bruger Registrering"
1646
-
1647
- #: inc/class-wp-members.php:1245
1648
- msgid "Choose a Username"
1649
- msgstr "Vælg et Brugernavn"
1650
-
1651
- #: inc/class-wp-members.php:1246
1652
- msgid "Input the code:"
1653
- msgstr ""
1654
-
1655
- #: inc/class-wp-members.php:1248
1656
- msgid "Reset Form"
1657
- msgstr ""
1658
-
1659
- #: inc/class-wp-members.php:1251
1660
- msgid "Required field"
1661
- msgstr "Obligatorisk felt"
1662
-
1663
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1664
- msgid "Edit Your Information"
1665
- msgstr "Rediger dine Oplysninger"
1666
-
1667
- #: inc/class-wp-members.php:1256
1668
- msgid "Update Profile"
1669
- msgstr "Opdater Profil"
1670
-
1671
- #: inc/class-wp-members.php:1257
1672
- msgid "Update this file"
1673
- msgstr ""
1674
-
1675
- #: inc/class-wp-members.php:1260
1676
- msgid "Login Failed!"
1677
- msgstr "Log på fejlede!"
1678
-
1679
- #: inc/class-wp-members.php:1261
1680
- msgid "You entered an invalid username or password."
1681
- msgstr "Du har skrevet forkert Brugernavn eller Kodeord."
1682
-
1683
- #: inc/class-wp-members.php:1262
1684
- msgid "Click here to continue."
1685
- msgstr "Klik her for at fortsætte."
1686
-
1687
- #: inc/class-wp-members.php:1263
1688
- msgid "Password fields cannot be empty"
1689
- msgstr "Kodeordsfelt ikke være tomt"
1690
-
1691
- #: inc/class-wp-members.php:1264
1692
- msgid "Sorry, that email address was not found."
1693
- msgstr ""
1694
-
1695
- #: inc/class-wp-members.php:1265
1696
- #, php-format
1697
- msgid "An email was sent to %s with your username."
1698
- msgstr ""
1699
-
1700
- #: inc/class-wp-members.php:1266
1701
- #, php-format
1702
- msgid "Sorry, %s is a required field."
1703
- msgstr "%s skal udfyldes, er et obligatorisk felt."
1704
-
1705
- #: inc/class-wp-members.php:1267
1706
- msgid "You must enter a valid email address."
1707
- msgstr "Du skal indtaste en gyldig Email-adresse. "
1708
-
1709
- #: inc/class-wp-members.php:1268
1710
- msgid "The username cannot include non-alphanumeric characters."
1711
- msgstr "Brugernavn må kun indeholde bogstaver."
1712
-
1713
- #: inc/class-wp-members.php:1269
1714
- msgid "Sorry, username is a required field"
1715
- msgstr "Brugernavn skal udfyldes, er et obligatorisk felt"
1716
-
1717
- #: inc/class-wp-members.php:1270
1718
- msgid "Passwords did not match."
1719
- msgstr "Adgangskoder matcher ikke."
1720
-
1721
- #: inc/class-wp-members.php:1271
1722
- msgid "Emails did not match."
1723
- msgstr "Emails matchede ikke."
1724
-
1725
- #: inc/class-wp-members.php:1272
1726
- msgid "You must complete the CAPTCHA form."
1727
- msgstr "Du skal færdiggøre CAPTCHA skemaet."
1728
-
1729
- #: inc/class-wp-members.php:1273
1730
- msgid "CAPTCHA was not valid."
1731
- msgstr ""
1732
-
1733
- #: inc/class-wp-members.php:1274 inc/register.php:52
1734
- msgid "There was an error processing the form."
1735
- msgstr "Der var en fejl under behandling formularen."
1736
-
1737
- #: inc/class-wp-members.php:1278
1738
- msgid "Edit My Information"
1739
- msgstr "Rediger mine info"
1740
-
1741
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283
1742
- #: inc/class-wp-members.php:1285 inc/class-wp-members.php:1290
1743
- #, php-format
1744
- msgid "You are logged in as %s"
1745
- msgstr "Du er logget på som %s"
1746
-
1747
- #: inc/class-wp-members.php:1281
1748
- msgid "Click to log out."
1749
- msgstr "Klik for at logge ud."
1750
-
1751
- #: inc/class-wp-members.php:1282
1752
- msgid "Begin using the site."
1753
- msgstr "Begynd at bruge sitet"
1754
-
1755
- #: inc/class-wp-members.php:1284
1756
- msgid "Click to log out"
1757
- msgstr "Klik for at logge ud"
1758
-
1759
- #: inc/class-wp-members.php:1286
1760
- msgid "click to log out"
1761
- msgstr "klik for at logge ud"
1762
-
1763
- #: inc/class-wp-members.php:1287
1764
- msgid "Log Out"
1765
- msgstr ""
1766
-
1767
- #: inc/class-wp-members.php:1291
1768
- msgid "click here to log out"
1769
- msgstr "Klik her for at logge ud"
1770
-
1771
- #: inc/class-wp-members.php:1292
1772
- msgid "Login Failed!<br />You entered an invalid username or password."
1773
- msgstr "Log på fejlede! <br />Forkert Brugernavn eller Kodeord."
1774
-
1775
- #: inc/class-wp-members.php:1297
1776
- msgid "Forgot?"
1777
- msgstr "Glemt?"
1778
-
1779
- #: inc/class-wp-members.php:1301
1780
- msgid ""
1781
- "This content is restricted to site members. If you are an existing user, "
1782
- "please log in. New users may register below."
1783
- msgstr ""
1784
- "Dette er en lukket Brugerside. Hvis du er registreret bruger kan du logge på "
1785
- "ellers må du lade dig registrere."
1786
-
1787
- #: inc/class-wp-members.php:1302
1788
- msgid ""
1789
- "Congratulations! Your registration was successful.<br /><br />You may now "
1790
- "log in using the password that was emailed to you."
1791
- msgstr ""
1792
- "Tillykke din registrering er gennemført.<br /><br />Du kan nu logge på ved "
1793
- "hjælp af det Kodeord som er blevet sendt til dig."
1794
-
1795
- #: inc/class-wp-members.php:1305
1796
- msgid "Sorry, that username is taken, please try another."
1797
- msgstr "Dette Brugernavn er taget. Prøv et andet."
1798
-
1799
- #: inc/class-wp-members.php:1306
1800
- msgid ""
1801
- "Sorry, that email address already has an account.<br />Please try another."
1802
- msgstr ""
1803
- "Denne Email-adresse er allerede tilknyttet en bruger. <br />Prøv en anden."
1804
-
1805
- #: inc/class-wp-members.php:1307
1806
- msgid "Your information was updated!"
1807
- msgstr "Dine Oplysninger er blevet opdateret!"
1808
-
1809
- #: inc/class-wp-members.php:1310
1810
- msgid "Passwords did not match.<br /><br />Please try again."
1811
- msgstr "Kodeordene er ikke ens.<br /><br />Prøv igen."
1812
-
1813
- #: inc/class-wp-members.php:1311
1814
- msgid "Password successfully changed!"
1815
- msgstr ""
1816
-
1817
- #: inc/class-wp-members.php:1312
1818
- msgid "Either the username or email address do not exist in our records."
1819
- msgstr "Brugernavn eller Email-adresse eksisterer ikke i databasen."
1820
-
1821
- #: inc/class-wp-members.php:1313
1822
- msgid ""
1823
- "Password successfully reset!<br /><br />An email containing a new password "
1824
- "has been sent to the email address on file for your account."
1825
- msgstr ""
1826
-
1827
- #: inc/class-wp-members.php:1315
1828
- msgid "Sorry, you do not have access to this content."
1829
- msgstr ""
1830
-
1831
- #: inc/class-wp-members.php:1433
1832
- msgid "Show forms as logged out"
1833
- msgstr ""
1834
-
1835
- #: inc/class-wp-members.php:1442
1836
- msgid "Show form message dialog"
1837
- msgstr ""
1838
-
1839
- #: inc/class-wp-members.php:1538
1840
- msgid "(more&hellip;)"
1841
- msgstr "(mere&hellip;)"
1842
-
1843
- #: inc/register.php:417
1844
- msgid "We were unable to validate the public key."
1845
- msgstr "Det var ikke muligt at validere den offentlige nøgle."
1846
-
1847
- #: inc/register.php:421
1848
- msgid "We were unable to validate the private key."
1849
- msgstr "Det var ikke muligt at validere den private nøgle."
1850
-
1851
- #: inc/register.php:425
1852
- msgid "The challenge parameter of the verify script was incorrect."
1853
- msgstr "The challenge parameter of the verify script was incorrect."
1854
-
1855
- #: inc/register.php:429
1856
- msgid "The CAPTCHA solution was incorrect."
1857
- msgstr "CAPTCHA løsningen er ikke fuldstændig."
1858
-
1859
- #: inc/register.php:433
1860
- msgid "The parameters to verify were incorrect"
1861
- msgstr "Verificierings-parametrene er forkerte"
1862
-
1863
- #: inc/register.php:437
1864
- msgid ""
1865
- "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1866
- msgstr ""
1867
- "Af sikkerhedsmæssige årsager er reCAPTCHA API nøglen er tilknyttet et "
1868
- "specifikt domænenavn."
1869
-
1870
- #: inc/register.php:441
1871
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1872
- msgstr "reCAPTCHA serveren blev ikke tilsluttet. Prøv igen."
1873
-
1874
- #: inc/register.php:445
1875
- msgid "You have entered an incorrect code value. Please try again."
1876
- msgstr ""
1877
-
1878
- #: wp-members-tos.php:35
1879
- #, php-format
1880
- msgid "%sclose%s"
1881
- msgstr "%sluk%s"
1882
-
1883
- #: wp-members-tos.php:37
1884
- #, php-format
1885
- msgid "%sprint%s"
1886
- msgstr "%sudskriv%s"
1887
-
1888
- #. Plugin Name of the plugin/theme
1889
- msgid "WP-Members"
1890
- msgstr "WP-Members"
1891
-
1892
- #. Plugin URI of the plugin/theme
1893
- msgid "https://rocketgeek.com"
1894
- msgstr ""
1895
-
1896
- #. Description of the plugin/theme
1897
- msgid ""
1898
- "WP access restriction and user registration. For more information on plugin "
1899
- "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
1900
- "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
1901
- "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
1902
- "available. WP-Members(tm) is a trademark of butlerblog.com."
1903
- msgstr ""
1904
-
1905
- #. Author of the plugin/theme
1906
- msgid "Chad Butler"
1907
- msgstr ""
1908
-
1909
- #. Author URI of the plugin/theme
1910
- msgid "http://butlerblog.com/"
1911
- msgstr ""
1912
-
1913
- #~ msgid "You have set WP-Members to turn off the registration process"
1914
- #~ msgstr "Du har sat WP-Members til at afbryde registreringsprocessen"
1915
-
1916
- #~ msgid ""
1917
- #~ "but you also set to moderate and/or email admin new registrations. You "
1918
- #~ "will need to set up a registration page for users to register."
1919
- #~ msgstr ""
1920
- #~ "men du skal også ændre og / eller e-mail admin for nye registreringer. Du "
1921
- #~ "skal oprette en registreringsside for brugere."
1922
-
1923
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
1924
- #~ msgstr ""
1925
- #~ "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
1926
-
1927
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
1928
- #~ msgstr ""
1929
- #~ "Valgt Navn er nødvendigt for at tilføje et nyt felt. Intet er ændret."
1930
-
1931
- #~ msgid "field was added"
1932
- #~ msgstr "Felt Etiket"
1933
-
1934
- #~ msgid "field was updated"
1935
- #~ msgstr "WP-Members felter er opdateret"
1936
-
1937
- #~ msgid "Option Name"
1938
- #~ msgstr "Valgt Navn"
1939
-
1940
- #~ msgid "For dropdown, array of values:"
1941
- #~ msgstr "Til Dropdown, tabel med valg:"
1942
-
1943
- #~ msgid ""
1944
- #~ "Determine which fields will display and which are required. This "
1945
- #~ "includes all fields, both native WP fields and WP-Members custom fields."
1946
- #~ msgstr ""
1947
- #~ "Beslut hvilke felter der skal vises og hvilke der er obligatoriske. Dette "
1948
- #~ "inkluderer både almindelige WP felter og WP-Member felter"
1949
-
1950
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
1951
- #~ msgstr "(Bemærk: Email er altid obligatorisk - og kan ikke ændres.)"
1952
-
1953
- #~ msgid "Add/Delete"
1954
- #~ msgstr "Tilføj/Slet"
1955
-
1956
- #~ msgid "Checked?"
1957
- #~ msgstr "Markering?"
1958
-
1959
- #~ msgid "Delete"
1960
- #~ msgstr "Slet"
1961
-
1962
- #~ msgid "(Email cannot be removed)"
1963
- #~ msgstr "(Email kan ikke slettes)"
1964
-
1965
- #~ msgid "Update Fields"
1966
- #~ msgstr "Opdater Felter"
1967
-
1968
- #~ msgid "Please indicate that you agree to the %s TOS %s"
1969
- #~ msgstr "Marker at du accepterer %sVilkår for Deltagelse %s"
1970
-
1971
- #~ msgid "dropdown"
1972
- #~ msgstr "Dropdown"
1973
-
1974
- #~ msgid "Block Posts by default"
1975
- #~ msgstr "Bloker Poster som standard"
1976
-
1977
- #~ msgid ""
1978
- #~ "Note: Posts can still be individually blocked or unblocked at the article "
1979
- #~ "level"
1980
- #~ msgstr ""
1981
- #~ "Bemærk: Poster kan stadig blokeres eller frigives individuelt under "
1982
- #~ "redigering"
1983
-
1984
- #~ msgid "Block Pages by default"
1985
- #~ msgstr "Bloker Sider som standard"
1986
-
1987
- #~ msgid ""
1988
- #~ "Note: Pages can still be individually blocked or unblocked at the article "
1989
- #~ "level"
1990
- #~ msgstr ""
1991
- #~ "Bemærk: Sider kan stadig blokeres eller frigives individuelt under "
1992
- #~ "redigering"
1993
-
1994
- #~ msgid "Show excerpts"
1995
- #~ msgstr "Vis Uddrag"
1996
-
1997
- #~ msgid ""
1998
- #~ "Shows excerpted content above the login/registration on both Posts and "
1999
- #~ "Pages"
2000
- #~ msgstr "Vis uddrag inden Log på / Registrering af både Poster og Sider"
2001
-
2002
- #~ msgid "Turns on CAPTCHA for registration"
2003
- #~ msgstr "Slår CAPTCHA til under registrering"
2004
-
2005
- #~ msgid "Hide registration"
2006
- #~ msgstr "Skjul Registrering"
2007
-
2008
- #~ msgid "Optional"
2009
- #~ msgstr "Valgfrit"
2010
-
2011
- #~ msgid "AIM"
2012
- #~ msgstr "AIM"
2013
-
2014
- #~ msgid "Yahoo IM"
2015
- #~ msgstr "Yahoo IM"
2016
-
2017
- #~ msgid "Jabber/Google Talk"
2018
- #~ msgstr "Jabber/Google Talk"
2019
-
2020
- #~ msgid ""
2021
- #~ "Password successfully changed!<br /><br />You will need to re-login with "
2022
- #~ "your new password."
2023
- #~ msgstr ""
2024
- #~ "Kodeordet er nu ændret!<br /><br />Du bliver nød til at logge på igen med "
2025
- #~ "dit nye Kodeord."
2026
-
2027
- #~ msgid ""
2028
- #~ "Password successfully reset!<br /><br />An email containing a new "
2029
- #~ "password has been sent to the email address on file for your account. You "
2030
- #~ "may change this random password then re-login with your new password."
2031
- #~ msgstr ""
2032
- #~ "Kodeord er nulstillet!<br /><br />En Email med nyt kodeord er blevet "
2033
- #~ "sendt til din Email-adresse. Du kan skifte det tilfældige kodeord med et "
2034
- #~ "nyt efter at du har logget dig på."
2035
-
2036
- #~ msgid "Custom"
2037
- #~ msgstr "Custom"
2038
-
2039
- #~ msgid "edit"
2040
- #~ msgstr "redigere"
2041
-
2042
- #~ msgid "Use reCAPTCHA"
2043
- #~ msgstr "Brug reCAPTCHA"
2044
-
2045
- #~ msgid "New Password"
2046
- #~ msgstr "Nyt Kodeord"
2047
-
2048
- #~ msgid "Repeat Password"
2049
- #~ msgstr "Gentag Kodeord"
2050
-
2051
- #~ msgid "Remember me"
2052
- #~ msgstr "Husk mig"
2053
-
2054
- #~ msgid "Turn off registration"
2055
- #~ msgstr "Afbryd registrering"
2056
-
2057
- #~ msgid "Turns off the registration process, only allows login"
2058
- #~ msgstr "Afbryder registreringsprocessen, tillader kun log på"
2059
-
2060
- #~ msgid "Legacy forms"
2061
- #~ msgstr "Legacy forms"
2062
-
2063
- #~ msgid ""
2064
- #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2065
- #~ "forms)"
2066
- #~ msgstr ""
2067
- #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2068
- #~ "forms)"
2069
-
2070
- #~ msgid "Members Area URL:"
2071
- #~ msgstr "Members Area URL:"
2072
-
2073
- #~ msgid "Add"
2074
- #~ msgstr "Tilføj"
2075
-
2076
- #~ msgid "WP-Members expiration periods were updated"
2077
- #~ msgstr "WP-Members prøveperiode er opdateret"
2078
-
2079
- #~ msgid ""
2080
- #~ "Settings were saved, but you have required fields that are not set to "
2081
- #~ "display!"
2082
- #~ msgstr ""
2083
- #~ "Indstillingerne er gemt, men der er obligatoriske felter, som ikke er "
2084
- #~ "indstillet til at blive vist!"
2085
-
2086
- #~ msgid ""
2087
- #~ "Note: This will not cause an error for the end user, as only displayed "
2088
- #~ "fields are validated. However, you should still check that your "
2089
- #~ "displayed and required fields match up. Mismatched fields are "
2090
- #~ "highlighted below."
2091
- #~ msgstr ""
2092
- #~ "Bemærk: Dette vil ikke medføre en fejl for slutbrugeren, da kun viste "
2093
- #~ "felter er valideret. Du bør dog stadig kontrollere, at dine viste, og "
2094
- #~ "krævede felter passer sammen. Forkerte felter er fremhævet nedenfor."
2095
-
2096
- #~ msgid "If you find this plugin useful, please consider making a donation"
2097
- #~ msgstr "If you find this plugin useful, please consider making a donation"
2098
-
2099
- #~ msgid "Subscriptions"
2100
- #~ msgstr "Abonnement"
2101
-
2102
- #~ msgid "PayPal Settings"
2103
- #~ msgstr "PayPal Settings"
2104
-
2105
- #~ msgid "If you find this plugin useful, please consider a %s donation %s"
2106
- #~ msgstr "If you find this plugin useful, please consider a %s donation %s"
2107
-
2108
- #~ msgid "%d users were activated."
2109
- #~ msgstr "%d brugere er aktiverede."
2110
-
2111
- #~ msgid ""
2112
- #~ "Users ready to export, %s click here %s to generate and download a CSV."
2113
- #~ msgstr ""
2114
- #~ "Brugere klar til export %s Klik her %s for at generere og downloade en "
2115
- #~ "CSV."
2116
-
2117
- #~ msgid "WP-Members Users"
2118
- #~ msgstr "WP-Members Brugere"
2119
-
2120
- #~ msgid "No users matched your criteria"
2121
- #~ msgstr "Ingen brugere matchede dine kriterier"
2122
-
2123
- #~ msgid "Bulk Actions"
2124
- #~ msgstr "Gruppe handling"
2125
-
2126
- #~ msgid "Apply"
2127
- #~ msgstr "Ansøge"
2128
-
2129
- #~ msgid "Indicates a required field"
2130
- #~ msgstr "Et obligatorisk felt"
2131
-
2132
- #~ msgid "Login"
2133
- #~ msgstr "Log på"
2134
-
2135
- #~ msgid "Clear Form"
2136
- #~ msgstr "Ryd indhold"
2137
-
2138
- #~ msgid "Submit"
2139
- #~ msgstr "Indsend"
2140
-
2141
- #~ msgid "Cheatin&#8217; uh?"
2142
- #~ msgstr "Snyder du?"
2143
-
2144
- #~ msgid "there was an error and no users were exported"
2145
- #~ msgstr "der opstod en fejl og ingen Brugere blev eksporteret"
2146
-
2147
- #~ msgid "login"
2148
- #~ msgstr "log "
2149
-
2150
- #~ msgid ""
2151
- #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
2152
- #~ msgstr "Marker at du har læst og accepteret %sVilkår for Deltagelse %s"
2153
-
2154
- #~ msgid "You may change your password here: %s"
2155
- #~ msgstr "Du kan skifte Kodeord her: %s"
2156
-
2157
- #~ msgid "Your registration info for %s"
2158
- #~ msgstr "Dine registrerings info for %s"
2159
-
2160
- #~ msgid "Thank you for registering for %s"
2161
- #~ msgstr "Tak for din registrering på %s"
2162
-
2163
- #~ msgid "Your registration information is below."
2164
- #~ msgstr "Dine oplysninger er listet nedenfor."
2165
-
2166
- #~ msgid "You may wish to retain a copy for your records."
2167
- #~ msgstr "Gem dine oplysninger."
2168
-
2169
- #~ msgid "username: %s"
2170
- #~ msgstr "Brugernavn: %s"
2171
-
2172
- #~ msgid "password: %s"
2173
- #~ msgstr "Kodeord: %s"
2174
-
2175
- #~ msgid "You may login here:"
2176
- #~ msgstr "Log på her:"
2177
-
2178
- #~ msgid ""
2179
- #~ "Thank you for registering for %s. Your registration has been received and "
2180
- #~ "is pending approval."
2181
- #~ msgstr ""
2182
- #~ "Tak for din registrering på %s. Din registreing er modtaget og afventer "
2183
- #~ "godkendelse."
2184
-
2185
- #~ msgid "You will receive login instructions upon approval of your account"
2186
- #~ msgstr ""
2187
- #~ "Du vil modtage instruks om Log på proceduren når din registrering er "
2188
- #~ "godkendt."
2189
-
2190
- #~ msgid "Your registration for %s has been approved."
2191
- #~ msgstr "Din registrering på %s er godkendt."
2192
-
2193
- #~ msgid "You may login at: %s"
2194
- #~ msgstr "Du kan nu logge på %s"
2195
-
2196
- #~ msgid "You originally registered at:"
2197
- #~ msgstr "Du er oprindeligt registreret på:"
2198
-
2199
- #~ msgid "Password reset for %s"
2200
- #~ msgstr "Kodeordet er nulstillet for %s"
2201
-
2202
- #~ msgid "Your password for %s has been reset"
2203
- #~ msgstr "Dit Kodeord for %s er nulstillet"
2204
-
2205
- #~ msgid ""
2206
- #~ "Your new password is included below. You may wish to retain a copy for "
2207
- #~ "your records."
2208
- #~ msgstr "Dit nye Kodeord står nedenfor. Gem dine oplysninger."
2209
-
2210
- #~ msgid "This is an automated message from %s"
2211
- #~ msgstr "Dette er en automatisk besked fra %s"
2212
-
2213
- #~ msgid "Please do not reply to this address"
2214
- #~ msgstr "Undlad venligst at svare på denne Email"
2215
-
2216
- #~ msgid "New user registration for %s"
2217
- #~ msgstr "Ny bruger registrering for %s"
2218
-
2219
- #~ msgid "The following user registered for %s"
2220
- #~ msgstr "Følgende bruger er registreret %s"
2221
-
2222
- #~ msgid "and is pending admin approval"
2223
- #~ msgstr "og afventer Admins godkendelse"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2010 WP-Members
2
+ # This file is distributed under the same license as the WP-Members package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Members 3.2.6\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
8
+ "PO-Revision-Date: 2020-05-22 17:51-0400\n"
9
+ "Last-Translator: Chad Butler <plugins@butlerblog.com>\n"
10
+ "Language-Team: mikael.boldt@mail.dk\n"
11
+ "Language: da_DK\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_c\n"
17
+ "X-Poedit-Basepath: D:/downloads/wp-members\n"
18
+ "X-Generator: Poedit 2.3.1\n"
19
+ "X-Poedit-SearchPath-0: D:/downloads/wp-members\n"
20
+
21
+ #: includes/admin/class-wp-members-admin-api.php:292
22
+ msgid "Custom email"
23
+ msgstr ""
24
+
25
+ #: includes/admin/class-wp-members-admin-api.php:293
26
+ #: includes/admin/class-wp-members-admin-api.php:295
27
+ msgid "Subject"
28
+ msgstr "Emne"
29
+
30
+ #: includes/admin/class-wp-members-admin-api.php:296
31
+ msgid "Body"
32
+ msgstr "Brødtekst"
33
+
34
+ #: includes/admin/class-wp-members-admin-api.php:298
35
+ msgid "Your custom email message content."
36
+ msgstr ""
37
+
38
+ #: includes/admin/class-wp-members-admin-api.php:376
39
+ msgid "Options"
40
+ msgstr "Valg"
41
+
42
+ #: includes/admin/class-wp-members-admin-api.php:377
43
+ msgid "Fields"
44
+ msgstr "Felter"
45
+
46
+ #: includes/admin/class-wp-members-admin-api.php:378
47
+ msgid "Dialogs"
48
+ msgstr "Dialog"
49
+
50
+ #: includes/admin/class-wp-members-admin-api.php:379
51
+ msgid "Emails"
52
+ msgstr "Email"
53
+
54
+ #: includes/admin/class-wp-members-admin-api.php:395
55
+ msgid "New Registration"
56
+ msgstr "Ny Bruger Registrering"
57
+
58
+ #: includes/admin/class-wp-members-admin-api.php:404
59
+ msgid "Registration is Moderated"
60
+ msgstr "Registrering fuldført"
61
+
62
+ #: includes/admin/class-wp-members-admin-api.php:410
63
+ msgid "Registration is Moderated, User is Approved"
64
+ msgstr "Din registrering er godkendt"
65
+
66
+ #: includes/admin/class-wp-members-admin-api.php:418
67
+ msgid "Password Reset"
68
+ msgstr "Kodeord Nulstillet"
69
+
70
+ #: includes/admin/class-wp-members-admin-api.php:425
71
+ msgid "Retrieve Username"
72
+ msgstr ""
73
+
74
+ #: includes/admin/class-wp-members-admin-api.php:433
75
+ msgid "Admin Notification"
76
+ msgstr "Admin Meddelelse"
77
+
78
+ #: includes/admin/class-wp-members-admin-api.php:459
79
+ msgid "Restricted post (or page), displays above the login/registration form"
80
+ msgstr ""
81
+ "Vises over Log / Registrering Post eller Side med begrænset adgang"
82
+
83
+ #: includes/admin/class-wp-members-admin-api.php:460
84
+ msgid "Username is taken"
85
+ msgstr "Brugernavn er taget"
86
+
87
+ #: includes/admin/class-wp-members-admin-api.php:461
88
+ msgid "Email is registered"
89
+ msgstr "Email er registreret"
90
+
91
+ #: includes/admin/class-wp-members-admin-api.php:462
92
+ msgid "Registration completed"
93
+ msgstr "Registrering fuldført - afventer godkendelse"
94
+
95
+ #: includes/admin/class-wp-members-admin-api.php:463
96
+ msgid "User update"
97
+ msgstr "Bruger opdatering"
98
+
99
+ #: includes/admin/class-wp-members-admin-api.php:464
100
+ msgid "Passwords did not match"
101
+ msgstr "Kodeordene er ikke ens"
102
+
103
+ #: includes/admin/class-wp-members-admin-api.php:465
104
+ msgid "Password changes"
105
+ msgstr "Ændret Kodeord"
106
+
107
+ #: includes/admin/class-wp-members-admin-api.php:466
108
+ msgid "Username or email do not exist when trying to reset forgotten password"
109
+ msgstr ""
110
+ "Brugernavn eller Email eksisterer ikke når glemt Kodeord forsøges nulstillet"
111
+
112
+ #: includes/admin/class-wp-members-admin-api.php:467
113
+ msgid "Password reset"
114
+ msgstr "Nulstil Kodeord"
115
+
116
+ #: includes/admin/class-wp-members-admin-api.php:623
117
+ msgid "Settings"
118
+ msgstr "Indstillinger"
119
+
120
+ #: includes/admin/class-wp-members-admin-posts.php:30
121
+ #: includes/admin/class-wp-members-admin-posts.php:33
122
+ msgid "Unblock"
123
+ msgstr ""
124
+
125
+ #: includes/admin/class-wp-members-admin-posts.php:31
126
+ #: includes/admin/class-wp-members-admin-posts.php:34
127
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
128
+ msgid "Block"
129
+ msgstr "Bloker"
130
+
131
+ #: includes/admin/class-wp-members-admin-posts.php:32
132
+ #: includes/admin/class-wp-members-admin-posts.php:35
133
+ msgid "Hide"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-members-admin-posts.php:125
137
+ #, php-format
138
+ msgid "%s blocked"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-members-admin-posts.php:125
142
+ #, php-format
143
+ msgid "%s unblocked"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-members-admin-posts.php:165
147
+ #, php-format
148
+ msgid "%s Restriction"
149
+ msgstr ""
150
+
151
+ #: includes/admin/class-wp-members-admin-posts.php:195
152
+ msgid "Unblocked"
153
+ msgstr ""
154
+
155
+ #: includes/admin/class-wp-members-admin-posts.php:196
156
+ msgid "Blocked"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-members-admin-posts.php:197
160
+ msgid "Hidden"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-members-admin-posts.php:203
164
+ msgid "Status:"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-members-admin-posts.php:203
168
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
169
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
170
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
171
+ msgid "Edit"
172
+ msgstr "Redigere"
173
+
174
+ #: includes/admin/class-wp-members-admin-posts.php:218
175
+ msgid "Ok"
176
+ msgstr ""
177
+
178
+ #: includes/admin/class-wp-members-admin-posts.php:219
179
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
180
+ msgid "Cancel"
181
+ msgstr ""
182
+
183
+ #: includes/admin/class-wp-members-admin-posts.php:305
184
+ #: includes/admin/class-wp-members-products-admin.php:629
185
+ msgid "Status"
186
+ msgstr ""
187
+
188
+ #: includes/admin/class-wp-members-admin-users.php:28
189
+ #: includes/admin/class-wp-members-admin-users.php:33
190
+ #: includes/admin/class-wp-members-admin-users.php:59
191
+ msgid "Activate"
192
+ msgstr "Aktiver"
193
+
194
+ #: includes/admin/class-wp-members-admin-users.php:29
195
+ #: includes/admin/class-wp-members-admin-users.php:34
196
+ #: includes/admin/class-wp-members-admin-users.php:62
197
+ msgid "Deactivate"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-members-admin-users.php:31
201
+ #: includes/admin/class-wp-members-admin-users.php:36
202
+ msgid "Export"
203
+ msgstr "Eksporter"
204
+
205
+ #: includes/admin/class-wp-members-admin-users.php:37
206
+ #: includes/admin/class-wp-members-admin-users.php:88
207
+ msgid "Export All Users"
208
+ msgstr "Eksporter Alle Brugere"
209
+
210
+ #: includes/admin/class-wp-members-admin-users.php:126
211
+ #, php-format
212
+ msgid "%s users activated"
213
+ msgstr ""
214
+
215
+ #: includes/admin/class-wp-members-admin-users.php:126
216
+ #, php-format
217
+ msgid "%s users deactivated"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-members-admin-users.php:129
221
+ msgid "No users selected"
222
+ msgstr ""
223
+
224
+ #: includes/admin/class-wp-members-admin-users.php:147
225
+ msgid "You cannot activate or deactivate yourself"
226
+ msgstr ""
227
+
228
+ #: includes/admin/class-wp-members-admin-users.php:152
229
+ #, php-format
230
+ msgid "%s activated"
231
+ msgstr ""
232
+
233
+ #: includes/admin/class-wp-members-admin-users.php:157
234
+ #, php-format
235
+ msgid "%s deactivated"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-members-admin-users.php:161
239
+ msgid "That user is already active"
240
+ msgstr ""
241
+
242
+ #: includes/admin/class-wp-members-admin-users.php:288
243
+ msgid "Pending"
244
+ msgstr ""
245
+
246
+ #: includes/admin/class-wp-members-admin-users.php:289
247
+ msgid "Trial"
248
+ msgstr ""
249
+
250
+ #: includes/admin/class-wp-members-admin-users.php:290
251
+ #: includes/admin/class-wp-members-export.php:74
252
+ msgid "Subscription"
253
+ msgstr "Abonnement"
254
+
255
+ #: includes/admin/class-wp-members-admin-users.php:291
256
+ msgid "Expired"
257
+ msgstr ""
258
+
259
+ #: includes/admin/class-wp-members-admin-users.php:294
260
+ msgid "Activated"
261
+ msgstr ""
262
+
263
+ #: includes/admin/class-wp-members-admin-users.php:295
264
+ msgid "Pending Activation"
265
+ msgstr ""
266
+
267
+ #: includes/admin/class-wp-members-admin-users.php:296
268
+ msgid "Deactivated"
269
+ msgstr ""
270
+
271
+ #: includes/admin/class-wp-members-admin-users.php:298
272
+ msgid "Not Exported"
273
+ msgstr ""
274
+
275
+ #: includes/admin/class-wp-members-admin-users.php:387
276
+ #: includes/admin/class-wp-members-export.php:160
277
+ msgid "No"
278
+ msgstr "Nej"
279
+
280
+ #: includes/admin/class-wp-members-export.php:64
281
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
282
+ msgid "User ID"
283
+ msgstr ""
284
+
285
+ #: includes/admin/class-wp-members-export.php:65
286
+ #: includes/class-wp-members.php:1523 includes/class-wp-members.php:1546
287
+ msgid "Username"
288
+ msgstr "Brugernavn"
289
+
290
+ #: includes/admin/class-wp-members-export.php:71
291
+ msgid "Activated?"
292
+ msgstr "Aktiveret?"
293
+
294
+ #: includes/admin/class-wp-members-export.php:75
295
+ #: includes/admin/class-wp-members-products-admin.php:64
296
+ #: includes/admin/class-wp-members-products-admin.php:632
297
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
298
+ msgid "Expires"
299
+ msgstr "Udløber"
300
+
301
+ #: includes/admin/class-wp-members-export.php:77
302
+ msgid "Registered"
303
+ msgstr "Registreret"
304
+
305
+ #: includes/admin/class-wp-members-export.php:78
306
+ msgid "IP"
307
+ msgstr "IP"
308
+
309
+ #: includes/admin/class-wp-members-export.php:160
310
+ #: includes/admin/class-wp-members-products-admin.php:104
311
+ msgid "Yes"
312
+ msgstr "Ja"
313
+
314
+ #: includes/admin/class-wp-members-products-admin.php:62
315
+ msgid "Slug"
316
+ msgstr ""
317
+
318
+ #: includes/admin/class-wp-members-products-admin.php:63
319
+ msgid "Role"
320
+ msgstr ""
321
+
322
+ #: includes/admin/class-wp-members-products-admin.php:66
323
+ msgid "Default"
324
+ msgstr ""
325
+
326
+ #: includes/admin/class-wp-members-products-admin.php:68
327
+ msgid "Last updated"
328
+ msgstr ""
329
+
330
+ #: includes/admin/class-wp-members-products-admin.php:92
331
+ msgid "slug:"
332
+ msgstr ""
333
+
334
+ #: includes/admin/class-wp-members-products-admin.php:95
335
+ msgid "No role required"
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-members-products-admin.php:100
339
+ msgid "Does not expire"
340
+ msgstr ""
341
+
342
+ #: includes/admin/class-wp-members-products-admin.php:140
343
+ msgid "Membership Product Details"
344
+ msgstr ""
345
+
346
+ #: includes/admin/class-wp-members-products-admin.php:148
347
+ msgid "Membership Product Message (optional)"
348
+ msgstr ""
349
+
350
+ #: includes/admin/class-wp-members-products-admin.php:165
351
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
352
+ msgid "Posts"
353
+ msgstr ""
354
+
355
+ #: includes/admin/class-wp-members-products-admin.php:166
356
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
357
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
358
+ msgid "Pages"
359
+ msgstr "Sider"
360
+
361
+ #: includes/admin/class-wp-members-products-admin.php:193
362
+ #: includes/admin/class-wp-members-products-admin.php:235
363
+ #: includes/admin/class-wp-members-products-admin.php:280
364
+ msgid "Period"
365
+ msgstr ""
366
+
367
+ #: includes/admin/class-wp-members-products-admin.php:193
368
+ msgid "Day"
369
+ msgstr ""
370
+
371
+ #: includes/admin/class-wp-members-products-admin.php:193
372
+ msgid "Week"
373
+ msgstr ""
374
+
375
+ #: includes/admin/class-wp-members-products-admin.php:193
376
+ msgid "Month"
377
+ msgstr ""
378
+
379
+ #: includes/admin/class-wp-members-products-admin.php:193
380
+ msgid "Year"
381
+ msgstr ""
382
+
383
+ #: includes/admin/class-wp-members-products-admin.php:199
384
+ msgid "Name (slug)"
385
+ msgstr ""
386
+
387
+ #: includes/admin/class-wp-members-products-admin.php:201
388
+ msgid "Optional Defaults"
389
+ msgstr ""
390
+
391
+ #: includes/admin/class-wp-members-products-admin.php:204
392
+ msgid "Assign as default at registration? (optional)"
393
+ msgstr ""
394
+
395
+ #: includes/admin/class-wp-members-products-admin.php:212
396
+ #, php-format
397
+ msgid "Pre-selected by default for new %s"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-members-products-admin.php:218
401
+ msgid "Optional Properties"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-members-products-admin.php:221
405
+ msgid "Role Required? (optional)"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-members-products-admin.php:224
409
+ msgid "No Role"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-members-products-admin.php:230
413
+ msgid "Expires (optional)"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-members-products-admin.php:232
417
+ #: includes/admin/class-wp-members-products-admin.php:234
418
+ #: includes/admin/class-wp-members-products-admin.php:277
419
+ #: includes/admin/class-wp-members-products-admin.php:279
420
+ msgid "Number"
421
+ msgstr ""
422
+
423
+ #: includes/admin/class-wp-members-products-admin.php:240
424
+ msgid "Use \"no gap\" renewal"
425
+ msgstr ""
426
+
427
+ #: includes/admin/class-wp-members-products-admin.php:244
428
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
429
+ msgstr ""
430
+
431
+ #: includes/admin/class-wp-members-products-admin.php:261
432
+ msgid "Period Start (dd-mm)"
433
+ msgstr ""
434
+
435
+ #: includes/admin/class-wp-members-products-admin.php:262
436
+ msgid "Period End (dd-mm)"
437
+ msgstr ""
438
+
439
+ #: includes/admin/class-wp-members-products-admin.php:275
440
+ msgid "Fixed period grace period"
441
+ msgstr ""
442
+
443
+ #: includes/admin/class-wp-members-products-admin.php:284
444
+ msgid ""
445
+ "Grace period is the point at which expiration date is for following time "
446
+ "period. For example, if user who register August 1st would be part of the "
447
+ "following year's Sept 1 - Aug 31 membership, set this at 1 Month. Leave "
448
+ "blank for no grace period."
449
+ msgstr ""
450
+
451
+ #: includes/admin/class-wp-members-products-admin.php:333
452
+ msgid ""
453
+ "Restricted Message (displays when a user does not have access to a "
454
+ "membership)"
455
+ msgstr ""
456
+
457
+ #: includes/admin/class-wp-members-products-admin.php:435
458
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
459
+ #: includes/class-wp-members-forms.php:1092
460
+ #: includes/class-wp-members-user-profile.php:112
461
+ msgid "None"
462
+ msgstr ""
463
+
464
+ #: includes/admin/class-wp-members-products-admin.php:450
465
+ msgid "Limit access to:"
466
+ msgstr ""
467
+
468
+ #: includes/admin/class-wp-members-products-admin.php:520
469
+ msgid "Required Membership"
470
+ msgstr ""
471
+
472
+ #: includes/admin/class-wp-members-products-admin.php:559
473
+ #: includes/admin/class-wp-members-products-admin.php:630
474
+ msgid "Membership"
475
+ msgstr ""
476
+
477
+ #: includes/admin/class-wp-members-products-admin.php:599
478
+ #: includes/class-wp-members-products.php:308
479
+ msgid "Memberships"
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-wp-members-products-admin.php:626
483
+ msgid "Product Access"
484
+ msgstr ""
485
+
486
+ #: includes/admin/class-wp-members-products-admin.php:631
487
+ msgid "Enabled?"
488
+ msgstr ""
489
+
490
+ #: includes/admin/class-wp-members-products-admin.php:641
491
+ msgid "Enable"
492
+ msgstr ""
493
+
494
+ #: includes/admin/class-wp-members-products-admin.php:642
495
+ msgid "Disable"
496
+ msgstr ""
497
+
498
+ #: includes/admin/class-wp-members-products-admin.php:647
499
+ msgid "Expiration date (optional)"
500
+ msgstr ""
501
+
502
+ #: includes/admin/dialogs.php:117
503
+ msgid ""
504
+ "Your WP settings allow anyone to register - this is not the recommended "
505
+ "setting."
506
+ msgstr ""
507
+ "Dine WP indstillinger tillader alle at registrere sig - dette kan ikke "
508
+ "anbefales."
509
+
510
+ #: includes/admin/dialogs.php:118
511
+ #, php-format
512
+ msgid ""
513
+ "You can %s change this here %s making sure the box next to \"Anyone can "
514
+ "register\" is unchecked."
515
+ msgstr ""
516
+ "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Alle kan "
517
+ "registrere \" er u-markeret."
518
+
519
+ #: includes/admin/dialogs.php:119
520
+ msgid ""
521
+ "This setting allows a link on the /wp-login.php page to register using the "
522
+ "WP native registration process thus circumventing any registration you are "
523
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
524
+ "but most users should uncheck this option. If you do not change this "
525
+ "setting, you can choose to ignore these warning messages under WP-Members "
526
+ "Settings."
527
+ msgstr ""
528
+ "Denne indstilling tillader at et link på /wp-login.php siden for at lade sig "
529
+ "registrere ved hjælp af WP oprindelige registreringsprocessen således omgår "
530
+ "enhver form for registrering, du bruger sammen med WP-Members. I nogle "
531
+ "tilfælde passer dette til brugernes ønsker/behov, men de fleste brugere bør "
532
+ "fjerne markeringen af denne mulighed. Hvis du ikke ændrer denne indstilling, "
533
+ "kan du vælge at ignorere disse advarsler i henhold til WP-medlemmer "
534
+ "indstillinger."
535
+
536
+ #: includes/admin/dialogs.php:123
537
+ msgid ""
538
+ "Your WP settings allow anyone to comment - this is not the recommended "
539
+ "setting."
540
+ msgstr ""
541
+ "Dine WP indstillinger tillader alle at skrive kommentarer - denne "
542
+ "indstilling kan ikke anbefales."
543
+
544
+ #: includes/admin/dialogs.php:124
545
+ #, php-format
546
+ msgid ""
547
+ "You can %s change this here %s by checking the box next to \"Users must be "
548
+ "registered and logged in to comment.\""
549
+ msgstr ""
550
+ "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Brugere "
551
+ "skal være registrerede og logget ind for at kommentere \" er markeret."
552
+
553
+ #: includes/admin/dialogs.php:125
554
+ msgid ""
555
+ "This setting allows any users to comment, whether or not they are "
556
+ "registered. Depending on how you are using WP-Members will determine whether "
557
+ "you should change this setting or not. If you do not change this setting, "
558
+ "you can choose to ignore these warning messages under WP-Members Settings."
559
+ msgstr ""
560
+ "Denne indstilling gør det muligt for alle brugere at kommentere, selv om de "
561
+ "ikker er registreret. Afhængigt af, hvordan du bruger WP-Members afgør om "
562
+ "du bør ændre denne indstilling eller ej. Hvis du ikke ændrer denne "
563
+ "indstilling, kan du vælge at ignorere disse advarsler i henhold til WP-"
564
+ "Members indstillinger."
565
+
566
+ #: includes/admin/dialogs.php:129
567
+ msgid ""
568
+ "Your WP settings allow full text rss feeds - this is not the recommended "
569
+ "setting."
570
+ msgstr ""
571
+ "Din WP indstilling tilader fuld RSS feeds - denne indstilling kan ikke "
572
+ "anbefales"
573
+
574
+ #: includes/admin/dialogs.php:130
575
+ #, php-format
576
+ msgid ""
577
+ "You can %s change this here %s by changing \"For each article in a feed, show"
578
+ "\" to \"Summary.\""
579
+ msgstr ""
580
+ "Du kan %s ændre dette %s ved at ændre \"For hvert indlæg, vis \" to \"Resume."
581
+ "\""
582
+
583
+ #: includes/admin/dialogs.php:131
584
+ msgid ""
585
+ "Leaving this set to full text allows anyone to read your protected content "
586
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
587
+ "only show summary text."
588
+ msgstr ""
589
+ "At sætte RSS til fuld tekst giver alle mulighed for at læse dit beskyttet "
590
+ "indhold i en RSS-læser. At ændre RSS til Oversigt forhindrer dette og dine "
591
+ "feeds vil kun blive vist som summarisk tekst."
592
+
593
+ #: includes/admin/dialogs.php:135
594
+ msgid "You have set WP-Members to hold registrations for approval"
595
+ msgstr "Du har sat WP-Members til at vente på godkendelse af registreringer"
596
+
597
+ #: includes/admin/dialogs.php:136
598
+ msgid ""
599
+ "but you have not changed the default message for \"Registration Completed\" "
600
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
601
+ "message to let users know they are pending approval."
602
+ msgstr ""
603
+ "men du har ikke ændret standard besked for \"Registrering fuldført\" under "
604
+ "\"WP-Members Dialoger og Fejlmeldinger.\" Du bør ændre denne besked så "
605
+ "brugerne ved at deres tilmelding afventer godkendelsel."
606
+
607
+ #: includes/admin/dialogs.php:140
608
+ msgid "You have turned on reCAPTCHA"
609
+ msgstr "Du har slået reCAPTCHA til"
610
+
611
+ #: includes/admin/dialogs.php:141
612
+ msgid ""
613
+ "but you have not entered API keys. You will need both a public and private "
614
+ "key. The CAPTCHA will not display unless a valid API key is included."
615
+ msgstr ""
616
+ "men du ikke har indtastet API nøgler. Du skal bruge både en offentlig og "
617
+ "privat nøgle. Den CAPTCHA vises ikke, medmindre at en gyldig API-nøgle er "
618
+ "inkluderet."
619
+
620
+ #: includes/admin/dialogs.php:145
621
+ msgid "You have active settings that are not recommended."
622
+ msgstr ""
623
+
624
+ #: includes/admin/dialogs.php:146
625
+ msgid ""
626
+ "If you will not be changing these settings, you can turn off these warning "
627
+ "messages by checking the \"Ignore warning messages\" in the settings below."
628
+ msgstr ""
629
+
630
+ #: includes/admin/dialogs.php:174
631
+ msgid "Version:"
632
+ msgstr "Version:"
633
+
634
+ #: includes/admin/dialogs.php:175
635
+ msgid "Quick Start Guide"
636
+ msgstr ""
637
+
638
+ #: includes/admin/dialogs.php:176
639
+ msgid "Online User Guide"
640
+ msgstr ""
641
+
642
+ #: includes/admin/dialogs.php:177
643
+ msgid "FAQs"
644
+ msgstr ""
645
+
646
+ #: includes/admin/dialogs.php:184
647
+ msgid "Thank you for using WP-Members"
648
+ msgstr "Thank you for using WP-Members"
649
+
650
+ #: includes/admin/dialogs.php:185
651
+ msgid "A plugin developed by"
652
+ msgstr ""
653
+
654
+ #: includes/admin/dialogs.php:186
655
+ msgid "Follow"
656
+ msgstr "Følg"
657
+
658
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
659
+ msgid "Latest from RocketGeek"
660
+ msgstr ""
661
+
662
+ #: includes/admin/dialogs.php:224
663
+ msgid "Like WP-Members?"
664
+ msgstr ""
665
+
666
+ #: includes/admin/dialogs.php:225
667
+ #, php-format
668
+ msgid ""
669
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
670
+ "%s rating. Thanks!!"
671
+ msgstr ""
672
+
673
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
674
+ msgid "Latest from ButlerBlog"
675
+ msgstr ""
676
+
677
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
678
+ #, php-format
679
+ msgid "See the %sUsers Guide on CAPTCHA%s."
680
+ msgstr ""
681
+
682
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
683
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
684
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
685
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
686
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
687
+ msgid "Need help?"
688
+ msgstr ""
689
+
690
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
691
+ msgid "Manage reCAPTCHA Options"
692
+ msgstr "Administrer reCAPTCHA Valg"
693
+
694
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
695
+ msgid ""
696
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
697
+ "while blocking spam on your blog."
698
+ msgstr ""
699
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
700
+ "while blocking spam on your blog."
701
+
702
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
703
+ #, php-format
704
+ msgid ""
705
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
706
+ "that they are a human. This verifies that they are not a spambot while also "
707
+ "correcting the automatic scans of old books. So you get less spam, and the "
708
+ "world gets accurately digitized books. Everybody wins! For details, visit "
709
+ "the %s reCAPTCHA website%s"
710
+ msgstr ""
711
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
712
+ "that they are a human. This verifies that they are not a spambot while also "
713
+ "correcting the automatic scans of old books. So you get less spam, and the "
714
+ "world gets accurately digitized books. Everybody wins! For details, visit "
715
+ "the %s reCAPTCHA website%s"
716
+
717
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
718
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
719
+ msgid "reCAPTCHA Keys"
720
+ msgstr "reCAPTCHA Keys"
721
+
722
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
723
+ #, php-format
724
+ msgid ""
725
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
726
+ "key. You can sign up for a %s free reCAPTCHA key%s"
727
+ msgstr ""
728
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
729
+ "key. You can sign up for a %s free reCAPTCHA key%s"
730
+
731
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
732
+ msgid "Public Key"
733
+ msgstr "Public Key"
734
+
735
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
736
+ msgid "Private Key"
737
+ msgstr "Private Key"
738
+
739
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
740
+ msgid "Choose Theme"
741
+ msgstr "Choose Theme"
742
+
743
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
744
+ msgid "Red"
745
+ msgstr "Rød"
746
+
747
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
748
+ msgid "White"
749
+ msgstr "Hvid"
750
+
751
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
752
+ msgid "Black Glass"
753
+ msgstr "Sort Glas"
754
+
755
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
756
+ msgid "Clean"
757
+ msgstr "Ren"
758
+
759
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
760
+ #, php-format
761
+ msgid ""
762
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
763
+ "key. You can sign up for a %s free reCAPTCHA key%s"
764
+ msgstr ""
765
+
766
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
767
+ msgid "Site Key"
768
+ msgstr ""
769
+
770
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
771
+ msgid "Secret Key"
772
+ msgstr ""
773
+
774
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
775
+ msgid "Characters for image"
776
+ msgstr ""
777
+
778
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
779
+ msgid "Number of characters"
780
+ msgstr ""
781
+
782
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
783
+ msgid "Image dimensions"
784
+ msgstr ""
785
+
786
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
787
+ msgid "Width"
788
+ msgstr ""
789
+
790
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
791
+ msgid "Height"
792
+ msgstr ""
793
+
794
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
795
+ msgid "Font color of characters"
796
+ msgstr ""
797
+
798
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
799
+ msgid "Background color of image"
800
+ msgstr ""
801
+
802
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
803
+ msgid "Font size"
804
+ msgstr ""
805
+
806
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
807
+ msgid "Width between characters"
808
+ msgstr ""
809
+
810
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
811
+ msgid "Image type"
812
+ msgstr ""
813
+
814
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
815
+ msgid ""
816
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
817
+ "installed and activated."
818
+ msgstr ""
819
+
820
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
821
+ msgid "Update CAPTCHA Settings"
822
+ msgstr "Update CAPTCHA Settings"
823
+
824
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
825
+ msgid "CAPTCHA was updated for WP-Members"
826
+ msgstr "CAPTCHA er opdateret for WP-Members"
827
+
828
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
829
+ msgid "Dialogs and Error Messages"
830
+ msgstr "Dialoger og Fejlmeldinger"
831
+
832
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
833
+ #, php-format
834
+ msgid ""
835
+ "You can customize the text for dialogs and error messages. Simple HTML is "
836
+ "allowed %s etc."
837
+ msgstr ""
838
+ "Du kan tilpasse tekster til dialog og fejlmeldinger. Simpel HTML er tilladt "
839
+ "%s osv."
840
+
841
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
842
+ msgid "Terms of Service (TOS)"
843
+ msgstr "Vilkår for Deltagelse"
844
+
845
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
846
+ msgid "Update Dialogs"
847
+ msgstr "Opdater Dialoger"
848
+
849
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
850
+ msgid "WP-Members dialogs were updated"
851
+ msgstr "WP-Members dialoger er opdateret"
852
+
853
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
854
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
855
+ msgid "WP-Members Dropin settings were updated"
856
+ msgstr ""
857
+
858
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
859
+ msgid "Manage Dropins"
860
+ msgstr ""
861
+
862
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
863
+ msgid "Current dropin folder: "
864
+ msgstr ""
865
+
866
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
867
+ msgid ""
868
+ "You can change location of the dropin folder using the "
869
+ "<code>wpmem_dropin_folder</code> filter."
870
+ msgstr ""
871
+
872
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
873
+ msgid "Email Messages"
874
+ msgstr "Email Besked"
875
+
876
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
877
+ msgid "You can customize the content of the emails sent by the plugin."
878
+ msgstr "Du kan tilpasse indholdet af emails sendt fra denne plugin"
879
+
880
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
881
+ msgid "A list of shortcodes is available here."
882
+ msgstr "liste med shortcodes kan ses her."
883
+
884
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
885
+ msgid "Set a custom email address"
886
+ msgstr "Indsæt en gyldig Email-adresse"
887
+
888
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
889
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
890
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
891
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
892
+ msgid "(optional)"
893
+ msgstr "(obligatorisk)"
894
+
895
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
896
+ msgid "Set a custom email name"
897
+ msgstr "Skriv dit email navn her"
898
+
899
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
900
+ msgid "Email Signature"
901
+ msgstr "Email underskrift"
902
+
903
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
904
+ msgid "Update Emails"
905
+ msgstr "Opdater Emails"
906
+
907
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
908
+ msgid "WP-Members emails were updated"
909
+ msgstr "WP-Members emails er opdateret"
910
+
911
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
912
+ #: includes/class-wp-members.php:1498
913
+ msgid "No fields selected for deletion"
914
+ msgstr ""
915
+
916
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
917
+ msgid "Are you sure you want to delete the following fields?"
918
+ msgstr ""
919
+
920
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
921
+ msgid "Fields deleted"
922
+ msgstr ""
923
+
924
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
925
+ msgid "Field Manager Documentation"
926
+ msgstr ""
927
+
928
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
929
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
930
+ #: includes/class-wp-members-forms.php:1626
931
+ #: includes/class-wp-members-forms.php:1803
932
+ #: includes/class-wp-members-user-profile.php:144
933
+ msgid "(required)"
934
+ msgstr "(påkrævet)"
935
+
936
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
937
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
938
+ msgid "Edit Field"
939
+ msgstr ""
940
+
941
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
942
+ msgid "Add a Field"
943
+ msgstr ""
944
+
945
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
946
+ msgid "Field Label"
947
+ msgstr "Felt Etiket"
948
+
949
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
950
+ msgid "The name of the field as it will be displayed to the user."
951
+ msgstr ""
952
+
953
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
954
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
955
+ msgid "Meta Key"
956
+ msgstr ""
957
+
958
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
959
+ msgid ""
960
+ "The database meta value for the field. It must be unique and contain no "
961
+ "spaces (underscores are ok)."
962
+ msgstr ""
963
+
964
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
965
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
966
+ msgid "Field Type"
967
+ msgstr "Felt Type"
968
+
969
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
970
+ msgid "text"
971
+ msgstr "Tekst"
972
+
973
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
974
+ msgid "email"
975
+ msgstr ""
976
+
977
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
978
+ msgid "textarea"
979
+ msgstr "Tekstfelt"
980
+
981
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
982
+ msgid "checkbox"
983
+ msgstr "Markeringsboks"
984
+
985
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
986
+ msgid "multiple checkbox"
987
+ msgstr ""
988
+
989
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
990
+ msgid "select (dropdown)"
991
+ msgstr ""
992
+
993
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
994
+ msgid "multiple select"
995
+ msgstr ""
996
+
997
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
998
+ msgid "radio group"
999
+ msgstr ""
1000
+
1001
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
1002
+ msgid "password"
1003
+ msgstr "Kodeord"
1004
+
1005
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
1006
+ msgid "image"
1007
+ msgstr ""
1008
+
1009
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
1010
+ msgid "file"
1011
+ msgstr ""
1012
+
1013
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
1014
+ msgid "url"
1015
+ msgstr ""
1016
+
1017
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1018
+ msgid "number"
1019
+ msgstr ""
1020
+
1021
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1022
+ msgid "date"
1023
+ msgstr ""
1024
+
1025
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1026
+ msgid "hidden"
1027
+ msgstr ""
1028
+
1029
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1030
+ msgid "membership"
1031
+ msgstr ""
1032
+
1033
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1034
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1035
+ msgid "Display?"
1036
+ msgstr "Vis?"
1037
+
1038
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1039
+ msgid "This field is always displayed"
1040
+ msgstr ""
1041
+
1042
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1043
+ msgid "Required?"
1044
+ msgstr "Obligatorisk?"
1045
+
1046
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1047
+ msgid "This field is always required"
1048
+ msgstr ""
1049
+
1050
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1051
+ msgid "Allow HTML?"
1052
+ msgstr ""
1053
+
1054
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1055
+ msgid "Placeholder"
1056
+ msgstr ""
1057
+
1058
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1059
+ msgid "Pattern"
1060
+ msgstr ""
1061
+
1062
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1063
+ msgid "Title"
1064
+ msgstr ""
1065
+
1066
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1067
+ msgid "Minimum Value"
1068
+ msgstr ""
1069
+
1070
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1071
+ msgid "Maximum Value"
1072
+ msgstr ""
1073
+
1074
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1075
+ msgid "Rows"
1076
+ msgstr ""
1077
+
1078
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1079
+ msgid "Columns"
1080
+ msgstr ""
1081
+
1082
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1083
+ msgid "Accepted file types:"
1084
+ msgstr ""
1085
+
1086
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1087
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1088
+ msgstr ""
1089
+
1090
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1091
+ msgid "Checked by default?"
1092
+ msgstr "Markering?"
1093
+
1094
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1095
+ msgid "Stored value if checked:"
1096
+ msgstr ""
1097
+
1098
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1099
+ msgid "Stored values delimiter:"
1100
+ msgstr ""
1101
+
1102
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1103
+ msgid "Values (Displayed|Stored):"
1104
+ msgstr ""
1105
+
1106
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1107
+ msgid "Options should be Option Name|option_value,"
1108
+ msgstr "Valg skal skrives Valg Navn|valg_værdi,"
1109
+
1110
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1111
+ msgid "Visit plugin site for more information"
1112
+ msgstr "Besøg Plugin Site for mere information"
1113
+
1114
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1115
+ msgid "Value"
1116
+ msgstr ""
1117
+
1118
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1119
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1120
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1121
+ msgid "Add Field"
1122
+ msgstr ""
1123
+
1124
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1125
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1126
+ msgid "Return to Fields Table"
1127
+ msgstr ""
1128
+
1129
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1130
+ msgid "Drag and drop to reorder fields"
1131
+ msgstr ""
1132
+
1133
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1134
+ msgid "Registration Date"
1135
+ msgstr ""
1136
+
1137
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1138
+ msgid "Active"
1139
+ msgstr "Aktiver"
1140
+
1141
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1142
+ msgid "Registration IP"
1143
+ msgstr "IP @ registration"
1144
+
1145
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1146
+ msgid "Subscription Type"
1147
+ msgstr ""
1148
+
1149
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1150
+ msgid "Manage Fields"
1151
+ msgstr "Administrer Felter"
1152
+
1153
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1154
+ msgid "WP-Members fields were updated"
1155
+ msgstr "WP-Members felter er opdateret"
1156
+
1157
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1158
+ msgid "Field Label is required. Nothing was updated."
1159
+ msgstr ""
1160
+
1161
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1162
+ msgid "Meta Key is required. Nothing was updated."
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1166
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1167
+ msgstr ""
1168
+
1169
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1170
+ msgid "A field with that meta key already exists"
1171
+ msgstr ""
1172
+
1173
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1174
+ #, php-format
1175
+ msgid ""
1176
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1177
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1178
+ "Field was not added."
1179
+ msgstr ""
1180
+
1181
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1182
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1183
+ msgstr ""
1184
+ "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
1185
+
1186
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1187
+ msgid "A value is required for hidden fields. Nothing was updated."
1188
+ msgstr ""
1189
+
1190
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1191
+ #, php-format
1192
+ msgid "%s was added"
1193
+ msgstr ""
1194
+
1195
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1196
+ #, php-format
1197
+ msgid "%s was updated"
1198
+ msgstr ""
1199
+
1200
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1201
+ msgid "Form field order updated."
1202
+ msgstr ""
1203
+
1204
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1205
+ #, php-format
1206
+ msgid "%sChange%s or %sFilter%s this address"
1207
+ msgstr ""
1208
+
1209
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1210
+ #, php-format
1211
+ msgid "See the %sUsers Guide on plugin options%s."
1212
+ msgstr ""
1213
+
1214
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1215
+ msgid "Manage Options"
1216
+ msgstr "Administrer Valgmuligheder"
1217
+
1218
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1219
+ msgid "Content"
1220
+ msgstr ""
1221
+
1222
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1223
+ msgid "Content Blocking"
1224
+ msgstr ""
1225
+
1226
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1227
+ msgid "Do not block"
1228
+ msgstr ""
1229
+
1230
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1231
+ msgid "Show Excerpts"
1232
+ msgstr ""
1233
+
1234
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1235
+ msgid "Show Login Form"
1236
+ msgstr ""
1237
+
1238
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1239
+ msgid "Show Registration Form"
1240
+ msgstr ""
1241
+
1242
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1243
+ msgid "Auto Excerpt:"
1244
+ msgstr "Vis Uddrag"
1245
+
1246
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1247
+ msgid "Number of words in excerpt:"
1248
+ msgstr ""
1249
+
1250
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1251
+ msgid "Custom read more link (optional):"
1252
+ msgstr ""
1253
+
1254
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1255
+ msgid "Time-based expiration"
1256
+ msgstr "Time-based expiration"
1257
+
1258
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1259
+ msgid "Allows for access to expire"
1260
+ msgstr "Allows for access to expire"
1261
+
1262
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1263
+ msgid "Trial period"
1264
+ msgstr "Prøveperiode"
1265
+
1266
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1267
+ msgid "Allows for a trial period"
1268
+ msgstr "Tillader en prøveperiode"
1269
+
1270
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1271
+ msgid "Subscription Settings"
1272
+ msgstr ""
1273
+
1274
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1275
+ msgid "Other Settings"
1276
+ msgstr ""
1277
+
1278
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1279
+ msgid "Activation"
1280
+ msgstr ""
1281
+
1282
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1283
+ msgid ""
1284
+ "Send initial activation link and password reset link instead of new "
1285
+ "password. (Requires additional configuration)"
1286
+ msgstr ""
1287
+
1288
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1289
+ msgid "Enable Products"
1290
+ msgstr ""
1291
+
1292
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1293
+ msgid "Enables creation of different membership products"
1294
+ msgstr ""
1295
+
1296
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1297
+ msgid "Clone menus"
1298
+ msgstr ""
1299
+
1300
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1301
+ msgid "Enables logged in menus"
1302
+ msgstr ""
1303
+
1304
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1305
+ msgid "Notify admin"
1306
+ msgstr "Underret Admin"
1307
+
1308
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1309
+ #, php-format
1310
+ msgid "Notify %s for each new registration? %s"
1311
+ msgstr "Send email til %s for hver ny registrering? %s"
1312
+
1313
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1314
+ msgid "Moderate registration"
1315
+ msgstr "Rediger registrering"
1316
+
1317
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1318
+ msgid "Holds new registrations for admin approval"
1319
+ msgstr "Tilbageholder nye registreringer for godkendelse fra Admin"
1320
+
1321
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1322
+ msgid "Ignore warning messages"
1323
+ msgstr "Ignorer advarsels-beskeder"
1324
+
1325
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1326
+ msgid "Ignores WP-Members warning messages in the admin panel"
1327
+ msgstr "Ignorerer WP-Members advarsels-beskeder i administrationspanelet"
1328
+
1329
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1330
+ msgid "Attribution"
1331
+ msgstr ""
1332
+
1333
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1334
+ msgid ""
1335
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
1336
+ msgstr ""
1337
+
1338
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1339
+ msgid "Enable CAPTCHA"
1340
+ msgstr "Muliggøre CAPTCHA"
1341
+
1342
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1343
+ msgid "reCAPTCHA v2"
1344
+ msgstr ""
1345
+
1346
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1347
+ msgid "reCAPTCHA v3"
1348
+ msgstr ""
1349
+
1350
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1351
+ msgid "Really Simple CAPTCHA"
1352
+ msgstr ""
1353
+
1354
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1355
+ msgid "Login Page:"
1356
+ msgstr ""
1357
+
1358
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1359
+ msgid "Specify a login page (optional)"
1360
+ msgstr ""
1361
+
1362
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1363
+ msgid "Register Page:"
1364
+ msgstr "Register Page:"
1365
+
1366
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1367
+ msgid "For creating a register link in the login form"
1368
+ msgstr ""
1369
+
1370
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1371
+ msgid "User Profile Page:"
1372
+ msgstr "Brugeren Profil Sider"
1373
+
1374
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1375
+ msgid "For creating a forgot password link in the login form"
1376
+ msgstr ""
1377
+
1378
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1379
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1380
+ msgid "Stylesheet"
1381
+ msgstr ""
1382
+
1383
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1384
+ msgid "Custom Stylesheet:"
1385
+ msgstr "Custom Stylesheet:"
1386
+
1387
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1388
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1389
+ msgid "Update Settings"
1390
+ msgstr "Opdater Indstillinger"
1391
+
1392
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1393
+ msgid "Custom Post Types"
1394
+ msgstr ""
1395
+
1396
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1397
+ msgid "Add to WP-Members Settings"
1398
+ msgstr ""
1399
+
1400
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1401
+ msgid ""
1402
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not "
1403
+ "all of them will function exactly the same way. WP-Members will certainly "
1404
+ "work with any post type that operate like a post or a page; but you will "
1405
+ "need to review any custom post type added to determine that it functions the "
1406
+ "way you expect."
1407
+ msgstr ""
1408
+
1409
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1410
+ msgid "Close"
1411
+ msgstr ""
1412
+
1413
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1414
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1415
+ msgid "WP-Members Settings"
1416
+ msgstr ""
1417
+
1418
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1419
+ msgid ""
1420
+ "The following is your WP-Members settings information if needed for support."
1421
+ msgstr ""
1422
+
1423
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1424
+ msgid "Click to Copy"
1425
+ msgstr ""
1426
+
1427
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1428
+ msgid "Custom Post Type settings were updated"
1429
+ msgstr ""
1430
+
1431
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1432
+ msgid "WP-Members settings were updated"
1433
+ msgstr "WP-Member indstillinger er opdateret"
1434
+
1435
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1436
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1437
+ msgid "USE CUSTOM URL BELOW"
1438
+ msgstr ""
1439
+
1440
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1441
+ msgid "Select a page"
1442
+ msgstr "vælg en sider"
1443
+
1444
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1445
+ msgid "Name"
1446
+ msgstr ""
1447
+
1448
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1449
+ msgid "Enabled"
1450
+ msgstr ""
1451
+
1452
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1453
+ msgid "File"
1454
+ msgstr ""
1455
+
1456
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1457
+ msgid "Version"
1458
+ msgstr ""
1459
+
1460
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1461
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1462
+ msgid "Description"
1463
+ msgstr ""
1464
+
1465
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1466
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1467
+ msgid "Save Settings"
1468
+ msgstr ""
1469
+
1470
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1471
+ msgid "delete"
1472
+ msgstr ""
1473
+
1474
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1475
+ msgid "Display Label"
1476
+ msgstr ""
1477
+
1478
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1479
+ msgid "Required"
1480
+ msgstr ""
1481
+
1482
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1483
+ msgid "Users Screen"
1484
+ msgstr ""
1485
+
1486
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1487
+ msgid "Users Search"
1488
+ msgstr ""
1489
+
1490
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1491
+ msgid "Sort"
1492
+ msgstr ""
1493
+
1494
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1495
+ msgid "Delete Selected"
1496
+ msgstr ""
1497
+
1498
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1499
+ msgid "log in"
1500
+ msgstr "logge ind"
1501
+
1502
+ #: includes/api/api.php:329
1503
+ msgid "log out"
1504
+ msgstr ""
1505
+
1506
+ #: includes/class-wp-members-activation-link.php:21
1507
+ msgid "Click to activate your account: "
1508
+ msgstr ""
1509
+
1510
+ #: includes/class-wp-members-activation-link.php:22
1511
+ msgid "Thank you for activating your account."
1512
+ msgstr ""
1513
+
1514
+ #: includes/class-wp-members-activation-link.php:23
1515
+ msgid "Activation key was expired or invalid"
1516
+ msgstr ""
1517
+
1518
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1519
+ #: includes/deprecated.php:501
1520
+ msgid "You have entered an incorrect code value. Please try again."
1521
+ msgstr ""
1522
+
1523
+ #: includes/class-wp-members-forms.php:1048
1524
+ #: includes/class-wp-members-forms.php:1646 includes/class-wp-members.php:1538
1525
+ #, php-format
1526
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1527
+ msgstr ""
1528
+
1529
+ #: includes/class-wp-members-forms.php:1049
1530
+ #: includes/class-wp-members-forms.php:1647 includes/class-wp-members.php:1489
1531
+ msgid "TOS"
1532
+ msgstr "VfD"
1533
+
1534
+ #: includes/class-wp-members-forms.php:1049
1535
+ #: includes/class-wp-members-forms.php:1647 templates/tos.php:20
1536
+ msgid "Terms of Service"
1537
+ msgstr "Vilkår for Deltagelse"
1538
+
1539
+ #: includes/class-wp-members-forms.php:1868
1540
+ #: includes/class-wp-members-user-profile.php:473
1541
+ msgid "Activate this user?"
1542
+ msgstr "Aktiver denne bruger?"
1543
+
1544
+ #: includes/class-wp-members-menus.php:131
1545
+ msgid "Display"
1546
+ msgstr ""
1547
+
1548
+ #: includes/class-wp-members-menus.php:139
1549
+ msgid "Logged In Users"
1550
+ msgstr ""
1551
+
1552
+ #: includes/class-wp-members-menus.php:146
1553
+ msgid "Logged Out Users"
1554
+ msgstr ""
1555
+
1556
+ #: includes/class-wp-members-menus.php:153
1557
+ msgid "All Users"
1558
+ msgstr ""
1559
+
1560
+ #: includes/class-wp-members-menus.php:167
1561
+ #, php-format
1562
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1563
+ msgstr ""
1564
+
1565
+ #: includes/class-wp-members-menus.php:169
1566
+ msgid "Restrict menu item to a membership product"
1567
+ msgstr ""
1568
+
1569
+ #: includes/class-wp-members-products.php:302
1570
+ msgid "Product"
1571
+ msgstr ""
1572
+
1573
+ #: includes/class-wp-members-products.php:303
1574
+ msgid "Products"
1575
+ msgstr ""
1576
+
1577
+ #: includes/class-wp-members-products.php:309
1578
+ #, php-format
1579
+ msgid "All %s"
1580
+ msgstr ""
1581
+
1582
+ #: includes/class-wp-members-products.php:310
1583
+ #, php-format
1584
+ msgid "Add New %s"
1585
+ msgstr ""
1586
+
1587
+ #: includes/class-wp-members-products.php:311
1588
+ msgid "Add New"
1589
+ msgstr "Tilføj Ny"
1590
+
1591
+ #: includes/class-wp-members-products.php:312
1592
+ #, php-format
1593
+ msgid "New %s"
1594
+ msgstr ""
1595
+
1596
+ #: includes/class-wp-members-products.php:313
1597
+ #, php-format
1598
+ msgid "Edit %s"
1599
+ msgstr ""
1600
+
1601
+ #: includes/class-wp-members-products.php:314
1602
+ #, php-format
1603
+ msgid "Update %s"
1604
+ msgstr ""
1605
+
1606
+ #: includes/class-wp-members-products.php:315
1607
+ #: includes/class-wp-members-products.php:316
1608
+ #, php-format
1609
+ msgid "View %s"
1610
+ msgstr ""
1611
+
1612
+ #: includes/class-wp-members-products.php:317
1613
+ #, php-format
1614
+ msgid "Search %s"
1615
+ msgstr ""
1616
+
1617
+ #: includes/class-wp-members-products.php:318
1618
+ msgid "Not found"
1619
+ msgstr ""
1620
+
1621
+ #: includes/class-wp-members-products.php:319
1622
+ msgid "Not found in Trash"
1623
+ msgstr ""
1624
+
1625
+ #: includes/class-wp-members-products.php:320
1626
+ msgid "Insert into item"
1627
+ msgstr ""
1628
+
1629
+ #: includes/class-wp-members-products.php:321
1630
+ #, php-format
1631
+ msgid "Save %s Details"
1632
+ msgstr ""
1633
+
1634
+ #: includes/class-wp-members-products.php:324
1635
+ msgid "Membership Product"
1636
+ msgstr ""
1637
+
1638
+ #: includes/class-wp-members-products.php:325
1639
+ msgid "WP-Members Membership Products"
1640
+ msgstr ""
1641
+
1642
+ #: includes/class-wp-members-pwd-reset.php:31
1643
+ #: includes/class-wp-members-pwd-reset.php:32
1644
+ msgid ""
1645
+ "Sorry, no password reset key was found. Please check your email and try "
1646
+ "again."
1647
+ msgstr ""
1648
+
1649
+ #: includes/class-wp-members-pwd-reset.php:33
1650
+ msgid "Sorry, the password reset key is expired."
1651
+ msgstr ""
1652
+
1653
+ #: includes/class-wp-members-shortcodes.php:147
1654
+ msgid ""
1655
+ "This is a generic message to display the form message dialog in the "
1656
+ "Customizer."
1657
+ msgstr ""
1658
+
1659
+ #: includes/class-wp-members-shortcodes.php:158
1660
+ #: includes/class-wp-members.php:1566 includes/deprecated - Copy.php:695
1661
+ msgid "There was an error with the CAPTCHA form."
1662
+ msgstr "Der opstod en fejl in CAPTCHA skemaet."
1663
+
1664
+ #: includes/class-wp-members-shortcodes.php:717
1665
+ msgid "Click here to log out."
1666
+ msgstr ""
1667
+
1668
+ #: includes/class-wp-members-shortcodes.php:786
1669
+ #: includes/class-wp-members-user.php:172 includes/class-wp-members.php:1540
1670
+ #: includes/class-wp-members.php:1590
1671
+ msgid "Register"
1672
+ msgstr "Registrer"
1673
+
1674
+ #: includes/class-wp-members-shortcodes.php:789
1675
+ #: includes/class-wp-members.php:1508
1676
+ msgid "Log In"
1677
+ msgstr "Logge ind"
1678
+
1679
+ #: includes/class-wp-members-user-profile.php:38
1680
+ msgid "WP-Members Additional Fields"
1681
+ msgstr "WP-Members Ekstra Felter"
1682
+
1683
+ #: includes/class-wp-members-user-profile.php:38
1684
+ msgid "Additional Information"
1685
+ msgstr "Yderligere Information"
1686
+
1687
+ #: includes/class-wp-members-user-profile.php:463
1688
+ msgid "Reactivate this user?"
1689
+ msgstr "Genaktivere denne bruger?"
1690
+
1691
+ #: includes/class-wp-members-user-profile.php:468
1692
+ msgid "Deactivate this user?"
1693
+ msgstr "Deactivate this user?"
1694
+
1695
+ #: includes/class-wp-members-user-profile.php:522
1696
+ msgid "IP @ registration"
1697
+ msgstr "IP @ registration"
1698
+
1699
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1700
+ msgid "There was an error processing the form."
1701
+ msgstr "Der var en fejl under behandling formularen."
1702
+
1703
+ #: includes/class-wp-members-user.php:1118
1704
+ msgid "<strong>ERROR</strong>: User has not been activated."
1705
+ msgstr ""
1706
+
1707
+ #: includes/class-wp-members-widget.php:24
1708
+ msgid "Displays the WP-Members sidebar login."
1709
+ msgstr ""
1710
+
1711
+ #: includes/class-wp-members-widget.php:39
1712
+ #: includes/class-wp-members-widget.php:82
1713
+ msgid "Login Status"
1714
+ msgstr "Log Status"
1715
+
1716
+ #: includes/class-wp-members-widget.php:46
1717
+ msgid "Title:"
1718
+ msgstr "Titel:"
1719
+
1720
+ #: includes/class-wp-members-widget.php:50
1721
+ msgid "Redirect to (optional):"
1722
+ msgstr ""
1723
+
1724
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1725
+ msgid "You must be logged in to view this content."
1726
+ msgstr ""
1727
+
1728
+ #: includes/class-wp-members.php:1044
1729
+ msgid "The page you are looking for does not exist"
1730
+ msgstr ""
1731
+
1732
+ #: includes/class-wp-members.php:1436
1733
+ #, php-format
1734
+ msgid ""
1735
+ "You have a linked page in the WP-Members page settings that corresponds to a "
1736
+ "post ID that no longer exists. Please %s review and update the %s page "
1737
+ "settings %s."
1738
+ msgstr ""
1739
+
1740
+ #: includes/class-wp-members.php:1474
1741
+ msgid "First Name"
1742
+ msgstr "Fornavn"
1743
+
1744
+ #: includes/class-wp-members.php:1475
1745
+ msgid "Last Name"
1746
+ msgstr "Efternavn"
1747
+
1748
+ #: includes/class-wp-members.php:1476
1749
+ msgid "Address 1"
1750
+ msgstr "Adresse1"
1751
+
1752
+ #: includes/class-wp-members.php:1477
1753
+ msgid "Address 2"
1754
+ msgstr "Adresse2"
1755
+
1756
+ #: includes/class-wp-members.php:1478
1757
+ msgid "City"
1758
+ msgstr "By"
1759
+
1760
+ #: includes/class-wp-members.php:1479
1761
+ msgid "State"
1762
+ msgstr "Region"
1763
+
1764
+ #: includes/class-wp-members.php:1480
1765
+ msgid "Zip"
1766
+ msgstr "Postnr"
1767
+
1768
+ #: includes/class-wp-members.php:1481
1769
+ msgid "Country"
1770
+ msgstr "Land"
1771
+
1772
+ #: includes/class-wp-members.php:1482
1773
+ msgid "Day Phone"
1774
+ msgstr "Telefon"
1775
+
1776
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1777
+ msgid "Email"
1778
+ msgstr "Email"
1779
+
1780
+ #: includes/class-wp-members.php:1484
1781
+ msgid "Confirm Email"
1782
+ msgstr ""
1783
+
1784
+ #: includes/class-wp-members.php:1485
1785
+ msgid "Website"
1786
+ msgstr "Website"
1787
+
1788
+ #: includes/class-wp-members.php:1486
1789
+ msgid "Biographical Info"
1790
+ msgstr "Biographical Info"
1791
+
1792
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1793
+ #: includes/class-wp-members.php:1587
1794
+ msgid "Password"
1795
+ msgstr "Kodeord"
1796
+
1797
+ #: includes/class-wp-members.php:1488
1798
+ msgid "Confirm Password"
1799
+ msgstr ""
1800
+
1801
+ #: includes/class-wp-members.php:1499
1802
+ msgid "You are not logged in."
1803
+ msgstr "Du er ikke logget ind."
1804
+
1805
+ #: includes/class-wp-members.php:1505
1806
+ msgid "Existing Users Log In"
1807
+ msgstr "Logge Ind"
1808
+
1809
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1810
+ msgid "Username or Email"
1811
+ msgstr ""
1812
+
1813
+ #: includes/class-wp-members.php:1509
1814
+ msgid "Remember Me"
1815
+ msgstr ""
1816
+
1817
+ #: includes/class-wp-members.php:1510
1818
+ msgid "Forgot password?"
1819
+ msgstr "Glemt Kodeord?"
1820
+
1821
+ #: includes/class-wp-members.php:1511
1822
+ msgid "Click here to reset"
1823
+ msgstr "Klik her for at nulstille"
1824
+
1825
+ #: includes/class-wp-members.php:1512
1826
+ msgid "New User?"
1827
+ msgstr "Ny Bruger"
1828
+
1829
+ #: includes/class-wp-members.php:1513
1830
+ msgid "Click here to register"
1831
+ msgstr "Klik her for at registrere"
1832
+
1833
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1834
+ msgid "Change Password"
1835
+ msgstr "Skift Kodeord"
1836
+
1837
+ #: includes/class-wp-members.php:1517
1838
+ msgid "New password"
1839
+ msgstr ""
1840
+
1841
+ #: includes/class-wp-members.php:1518
1842
+ msgid "Confirm new password"
1843
+ msgstr ""
1844
+
1845
+ #: includes/class-wp-members.php:1519
1846
+ msgid "Update Password"
1847
+ msgstr "Opdater Kodeord"
1848
+
1849
+ #: includes/class-wp-members.php:1522
1850
+ msgid "Reset Forgotten Password"
1851
+ msgstr "Nulstil glemt Kodeord"
1852
+
1853
+ #: includes/class-wp-members.php:1525
1854
+ msgid "Reset Password"
1855
+ msgstr "Nulstil Kodeord"
1856
+
1857
+ #: includes/class-wp-members.php:1526
1858
+ msgid "Forgot username?"
1859
+ msgstr ""
1860
+
1861
+ #: includes/class-wp-members.php:1527
1862
+ msgid "Click here"
1863
+ msgstr ""
1864
+
1865
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
1866
+ msgid "Retrieve username"
1867
+ msgstr ""
1868
+
1869
+ #: includes/class-wp-members.php:1531
1870
+ msgid "Email Address"
1871
+ msgstr ""
1872
+
1873
+ #: includes/class-wp-members.php:1535
1874
+ msgid "New User Registration"
1875
+ msgstr "Ny Bruger Registrering"
1876
+
1877
+ #: includes/class-wp-members.php:1536
1878
+ msgid "Choose a Username"
1879
+ msgstr "Vælg et Brugernavn"
1880
+
1881
+ #: includes/class-wp-members.php:1537
1882
+ msgid "Input the code:"
1883
+ msgstr ""
1884
+
1885
+ #: includes/class-wp-members.php:1539
1886
+ msgid "Reset Form"
1887
+ msgstr ""
1888
+
1889
+ #: includes/class-wp-members.php:1542
1890
+ msgid "Required field"
1891
+ msgstr "Obligatorisk felt"
1892
+
1893
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
1894
+ msgid "Edit Your Information"
1895
+ msgstr "Rediger dine Oplysninger"
1896
+
1897
+ #: includes/class-wp-members.php:1547
1898
+ msgid "Update Profile"
1899
+ msgstr "Opdater Profil"
1900
+
1901
+ #: includes/class-wp-members.php:1548
1902
+ msgid "Update this file"
1903
+ msgstr ""
1904
+
1905
+ #: includes/class-wp-members.php:1551
1906
+ msgid "Login Failed!"
1907
+ msgstr "Log på fejlede!"
1908
+
1909
+ #: includes/class-wp-members.php:1552
1910
+ msgid "You entered an invalid username or password."
1911
+ msgstr "Du har skrevet forkert Brugernavn eller Kodeord."
1912
+
1913
+ #: includes/class-wp-members.php:1553
1914
+ msgid "Click here to continue."
1915
+ msgstr "Klik her for at fortsætte."
1916
+
1917
+ #: includes/class-wp-members.php:1554
1918
+ msgid "Password fields cannot be empty"
1919
+ msgstr "Kodeordsfelt må ikke være tomt"
1920
+
1921
+ #: includes/class-wp-members.php:1555
1922
+ msgid "Sorry, that email address was not found."
1923
+ msgstr ""
1924
+
1925
+ #: includes/class-wp-members.php:1556
1926
+ #, php-format
1927
+ msgid "An email was sent to %s with your username."
1928
+ msgstr ""
1929
+
1930
+ #: includes/class-wp-members.php:1557
1931
+ #, php-format
1932
+ msgid "Sorry, %s is a required field."
1933
+ msgstr "%s skal udfyldes, er et obligatorisk felt."
1934
+
1935
+ #: includes/class-wp-members.php:1558
1936
+ msgid "You must enter a valid email address."
1937
+ msgstr "Du skal indtaste en gyldig Email-adresse. "
1938
+
1939
+ #: includes/class-wp-members.php:1559
1940
+ msgid "The username cannot include non-alphanumeric characters."
1941
+ msgstr "Brugernavn kun indeholde bogstaver."
1942
+
1943
+ #: includes/class-wp-members.php:1560
1944
+ msgid "Sorry, username is a required field"
1945
+ msgstr "Brugernavn skal udfyldes, er et obligatorisk felt"
1946
+
1947
+ #: includes/class-wp-members.php:1561
1948
+ msgid "Passwords did not match."
1949
+ msgstr "Adgangskoder matcher ikke."
1950
+
1951
+ #: includes/class-wp-members.php:1562
1952
+ msgid "Emails did not match."
1953
+ msgstr "Emails matchede ikke."
1954
+
1955
+ #: includes/class-wp-members.php:1563
1956
+ msgid "You must complete the CAPTCHA form."
1957
+ msgstr "Du skal færdiggøre CAPTCHA skemaet."
1958
+
1959
+ #: includes/class-wp-members.php:1564
1960
+ msgid "CAPTCHA was not valid."
1961
+ msgstr ""
1962
+
1963
+ #: includes/class-wp-members.php:1567
1964
+ #, php-format
1965
+ msgid ""
1966
+ "Sorry, you can only upload the following file types for the %s field: %s."
1967
+ msgstr ""
1968
+
1969
+ #: includes/class-wp-members.php:1570
1970
+ msgid "Edit My Information"
1971
+ msgstr "Rediger mine info"
1972
+
1973
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
1974
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
1975
+ #, php-format
1976
+ msgid "You are logged in as %s"
1977
+ msgstr "Du er logget på som %s"
1978
+
1979
+ #: includes/class-wp-members.php:1573
1980
+ msgid "Log out"
1981
+ msgstr ""
1982
+
1983
+ #: includes/class-wp-members.php:1574
1984
+ msgid "Edit profile"
1985
+ msgstr ""
1986
+
1987
+ #: includes/class-wp-members.php:1574
1988
+ msgid "Begin using the site."
1989
+ msgstr "Begynd at bruge sitet"
1990
+
1991
+ #: includes/class-wp-members.php:1576
1992
+ msgid "Click to log out"
1993
+ msgstr "Klik for at logge ud"
1994
+
1995
+ #: includes/class-wp-members.php:1578
1996
+ msgid "click to log out"
1997
+ msgstr "klik for at logge ud"
1998
+
1999
+ #: includes/class-wp-members.php:1579
2000
+ msgid "Log Out"
2001
+ msgstr ""
2002
+
2003
+ #: includes/class-wp-members.php:1583
2004
+ msgid "click here to log out"
2005
+ msgstr "Klik her for at logge ud"
2006
+
2007
+ #: includes/class-wp-members.php:1584
2008
+ msgid "Login Failed!<br />You entered an invalid username or password."
2009
+ msgstr "Log på fejlede! <br />Forkert Brugernavn eller Kodeord."
2010
+
2011
+ #: includes/class-wp-members.php:1589
2012
+ msgid "Forgot?"
2013
+ msgstr "Glemt?"
2014
+
2015
+ #: includes/class-wp-members.php:1593
2016
+ msgid ""
2017
+ "This content is restricted to site members. If you are an existing user, "
2018
+ "please log in. New users may register below."
2019
+ msgstr ""
2020
+ "Dette er en lukket Brugerside. Hvis du er registreret bruger kan du logge på "
2021
+ "ellers du lade dig registrere."
2022
+
2023
+ #: includes/class-wp-members.php:1594
2024
+ msgid ""
2025
+ "Congratulations! Your registration was successful.<br /><br />You may now "
2026
+ "log in using the password that was emailed to you."
2027
+ msgstr ""
2028
+ "Tillykke din registrering er gennemført.<br /><br />Du kan nu logge ved "
2029
+ "hjælp af det Kodeord som er blevet sendt til dig."
2030
+
2031
+ #: includes/class-wp-members.php:1597
2032
+ msgid "Sorry, that username is taken, please try another."
2033
+ msgstr "Dette Brugernavn er taget. Prøv et andet."
2034
+
2035
+ #: includes/class-wp-members.php:1598
2036
+ msgid ""
2037
+ "Sorry, that email address already has an account.<br />Please try another."
2038
+ msgstr ""
2039
+ "Denne Email-adresse er allerede tilknyttet en bruger. <br />Prøv en anden."
2040
+
2041
+ #: includes/class-wp-members.php:1599
2042
+ msgid "Your information was updated!"
2043
+ msgstr "Dine Oplysninger er blevet opdateret!"
2044
+
2045
+ #: includes/class-wp-members.php:1602
2046
+ msgid "Passwords did not match.<br /><br />Please try again."
2047
+ msgstr "Kodeordene er ikke ens.<br /><br />Prøv igen."
2048
+
2049
+ #: includes/class-wp-members.php:1603
2050
+ msgid "Password successfully changed!"
2051
+ msgstr ""
2052
+
2053
+ #: includes/class-wp-members.php:1604
2054
+ msgid "Either the username or email address do not exist in our records."
2055
+ msgstr "Brugernavn eller Email-adresse eksisterer ikke i databasen."
2056
+
2057
+ #: includes/class-wp-members.php:1605
2058
+ msgid ""
2059
+ "Password successfully reset!<br /><br />An email containing a new password "
2060
+ "has been sent to the email address on file for your account."
2061
+ msgstr ""
2062
+
2063
+ #: includes/class-wp-members.php:1607
2064
+ msgid "This content requires the following membership: "
2065
+ msgstr ""
2066
+
2067
+ #: includes/class-wp-members.php:1608
2068
+ msgid "This content requires one of the following memberships: "
2069
+ msgstr ""
2070
+
2071
+ #: includes/class-wp-members.php:1721
2072
+ msgid "Show forms as logged out"
2073
+ msgstr ""
2074
+
2075
+ #: includes/class-wp-members.php:1730
2076
+ msgid "Show form message dialog"
2077
+ msgstr ""
2078
+
2079
+ #: includes/class-wp-members.php:1838
2080
+ msgid "(more&hellip;)"
2081
+ msgstr "(mere&hellip;)"
2082
+
2083
+ #: includes/cli/class-wp-members-cli.php:17
2084
+ #, php-format
2085
+ msgid "User: %s"
2086
+ msgstr ""
2087
+
2088
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2089
+ msgid "We were unable to validate the public key."
2090
+ msgstr "Det var ikke muligt at validere den offentlige nøgle."
2091
+
2092
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2093
+ msgid "We were unable to validate the private key."
2094
+ msgstr "Det var ikke muligt at validere den private nøgle."
2095
+
2096
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2097
+ msgid "The challenge parameter of the verify script was incorrect."
2098
+ msgstr "The challenge parameter of the verify script was incorrect."
2099
+
2100
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2101
+ msgid "The CAPTCHA solution was incorrect."
2102
+ msgstr "CAPTCHA løsningen er ikke fuldstændig."
2103
+
2104
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2105
+ msgid "The parameters to verify were incorrect"
2106
+ msgstr "Verificierings-parametrene er forkerte"
2107
+
2108
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2109
+ msgid ""
2110
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2111
+ msgstr ""
2112
+ "Af sikkerhedsmæssige årsager er reCAPTCHA API nøglen er tilknyttet et "
2113
+ "specifikt domænenavn."
2114
+
2115
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2116
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2117
+ msgstr "reCAPTCHA serveren blev ikke tilsluttet. Prøv igen."
2118
+
2119
+ #. translators: %s: title of menu item which is invalid
2120
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2121
+ #, php-format
2122
+ msgid "%s (Invalid)"
2123
+ msgstr ""
2124
+
2125
+ #. translators: %s: title of menu item in draft status
2126
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2127
+ #, php-format
2128
+ msgid "%s (Pending)"
2129
+ msgstr ""
2130
+
2131
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2132
+ msgid "Move up"
2133
+ msgstr ""
2134
+
2135
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2136
+ msgid "Move down"
2137
+ msgstr ""
2138
+
2139
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2140
+ msgid "Edit Menu Item"
2141
+ msgstr ""
2142
+
2143
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2144
+ msgid "URL"
2145
+ msgstr ""
2146
+
2147
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2148
+ msgid "Navigation Label"
2149
+ msgstr ""
2150
+
2151
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2152
+ msgid "Title Attribute"
2153
+ msgstr ""
2154
+
2155
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2156
+ msgid "Open link in a new window/tab"
2157
+ msgstr ""
2158
+
2159
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2160
+ msgid "CSS Classes (optional)"
2161
+ msgstr ""
2162
+
2163
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2164
+ msgid "Link Relationship (XFN)"
2165
+ msgstr ""
2166
+
2167
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2168
+ msgid ""
2169
+ "The description will be displayed in the menu if the current theme supports "
2170
+ "it."
2171
+ msgstr ""
2172
+
2173
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2174
+ #, php-format
2175
+ msgid "Original: %s"
2176
+ msgstr ""
2177
+
2178
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2179
+ msgid "Remove"
2180
+ msgstr ""
2181
+
2182
+ #: templates/tos.php:32
2183
+ #, php-format
2184
+ msgid "%sclose%s"
2185
+ msgstr "%sluk%s"
2186
+
2187
+ #: templates/tos.php:34
2188
+ #, php-format
2189
+ msgid "%sprint%s"
2190
+ msgstr "%sudskriv%s"
2191
+
2192
+ #. Plugin Name of the plugin/theme
2193
+ msgid "WP-Members"
2194
+ msgstr "WP-Members"
2195
+
2196
+ #. Plugin URI of the plugin/theme
2197
+ msgid "https://rocketgeek.com"
2198
+ msgstr ""
2199
+
2200
+ #. Description of the plugin/theme
2201
+ msgid ""
2202
+ "WP access restriction and user registration. For more information on plugin "
2203
+ "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2204
+ "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2205
+ "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2206
+ "available. WP-Members(tm) is a trademark of butlerblog.com."
2207
+ msgstr ""
2208
+
2209
+ #. Author of the plugin/theme
2210
+ msgid "Chad Butler"
2211
+ msgstr ""
2212
+
2213
+ #. Author URI of the plugin/theme
2214
+ msgid "http://butlerblog.com/"
2215
+ msgstr ""
2216
+
2217
+ #~ msgid "Click to log out."
2218
+ #~ msgstr "Klik for at logge ud."
2219
+
2220
+ #~ msgid "You have set WP-Members to turn off the registration process"
2221
+ #~ msgstr "Du har sat WP-Members til at afbryde registreringsprocessen"
2222
+
2223
+ #~ msgid ""
2224
+ #~ "but you also set to moderate and/or email admin new registrations. You "
2225
+ #~ "will need to set up a registration page for users to register."
2226
+ #~ msgstr ""
2227
+ #~ "men du skal også ændre og / eller e-mail admin for nye registreringer. Du "
2228
+ #~ "skal oprette en registreringsside for brugere."
2229
+
2230
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2231
+ #~ msgstr ""
2232
+ #~ "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
2233
+
2234
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2235
+ #~ msgstr ""
2236
+ #~ "Valgt Navn er nødvendigt for at tilføje et nyt felt. Intet er ændret."
2237
+
2238
+ #~ msgid "field was added"
2239
+ #~ msgstr "Felt Etiket"
2240
+
2241
+ #~ msgid "field was updated"
2242
+ #~ msgstr "WP-Members felter er opdateret"
2243
+
2244
+ #~ msgid "Option Name"
2245
+ #~ msgstr "Valgt Navn"
2246
+
2247
+ #~ msgid "For dropdown, array of values:"
2248
+ #~ msgstr "Til Dropdown, tabel med valg:"
2249
+
2250
+ #~ msgid ""
2251
+ #~ "Determine which fields will display and which are required. This "
2252
+ #~ "includes all fields, both native WP fields and WP-Members custom fields."
2253
+ #~ msgstr ""
2254
+ #~ "Beslut hvilke felter der skal vises og hvilke der er obligatoriske. Dette "
2255
+ #~ "inkluderer både almindelige WP felter og WP-Member felter"
2256
+
2257
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2258
+ #~ msgstr "(Bemærk: Email er altid obligatorisk - og kan ikke ændres.)"
2259
+
2260
+ #~ msgid "Add/Delete"
2261
+ #~ msgstr "Tilføj/Slet"
2262
+
2263
+ #~ msgid "Checked?"
2264
+ #~ msgstr "Markering?"
2265
+
2266
+ #~ msgid "Delete"
2267
+ #~ msgstr "Slet"
2268
+
2269
+ #~ msgid "(Email cannot be removed)"
2270
+ #~ msgstr "(Email kan ikke slettes)"
2271
+
2272
+ #~ msgid "Update Fields"
2273
+ #~ msgstr "Opdater Felter"
2274
+
2275
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2276
+ #~ msgstr "Marker at du accepterer %sVilkår for Deltagelse %s"
2277
+
2278
+ #~ msgid "dropdown"
2279
+ #~ msgstr "Dropdown"
2280
+
2281
+ #~ msgid "Block Posts by default"
2282
+ #~ msgstr "Bloker Poster som standard"
2283
+
2284
+ #~ msgid ""
2285
+ #~ "Note: Posts can still be individually blocked or unblocked at the article "
2286
+ #~ "level"
2287
+ #~ msgstr ""
2288
+ #~ "Bemærk: Poster kan stadig blokeres eller frigives individuelt under "
2289
+ #~ "redigering"
2290
+
2291
+ #~ msgid "Block Pages by default"
2292
+ #~ msgstr "Bloker Sider som standard"
2293
+
2294
+ #~ msgid ""
2295
+ #~ "Note: Pages can still be individually blocked or unblocked at the article "
2296
+ #~ "level"
2297
+ #~ msgstr ""
2298
+ #~ "Bemærk: Sider kan stadig blokeres eller frigives individuelt under "
2299
+ #~ "redigering"
2300
+
2301
+ #~ msgid "Show excerpts"
2302
+ #~ msgstr "Vis Uddrag"
2303
+
2304
+ #~ msgid ""
2305
+ #~ "Shows excerpted content above the login/registration on both Posts and "
2306
+ #~ "Pages"
2307
+ #~ msgstr "Vis uddrag inden Log på / Registrering af både Poster og Sider"
2308
+
2309
+ #~ msgid "Turns on CAPTCHA for registration"
2310
+ #~ msgstr "Slår CAPTCHA til under registrering"
2311
+
2312
+ #~ msgid "Hide registration"
2313
+ #~ msgstr "Skjul Registrering"
2314
+
2315
+ #~ msgid "Optional"
2316
+ #~ msgstr "Valgfrit"
2317
+
2318
+ #~ msgid "AIM"
2319
+ #~ msgstr "AIM"
2320
+
2321
+ #~ msgid "Yahoo IM"
2322
+ #~ msgstr "Yahoo IM"
2323
+
2324
+ #~ msgid "Jabber/Google Talk"
2325
+ #~ msgstr "Jabber/Google Talk"
2326
+
2327
+ #~ msgid ""
2328
+ #~ "Password successfully changed!<br /><br />You will need to re-login with "
2329
+ #~ "your new password."
2330
+ #~ msgstr ""
2331
+ #~ "Kodeordet er nu ændret!<br /><br />Du bliver nød til at logge på igen med "
2332
+ #~ "dit nye Kodeord."
2333
+
2334
+ #~ msgid ""
2335
+ #~ "Password successfully reset!<br /><br />An email containing a new "
2336
+ #~ "password has been sent to the email address on file for your account. You "
2337
+ #~ "may change this random password then re-login with your new password."
2338
+ #~ msgstr ""
2339
+ #~ "Kodeord er nulstillet!<br /><br />En Email med nyt kodeord er blevet "
2340
+ #~ "sendt til din Email-adresse. Du kan skifte det tilfældige kodeord med et "
2341
+ #~ "nyt efter at du har logget dig på."
2342
+
2343
+ #~ msgid "Custom"
2344
+ #~ msgstr "Custom"
2345
+
2346
+ #~ msgid "edit"
2347
+ #~ msgstr "redigere"
2348
+
2349
+ #~ msgid "Use reCAPTCHA"
2350
+ #~ msgstr "Brug reCAPTCHA"
2351
+
2352
+ #~ msgid "New Password"
2353
+ #~ msgstr "Nyt Kodeord"
2354
+
2355
+ #~ msgid "Repeat Password"
2356
+ #~ msgstr "Gentag Kodeord"
2357
+
2358
+ #~ msgid "Remember me"
2359
+ #~ msgstr "Husk mig"
2360
+
2361
+ #~ msgid "Turn off registration"
2362
+ #~ msgstr "Afbryd registrering"
2363
+
2364
+ #~ msgid "Turns off the registration process, only allows login"
2365
+ #~ msgstr "Afbryder registreringsprocessen, tillader kun log på"
2366
+
2367
+ #~ msgid "Legacy forms"
2368
+ #~ msgstr "Legacy forms"
2369
+
2370
+ #~ msgid ""
2371
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2372
+ #~ "forms)"
2373
+ #~ msgstr ""
2374
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2375
+ #~ "forms)"
2376
+
2377
+ #~ msgid "Members Area URL:"
2378
+ #~ msgstr "Members Area URL:"
2379
+
2380
+ #~ msgid "Add"
2381
+ #~ msgstr "Tilføj"
2382
+
2383
+ #~ msgid "WP-Members expiration periods were updated"
2384
+ #~ msgstr "WP-Members prøveperiode er opdateret"
2385
+
2386
+ #~ msgid ""
2387
+ #~ "Settings were saved, but you have required fields that are not set to "
2388
+ #~ "display!"
2389
+ #~ msgstr ""
2390
+ #~ "Indstillingerne er gemt, men der er obligatoriske felter, som ikke er "
2391
+ #~ "indstillet til at blive vist!"
2392
+
2393
+ #~ msgid ""
2394
+ #~ "Note: This will not cause an error for the end user, as only displayed "
2395
+ #~ "fields are validated. However, you should still check that your "
2396
+ #~ "displayed and required fields match up. Mismatched fields are "
2397
+ #~ "highlighted below."
2398
+ #~ msgstr ""
2399
+ #~ "Bemærk: Dette vil ikke medføre en fejl for slutbrugeren, da kun viste "
2400
+ #~ "felter er valideret. Du bør dog stadig kontrollere, at dine viste, og "
2401
+ #~ "krævede felter passer sammen. Forkerte felter er fremhævet nedenfor."
2402
+
2403
+ #~ msgid "If you find this plugin useful, please consider making a donation"
2404
+ #~ msgstr "If you find this plugin useful, please consider making a donation"
2405
+
2406
+ #~ msgid "Subscriptions"
2407
+ #~ msgstr "Abonnement"
2408
+
2409
+ #~ msgid "PayPal Settings"
2410
+ #~ msgstr "PayPal Settings"
2411
+
2412
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
2413
+ #~ msgstr "If you find this plugin useful, please consider a %s donation %s"
2414
+
2415
+ #~ msgid "%d users were activated."
2416
+ #~ msgstr "%d brugere er aktiverede."
2417
+
2418
+ #~ msgid ""
2419
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
2420
+ #~ msgstr ""
2421
+ #~ "Brugere klar til export %s Klik her %s for at generere og downloade en "
2422
+ #~ "CSV."
2423
+
2424
+ #~ msgid "WP-Members Users"
2425
+ #~ msgstr "WP-Members Brugere"
2426
+
2427
+ #~ msgid "No users matched your criteria"
2428
+ #~ msgstr "Ingen brugere matchede dine kriterier"
2429
+
2430
+ #~ msgid "Bulk Actions"
2431
+ #~ msgstr "Gruppe handling"
2432
+
2433
+ #~ msgid "Apply"
2434
+ #~ msgstr "Ansøge"
2435
+
2436
+ #~ msgid "Indicates a required field"
2437
+ #~ msgstr "Et obligatorisk felt"
2438
+
2439
+ #~ msgid "Login"
2440
+ #~ msgstr "Log på"
2441
+
2442
+ #~ msgid "Clear Form"
2443
+ #~ msgstr "Ryd indhold"
2444
+
2445
+ #~ msgid "Submit"
2446
+ #~ msgstr "Indsend"
2447
+
2448
+ #~ msgid "Cheatin&#8217; uh?"
2449
+ #~ msgstr "Snyder du?"
2450
+
2451
+ #~ msgid "there was an error and no users were exported"
2452
+ #~ msgstr "der opstod en fejl og ingen Brugere blev eksporteret"
2453
+
2454
+ #~ msgid "login"
2455
+ #~ msgstr "log på"
2456
+
2457
+ #~ msgid ""
2458
+ #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
2459
+ #~ msgstr "Marker at du har læst og accepteret %sVilkår for Deltagelse %s"
2460
+
2461
+ #~ msgid "You may change your password here: %s"
2462
+ #~ msgstr "Du kan skifte Kodeord her: %s"
2463
+
2464
+ #~ msgid "Your registration info for %s"
2465
+ #~ msgstr "Dine registrerings info for %s"
2466
+
2467
+ #~ msgid "Thank you for registering for %s"
2468
+ #~ msgstr "Tak for din registrering på %s"
2469
+
2470
+ #~ msgid "Your registration information is below."
2471
+ #~ msgstr "Dine oplysninger er listet nedenfor."
2472
+
2473
+ #~ msgid "You may wish to retain a copy for your records."
2474
+ #~ msgstr "Gem dine oplysninger."
2475
+
2476
+ #~ msgid "username: %s"
2477
+ #~ msgstr "Brugernavn: %s"
2478
+
2479
+ #~ msgid "password: %s"
2480
+ #~ msgstr "Kodeord: %s"
2481
+
2482
+ #~ msgid "You may login here:"
2483
+ #~ msgstr "Log på her:"
2484
+
2485
+ #~ msgid ""
2486
+ #~ "Thank you for registering for %s. Your registration has been received and "
2487
+ #~ "is pending approval."
2488
+ #~ msgstr ""
2489
+ #~ "Tak for din registrering på %s. Din registreing er modtaget og afventer "
2490
+ #~ "godkendelse."
2491
+
2492
+ #~ msgid "You will receive login instructions upon approval of your account"
2493
+ #~ msgstr ""
2494
+ #~ "Du vil modtage instruks om Log på proceduren når din registrering er "
2495
+ #~ "godkendt."
2496
+
2497
+ #~ msgid "Your registration for %s has been approved."
2498
+ #~ msgstr "Din registrering på %s er godkendt."
2499
+
2500
+ #~ msgid "You may login at: %s"
2501
+ #~ msgstr "Du kan nu logge på %s"
2502
+
2503
+ #~ msgid "You originally registered at:"
2504
+ #~ msgstr "Du er oprindeligt registreret på:"
2505
+
2506
+ #~ msgid "Password reset for %s"
2507
+ #~ msgstr "Kodeordet er nulstillet for %s"
2508
+
2509
+ #~ msgid "Your password for %s has been reset"
2510
+ #~ msgstr "Dit Kodeord for %s er nulstillet"
2511
+
2512
+ #~ msgid ""
2513
+ #~ "Your new password is included below. You may wish to retain a copy for "
2514
+ #~ "your records."
2515
+ #~ msgstr "Dit nye Kodeord står nedenfor. Gem dine oplysninger."
2516
+
2517
+ #~ msgid "This is an automated message from %s"
2518
+ #~ msgstr "Dette er en automatisk besked fra %s"
2519
+
2520
+ #~ msgid "Please do not reply to this address"
2521
+ #~ msgstr "Undlad venligst at svare på denne Email"
2522
+
2523
+ #~ msgid "New user registration for %s"
2524
+ #~ msgstr "Ny bruger registrering for %s"
2525
+
2526
+ #~ msgid "The following user registered for %s"
2527
+ #~ msgstr "Følgende bruger er registreret på %s"
2528
+
2529
+ #~ msgid "and is pending admin approval"
2530
+ #~ msgstr "og afventer Admins godkendelse"
i18n/languages/wp-members-fi.mo CHANGED
Binary file
i18n/languages/wp-members-fi.po CHANGED
@@ -1,2226 +1,2533 @@
1
- # Copyright (C) 2010 WP-Members
2
- # This file is distributed under the same license as the WP-Members package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP-Members 3.2.6\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
8
- "PO-Revision-Date: 2019-04-02 09:54-0400\n"
9
- "Last-Translator: \n"
10
- "Language-Team: Suomentaja <ianleiman@gmail.com>\n"
11
- "Language: fi_FI\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.2.1\n"
16
-
17
- #: admin/dialogs.php:116
18
- msgid ""
19
- "Your WP settings allow anyone to register - this is not the recommended "
20
- "setting."
21
- msgstr ""
22
- "WP asetuksesi sallivat kenen tahansa rekisteröityä. Tämä ei ole suositeltava "
23
- "asetus."
24
-
25
- #: admin/dialogs.php:117
26
- #, php-format
27
- msgid ""
28
- "You can %s change this here %s making sure the box next to \"Anyone can "
29
- "register\" is unchecked."
30
- msgstr ""
31
- "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
32
-
33
- #: admin/dialogs.php:118
34
- msgid ""
35
- "This setting allows a link on the /wp-login.php page to register using the "
36
- "WP native registration process thus circumventing any registration you are "
37
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
38
- "but most users should uncheck this option. If you do not change this "
39
- "setting, you can choose to ignore these warning messages under WP-Members "
40
- "Settings."
41
- msgstr ""
42
- "Tämä asetus sallii /wp-login.php sivulla olevan linkin käyttää Wordpressin "
43
- "omaa rekisteröintiprosessia, joka näin mahdollistaa WP-Members "
44
- "rekisteröintiprosessin kiertämisen. Yleensä tätä ei suositella, mutta jos et "
45
- "muuta tätä asetusta, voit valita varoitusten hylkäämisen WP-Members "
46
- "asetuspaneelista."
47
-
48
- #: admin/dialogs.php:122
49
- msgid ""
50
- "Your WP settings allow anyone to comment - this is not the recommended "
51
- "setting."
52
- msgstr ""
53
- "WP asetuksesi sallivat kenen tahansa kommentoida. Tämä ei ole suositeltava "
54
- "asetus."
55
-
56
- #: admin/dialogs.php:123
57
- #, php-format
58
- msgid ""
59
- "You can %s change this here %s by checking the box next to \"Users must be "
60
- "registered and logged in to comment.\""
61
- msgstr ""
62
- "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
63
-
64
- #: admin/dialogs.php:124
65
- msgid ""
66
- "This setting allows any users to comment, whether or not they are "
67
- "registered. Depending on how you are using WP-Members will determine whether "
68
- "you should change this setting or not. If you do not change this setting, "
69
- "you can choose to ignore these warning messages under WP-Members Settings."
70
- msgstr ""
71
- "WP asetuksesi sallivat kenen tahansa kommentoida, riippumatta siitä olivatko "
72
- "he rekisteröityneitä tai ei. Riippuen käyttötavastasi tämä saattaa olla "
73
- "järkevää tai sitten ei. Jos et muuta tätä asetusta, voit valita varoitusten "
74
- "hylkäämisen WP-Members asetuspaneelista."
75
-
76
- #: admin/dialogs.php:128
77
- msgid ""
78
- "Your WP settings allow full text rss feeds - this is not the recommended "
79
- "setting."
80
- msgstr ""
81
- "WP asetukset sallivat RSS syötteet täydellä tekstillä. Tätä ei suositella."
82
-
83
- #: admin/dialogs.php:129
84
- #, php-format
85
- msgid ""
86
- "You can %s change this here %s by changing \"For each article in a feed, show"
87
- "\" to \"Summary.\""
88
- msgstr ""
89
-
90
- #: admin/dialogs.php:130
91
- msgid ""
92
- "Leaving this set to full text allows anyone to read your protected content "
93
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
94
- "only show summary text."
95
- msgstr ""
96
- "Jos jätät tämän asetuksen päälle, kuka tahansa voi lukea kaiken suojatun "
97
- "sisällön RSS lukijalla. Voit sen sijaan valita että vain lyhyt yhteenveto "
98
- "näytetään."
99
-
100
- #: admin/dialogs.php:134
101
- msgid "You have set WP-Members to hold registrations for approval"
102
- msgstr "WP-Members säilöö rekisteröinnit hyväksyntää varten"
103
-
104
- #: admin/dialogs.php:135
105
- msgid ""
106
- "but you have not changed the default message for \"Registration Completed\" "
107
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
108
- "message to let users know they are pending approval."
109
- msgstr ""
110
-
111
- #: admin/dialogs.php:139
112
- msgid "You have turned on reCAPTCHA"
113
- msgstr "Olet ottanut käyttöön reCAPTCHA:n"
114
-
115
- #: admin/dialogs.php:140
116
- msgid ""
117
- "but you have not entered API keys. You will need both a public and private "
118
- "key. The CAPTCHA will not display unless a valid API key is included."
119
- msgstr ""
120
-
121
- #: admin/dialogs.php:144
122
- msgid "You have active settings that are not recommended."
123
- msgstr ""
124
-
125
- #: admin/dialogs.php:145
126
- msgid ""
127
- "If you will not be changing these settings, you can turn off these warning "
128
- "messages by checking the \"Ignore warning messages\" in the settings below."
129
- msgstr ""
130
-
131
- #: admin/dialogs.php:169
132
- msgid "Version:"
133
- msgstr "Versio:"
134
-
135
- #: admin/dialogs.php:170
136
- msgid "Quick Start Guide"
137
- msgstr ""
138
-
139
- #: admin/dialogs.php:171
140
- msgid "Online User Guide"
141
- msgstr ""
142
-
143
- #: admin/dialogs.php:172
144
- msgid "FAQs"
145
- msgstr ""
146
-
147
- #: admin/dialogs.php:179
148
- msgid "Thank you for using WP-Members"
149
- msgstr "Kiitos kun käytät WP-Members lisäosaa!"
150
-
151
- #: admin/dialogs.php:180
152
- msgid "A plugin developed by"
153
- msgstr ""
154
-
155
- #: admin/dialogs.php:181
156
- msgid "Follow"
157
- msgstr "Seuraa"
158
-
159
- #: admin/dialogs.php:198 admin/dialogs.php:202
160
- msgid "Latest from RocketGeek"
161
- msgstr ""
162
-
163
- #: admin/dialogs.php:219
164
- msgid "Like WP-Members?"
165
- msgstr ""
166
-
167
- #: admin/dialogs.php:220
168
- #, php-format
169
- msgid ""
170
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
171
- "%s rating. Thanks!!"
172
- msgstr ""
173
-
174
- #: admin/dialogs.php:231 admin/dialogs.php:244
175
- msgid "Latest from ButlerBlog"
176
- msgstr ""
177
-
178
- #: admin/includes/class-wp-members-admin-api.php:256
179
- msgid "Custom email"
180
- msgstr ""
181
-
182
- #: admin/includes/class-wp-members-admin-api.php:257
183
- #: admin/includes/class-wp-members-admin-api.php:259
184
- msgid "Subject"
185
- msgstr ""
186
-
187
- #: admin/includes/class-wp-members-admin-api.php:260
188
- msgid "Body"
189
- msgstr ""
190
-
191
- #: admin/includes/class-wp-members-admin-api.php:262
192
- msgid "Your custom email message content."
193
- msgstr ""
194
-
195
- #: admin/includes/class-wp-members-admin-api.php:340
196
- msgid "Options"
197
- msgstr "Asetukset"
198
-
199
- #: admin/includes/class-wp-members-admin-api.php:341
200
- msgid "Fields"
201
- msgstr "Kentät"
202
-
203
- #: admin/includes/class-wp-members-admin-api.php:342
204
- msgid "Dialogs"
205
- msgstr "Dialogit"
206
-
207
- #: admin/includes/class-wp-members-admin-api.php:343
208
- msgid "Emails"
209
- msgstr ""
210
-
211
- #: admin/includes/class-wp-members-admin-api.php:359
212
- msgid "New Registration"
213
- msgstr "Uusi rekisteröinti"
214
-
215
- #: admin/includes/class-wp-members-admin-api.php:368
216
- msgid "Registration is Moderated"
217
- msgstr ""
218
-
219
- #: admin/includes/class-wp-members-admin-api.php:374
220
- msgid "Registration is Moderated, User is Approved"
221
- msgstr ""
222
-
223
- #: admin/includes/class-wp-members-admin-api.php:382
224
- msgid "Password Reset"
225
- msgstr "Salasanan nollaus"
226
-
227
- #: admin/includes/class-wp-members-admin-api.php:389
228
- msgid "Retrieve Username"
229
- msgstr ""
230
-
231
- #: admin/includes/class-wp-members-admin-api.php:397
232
- msgid "Admin Notification"
233
- msgstr "Ilmoita pääkäyttäjälle"
234
-
235
- #: admin/includes/class-wp-members-admin-api.php:423
236
- msgid "Restricted post (or page), displays above the login/registration form"
237
- msgstr ""
238
- "Suojattu sisältö (artikkeli tai sivu), näkyy sisäänkirjautumis ja "
239
- "rekisteröitymislomakkeen yläpuolella."
240
-
241
- #: admin/includes/class-wp-members-admin-api.php:424
242
- msgid "Username is taken"
243
- msgstr "Käyttäjätunnus on jo varattu"
244
-
245
- #: admin/includes/class-wp-members-admin-api.php:425
246
- msgid "Email is registered"
247
- msgstr "Sähköpostiosoite on jo käytössä"
248
-
249
- #: admin/includes/class-wp-members-admin-api.php:426
250
- msgid "Registration completed"
251
- msgstr "Rekisteröinti on valmis"
252
-
253
- #: admin/includes/class-wp-members-admin-api.php:427
254
- msgid "User update"
255
- msgstr "Käyttäjän päivitys"
256
-
257
- #: admin/includes/class-wp-members-admin-api.php:428
258
- msgid "Passwords did not match"
259
- msgstr "Salasanat eivät täsmää"
260
-
261
- #: admin/includes/class-wp-members-admin-api.php:429
262
- msgid "Password changes"
263
- msgstr "Salasana vaihtuu"
264
-
265
- #: admin/includes/class-wp-members-admin-api.php:430
266
- msgid "Username or email do not exist when trying to reset forgotten password"
267
- msgstr ""
268
- "Unohtunutta salasanaa yritettiin nollata väärällä käyttäjätunnuksella tai "
269
- "sähköpostilla"
270
-
271
- #: admin/includes/class-wp-members-admin-api.php:431
272
- msgid "Password reset"
273
- msgstr "Salasanan nollaus"
274
-
275
- #: admin/includes/class-wp-members-admin-api.php:564
276
- msgid "Settings"
277
- msgstr "Asetukset"
278
-
279
- #: admin/includes/class-wp-members-products-admin.php:57
280
- msgid "Slug"
281
- msgstr ""
282
-
283
- #: admin/includes/class-wp-members-products-admin.php:58
284
- msgid "Role"
285
- msgstr ""
286
-
287
- #: admin/includes/class-wp-members-products-admin.php:59
288
- #: admin/includes/class-wp-members-products-admin.php:162
289
- #: admin/tab-fields.php:459 admin/user-export.php:69
290
- msgid "Expires"
291
- msgstr "Vanhenee"
292
-
293
- #: admin/includes/class-wp-members-products-admin.php:60
294
- msgid "Last updated"
295
- msgstr ""
296
-
297
- #: admin/includes/class-wp-members-products-admin.php:80
298
- msgid "No role required"
299
- msgstr ""
300
-
301
- #: admin/includes/class-wp-members-products-admin.php:84
302
- msgid "Does not expire"
303
- msgstr ""
304
-
305
- #: admin/includes/class-wp-members-products-admin.php:120
306
- msgid "Membership Product Details"
307
- msgstr ""
308
-
309
- #: admin/includes/class-wp-members-products-admin.php:142
310
- #: admin/includes/class-wp-members-products-admin.php:167
311
- msgid "Period"
312
- msgstr ""
313
-
314
- #: admin/includes/class-wp-members-products-admin.php:142
315
- msgid "Day"
316
- msgstr ""
317
-
318
- #: admin/includes/class-wp-members-products-admin.php:142
319
- msgid "Week"
320
- msgstr ""
321
-
322
- #: admin/includes/class-wp-members-products-admin.php:142
323
- msgid "Month"
324
- msgstr ""
325
-
326
- #: admin/includes/class-wp-members-products-admin.php:142
327
- msgid "Year"
328
- msgstr ""
329
-
330
- #: admin/includes/class-wp-members-products-admin.php:148
331
- msgid "Name (slug)"
332
- msgstr ""
333
-
334
- #: admin/includes/class-wp-members-products-admin.php:153
335
- msgid "Role Required?"
336
- msgstr ""
337
-
338
- #: admin/includes/class-wp-members-products-admin.php:156
339
- msgid "No Role"
340
- msgstr ""
341
-
342
- #: admin/includes/class-wp-members-products-admin.php:164
343
- #: admin/includes/class-wp-members-products-admin.php:166
344
- msgid "Number"
345
- msgstr ""
346
-
347
- #: admin/includes/class-wp-members-products-admin.php:245
348
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
349
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
350
- #: inc/deprecated.php:622
351
- msgid "None"
352
- msgstr ""
353
-
354
- #: admin/includes/class-wp-members-products-admin.php:251
355
- msgid "Limit access to:"
356
- msgstr ""
357
-
358
- #: admin/includes/class-wp-members-products-admin.php:321
359
- msgid "Required Membership"
360
- msgstr ""
361
-
362
- #: admin/includes/class-wp-members-products-admin.php:360
363
- msgid "Membership"
364
- msgstr ""
365
-
366
- #: admin/post.php:45 admin/post.php:48
367
- msgid "Unblock"
368
- msgstr ""
369
-
370
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
371
- msgid "Block"
372
- msgstr ""
373
-
374
- #: admin/post.php:47 admin/post.php:50
375
- msgid "Hide"
376
- msgstr ""
377
-
378
- #: admin/post.php:138
379
- #, php-format
380
- msgid "%s blocked"
381
- msgstr ""
382
-
383
- #: admin/post.php:138
384
- #, php-format
385
- msgid "%s unblocked"
386
- msgstr ""
387
-
388
- #: admin/post.php:177
389
- #, php-format
390
- msgid "%s Restriction"
391
- msgstr ""
392
-
393
- #: admin/post.php:206
394
- msgid "Unblocked"
395
- msgstr ""
396
-
397
- #: admin/post.php:207
398
- msgid "Blocked"
399
- msgstr ""
400
-
401
- #: admin/post.php:208
402
- msgid "Hidden"
403
- msgstr ""
404
-
405
- #: admin/post.php:214
406
- msgid "Status:"
407
- msgstr ""
408
-
409
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
410
- #, fuzzy
411
- msgid "Edit"
412
- msgstr "Täytä omat tietosi"
413
-
414
- #: admin/post.php:229
415
- msgid "Ok"
416
- msgstr ""
417
-
418
- #: admin/post.php:230
419
- msgid "Cancel"
420
- msgstr ""
421
-
422
- #: admin/post.php:314
423
- msgid "Status"
424
- msgstr ""
425
-
426
- #: admin/tab-about.php:34 admin/tab-about.php:54
427
- msgid "About WP-Members"
428
- msgstr ""
429
-
430
- #: admin/tab-captcha.php:66
431
- #, php-format
432
- msgid "See the %sUsers Guide on CAPTCHA%s."
433
- msgstr ""
434
-
435
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
436
- #: admin/tab-fields.php:153 admin/tab-options.php:82
437
- msgid "Need help?"
438
- msgstr ""
439
-
440
- #: admin/tab-captcha.php:84
441
- msgid "Manage reCAPTCHA Options"
442
- msgstr "Hallitse reCAPTCHA asetuksia"
443
-
444
- #: admin/tab-captcha.php:98
445
- msgid ""
446
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
447
- "while blocking spam on your blog."
448
- msgstr ""
449
- "reCAPTCHA on ilmainen CAPTCHA sovellus, joka auttaa kirjojen digitoinnissa "
450
- "samalla kun se estää roskapostitusten pääsyn blogiisi"
451
-
452
- #: admin/tab-captcha.php:99
453
- #, php-format
454
- msgid ""
455
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
456
- "that they are a human. This verifies that they are not a spambot while also "
457
- "correcting the automatic scans of old books. So you get less spam, and the "
458
- "world gets accurately digitized books. Everybody wins! For details, visit "
459
- "the %s reCAPTCHA website%s"
460
- msgstr ""
461
- "reCAPTCHA pyytää kommentoijia kirjoittamaan kaksi sanaa, jotka on skannattu "
462
- "kirjasta todistaakseen että kysessä on ihminen. Tällä varmistetaan että "
463
- "roskapostitusohjelmat eivät pääse kommentoimaan ja samalla vanhojen kirjojen "
464
- "skannauksia voidaan automatisoida. Lue enemmän %s reCAPTCHA kotisivulta %s"
465
-
466
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
467
- msgid "reCAPTCHA Keys"
468
- msgstr "reCAPTCHA avaimet"
469
-
470
- #: admin/tab-captcha.php:106
471
- #, php-format
472
- msgid ""
473
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
474
- "key. You can sign up for a %s free reCAPTCHA key%s"
475
- msgstr ""
476
- "reCAPTCHA vaatii API-avaimen, joka koostuu \"julkisesta\" ja \"yksityisestä"
477
- "\" avaimesta. Voit tilata itsellesi ilmaisen %s reCAPTCHA avaimen %s"
478
-
479
- #: admin/tab-captcha.php:107
480
- msgid "Public Key"
481
- msgstr "Julkinen avain"
482
-
483
- #: admin/tab-captcha.php:108
484
- msgid "Private Key"
485
- msgstr "Yksityinen avain"
486
-
487
- #: admin/tab-captcha.php:112
488
- msgid "Choose Theme"
489
- msgstr "Valitse teema"
490
-
491
- #: admin/tab-captcha.php:115
492
- msgid "Red"
493
- msgstr "Punainen"
494
-
495
- #: admin/tab-captcha.php:116
496
- msgid "White"
497
- msgstr "Valkoinen"
498
-
499
- #: admin/tab-captcha.php:117
500
- msgid "Black Glass"
501
- msgstr "Musta lasi"
502
-
503
- #: admin/tab-captcha.php:118
504
- msgid "Clean"
505
- msgstr "Puhdista"
506
-
507
- #: admin/tab-captcha.php:132
508
- #, php-format
509
- msgid ""
510
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
511
- "key. You can sign up for a %s free reCAPTCHA key%s"
512
- msgstr ""
513
-
514
- #: admin/tab-captcha.php:133
515
- msgid "Site Key"
516
- msgstr ""
517
-
518
- #: admin/tab-captcha.php:134
519
- msgid "Secret Key"
520
- msgstr ""
521
-
522
- #: admin/tab-captcha.php:165
523
- msgid "Characters for image"
524
- msgstr ""
525
-
526
- #: admin/tab-captcha.php:169
527
- msgid "Number of characters"
528
- msgstr ""
529
-
530
- #: admin/tab-captcha.php:173
531
- msgid "Image dimensions"
532
- msgstr ""
533
-
534
- #: admin/tab-captcha.php:174
535
- msgid "Width"
536
- msgstr ""
537
-
538
- #: admin/tab-captcha.php:174
539
- msgid "Height"
540
- msgstr ""
541
-
542
- #: admin/tab-captcha.php:177
543
- msgid "Font color of characters"
544
- msgstr ""
545
-
546
- #: admin/tab-captcha.php:181
547
- msgid "Background color of image"
548
- msgstr ""
549
-
550
- #: admin/tab-captcha.php:185
551
- msgid "Font size"
552
- msgstr ""
553
-
554
- #: admin/tab-captcha.php:189
555
- msgid "Width between characters"
556
- msgstr ""
557
-
558
- #: admin/tab-captcha.php:193
559
- msgid "Image type"
560
- msgstr ""
561
-
562
- #: admin/tab-captcha.php:207
563
- msgid ""
564
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
565
- "installed and activated."
566
- msgstr ""
567
-
568
- #: admin/tab-captcha.php:231
569
- msgid "Update CAPTCHA Settings"
570
- msgstr "Päivitä CAPTCHA asetukset"
571
-
572
- #: admin/tab-captcha.php:301
573
- msgid "CAPTCHA was updated for WP-Members"
574
- msgstr "CAPTCHA on päivitetty WP-Members:iä varten"
575
-
576
- #: admin/tab-dialogs.php:67
577
- msgid "Dialogs and Error Messages"
578
- msgstr "Dialogit ja virheilmoitukset"
579
-
580
- #: admin/tab-dialogs.php:69
581
- #, php-format
582
- msgid ""
583
- "You can customize the text for dialogs and error messages. Simple HTML is "
584
- "allowed %s etc."
585
- msgstr ""
586
- "Voit mukauttaa dialogien ja virheilmoitusten tekstejä. Yksinkertainen HTML "
587
- "on sallittua: %s jne."
588
-
589
- #: admin/tab-dialogs.php:80
590
- msgid "Terms of Service (TOS)"
591
- msgstr "Käyttöehdot"
592
-
593
- #: admin/tab-dialogs.php:87
594
- msgid "Update Dialogs"
595
- msgstr "Päivitä dialogit"
596
-
597
- #: admin/tab-dialogs.php:123
598
- msgid "WP-Members dialogs were updated"
599
- msgstr "WP-Members dialogit on päivitetty"
600
-
601
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
602
- msgid "WP-Members Dropin settings were updated"
603
- msgstr ""
604
-
605
- #: admin/tab-dropins.php:204
606
- msgid "Manage Dropins"
607
- msgstr ""
608
-
609
- #: admin/tab-dropins.php:205
610
- msgid "Current dropin folder: "
611
- msgstr ""
612
-
613
- #: admin/tab-dropins.php:206
614
- msgid ""
615
- "You can change location of the dropin folder using the "
616
- "<code>wpmem_dropin_folder</code> filter."
617
- msgstr ""
618
-
619
- #: admin/tab-dropins.php:269
620
- msgid "Name"
621
- msgstr ""
622
-
623
- #: admin/tab-dropins.php:270
624
- msgid "File"
625
- msgstr ""
626
-
627
- #: admin/tab-dropins.php:271
628
- msgid "Version"
629
- msgstr ""
630
-
631
- #: admin/tab-dropins.php:272
632
- msgid "Description"
633
- msgstr ""
634
-
635
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
636
- msgid "Save Settings"
637
- msgstr ""
638
-
639
- #: admin/tab-emails.php:58
640
- msgid "Email Messages"
641
- msgstr ""
642
-
643
- #: admin/tab-emails.php:61
644
- msgid "You can customize the content of the emails sent by the plugin."
645
- msgstr ""
646
-
647
- #: admin/tab-emails.php:63
648
- msgid "A list of shortcodes is available here."
649
- msgstr ""
650
-
651
- #: admin/tab-emails.php:70
652
- msgid "Set a custom email address"
653
- msgstr ""
654
-
655
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
656
- #: admin/tab-fields.php:179
657
- msgid "(optional)"
658
- msgstr "(valinnainen)"
659
-
660
- #: admin/tab-emails.php:74
661
- msgid "Set a custom email name"
662
- msgstr ""
663
-
664
- #: admin/tab-emails.php:85
665
- msgid "Email Signature"
666
- msgstr ""
667
-
668
- #: admin/tab-emails.php:93
669
- msgid "Update Emails"
670
- msgstr ""
671
-
672
- #: admin/tab-emails.php:161
673
- msgid "WP-Members emails were updated"
674
- msgstr "WP-Members sähköpostit on päivitetty"
675
-
676
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
677
- msgid "No fields selected for deletion"
678
- msgstr ""
679
-
680
- #: admin/tab-fields.php:115
681
- msgid "Are you sure you want to delete the following fields?"
682
- msgstr ""
683
-
684
- #: admin/tab-fields.php:141
685
- msgid "Fields deleted"
686
- msgstr ""
687
-
688
- #: admin/tab-fields.php:155
689
- msgid "Field Manager Documentation"
690
- msgstr ""
691
-
692
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
693
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
694
- #: inc/deprecated.php:646 inc/wp-registration.php:57
695
- #: inc/wp-registration.php:231
696
- msgid "(required)"
697
- msgstr "(rakollinen)"
698
-
699
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
700
- msgid "Edit Field"
701
- msgstr ""
702
-
703
- #: admin/tab-fields.php:185
704
- msgid "Add a Field"
705
- msgstr "Lisätä Kentän"
706
-
707
- #: admin/tab-fields.php:190
708
- msgid "Field Label"
709
- msgstr "Kentän otsikko"
710
-
711
- #: admin/tab-fields.php:192
712
- msgid "The name of the field as it will be displayed to the user."
713
- msgstr ""
714
-
715
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
716
- msgid "Meta Key"
717
- msgstr ""
718
-
719
- #: admin/tab-fields.php:201
720
- msgid ""
721
- "The database meta value for the field. It must be unique and contain no "
722
- "spaces (underscores are ok)."
723
- msgstr ""
724
-
725
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
726
- msgid "Field Type"
727
- msgstr "Kentän tyyppi"
728
-
729
- #: admin/tab-fields.php:211
730
- msgid "text"
731
- msgstr "teksti"
732
-
733
- #: admin/tab-fields.php:212
734
- msgid "email"
735
- msgstr ""
736
-
737
- #: admin/tab-fields.php:213
738
- msgid "textarea"
739
- msgstr "Tekstialue"
740
-
741
- #: admin/tab-fields.php:214
742
- msgid "checkbox"
743
- msgstr "rastitus"
744
-
745
- #: admin/tab-fields.php:215
746
- msgid "multiple checkbox"
747
- msgstr ""
748
-
749
- #: admin/tab-fields.php:216
750
- msgid "select (dropdown)"
751
- msgstr ""
752
-
753
- #: admin/tab-fields.php:217
754
- msgid "multiple select"
755
- msgstr ""
756
-
757
- #: admin/tab-fields.php:218
758
- msgid "radio group"
759
- msgstr ""
760
-
761
- #: admin/tab-fields.php:219
762
- msgid "password"
763
- msgstr "Salasana"
764
-
765
- #: admin/tab-fields.php:220
766
- msgid "image"
767
- msgstr ""
768
-
769
- #: admin/tab-fields.php:221
770
- msgid "file"
771
- msgstr ""
772
-
773
- #: admin/tab-fields.php:222
774
- msgid "url"
775
- msgstr ""
776
-
777
- #: admin/tab-fields.php:223
778
- msgid "number"
779
- msgstr ""
780
-
781
- #: admin/tab-fields.php:224
782
- msgid "date"
783
- msgstr ""
784
-
785
- #: admin/tab-fields.php:225
786
- msgid "hidden"
787
- msgstr ""
788
-
789
- #: admin/tab-fields.php:227
790
- msgid "membership"
791
- msgstr ""
792
-
793
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
794
- msgid "Display?"
795
- msgstr "Näkyvissä?"
796
-
797
- #: admin/tab-fields.php:237
798
- msgid "This field is always displayed"
799
- msgstr ""
800
-
801
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
802
- msgid "Required?"
803
- msgstr "Pakollinen?"
804
-
805
- #: admin/tab-fields.php:246
806
- msgid "This field is always required"
807
- msgstr ""
808
-
809
- #: admin/tab-fields.php:252
810
- msgid "Allow HTML?"
811
- msgstr ""
812
-
813
- #: admin/tab-fields.php:259
814
- msgid "Placeholder"
815
- msgstr ""
816
-
817
- #: admin/tab-fields.php:267
818
- msgid "Pattern"
819
- msgstr ""
820
-
821
- #: admin/tab-fields.php:273
822
- msgid "Title"
823
- msgstr ""
824
-
825
- #: admin/tab-fields.php:282
826
- msgid "Minimum Value"
827
- msgstr ""
828
-
829
- #: admin/tab-fields.php:286
830
- msgid "Maximum Value"
831
- msgstr ""
832
-
833
- #: admin/tab-fields.php:294
834
- msgid "Rows"
835
- msgstr ""
836
-
837
- #: admin/tab-fields.php:298
838
- msgid "Columns"
839
- msgstr ""
840
-
841
- #: admin/tab-fields.php:306
842
- msgid "Accepted file types:"
843
- msgstr ""
844
-
845
- #: admin/tab-fields.php:311
846
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
847
- msgstr ""
848
-
849
- #: admin/tab-fields.php:318
850
- msgid "Checked by default?"
851
- msgstr ""
852
-
853
- #: admin/tab-fields.php:322
854
- msgid "Stored value if checked:"
855
- msgstr ""
856
-
857
- #: admin/tab-fields.php:343
858
- msgid "Stored values delimiter:"
859
- msgstr ""
860
-
861
- #: admin/tab-fields.php:352
862
- msgid "Values (Displayed|Stored):"
863
- msgstr ""
864
-
865
- #: admin/tab-fields.php:377
866
- msgid "Options should be Option Name|option_value,"
867
- msgstr ""
868
-
869
- #: admin/tab-fields.php:381
870
- msgid "Visit plugin site for more information"
871
- msgstr ""
872
-
873
- #: admin/tab-fields.php:388
874
- msgid "Value"
875
- msgstr ""
876
-
877
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
878
- msgid "Add Field"
879
- msgstr "Lisätä Kentän"
880
-
881
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
882
- msgid "Return to Fields Table"
883
- msgstr ""
884
-
885
- #: admin/tab-fields.php:449
886
- msgid "Drag and drop to reorder fields"
887
- msgstr ""
888
-
889
- #: admin/tab-fields.php:455
890
- msgid "Registration Date"
891
- msgstr ""
892
-
893
- #: admin/tab-fields.php:456
894
- msgid "Active"
895
- msgstr "Aktivoitu"
896
-
897
- #: admin/tab-fields.php:457
898
- msgid "Registration IP"
899
- msgstr "IP @ rekisteröinnissä"
900
-
901
- #: admin/tab-fields.php:458
902
- msgid "Subscription Type"
903
- msgstr ""
904
-
905
- #: admin/tab-fields.php:460 admin/user-export.php:58
906
- msgid "User ID"
907
- msgstr ""
908
-
909
- #: admin/tab-fields.php:493
910
- msgid "Manage Fields"
911
- msgstr "Hallitse kenttiä"
912
-
913
- #: admin/tab-fields.php:532
914
- msgid "delete"
915
- msgstr ""
916
-
917
- #: admin/tab-fields.php:546
918
- msgid "Display Label"
919
- msgstr ""
920
-
921
- #: admin/tab-fields.php:552
922
- msgid "Users Screen"
923
- msgstr ""
924
-
925
- #: admin/tab-fields.php:553
926
- msgid "Users Search"
927
- msgstr ""
928
-
929
- #: admin/tab-fields.php:555
930
- msgid "Sort"
931
- msgstr ""
932
-
933
- #: admin/tab-fields.php:596
934
- msgid "Delete Selected"
935
- msgstr ""
936
-
937
- #: admin/tab-fields.php:738
938
- msgid "WP-Members fields were updated"
939
- msgstr "WP-Members kentät on päivitetty"
940
-
941
- #: admin/tab-fields.php:760
942
- msgid "Field Label is required. Nothing was updated."
943
- msgstr ""
944
-
945
- #: admin/tab-fields.php:761
946
- msgid "Meta Key is required. Nothing was updated."
947
- msgstr ""
948
-
949
- #: admin/tab-fields.php:763
950
- msgid "Meta Key must contain only letters, numbers, and underscores"
951
- msgstr ""
952
-
953
- #: admin/tab-fields.php:770
954
- msgid "A field with that meta key already exists"
955
- msgstr ""
956
-
957
- #: admin/tab-fields.php:775
958
- #, php-format
959
- msgid ""
960
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
961
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
962
- "Field was not added."
963
- msgstr ""
964
-
965
- #: admin/tab-fields.php:816
966
- msgid "Checked value is required for checkboxes. Nothing was updated."
967
- msgstr ""
968
- "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
969
- "päivitetty."
970
-
971
- #: admin/tab-fields.php:847
972
- msgid "A value is required for hidden fields. Nothing was updated."
973
- msgstr ""
974
-
975
- #: admin/tab-fields.php:854
976
- #, php-format
977
- msgid "%s was added"
978
- msgstr ""
979
-
980
- #: admin/tab-fields.php:867
981
- #, php-format
982
- msgid "%s was updated"
983
- msgstr ""
984
-
985
- #: admin/tab-fields.php:909
986
- msgid "Form field order updated."
987
- msgstr ""
988
-
989
- #: admin/tab-options.php:60
990
- #, php-format
991
- msgid "%sChange%s or %sFilter%s this address"
992
- msgstr ""
993
-
994
- #: admin/tab-options.php:61
995
- #, php-format
996
- msgid "See the %sUsers Guide on plugin options%s."
997
- msgstr ""
998
-
999
- #: admin/tab-options.php:66
1000
- msgid "Posts"
1001
- msgstr ""
1002
-
1003
- #: admin/tab-options.php:67 admin/tab-options.php:215
1004
- #, fuzzy
1005
- msgid "Pages"
1006
- msgstr "Estä sivujen näkyvyys oletusarvoisesti"
1007
-
1008
- #: admin/tab-options.php:94
1009
- msgid "Manage Options"
1010
- msgstr "Hallitse optioita"
1011
-
1012
- #: admin/tab-options.php:98
1013
- msgid "Content"
1014
- msgstr ""
1015
-
1016
- #: admin/tab-options.php:109
1017
- msgid "Content Blocking"
1018
- msgstr ""
1019
-
1020
- #: admin/tab-options.php:113
1021
- msgid "Do not block"
1022
- msgstr ""
1023
-
1024
- #: admin/tab-options.php:127
1025
- msgid "Show Excerpts"
1026
- msgstr ""
1027
-
1028
- #: admin/tab-options.php:128
1029
- msgid "Show Login Form"
1030
- msgstr ""
1031
-
1032
- #: admin/tab-options.php:129
1033
- msgid "Show Registration Form"
1034
- msgstr ""
1035
-
1036
- #: admin/tab-options.php:130
1037
- msgid "Auto Excerpt:"
1038
- msgstr "Näytä yhteenvedot"
1039
-
1040
- #: admin/tab-options.php:152
1041
- msgid "Number of words in excerpt:"
1042
- msgstr ""
1043
-
1044
- #: admin/tab-options.php:153
1045
- msgid "Custom read more link (optional):"
1046
- msgstr ""
1047
-
1048
- #: admin/tab-options.php:167
1049
- msgid "Time-based expiration"
1050
- msgstr "Ajastettu vanhentuminen"
1051
-
1052
- #: admin/tab-options.php:167
1053
- msgid "Allows for access to expire"
1054
- msgstr "Sisäänpääsyn sallitaan vanhentua"
1055
-
1056
- #: admin/tab-options.php:168
1057
- msgid "Trial period"
1058
- msgstr "Koeaika"
1059
-
1060
- #: admin/tab-options.php:168
1061
- msgid "Allows for a trial period"
1062
- msgstr "Sallii koeajan käytön"
1063
-
1064
- #: admin/tab-options.php:170
1065
- msgid "Subscription Settings"
1066
- msgstr ""
1067
-
1068
- #: admin/tab-options.php:180
1069
- msgid "Other Settings"
1070
- msgstr ""
1071
-
1072
- #: admin/tab-options.php:186
1073
- msgid "Enable Products"
1074
- msgstr ""
1075
-
1076
- #: admin/tab-options.php:186
1077
- msgid "Enables creation of different membership products"
1078
- msgstr ""
1079
-
1080
- #: admin/tab-options.php:187
1081
- msgid "Clone menus"
1082
- msgstr ""
1083
-
1084
- #: admin/tab-options.php:187
1085
- msgid "Enables logged in menus"
1086
- msgstr ""
1087
-
1088
- #: admin/tab-options.php:188
1089
- msgid "Notify admin"
1090
- msgstr "Ilmoita pääkäyttäjälle"
1091
-
1092
- #: admin/tab-options.php:188
1093
- #, php-format
1094
- msgid "Notify %s for each new registration? %s"
1095
- msgstr "Lähetä sähköposti %s jokaisen rekisteröitymisen yhteydessä? %s"
1096
-
1097
- #: admin/tab-options.php:189
1098
- msgid "Moderate registration"
1099
- msgstr "Moderoi rekisteröitymiset"
1100
-
1101
- #: admin/tab-options.php:189
1102
- msgid "Holds new registrations for admin approval"
1103
- msgstr "Pääkäyttäjän hyväksyntä vaaditaan"
1104
-
1105
- #: admin/tab-options.php:190
1106
- msgid "Ignore warning messages"
1107
- msgstr "Varoitukset jätetään huomioimatta"
1108
-
1109
- #: admin/tab-options.php:190
1110
- msgid "Ignores WP-Members warning messages in the admin panel"
1111
- msgstr "WP-Members hallintapaneelin varoitusten hylkääminen"
1112
-
1113
- #: admin/tab-options.php:201
1114
- msgid "Attribution"
1115
- msgstr ""
1116
-
1117
- #: admin/tab-options.php:203
1118
- msgid ""
1119
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1120
- msgstr ""
1121
-
1122
- #: admin/tab-options.php:206
1123
- msgid "Enable CAPTCHA"
1124
- msgstr "Ota käyttöön CAPTCHA"
1125
-
1126
- #: admin/tab-options.php:211
1127
- msgid "reCAPTCHA"
1128
- msgstr ""
1129
-
1130
- #: admin/tab-options.php:212
1131
- msgid "Really Simple CAPTCHA"
1132
- msgstr ""
1133
-
1134
- #: admin/tab-options.php:219
1135
- msgid "Login Page:"
1136
- msgstr ""
1137
-
1138
- #: admin/tab-options.php:222
1139
- msgid "Specify a login page (optional)"
1140
- msgstr ""
1141
-
1142
- #: admin/tab-options.php:231
1143
- msgid "Register Page:"
1144
- msgstr ""
1145
-
1146
- #: admin/tab-options.php:234
1147
- msgid "For creating a register link in the login form"
1148
- msgstr ""
1149
-
1150
- #: admin/tab-options.php:243
1151
- msgid "User Profile Page:"
1152
- msgstr ""
1153
-
1154
- #: admin/tab-options.php:246
1155
- msgid "For creating a forgot password link in the login form"
1156
- msgstr ""
1157
-
1158
- #: admin/tab-options.php:252 admin/tab-options.php:254
1159
- msgid "Stylesheet"
1160
- msgstr ""
1161
-
1162
- #: admin/tab-options.php:263
1163
- msgid "Custom Stylesheet:"
1164
- msgstr ""
1165
-
1166
- #: admin/tab-options.php:268 admin/tab-options.php:295
1167
- msgid "Update Settings"
1168
- msgstr "Päivitä asetukset"
1169
-
1170
- #: admin/tab-options.php:276
1171
- msgid "Custom Post Types"
1172
- msgstr ""
1173
-
1174
- #: admin/tab-options.php:282
1175
- msgid "Add to WP-Members Settings"
1176
- msgstr ""
1177
-
1178
- #: admin/tab-options.php:312
1179
- msgid "Close"
1180
- msgstr ""
1181
-
1182
- #: admin/tab-options.php:330 admin/tab-options.php:331
1183
- msgid "WP-Members Settings"
1184
- msgstr ""
1185
-
1186
- #: admin/tab-options.php:332
1187
- msgid ""
1188
- "The following is your WP-Members settings information if needed for support."
1189
- msgstr ""
1190
-
1191
- #: admin/tab-options.php:359
1192
- msgid "Click to Copy"
1193
- msgstr ""
1194
-
1195
- #: admin/tab-options.php:435
1196
- msgid "Custom Post Type settings were updated"
1197
- msgstr ""
1198
-
1199
- #: admin/tab-options.php:551
1200
- msgid "WP-Members settings were updated"
1201
- msgstr "WP-Members asetukset on päivitetty"
1202
-
1203
- #: admin/tab-options.php:621 admin/tab-options.php:651
1204
- msgid "USE CUSTOM URL BELOW"
1205
- msgstr ""
1206
-
1207
- #: admin/tab-options.php:640
1208
- msgid "Select a page"
1209
- msgstr ""
1210
-
1211
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1212
- #: inc/class-wp-members.php:1255
1213
- msgid "Username"
1214
- msgstr "Käyttäjätunnus"
1215
-
1216
- #: admin/user-export.php:65
1217
- msgid "Activated?"
1218
- msgstr "Aktivoitu?"
1219
-
1220
- #: admin/user-export.php:68 admin/users.php:317
1221
- msgid "Subscription"
1222
- msgstr "Tilaus"
1223
-
1224
- #: admin/user-export.php:71
1225
- msgid "Registered"
1226
- msgstr "Rekisteröity"
1227
-
1228
- #: admin/user-export.php:72
1229
- msgid "IP"
1230
- msgstr "IP"
1231
-
1232
- #: admin/user-export.php:135
1233
- msgid "Yes"
1234
- msgstr "Kyllä"
1235
-
1236
- #: admin/user-export.php:135 admin/users.php:399
1237
- msgid "No"
1238
- msgstr "Ei"
1239
-
1240
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1241
- msgid "Activate"
1242
- msgstr "Aktivoi"
1243
-
1244
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1245
- msgid "Deactivate"
1246
- msgstr ""
1247
-
1248
- #: admin/users.php:52 admin/users.php:57
1249
- msgid "Export"
1250
- msgstr "Vie"
1251
-
1252
- #: admin/users.php:58 admin/users.php:109
1253
- msgid "Export All Users"
1254
- msgstr "viedä kaikki käyttäjät"
1255
-
1256
- #: admin/users.php:158
1257
- #, php-format
1258
- msgid "%s users activated"
1259
- msgstr ""
1260
-
1261
- #: admin/users.php:158
1262
- #, php-format
1263
- msgid "%s users deactivated"
1264
- msgstr ""
1265
-
1266
- #: admin/users.php:161
1267
- msgid "No users selected"
1268
- msgstr ""
1269
-
1270
- #: admin/users.php:181
1271
- #, php-format
1272
- msgid "%s activated"
1273
- msgstr ""
1274
-
1275
- #: admin/users.php:186
1276
- #, php-format
1277
- msgid "%s deactivated"
1278
- msgstr ""
1279
-
1280
- #: admin/users.php:190
1281
- msgid "That user is already active"
1282
- msgstr ""
1283
-
1284
- #: admin/users.php:315
1285
- msgid "Pending"
1286
- msgstr ""
1287
-
1288
- #: admin/users.php:316
1289
- msgid "Trial"
1290
- msgstr ""
1291
-
1292
- #: admin/users.php:318
1293
- msgid "Expired"
1294
- msgstr ""
1295
-
1296
- #: admin/users.php:321
1297
- msgid "Not Activated"
1298
- msgstr ""
1299
-
1300
- #: admin/users.php:322
1301
- msgid "Deactivated"
1302
- msgstr ""
1303
-
1304
- #: admin/users.php:324
1305
- msgid "Not Exported"
1306
- msgstr ""
1307
-
1308
- #: inc/api.php:304 inc/class-wp-members.php:1296
1309
- msgid "log in"
1310
- msgstr "Kirjaudu"
1311
-
1312
- #: inc/api.php:305
1313
- msgid "log out"
1314
- msgstr ""
1315
-
1316
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1317
- #: inc/wp-registration.php:77
1318
- #, php-format
1319
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1320
- msgstr ""
1321
-
1322
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1323
- #: inc/wp-registration.php:78
1324
- msgid "TOS"
1325
- msgstr "Käyttöehdot"
1326
-
1327
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1328
- #: wp-members-tos.php:23
1329
- msgid "Terms of Service"
1330
- msgstr ""
1331
-
1332
- #: inc/class-wp-members-products.php:212
1333
- msgid "Product"
1334
- msgstr ""
1335
-
1336
- #: inc/class-wp-members-products.php:213
1337
- msgid "Products"
1338
- msgstr ""
1339
-
1340
- #: inc/class-wp-members-products.php:218
1341
- msgid "Memberships"
1342
- msgstr ""
1343
-
1344
- #: inc/class-wp-members-products.php:219
1345
- #, php-format
1346
- msgid "All %s"
1347
- msgstr ""
1348
-
1349
- #: inc/class-wp-members-products.php:220
1350
- #, php-format
1351
- msgid "Add New %s"
1352
- msgstr ""
1353
-
1354
- #: inc/class-wp-members-products.php:221
1355
- msgid "Add New"
1356
- msgstr "Luo uusi"
1357
-
1358
- #: inc/class-wp-members-products.php:222
1359
- #, php-format
1360
- msgid "New %s"
1361
- msgstr ""
1362
-
1363
- #: inc/class-wp-members-products.php:223
1364
- #, php-format
1365
- msgid "Edit %s"
1366
- msgstr ""
1367
-
1368
- #: inc/class-wp-members-products.php:224
1369
- #, php-format
1370
- msgid "Update %s"
1371
- msgstr ""
1372
-
1373
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1374
- #, php-format
1375
- msgid "View %s"
1376
- msgstr ""
1377
-
1378
- #: inc/class-wp-members-products.php:227
1379
- #, php-format
1380
- msgid "Search %s"
1381
- msgstr ""
1382
-
1383
- #: inc/class-wp-members-products.php:228
1384
- msgid "Not found"
1385
- msgstr ""
1386
-
1387
- #: inc/class-wp-members-products.php:229
1388
- msgid "Not found in Trash"
1389
- msgstr ""
1390
-
1391
- #: inc/class-wp-members-products.php:230
1392
- msgid "Insert into item"
1393
- msgstr ""
1394
-
1395
- #: inc/class-wp-members-products.php:231
1396
- #, php-format
1397
- msgid "Save %s Details"
1398
- msgstr ""
1399
-
1400
- #: inc/class-wp-members-products.php:234
1401
- msgid "Membership Product"
1402
- msgstr ""
1403
-
1404
- #: inc/class-wp-members-products.php:235
1405
- msgid "WP-Members Membership Products"
1406
- msgstr ""
1407
-
1408
- #: inc/class-wp-members-shortcodes.php:135
1409
- msgid ""
1410
- "This is a generic message to display the form message dialog in the "
1411
- "Customizer."
1412
- msgstr ""
1413
-
1414
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1415
- #: inc/deprecated.php:180
1416
- msgid "There was an error with the CAPTCHA form."
1417
- msgstr "CAPTCHA lomakkeessa oli virhe."
1418
-
1419
- #: inc/class-wp-members-shortcodes.php:676
1420
- msgid "Click here to log out."
1421
- msgstr ""
1422
-
1423
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1424
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1425
- msgid "Register"
1426
- msgstr "Rekisteröidy"
1427
-
1428
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1429
- msgid "Log In"
1430
- msgstr "Kirjaudu sisään"
1431
-
1432
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1433
- msgid "WP-Members Additional Fields"
1434
- msgstr "WP-Members lisäkentät"
1435
-
1436
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1437
- msgid "Additional Information"
1438
- msgstr "Lisätiedot"
1439
-
1440
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1441
- msgid "Activate this user?"
1442
- msgstr "Aktivoi tämä käyttäjä?"
1443
-
1444
- #: inc/class-wp-members-user-profile.php:453
1445
- msgid "Reactivate this user?"
1446
- msgstr ""
1447
-
1448
- #: inc/class-wp-members-user-profile.php:458
1449
- msgid "Deactivate this user?"
1450
- msgstr "Poistaa tämän käyttäjän?"
1451
-
1452
- #: inc/class-wp-members-user-profile.php:507
1453
- msgid "IP @ registration"
1454
- msgstr "IP @ rekisteröinnissä"
1455
-
1456
- #: inc/class-wp-members-user-profile.php:526
1457
- msgid "Product Access"
1458
- msgstr ""
1459
-
1460
- #: inc/class-wp-members-user-profile.php:534
1461
- msgid "Enable"
1462
- msgstr ""
1463
-
1464
- #: inc/class-wp-members-user-profile.php:535
1465
- msgid "Disable"
1466
- msgstr ""
1467
-
1468
- #: inc/class-wp-members-user-profile.php:541
1469
- msgid "Expires:"
1470
- msgstr ""
1471
-
1472
- #: inc/class-wp-members-user-profile.php:543
1473
- msgid "Enabled"
1474
- msgstr ""
1475
-
1476
- #: inc/class-wp-members-user.php:712
1477
- msgid "<strong>ERROR</strong>: User has not been activated."
1478
- msgstr ""
1479
-
1480
- #: inc/class-wp-members-widget.php:24
1481
- msgid "Displays the WP-Members sidebar login."
1482
- msgstr ""
1483
-
1484
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1485
- msgid "Login Status"
1486
- msgstr "Kirjautumisen tila"
1487
-
1488
- #: inc/class-wp-members-widget.php:46
1489
- msgid "Title:"
1490
- msgstr "Otsikko:"
1491
-
1492
- #: inc/class-wp-members-widget.php:50
1493
- msgid "Redirect to (optional):"
1494
- msgstr ""
1495
-
1496
- #: inc/class-wp-members.php:1183
1497
- msgid "First Name"
1498
- msgstr "Etunimi"
1499
-
1500
- #: inc/class-wp-members.php:1184
1501
- msgid "Last Name"
1502
- msgstr "Sukunimi"
1503
-
1504
- #: inc/class-wp-members.php:1185
1505
- msgid "Address 1"
1506
- msgstr "Katuosoite"
1507
-
1508
- #: inc/class-wp-members.php:1186
1509
- msgid "Address 2"
1510
- msgstr "Osoiterivi 2"
1511
-
1512
- #: inc/class-wp-members.php:1187
1513
- msgid "City"
1514
- msgstr "Paikkakunta"
1515
-
1516
- #: inc/class-wp-members.php:1188
1517
- msgid "State"
1518
- msgstr "Maakunta/osavaltio"
1519
-
1520
- #: inc/class-wp-members.php:1189
1521
- msgid "Zip"
1522
- msgstr "Postinumero"
1523
-
1524
- #: inc/class-wp-members.php:1190
1525
- msgid "Country"
1526
- msgstr "Maa"
1527
-
1528
- #: inc/class-wp-members.php:1191
1529
- msgid "Day Phone"
1530
- msgstr "Puhelin"
1531
-
1532
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1533
- msgid "Email"
1534
- msgstr "sähköpostiosoite"
1535
-
1536
- #: inc/class-wp-members.php:1193
1537
- msgid "Confirm Email"
1538
- msgstr ""
1539
-
1540
- #: inc/class-wp-members.php:1194
1541
- msgid "Website"
1542
- msgstr "Omat nettisivusi"
1543
-
1544
- #: inc/class-wp-members.php:1195
1545
- msgid "Biographical Info"
1546
- msgstr "Kuvaus sinusta"
1547
-
1548
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216
1549
- #: inc/class-wp-members.php:1295
1550
- msgid "Password"
1551
- msgstr "Salasana"
1552
-
1553
- #: inc/class-wp-members.php:1197
1554
- msgid "Confirm Password"
1555
- msgstr ""
1556
-
1557
- #: inc/class-wp-members.php:1208
1558
- msgid "You are not logged in."
1559
- msgstr ""
1560
-
1561
- #: inc/class-wp-members.php:1214
1562
- msgid "Existing Users Log In"
1563
- msgstr "Kirjaudu sisään"
1564
-
1565
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1566
- msgid "Username or Email"
1567
- msgstr ""
1568
-
1569
- #: inc/class-wp-members.php:1218
1570
- msgid "Remember Me"
1571
- msgstr ""
1572
-
1573
- #: inc/class-wp-members.php:1219
1574
- msgid "Forgot password?"
1575
- msgstr "Unohditko salasanasi?"
1576
-
1577
- #: inc/class-wp-members.php:1220
1578
- msgid "Click here to reset"
1579
- msgstr "Klikkaa tästä nollataksesi"
1580
-
1581
- #: inc/class-wp-members.php:1221
1582
- msgid "New User?"
1583
- msgstr "Uusi käyttäjä?"
1584
-
1585
- #: inc/class-wp-members.php:1222
1586
- msgid "Click here to register"
1587
- msgstr "Klikkaa tästä rekisteröityäksesi"
1588
-
1589
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1590
- msgid "Change Password"
1591
- msgstr "Vaihda salasanaa"
1592
-
1593
- #: inc/class-wp-members.php:1226
1594
- msgid "New password"
1595
- msgstr ""
1596
-
1597
- #: inc/class-wp-members.php:1227
1598
- msgid "Confirm new password"
1599
- msgstr ""
1600
-
1601
- #: inc/class-wp-members.php:1228
1602
- msgid "Update Password"
1603
- msgstr "Päivitä salasana"
1604
-
1605
- #: inc/class-wp-members.php:1231
1606
- msgid "Reset Forgotten Password"
1607
- msgstr "Unohtuneen salasanan nollaus"
1608
-
1609
- #: inc/class-wp-members.php:1234
1610
- msgid "Reset Password"
1611
- msgstr "Nollaa salasana"
1612
-
1613
- #: inc/class-wp-members.php:1235
1614
- msgid "Forgot username?"
1615
- msgstr ""
1616
-
1617
- #: inc/class-wp-members.php:1236
1618
- msgid "Click here"
1619
- msgstr ""
1620
-
1621
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1622
- msgid "Retrieve username"
1623
- msgstr ""
1624
-
1625
- #: inc/class-wp-members.php:1240
1626
- msgid "Email Address"
1627
- msgstr ""
1628
-
1629
- #: inc/class-wp-members.php:1244
1630
- msgid "New User Registration"
1631
- msgstr "Uuden käyttäjän rekisteröinti"
1632
-
1633
- #: inc/class-wp-members.php:1245
1634
- msgid "Choose a Username"
1635
- msgstr "Valitse käyttäjätunnus"
1636
-
1637
- #: inc/class-wp-members.php:1246
1638
- msgid "Input the code:"
1639
- msgstr ""
1640
-
1641
- #: inc/class-wp-members.php:1248
1642
- msgid "Reset Form"
1643
- msgstr ""
1644
-
1645
- #: inc/class-wp-members.php:1251
1646
- msgid "Required field"
1647
- msgstr "Pakollinen tieto"
1648
-
1649
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1650
- msgid "Edit Your Information"
1651
- msgstr "Täytä omat tietosi"
1652
-
1653
- #: inc/class-wp-members.php:1256
1654
- msgid "Update Profile"
1655
- msgstr ""
1656
-
1657
- #: inc/class-wp-members.php:1257
1658
- msgid "Update this file"
1659
- msgstr ""
1660
-
1661
- #: inc/class-wp-members.php:1260
1662
- msgid "Login Failed!"
1663
- msgstr "Sisäänkirjautuminen epäonnistui!"
1664
-
1665
- #: inc/class-wp-members.php:1261
1666
- msgid "You entered an invalid username or password."
1667
- msgstr "Annoit väärän käyttäjätunnuksen tai salasanan."
1668
-
1669
- #: inc/class-wp-members.php:1262
1670
- msgid "Click here to continue."
1671
- msgstr "Klikkaa tähän jatkaaksesi."
1672
-
1673
- #: inc/class-wp-members.php:1263
1674
- msgid "Password fields cannot be empty"
1675
- msgstr "Salasanakentät eivät saa olla tyhjiä"
1676
-
1677
- #: inc/class-wp-members.php:1264
1678
- msgid "Sorry, that email address was not found."
1679
- msgstr ""
1680
-
1681
- #: inc/class-wp-members.php:1265
1682
- #, php-format
1683
- msgid "An email was sent to %s with your username."
1684
- msgstr ""
1685
-
1686
- #: inc/class-wp-members.php:1266
1687
- #, php-format
1688
- msgid "Sorry, %s is a required field."
1689
- msgstr "Valitettavasti %s on pakollinen tieto."
1690
-
1691
- #: inc/class-wp-members.php:1267
1692
- msgid "You must enter a valid email address."
1693
- msgstr "Annoit väärän käyttäjätunnuksen tai salasanan. "
1694
-
1695
- #: inc/class-wp-members.php:1268
1696
- msgid "The username cannot include non-alphanumeric characters."
1697
- msgstr "Käyttäjätunnus voi sisältää ainoastaan kirjaimia ja numeroita."
1698
-
1699
- #: inc/class-wp-members.php:1269
1700
- msgid "Sorry, username is a required field"
1701
- msgstr "Käyttäjätunnus on pakollinen tieto."
1702
-
1703
- #: inc/class-wp-members.php:1270
1704
- msgid "Passwords did not match."
1705
- msgstr "Salasanat eivät täsmää"
1706
-
1707
- #: inc/class-wp-members.php:1271
1708
- msgid "Emails did not match."
1709
- msgstr "Sähköpostit eivät täsmää"
1710
-
1711
- #: inc/class-wp-members.php:1272
1712
- msgid "You must complete the CAPTCHA form."
1713
- msgstr "CAPTCHA lomake on täytettävä oikein."
1714
-
1715
- #: inc/class-wp-members.php:1273
1716
- msgid "CAPTCHA was not valid."
1717
- msgstr ""
1718
-
1719
- #: inc/class-wp-members.php:1274 inc/register.php:52
1720
- msgid "There was an error processing the form."
1721
- msgstr ""
1722
-
1723
- #: inc/class-wp-members.php:1278
1724
- msgid "Edit My Information"
1725
- msgstr "Muuta omia tietojani"
1726
-
1727
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283
1728
- #: inc/class-wp-members.php:1285 inc/class-wp-members.php:1290
1729
- #, php-format
1730
- msgid "You are logged in as %s"
1731
- msgstr "Olet kirjautunut sisään tunnuksella %s"
1732
-
1733
- #: inc/class-wp-members.php:1281
1734
- msgid "Click to log out."
1735
- msgstr "Ilmoittaa lähtevänsä."
1736
-
1737
- #: inc/class-wp-members.php:1282
1738
- msgid "Begin using the site."
1739
- msgstr "Aloita sivuston käyttö."
1740
-
1741
- #: inc/class-wp-members.php:1284
1742
- msgid "Click to log out"
1743
- msgstr "Ilmoittaa lähtevänsä"
1744
-
1745
- #: inc/class-wp-members.php:1286
1746
- msgid "click to log out"
1747
- msgstr "ilmoittaa lähtevänsä"
1748
-
1749
- #: inc/class-wp-members.php:1287
1750
- msgid "Log Out"
1751
- msgstr ""
1752
-
1753
- #: inc/class-wp-members.php:1291
1754
- msgid "click here to log out"
1755
- msgstr "Klikkaa tästä kirjautuaksesi ulos"
1756
-
1757
- #: inc/class-wp-members.php:1292
1758
- msgid "Login Failed!<br />You entered an invalid username or password."
1759
- msgstr ""
1760
- "Sisäänkirjautuminen epäonnistui<br />Käyttäjätunnus tai salasana väärin."
1761
-
1762
- #: inc/class-wp-members.php:1297
1763
- msgid "Forgot?"
1764
- msgstr "Unohdit?"
1765
-
1766
- #: inc/class-wp-members.php:1301
1767
- msgid ""
1768
- "This content is restricted to site members. If you are an existing user, "
1769
- "please log in. New users may register below."
1770
- msgstr ""
1771
- "Tämä sisältö on rajattu vain rekisteröityneille käyttäjille. Jos sinulla on "
1772
- "tänne käyttäjätunnus, ole hyvä ja kirjaudu sisään. Uudet käyttäjät voivat "
1773
- "rekisteröityä alla olevan lomakkeen avulla."
1774
-
1775
- #: inc/class-wp-members.php:1302
1776
- msgid ""
1777
- "Congratulations! Your registration was successful.<br /><br />You may now "
1778
- "log in using the password that was emailed to you."
1779
- msgstr ""
1780
- "Onnittelut! Rekisteröintisi onnistui. <br /> <br /> Voit nyt kirjautua "
1781
- "sisään salasanalla, joka lähetetään sinulle antamaasi sähköpostiosoitteeseen."
1782
-
1783
- #: inc/class-wp-members.php:1305
1784
- msgid "Sorry, that username is taken, please try another."
1785
- msgstr "Antamasi käyttäjätunnus on jo varattu, kokeile jotain toista."
1786
-
1787
- #: inc/class-wp-members.php:1306
1788
- msgid ""
1789
- "Sorry, that email address already has an account.<br />Please try another."
1790
- msgstr ""
1791
- "Antamasi sähköpostiosoite on jo käytössä. <br /> Anna jokin toinen osoite."
1792
-
1793
- #: inc/class-wp-members.php:1307
1794
- msgid "Your information was updated!"
1795
- msgstr "Tietosi on päivitetty!"
1796
-
1797
- #: inc/class-wp-members.php:1310
1798
- msgid "Passwords did not match.<br /><br />Please try again."
1799
- msgstr "Salasanat eivät täsmää.<br /><br />Yritä uudestaan."
1800
-
1801
- #: inc/class-wp-members.php:1311
1802
- msgid "Password successfully changed!"
1803
- msgstr ""
1804
-
1805
- #: inc/class-wp-members.php:1312
1806
- msgid "Either the username or email address do not exist in our records."
1807
- msgstr "Käyttäjätunnusta tai sähköpostiosoitetta ei löydy."
1808
-
1809
- #: inc/class-wp-members.php:1313
1810
- msgid ""
1811
- "Password successfully reset!<br /><br />An email containing a new password "
1812
- "has been sent to the email address on file for your account."
1813
- msgstr ""
1814
-
1815
- #: inc/class-wp-members.php:1315
1816
- msgid "Sorry, you do not have access to this content."
1817
- msgstr ""
1818
-
1819
- #: inc/class-wp-members.php:1433
1820
- msgid "Show forms as logged out"
1821
- msgstr ""
1822
-
1823
- #: inc/class-wp-members.php:1442
1824
- msgid "Show form message dialog"
1825
- msgstr ""
1826
-
1827
- #: inc/class-wp-members.php:1538
1828
- msgid "(more&hellip;)"
1829
- msgstr ""
1830
-
1831
- #: inc/register.php:417
1832
- msgid "We were unable to validate the public key."
1833
- msgstr "Julkisen avaimen varmennus epäonnistui."
1834
-
1835
- #: inc/register.php:421
1836
- msgid "We were unable to validate the private key."
1837
- msgstr "Yksityisen avaimen varmennus epäonnistui."
1838
-
1839
- #: inc/register.php:425
1840
- msgid "The challenge parameter of the verify script was incorrect."
1841
- msgstr "Haasteen parametri varmenneskriptissä oli väärä."
1842
-
1843
- #: inc/register.php:429
1844
- msgid "The CAPTCHA solution was incorrect."
1845
- msgstr "CAPTCHA ratkaisu oli väärin"
1846
-
1847
- #: inc/register.php:433
1848
- msgid "The parameters to verify were incorrect"
1849
- msgstr "Varmennusparametrit olivat väärin"
1850
-
1851
- #: inc/register.php:437
1852
- msgid ""
1853
- "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1854
- msgstr "reCAPTCHA API-avaimet on sidottu tiettyyn domainiin tietoturvasyistä."
1855
-
1856
- #: inc/register.php:441
1857
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1858
- msgstr "reCAPTCHA palvelin ei vastaa, yritä uudestaan."
1859
-
1860
- #: inc/register.php:445
1861
- msgid "You have entered an incorrect code value. Please try again."
1862
- msgstr ""
1863
-
1864
- #: wp-members-tos.php:35
1865
- #, php-format
1866
- msgid "%sclose%s"
1867
- msgstr ""
1868
-
1869
- #: wp-members-tos.php:37
1870
- #, php-format
1871
- msgid "%sprint%s"
1872
- msgstr ""
1873
-
1874
- #. Plugin Name of the plugin/theme
1875
- msgid "WP-Members"
1876
- msgstr "WP-Members"
1877
-
1878
- #. Plugin URI of the plugin/theme
1879
- msgid "https://rocketgeek.com"
1880
- msgstr ""
1881
-
1882
- #. Description of the plugin/theme
1883
- msgid ""
1884
- "WP access restriction and user registration. For more information on plugin "
1885
- "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
1886
- "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
1887
- "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
1888
- "available. WP-Members(tm) is a trademark of butlerblog.com."
1889
- msgstr ""
1890
-
1891
- #. Author of the plugin/theme
1892
- msgid "Chad Butler"
1893
- msgstr "Chad Butler"
1894
-
1895
- #. Author URI of the plugin/theme
1896
- msgid "http://butlerblog.com/"
1897
- msgstr "http://butlerblog.com/"
1898
-
1899
- #~ msgid "You have set WP-Members to turn off the registration process"
1900
- #~ msgstr "WP-Members on nyt estänyt rekisteröintiprosessin"
1901
-
1902
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
1903
- #~ msgstr ""
1904
- #~ "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
1905
- #~ "päivitetty."
1906
-
1907
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
1908
- #~ msgstr ""
1909
- #~ "Option nimi vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt päivitetty."
1910
-
1911
- #~ msgid "Option Name"
1912
- #~ msgstr "Option nimi"
1913
-
1914
- #~ msgid ""
1915
- #~ "Determine which fields will display and which are required. This "
1916
- #~ "includes all fields, both native WP fields and WP-Members custom fields."
1917
- #~ msgstr ""
1918
- #~ "Määrittele mitkä kentät näytetään ja mitkä ovat pakollisia. Tähän "
1919
- #~ "kuuluvat kaikki kentät, sekä WP:n alkuperäiset että WP-Members lisäosan "
1920
- #~ "omat."
1921
-
1922
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
1923
- #~ msgstr "(Huomaa: sähköposti on aina pakollinen, eikä tätä voi muuttaa.)"
1924
-
1925
- #~ msgid "Add/Delete"
1926
- #~ msgstr "Lisää/Poista"
1927
-
1928
- #~ msgid "Checked?"
1929
- #~ msgstr "Rastitettu?"
1930
-
1931
- #~ msgid "Delete"
1932
- #~ msgstr "Poista"
1933
-
1934
- #~ msgid "(Email cannot be removed)"
1935
- #~ msgstr "(sähköpostiosoitetta ei voi poistaa)"
1936
-
1937
- #~ msgid "Update Fields"
1938
- #~ msgstr "Päivitä kentät"
1939
-
1940
- #~ msgid "Please indicate that you agree to the %s TOS %s"
1941
- #~ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
1942
-
1943
- #, fuzzy
1944
- #~ msgid ""
1945
- #~ "WP access restriction and user registration. For more information on "
1946
- #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1947
- #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1948
- #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1949
- #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1950
- #~ msgstr ""
1951
- #~ "WP käytön rajaaminen ja käyttäjien rekisteröinti. Lisätiedot ja "
1952
- #~ "käyttöohjeet (englanninkielellä) <a href=\"http://butlerblog.com/wp-"
1953
- #~ "members\"> http://butlerblog.com/wp-members </ a>. Toimiva demo "
1954
- #~ "osoitteessa <a href=\"http://butlerblog.com/wpmembers\"> http://"
1955
- #~ "butlerblog.com/wpmembers </ a>. WP-Members (tm) on tavaramerkki, jonka "
1956
- #~ "omistaa butlerblog.com."
1957
-
1958
- #~ msgid "Page Restriction"
1959
- #~ msgstr "Uuden käyttäjän rekisteröinti"
1960
-
1961
- #~ msgid "Block Posts by default"
1962
- #~ msgstr "Estä artikkeleiden näkyvyys oletusarvoisesti"
1963
-
1964
- #~ msgid ""
1965
- #~ "Note: Posts can still be individually blocked or unblocked at the article "
1966
- #~ "level"
1967
- #~ msgstr "Huomaa: artikkeleiden näkyvyys voidaan sallia tai estää yksitellen"
1968
-
1969
- #~ msgid "Block Pages by default"
1970
- #~ msgstr "Estä sivujen näkyvyys oletusarvoisesti"
1971
-
1972
- #~ msgid ""
1973
- #~ "Note: Pages can still be individually blocked or unblocked at the article "
1974
- #~ "level"
1975
- #~ msgstr "Huomaa: sivujen näkyvyys voidaan sallia tai estää yksitellen"
1976
-
1977
- #~ msgid "Show excerpts"
1978
- #~ msgstr "Näytä yhteenvedot"
1979
-
1980
- #~ msgid ""
1981
- #~ "Shows excerpted content above the login/registration on both Posts and "
1982
- #~ "Pages"
1983
- #~ msgstr ""
1984
- #~ "Näyttää yhteenvedon sisällöstä sisäänkirjautumisen ja rekisteröitymisen "
1985
- #~ "yläpuolella sekä artikkeleissa ja sivuissa."
1986
-
1987
- #~ msgid "Turns on CAPTCHA for registration"
1988
- #~ msgstr "CAPTCHA käytössä rekisteröinnissä"
1989
-
1990
- #~ msgid "Optional"
1991
- #~ msgstr "Valinnainen"
1992
-
1993
- #~ msgid "Automatically creates an excerpt"
1994
- #~ msgstr "Näytä yhteenvedot"
1995
-
1996
- #~ msgid "AIM"
1997
- #~ msgstr "AIM"
1998
-
1999
- #~ msgid "Yahoo IM"
2000
- #~ msgstr "Yahoo IM"
2001
-
2002
- #~ msgid "Jabber/Google Talk"
2003
- #~ msgstr "Jabber/Google Talk"
2004
-
2005
- #~ msgid ""
2006
- #~ "Password successfully changed!<br /><br />You will need to re-login with "
2007
- #~ "your new password."
2008
- #~ msgstr ""
2009
- #~ "Salasana on vaihdettu!<br /><br />Sinun on kirjauduttava uudestaan sisään "
2010
- #~ "uudella salasanallasi."
2011
-
2012
- #~ msgid ""
2013
- #~ "Password successfully reset!<br /><br />An email containing a new "
2014
- #~ "password has been sent to the email address on file for your account. You "
2015
- #~ "may change this random password then re-login with your new password."
2016
- #~ msgstr ""
2017
- #~ "Salasana onnistuneesti vaihdettu!<br /><br />Sinulle on lähetetty "
2018
- #~ "sähköposti, joka sisältää uuden satunnaisesti tuotetun salasanan "
2019
- #~ "tilillesi. Voit vaihtaa salasanan haluamaasi kuin kirjaudut seuraavan "
2020
- #~ "kerran sisään."
2021
-
2022
- #~ msgid "Custom"
2023
- #~ msgstr "Mukautettu"
2024
-
2025
- #, fuzzy
2026
- #~ msgid "edit"
2027
- #~ msgstr "Täytä omat tietosi"
2028
-
2029
- #~ msgid "Use reCAPTCHA"
2030
- #~ msgstr "Ota käyttöön reCAPTCHA"
2031
-
2032
- #~ msgid "New Password"
2033
- #~ msgstr "Uusi salasana"
2034
-
2035
- #~ msgid "Repeat Password"
2036
- #~ msgstr "Toista salasana"
2037
-
2038
- #~ msgid "Remember me"
2039
- #~ msgstr "Muista minut"
2040
-
2041
- #~ msgid "Turn off registration"
2042
- #~ msgstr "Estä rekisteröinnit"
2043
-
2044
- #~ msgid "Turns off the registration process, only allows login"
2045
- #~ msgstr ""
2046
- #~ "Uusien käyttäjien rekisteröinti estetty, vain sisäänkirjautuminen sallittu"
2047
-
2048
- #~ msgid "Legacy forms"
2049
- #~ msgstr "Aiemmat lomakkeet"
2050
-
2051
- #~ msgid ""
2052
- #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2053
- #~ "forms)"
2054
- #~ msgstr ""
2055
- #~ "Käytä versiota 2.5.1 edeltäviä taulukkolomakkeita (älä valitse tätä, jos "
2056
- #~ "haluat CSS lomakkeet ilman taulukoita)"
2057
-
2058
- #~ msgid "Members Area URL:"
2059
- #~ msgstr "Jäsensivun URL:"
2060
-
2061
- #~ msgid "Add"
2062
- #~ msgstr "Lisää"
2063
-
2064
- #~ msgid "WP-Members expiration periods were updated"
2065
- #~ msgstr "WP-Members vanhentumisajat on päivitetty"
2066
-
2067
- #~ msgid ""
2068
- #~ "Settings were saved, but you have required fields that are not set to "
2069
- #~ "display!"
2070
- #~ msgstr ""
2071
- #~ "Asetukset päivitettiin, mutta pakollisia kenttiä eli ole asetettu "
2072
- #~ "näkymään!"
2073
-
2074
- #, fuzzy
2075
- #~ msgid ""
2076
- #~ "Note: This will not cause an error for the end user, as only displayed "
2077
- #~ "fields are validated. However, you should still check that your "
2078
- #~ "displayed and required fields match up. Mismatched fields are "
2079
- #~ "highlighted below."
2080
- #~ msgstr ""
2081
- #~ "HUOMAA: Tämä ei aiheuta virhettäloppukäyttäjän näkyviin, koska vain "
2082
- #~ "näkyvät kentät validoidaan. On kuitenkin suositeltavaa että tarkistat "
2083
- #~ "että \r\n"
2084
- #~ "\t\t\t\tnäytetyt ja vaaditut kentät täsmäävät. Kentät jotka eivät täsmää "
2085
- #~ "on korostettu alla."
2086
-
2087
- #~ msgid "If you find this plugin useful, please consider making a donation"
2088
- #~ msgstr ""
2089
- #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan lahjoitusta "
2090
- #~ "tekijälle"
2091
-
2092
- #~ msgid "Subscriptions"
2093
- #~ msgstr "Tilaukset"
2094
-
2095
- #~ msgid "PayPal Settings"
2096
- #~ msgstr "Paypal asetukset"
2097
-
2098
- #~ msgid "If you find this plugin useful, please consider a %s donation %s"
2099
- #~ msgstr ""
2100
- #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan tekijälle %s "
2101
- #~ "lahjoitusta %s"
2102
-
2103
- #~ msgid "%d users were activated."
2104
- #~ msgstr "%d käyttäjää aktivoitu."
2105
-
2106
- #~ msgid ""
2107
- #~ "Users ready to export, %s click here %s to generate and download a CSV."
2108
- #~ msgstr ""
2109
- #~ "Käyttäjät valmiina vientiin, %s klikkaa tästä %s luodaksesi ja "
2110
- #~ "ladataksesi CSV tiedoston."
2111
-
2112
- #~ msgid "WP-Members Users"
2113
- #~ msgstr "WP-Members Käyttäjät"
2114
-
2115
- #~ msgid "No users matched your criteria"
2116
- #~ msgstr "Yksikään käyttäjä ei vastannut ehtojasi"
2117
-
2118
- #~ msgid "Bulk Actions"
2119
- #~ msgstr "Massatoiminnot"
2120
-
2121
- #~ msgid "Apply"
2122
- #~ msgstr "Käytä"
2123
-
2124
- #, fuzzy
2125
- #~ msgid "Indicates a required field"
2126
- #~ msgstr "Käyttäjätunnus on pakollinen tieto."
2127
-
2128
- #~ msgid "Login"
2129
- #~ msgstr "Kirjaudu sisään"
2130
-
2131
- #~ msgid "Clear Form"
2132
- #~ msgstr "Tyhjennä lomake"
2133
-
2134
- #~ msgid "Submit"
2135
- #~ msgstr "Valmis"
2136
-
2137
- #~ msgid "Cheatin&#8217; uh?"
2138
- #~ msgstr "Kusetusta&#8217; vai?"
2139
-
2140
- #~ msgid "there was an error and no users were exported"
2141
- #~ msgstr "tapahtui virhe, eikä yhtään käyttäjää voitu viedä"
2142
-
2143
- #~ msgid "You are not currently logged in."
2144
- #~ msgstr "Et ole kirjautuneena sisään"
2145
-
2146
- #~ msgid "login"
2147
- #~ msgstr "Kirjaudu"
2148
-
2149
- #~ msgid "You may change your password here: %s"
2150
- #~ msgstr "Voit vaihtaa salasanasi täällä: %s"
2151
-
2152
- #~ msgid "Your registration info for %s"
2153
- #~ msgstr "Rekisteröintitiedot käyttäjälle %s"
2154
-
2155
- #~ msgid "Thank you for registering for %s"
2156
- #~ msgstr "Kiitos kun rekisteröidyit %s"
2157
-
2158
- #~ msgid "Your registration information is below."
2159
- #~ msgstr "Rekisteröintitietosi ovat seuraavat."
2160
-
2161
- #~ msgid "You may wish to retain a copy for your records."
2162
- #~ msgstr ""
2163
- #~ "On suositeltavaa että säilytät nämä tiedot itselläsi varmassa paikassa."
2164
-
2165
- #~ msgid "username: %s"
2166
- #~ msgstr "Käyttäjätunnus: %s"
2167
-
2168
- #~ msgid "password: %s"
2169
- #~ msgstr "Salasana: %s"
2170
-
2171
- #~ msgid "You may login here:"
2172
- #~ msgstr "Voit kirjautua sisään täältä:"
2173
-
2174
- #~ msgid ""
2175
- #~ "Thank you for registering for %s. Your registration has been received and "
2176
- #~ "is pending approval."
2177
- #~ msgstr ""
2178
- #~ "Kiitos kun rekisteröidyit sivustolle %s. Rekisteröintitiedot on "
2179
- #~ "vastaanotettu ja odottavat pääkäyttäjän hyväksyntää."
2180
-
2181
- #~ msgid "You will receive login instructions upon approval of your account"
2182
- #~ msgstr ""
2183
- #~ "Kun tilisi ja käyttäjätunnuksesi on hyväksytty, saat sähköpostilla "
2184
- #~ "yksityiskohtaiset tiedot sisäänkirjautumista varten."
2185
-
2186
- #~ msgid "Your registration for %s has been approved."
2187
- #~ msgstr "Rekisteröitymisesti sivulle %s on nyt hyväksytty."
2188
-
2189
- #~ msgid "You may login at: %s"
2190
- #~ msgstr "Voit kirjautua sisään täällä: %s"
2191
-
2192
- #~ msgid "You originally registered at:"
2193
- #~ msgstr "Olet alunperin rekisteröitynyt: "
2194
-
2195
- #~ msgid "Password reset for %s"
2196
- #~ msgstr "Salasanan nollaus tunnukselle %s"
2197
-
2198
- #~ msgid "Your password for %s has been reset"
2199
- #~ msgstr "Salasanasi tunnuksella %s on nollattu"
2200
-
2201
- #~ msgid ""
2202
- #~ "Your new password is included below. You may wish to retain a copy for "
2203
- #~ "your records."
2204
- #~ msgstr "Uusi salasanasi näkyy alla. Säilytä tästä kopio itselläsi."
2205
-
2206
- #~ msgid "This is an automated message from %s"
2207
- #~ msgstr "Tämä viesti on lähetetty automaattisesti osoitteesta %s"
2208
-
2209
- #~ msgid "Please do not reply to this address"
2210
- #~ msgstr "Älä vastaa tähän osoitteeseen"
2211
-
2212
- #~ msgid "New user registration for %s"
2213
- #~ msgstr "Uuden käyttäjän rekisteröinti nimellä %s"
2214
-
2215
- #~ msgid "The following user registered for %s"
2216
- #~ msgstr "Seuraava käyttäjä on rekisteröitynyt nimellä %s"
2217
-
2218
- #~ msgid "and is pending admin approval"
2219
- #~ msgstr "ja odottaa pääkäyttäjän hyväksyntää"
2220
-
2221
- #~ msgid ""
2222
- #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
2223
- #~ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
2224
-
2225
- #~ msgid "http://butlerblog.com/wp-members/"
2226
- #~ msgstr "http://butlerblog.com/wp-members/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2010 WP-Members
2
+ # This file is distributed under the same license as the WP-Members package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Members 3.2.6\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
8
+ "PO-Revision-Date: 2020-05-22 17:53-0400\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: Suomentaja <ianleiman@gmail.com>\n"
11
+ "Language: fi_FI\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.3.1\n"
16
+
17
+ #: includes/admin/class-wp-members-admin-api.php:292
18
+ msgid "Custom email"
19
+ msgstr ""
20
+
21
+ #: includes/admin/class-wp-members-admin-api.php:293
22
+ #: includes/admin/class-wp-members-admin-api.php:295
23
+ msgid "Subject"
24
+ msgstr ""
25
+
26
+ #: includes/admin/class-wp-members-admin-api.php:296
27
+ msgid "Body"
28
+ msgstr ""
29
+
30
+ #: includes/admin/class-wp-members-admin-api.php:298
31
+ msgid "Your custom email message content."
32
+ msgstr ""
33
+
34
+ #: includes/admin/class-wp-members-admin-api.php:376
35
+ msgid "Options"
36
+ msgstr "Asetukset"
37
+
38
+ #: includes/admin/class-wp-members-admin-api.php:377
39
+ msgid "Fields"
40
+ msgstr "Kentät"
41
+
42
+ #: includes/admin/class-wp-members-admin-api.php:378
43
+ msgid "Dialogs"
44
+ msgstr "Dialogit"
45
+
46
+ #: includes/admin/class-wp-members-admin-api.php:379
47
+ msgid "Emails"
48
+ msgstr ""
49
+
50
+ #: includes/admin/class-wp-members-admin-api.php:395
51
+ msgid "New Registration"
52
+ msgstr "Uusi rekisteröinti"
53
+
54
+ #: includes/admin/class-wp-members-admin-api.php:404
55
+ msgid "Registration is Moderated"
56
+ msgstr ""
57
+
58
+ #: includes/admin/class-wp-members-admin-api.php:410
59
+ msgid "Registration is Moderated, User is Approved"
60
+ msgstr ""
61
+
62
+ #: includes/admin/class-wp-members-admin-api.php:418
63
+ msgid "Password Reset"
64
+ msgstr "Salasanan nollaus"
65
+
66
+ #: includes/admin/class-wp-members-admin-api.php:425
67
+ msgid "Retrieve Username"
68
+ msgstr ""
69
+
70
+ #: includes/admin/class-wp-members-admin-api.php:433
71
+ msgid "Admin Notification"
72
+ msgstr "Ilmoita pääkäyttäjälle"
73
+
74
+ #: includes/admin/class-wp-members-admin-api.php:459
75
+ msgid "Restricted post (or page), displays above the login/registration form"
76
+ msgstr ""
77
+ "Suojattu sisältö (artikkeli tai sivu), näkyy sisäänkirjautumis ja "
78
+ "rekisteröitymislomakkeen yläpuolella."
79
+
80
+ #: includes/admin/class-wp-members-admin-api.php:460
81
+ msgid "Username is taken"
82
+ msgstr "Käyttäjätunnus on jo varattu"
83
+
84
+ #: includes/admin/class-wp-members-admin-api.php:461
85
+ msgid "Email is registered"
86
+ msgstr "Sähköpostiosoite on jo käytössä"
87
+
88
+ #: includes/admin/class-wp-members-admin-api.php:462
89
+ msgid "Registration completed"
90
+ msgstr "Rekisteröinti on valmis"
91
+
92
+ #: includes/admin/class-wp-members-admin-api.php:463
93
+ msgid "User update"
94
+ msgstr "Käyttäjän päivitys"
95
+
96
+ #: includes/admin/class-wp-members-admin-api.php:464
97
+ msgid "Passwords did not match"
98
+ msgstr "Salasanat eivät täsmää"
99
+
100
+ #: includes/admin/class-wp-members-admin-api.php:465
101
+ msgid "Password changes"
102
+ msgstr "Salasana vaihtuu"
103
+
104
+ #: includes/admin/class-wp-members-admin-api.php:466
105
+ msgid "Username or email do not exist when trying to reset forgotten password"
106
+ msgstr ""
107
+ "Unohtunutta salasanaa yritettiin nollata väärällä käyttäjätunnuksella tai "
108
+ "sähköpostilla"
109
+
110
+ #: includes/admin/class-wp-members-admin-api.php:467
111
+ msgid "Password reset"
112
+ msgstr "Salasanan nollaus"
113
+
114
+ #: includes/admin/class-wp-members-admin-api.php:623
115
+ msgid "Settings"
116
+ msgstr "Asetukset"
117
+
118
+ #: includes/admin/class-wp-members-admin-posts.php:30
119
+ #: includes/admin/class-wp-members-admin-posts.php:33
120
+ msgid "Unblock"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-members-admin-posts.php:31
124
+ #: includes/admin/class-wp-members-admin-posts.php:34
125
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
126
+ msgid "Block"
127
+ msgstr ""
128
+
129
+ #: includes/admin/class-wp-members-admin-posts.php:32
130
+ #: includes/admin/class-wp-members-admin-posts.php:35
131
+ msgid "Hide"
132
+ msgstr ""
133
+
134
+ #: includes/admin/class-wp-members-admin-posts.php:125
135
+ #, php-format
136
+ msgid "%s blocked"
137
+ msgstr ""
138
+
139
+ #: includes/admin/class-wp-members-admin-posts.php:125
140
+ #, php-format
141
+ msgid "%s unblocked"
142
+ msgstr ""
143
+
144
+ #: includes/admin/class-wp-members-admin-posts.php:165
145
+ #, php-format
146
+ msgid "%s Restriction"
147
+ msgstr ""
148
+
149
+ #: includes/admin/class-wp-members-admin-posts.php:195
150
+ msgid "Unblocked"
151
+ msgstr ""
152
+
153
+ #: includes/admin/class-wp-members-admin-posts.php:196
154
+ msgid "Blocked"
155
+ msgstr ""
156
+
157
+ #: includes/admin/class-wp-members-admin-posts.php:197
158
+ msgid "Hidden"
159
+ msgstr ""
160
+
161
+ #: includes/admin/class-wp-members-admin-posts.php:203
162
+ msgid "Status:"
163
+ msgstr ""
164
+
165
+ #: includes/admin/class-wp-members-admin-posts.php:203
166
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
167
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
168
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
169
+ #, fuzzy
170
+ msgid "Edit"
171
+ msgstr "Täytä omat tietosi"
172
+
173
+ #: includes/admin/class-wp-members-admin-posts.php:218
174
+ msgid "Ok"
175
+ msgstr ""
176
+
177
+ #: includes/admin/class-wp-members-admin-posts.php:219
178
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
179
+ msgid "Cancel"
180
+ msgstr ""
181
+
182
+ #: includes/admin/class-wp-members-admin-posts.php:305
183
+ #: includes/admin/class-wp-members-products-admin.php:629
184
+ msgid "Status"
185
+ msgstr ""
186
+
187
+ #: includes/admin/class-wp-members-admin-users.php:28
188
+ #: includes/admin/class-wp-members-admin-users.php:33
189
+ #: includes/admin/class-wp-members-admin-users.php:59
190
+ msgid "Activate"
191
+ msgstr "Aktivoi"
192
+
193
+ #: includes/admin/class-wp-members-admin-users.php:29
194
+ #: includes/admin/class-wp-members-admin-users.php:34
195
+ #: includes/admin/class-wp-members-admin-users.php:62
196
+ msgid "Deactivate"
197
+ msgstr ""
198
+
199
+ #: includes/admin/class-wp-members-admin-users.php:31
200
+ #: includes/admin/class-wp-members-admin-users.php:36
201
+ msgid "Export"
202
+ msgstr "Vie"
203
+
204
+ #: includes/admin/class-wp-members-admin-users.php:37
205
+ #: includes/admin/class-wp-members-admin-users.php:88
206
+ msgid "Export All Users"
207
+ msgstr "viedä kaikki käyttäjät"
208
+
209
+ #: includes/admin/class-wp-members-admin-users.php:126
210
+ #, php-format
211
+ msgid "%s users activated"
212
+ msgstr ""
213
+
214
+ #: includes/admin/class-wp-members-admin-users.php:126
215
+ #, php-format
216
+ msgid "%s users deactivated"
217
+ msgstr ""
218
+
219
+ #: includes/admin/class-wp-members-admin-users.php:129
220
+ msgid "No users selected"
221
+ msgstr ""
222
+
223
+ #: includes/admin/class-wp-members-admin-users.php:147
224
+ msgid "You cannot activate or deactivate yourself"
225
+ msgstr ""
226
+
227
+ #: includes/admin/class-wp-members-admin-users.php:152
228
+ #, php-format
229
+ msgid "%s activated"
230
+ msgstr ""
231
+
232
+ #: includes/admin/class-wp-members-admin-users.php:157
233
+ #, php-format
234
+ msgid "%s deactivated"
235
+ msgstr ""
236
+
237
+ #: includes/admin/class-wp-members-admin-users.php:161
238
+ msgid "That user is already active"
239
+ msgstr ""
240
+
241
+ #: includes/admin/class-wp-members-admin-users.php:288
242
+ msgid "Pending"
243
+ msgstr ""
244
+
245
+ #: includes/admin/class-wp-members-admin-users.php:289
246
+ msgid "Trial"
247
+ msgstr ""
248
+
249
+ #: includes/admin/class-wp-members-admin-users.php:290
250
+ #: includes/admin/class-wp-members-export.php:74
251
+ msgid "Subscription"
252
+ msgstr "Tilaus"
253
+
254
+ #: includes/admin/class-wp-members-admin-users.php:291
255
+ msgid "Expired"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-members-admin-users.php:294
259
+ msgid "Activated"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-members-admin-users.php:295
263
+ msgid "Pending Activation"
264
+ msgstr ""
265
+
266
+ #: includes/admin/class-wp-members-admin-users.php:296
267
+ msgid "Deactivated"
268
+ msgstr ""
269
+
270
+ #: includes/admin/class-wp-members-admin-users.php:298
271
+ msgid "Not Exported"
272
+ msgstr ""
273
+
274
+ #: includes/admin/class-wp-members-admin-users.php:387
275
+ #: includes/admin/class-wp-members-export.php:160
276
+ msgid "No"
277
+ msgstr "Ei"
278
+
279
+ #: includes/admin/class-wp-members-export.php:64
280
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
281
+ msgid "User ID"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-members-export.php:65
285
+ #: includes/class-wp-members.php:1523 includes/class-wp-members.php:1546
286
+ msgid "Username"
287
+ msgstr "Käyttäjätunnus"
288
+
289
+ #: includes/admin/class-wp-members-export.php:71
290
+ msgid "Activated?"
291
+ msgstr "Aktivoitu?"
292
+
293
+ #: includes/admin/class-wp-members-export.php:75
294
+ #: includes/admin/class-wp-members-products-admin.php:64
295
+ #: includes/admin/class-wp-members-products-admin.php:632
296
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
297
+ msgid "Expires"
298
+ msgstr "Vanhenee"
299
+
300
+ #: includes/admin/class-wp-members-export.php:77
301
+ msgid "Registered"
302
+ msgstr "Rekisteröity"
303
+
304
+ #: includes/admin/class-wp-members-export.php:78
305
+ msgid "IP"
306
+ msgstr "IP"
307
+
308
+ #: includes/admin/class-wp-members-export.php:160
309
+ #: includes/admin/class-wp-members-products-admin.php:104
310
+ msgid "Yes"
311
+ msgstr "Kyllä"
312
+
313
+ #: includes/admin/class-wp-members-products-admin.php:62
314
+ msgid "Slug"
315
+ msgstr ""
316
+
317
+ #: includes/admin/class-wp-members-products-admin.php:63
318
+ msgid "Role"
319
+ msgstr ""
320
+
321
+ #: includes/admin/class-wp-members-products-admin.php:66
322
+ msgid "Default"
323
+ msgstr ""
324
+
325
+ #: includes/admin/class-wp-members-products-admin.php:68
326
+ msgid "Last updated"
327
+ msgstr ""
328
+
329
+ #: includes/admin/class-wp-members-products-admin.php:92
330
+ msgid "slug:"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-members-products-admin.php:95
334
+ msgid "No role required"
335
+ msgstr ""
336
+
337
+ #: includes/admin/class-wp-members-products-admin.php:100
338
+ msgid "Does not expire"
339
+ msgstr ""
340
+
341
+ #: includes/admin/class-wp-members-products-admin.php:140
342
+ msgid "Membership Product Details"
343
+ msgstr ""
344
+
345
+ #: includes/admin/class-wp-members-products-admin.php:148
346
+ msgid "Membership Product Message (optional)"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-members-products-admin.php:165
350
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
351
+ msgid "Posts"
352
+ msgstr ""
353
+
354
+ #: includes/admin/class-wp-members-products-admin.php:166
355
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
356
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
357
+ #, fuzzy
358
+ msgid "Pages"
359
+ msgstr "Estä sivujen näkyvyys oletusarvoisesti"
360
+
361
+ #: includes/admin/class-wp-members-products-admin.php:193
362
+ #: includes/admin/class-wp-members-products-admin.php:235
363
+ #: includes/admin/class-wp-members-products-admin.php:280
364
+ msgid "Period"
365
+ msgstr ""
366
+
367
+ #: includes/admin/class-wp-members-products-admin.php:193
368
+ msgid "Day"
369
+ msgstr ""
370
+
371
+ #: includes/admin/class-wp-members-products-admin.php:193
372
+ msgid "Week"
373
+ msgstr ""
374
+
375
+ #: includes/admin/class-wp-members-products-admin.php:193
376
+ msgid "Month"
377
+ msgstr ""
378
+
379
+ #: includes/admin/class-wp-members-products-admin.php:193
380
+ msgid "Year"
381
+ msgstr ""
382
+
383
+ #: includes/admin/class-wp-members-products-admin.php:199
384
+ msgid "Name (slug)"
385
+ msgstr ""
386
+
387
+ #: includes/admin/class-wp-members-products-admin.php:201
388
+ msgid "Optional Defaults"
389
+ msgstr ""
390
+
391
+ #: includes/admin/class-wp-members-products-admin.php:204
392
+ msgid "Assign as default at registration? (optional)"
393
+ msgstr ""
394
+
395
+ #: includes/admin/class-wp-members-products-admin.php:212
396
+ #, php-format
397
+ msgid "Pre-selected by default for new %s"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-members-products-admin.php:218
401
+ msgid "Optional Properties"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-members-products-admin.php:221
405
+ msgid "Role Required? (optional)"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-members-products-admin.php:224
409
+ msgid "No Role"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-members-products-admin.php:230
413
+ msgid "Expires (optional)"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-members-products-admin.php:232
417
+ #: includes/admin/class-wp-members-products-admin.php:234
418
+ #: includes/admin/class-wp-members-products-admin.php:277
419
+ #: includes/admin/class-wp-members-products-admin.php:279
420
+ msgid "Number"
421
+ msgstr ""
422
+
423
+ #: includes/admin/class-wp-members-products-admin.php:240
424
+ msgid "Use \"no gap\" renewal"
425
+ msgstr ""
426
+
427
+ #: includes/admin/class-wp-members-products-admin.php:244
428
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
429
+ msgstr ""
430
+
431
+ #: includes/admin/class-wp-members-products-admin.php:261
432
+ msgid "Period Start (dd-mm)"
433
+ msgstr ""
434
+
435
+ #: includes/admin/class-wp-members-products-admin.php:262
436
+ msgid "Period End (dd-mm)"
437
+ msgstr ""
438
+
439
+ #: includes/admin/class-wp-members-products-admin.php:275
440
+ msgid "Fixed period grace period"
441
+ msgstr ""
442
+
443
+ #: includes/admin/class-wp-members-products-admin.php:284
444
+ msgid ""
445
+ "Grace period is the point at which expiration date is for following time "
446
+ "period. For example, if user who register August 1st would be part of the "
447
+ "following year's Sept 1 - Aug 31 membership, set this at 1 Month. Leave "
448
+ "blank for no grace period."
449
+ msgstr ""
450
+
451
+ #: includes/admin/class-wp-members-products-admin.php:333
452
+ msgid ""
453
+ "Restricted Message (displays when a user does not have access to a "
454
+ "membership)"
455
+ msgstr ""
456
+
457
+ #: includes/admin/class-wp-members-products-admin.php:435
458
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
459
+ #: includes/class-wp-members-forms.php:1092
460
+ #: includes/class-wp-members-user-profile.php:112
461
+ msgid "None"
462
+ msgstr ""
463
+
464
+ #: includes/admin/class-wp-members-products-admin.php:450
465
+ msgid "Limit access to:"
466
+ msgstr ""
467
+
468
+ #: includes/admin/class-wp-members-products-admin.php:520
469
+ msgid "Required Membership"
470
+ msgstr ""
471
+
472
+ #: includes/admin/class-wp-members-products-admin.php:559
473
+ #: includes/admin/class-wp-members-products-admin.php:630
474
+ msgid "Membership"
475
+ msgstr ""
476
+
477
+ #: includes/admin/class-wp-members-products-admin.php:599
478
+ #: includes/class-wp-members-products.php:308
479
+ msgid "Memberships"
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-wp-members-products-admin.php:626
483
+ msgid "Product Access"
484
+ msgstr ""
485
+
486
+ #: includes/admin/class-wp-members-products-admin.php:631
487
+ msgid "Enabled?"
488
+ msgstr ""
489
+
490
+ #: includes/admin/class-wp-members-products-admin.php:641
491
+ msgid "Enable"
492
+ msgstr ""
493
+
494
+ #: includes/admin/class-wp-members-products-admin.php:642
495
+ msgid "Disable"
496
+ msgstr ""
497
+
498
+ #: includes/admin/class-wp-members-products-admin.php:647
499
+ msgid "Expiration date (optional)"
500
+ msgstr ""
501
+
502
+ #: includes/admin/dialogs.php:117
503
+ msgid ""
504
+ "Your WP settings allow anyone to register - this is not the recommended "
505
+ "setting."
506
+ msgstr ""
507
+ "WP asetuksesi sallivat kenen tahansa rekisteröityä. Tämä ei ole suositeltava "
508
+ "asetus."
509
+
510
+ #: includes/admin/dialogs.php:118
511
+ #, php-format
512
+ msgid ""
513
+ "You can %s change this here %s making sure the box next to \"Anyone can "
514
+ "register\" is unchecked."
515
+ msgstr ""
516
+ "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
517
+
518
+ #: includes/admin/dialogs.php:119
519
+ msgid ""
520
+ "This setting allows a link on the /wp-login.php page to register using the "
521
+ "WP native registration process thus circumventing any registration you are "
522
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
523
+ "but most users should uncheck this option. If you do not change this "
524
+ "setting, you can choose to ignore these warning messages under WP-Members "
525
+ "Settings."
526
+ msgstr ""
527
+ "Tämä asetus sallii /wp-login.php sivulla olevan linkin käyttää Wordpressin "
528
+ "omaa rekisteröintiprosessia, joka näin mahdollistaa WP-Members "
529
+ "rekisteröintiprosessin kiertämisen. Yleensä tätä ei suositella, mutta jos et "
530
+ "muuta tätä asetusta, voit valita varoitusten hylkäämisen WP-Members "
531
+ "asetuspaneelista."
532
+
533
+ #: includes/admin/dialogs.php:123
534
+ msgid ""
535
+ "Your WP settings allow anyone to comment - this is not the recommended "
536
+ "setting."
537
+ msgstr ""
538
+ "WP asetuksesi sallivat kenen tahansa kommentoida. Tämä ei ole suositeltava "
539
+ "asetus."
540
+
541
+ #: includes/admin/dialogs.php:124
542
+ #, php-format
543
+ msgid ""
544
+ "You can %s change this here %s by checking the box next to \"Users must be "
545
+ "registered and logged in to comment.\""
546
+ msgstr ""
547
+ "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
548
+
549
+ #: includes/admin/dialogs.php:125
550
+ msgid ""
551
+ "This setting allows any users to comment, whether or not they are "
552
+ "registered. Depending on how you are using WP-Members will determine whether "
553
+ "you should change this setting or not. If you do not change this setting, "
554
+ "you can choose to ignore these warning messages under WP-Members Settings."
555
+ msgstr ""
556
+ "WP asetuksesi sallivat kenen tahansa kommentoida, riippumatta siitä olivatko "
557
+ "he rekisteröityneitä tai ei. Riippuen käyttötavastasi tämä saattaa olla "
558
+ "järkevää tai sitten ei. Jos et muuta tätä asetusta, voit valita varoitusten "
559
+ "hylkäämisen WP-Members asetuspaneelista."
560
+
561
+ #: includes/admin/dialogs.php:129
562
+ msgid ""
563
+ "Your WP settings allow full text rss feeds - this is not the recommended "
564
+ "setting."
565
+ msgstr ""
566
+ "WP asetukset sallivat RSS syötteet täydellä tekstillä. Tätä ei suositella."
567
+
568
+ #: includes/admin/dialogs.php:130
569
+ #, php-format
570
+ msgid ""
571
+ "You can %s change this here %s by changing \"For each article in a feed, show"
572
+ "\" to \"Summary.\""
573
+ msgstr ""
574
+
575
+ #: includes/admin/dialogs.php:131
576
+ msgid ""
577
+ "Leaving this set to full text allows anyone to read your protected content "
578
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
579
+ "only show summary text."
580
+ msgstr ""
581
+ "Jos jätät tämän asetuksen päälle, kuka tahansa voi lukea kaiken suojatun "
582
+ "sisällön RSS lukijalla. Voit sen sijaan valita että vain lyhyt yhteenveto "
583
+ "näytetään."
584
+
585
+ #: includes/admin/dialogs.php:135
586
+ msgid "You have set WP-Members to hold registrations for approval"
587
+ msgstr "WP-Members säilöö rekisteröinnit hyväksyntää varten"
588
+
589
+ #: includes/admin/dialogs.php:136
590
+ msgid ""
591
+ "but you have not changed the default message for \"Registration Completed\" "
592
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
593
+ "message to let users know they are pending approval."
594
+ msgstr ""
595
+
596
+ #: includes/admin/dialogs.php:140
597
+ msgid "You have turned on reCAPTCHA"
598
+ msgstr "Olet ottanut käyttöön reCAPTCHA:n"
599
+
600
+ #: includes/admin/dialogs.php:141
601
+ msgid ""
602
+ "but you have not entered API keys. You will need both a public and private "
603
+ "key. The CAPTCHA will not display unless a valid API key is included."
604
+ msgstr ""
605
+
606
+ #: includes/admin/dialogs.php:145
607
+ msgid "You have active settings that are not recommended."
608
+ msgstr ""
609
+
610
+ #: includes/admin/dialogs.php:146
611
+ msgid ""
612
+ "If you will not be changing these settings, you can turn off these warning "
613
+ "messages by checking the \"Ignore warning messages\" in the settings below."
614
+ msgstr ""
615
+
616
+ #: includes/admin/dialogs.php:174
617
+ msgid "Version:"
618
+ msgstr "Versio:"
619
+
620
+ #: includes/admin/dialogs.php:175
621
+ msgid "Quick Start Guide"
622
+ msgstr ""
623
+
624
+ #: includes/admin/dialogs.php:176
625
+ msgid "Online User Guide"
626
+ msgstr ""
627
+
628
+ #: includes/admin/dialogs.php:177
629
+ msgid "FAQs"
630
+ msgstr ""
631
+
632
+ #: includes/admin/dialogs.php:184
633
+ msgid "Thank you for using WP-Members"
634
+ msgstr "Kiitos kun käytät WP-Members lisäosaa!"
635
+
636
+ #: includes/admin/dialogs.php:185
637
+ msgid "A plugin developed by"
638
+ msgstr ""
639
+
640
+ #: includes/admin/dialogs.php:186
641
+ msgid "Follow"
642
+ msgstr "Seuraa"
643
+
644
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
645
+ msgid "Latest from RocketGeek"
646
+ msgstr ""
647
+
648
+ #: includes/admin/dialogs.php:224
649
+ msgid "Like WP-Members?"
650
+ msgstr ""
651
+
652
+ #: includes/admin/dialogs.php:225
653
+ #, php-format
654
+ msgid ""
655
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
656
+ "%s rating. Thanks!!"
657
+ msgstr ""
658
+
659
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
660
+ msgid "Latest from ButlerBlog"
661
+ msgstr ""
662
+
663
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
664
+ #, php-format
665
+ msgid "See the %sUsers Guide on CAPTCHA%s."
666
+ msgstr ""
667
+
668
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
669
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
670
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
671
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
672
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
673
+ msgid "Need help?"
674
+ msgstr ""
675
+
676
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
677
+ msgid "Manage reCAPTCHA Options"
678
+ msgstr "Hallitse reCAPTCHA asetuksia"
679
+
680
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
681
+ msgid ""
682
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
683
+ "while blocking spam on your blog."
684
+ msgstr ""
685
+ "reCAPTCHA on ilmainen CAPTCHA sovellus, joka auttaa kirjojen digitoinnissa "
686
+ "samalla kun se estää roskapostitusten pääsyn blogiisi"
687
+
688
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
689
+ #, php-format
690
+ msgid ""
691
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
692
+ "that they are a human. This verifies that they are not a spambot while also "
693
+ "correcting the automatic scans of old books. So you get less spam, and the "
694
+ "world gets accurately digitized books. Everybody wins! For details, visit "
695
+ "the %s reCAPTCHA website%s"
696
+ msgstr ""
697
+ "reCAPTCHA pyytää kommentoijia kirjoittamaan kaksi sanaa, jotka on skannattu "
698
+ "kirjasta todistaakseen että kysessä on ihminen. Tällä varmistetaan että "
699
+ "roskapostitusohjelmat eivät pääse kommentoimaan ja samalla vanhojen kirjojen "
700
+ "skannauksia voidaan automatisoida. Lue enemmän %s reCAPTCHA kotisivulta %s"
701
+
702
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
703
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
704
+ msgid "reCAPTCHA Keys"
705
+ msgstr "reCAPTCHA avaimet"
706
+
707
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
708
+ #, php-format
709
+ msgid ""
710
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
711
+ "key. You can sign up for a %s free reCAPTCHA key%s"
712
+ msgstr ""
713
+ "reCAPTCHA vaatii API-avaimen, joka koostuu \"julkisesta\" ja \"yksityisestä"
714
+ "\" avaimesta. Voit tilata itsellesi ilmaisen %s reCAPTCHA avaimen %s"
715
+
716
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
717
+ msgid "Public Key"
718
+ msgstr "Julkinen avain"
719
+
720
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
721
+ msgid "Private Key"
722
+ msgstr "Yksityinen avain"
723
+
724
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
725
+ msgid "Choose Theme"
726
+ msgstr "Valitse teema"
727
+
728
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
729
+ msgid "Red"
730
+ msgstr "Punainen"
731
+
732
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
733
+ msgid "White"
734
+ msgstr "Valkoinen"
735
+
736
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
737
+ msgid "Black Glass"
738
+ msgstr "Musta lasi"
739
+
740
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
741
+ msgid "Clean"
742
+ msgstr "Puhdista"
743
+
744
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
745
+ #, php-format
746
+ msgid ""
747
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
748
+ "key. You can sign up for a %s free reCAPTCHA key%s"
749
+ msgstr ""
750
+
751
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
752
+ msgid "Site Key"
753
+ msgstr ""
754
+
755
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
756
+ msgid "Secret Key"
757
+ msgstr ""
758
+
759
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
760
+ msgid "Characters for image"
761
+ msgstr ""
762
+
763
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
764
+ msgid "Number of characters"
765
+ msgstr ""
766
+
767
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
768
+ msgid "Image dimensions"
769
+ msgstr ""
770
+
771
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
772
+ msgid "Width"
773
+ msgstr ""
774
+
775
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
776
+ msgid "Height"
777
+ msgstr ""
778
+
779
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
780
+ msgid "Font color of characters"
781
+ msgstr ""
782
+
783
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
784
+ msgid "Background color of image"
785
+ msgstr ""
786
+
787
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
788
+ msgid "Font size"
789
+ msgstr ""
790
+
791
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
792
+ msgid "Width between characters"
793
+ msgstr ""
794
+
795
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
796
+ msgid "Image type"
797
+ msgstr ""
798
+
799
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
800
+ msgid ""
801
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
802
+ "installed and activated."
803
+ msgstr ""
804
+
805
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
806
+ msgid "Update CAPTCHA Settings"
807
+ msgstr "Päivitä CAPTCHA asetukset"
808
+
809
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
810
+ msgid "CAPTCHA was updated for WP-Members"
811
+ msgstr "CAPTCHA on päivitetty WP-Members:iä varten"
812
+
813
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
814
+ msgid "Dialogs and Error Messages"
815
+ msgstr "Dialogit ja virheilmoitukset"
816
+
817
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
818
+ #, php-format
819
+ msgid ""
820
+ "You can customize the text for dialogs and error messages. Simple HTML is "
821
+ "allowed %s etc."
822
+ msgstr ""
823
+ "Voit mukauttaa dialogien ja virheilmoitusten tekstejä. Yksinkertainen HTML "
824
+ "on sallittua: %s jne."
825
+
826
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
827
+ msgid "Terms of Service (TOS)"
828
+ msgstr "Käyttöehdot"
829
+
830
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
831
+ msgid "Update Dialogs"
832
+ msgstr "Päivitä dialogit"
833
+
834
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
835
+ msgid "WP-Members dialogs were updated"
836
+ msgstr "WP-Members dialogit on päivitetty"
837
+
838
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
839
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
840
+ msgid "WP-Members Dropin settings were updated"
841
+ msgstr ""
842
+
843
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
844
+ msgid "Manage Dropins"
845
+ msgstr ""
846
+
847
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
848
+ msgid "Current dropin folder: "
849
+ msgstr ""
850
+
851
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
852
+ msgid ""
853
+ "You can change location of the dropin folder using the "
854
+ "<code>wpmem_dropin_folder</code> filter."
855
+ msgstr ""
856
+
857
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
858
+ msgid "Email Messages"
859
+ msgstr ""
860
+
861
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
862
+ msgid "You can customize the content of the emails sent by the plugin."
863
+ msgstr ""
864
+
865
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
866
+ msgid "A list of shortcodes is available here."
867
+ msgstr ""
868
+
869
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
870
+ msgid "Set a custom email address"
871
+ msgstr ""
872
+
873
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
874
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
875
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
876
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
877
+ msgid "(optional)"
878
+ msgstr "(valinnainen)"
879
+
880
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
881
+ msgid "Set a custom email name"
882
+ msgstr ""
883
+
884
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
885
+ msgid "Email Signature"
886
+ msgstr ""
887
+
888
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
889
+ msgid "Update Emails"
890
+ msgstr ""
891
+
892
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
893
+ msgid "WP-Members emails were updated"
894
+ msgstr "WP-Members sähköpostit on päivitetty"
895
+
896
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
897
+ #: includes/class-wp-members.php:1498
898
+ msgid "No fields selected for deletion"
899
+ msgstr ""
900
+
901
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
902
+ msgid "Are you sure you want to delete the following fields?"
903
+ msgstr ""
904
+
905
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
906
+ msgid "Fields deleted"
907
+ msgstr ""
908
+
909
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
910
+ msgid "Field Manager Documentation"
911
+ msgstr ""
912
+
913
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
914
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
915
+ #: includes/class-wp-members-forms.php:1626
916
+ #: includes/class-wp-members-forms.php:1803
917
+ #: includes/class-wp-members-user-profile.php:144
918
+ msgid "(required)"
919
+ msgstr "(rakollinen)"
920
+
921
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
922
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
923
+ msgid "Edit Field"
924
+ msgstr ""
925
+
926
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
927
+ msgid "Add a Field"
928
+ msgstr "Lisätä Kentän"
929
+
930
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
931
+ msgid "Field Label"
932
+ msgstr "Kentän otsikko"
933
+
934
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
935
+ msgid "The name of the field as it will be displayed to the user."
936
+ msgstr ""
937
+
938
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
939
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
940
+ msgid "Meta Key"
941
+ msgstr ""
942
+
943
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
944
+ msgid ""
945
+ "The database meta value for the field. It must be unique and contain no "
946
+ "spaces (underscores are ok)."
947
+ msgstr ""
948
+
949
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
950
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
951
+ msgid "Field Type"
952
+ msgstr "Kentän tyyppi"
953
+
954
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
955
+ msgid "text"
956
+ msgstr "teksti"
957
+
958
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
959
+ msgid "email"
960
+ msgstr ""
961
+
962
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
963
+ msgid "textarea"
964
+ msgstr "Tekstialue"
965
+
966
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
967
+ msgid "checkbox"
968
+ msgstr "rastitus"
969
+
970
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
971
+ msgid "multiple checkbox"
972
+ msgstr ""
973
+
974
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
975
+ msgid "select (dropdown)"
976
+ msgstr ""
977
+
978
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
979
+ msgid "multiple select"
980
+ msgstr ""
981
+
982
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
983
+ msgid "radio group"
984
+ msgstr ""
985
+
986
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
987
+ msgid "password"
988
+ msgstr "Salasana"
989
+
990
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
991
+ msgid "image"
992
+ msgstr ""
993
+
994
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
995
+ msgid "file"
996
+ msgstr ""
997
+
998
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
999
+ msgid "url"
1000
+ msgstr ""
1001
+
1002
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1003
+ msgid "number"
1004
+ msgstr ""
1005
+
1006
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1007
+ msgid "date"
1008
+ msgstr ""
1009
+
1010
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1011
+ msgid "hidden"
1012
+ msgstr ""
1013
+
1014
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1015
+ msgid "membership"
1016
+ msgstr ""
1017
+
1018
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1019
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1020
+ msgid "Display?"
1021
+ msgstr "Näkyvissä?"
1022
+
1023
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1024
+ msgid "This field is always displayed"
1025
+ msgstr ""
1026
+
1027
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1028
+ msgid "Required?"
1029
+ msgstr "Pakollinen?"
1030
+
1031
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1032
+ msgid "This field is always required"
1033
+ msgstr ""
1034
+
1035
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1036
+ msgid "Allow HTML?"
1037
+ msgstr ""
1038
+
1039
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1040
+ msgid "Placeholder"
1041
+ msgstr ""
1042
+
1043
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1044
+ msgid "Pattern"
1045
+ msgstr ""
1046
+
1047
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1048
+ msgid "Title"
1049
+ msgstr ""
1050
+
1051
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1052
+ msgid "Minimum Value"
1053
+ msgstr ""
1054
+
1055
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1056
+ msgid "Maximum Value"
1057
+ msgstr ""
1058
+
1059
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1060
+ msgid "Rows"
1061
+ msgstr ""
1062
+
1063
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1064
+ msgid "Columns"
1065
+ msgstr ""
1066
+
1067
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1068
+ msgid "Accepted file types:"
1069
+ msgstr ""
1070
+
1071
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1072
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1073
+ msgstr ""
1074
+
1075
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1076
+ msgid "Checked by default?"
1077
+ msgstr ""
1078
+
1079
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1080
+ msgid "Stored value if checked:"
1081
+ msgstr ""
1082
+
1083
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1084
+ msgid "Stored values delimiter:"
1085
+ msgstr ""
1086
+
1087
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1088
+ msgid "Values (Displayed|Stored):"
1089
+ msgstr ""
1090
+
1091
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1092
+ msgid "Options should be Option Name|option_value,"
1093
+ msgstr ""
1094
+
1095
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1096
+ msgid "Visit plugin site for more information"
1097
+ msgstr ""
1098
+
1099
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1100
+ msgid "Value"
1101
+ msgstr ""
1102
+
1103
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1104
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1105
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1106
+ msgid "Add Field"
1107
+ msgstr "Lisätä Kentän"
1108
+
1109
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1110
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1111
+ msgid "Return to Fields Table"
1112
+ msgstr ""
1113
+
1114
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1115
+ msgid "Drag and drop to reorder fields"
1116
+ msgstr ""
1117
+
1118
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1119
+ msgid "Registration Date"
1120
+ msgstr ""
1121
+
1122
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1123
+ msgid "Active"
1124
+ msgstr "Aktivoitu"
1125
+
1126
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1127
+ msgid "Registration IP"
1128
+ msgstr "IP @ rekisteröinnissä"
1129
+
1130
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1131
+ msgid "Subscription Type"
1132
+ msgstr ""
1133
+
1134
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1135
+ msgid "Manage Fields"
1136
+ msgstr "Hallitse kenttiä"
1137
+
1138
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1139
+ msgid "WP-Members fields were updated"
1140
+ msgstr "WP-Members kentät on päivitetty"
1141
+
1142
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1143
+ msgid "Field Label is required. Nothing was updated."
1144
+ msgstr ""
1145
+
1146
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1147
+ msgid "Meta Key is required. Nothing was updated."
1148
+ msgstr ""
1149
+
1150
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1151
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1152
+ msgstr ""
1153
+
1154
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1155
+ msgid "A field with that meta key already exists"
1156
+ msgstr ""
1157
+
1158
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1159
+ #, php-format
1160
+ msgid ""
1161
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1162
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1163
+ "Field was not added."
1164
+ msgstr ""
1165
+
1166
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1167
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1168
+ msgstr ""
1169
+ "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
1170
+ "päivitetty."
1171
+
1172
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1173
+ msgid "A value is required for hidden fields. Nothing was updated."
1174
+ msgstr ""
1175
+
1176
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1177
+ #, php-format
1178
+ msgid "%s was added"
1179
+ msgstr ""
1180
+
1181
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1182
+ #, php-format
1183
+ msgid "%s was updated"
1184
+ msgstr ""
1185
+
1186
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1187
+ msgid "Form field order updated."
1188
+ msgstr ""
1189
+
1190
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1191
+ #, php-format
1192
+ msgid "%sChange%s or %sFilter%s this address"
1193
+ msgstr ""
1194
+
1195
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1196
+ #, php-format
1197
+ msgid "See the %sUsers Guide on plugin options%s."
1198
+ msgstr ""
1199
+
1200
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1201
+ msgid "Manage Options"
1202
+ msgstr "Hallitse optioita"
1203
+
1204
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1205
+ msgid "Content"
1206
+ msgstr ""
1207
+
1208
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1209
+ msgid "Content Blocking"
1210
+ msgstr ""
1211
+
1212
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1213
+ msgid "Do not block"
1214
+ msgstr ""
1215
+
1216
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1217
+ msgid "Show Excerpts"
1218
+ msgstr ""
1219
+
1220
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1221
+ msgid "Show Login Form"
1222
+ msgstr ""
1223
+
1224
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1225
+ msgid "Show Registration Form"
1226
+ msgstr ""
1227
+
1228
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1229
+ msgid "Auto Excerpt:"
1230
+ msgstr "Näytä yhteenvedot"
1231
+
1232
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1233
+ msgid "Number of words in excerpt:"
1234
+ msgstr ""
1235
+
1236
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1237
+ msgid "Custom read more link (optional):"
1238
+ msgstr ""
1239
+
1240
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1241
+ msgid "Time-based expiration"
1242
+ msgstr "Ajastettu vanhentuminen"
1243
+
1244
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1245
+ msgid "Allows for access to expire"
1246
+ msgstr "Sisäänpääsyn sallitaan vanhentua"
1247
+
1248
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1249
+ msgid "Trial period"
1250
+ msgstr "Koeaika"
1251
+
1252
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1253
+ msgid "Allows for a trial period"
1254
+ msgstr "Sallii koeajan käytön"
1255
+
1256
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1257
+ msgid "Subscription Settings"
1258
+ msgstr ""
1259
+
1260
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1261
+ msgid "Other Settings"
1262
+ msgstr ""
1263
+
1264
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1265
+ msgid "Activation"
1266
+ msgstr ""
1267
+
1268
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1269
+ msgid ""
1270
+ "Send initial activation link and password reset link instead of new "
1271
+ "password. (Requires additional configuration)"
1272
+ msgstr ""
1273
+
1274
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1275
+ msgid "Enable Products"
1276
+ msgstr ""
1277
+
1278
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1279
+ msgid "Enables creation of different membership products"
1280
+ msgstr ""
1281
+
1282
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1283
+ msgid "Clone menus"
1284
+ msgstr ""
1285
+
1286
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1287
+ msgid "Enables logged in menus"
1288
+ msgstr ""
1289
+
1290
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1291
+ msgid "Notify admin"
1292
+ msgstr "Ilmoita pääkäyttäjälle"
1293
+
1294
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1295
+ #, php-format
1296
+ msgid "Notify %s for each new registration? %s"
1297
+ msgstr "Lähetä sähköposti %s jokaisen rekisteröitymisen yhteydessä? %s"
1298
+
1299
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1300
+ msgid "Moderate registration"
1301
+ msgstr "Moderoi rekisteröitymiset"
1302
+
1303
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1304
+ msgid "Holds new registrations for admin approval"
1305
+ msgstr "Pääkäyttäjän hyväksyntä vaaditaan"
1306
+
1307
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1308
+ msgid "Ignore warning messages"
1309
+ msgstr "Varoitukset jätetään huomioimatta"
1310
+
1311
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1312
+ msgid "Ignores WP-Members warning messages in the admin panel"
1313
+ msgstr "WP-Members hallintapaneelin varoitusten hylkääminen"
1314
+
1315
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1316
+ msgid "Attribution"
1317
+ msgstr ""
1318
+
1319
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1320
+ msgid ""
1321
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
1322
+ msgstr ""
1323
+
1324
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1325
+ msgid "Enable CAPTCHA"
1326
+ msgstr "Ota käyttöön CAPTCHA"
1327
+
1328
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1329
+ msgid "reCAPTCHA v2"
1330
+ msgstr ""
1331
+
1332
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1333
+ msgid "reCAPTCHA v3"
1334
+ msgstr ""
1335
+
1336
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1337
+ msgid "Really Simple CAPTCHA"
1338
+ msgstr ""
1339
+
1340
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1341
+ msgid "Login Page:"
1342
+ msgstr ""
1343
+
1344
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1345
+ msgid "Specify a login page (optional)"
1346
+ msgstr ""
1347
+
1348
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1349
+ msgid "Register Page:"
1350
+ msgstr ""
1351
+
1352
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1353
+ msgid "For creating a register link in the login form"
1354
+ msgstr ""
1355
+
1356
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1357
+ msgid "User Profile Page:"
1358
+ msgstr ""
1359
+
1360
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1361
+ msgid "For creating a forgot password link in the login form"
1362
+ msgstr ""
1363
+
1364
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1365
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1366
+ msgid "Stylesheet"
1367
+ msgstr ""
1368
+
1369
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1370
+ msgid "Custom Stylesheet:"
1371
+ msgstr ""
1372
+
1373
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1374
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1375
+ msgid "Update Settings"
1376
+ msgstr "Päivitä asetukset"
1377
+
1378
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1379
+ msgid "Custom Post Types"
1380
+ msgstr ""
1381
+
1382
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1383
+ msgid "Add to WP-Members Settings"
1384
+ msgstr ""
1385
+
1386
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1387
+ msgid ""
1388
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not "
1389
+ "all of them will function exactly the same way. WP-Members will certainly "
1390
+ "work with any post type that operate like a post or a page; but you will "
1391
+ "need to review any custom post type added to determine that it functions the "
1392
+ "way you expect."
1393
+ msgstr ""
1394
+
1395
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1396
+ msgid "Close"
1397
+ msgstr ""
1398
+
1399
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1400
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1401
+ msgid "WP-Members Settings"
1402
+ msgstr ""
1403
+
1404
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1405
+ msgid ""
1406
+ "The following is your WP-Members settings information if needed for support."
1407
+ msgstr ""
1408
+
1409
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1410
+ msgid "Click to Copy"
1411
+ msgstr ""
1412
+
1413
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1414
+ msgid "Custom Post Type settings were updated"
1415
+ msgstr ""
1416
+
1417
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1418
+ msgid "WP-Members settings were updated"
1419
+ msgstr "WP-Members asetukset on päivitetty"
1420
+
1421
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1422
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1423
+ msgid "USE CUSTOM URL BELOW"
1424
+ msgstr ""
1425
+
1426
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1427
+ msgid "Select a page"
1428
+ msgstr ""
1429
+
1430
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1431
+ msgid "Name"
1432
+ msgstr ""
1433
+
1434
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1435
+ msgid "Enabled"
1436
+ msgstr ""
1437
+
1438
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1439
+ msgid "File"
1440
+ msgstr ""
1441
+
1442
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1443
+ msgid "Version"
1444
+ msgstr ""
1445
+
1446
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1447
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1448
+ msgid "Description"
1449
+ msgstr ""
1450
+
1451
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1452
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1453
+ msgid "Save Settings"
1454
+ msgstr ""
1455
+
1456
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1457
+ msgid "delete"
1458
+ msgstr ""
1459
+
1460
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1461
+ msgid "Display Label"
1462
+ msgstr ""
1463
+
1464
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1465
+ msgid "Required"
1466
+ msgstr ""
1467
+
1468
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1469
+ msgid "Users Screen"
1470
+ msgstr ""
1471
+
1472
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1473
+ msgid "Users Search"
1474
+ msgstr ""
1475
+
1476
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1477
+ msgid "Sort"
1478
+ msgstr ""
1479
+
1480
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1481
+ msgid "Delete Selected"
1482
+ msgstr ""
1483
+
1484
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1485
+ msgid "log in"
1486
+ msgstr "Kirjaudu"
1487
+
1488
+ #: includes/api/api.php:329
1489
+ msgid "log out"
1490
+ msgstr ""
1491
+
1492
+ #: includes/class-wp-members-activation-link.php:21
1493
+ msgid "Click to activate your account: "
1494
+ msgstr ""
1495
+
1496
+ #: includes/class-wp-members-activation-link.php:22
1497
+ msgid "Thank you for activating your account."
1498
+ msgstr ""
1499
+
1500
+ #: includes/class-wp-members-activation-link.php:23
1501
+ msgid "Activation key was expired or invalid"
1502
+ msgstr ""
1503
+
1504
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1505
+ #: includes/deprecated.php:501
1506
+ msgid "You have entered an incorrect code value. Please try again."
1507
+ msgstr ""
1508
+
1509
+ #: includes/class-wp-members-forms.php:1048
1510
+ #: includes/class-wp-members-forms.php:1646 includes/class-wp-members.php:1538
1511
+ #, php-format
1512
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1513
+ msgstr ""
1514
+
1515
+ #: includes/class-wp-members-forms.php:1049
1516
+ #: includes/class-wp-members-forms.php:1647 includes/class-wp-members.php:1489
1517
+ msgid "TOS"
1518
+ msgstr "Käyttöehdot"
1519
+
1520
+ #: includes/class-wp-members-forms.php:1049
1521
+ #: includes/class-wp-members-forms.php:1647 templates/tos.php:20
1522
+ msgid "Terms of Service"
1523
+ msgstr ""
1524
+
1525
+ #: includes/class-wp-members-forms.php:1868
1526
+ #: includes/class-wp-members-user-profile.php:473
1527
+ msgid "Activate this user?"
1528
+ msgstr "Aktivoi tämä käyttäjä?"
1529
+
1530
+ #: includes/class-wp-members-menus.php:131
1531
+ msgid "Display"
1532
+ msgstr ""
1533
+
1534
+ #: includes/class-wp-members-menus.php:139
1535
+ msgid "Logged In Users"
1536
+ msgstr ""
1537
+
1538
+ #: includes/class-wp-members-menus.php:146
1539
+ msgid "Logged Out Users"
1540
+ msgstr ""
1541
+
1542
+ #: includes/class-wp-members-menus.php:153
1543
+ msgid "All Users"
1544
+ msgstr ""
1545
+
1546
+ #: includes/class-wp-members-menus.php:167
1547
+ #, php-format
1548
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1549
+ msgstr ""
1550
+
1551
+ #: includes/class-wp-members-menus.php:169
1552
+ msgid "Restrict menu item to a membership product"
1553
+ msgstr ""
1554
+
1555
+ #: includes/class-wp-members-products.php:302
1556
+ msgid "Product"
1557
+ msgstr ""
1558
+
1559
+ #: includes/class-wp-members-products.php:303
1560
+ msgid "Products"
1561
+ msgstr ""
1562
+
1563
+ #: includes/class-wp-members-products.php:309
1564
+ #, php-format
1565
+ msgid "All %s"
1566
+ msgstr ""
1567
+
1568
+ #: includes/class-wp-members-products.php:310
1569
+ #, php-format
1570
+ msgid "Add New %s"
1571
+ msgstr ""
1572
+
1573
+ #: includes/class-wp-members-products.php:311
1574
+ msgid "Add New"
1575
+ msgstr "Luo uusi"
1576
+
1577
+ #: includes/class-wp-members-products.php:312
1578
+ #, php-format
1579
+ msgid "New %s"
1580
+ msgstr ""
1581
+
1582
+ #: includes/class-wp-members-products.php:313
1583
+ #, php-format
1584
+ msgid "Edit %s"
1585
+ msgstr ""
1586
+
1587
+ #: includes/class-wp-members-products.php:314
1588
+ #, php-format
1589
+ msgid "Update %s"
1590
+ msgstr ""
1591
+
1592
+ #: includes/class-wp-members-products.php:315
1593
+ #: includes/class-wp-members-products.php:316
1594
+ #, php-format
1595
+ msgid "View %s"
1596
+ msgstr ""
1597
+
1598
+ #: includes/class-wp-members-products.php:317
1599
+ #, php-format
1600
+ msgid "Search %s"
1601
+ msgstr ""
1602
+
1603
+ #: includes/class-wp-members-products.php:318
1604
+ msgid "Not found"
1605
+ msgstr ""
1606
+
1607
+ #: includes/class-wp-members-products.php:319
1608
+ msgid "Not found in Trash"
1609
+ msgstr ""
1610
+
1611
+ #: includes/class-wp-members-products.php:320
1612
+ msgid "Insert into item"
1613
+ msgstr ""
1614
+
1615
+ #: includes/class-wp-members-products.php:321
1616
+ #, php-format
1617
+ msgid "Save %s Details"
1618
+ msgstr ""
1619
+
1620
+ #: includes/class-wp-members-products.php:324
1621
+ msgid "Membership Product"
1622
+ msgstr ""
1623
+
1624
+ #: includes/class-wp-members-products.php:325
1625
+ msgid "WP-Members Membership Products"
1626
+ msgstr ""
1627
+
1628
+ #: includes/class-wp-members-pwd-reset.php:31
1629
+ #: includes/class-wp-members-pwd-reset.php:32
1630
+ msgid ""
1631
+ "Sorry, no password reset key was found. Please check your email and try "
1632
+ "again."
1633
+ msgstr ""
1634
+
1635
+ #: includes/class-wp-members-pwd-reset.php:33
1636
+ msgid "Sorry, the password reset key is expired."
1637
+ msgstr ""
1638
+
1639
+ #: includes/class-wp-members-shortcodes.php:147
1640
+ msgid ""
1641
+ "This is a generic message to display the form message dialog in the "
1642
+ "Customizer."
1643
+ msgstr ""
1644
+
1645
+ #: includes/class-wp-members-shortcodes.php:158
1646
+ #: includes/class-wp-members.php:1566 includes/deprecated - Copy.php:695
1647
+ msgid "There was an error with the CAPTCHA form."
1648
+ msgstr "CAPTCHA lomakkeessa oli virhe."
1649
+
1650
+ #: includes/class-wp-members-shortcodes.php:717
1651
+ msgid "Click here to log out."
1652
+ msgstr ""
1653
+
1654
+ #: includes/class-wp-members-shortcodes.php:786
1655
+ #: includes/class-wp-members-user.php:172 includes/class-wp-members.php:1540
1656
+ #: includes/class-wp-members.php:1590
1657
+ msgid "Register"
1658
+ msgstr "Rekisteröidy"
1659
+
1660
+ #: includes/class-wp-members-shortcodes.php:789
1661
+ #: includes/class-wp-members.php:1508
1662
+ msgid "Log In"
1663
+ msgstr "Kirjaudu sisään"
1664
+
1665
+ #: includes/class-wp-members-user-profile.php:38
1666
+ msgid "WP-Members Additional Fields"
1667
+ msgstr "WP-Members lisäkentät"
1668
+
1669
+ #: includes/class-wp-members-user-profile.php:38
1670
+ msgid "Additional Information"
1671
+ msgstr "Lisätiedot"
1672
+
1673
+ #: includes/class-wp-members-user-profile.php:463
1674
+ msgid "Reactivate this user?"
1675
+ msgstr ""
1676
+
1677
+ #: includes/class-wp-members-user-profile.php:468
1678
+ msgid "Deactivate this user?"
1679
+ msgstr "Poistaa tämän käyttäjän?"
1680
+
1681
+ #: includes/class-wp-members-user-profile.php:522
1682
+ msgid "IP @ registration"
1683
+ msgstr "IP @ rekisteröinnissä"
1684
+
1685
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1686
+ msgid "There was an error processing the form."
1687
+ msgstr ""
1688
+
1689
+ #: includes/class-wp-members-user.php:1118
1690
+ msgid "<strong>ERROR</strong>: User has not been activated."
1691
+ msgstr ""
1692
+
1693
+ #: includes/class-wp-members-widget.php:24
1694
+ msgid "Displays the WP-Members sidebar login."
1695
+ msgstr ""
1696
+
1697
+ #: includes/class-wp-members-widget.php:39
1698
+ #: includes/class-wp-members-widget.php:82
1699
+ msgid "Login Status"
1700
+ msgstr "Kirjautumisen tila"
1701
+
1702
+ #: includes/class-wp-members-widget.php:46
1703
+ msgid "Title:"
1704
+ msgstr "Otsikko:"
1705
+
1706
+ #: includes/class-wp-members-widget.php:50
1707
+ msgid "Redirect to (optional):"
1708
+ msgstr ""
1709
+
1710
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1711
+ msgid "You must be logged in to view this content."
1712
+ msgstr ""
1713
+
1714
+ #: includes/class-wp-members.php:1044
1715
+ msgid "The page you are looking for does not exist"
1716
+ msgstr ""
1717
+
1718
+ #: includes/class-wp-members.php:1436
1719
+ #, php-format
1720
+ msgid ""
1721
+ "You have a linked page in the WP-Members page settings that corresponds to a "
1722
+ "post ID that no longer exists. Please %s review and update the %s page "
1723
+ "settings %s."
1724
+ msgstr ""
1725
+
1726
+ #: includes/class-wp-members.php:1474
1727
+ msgid "First Name"
1728
+ msgstr "Etunimi"
1729
+
1730
+ #: includes/class-wp-members.php:1475
1731
+ msgid "Last Name"
1732
+ msgstr "Sukunimi"
1733
+
1734
+ #: includes/class-wp-members.php:1476
1735
+ msgid "Address 1"
1736
+ msgstr "Katuosoite"
1737
+
1738
+ #: includes/class-wp-members.php:1477
1739
+ msgid "Address 2"
1740
+ msgstr "Osoiterivi 2"
1741
+
1742
+ #: includes/class-wp-members.php:1478
1743
+ msgid "City"
1744
+ msgstr "Paikkakunta"
1745
+
1746
+ #: includes/class-wp-members.php:1479
1747
+ msgid "State"
1748
+ msgstr "Maakunta/osavaltio"
1749
+
1750
+ #: includes/class-wp-members.php:1480
1751
+ msgid "Zip"
1752
+ msgstr "Postinumero"
1753
+
1754
+ #: includes/class-wp-members.php:1481
1755
+ msgid "Country"
1756
+ msgstr "Maa"
1757
+
1758
+ #: includes/class-wp-members.php:1482
1759
+ msgid "Day Phone"
1760
+ msgstr "Puhelin"
1761
+
1762
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1763
+ msgid "Email"
1764
+ msgstr "sähköpostiosoite"
1765
+
1766
+ #: includes/class-wp-members.php:1484
1767
+ msgid "Confirm Email"
1768
+ msgstr ""
1769
+
1770
+ #: includes/class-wp-members.php:1485
1771
+ msgid "Website"
1772
+ msgstr "Omat nettisivusi"
1773
+
1774
+ #: includes/class-wp-members.php:1486
1775
+ msgid "Biographical Info"
1776
+ msgstr "Kuvaus sinusta"
1777
+
1778
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1779
+ #: includes/class-wp-members.php:1587
1780
+ msgid "Password"
1781
+ msgstr "Salasana"
1782
+
1783
+ #: includes/class-wp-members.php:1488
1784
+ msgid "Confirm Password"
1785
+ msgstr ""
1786
+
1787
+ #: includes/class-wp-members.php:1499
1788
+ msgid "You are not logged in."
1789
+ msgstr ""
1790
+
1791
+ #: includes/class-wp-members.php:1505
1792
+ msgid "Existing Users Log In"
1793
+ msgstr "Kirjaudu sisään"
1794
+
1795
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1796
+ msgid "Username or Email"
1797
+ msgstr ""
1798
+
1799
+ #: includes/class-wp-members.php:1509
1800
+ msgid "Remember Me"
1801
+ msgstr ""
1802
+
1803
+ #: includes/class-wp-members.php:1510
1804
+ msgid "Forgot password?"
1805
+ msgstr "Unohditko salasanasi?"
1806
+
1807
+ #: includes/class-wp-members.php:1511
1808
+ msgid "Click here to reset"
1809
+ msgstr "Klikkaa tästä nollataksesi"
1810
+
1811
+ #: includes/class-wp-members.php:1512
1812
+ msgid "New User?"
1813
+ msgstr "Uusi käyttäjä?"
1814
+
1815
+ #: includes/class-wp-members.php:1513
1816
+ msgid "Click here to register"
1817
+ msgstr "Klikkaa tästä rekisteröityäksesi"
1818
+
1819
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1820
+ msgid "Change Password"
1821
+ msgstr "Vaihda salasanaa"
1822
+
1823
+ #: includes/class-wp-members.php:1517
1824
+ msgid "New password"
1825
+ msgstr ""
1826
+
1827
+ #: includes/class-wp-members.php:1518
1828
+ msgid "Confirm new password"
1829
+ msgstr ""
1830
+
1831
+ #: includes/class-wp-members.php:1519
1832
+ msgid "Update Password"
1833
+ msgstr "Päivitä salasana"
1834
+
1835
+ #: includes/class-wp-members.php:1522
1836
+ msgid "Reset Forgotten Password"
1837
+ msgstr "Unohtuneen salasanan nollaus"
1838
+
1839
+ #: includes/class-wp-members.php:1525
1840
+ msgid "Reset Password"
1841
+ msgstr "Nollaa salasana"
1842
+
1843
+ #: includes/class-wp-members.php:1526
1844
+ msgid "Forgot username?"
1845
+ msgstr ""
1846
+
1847
+ #: includes/class-wp-members.php:1527
1848
+ msgid "Click here"
1849
+ msgstr ""
1850
+
1851
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
1852
+ msgid "Retrieve username"
1853
+ msgstr ""
1854
+
1855
+ #: includes/class-wp-members.php:1531
1856
+ msgid "Email Address"
1857
+ msgstr ""
1858
+
1859
+ #: includes/class-wp-members.php:1535
1860
+ msgid "New User Registration"
1861
+ msgstr "Uuden käyttäjän rekisteröinti"
1862
+
1863
+ #: includes/class-wp-members.php:1536
1864
+ msgid "Choose a Username"
1865
+ msgstr "Valitse käyttäjätunnus"
1866
+
1867
+ #: includes/class-wp-members.php:1537
1868
+ msgid "Input the code:"
1869
+ msgstr ""
1870
+
1871
+ #: includes/class-wp-members.php:1539
1872
+ msgid "Reset Form"
1873
+ msgstr ""
1874
+
1875
+ #: includes/class-wp-members.php:1542
1876
+ msgid "Required field"
1877
+ msgstr "Pakollinen tieto"
1878
+
1879
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
1880
+ msgid "Edit Your Information"
1881
+ msgstr "Täytä omat tietosi"
1882
+
1883
+ #: includes/class-wp-members.php:1547
1884
+ msgid "Update Profile"
1885
+ msgstr ""
1886
+
1887
+ #: includes/class-wp-members.php:1548
1888
+ msgid "Update this file"
1889
+ msgstr ""
1890
+
1891
+ #: includes/class-wp-members.php:1551
1892
+ msgid "Login Failed!"
1893
+ msgstr "Sisäänkirjautuminen epäonnistui!"
1894
+
1895
+ #: includes/class-wp-members.php:1552
1896
+ msgid "You entered an invalid username or password."
1897
+ msgstr "Annoit väärän käyttäjätunnuksen tai salasanan."
1898
+
1899
+ #: includes/class-wp-members.php:1553
1900
+ msgid "Click here to continue."
1901
+ msgstr "Klikkaa tähän jatkaaksesi."
1902
+
1903
+ #: includes/class-wp-members.php:1554
1904
+ msgid "Password fields cannot be empty"
1905
+ msgstr "Salasanakentät eivät saa olla tyhjiä"
1906
+
1907
+ #: includes/class-wp-members.php:1555
1908
+ msgid "Sorry, that email address was not found."
1909
+ msgstr ""
1910
+
1911
+ #: includes/class-wp-members.php:1556
1912
+ #, php-format
1913
+ msgid "An email was sent to %s with your username."
1914
+ msgstr ""
1915
+
1916
+ #: includes/class-wp-members.php:1557
1917
+ #, php-format
1918
+ msgid "Sorry, %s is a required field."
1919
+ msgstr "Valitettavasti %s on pakollinen tieto."
1920
+
1921
+ #: includes/class-wp-members.php:1558
1922
+ msgid "You must enter a valid email address."
1923
+ msgstr "Annoit väärän käyttäjätunnuksen tai salasanan. "
1924
+
1925
+ #: includes/class-wp-members.php:1559
1926
+ msgid "The username cannot include non-alphanumeric characters."
1927
+ msgstr "Käyttäjätunnus voi sisältää ainoastaan kirjaimia ja numeroita."
1928
+
1929
+ #: includes/class-wp-members.php:1560
1930
+ msgid "Sorry, username is a required field"
1931
+ msgstr "Käyttäjätunnus on pakollinen tieto."
1932
+
1933
+ #: includes/class-wp-members.php:1561
1934
+ msgid "Passwords did not match."
1935
+ msgstr "Salasanat eivät täsmää"
1936
+
1937
+ #: includes/class-wp-members.php:1562
1938
+ msgid "Emails did not match."
1939
+ msgstr "Sähköpostit eivät täsmää"
1940
+
1941
+ #: includes/class-wp-members.php:1563
1942
+ msgid "You must complete the CAPTCHA form."
1943
+ msgstr "CAPTCHA lomake on täytettävä oikein."
1944
+
1945
+ #: includes/class-wp-members.php:1564
1946
+ msgid "CAPTCHA was not valid."
1947
+ msgstr ""
1948
+
1949
+ #: includes/class-wp-members.php:1567
1950
+ #, php-format
1951
+ msgid ""
1952
+ "Sorry, you can only upload the following file types for the %s field: %s."
1953
+ msgstr ""
1954
+
1955
+ #: includes/class-wp-members.php:1570
1956
+ msgid "Edit My Information"
1957
+ msgstr "Muuta omia tietojani"
1958
+
1959
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
1960
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
1961
+ #, php-format
1962
+ msgid "You are logged in as %s"
1963
+ msgstr "Olet kirjautunut sisään tunnuksella %s"
1964
+
1965
+ #: includes/class-wp-members.php:1573
1966
+ msgid "Log out"
1967
+ msgstr ""
1968
+
1969
+ #: includes/class-wp-members.php:1574
1970
+ msgid "Edit profile"
1971
+ msgstr ""
1972
+
1973
+ #: includes/class-wp-members.php:1574
1974
+ msgid "Begin using the site."
1975
+ msgstr "Aloita sivuston käyttö."
1976
+
1977
+ #: includes/class-wp-members.php:1576
1978
+ msgid "Click to log out"
1979
+ msgstr "Ilmoittaa lähtevänsä"
1980
+
1981
+ #: includes/class-wp-members.php:1578
1982
+ msgid "click to log out"
1983
+ msgstr "ilmoittaa lähtevänsä"
1984
+
1985
+ #: includes/class-wp-members.php:1579
1986
+ msgid "Log Out"
1987
+ msgstr ""
1988
+
1989
+ #: includes/class-wp-members.php:1583
1990
+ msgid "click here to log out"
1991
+ msgstr "Klikkaa tästä kirjautuaksesi ulos"
1992
+
1993
+ #: includes/class-wp-members.php:1584
1994
+ msgid "Login Failed!<br />You entered an invalid username or password."
1995
+ msgstr ""
1996
+ "Sisäänkirjautuminen epäonnistui<br />Käyttäjätunnus tai salasana väärin."
1997
+
1998
+ #: includes/class-wp-members.php:1589
1999
+ msgid "Forgot?"
2000
+ msgstr "Unohdit?"
2001
+
2002
+ #: includes/class-wp-members.php:1593
2003
+ msgid ""
2004
+ "This content is restricted to site members. If you are an existing user, "
2005
+ "please log in. New users may register below."
2006
+ msgstr ""
2007
+ "Tämä sisältö on rajattu vain rekisteröityneille käyttäjille. Jos sinulla on "
2008
+ "tänne käyttäjätunnus, ole hyvä ja kirjaudu sisään. Uudet käyttäjät voivat "
2009
+ "rekisteröityä alla olevan lomakkeen avulla."
2010
+
2011
+ #: includes/class-wp-members.php:1594
2012
+ msgid ""
2013
+ "Congratulations! Your registration was successful.<br /><br />You may now "
2014
+ "log in using the password that was emailed to you."
2015
+ msgstr ""
2016
+ "Onnittelut! Rekisteröintisi onnistui. <br /> <br /> Voit nyt kirjautua "
2017
+ "sisään salasanalla, joka lähetetään sinulle antamaasi sähköpostiosoitteeseen."
2018
+
2019
+ #: includes/class-wp-members.php:1597
2020
+ msgid "Sorry, that username is taken, please try another."
2021
+ msgstr "Antamasi käyttäjätunnus on jo varattu, kokeile jotain toista."
2022
+
2023
+ #: includes/class-wp-members.php:1598
2024
+ msgid ""
2025
+ "Sorry, that email address already has an account.<br />Please try another."
2026
+ msgstr ""
2027
+ "Antamasi sähköpostiosoite on jo käytössä. <br /> Anna jokin toinen osoite."
2028
+
2029
+ #: includes/class-wp-members.php:1599
2030
+ msgid "Your information was updated!"
2031
+ msgstr "Tietosi on päivitetty!"
2032
+
2033
+ #: includes/class-wp-members.php:1602
2034
+ msgid "Passwords did not match.<br /><br />Please try again."
2035
+ msgstr "Salasanat eivät täsmää.<br /><br />Yritä uudestaan."
2036
+
2037
+ #: includes/class-wp-members.php:1603
2038
+ msgid "Password successfully changed!"
2039
+ msgstr ""
2040
+
2041
+ #: includes/class-wp-members.php:1604
2042
+ msgid "Either the username or email address do not exist in our records."
2043
+ msgstr "Käyttäjätunnusta tai sähköpostiosoitetta ei löydy."
2044
+
2045
+ #: includes/class-wp-members.php:1605
2046
+ msgid ""
2047
+ "Password successfully reset!<br /><br />An email containing a new password "
2048
+ "has been sent to the email address on file for your account."
2049
+ msgstr ""
2050
+
2051
+ #: includes/class-wp-members.php:1607
2052
+ msgid "This content requires the following membership: "
2053
+ msgstr ""
2054
+
2055
+ #: includes/class-wp-members.php:1608
2056
+ msgid "This content requires one of the following memberships: "
2057
+ msgstr ""
2058
+
2059
+ #: includes/class-wp-members.php:1721
2060
+ msgid "Show forms as logged out"
2061
+ msgstr ""
2062
+
2063
+ #: includes/class-wp-members.php:1730
2064
+ msgid "Show form message dialog"
2065
+ msgstr ""
2066
+
2067
+ #: includes/class-wp-members.php:1838
2068
+ msgid "(more&hellip;)"
2069
+ msgstr ""
2070
+
2071
+ #: includes/cli/class-wp-members-cli.php:17
2072
+ #, php-format
2073
+ msgid "User: %s"
2074
+ msgstr ""
2075
+
2076
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2077
+ msgid "We were unable to validate the public key."
2078
+ msgstr "Julkisen avaimen varmennus epäonnistui."
2079
+
2080
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2081
+ msgid "We were unable to validate the private key."
2082
+ msgstr "Yksityisen avaimen varmennus epäonnistui."
2083
+
2084
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2085
+ msgid "The challenge parameter of the verify script was incorrect."
2086
+ msgstr "Haasteen parametri varmenneskriptissä oli väärä."
2087
+
2088
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2089
+ msgid "The CAPTCHA solution was incorrect."
2090
+ msgstr "CAPTCHA ratkaisu oli väärin"
2091
+
2092
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2093
+ msgid "The parameters to verify were incorrect"
2094
+ msgstr "Varmennusparametrit olivat väärin"
2095
+
2096
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2097
+ msgid ""
2098
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2099
+ msgstr "reCAPTCHA API-avaimet on sidottu tiettyyn domainiin tietoturvasyistä."
2100
+
2101
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2102
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2103
+ msgstr "reCAPTCHA palvelin ei vastaa, yritä uudestaan."
2104
+
2105
+ #. translators: %s: title of menu item which is invalid
2106
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2107
+ #, php-format
2108
+ msgid "%s (Invalid)"
2109
+ msgstr ""
2110
+
2111
+ #. translators: %s: title of menu item in draft status
2112
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2113
+ #, php-format
2114
+ msgid "%s (Pending)"
2115
+ msgstr ""
2116
+
2117
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2118
+ msgid "Move up"
2119
+ msgstr ""
2120
+
2121
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2122
+ msgid "Move down"
2123
+ msgstr ""
2124
+
2125
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2126
+ msgid "Edit Menu Item"
2127
+ msgstr ""
2128
+
2129
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2130
+ msgid "URL"
2131
+ msgstr ""
2132
+
2133
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2134
+ msgid "Navigation Label"
2135
+ msgstr ""
2136
+
2137
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2138
+ msgid "Title Attribute"
2139
+ msgstr ""
2140
+
2141
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2142
+ msgid "Open link in a new window/tab"
2143
+ msgstr ""
2144
+
2145
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2146
+ msgid "CSS Classes (optional)"
2147
+ msgstr ""
2148
+
2149
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2150
+ msgid "Link Relationship (XFN)"
2151
+ msgstr ""
2152
+
2153
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2154
+ msgid ""
2155
+ "The description will be displayed in the menu if the current theme supports "
2156
+ "it."
2157
+ msgstr ""
2158
+
2159
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2160
+ #, php-format
2161
+ msgid "Original: %s"
2162
+ msgstr ""
2163
+
2164
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2165
+ msgid "Remove"
2166
+ msgstr ""
2167
+
2168
+ #: templates/tos.php:32
2169
+ #, php-format
2170
+ msgid "%sclose%s"
2171
+ msgstr ""
2172
+
2173
+ #: templates/tos.php:34
2174
+ #, php-format
2175
+ msgid "%sprint%s"
2176
+ msgstr ""
2177
+
2178
+ #. Plugin Name of the plugin/theme
2179
+ msgid "WP-Members"
2180
+ msgstr "WP-Members"
2181
+
2182
+ #. Plugin URI of the plugin/theme
2183
+ msgid "https://rocketgeek.com"
2184
+ msgstr ""
2185
+
2186
+ #. Description of the plugin/theme
2187
+ msgid ""
2188
+ "WP access restriction and user registration. For more information on plugin "
2189
+ "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2190
+ "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2191
+ "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2192
+ "available. WP-Members(tm) is a trademark of butlerblog.com."
2193
+ msgstr ""
2194
+
2195
+ #. Author of the plugin/theme
2196
+ msgid "Chad Butler"
2197
+ msgstr "Chad Butler"
2198
+
2199
+ #. Author URI of the plugin/theme
2200
+ msgid "http://butlerblog.com/"
2201
+ msgstr "http://butlerblog.com/"
2202
+
2203
+ #~ msgid "Click to log out."
2204
+ #~ msgstr "Ilmoittaa lähtevänsä."
2205
+
2206
+ #~ msgid "You have set WP-Members to turn off the registration process"
2207
+ #~ msgstr "WP-Members on nyt estänyt rekisteröintiprosessin"
2208
+
2209
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2210
+ #~ msgstr ""
2211
+ #~ "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
2212
+ #~ "päivitetty."
2213
+
2214
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2215
+ #~ msgstr ""
2216
+ #~ "Option nimi vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt päivitetty."
2217
+
2218
+ #~ msgid "Option Name"
2219
+ #~ msgstr "Option nimi"
2220
+
2221
+ #~ msgid ""
2222
+ #~ "Determine which fields will display and which are required. This "
2223
+ #~ "includes all fields, both native WP fields and WP-Members custom fields."
2224
+ #~ msgstr ""
2225
+ #~ "Määrittele mitkä kentät näytetään ja mitkä ovat pakollisia. Tähän "
2226
+ #~ "kuuluvat kaikki kentät, sekä WP:n alkuperäiset että WP-Members lisäosan "
2227
+ #~ "omat."
2228
+
2229
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2230
+ #~ msgstr "(Huomaa: sähköposti on aina pakollinen, eikä tätä voi muuttaa.)"
2231
+
2232
+ #~ msgid "Add/Delete"
2233
+ #~ msgstr "Lisää/Poista"
2234
+
2235
+ #~ msgid "Checked?"
2236
+ #~ msgstr "Rastitettu?"
2237
+
2238
+ #~ msgid "Delete"
2239
+ #~ msgstr "Poista"
2240
+
2241
+ #~ msgid "(Email cannot be removed)"
2242
+ #~ msgstr "(sähköpostiosoitetta ei voi poistaa)"
2243
+
2244
+ #~ msgid "Update Fields"
2245
+ #~ msgstr "Päivitä kentät"
2246
+
2247
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2248
+ #~ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
2249
+
2250
+ #, fuzzy
2251
+ #~ msgid ""
2252
+ #~ "WP access restriction and user registration. For more information on "
2253
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
2254
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
2255
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
2256
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
2257
+ #~ msgstr ""
2258
+ #~ "WP käytön rajaaminen ja käyttäjien rekisteröinti. Lisätiedot ja "
2259
+ #~ "käyttöohjeet (englanninkielellä) <a href=\"http://butlerblog.com/wp-"
2260
+ #~ "members\"> http://butlerblog.com/wp-members </ a>. Toimiva demo "
2261
+ #~ "osoitteessa <a href=\"http://butlerblog.com/wpmembers\"> http://"
2262
+ #~ "butlerblog.com/wpmembers </ a>. WP-Members (tm) on tavaramerkki, jonka "
2263
+ #~ "omistaa butlerblog.com."
2264
+
2265
+ #~ msgid "Page Restriction"
2266
+ #~ msgstr "Uuden käyttäjän rekisteröinti"
2267
+
2268
+ #~ msgid "Block Posts by default"
2269
+ #~ msgstr "Estä artikkeleiden näkyvyys oletusarvoisesti"
2270
+
2271
+ #~ msgid ""
2272
+ #~ "Note: Posts can still be individually blocked or unblocked at the article "
2273
+ #~ "level"
2274
+ #~ msgstr "Huomaa: artikkeleiden näkyvyys voidaan sallia tai estää yksitellen"
2275
+
2276
+ #~ msgid "Block Pages by default"
2277
+ #~ msgstr "Estä sivujen näkyvyys oletusarvoisesti"
2278
+
2279
+ #~ msgid ""
2280
+ #~ "Note: Pages can still be individually blocked or unblocked at the article "
2281
+ #~ "level"
2282
+ #~ msgstr "Huomaa: sivujen näkyvyys voidaan sallia tai estää yksitellen"
2283
+
2284
+ #~ msgid "Show excerpts"
2285
+ #~ msgstr "Näytä yhteenvedot"
2286
+
2287
+ #~ msgid ""
2288
+ #~ "Shows excerpted content above the login/registration on both Posts and "
2289
+ #~ "Pages"
2290
+ #~ msgstr ""
2291
+ #~ "Näyttää yhteenvedon sisällöstä sisäänkirjautumisen ja rekisteröitymisen "
2292
+ #~ "yläpuolella sekä artikkeleissa ja sivuissa."
2293
+
2294
+ #~ msgid "Turns on CAPTCHA for registration"
2295
+ #~ msgstr "CAPTCHA käytössä rekisteröinnissä"
2296
+
2297
+ #~ msgid "Optional"
2298
+ #~ msgstr "Valinnainen"
2299
+
2300
+ #~ msgid "Automatically creates an excerpt"
2301
+ #~ msgstr "Näytä yhteenvedot"
2302
+
2303
+ #~ msgid "AIM"
2304
+ #~ msgstr "AIM"
2305
+
2306
+ #~ msgid "Yahoo IM"
2307
+ #~ msgstr "Yahoo IM"
2308
+
2309
+ #~ msgid "Jabber/Google Talk"
2310
+ #~ msgstr "Jabber/Google Talk"
2311
+
2312
+ #~ msgid ""
2313
+ #~ "Password successfully changed!<br /><br />You will need to re-login with "
2314
+ #~ "your new password."
2315
+ #~ msgstr ""
2316
+ #~ "Salasana on vaihdettu!<br /><br />Sinun on kirjauduttava uudestaan sisään "
2317
+ #~ "uudella salasanallasi."
2318
+
2319
+ #~ msgid ""
2320
+ #~ "Password successfully reset!<br /><br />An email containing a new "
2321
+ #~ "password has been sent to the email address on file for your account. You "
2322
+ #~ "may change this random password then re-login with your new password."
2323
+ #~ msgstr ""
2324
+ #~ "Salasana onnistuneesti vaihdettu!<br /><br />Sinulle on lähetetty "
2325
+ #~ "sähköposti, joka sisältää uuden satunnaisesti tuotetun salasanan "
2326
+ #~ "tilillesi. Voit vaihtaa salasanan haluamaasi kuin kirjaudut seuraavan "
2327
+ #~ "kerran sisään."
2328
+
2329
+ #~ msgid "Custom"
2330
+ #~ msgstr "Mukautettu"
2331
+
2332
+ #, fuzzy
2333
+ #~ msgid "edit"
2334
+ #~ msgstr "Täytä omat tietosi"
2335
+
2336
+ #~ msgid "Use reCAPTCHA"
2337
+ #~ msgstr "Ota käyttöön reCAPTCHA"
2338
+
2339
+ #~ msgid "New Password"
2340
+ #~ msgstr "Uusi salasana"
2341
+
2342
+ #~ msgid "Repeat Password"
2343
+ #~ msgstr "Toista salasana"
2344
+
2345
+ #~ msgid "Remember me"
2346
+ #~ msgstr "Muista minut"
2347
+
2348
+ #~ msgid "Turn off registration"
2349
+ #~ msgstr "Estä rekisteröinnit"
2350
+
2351
+ #~ msgid "Turns off the registration process, only allows login"
2352
+ #~ msgstr ""
2353
+ #~ "Uusien käyttäjien rekisteröinti estetty, vain sisäänkirjautuminen sallittu"
2354
+
2355
+ #~ msgid "Legacy forms"
2356
+ #~ msgstr "Aiemmat lomakkeet"
2357
+
2358
+ #~ msgid ""
2359
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
2360
+ #~ "forms)"
2361
+ #~ msgstr ""
2362
+ #~ "Käytä versiota 2.5.1 edeltäviä taulukkolomakkeita (älä valitse tätä, jos "
2363
+ #~ "haluat CSS lomakkeet ilman taulukoita)"
2364
+
2365
+ #~ msgid "Members Area URL:"
2366
+ #~ msgstr "Jäsensivun URL:"
2367
+
2368
+ #~ msgid "Add"
2369
+ #~ msgstr "Lisää"
2370
+
2371
+ #~ msgid "WP-Members expiration periods were updated"
2372
+ #~ msgstr "WP-Members vanhentumisajat on päivitetty"
2373
+
2374
+ #~ msgid ""
2375
+ #~ "Settings were saved, but you have required fields that are not set to "
2376
+ #~ "display!"
2377
+ #~ msgstr ""
2378
+ #~ "Asetukset päivitettiin, mutta pakollisia kenttiä eli ole asetettu "
2379
+ #~ "näkymään!"
2380
+
2381
+ #, fuzzy
2382
+ #~ msgid ""
2383
+ #~ "Note: This will not cause an error for the end user, as only displayed "
2384
+ #~ "fields are validated. However, you should still check that your "
2385
+ #~ "displayed and required fields match up. Mismatched fields are "
2386
+ #~ "highlighted below."
2387
+ #~ msgstr ""
2388
+ #~ "HUOMAA: Tämä ei aiheuta virhettäloppukäyttäjän näkyviin, koska vain "
2389
+ #~ "näkyvät kentät validoidaan. On kuitenkin suositeltavaa että tarkistat "
2390
+ #~ "että \r\n"
2391
+ #~ "\t\t\t\tnäytetyt ja vaaditut kentät täsmäävät. Kentät jotka eivät täsmää "
2392
+ #~ "on korostettu alla."
2393
+
2394
+ #~ msgid "If you find this plugin useful, please consider making a donation"
2395
+ #~ msgstr ""
2396
+ #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan lahjoitusta "
2397
+ #~ "tekijälle"
2398
+
2399
+ #~ msgid "Subscriptions"
2400
+ #~ msgstr "Tilaukset"
2401
+
2402
+ #~ msgid "PayPal Settings"
2403
+ #~ msgstr "Paypal asetukset"
2404
+
2405
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
2406
+ #~ msgstr ""
2407
+ #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan tekijälle %s "
2408
+ #~ "lahjoitusta %s"
2409
+
2410
+ #~ msgid "%d users were activated."
2411
+ #~ msgstr "%d käyttäjää aktivoitu."
2412
+
2413
+ #~ msgid ""
2414
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
2415
+ #~ msgstr ""
2416
+ #~ "Käyttäjät valmiina vientiin, %s klikkaa tästä %s luodaksesi ja "
2417
+ #~ "ladataksesi CSV tiedoston."
2418
+
2419
+ #~ msgid "WP-Members Users"
2420
+ #~ msgstr "WP-Members Käyttäjät"
2421
+
2422
+ #~ msgid "No users matched your criteria"
2423
+ #~ msgstr "Yksikään käyttäjä ei vastannut ehtojasi"
2424
+
2425
+ #~ msgid "Bulk Actions"
2426
+ #~ msgstr "Massatoiminnot"
2427
+
2428
+ #~ msgid "Apply"
2429
+ #~ msgstr "Käytä"
2430
+
2431
+ #, fuzzy
2432
+ #~ msgid "Indicates a required field"
2433
+ #~ msgstr "Käyttäjätunnus on pakollinen tieto."
2434
+
2435
+ #~ msgid "Login"
2436
+ #~ msgstr "Kirjaudu sisään"
2437
+
2438
+ #~ msgid "Clear Form"
2439
+ #~ msgstr "Tyhjennä lomake"
2440
+
2441
+ #~ msgid "Submit"
2442
+ #~ msgstr "Valmis"
2443
+
2444
+ #~ msgid "Cheatin&#8217; uh?"
2445
+ #~ msgstr "Kusetusta&#8217; vai?"
2446
+
2447
+ #~ msgid "there was an error and no users were exported"
2448
+ #~ msgstr "tapahtui virhe, eikä yhtään käyttäjää voitu viedä"
2449
+
2450
+ #~ msgid "You are not currently logged in."
2451
+ #~ msgstr "Et ole kirjautuneena sisään"
2452
+
2453
+ #~ msgid "login"
2454
+ #~ msgstr "Kirjaudu"
2455
+
2456
+ #~ msgid "You may change your password here: %s"
2457
+ #~ msgstr "Voit vaihtaa salasanasi täällä: %s"
2458
+
2459
+ #~ msgid "Your registration info for %s"
2460
+ #~ msgstr "Rekisteröintitiedot käyttäjälle %s"
2461
+
2462
+ #~ msgid "Thank you for registering for %s"
2463
+ #~ msgstr "Kiitos kun rekisteröidyit %s"
2464
+
2465
+ #~ msgid "Your registration information is below."
2466
+ #~ msgstr "Rekisteröintitietosi ovat seuraavat."
2467
+
2468
+ #~ msgid "You may wish to retain a copy for your records."
2469
+ #~ msgstr ""
2470
+ #~ "On suositeltavaa että säilytät nämä tiedot itselläsi varmassa paikassa."
2471
+
2472
+ #~ msgid "username: %s"
2473
+ #~ msgstr "Käyttäjätunnus: %s"
2474
+
2475
+ #~ msgid "password: %s"
2476
+ #~ msgstr "Salasana: %s"
2477
+
2478
+ #~ msgid "You may login here:"
2479
+ #~ msgstr "Voit kirjautua sisään täältä:"
2480
+
2481
+ #~ msgid ""
2482
+ #~ "Thank you for registering for %s. Your registration has been received and "
2483
+ #~ "is pending approval."
2484
+ #~ msgstr ""
2485
+ #~ "Kiitos kun rekisteröidyit sivustolle %s. Rekisteröintitiedot on "
2486
+ #~ "vastaanotettu ja odottavat pääkäyttäjän hyväksyntää."
2487
+
2488
+ #~ msgid "You will receive login instructions upon approval of your account"
2489
+ #~ msgstr ""
2490
+ #~ "Kun tilisi ja käyttäjätunnuksesi on hyväksytty, saat sähköpostilla "
2491
+ #~ "yksityiskohtaiset tiedot sisäänkirjautumista varten."
2492
+
2493
+ #~ msgid "Your registration for %s has been approved."
2494
+ #~ msgstr "Rekisteröitymisesti sivulle %s on nyt hyväksytty."
2495
+
2496
+ #~ msgid "You may login at: %s"
2497
+ #~ msgstr "Voit kirjautua sisään täällä: %s"
2498
+
2499
+ #~ msgid "You originally registered at:"
2500
+ #~ msgstr "Olet alunperin rekisteröitynyt: "
2501
+
2502
+ #~ msgid "Password reset for %s"
2503
+ #~ msgstr "Salasanan nollaus tunnukselle %s"
2504
+
2505
+ #~ msgid "Your password for %s has been reset"
2506
+ #~ msgstr "Salasanasi tunnuksella %s on nollattu"
2507
+
2508
+ #~ msgid ""
2509
+ #~ "Your new password is included below. You may wish to retain a copy for "
2510
+ #~ "your records."
2511
+ #~ msgstr "Uusi salasanasi näkyy alla. Säilytä tästä kopio itselläsi."
2512
+
2513
+ #~ msgid "This is an automated message from %s"
2514
+ #~ msgstr "Tämä viesti on lähetetty automaattisesti osoitteesta %s"
2515
+
2516
+ #~ msgid "Please do not reply to this address"
2517
+ #~ msgstr "Älä vastaa tähän osoitteeseen"
2518
+
2519
+ #~ msgid "New user registration for %s"
2520
+ #~ msgstr "Uuden käyttäjän rekisteröinti nimellä %s"
2521
+
2522
+ #~ msgid "The following user registered for %s"
2523
+ #~ msgstr "Seuraava käyttäjä on rekisteröitynyt nimellä %s"
2524
+
2525
+ #~ msgid "and is pending admin approval"
2526
+ #~ msgstr "ja odottaa pääkäyttäjän hyväksyntää"
2527
+
2528
+ #~ msgid ""
2529
+ #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
2530
+ #~ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
2531
+
2532
+ #~ msgid "http://butlerblog.com/wp-members/"
2533
+ #~ msgstr "http://butlerblog.com/wp-members/"
i18n/languages/wp-members-he_IL.mo CHANGED
Binary file
i18n/languages/wp-members-he_IL.po CHANGED
@@ -1,2006 +1,2313 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP-Members 3.2.6\n"
4
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
5
- "PO-Revision-Date: 2019-04-02 09:54-0400\n"
6
- "Last-Translator: Ahrale <contact@atar4u.com>\n"
7
- "Language-Team: Ahrale | Atar4U.com\n"
8
- "Language: he_IL\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
- "X-Generator: Poedit 2.2.1\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: wp-members.php\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: admin/dialogs.php:116
24
- msgid ""
25
- "Your WP settings allow anyone to register - this is not the recommended "
26
- "setting."
27
- msgstr "הגדרות האתר שלך מאפשרות לכל אחד להירשם - זו אינה ההגדרה המומלצת."
28
-
29
- #: admin/dialogs.php:117
30
- #, php-format
31
- msgid ""
32
- "You can %s change this here %s making sure the box next to \"Anyone can "
33
- "register\" is unchecked."
34
- msgstr ""
35
- "באפשרותך %s לשנות את זה כאן %s ולוודא שתיבת הסימון ליד \"כל אחד יכול להירשם"
36
- "\" אינה מסומנת."
37
-
38
- #: admin/dialogs.php:118
39
- msgid ""
40
- "This setting allows a link on the /wp-login.php page to register using the "
41
- "WP native registration process thus circumventing any registration you are "
42
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
43
- "but most users should uncheck this option. If you do not change this "
44
- "setting, you can choose to ignore these warning messages under WP-Members "
45
- "Settings."
46
- msgstr ""
47
- "הגדרה זו מאפשרת קישור בעמוד הכניסה /wp-login.php להרשמה תוך שימוש בתהליך "
48
- "הרישום המקורי ולעקוף את הרישום שלך בוורדפרס-חברים. לפעמים זה עונה על הצורך, "
49
- "אבל רוב המשתמשים צריכים לא לסמן את האפשרות הזו. אם אינך משנה הגדרה זו, אפשר "
50
- "לבחור להתעלם מהודעות אזהרה אלו בהגדרות וורדפרס-חברים."
51
-
52
- #: admin/dialogs.php:122
53
- msgid ""
54
- "Your WP settings allow anyone to comment - this is not the recommended "
55
- "setting."
56
- msgstr "הגדרות האתר שלך מאפשרות לכל אחד להגיב - הגדרה זו אינה מומלצת."
57
-
58
- #: admin/dialogs.php:123
59
- #, php-format
60
- msgid ""
61
- "You can %s change this here %s by checking the box next to \"Users must be "
62
- "registered and logged in to comment.\""
63
- msgstr ""
64
- "אפשר %sלשנות זאת כאן%s על-ידי סימון התיבה שליד \"משתמשים חייבים להיות רשומים "
65
- "ומחוברים כדי להגיב\""
66
-
67
- #: admin/dialogs.php:124
68
- msgid ""
69
- "This setting allows any users to comment, whether or not they are "
70
- "registered. Depending on how you are using WP-Members will determine whether "
71
- "you should change this setting or not. If you do not change this setting, "
72
- "you can choose to ignore these warning messages under WP-Members Settings."
73
- msgstr ""
74
- "הגדרה זו מאפשרת לכל המשתמשים להגיב, בין אם הם רשומים ובין אם לאו. תלוי איך "
75
- "אתה משתמש בוורדפרס-חברים, ייקבע אם עליך לשנות הגדרה זו או לא. אם לא תשנה "
76
- "הגדרה זו, באפשרותך לבחור להתעלם מהודעות אזהרה אלו תחת הגדרות וורדפרס-חברים."
77
-
78
- #: admin/dialogs.php:128
79
- msgid ""
80
- "Your WP settings allow full text rss feeds - this is not the recommended "
81
- "setting."
82
- msgstr "הגדרות האתר שלך מאפשרות הזנות RSS בטקסט מלא - הגדרה זו אינה מומלצת."
83
-
84
- #: admin/dialogs.php:129
85
- #, php-format
86
- msgid ""
87
- "You can %s change this here %s by changing \"For each article in a feed, show"
88
- "\" to \"Summary.\""
89
- msgstr ""
90
- "אפשר %sלשנות זאת כאן%s על-ידי שינוי \"עבור כל מאמר בהזנה,\" ל\"תקציר\"."
91
-
92
- #: admin/dialogs.php:130
93
- msgid ""
94
- "Leaving this set to full text allows anyone to read your protected content "
95
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
96
- "only show summary text."
97
- msgstr ""
98
- "השארת הגדרה זו לטקסט מלא מאפשרת לכל אחד לקרוא את התוכן המוגן בקורא הזנות "
99
- "RSS. שינוי לתקציר מונע את זה כי ההזנות יציגו רק תקציר."
100
-
101
- #: admin/dialogs.php:134
102
- msgid "You have set WP-Members to hold registrations for approval"
103
- msgstr "הגדרת את וורדפרס-חברים לעכב הרשמה עד לקבלת אישור"
104
-
105
- #: admin/dialogs.php:135
106
- msgid ""
107
- "but you have not changed the default message for \"Registration Completed\" "
108
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
109
- "message to let users know they are pending approval."
110
- msgstr ""
111
- "אבל לא שינית את הודעת ברירת המחדל עבור \"ההרשמה הושלמה\" ב\"הודעות תיבות הדו-"
112
- "שיח ושגיאות של של וורדפרס חברים\".צריך לשנות את ההודעה הזו כדי ליידע את "
113
- "המשתמשים שהם בהמתנה לאישור."
114
-
115
- #: admin/dialogs.php:139
116
- msgid "You have turned on reCAPTCHA"
117
- msgstr "הפעלת את reCAPTCHA"
118
-
119
- #: admin/dialogs.php:140
120
- msgid ""
121
- "but you have not entered API keys. You will need both a public and private "
122
- "key. The CAPTCHA will not display unless a valid API key is included."
123
- msgstr ""
124
- "אבל לא הזנת מפתחות API. צריך מפתח ציבורי ומפתח פרטי. קוד האימות לא יוצג ללא "
125
- "מפתחות API."
126
-
127
- #: admin/dialogs.php:144
128
- msgid "You have active settings that are not recommended."
129
- msgstr ""
130
-
131
- #: admin/dialogs.php:145
132
- msgid ""
133
- "If you will not be changing these settings, you can turn off these warning "
134
- "messages by checking the \"Ignore warning messages\" in the settings below."
135
- msgstr ""
136
-
137
- #: admin/dialogs.php:169
138
- msgid "Version:"
139
- msgstr "גרסה"
140
-
141
- #: admin/dialogs.php:170
142
- msgid "Quick Start Guide"
143
- msgstr "מדריך התחלה מהירה"
144
-
145
- #: admin/dialogs.php:171
146
- msgid "Online User Guide"
147
- msgstr "מדריך מקוון למשתמש"
148
-
149
- #: admin/dialogs.php:172
150
- msgid "FAQs"
151
- msgstr "שאלות נפוצות"
152
-
153
- #: admin/dialogs.php:179
154
- msgid "Thank you for using WP-Members"
155
- msgstr "תודה לך על השימוש בוורדפרס-חברים"
156
-
157
- #: admin/dialogs.php:180
158
- msgid "A plugin developed by"
159
- msgstr "התוסף פותח על-ידי"
160
-
161
- #: admin/dialogs.php:181
162
- msgid "Follow"
163
- msgstr "עקוב אחרינו"
164
-
165
- #: admin/dialogs.php:198 admin/dialogs.php:202
166
- msgid "Latest from RocketGeek"
167
- msgstr "פרסומים אחרונים של RocketGeek"
168
-
169
- #: admin/dialogs.php:219
170
- msgid "Like WP-Members?"
171
- msgstr ""
172
-
173
- #: admin/dialogs.php:220
174
- #, php-format
175
- msgid ""
176
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
177
- "%s rating. Thanks!!"
178
- msgstr ""
179
-
180
- #: admin/dialogs.php:231 admin/dialogs.php:244
181
- msgid "Latest from ButlerBlog"
182
- msgstr "פרסומים אחרונים ב ButlerBlog"
183
-
184
- #: admin/includes/class-wp-members-admin-api.php:256
185
- msgid "Custom email"
186
- msgstr ""
187
-
188
- #: admin/includes/class-wp-members-admin-api.php:257
189
- #: admin/includes/class-wp-members-admin-api.php:259
190
- msgid "Subject"
191
- msgstr ""
192
-
193
- #: admin/includes/class-wp-members-admin-api.php:260
194
- msgid "Body"
195
- msgstr ""
196
-
197
- #: admin/includes/class-wp-members-admin-api.php:262
198
- msgid "Your custom email message content."
199
- msgstr ""
200
-
201
- #: admin/includes/class-wp-members-admin-api.php:340
202
- msgid "Options"
203
- msgstr "אפשרויות"
204
-
205
- #: admin/includes/class-wp-members-admin-api.php:341
206
- msgid "Fields"
207
- msgstr "שדות"
208
-
209
- #: admin/includes/class-wp-members-admin-api.php:342
210
- msgid "Dialogs"
211
- msgstr "תיבות דו-שיח"
212
-
213
- #: admin/includes/class-wp-members-admin-api.php:343
214
- msgid "Emails"
215
- msgstr "אימיילים"
216
-
217
- #: admin/includes/class-wp-members-admin-api.php:359
218
- msgid "New Registration"
219
- msgstr "רישום חדש"
220
-
221
- #: admin/includes/class-wp-members-admin-api.php:368
222
- msgid "Registration is Moderated"
223
- msgstr "ההרשמה מסוננת"
224
-
225
- #: admin/includes/class-wp-members-admin-api.php:374
226
- msgid "Registration is Moderated, User is Approved"
227
- msgstr "ההרשמה מסוננת, המשתמש מאושר"
228
-
229
- #: admin/includes/class-wp-members-admin-api.php:382
230
- msgid "Password Reset"
231
- msgstr "איפוס סיסמה"
232
-
233
- #: admin/includes/class-wp-members-admin-api.php:389
234
- msgid "Retrieve Username"
235
- msgstr "שחזור שם משתמש"
236
-
237
- #: admin/includes/class-wp-members-admin-api.php:397
238
- msgid "Admin Notification"
239
- msgstr "הודעה להנהלה"
240
-
241
- #: admin/includes/class-wp-members-admin-api.php:423
242
- msgid "Restricted post (or page), displays above the login/registration form"
243
- msgstr "פוסט מוגבלת (או עמוד), מוצג מעל טופס כניסה/הרשמה"
244
-
245
- #: admin/includes/class-wp-members-admin-api.php:424
246
- msgid "Username is taken"
247
- msgstr "שם המשתמש כבר תפוס"
248
-
249
- #: admin/includes/class-wp-members-admin-api.php:425
250
- msgid "Email is registered"
251
- msgstr "האימייל כבר רשום"
252
-
253
- #: admin/includes/class-wp-members-admin-api.php:426
254
- msgid "Registration completed"
255
- msgstr "ההרשמה הושלמה"
256
-
257
- #: admin/includes/class-wp-members-admin-api.php:427
258
- msgid "User update"
259
- msgstr "עדכון המשתמש"
260
-
261
- #: admin/includes/class-wp-members-admin-api.php:428
262
- msgid "Passwords did not match"
263
- msgstr "הסיסמאות אינן תואמות"
264
-
265
- #: admin/includes/class-wp-members-admin-api.php:429
266
- msgid "Password changes"
267
- msgstr "החלפת סיסמה"
268
-
269
- #: admin/includes/class-wp-members-admin-api.php:430
270
- msgid "Username or email do not exist when trying to reset forgotten password"
271
- msgstr "שם המשתמש או האימייל אינם קיימים, כאשר מנסים לאפס את הסיסמה"
272
-
273
- #: admin/includes/class-wp-members-admin-api.php:431
274
- msgid "Password reset"
275
- msgstr "איפוס סיסמה"
276
-
277
- #: admin/includes/class-wp-members-admin-api.php:564
278
- msgid "Settings"
279
- msgstr "הגדרות"
280
-
281
- #: admin/includes/class-wp-members-products-admin.php:57
282
- msgid "Slug"
283
- msgstr ""
284
-
285
- #: admin/includes/class-wp-members-products-admin.php:58
286
- msgid "Role"
287
- msgstr ""
288
-
289
- #: admin/includes/class-wp-members-products-admin.php:59
290
- #: admin/includes/class-wp-members-products-admin.php:162
291
- #: admin/tab-fields.php:459 admin/user-export.php:69
292
- msgid "Expires"
293
- msgstr "פג תוקף"
294
-
295
- #: admin/includes/class-wp-members-products-admin.php:60
296
- msgid "Last updated"
297
- msgstr ""
298
-
299
- #: admin/includes/class-wp-members-products-admin.php:80
300
- msgid "No role required"
301
- msgstr ""
302
-
303
- #: admin/includes/class-wp-members-products-admin.php:84
304
- msgid "Does not expire"
305
- msgstr ""
306
-
307
- #: admin/includes/class-wp-members-products-admin.php:120
308
- msgid "Membership Product Details"
309
- msgstr ""
310
-
311
- #: admin/includes/class-wp-members-products-admin.php:142
312
- #: admin/includes/class-wp-members-products-admin.php:167
313
- msgid "Period"
314
- msgstr ""
315
-
316
- #: admin/includes/class-wp-members-products-admin.php:142
317
- msgid "Day"
318
- msgstr ""
319
-
320
- #: admin/includes/class-wp-members-products-admin.php:142
321
- msgid "Week"
322
- msgstr ""
323
-
324
- #: admin/includes/class-wp-members-products-admin.php:142
325
- msgid "Month"
326
- msgstr ""
327
-
328
- #: admin/includes/class-wp-members-products-admin.php:142
329
- msgid "Year"
330
- msgstr ""
331
-
332
- #: admin/includes/class-wp-members-products-admin.php:148
333
- msgid "Name (slug)"
334
- msgstr ""
335
-
336
- #: admin/includes/class-wp-members-products-admin.php:153
337
- msgid "Role Required?"
338
- msgstr ""
339
-
340
- #: admin/includes/class-wp-members-products-admin.php:156
341
- msgid "No Role"
342
- msgstr ""
343
-
344
- #: admin/includes/class-wp-members-products-admin.php:164
345
- #: admin/includes/class-wp-members-products-admin.php:166
346
- msgid "Number"
347
- msgstr ""
348
-
349
- #: admin/includes/class-wp-members-products-admin.php:245
350
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
351
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
352
- #: inc/deprecated.php:622
353
- msgid "None"
354
- msgstr "ללא"
355
-
356
- #: admin/includes/class-wp-members-products-admin.php:251
357
- msgid "Limit access to:"
358
- msgstr ""
359
-
360
- #: admin/includes/class-wp-members-products-admin.php:321
361
- msgid "Required Membership"
362
- msgstr ""
363
-
364
- #: admin/includes/class-wp-members-products-admin.php:360
365
- msgid "Membership"
366
- msgstr ""
367
-
368
- #: admin/post.php:45 admin/post.php:48
369
- msgid "Unblock"
370
- msgstr "ביטול חסימה"
371
-
372
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
373
- msgid "Block"
374
- msgstr "לחסום"
375
-
376
- #: admin/post.php:47 admin/post.php:50
377
- msgid "Hide"
378
- msgstr "להסתיר"
379
-
380
- #: admin/post.php:138
381
- #, php-format
382
- msgid "%s blocked"
383
- msgstr ""
384
-
385
- #: admin/post.php:138
386
- #, php-format
387
- msgid "%s unblocked"
388
- msgstr ""
389
-
390
- #: admin/post.php:177
391
- #, php-format
392
- msgid "%s Restriction"
393
- msgstr "הגבלת %s"
394
-
395
- #: admin/post.php:206
396
- msgid "Unblocked"
397
- msgstr ""
398
-
399
- #: admin/post.php:207
400
- msgid "Blocked"
401
- msgstr ""
402
-
403
- #: admin/post.php:208
404
- msgid "Hidden"
405
- msgstr ""
406
-
407
- #: admin/post.php:214
408
- msgid "Status:"
409
- msgstr ""
410
-
411
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
412
- msgid "Edit"
413
- msgstr "עריכה"
414
-
415
- #: admin/post.php:229
416
- msgid "Ok"
417
- msgstr ""
418
-
419
- #: admin/post.php:230
420
- msgid "Cancel"
421
- msgstr ""
422
-
423
- #: admin/post.php:314
424
- msgid "Status"
425
- msgstr ""
426
-
427
- #: admin/tab-about.php:34 admin/tab-about.php:54
428
- msgid "About WP-Members"
429
- msgstr ""
430
-
431
- #: admin/tab-captcha.php:66
432
- #, php-format
433
- msgid "See the %sUsers Guide on CAPTCHA%s."
434
- msgstr ""
435
-
436
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
437
- #: admin/tab-fields.php:153 admin/tab-options.php:82
438
- msgid "Need help?"
439
- msgstr "צריך עזרה?"
440
-
441
- #: admin/tab-captcha.php:84
442
- msgid "Manage reCAPTCHA Options"
443
- msgstr "ניהול אפשרויות קוד אימות של reCAPTCHA"
444
-
445
- #: admin/tab-captcha.php:98
446
- msgid ""
447
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
448
- "while blocking spam on your blog."
449
- msgstr "reCAPTCHA הוא קוד אימות חינמי, לחסימת ספאם באתר שלכם."
450
-
451
- #: admin/tab-captcha.php:99
452
- #, php-format
453
- msgid ""
454
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
455
- "that they are a human. This verifies that they are not a spambot while also "
456
- "correcting the automatic scans of old books. So you get less spam, and the "
457
- "world gets accurately digitized books. Everybody wins! For details, visit "
458
- "the %s reCAPTCHA website%s"
459
- msgstr ""
460
- "reCAPTCHA מבקש להקליד שתי מילים סרוקות מספר כדי להוכיח אנושיות. זה מאמת "
461
- "שהשולח אינו רובוט ספאם בקרו ב %sreCaptcha%s"
462
-
463
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
464
- msgid "reCAPTCHA Keys"
465
- msgstr "מפתחות reCAPTCHA"
466
-
467
- #: admin/tab-captcha.php:106
468
- #, php-format
469
- msgid ""
470
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
471
- "key. You can sign up for a %s free reCAPTCHA key%s"
472
- msgstr ""
473
- "קוד אימות של reCAPTCHA צריך מפתח API המורכב מ\"מפתח ציבורי\" ו\"מפתח פרטי\". "
474
- "אפשר להירשם לקבלת %sמפתח reCAPTCHA ללא תשלום %s"
475
-
476
- #: admin/tab-captcha.php:107
477
- msgid "Public Key"
478
- msgstr "מפתח ציבורי"
479
-
480
- #: admin/tab-captcha.php:108
481
- msgid "Private Key"
482
- msgstr "מפתח פרטי"
483
-
484
- #: admin/tab-captcha.php:112
485
- msgid "Choose Theme"
486
- msgstr "בחירת תבנית"
487
-
488
- #: admin/tab-captcha.php:115
489
- msgid "Red"
490
- msgstr "אדום"
491
-
492
- #: admin/tab-captcha.php:116
493
- msgid "White"
494
- msgstr "לבן"
495
-
496
- #: admin/tab-captcha.php:117
497
- msgid "Black Glass"
498
- msgstr "זכוכית שחורה"
499
-
500
- #: admin/tab-captcha.php:118
501
- msgid "Clean"
502
- msgstr "נקי"
503
-
504
- #: admin/tab-captcha.php:132
505
- #, php-format
506
- msgid ""
507
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
508
- "key. You can sign up for a %s free reCAPTCHA key%s"
509
- msgstr ""
510
- "קוד אימות של reCAPTCHA דורש מפתח API, המורכב מ \"מפתח אתר\" ו \"מפתח סודי\". "
511
- "באפשרותך להירשם לקבלת %sמפתחות reCAPTCHA ללא תשלום%s"
512
-
513
- #: admin/tab-captcha.php:133
514
- msgid "Site Key"
515
- msgstr "מפתח אתר"
516
-
517
- #: admin/tab-captcha.php:134
518
- msgid "Secret Key"
519
- msgstr "מפתח סודי"
520
-
521
- #: admin/tab-captcha.php:165
522
- msgid "Characters for image"
523
- msgstr "תווים עבור התמונה"
524
-
525
- #: admin/tab-captcha.php:169
526
- msgid "Number of characters"
527
- msgstr "מספר התווים"
528
-
529
- #: admin/tab-captcha.php:173
530
- msgid "Image dimensions"
531
- msgstr "גודל התמונה"
532
-
533
- #: admin/tab-captcha.php:174
534
- msgid "Width"
535
- msgstr "רוחב"
536
-
537
- #: admin/tab-captcha.php:174
538
- msgid "Height"
539
- msgstr "גובה"
540
-
541
- #: admin/tab-captcha.php:177
542
- msgid "Font color of characters"
543
- msgstr "צבע הגופן של התווים"
544
-
545
- #: admin/tab-captcha.php:181
546
- msgid "Background color of image"
547
- msgstr "צבע הרקע של התמונה"
548
-
549
- #: admin/tab-captcha.php:185
550
- msgid "Font size"
551
- msgstr "גודל הגופן"
552
-
553
- #: admin/tab-captcha.php:189
554
- msgid "Width between characters"
555
- msgstr "המרווח בין התווים"
556
-
557
- #: admin/tab-captcha.php:193
558
- msgid "Image type"
559
- msgstr "סוג התמונה"
560
-
561
- #: admin/tab-captcha.php:207
562
- msgid ""
563
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
564
- "installed and activated."
565
- msgstr ""
566
- "כדי להשתמש בקוד אימות פשוט באמת, חובה להתקין ולהפעיל את התוסף Really Simple "
567
- "CAPTCHA."
568
-
569
- #: admin/tab-captcha.php:231
570
- msgid "Update CAPTCHA Settings"
571
- msgstr "עדכון הגדרות קוד האימות"
572
-
573
- #: admin/tab-captcha.php:301
574
- msgid "CAPTCHA was updated for WP-Members"
575
- msgstr "קוד האימות עבור וורדפרס-חברים עודכן"
576
-
577
- #: admin/tab-dialogs.php:67
578
- msgid "Dialogs and Error Messages"
579
- msgstr "הודעות דו-שיח ושגיאה"
580
-
581
- #: admin/tab-dialogs.php:69
582
- #, php-format
583
- msgid ""
584
- "You can customize the text for dialogs and error messages. Simple HTML is "
585
- "allowed %s etc."
586
- msgstr ""
587
- "באפשרותך להתאים אישית את הטקסט עבור תיבות דו-שיח והודעות שגיאה. אפשר להשתמש "
588
- "ב HTML פשוט %s ועוד."
589
-
590
- #: admin/tab-dialogs.php:80
591
- msgid "Terms of Service (TOS)"
592
- msgstr "תנאי השימוש"
593
-
594
- #: admin/tab-dialogs.php:87
595
- msgid "Update Dialogs"
596
- msgstr "עדכון דו-שיח"
597
-
598
- #: admin/tab-dialogs.php:123
599
- msgid "WP-Members dialogs were updated"
600
- msgstr "הדו-שיח של וורדפרס-חברים עודכן"
601
-
602
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
603
- msgid "WP-Members Dropin settings were updated"
604
- msgstr ""
605
-
606
- #: admin/tab-dropins.php:204
607
- msgid "Manage Dropins"
608
- msgstr ""
609
-
610
- #: admin/tab-dropins.php:205
611
- msgid "Current dropin folder: "
612
- msgstr ""
613
-
614
- #: admin/tab-dropins.php:206
615
- msgid ""
616
- "You can change location of the dropin folder using the "
617
- "<code>wpmem_dropin_folder</code> filter."
618
- msgstr ""
619
-
620
- #: admin/tab-dropins.php:269
621
- msgid "Name"
622
- msgstr ""
623
-
624
- #: admin/tab-dropins.php:270
625
- msgid "File"
626
- msgstr ""
627
-
628
- #: admin/tab-dropins.php:271
629
- msgid "Version"
630
- msgstr ""
631
-
632
- #: admin/tab-dropins.php:272
633
- msgid "Description"
634
- msgstr ""
635
-
636
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
637
- msgid "Save Settings"
638
- msgstr ""
639
-
640
- #: admin/tab-emails.php:58
641
- msgid "Email Messages"
642
- msgstr "הודעות אימייל"
643
-
644
- #: admin/tab-emails.php:61
645
- msgid "You can customize the content of the emails sent by the plugin."
646
- msgstr "אפשר לשנות את תוכן האימיילים הנשלחים על-ידי התוסף."
647
-
648
- #: admin/tab-emails.php:63
649
- msgid "A list of shortcodes is available here."
650
- msgstr "להלן רשימת קיצורי הקוד הזמינים"
651
-
652
- #: admin/tab-emails.php:70
653
- msgid "Set a custom email address"
654
- msgstr "הגדרת כתובת אימייל"
655
-
656
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
657
- #: admin/tab-fields.php:179
658
- msgid "(optional)"
659
- msgstr "(רשות)"
660
-
661
- #: admin/tab-emails.php:74
662
- msgid "Set a custom email name"
663
- msgstr "קביעת שם אימייל"
664
-
665
- #: admin/tab-emails.php:85
666
- msgid "Email Signature"
667
- msgstr "חתימת האימייל"
668
-
669
- #: admin/tab-emails.php:93
670
- msgid "Update Emails"
671
- msgstr "עדכון האימיילים"
672
-
673
- #: admin/tab-emails.php:161
674
- msgid "WP-Members emails were updated"
675
- msgstr "האימיילים של וורדפרס-חברים עודכנו"
676
-
677
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
678
- msgid "No fields selected for deletion"
679
- msgstr ""
680
-
681
- #: admin/tab-fields.php:115
682
- msgid "Are you sure you want to delete the following fields?"
683
- msgstr ""
684
-
685
- #: admin/tab-fields.php:141
686
- msgid "Fields deleted"
687
- msgstr ""
688
-
689
- #: admin/tab-fields.php:155
690
- msgid "Field Manager Documentation"
691
- msgstr ""
692
-
693
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
694
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
695
- #: inc/deprecated.php:646 inc/wp-registration.php:57
696
- #: inc/wp-registration.php:231
697
- msgid "(required)"
698
- msgstr "(חובה)"
699
-
700
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
701
- msgid "Edit Field"
702
- msgstr "עריכת השדה"
703
-
704
- #: admin/tab-fields.php:185
705
- msgid "Add a Field"
706
- msgstr "הוספת שדה"
707
-
708
- #: admin/tab-fields.php:190
709
- msgid "Field Label"
710
- msgstr "תווית השדה"
711
-
712
- #: admin/tab-fields.php:192
713
- msgid "The name of the field as it will be displayed to the user."
714
- msgstr "השם של השדה כפי שהוא יוצג בפני המשתמש."
715
-
716
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
717
- msgid "Meta Key"
718
- msgstr ""
719
-
720
- #: admin/tab-fields.php:201
721
- msgid ""
722
- "The database meta value for the field. It must be unique and contain no "
723
- "spaces (underscores are ok)."
724
- msgstr ""
725
- "ערך תיאור meta עבור השדה. הוא חייב להיות ייחודי, ללא רווחים (אפשר להשתמש "
726
- "במקפים תחתונים)."
727
-
728
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
729
- msgid "Field Type"
730
- msgstr "סוג השדה"
731
-
732
- #: admin/tab-fields.php:211
733
- msgid "text"
734
- msgstr "טקסט"
735
-
736
- #: admin/tab-fields.php:212
737
- msgid "email"
738
- msgstr "אימייל"
739
-
740
- #: admin/tab-fields.php:213
741
- msgid "textarea"
742
- msgstr "אזור טקסט"
743
-
744
- #: admin/tab-fields.php:214
745
- msgid "checkbox"
746
- msgstr "תיבת סימון"
747
-
748
- #: admin/tab-fields.php:215
749
- msgid "multiple checkbox"
750
- msgstr "תיבות סימון מרובות"
751
-
752
- #: admin/tab-fields.php:216
753
- msgid "select (dropdown)"
754
- msgstr "בחירה מרשימה נפתחת"
755
-
756
- #: admin/tab-fields.php:217
757
- msgid "multiple select"
758
- msgstr "בחירה מרובה ברשימה נפתחת"
759
-
760
- #: admin/tab-fields.php:218
761
- msgid "radio group"
762
- msgstr "קבוצת לחצני רדיו"
763
-
764
- #: admin/tab-fields.php:219
765
- msgid "password"
766
- msgstr "סיסמה"
767
-
768
- #: admin/tab-fields.php:220
769
- msgid "image"
770
- msgstr "תמונה"
771
-
772
- #: admin/tab-fields.php:221
773
- msgid "file"
774
- msgstr "קובץ"
775
-
776
- #: admin/tab-fields.php:222
777
- msgid "url"
778
- msgstr "כתובת URL"
779
-
780
- #: admin/tab-fields.php:223
781
- msgid "number"
782
- msgstr ""
783
-
784
- #: admin/tab-fields.php:224
785
- msgid "date"
786
- msgstr ""
787
-
788
- #: admin/tab-fields.php:225
789
- msgid "hidden"
790
- msgstr "נסתר"
791
-
792
- #: admin/tab-fields.php:227
793
- msgid "membership"
794
- msgstr ""
795
-
796
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
797
- msgid "Display?"
798
- msgstr "להציג?"
799
-
800
- #: admin/tab-fields.php:237
801
- msgid "This field is always displayed"
802
- msgstr ""
803
-
804
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
805
- msgid "Required?"
806
- msgstr "חובה?"
807
-
808
- #: admin/tab-fields.php:246
809
- msgid "This field is always required"
810
- msgstr ""
811
-
812
- #: admin/tab-fields.php:252
813
- msgid "Allow HTML?"
814
- msgstr ""
815
-
816
- #: admin/tab-fields.php:259
817
- msgid "Placeholder"
818
- msgstr ""
819
-
820
- #: admin/tab-fields.php:267
821
- msgid "Pattern"
822
- msgstr ""
823
-
824
- #: admin/tab-fields.php:273
825
- msgid "Title"
826
- msgstr ""
827
-
828
- #: admin/tab-fields.php:282
829
- msgid "Minimum Value"
830
- msgstr ""
831
-
832
- #: admin/tab-fields.php:286
833
- msgid "Maximum Value"
834
- msgstr ""
835
-
836
- #: admin/tab-fields.php:294
837
- msgid "Rows"
838
- msgstr ""
839
-
840
- #: admin/tab-fields.php:298
841
- msgid "Columns"
842
- msgstr ""
843
-
844
- #: admin/tab-fields.php:306
845
- msgid "Accepted file types:"
846
- msgstr "סוגי הקבצים המקובלים:"
847
-
848
- #: admin/tab-fields.php:311
849
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
850
- msgstr "את סוגי הקבצים המקובלים יש להגדיר כך:jpg|jpeg|png|gif"
851
-
852
- #: admin/tab-fields.php:318
853
- msgid "Checked by default?"
854
- msgstr "לסמן כברירת מחדל?"
855
-
856
- #: admin/tab-fields.php:322
857
- msgid "Stored value if checked:"
858
- msgstr "הערך המאוחסן אם מסומi:"
859
-
860
- #: admin/tab-fields.php:343
861
- msgid "Stored values delimiter:"
862
- msgstr ""
863
-
864
- #: admin/tab-fields.php:352
865
- msgid "Values (Displayed|Stored):"
866
- msgstr ""
867
-
868
- #: admin/tab-fields.php:377
869
- msgid "Options should be Option Name|option_value,"
870
- msgstr "האפשרויות צריכות להיות שם אפשרות | option_value,"
871
-
872
- #: admin/tab-fields.php:381
873
- msgid "Visit plugin site for more information"
874
- msgstr "נא לבקר באתר התוסף למידע נוסף"
875
-
876
- #: admin/tab-fields.php:388
877
- msgid "Value"
878
- msgstr ""
879
-
880
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
881
- msgid "Add Field"
882
- msgstr "הוספת שדה"
883
-
884
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
885
- msgid "Return to Fields Table"
886
- msgstr ""
887
-
888
- #: admin/tab-fields.php:449
889
- msgid "Drag and drop to reorder fields"
890
- msgstr ""
891
-
892
- #: admin/tab-fields.php:455
893
- msgid "Registration Date"
894
- msgstr "תאריך ההרשמה"
895
-
896
- #: admin/tab-fields.php:456
897
- msgid "Active"
898
- msgstr "פעיל"
899
-
900
- #: admin/tab-fields.php:457
901
- msgid "Registration IP"
902
- msgstr "כתובת ה IP בהרשמה"
903
-
904
- #: admin/tab-fields.php:458
905
- msgid "Subscription Type"
906
- msgstr ""
907
-
908
- #: admin/tab-fields.php:460 admin/user-export.php:58
909
- msgid "User ID"
910
- msgstr ""
911
-
912
- #: admin/tab-fields.php:493
913
- msgid "Manage Fields"
914
- msgstr "ניהול שדות"
915
-
916
- #: admin/tab-fields.php:532
917
- msgid "delete"
918
- msgstr ""
919
-
920
- #: admin/tab-fields.php:546
921
- msgid "Display Label"
922
- msgstr ""
923
-
924
- #: admin/tab-fields.php:552
925
- msgid "Users Screen"
926
- msgstr "מסך המשתמשים"
927
-
928
- #: admin/tab-fields.php:553
929
- msgid "Users Search"
930
- msgstr ""
931
-
932
- #: admin/tab-fields.php:555
933
- msgid "Sort"
934
- msgstr ""
935
-
936
- #: admin/tab-fields.php:596
937
- msgid "Delete Selected"
938
- msgstr ""
939
-
940
- #: admin/tab-fields.php:738
941
- msgid "WP-Members fields were updated"
942
- msgstr "השדות של וורדפרס-חברים עודכנו"
943
-
944
- #: admin/tab-fields.php:760
945
- msgid "Field Label is required. Nothing was updated."
946
- msgstr ""
947
-
948
- #: admin/tab-fields.php:761
949
- msgid "Meta Key is required. Nothing was updated."
950
- msgstr ""
951
-
952
- #: admin/tab-fields.php:763
953
- msgid "Meta Key must contain only letters, numbers, and underscores"
954
- msgstr ""
955
-
956
- #: admin/tab-fields.php:770
957
- msgid "A field with that meta key already exists"
958
- msgstr ""
959
-
960
- #: admin/tab-fields.php:775
961
- #, php-format
962
- msgid ""
963
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
964
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
965
- "Field was not added."
966
- msgstr ""
967
- "מצטערים, %s הוא <a href=\"https://codex.wordpress.org/Function_Reference/"
968
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">מונח שמור</a>. השדה לא "
969
- "התווסף."
970
-
971
- #: admin/tab-fields.php:816
972
- msgid "Checked value is required for checkboxes. Nothing was updated."
973
- msgstr "ערך מסומן הוא חובה עבור תיבות סימון. שום דבר לא עודכן."
974
-
975
- #: admin/tab-fields.php:847
976
- msgid "A value is required for hidden fields. Nothing was updated."
977
- msgstr ""
978
-
979
- #: admin/tab-fields.php:854
980
- #, php-format
981
- msgid "%s was added"
982
- msgstr ""
983
-
984
- #: admin/tab-fields.php:867
985
- #, php-format
986
- msgid "%s was updated"
987
- msgstr ""
988
-
989
- #: admin/tab-fields.php:909
990
- msgid "Form field order updated."
991
- msgstr ""
992
-
993
- #: admin/tab-options.php:60
994
- #, php-format
995
- msgid "%sChange%s or %sFilter%s this address"
996
- msgstr ""
997
-
998
- #: admin/tab-options.php:61
999
- #, php-format
1000
- msgid "See the %sUsers Guide on plugin options%s."
1001
- msgstr ""
1002
-
1003
- #: admin/tab-options.php:66
1004
- msgid "Posts"
1005
- msgstr ""
1006
-
1007
- #: admin/tab-options.php:67 admin/tab-options.php:215
1008
- msgid "Pages"
1009
- msgstr "עמודים"
1010
-
1011
- #: admin/tab-options.php:94
1012
- msgid "Manage Options"
1013
- msgstr "ניהול האפשרויות"
1014
-
1015
- #: admin/tab-options.php:98
1016
- msgid "Content"
1017
- msgstr ""
1018
-
1019
- #: admin/tab-options.php:109
1020
- msgid "Content Blocking"
1021
- msgstr ""
1022
-
1023
- #: admin/tab-options.php:113
1024
- msgid "Do not block"
1025
- msgstr "לא לחסום"
1026
-
1027
- #: admin/tab-options.php:127
1028
- msgid "Show Excerpts"
1029
- msgstr "להציג תקצירים"
1030
-
1031
- #: admin/tab-options.php:128
1032
- msgid "Show Login Form"
1033
- msgstr "להציג טופס כניסה"
1034
-
1035
- #: admin/tab-options.php:129
1036
- msgid "Show Registration Form"
1037
- msgstr "להציג טופס הרשמה"
1038
-
1039
- #: admin/tab-options.php:130
1040
- msgid "Auto Excerpt:"
1041
- msgstr "תקציר אוטומטי:"
1042
-
1043
- #: admin/tab-options.php:152
1044
- msgid "Number of words in excerpt:"
1045
- msgstr "מספר המילים בתקציר:"
1046
-
1047
- #: admin/tab-options.php:153
1048
- msgid "Custom read more link (optional):"
1049
- msgstr ""
1050
-
1051
- #: admin/tab-options.php:167
1052
- msgid "Time-based expiration"
1053
- msgstr "תפוגה מבוססת זמן"
1054
-
1055
- #: admin/tab-options.php:167
1056
- msgid "Allows for access to expire"
1057
- msgstr "מאפשר לגישה לפוג"
1058
-
1059
- #: admin/tab-options.php:168
1060
- msgid "Trial period"
1061
- msgstr "תקופת ניסיון"
1062
-
1063
- #: admin/tab-options.php:168
1064
- msgid "Allows for a trial period"
1065
- msgstr "מאפשר תקופת ניסיון"
1066
-
1067
- #: admin/tab-options.php:170
1068
- msgid "Subscription Settings"
1069
- msgstr ""
1070
-
1071
- #: admin/tab-options.php:180
1072
- msgid "Other Settings"
1073
- msgstr ""
1074
-
1075
- #: admin/tab-options.php:186
1076
- msgid "Enable Products"
1077
- msgstr ""
1078
-
1079
- #: admin/tab-options.php:186
1080
- msgid "Enables creation of different membership products"
1081
- msgstr ""
1082
-
1083
- #: admin/tab-options.php:187
1084
- msgid "Clone menus"
1085
- msgstr ""
1086
-
1087
- #: admin/tab-options.php:187
1088
- msgid "Enables logged in menus"
1089
- msgstr ""
1090
-
1091
- #: admin/tab-options.php:188
1092
- msgid "Notify admin"
1093
- msgstr "להודיע למנהל"
1094
-
1095
- #: admin/tab-options.php:188
1096
- #, php-format
1097
- msgid "Notify %s for each new registration? %s"
1098
- msgstr "להודיע ל %s מנהל על כל הרשמה חדשה? %s"
1099
-
1100
- #: admin/tab-options.php:189
1101
- msgid "Moderate registration"
1102
- msgstr "בקרת הרשמה"
1103
-
1104
- #: admin/tab-options.php:189
1105
- msgid "Holds new registrations for admin approval"
1106
- msgstr "עוצר הרשמת משתמשים חדשים עד לאישור מנהל"
1107
-
1108
- #: admin/tab-options.php:190
1109
- msgid "Ignore warning messages"
1110
- msgstr "להתעלם מהודעות אזהרה"
1111
-
1112
- #: admin/tab-options.php:190
1113
- msgid "Ignores WP-Members warning messages in the admin panel"
1114
- msgstr "להתעלם מהודעות אזהרה של וורדפרס-חברים בלוח הבקרה"
1115
-
1116
- #: admin/tab-options.php:201
1117
- msgid "Attribution"
1118
- msgstr "ייחוס"
1119
-
1120
- #: admin/tab-options.php:203
1121
- msgid ""
1122
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1123
- msgstr "ייחוס תתקבל בברכה! להציג \"מופעל על ידי\" על הקישור בטופס ההרשמה?"
1124
-
1125
- #: admin/tab-options.php:206
1126
- msgid "Enable CAPTCHA"
1127
- msgstr "הפעלת קוד אימות"
1128
-
1129
- #: admin/tab-options.php:211
1130
- msgid "reCAPTCHA"
1131
- msgstr ""
1132
-
1133
- #: admin/tab-options.php:212
1134
- msgid "Really Simple CAPTCHA"
1135
- msgstr ""
1136
-
1137
- #: admin/tab-options.php:219
1138
- msgid "Login Page:"
1139
- msgstr "עמוד כניסה"
1140
-
1141
- #: admin/tab-options.php:222
1142
- msgid "Specify a login page (optional)"
1143
- msgstr "נא לציין עמוד כניסה (רשות)"
1144
-
1145
- #: admin/tab-options.php:231
1146
- msgid "Register Page:"
1147
- msgstr "עמוד ההרשמה"
1148
-
1149
- #: admin/tab-options.php:234
1150
- msgid "For creating a register link in the login form"
1151
- msgstr "כדי ליצור קישור להרשמה בטופס הכניסה"
1152
-
1153
- #: admin/tab-options.php:243
1154
- msgid "User Profile Page:"
1155
- msgstr "עמוד פרופיל המשתמש:"
1156
-
1157
- #: admin/tab-options.php:246
1158
- msgid "For creating a forgot password link in the login form"
1159
- msgstr "כדי ליצור קישור לאיפוס סיסמה בטופס הכניסה"
1160
-
1161
- #: admin/tab-options.php:252 admin/tab-options.php:254
1162
- msgid "Stylesheet"
1163
- msgstr "גיליון עיצוב"
1164
-
1165
- #: admin/tab-options.php:263
1166
- msgid "Custom Stylesheet:"
1167
- msgstr "גיליון עיצוב מותאם אישית:"
1168
-
1169
- #: admin/tab-options.php:268 admin/tab-options.php:295
1170
- msgid "Update Settings"
1171
- msgstr "עדכן ההגדרות"
1172
-
1173
- #: admin/tab-options.php:276
1174
- msgid "Custom Post Types"
1175
- msgstr "סוגי פוסט"
1176
-
1177
- #: admin/tab-options.php:282
1178
- msgid "Add to WP-Members Settings"
1179
- msgstr ""
1180
-
1181
- #: admin/tab-options.php:312
1182
- msgid "Close"
1183
- msgstr ""
1184
-
1185
- #: admin/tab-options.php:330 admin/tab-options.php:331
1186
- msgid "WP-Members Settings"
1187
- msgstr ""
1188
-
1189
- #: admin/tab-options.php:332
1190
- msgid ""
1191
- "The following is your WP-Members settings information if needed for support."
1192
- msgstr ""
1193
-
1194
- #: admin/tab-options.php:359
1195
- msgid "Click to Copy"
1196
- msgstr ""
1197
-
1198
- #: admin/tab-options.php:435
1199
- msgid "Custom Post Type settings were updated"
1200
- msgstr "הגדרות סוגי פוסט עודכנו"
1201
-
1202
- #: admin/tab-options.php:551
1203
- msgid "WP-Members settings were updated"
1204
- msgstr "הגדרות וורדפרס-חברים עודכנו"
1205
-
1206
- #: admin/tab-options.php:621 admin/tab-options.php:651
1207
- msgid "USE CUSTOM URL BELOW"
1208
- msgstr "להשתמש בכתובת URL מותאמת אישית להלן"
1209
-
1210
- #: admin/tab-options.php:640
1211
- msgid "Select a page"
1212
- msgstr "בחירת עמוד"
1213
-
1214
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1215
- #: inc/class-wp-members.php:1255
1216
- msgid "Username"
1217
- msgstr "שם משתמש"
1218
-
1219
- #: admin/user-export.php:65
1220
- msgid "Activated?"
1221
- msgstr "פעיל?"
1222
-
1223
- #: admin/user-export.php:68 admin/users.php:317
1224
- msgid "Subscription"
1225
- msgstr "מנוי"
1226
-
1227
- #: admin/user-export.php:71
1228
- msgid "Registered"
1229
- msgstr "רשום"
1230
-
1231
- #: admin/user-export.php:72
1232
- msgid "IP"
1233
- msgstr "כתובת IP"
1234
-
1235
- #: admin/user-export.php:135
1236
- msgid "Yes"
1237
- msgstr "כן"
1238
-
1239
- #: admin/user-export.php:135 admin/users.php:399
1240
- msgid "No"
1241
- msgstr "לא"
1242
-
1243
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1244
- msgid "Activate"
1245
- msgstr "הפעלה"
1246
-
1247
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1248
- msgid "Deactivate"
1249
- msgstr ""
1250
-
1251
- #: admin/users.php:52 admin/users.php:57
1252
- msgid "Export"
1253
- msgstr "יצוא"
1254
-
1255
- #: admin/users.php:58 admin/users.php:109
1256
- msgid "Export All Users"
1257
- msgstr "יצוא כל המשתמשים"
1258
-
1259
- #: admin/users.php:158
1260
- #, php-format
1261
- msgid "%s users activated"
1262
- msgstr ""
1263
-
1264
- #: admin/users.php:158
1265
- #, php-format
1266
- msgid "%s users deactivated"
1267
- msgstr ""
1268
-
1269
- #: admin/users.php:161
1270
- msgid "No users selected"
1271
- msgstr ""
1272
-
1273
- #: admin/users.php:181
1274
- #, php-format
1275
- msgid "%s activated"
1276
- msgstr ""
1277
-
1278
- #: admin/users.php:186
1279
- #, php-format
1280
- msgid "%s deactivated"
1281
- msgstr ""
1282
-
1283
- #: admin/users.php:190
1284
- msgid "That user is already active"
1285
- msgstr ""
1286
-
1287
- #: admin/users.php:315
1288
- msgid "Pending"
1289
- msgstr ""
1290
-
1291
- #: admin/users.php:316
1292
- msgid "Trial"
1293
- msgstr ""
1294
-
1295
- #: admin/users.php:318
1296
- msgid "Expired"
1297
- msgstr ""
1298
-
1299
- #: admin/users.php:321
1300
- msgid "Not Activated"
1301
- msgstr ""
1302
-
1303
- #: admin/users.php:322
1304
- msgid "Deactivated"
1305
- msgstr ""
1306
-
1307
- #: admin/users.php:324
1308
- msgid "Not Exported"
1309
- msgstr ""
1310
-
1311
- #: inc/api.php:304 inc/class-wp-members.php:1296
1312
- msgid "log in"
1313
- msgstr "כניסה"
1314
-
1315
- #: inc/api.php:305
1316
- msgid "log out"
1317
- msgstr ""
1318
-
1319
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1320
- #: inc/wp-registration.php:77
1321
- #, php-format
1322
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1323
- msgstr ""
1324
-
1325
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1326
- #: inc/wp-registration.php:78
1327
- msgid "TOS"
1328
- msgstr "תנאי השימוש"
1329
-
1330
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1331
- #: wp-members-tos.php:23
1332
- msgid "Terms of Service"
1333
- msgstr "תנאי שימוש"
1334
-
1335
- #: inc/class-wp-members-products.php:212
1336
- msgid "Product"
1337
- msgstr ""
1338
-
1339
- #: inc/class-wp-members-products.php:213
1340
- msgid "Products"
1341
- msgstr ""
1342
-
1343
- #: inc/class-wp-members-products.php:218
1344
- msgid "Memberships"
1345
- msgstr ""
1346
-
1347
- #: inc/class-wp-members-products.php:219
1348
- #, php-format
1349
- msgid "All %s"
1350
- msgstr ""
1351
-
1352
- #: inc/class-wp-members-products.php:220
1353
- #, php-format
1354
- msgid "Add New %s"
1355
- msgstr ""
1356
-
1357
- #: inc/class-wp-members-products.php:221
1358
- msgid "Add New"
1359
- msgstr ""
1360
-
1361
- #: inc/class-wp-members-products.php:222
1362
- #, php-format
1363
- msgid "New %s"
1364
- msgstr ""
1365
-
1366
- #: inc/class-wp-members-products.php:223
1367
- #, php-format
1368
- msgid "Edit %s"
1369
- msgstr ""
1370
-
1371
- #: inc/class-wp-members-products.php:224
1372
- #, php-format
1373
- msgid "Update %s"
1374
- msgstr ""
1375
-
1376
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1377
- #, php-format
1378
- msgid "View %s"
1379
- msgstr ""
1380
-
1381
- #: inc/class-wp-members-products.php:227
1382
- #, php-format
1383
- msgid "Search %s"
1384
- msgstr ""
1385
-
1386
- #: inc/class-wp-members-products.php:228
1387
- msgid "Not found"
1388
- msgstr ""
1389
-
1390
- #: inc/class-wp-members-products.php:229
1391
- msgid "Not found in Trash"
1392
- msgstr ""
1393
-
1394
- #: inc/class-wp-members-products.php:230
1395
- msgid "Insert into item"
1396
- msgstr ""
1397
-
1398
- #: inc/class-wp-members-products.php:231
1399
- #, php-format
1400
- msgid "Save %s Details"
1401
- msgstr ""
1402
-
1403
- #: inc/class-wp-members-products.php:234
1404
- msgid "Membership Product"
1405
- msgstr ""
1406
-
1407
- #: inc/class-wp-members-products.php:235
1408
- msgid "WP-Members Membership Products"
1409
- msgstr ""
1410
-
1411
- #: inc/class-wp-members-shortcodes.php:135
1412
- msgid ""
1413
- "This is a generic message to display the form message dialog in the "
1414
- "Customizer."
1415
- msgstr ""
1416
-
1417
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1418
- #: inc/deprecated.php:180
1419
- msgid "There was an error with the CAPTCHA form."
1420
- msgstr "היתה שגיאה בטופס קוד האימות."
1421
-
1422
- #: inc/class-wp-members-shortcodes.php:676
1423
- msgid "Click here to log out."
1424
- msgstr "נא ללחוץ כאן כדי להתנתק."
1425
-
1426
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1427
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1428
- msgid "Register"
1429
- msgstr "הרשמה"
1430
-
1431
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1432
- msgid "Log In"
1433
- msgstr "כניסה"
1434
-
1435
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1436
- msgid "WP-Members Additional Fields"
1437
- msgstr "שדות נוספים של וורדפרס-חברים"
1438
-
1439
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1440
- msgid "Additional Information"
1441
- msgstr "מידע נוסף"
1442
-
1443
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1444
- msgid "Activate this user?"
1445
- msgstr "לאשר את המשתמש הזה?"
1446
-
1447
- #: inc/class-wp-members-user-profile.php:453
1448
- msgid "Reactivate this user?"
1449
- msgstr "לאשר מחדש את המשתמש הזה?"
1450
-
1451
- #: inc/class-wp-members-user-profile.php:458
1452
- msgid "Deactivate this user?"
1453
- msgstr "לבטל את המשתמש הזה?"
1454
-
1455
- #: inc/class-wp-members-user-profile.php:507
1456
- msgid "IP @ registration"
1457
- msgstr "כתובת IP והרשמה"
1458
-
1459
- #: inc/class-wp-members-user-profile.php:526
1460
- msgid "Product Access"
1461
- msgstr ""
1462
-
1463
- #: inc/class-wp-members-user-profile.php:534
1464
- msgid "Enable"
1465
- msgstr ""
1466
-
1467
- #: inc/class-wp-members-user-profile.php:535
1468
- msgid "Disable"
1469
- msgstr ""
1470
-
1471
- #: inc/class-wp-members-user-profile.php:541
1472
- msgid "Expires:"
1473
- msgstr ""
1474
-
1475
- #: inc/class-wp-members-user-profile.php:543
1476
- msgid "Enabled"
1477
- msgstr ""
1478
-
1479
- #: inc/class-wp-members-user.php:712
1480
- msgid "<strong>ERROR</strong>: User has not been activated."
1481
- msgstr "<strong>שגיאה</strong>: המשתמש אינו פעיל."
1482
-
1483
- #: inc/class-wp-members-widget.php:24
1484
- msgid "Displays the WP-Members sidebar login."
1485
- msgstr "מציג את הכניסה של וורדפרס-חברים בסרגל הצד"
1486
-
1487
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1488
- msgid "Login Status"
1489
- msgstr "מצב ההתחברות"
1490
-
1491
- #: inc/class-wp-members-widget.php:46
1492
- msgid "Title:"
1493
- msgstr "כותרת:"
1494
-
1495
- #: inc/class-wp-members-widget.php:50
1496
- msgid "Redirect to (optional):"
1497
- msgstr "להפנות ל (רשות):"
1498
-
1499
- #: inc/class-wp-members.php:1183
1500
- msgid "First Name"
1501
- msgstr "שם"
1502
-
1503
- #: inc/class-wp-members.php:1184
1504
- msgid "Last Name"
1505
- msgstr "שם משפחה"
1506
-
1507
- #: inc/class-wp-members.php:1185
1508
- msgid "Address 1"
1509
- msgstr "כתובת"
1510
-
1511
- #: inc/class-wp-members.php:1186
1512
- msgid "Address 2"
1513
- msgstr "כתובת 2"
1514
-
1515
- #: inc/class-wp-members.php:1187
1516
- msgid "City"
1517
- msgstr "יישוב"
1518
-
1519
- #: inc/class-wp-members.php:1188
1520
- msgid "State"
1521
- msgstr "מדינה"
1522
-
1523
- #: inc/class-wp-members.php:1189
1524
- msgid "Zip"
1525
- msgstr "מיקוד"
1526
-
1527
- #: inc/class-wp-members.php:1190
1528
- msgid "Country"
1529
- msgstr "ארץ"
1530
-
1531
- #: inc/class-wp-members.php:1191
1532
- msgid "Day Phone"
1533
- msgstr "טלפון"
1534
-
1535
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1536
- msgid "Email"
1537
- msgstr "אימייל"
1538
-
1539
- #: inc/class-wp-members.php:1193
1540
- msgid "Confirm Email"
1541
- msgstr "אישור האימייל"
1542
-
1543
- #: inc/class-wp-members.php:1194
1544
- msgid "Website"
1545
- msgstr "אתר"
1546
-
1547
- #: inc/class-wp-members.php:1195
1548
- msgid "Biographical Info"
1549
- msgstr "מידע ביוגרפי"
1550
-
1551
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216
1552
- #: inc/class-wp-members.php:1295
1553
- msgid "Password"
1554
- msgstr "סיסמה"
1555
-
1556
- #: inc/class-wp-members.php:1197
1557
- msgid "Confirm Password"
1558
- msgstr "אישור הסיסמה"
1559
-
1560
- #: inc/class-wp-members.php:1208
1561
- msgid "You are not logged in."
1562
- msgstr "עוד לא נכנסת."
1563
-
1564
- #: inc/class-wp-members.php:1214
1565
- msgid "Existing Users Log In"
1566
- msgstr "כניסת משתמשים רשומים"
1567
-
1568
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1569
- msgid "Username or Email"
1570
- msgstr ""
1571
-
1572
- #: inc/class-wp-members.php:1218
1573
- msgid "Remember Me"
1574
- msgstr "זכור אותי"
1575
-
1576
- #: inc/class-wp-members.php:1219
1577
- msgid "Forgot password?"
1578
- msgstr "לאפס את הסיסמה?"
1579
-
1580
- #: inc/class-wp-members.php:1220
1581
- msgid "Click here to reset"
1582
- msgstr "נא ללחוץ כאן כדי לאפס"
1583
-
1584
- #: inc/class-wp-members.php:1221
1585
- msgid "New User?"
1586
- msgstr "משתמש חדש?"
1587
-
1588
- #: inc/class-wp-members.php:1222
1589
- msgid "Click here to register"
1590
- msgstr "נא ללחוץ כאן כדי להירשם"
1591
-
1592
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1593
- msgid "Change Password"
1594
- msgstr "החלפת סיסמה"
1595
-
1596
- #: inc/class-wp-members.php:1226
1597
- msgid "New password"
1598
- msgstr "סיסמה חדשה"
1599
-
1600
- #: inc/class-wp-members.php:1227
1601
- msgid "Confirm new password"
1602
- msgstr "אישור הסיסמה החדשה"
1603
-
1604
- #: inc/class-wp-members.php:1228
1605
- msgid "Update Password"
1606
- msgstr "עדכון הסיסמה"
1607
-
1608
- #: inc/class-wp-members.php:1231
1609
- msgid "Reset Forgotten Password"
1610
- msgstr "איפוס סיסמה שנשכחה"
1611
-
1612
- #: inc/class-wp-members.php:1234
1613
- msgid "Reset Password"
1614
- msgstr "איפוס סיסמה"
1615
-
1616
- #: inc/class-wp-members.php:1235
1617
- msgid "Forgot username?"
1618
- msgstr "שכחת את שם המשתמש?"
1619
-
1620
- #: inc/class-wp-members.php:1236
1621
- msgid "Click here"
1622
- msgstr "ללחוץ כאן"
1623
-
1624
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1625
- msgid "Retrieve username"
1626
- msgstr "שחזור שם המשתמש"
1627
-
1628
- #: inc/class-wp-members.php:1240
1629
- msgid "Email Address"
1630
- msgstr "כתובת אימייל"
1631
-
1632
- #: inc/class-wp-members.php:1244
1633
- msgid "New User Registration"
1634
- msgstr "רישום משתמש חדש"
1635
-
1636
- #: inc/class-wp-members.php:1245
1637
- msgid "Choose a Username"
1638
- msgstr "בחירת שם משתמש"
1639
-
1640
- #: inc/class-wp-members.php:1246
1641
- msgid "Input the code:"
1642
- msgstr "להזין את הקוד:"
1643
-
1644
- #: inc/class-wp-members.php:1248
1645
- msgid "Reset Form"
1646
- msgstr "איפוס הטופס"
1647
-
1648
- #: inc/class-wp-members.php:1251
1649
- msgid "Required field"
1650
- msgstr "שדה חובה"
1651
-
1652
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1653
- msgid "Edit Your Information"
1654
- msgstr "עריכת הפרטים שלך"
1655
-
1656
- #: inc/class-wp-members.php:1256
1657
- msgid "Update Profile"
1658
- msgstr "עדכון הפרופיל"
1659
-
1660
- #: inc/class-wp-members.php:1257
1661
- msgid "Update this file"
1662
- msgstr "עדכון הקובץ הזה"
1663
-
1664
- #: inc/class-wp-members.php:1260
1665
- msgid "Login Failed!"
1666
- msgstr "הכניסה נכשלה!"
1667
-
1668
- #: inc/class-wp-members.php:1261
1669
- msgid "You entered an invalid username or password."
1670
- msgstr "הזנת שם משתמש או סיסמה שגויים."
1671
-
1672
- #: inc/class-wp-members.php:1262
1673
- msgid "Click here to continue."
1674
- msgstr "נא ללחוץ כאן כדי להמשיך"
1675
-
1676
- #: inc/class-wp-members.php:1263
1677
- msgid "Password fields cannot be empty"
1678
- msgstr "שדות הסיסמה הם שדות חובה"
1679
-
1680
- #: inc/class-wp-members.php:1264
1681
- msgid "Sorry, that email address was not found."
1682
- msgstr "מצטערים, כתובת האימייל הזו איננה"
1683
-
1684
- #: inc/class-wp-members.php:1265
1685
- #, php-format
1686
- msgid "An email was sent to %s with your username."
1687
- msgstr "אימייל עם שם המשתמש שלך נשלח ל %s"
1688
-
1689
- #: inc/class-wp-members.php:1266
1690
- #, php-format
1691
- msgid "Sorry, %s is a required field."
1692
- msgstr "מצטערים, %s הוא שדה חובה"
1693
-
1694
- #: inc/class-wp-members.php:1267
1695
- msgid "You must enter a valid email address."
1696
- msgstr "חובה להזין אימייל תקף"
1697
-
1698
- #: inc/class-wp-members.php:1268
1699
- msgid "The username cannot include non-alphanumeric characters."
1700
- msgstr "שם המשתמש אינו יכול לכלול תווים שאינם אלפא-נומריים."
1701
-
1702
- #: inc/class-wp-members.php:1269
1703
- msgid "Sorry, username is a required field"
1704
- msgstr "מצטערים, שם המשתמש הוא שדה חובה"
1705
-
1706
- #: inc/class-wp-members.php:1270
1707
- msgid "Passwords did not match."
1708
- msgstr "הסיסמאות אינן תואמות"
1709
-
1710
- #: inc/class-wp-members.php:1271
1711
- msgid "Emails did not match."
1712
- msgstr "כתובות האימייל אינן תואמות"
1713
-
1714
- #: inc/class-wp-members.php:1272
1715
- msgid "You must complete the CAPTCHA form."
1716
- msgstr "חובה להשלים את טופס קוד האימות."
1717
-
1718
- #: inc/class-wp-members.php:1273
1719
- msgid "CAPTCHA was not valid."
1720
- msgstr "קוד האימות אינו תקף"
1721
-
1722
- #: inc/class-wp-members.php:1274 inc/register.php:52
1723
- msgid "There was an error processing the form."
1724
- msgstr "אירעה שגיאה בעיבוד הטופס."
1725
-
1726
- #: inc/class-wp-members.php:1278
1727
- msgid "Edit My Information"
1728
- msgstr "עריכת הפרטים שלך"
1729
-
1730
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283
1731
- #: inc/class-wp-members.php:1285 inc/class-wp-members.php:1290
1732
- #, php-format
1733
- msgid "You are logged in as %s"
1734
- msgstr "אתה מחובר כ- %s."
1735
-
1736
- #: inc/class-wp-members.php:1281
1737
- msgid "Click to log out."
1738
- msgstr "יציאה"
1739
-
1740
- #: inc/class-wp-members.php:1282
1741
- msgid "Begin using the site."
1742
- msgstr "אפשר להתחיל להשתמש באתר"
1743
-
1744
- #: inc/class-wp-members.php:1284
1745
- msgid "Click to log out"
1746
- msgstr "ללחוץ כדי לצאת"
1747
-
1748
- #: inc/class-wp-members.php:1286
1749
- msgid "click to log out"
1750
- msgstr "ללחוץ כדי לצאת"
1751
-
1752
- #: inc/class-wp-members.php:1287
1753
- msgid "Log Out"
1754
- msgstr ""
1755
-
1756
- #: inc/class-wp-members.php:1291
1757
- msgid "click here to log out"
1758
- msgstr "ללחוץ כאן כדי לצאת"
1759
-
1760
- #: inc/class-wp-members.php:1292
1761
- msgid "Login Failed!<br />You entered an invalid username or password."
1762
- msgstr "הכניסה נכשלה!<br>הזנת שם משתמש או סיסמה שגויים."
1763
-
1764
- #: inc/class-wp-members.php:1297
1765
- msgid "Forgot?"
1766
- msgstr "שכחת?"
1767
-
1768
- #: inc/class-wp-members.php:1301
1769
- msgid ""
1770
- "This content is restricted to site members. If you are an existing user, "
1771
- "please log in. New users may register below."
1772
- msgstr ""
1773
- "תוכן זה מוגבל לחברי האתר. אם אתה משתמש קיים, נא להיכנס. משתמשים חדשים "
1774
- "יכולים להירשם להלן."
1775
-
1776
- #: inc/class-wp-members.php:1302
1777
- msgid ""
1778
- "Congratulations! Your registration was successful.<br /><br />You may now "
1779
- "log in using the password that was emailed to you."
1780
- msgstr ""
1781
- "יופי! ההרשמה הצליחה<br /><br />אפשר להתחבר כעת עם הסיסמה שנשלחה אליך באימייל."
1782
-
1783
- #: inc/class-wp-members.php:1305
1784
- msgid "Sorry, that username is taken, please try another."
1785
- msgstr "מצטערים, שם המשתמש הזה תפוס, נא לנסות שם אחר."
1786
-
1787
- #: inc/class-wp-members.php:1306
1788
- msgid ""
1789
- "Sorry, that email address already has an account.<br />Please try another."
1790
- msgstr "מצטערים, כבר יש חשבון עם האימייל הזה.<br />נא לנסות אחר."
1791
-
1792
- #: inc/class-wp-members.php:1307
1793
- msgid "Your information was updated!"
1794
- msgstr "המידע שלך עודכן!"
1795
-
1796
- #: inc/class-wp-members.php:1310
1797
- msgid "Passwords did not match.<br /><br />Please try again."
1798
- msgstr "הסיסמאות אינן תואמות.<br><br>נא לנסות שוב."
1799
-
1800
- #: inc/class-wp-members.php:1311
1801
- msgid "Password successfully changed!"
1802
- msgstr "הסיסמה הוחלפה בהצלחה!"
1803
-
1804
- #: inc/class-wp-members.php:1312
1805
- msgid "Either the username or email address do not exist in our records."
1806
- msgstr "שם המשתמש או כתובת האימייל לא קיימים ברשומות שלנו."
1807
-
1808
- #: inc/class-wp-members.php:1313
1809
- msgid ""
1810
- "Password successfully reset!<br /><br />An email containing a new password "
1811
- "has been sent to the email address on file for your account."
1812
- msgstr ""
1813
- "הסיסמה אופסה בהצלחה!<br /><br />אימייל עם הסיסמה החדשה נשלח אל כתובת האימייל "
1814
- "שלך."
1815
-
1816
- #: inc/class-wp-members.php:1315
1817
- msgid "Sorry, you do not have access to this content."
1818
- msgstr ""
1819
-
1820
- #: inc/class-wp-members.php:1433
1821
- msgid "Show forms as logged out"
1822
- msgstr ""
1823
-
1824
- #: inc/class-wp-members.php:1442
1825
- msgid "Show form message dialog"
1826
- msgstr ""
1827
-
1828
- #: inc/class-wp-members.php:1538
1829
- msgid "(more&hellip;)"
1830
- msgstr "עוד..."
1831
-
1832
- #: inc/register.php:417
1833
- msgid "We were unable to validate the public key."
1834
- msgstr "לא הצלחנו לאמת את המפתח הציבורי."
1835
-
1836
- #: inc/register.php:421
1837
- msgid "We were unable to validate the private key."
1838
- msgstr "הצלחנו לאמת את המפתח הפרטי."
1839
-
1840
- #: inc/register.php:425
1841
- msgid "The challenge parameter of the verify script was incorrect."
1842
- msgstr "הפרמטר המאתגר של קוד האימות היה שגוי."
1843
-
1844
- #: inc/register.php:429
1845
- msgid "The CAPTCHA solution was incorrect."
1846
- msgstr "פתרון קוד האימות היה שגוי"
1847
-
1848
- #: inc/register.php:433
1849
- msgid "The parameters to verify were incorrect"
1850
- msgstr "הפרמטרים לאימות היו שגויים"
1851
-
1852
- #: inc/register.php:437
1853
- msgid ""
1854
- "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1855
- msgstr "מפתחות קוד האימות של-API reCAPTCHA קשורות לדומיין ספציפי מסיבות אבטחה."
1856
-
1857
- #: inc/register.php:441
1858
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1859
- msgstr "השרת של קוד האימות reCAPTCHA אינו נגיש. נא לנסות שוב."
1860
-
1861
- #: inc/register.php:445
1862
- msgid "You have entered an incorrect code value. Please try again."
1863
- msgstr "הזנת ערך קוד שגוי. נא נסה שוב."
1864
-
1865
- #: wp-members-tos.php:35
1866
- #, php-format
1867
- msgid "%sclose%s"
1868
- msgstr "%sסגירה%s"
1869
-
1870
- #: wp-members-tos.php:37
1871
- #, php-format
1872
- msgid "%sprint%s"
1873
- msgstr "%sספרינט%s"
1874
-
1875
- #. Plugin Name of the plugin/theme
1876
- msgid "WP-Members"
1877
- msgstr "וורדפרס-חברים"
1878
-
1879
- #. Plugin URI of the plugin/theme
1880
- msgid "https://rocketgeek.com"
1881
- msgstr ""
1882
-
1883
- #. Description of the plugin/theme
1884
- msgid ""
1885
- "WP access restriction and user registration. For more information on plugin "
1886
- "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
1887
- "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
1888
- "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
1889
- "available. WP-Members(tm) is a trademark of butlerblog.com."
1890
- msgstr ""
1891
-
1892
- #. Author of the plugin/theme
1893
- msgid "Chad Butler"
1894
- msgstr "Chad Butler"
1895
-
1896
- #. Author URI of the plugin/theme
1897
- msgid "http://butlerblog.com/"
1898
- msgstr "http://butlerblog.com/"
1899
-
1900
- #~ msgid "You have set WP-Members to turn off the registration process"
1901
- #~ msgstr "הגדרת את וורדפרס-חברים לכבות את תהליך ההרשמה"
1902
-
1903
- #~ msgid ""
1904
- #~ "but you also set to moderate and/or email admin new registrations. You "
1905
- #~ "will need to set up a registration page for users to register."
1906
- #~ msgstr ""
1907
- #~ "אבל הגדרת גם סינון ושליחת הודעה באימייל למנהל על הרשמה. צריך להגדיר עמוד "
1908
- #~ "הרשמה למשתמשים כדי להירשם."
1909
-
1910
- #~ msgid "%s are blocked by default."
1911
- #~ msgstr "ה%s מוגבלים כברירת מחדל"
1912
-
1913
- #~ msgid "Unblock this %s"
1914
- #~ msgstr "ביטול חסימת %s זה"
1915
-
1916
- #~ msgid "%s are not blocked by default."
1917
- #~ msgstr "%s אינם חסומים כברירת מחדל."
1918
-
1919
- #~ msgid "Block this %s"
1920
- #~ msgstr "חסימת %s זה"
1921
-
1922
- #~ msgid "Unblocked?"
1923
- #~ msgstr "לבטל את החסימה?"
1924
-
1925
- #~ msgid "Blocked?"
1926
- #~ msgstr "חסום?"
1927
-
1928
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
1929
- #~ msgstr "תווית השדה הכרחית כדי להוסיף שדה חדש. שום דבר לא עודכן."
1930
-
1931
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
1932
- #~ msgstr "שם האפשרות הוא חובה כדי להוסיף שדה חדש. שום דבר לא עודכן."
1933
-
1934
- #~ msgid "Option Name must contain only letters, numbers, and underscores"
1935
- #~ msgstr "שם האפשרות חייב להכיל רק אותיות, ספרות ומקף תחתון."
1936
-
1937
- #~ msgid "A field with that option name already exists"
1938
- #~ msgstr "שדה עם שם אפשרות זה כבר קיים"
1939
-
1940
- #~ msgid "field was added"
1941
- #~ msgstr "השדה נוסף"
1942
-
1943
- #~ msgid "field was updated"
1944
- #~ msgstr "השדה עודכן"
1945
-
1946
- #~ msgid "Option Name"
1947
- #~ msgstr "שם האפשרות"
1948
-
1949
- #~ msgid "Additional information for field upload fields"
1950
- #~ msgstr "פרטים נוספים עבור שדות העלאת שדה"
1951
-
1952
- #~ msgid "Additional information for checkbox fields"
1953
- #~ msgstr "מידע נוסף עבור שדות תיבת סימון"
1954
-
1955
- #~ msgid "Additional information for dropdown fields"
1956
- #~ msgstr "פרטים נוספים עבור שדות של הרשימה הנפתחת"
1957
-
1958
- #~ msgid "For dropdown, array of values:"
1959
- #~ msgstr "עבור רשימה נפתחת, מערך של ערכים:"
1960
-
1961
- #~ msgid ""
1962
- #~ "Determine which fields will display and which are required. This "
1963
- #~ "includes all fields, both native WP fields and WP-Members custom fields."
1964
- #~ msgstr ""
1965
- #~ "קביעת אילו שדות יוצגו ואילו חובה.זה כולל את כל השדות, גם שדות של וורדפרס "
1966
- #~ "וגם שדות מותאמים אישית של וורדפרס-חברים."
1967
-
1968
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
1969
- #~ msgstr "(הערה: האימייל הוא תמיד חובה ולא ניתן לשנותו.)"
1970
-
1971
- #~ msgid "Add/Delete"
1972
- #~ msgstr "הוספה/מחיקה"
1973
-
1974
- #~ msgid "Checked?"
1975
- #~ msgstr "מסומן?"
1976
-
1977
- #~ msgid "Delete"
1978
- #~ msgstr "מחיקה"
1979
-
1980
- #~ msgid "(Email cannot be removed)"
1981
- #~ msgstr "(לא ניתן להסיר את האימייל)"
1982
-
1983
- #~ msgid "native"
1984
- #~ msgstr "מקומי"
1985
-
1986
- #~ msgid "Update Fields"
1987
- #~ msgstr "עדכון השדות"
1988
-
1989
- #~ msgid "Please indicate that you agree to the %s TOS %s"
1990
- #~ msgstr "נא להסכים ל%sתנאי השימוש%s"
1991
-
1992
- #~ msgid "http://rocketgeek.com"
1993
- #~ msgstr "http://rocketgeek.com"
1994
-
1995
- #~ msgid ""
1996
- #~ "WP access restriction and user registration. For more information on "
1997
- #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1998
- #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1999
- #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
2000
- #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
2001
- #~ msgstr ""
2002
- #~ "הגבלת גישה לאתר והרשמה. למידע נוסף על תכונות התוסף, נא להתייחס ל<a href="
2003
- #~ "\"http://rocketgeek.com/plugins/wp-members/users-guide/\">מדריך המקוון</"
2004
- #~ "a>. גם<a href=\"http://rocketgeek.com/plugins/wp-members/quick-start-"
2005
- #~ "guide/\">מדריך התחלה מהירה</a> זמין. וורדפרס-חברים (סימן רשום) הוא סימן "
2006
- #~ "רשום של butlerblog.com."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 3.2.6\n"
4
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
5
+ "PO-Revision-Date: 2020-05-22 17:53-0400\n"
6
+ "Last-Translator: Ahrale <contact@atar4u.com>\n"
7
+ "Language-Team: Ahrale | Atar4U.com\n"
8
+ "Language: he_IL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Generator: Poedit 2.3.1\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: wp-members.php\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #: includes/admin/class-wp-members-admin-api.php:292
24
+ msgid "Custom email"
25
+ msgstr ""
26
+
27
+ #: includes/admin/class-wp-members-admin-api.php:293
28
+ #: includes/admin/class-wp-members-admin-api.php:295
29
+ msgid "Subject"
30
+ msgstr ""
31
+
32
+ #: includes/admin/class-wp-members-admin-api.php:296
33
+ msgid "Body"
34
+ msgstr ""
35
+
36
+ #: includes/admin/class-wp-members-admin-api.php:298
37
+ msgid "Your custom email message content."
38
+ msgstr ""
39
+
40
+ #: includes/admin/class-wp-members-admin-api.php:376
41
+ msgid "Options"
42
+ msgstr "אפשרויות"
43
+
44
+ #: includes/admin/class-wp-members-admin-api.php:377
45
+ msgid "Fields"
46
+ msgstr "שדות"
47
+
48
+ #: includes/admin/class-wp-members-admin-api.php:378
49
+ msgid "Dialogs"
50
+ msgstr "תיבות דו-שיח"
51
+
52
+ #: includes/admin/class-wp-members-admin-api.php:379
53
+ msgid "Emails"
54
+ msgstr "אימיילים"
55
+
56
+ #: includes/admin/class-wp-members-admin-api.php:395
57
+ msgid "New Registration"
58
+ msgstr "רישום חדש"
59
+
60
+ #: includes/admin/class-wp-members-admin-api.php:404
61
+ msgid "Registration is Moderated"
62
+ msgstr "ההרשמה מסוננת"
63
+
64
+ #: includes/admin/class-wp-members-admin-api.php:410
65
+ msgid "Registration is Moderated, User is Approved"
66
+ msgstr "ההרשמה מסוננת, המשתמש מאושר"
67
+
68
+ #: includes/admin/class-wp-members-admin-api.php:418
69
+ msgid "Password Reset"
70
+ msgstr "איפוס סיסמה"
71
+
72
+ #: includes/admin/class-wp-members-admin-api.php:425
73
+ msgid "Retrieve Username"
74
+ msgstr "שחזור שם משתמש"
75
+
76
+ #: includes/admin/class-wp-members-admin-api.php:433
77
+ msgid "Admin Notification"
78
+ msgstr "הודעה להנהלה"
79
+
80
+ #: includes/admin/class-wp-members-admin-api.php:459
81
+ msgid "Restricted post (or page), displays above the login/registration form"
82
+ msgstr "פוסט מוגבלת (או עמוד), מוצג מעל טופס כניסה/הרשמה"
83
+
84
+ #: includes/admin/class-wp-members-admin-api.php:460
85
+ msgid "Username is taken"
86
+ msgstr "שם המשתמש כבר תפוס"
87
+
88
+ #: includes/admin/class-wp-members-admin-api.php:461
89
+ msgid "Email is registered"
90
+ msgstr "האימייל כבר רשום"
91
+
92
+ #: includes/admin/class-wp-members-admin-api.php:462
93
+ msgid "Registration completed"
94
+ msgstr "ההרשמה הושלמה"
95
+
96
+ #: includes/admin/class-wp-members-admin-api.php:463
97
+ msgid "User update"
98
+ msgstr "עדכון המשתמש"
99
+
100
+ #: includes/admin/class-wp-members-admin-api.php:464
101
+ msgid "Passwords did not match"
102
+ msgstr "הסיסמאות אינן תואמות"
103
+
104
+ #: includes/admin/class-wp-members-admin-api.php:465
105
+ msgid "Password changes"
106
+ msgstr "החלפת סיסמה"
107
+
108
+ #: includes/admin/class-wp-members-admin-api.php:466
109
+ msgid "Username or email do not exist when trying to reset forgotten password"
110
+ msgstr "שם המשתמש או האימייל אינם קיימים, כאשר מנסים לאפס את הסיסמה"
111
+
112
+ #: includes/admin/class-wp-members-admin-api.php:467
113
+ msgid "Password reset"
114
+ msgstr "איפוס סיסמה"
115
+
116
+ #: includes/admin/class-wp-members-admin-api.php:623
117
+ msgid "Settings"
118
+ msgstr "הגדרות"
119
+
120
+ #: includes/admin/class-wp-members-admin-posts.php:30
121
+ #: includes/admin/class-wp-members-admin-posts.php:33
122
+ msgid "Unblock"
123
+ msgstr "ביטול חסימה"
124
+
125
+ #: includes/admin/class-wp-members-admin-posts.php:31
126
+ #: includes/admin/class-wp-members-admin-posts.php:34
127
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
128
+ msgid "Block"
129
+ msgstr "לחסום"
130
+
131
+ #: includes/admin/class-wp-members-admin-posts.php:32
132
+ #: includes/admin/class-wp-members-admin-posts.php:35
133
+ msgid "Hide"
134
+ msgstr "להסתיר"
135
+
136
+ #: includes/admin/class-wp-members-admin-posts.php:125
137
+ #, php-format
138
+ msgid "%s blocked"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-members-admin-posts.php:125
142
+ #, php-format
143
+ msgid "%s unblocked"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-members-admin-posts.php:165
147
+ #, php-format
148
+ msgid "%s Restriction"
149
+ msgstr "הגבלת %s"
150
+
151
+ #: includes/admin/class-wp-members-admin-posts.php:195
152
+ msgid "Unblocked"
153
+ msgstr ""
154
+
155
+ #: includes/admin/class-wp-members-admin-posts.php:196
156
+ msgid "Blocked"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-members-admin-posts.php:197
160
+ msgid "Hidden"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-members-admin-posts.php:203
164
+ msgid "Status:"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-members-admin-posts.php:203
168
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
169
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
170
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
171
+ msgid "Edit"
172
+ msgstr "עריכה"
173
+
174
+ #: includes/admin/class-wp-members-admin-posts.php:218
175
+ msgid "Ok"
176
+ msgstr ""
177
+
178
+ #: includes/admin/class-wp-members-admin-posts.php:219
179
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
180
+ msgid "Cancel"
181
+ msgstr ""
182
+
183
+ #: includes/admin/class-wp-members-admin-posts.php:305
184
+ #: includes/admin/class-wp-members-products-admin.php:629
185
+ msgid "Status"
186
+ msgstr ""
187
+
188
+ #: includes/admin/class-wp-members-admin-users.php:28
189
+ #: includes/admin/class-wp-members-admin-users.php:33
190
+ #: includes/admin/class-wp-members-admin-users.php:59
191
+ msgid "Activate"
192
+ msgstr "הפעלה"
193
+
194
+ #: includes/admin/class-wp-members-admin-users.php:29
195
+ #: includes/admin/class-wp-members-admin-users.php:34
196
+ #: includes/admin/class-wp-members-admin-users.php:62
197
+ msgid "Deactivate"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-members-admin-users.php:31
201
+ #: includes/admin/class-wp-members-admin-users.php:36
202
+ msgid "Export"
203
+ msgstr "יצוא"
204
+
205
+ #: includes/admin/class-wp-members-admin-users.php:37
206
+ #: includes/admin/class-wp-members-admin-users.php:88
207
+ msgid "Export All Users"
208
+ msgstr "יצוא כל המשתמשים"
209
+
210
+ #: includes/admin/class-wp-members-admin-users.php:126
211
+ #, php-format
212
+ msgid "%s users activated"
213
+ msgstr ""
214
+
215
+ #: includes/admin/class-wp-members-admin-users.php:126
216
+ #, php-format
217
+ msgid "%s users deactivated"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-members-admin-users.php:129
221
+ msgid "No users selected"
222
+ msgstr ""
223
+
224
+ #: includes/admin/class-wp-members-admin-users.php:147
225
+ msgid "You cannot activate or deactivate yourself"
226
+ msgstr ""
227
+
228
+ #: includes/admin/class-wp-members-admin-users.php:152
229
+ #, php-format
230
+ msgid "%s activated"
231
+ msgstr ""
232
+
233
+ #: includes/admin/class-wp-members-admin-users.php:157
234
+ #, php-format
235
+ msgid "%s deactivated"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-members-admin-users.php:161
239
+ msgid "That user is already active"
240
+ msgstr ""
241
+
242
+ #: includes/admin/class-wp-members-admin-users.php:288
243
+ msgid "Pending"
244
+ msgstr ""
245
+
246
+ #: includes/admin/class-wp-members-admin-users.php:289
247
+ msgid "Trial"
248
+ msgstr ""
249
+
250
+ #: includes/admin/class-wp-members-admin-users.php:290
251
+ #: includes/admin/class-wp-members-export.php:74
252
+ msgid "Subscription"
253
+ msgstr "מנוי"
254
+
255
+ #: includes/admin/class-wp-members-admin-users.php:291
256
+ msgid "Expired"
257
+ msgstr ""
258
+
259
+ #: includes/admin/class-wp-members-admin-users.php:294
260
+ msgid "Activated"
261
+ msgstr ""
262
+
263
+ #: includes/admin/class-wp-members-admin-users.php:295
264
+ msgid "Pending Activation"
265
+ msgstr ""
266
+
267
+ #: includes/admin/class-wp-members-admin-users.php:296
268
+ msgid "Deactivated"
269
+ msgstr ""
270
+
271
+ #: includes/admin/class-wp-members-admin-users.php:298
272
+ msgid "Not Exported"
273
+ msgstr ""
274
+
275
+ #: includes/admin/class-wp-members-admin-users.php:387
276
+ #: includes/admin/class-wp-members-export.php:160
277
+ msgid "No"
278
+ msgstr "לא"
279
+
280
+ #: includes/admin/class-wp-members-export.php:64
281
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
282
+ msgid "User ID"
283
+ msgstr ""
284
+
285
+ #: includes/admin/class-wp-members-export.php:65
286
+ #: includes/class-wp-members.php:1523 includes/class-wp-members.php:1546
287
+ msgid "Username"
288
+ msgstr "שם משתמש"
289
+
290
+ #: includes/admin/class-wp-members-export.php:71
291
+ msgid "Activated?"
292
+ msgstr "פעיל?"
293
+
294
+ #: includes/admin/class-wp-members-export.php:75
295
+ #: includes/admin/class-wp-members-products-admin.php:64
296
+ #: includes/admin/class-wp-members-products-admin.php:632
297
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
298
+ msgid "Expires"
299
+ msgstr "פג תוקף"
300
+
301
+ #: includes/admin/class-wp-members-export.php:77
302
+ msgid "Registered"
303
+ msgstr "רשום"
304
+
305
+ #: includes/admin/class-wp-members-export.php:78
306
+ msgid "IP"
307
+ msgstr "כתובת IP"
308
+
309
+ #: includes/admin/class-wp-members-export.php:160
310
+ #: includes/admin/class-wp-members-products-admin.php:104
311
+ msgid "Yes"
312
+ msgstr "כן"
313
+
314
+ #: includes/admin/class-wp-members-products-admin.php:62
315
+ msgid "Slug"
316
+ msgstr ""
317
+
318
+ #: includes/admin/class-wp-members-products-admin.php:63
319
+ msgid "Role"
320
+ msgstr ""
321
+
322
+ #: includes/admin/class-wp-members-products-admin.php:66
323
+ msgid "Default"
324
+ msgstr ""
325
+
326
+ #: includes/admin/class-wp-members-products-admin.php:68
327
+ msgid "Last updated"
328
+ msgstr ""
329
+
330
+ #: includes/admin/class-wp-members-products-admin.php:92
331
+ msgid "slug:"
332
+ msgstr ""
333
+
334
+ #: includes/admin/class-wp-members-products-admin.php:95
335
+ msgid "No role required"
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-members-products-admin.php:100
339
+ msgid "Does not expire"
340
+ msgstr ""
341
+
342
+ #: includes/admin/class-wp-members-products-admin.php:140
343
+ msgid "Membership Product Details"
344
+ msgstr ""
345
+
346
+ #: includes/admin/class-wp-members-products-admin.php:148
347
+ msgid "Membership Product Message (optional)"
348
+ msgstr ""
349
+
350
+ #: includes/admin/class-wp-members-products-admin.php:165
351
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
352
+ msgid "Posts"
353
+ msgstr ""
354
+
355
+ #: includes/admin/class-wp-members-products-admin.php:166
356
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
357
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
358
+ msgid "Pages"
359
+ msgstr "עמודים"
360
+
361
+ #: includes/admin/class-wp-members-products-admin.php:193
362
+ #: includes/admin/class-wp-members-products-admin.php:235
363
+ #: includes/admin/class-wp-members-products-admin.php:280
364
+ msgid "Period"
365
+ msgstr ""
366
+
367
+ #: includes/admin/class-wp-members-products-admin.php:193
368
+ msgid "Day"
369
+ msgstr ""
370
+
371
+ #: includes/admin/class-wp-members-products-admin.php:193
372
+ msgid "Week"
373
+ msgstr ""
374
+
375
+ #: includes/admin/class-wp-members-products-admin.php:193
376
+ msgid "Month"
377
+ msgstr ""
378
+
379
+ #: includes/admin/class-wp-members-products-admin.php:193
380
+ msgid "Year"
381
+ msgstr ""
382
+
383
+ #: includes/admin/class-wp-members-products-admin.php:199
384
+ msgid "Name (slug)"
385
+ msgstr ""
386
+
387
+ #: includes/admin/class-wp-members-products-admin.php:201
388
+ msgid "Optional Defaults"
389
+ msgstr ""
390
+
391
+ #: includes/admin/class-wp-members-products-admin.php:204
392
+ msgid "Assign as default at registration? (optional)"
393
+ msgstr ""
394
+
395
+ #: includes/admin/class-wp-members-products-admin.php:212
396
+ #, php-format
397
+ msgid "Pre-selected by default for new %s"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-members-products-admin.php:218
401
+ msgid "Optional Properties"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-members-products-admin.php:221
405
+ msgid "Role Required? (optional)"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-members-products-admin.php:224
409
+ msgid "No Role"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-members-products-admin.php:230
413
+ msgid "Expires (optional)"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-members-products-admin.php:232
417
+ #: includes/admin/class-wp-members-products-admin.php:234
418
+ #: includes/admin/class-wp-members-products-admin.php:277
419
+ #: includes/admin/class-wp-members-products-admin.php:279
420
+ msgid "Number"
421
+ msgstr ""
422
+
423
+ #: includes/admin/class-wp-members-products-admin.php:240
424
+ msgid "Use \"no gap\" renewal"
425
+ msgstr ""
426
+
427
+ #: includes/admin/class-wp-members-products-admin.php:244
428
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
429
+ msgstr ""
430
+
431
+ #: includes/admin/class-wp-members-products-admin.php:261
432
+ msgid "Period Start (dd-mm)"
433
+ msgstr ""
434
+
435
+ #: includes/admin/class-wp-members-products-admin.php:262
436
+ msgid "Period End (dd-mm)"
437
+ msgstr ""
438
+
439
+ #: includes/admin/class-wp-members-products-admin.php:275
440
+ msgid "Fixed period grace period"
441
+ msgstr ""
442
+
443
+ #: includes/admin/class-wp-members-products-admin.php:284
444
+ msgid ""
445
+ "Grace period is the point at which expiration date is for following time "
446
+ "period. For example, if user who register August 1st would be part of the "
447
+ "following year's Sept 1 - Aug 31 membership, set this at 1 Month. Leave "
448
+ "blank for no grace period."
449
+ msgstr ""
450
+
451
+ #: includes/admin/class-wp-members-products-admin.php:333
452
+ msgid ""
453
+ "Restricted Message (displays when a user does not have access to a "
454
+ "membership)"
455
+ msgstr ""
456
+
457
+ #: includes/admin/class-wp-members-products-admin.php:435
458
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
459
+ #: includes/class-wp-members-forms.php:1092
460
+ #: includes/class-wp-members-user-profile.php:112
461
+ msgid "None"
462
+ msgstr "ללא"
463
+
464
+ #: includes/admin/class-wp-members-products-admin.php:450
465
+ msgid "Limit access to:"
466
+ msgstr ""
467
+
468
+ #: includes/admin/class-wp-members-products-admin.php:520
469
+ msgid "Required Membership"
470
+ msgstr ""
471
+
472
+ #: includes/admin/class-wp-members-products-admin.php:559
473
+ #: includes/admin/class-wp-members-products-admin.php:630
474
+ msgid "Membership"
475
+ msgstr ""
476
+
477
+ #: includes/admin/class-wp-members-products-admin.php:599
478
+ #: includes/class-wp-members-products.php:308
479
+ msgid "Memberships"
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-wp-members-products-admin.php:626
483
+ msgid "Product Access"
484
+ msgstr ""
485
+
486
+ #: includes/admin/class-wp-members-products-admin.php:631
487
+ msgid "Enabled?"
488
+ msgstr ""
489
+
490
+ #: includes/admin/class-wp-members-products-admin.php:641
491
+ msgid "Enable"
492
+ msgstr ""
493
+
494
+ #: includes/admin/class-wp-members-products-admin.php:642
495
+ msgid "Disable"
496
+ msgstr ""
497
+
498
+ #: includes/admin/class-wp-members-products-admin.php:647
499
+ msgid "Expiration date (optional)"
500
+ msgstr ""
501
+
502
+ #: includes/admin/dialogs.php:117
503
+ msgid ""
504
+ "Your WP settings allow anyone to register - this is not the recommended "
505
+ "setting."
506
+ msgstr "הגדרות האתר שלך מאפשרות לכל אחד להירשם - זו אינה ההגדרה המומלצת."
507
+
508
+ #: includes/admin/dialogs.php:118
509
+ #, php-format
510
+ msgid ""
511
+ "You can %s change this here %s making sure the box next to \"Anyone can "
512
+ "register\" is unchecked."
513
+ msgstr ""
514
+ "באפשרותך %s לשנות את זה כאן %s ולוודא שתיבת הסימון ליד \"כל אחד יכול להירשם"
515
+ "\" אינה מסומנת."
516
+
517
+ #: includes/admin/dialogs.php:119
518
+ msgid ""
519
+ "This setting allows a link on the /wp-login.php page to register using the "
520
+ "WP native registration process thus circumventing any registration you are "
521
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
522
+ "but most users should uncheck this option. If you do not change this "
523
+ "setting, you can choose to ignore these warning messages under WP-Members "
524
+ "Settings."
525
+ msgstr ""
526
+ "הגדרה זו מאפשרת קישור בעמוד הכניסה /wp-login.php להרשמה תוך שימוש בתהליך "
527
+ "הרישום המקורי ולעקוף את הרישום שלך בוורדפרס-חברים. לפעמים זה עונה על הצורך, "
528
+ "אבל רוב המשתמשים צריכים לא לסמן את האפשרות הזו. אם אינך משנה הגדרה זו, אפשר "
529
+ "לבחור להתעלם מהודעות אזהרה אלו בהגדרות וורדפרס-חברים."
530
+
531
+ #: includes/admin/dialogs.php:123
532
+ msgid ""
533
+ "Your WP settings allow anyone to comment - this is not the recommended "
534
+ "setting."
535
+ msgstr "הגדרות האתר שלך מאפשרות לכל אחד להגיב - הגדרה זו אינה מומלצת."
536
+
537
+ #: includes/admin/dialogs.php:124
538
+ #, php-format
539
+ msgid ""
540
+ "You can %s change this here %s by checking the box next to \"Users must be "
541
+ "registered and logged in to comment.\""
542
+ msgstr ""
543
+ "אפשר %sלשנות זאת כאן%s על-ידי סימון התיבה שליד \"משתמשים חייבים להיות רשומים "
544
+ "ומחוברים כדי להגיב\""
545
+
546
+ #: includes/admin/dialogs.php:125
547
+ msgid ""
548
+ "This setting allows any users to comment, whether or not they are "
549
+ "registered. Depending on how you are using WP-Members will determine whether "
550
+ "you should change this setting or not. If you do not change this setting, "
551
+ "you can choose to ignore these warning messages under WP-Members Settings."
552
+ msgstr ""
553
+ "הגדרה זו מאפשרת לכל המשתמשים להגיב, בין אם הם רשומים ובין אם לאו. תלוי איך "
554
+ "אתה משתמש בוורדפרס-חברים, ייקבע אם עליך לשנות הגדרה זו או לא. אם לא תשנה "
555
+ "הגדרה זו, באפשרותך לבחור להתעלם מהודעות אזהרה אלו תחת הגדרות וורדפרס-חברים."
556
+
557
+ #: includes/admin/dialogs.php:129
558
+ msgid ""
559
+ "Your WP settings allow full text rss feeds - this is not the recommended "
560
+ "setting."
561
+ msgstr "הגדרות האתר שלך מאפשרות הזנות RSS בטקסט מלא - הגדרה זו אינה מומלצת."
562
+
563
+ #: includes/admin/dialogs.php:130
564
+ #, php-format
565
+ msgid ""
566
+ "You can %s change this here %s by changing \"For each article in a feed, show"
567
+ "\" to \"Summary.\""
568
+ msgstr ""
569
+ "אפשר %sלשנות זאת כאן%s על-ידי שינוי \"עבור כל מאמר בהזנה,\" ל\"תקציר\"."
570
+
571
+ #: includes/admin/dialogs.php:131
572
+ msgid ""
573
+ "Leaving this set to full text allows anyone to read your protected content "
574
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
575
+ "only show summary text."
576
+ msgstr ""
577
+ "השארת הגדרה זו לטקסט מלא מאפשרת לכל אחד לקרוא את התוכן המוגן בקורא הזנות "
578
+ "RSS. שינוי לתקציר מונע את זה כי ההזנות יציגו רק תקציר."
579
+
580
+ #: includes/admin/dialogs.php:135
581
+ msgid "You have set WP-Members to hold registrations for approval"
582
+ msgstr "הגדרת את וורדפרס-חברים לעכב הרשמה עד לקבלת אישור"
583
+
584
+ #: includes/admin/dialogs.php:136
585
+ msgid ""
586
+ "but you have not changed the default message for \"Registration Completed\" "
587
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
588
+ "message to let users know they are pending approval."
589
+ msgstr ""
590
+ "אבל לא שינית את הודעת ברירת המחדל עבור \"ההרשמה הושלמה\" ב\"הודעות תיבות הדו-"
591
+ "שיח ושגיאות של של וורדפרס חברים\".צריך לשנות את ההודעה הזו כדי ליידע את "
592
+ "המשתמשים שהם בהמתנה לאישור."
593
+
594
+ #: includes/admin/dialogs.php:140
595
+ msgid "You have turned on reCAPTCHA"
596
+ msgstr "הפעלת את reCAPTCHA"
597
+
598
+ #: includes/admin/dialogs.php:141
599
+ msgid ""
600
+ "but you have not entered API keys. You will need both a public and private "
601
+ "key. The CAPTCHA will not display unless a valid API key is included."
602
+ msgstr ""
603
+ "אבל לא הזנת מפתחות API. צריך מפתח ציבורי ומפתח פרטי. קוד האימות לא יוצג ללא "
604
+ "מפתחות API."
605
+
606
+ #: includes/admin/dialogs.php:145
607
+ msgid "You have active settings that are not recommended."
608
+ msgstr ""
609
+
610
+ #: includes/admin/dialogs.php:146
611
+ msgid ""
612
+ "If you will not be changing these settings, you can turn off these warning "
613
+ "messages by checking the \"Ignore warning messages\" in the settings below."
614
+ msgstr ""
615
+
616
+ #: includes/admin/dialogs.php:174
617
+ msgid "Version:"
618
+ msgstr "גרסה"
619
+
620
+ #: includes/admin/dialogs.php:175
621
+ msgid "Quick Start Guide"
622
+ msgstr "מדריך התחלה מהירה"
623
+
624
+ #: includes/admin/dialogs.php:176
625
+ msgid "Online User Guide"
626
+ msgstr "מדריך מקוון למשתמש"
627
+
628
+ #: includes/admin/dialogs.php:177
629
+ msgid "FAQs"
630
+ msgstr "שאלות נפוצות"
631
+
632
+ #: includes/admin/dialogs.php:184
633
+ msgid "Thank you for using WP-Members"
634
+ msgstr "תודה לך על השימוש בוורדפרס-חברים"
635
+
636
+ #: includes/admin/dialogs.php:185
637
+ msgid "A plugin developed by"
638
+ msgstr "התוסף פותח על-ידי"
639
+
640
+ #: includes/admin/dialogs.php:186
641
+ msgid "Follow"
642
+ msgstr "עקוב אחרינו"
643
+
644
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
645
+ msgid "Latest from RocketGeek"
646
+ msgstr "פרסומים אחרונים של RocketGeek"
647
+
648
+ #: includes/admin/dialogs.php:224
649
+ msgid "Like WP-Members?"
650
+ msgstr ""
651
+
652
+ #: includes/admin/dialogs.php:225
653
+ #, php-format
654
+ msgid ""
655
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
656
+ "%s rating. Thanks!!"
657
+ msgstr ""
658
+
659
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
660
+ msgid "Latest from ButlerBlog"
661
+ msgstr "פרסומים אחרונים ב ButlerBlog"
662
+
663
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
664
+ #, php-format
665
+ msgid "See the %sUsers Guide on CAPTCHA%s."
666
+ msgstr ""
667
+
668
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
669
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
670
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
671
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
672
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
673
+ msgid "Need help?"
674
+ msgstr "צריך עזרה?"
675
+
676
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
677
+ msgid "Manage reCAPTCHA Options"
678
+ msgstr "ניהול אפשרויות קוד אימות של reCAPTCHA"
679
+
680
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
681
+ msgid ""
682
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
683
+ "while blocking spam on your blog."
684
+ msgstr "reCAPTCHA הוא קוד אימות חינמי, לחסימת ספאם באתר שלכם."
685
+
686
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
687
+ #, php-format
688
+ msgid ""
689
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
690
+ "that they are a human. This verifies that they are not a spambot while also "
691
+ "correcting the automatic scans of old books. So you get less spam, and the "
692
+ "world gets accurately digitized books. Everybody wins! For details, visit "
693
+ "the %s reCAPTCHA website%s"
694
+ msgstr ""
695
+ "reCAPTCHA מבקש להקליד שתי מילים סרוקות מספר כדי להוכיח אנושיות. זה מאמת "
696
+ "שהשולח אינו רובוט ספאם בקרו ב %sreCaptcha%s"
697
+
698
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
699
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
700
+ msgid "reCAPTCHA Keys"
701
+ msgstr "מפתחות reCAPTCHA"
702
+
703
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
704
+ #, php-format
705
+ msgid ""
706
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
707
+ "key. You can sign up for a %s free reCAPTCHA key%s"
708
+ msgstr ""
709
+ "קוד אימות של reCAPTCHA צריך מפתח API המורכב מ\"מפתח ציבורי\" ו\"מפתח פרטי\". "
710
+ "אפשר להירשם לקבלת %sמפתח reCAPTCHA ללא תשלום %s"
711
+
712
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
713
+ msgid "Public Key"
714
+ msgstr "מפתח ציבורי"
715
+
716
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
717
+ msgid "Private Key"
718
+ msgstr "מפתח פרטי"
719
+
720
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
721
+ msgid "Choose Theme"
722
+ msgstr "בחירת תבנית"
723
+
724
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
725
+ msgid "Red"
726
+ msgstr "אדום"
727
+
728
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
729
+ msgid "White"
730
+ msgstr "לבן"
731
+
732
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
733
+ msgid "Black Glass"
734
+ msgstr "זכוכית שחורה"
735
+
736
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
737
+ msgid "Clean"
738
+ msgstr "נקי"
739
+
740
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
741
+ #, php-format
742
+ msgid ""
743
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
744
+ "key. You can sign up for a %s free reCAPTCHA key%s"
745
+ msgstr ""
746
+ "קוד אימות של reCAPTCHA דורש מפתח API, המורכב מ \"מפתח אתר\" ו \"מפתח סודי\". "
747
+ "באפשרותך להירשם לקבלת %sמפתחות reCAPTCHA ללא תשלום%s"
748
+
749
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
750
+ msgid "Site Key"
751
+ msgstr "מפתח אתר"
752
+
753
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
754
+ msgid "Secret Key"
755
+ msgstr "מפתח סודי"
756
+
757
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
758
+ msgid "Characters for image"
759
+ msgstr "תווים עבור התמונה"
760
+
761
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
762
+ msgid "Number of characters"
763
+ msgstr "מספר התווים"
764
+
765
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
766
+ msgid "Image dimensions"
767
+ msgstr "גודל התמונה"
768
+
769
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
770
+ msgid "Width"
771
+ msgstr "רוחב"
772
+
773
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
774
+ msgid "Height"
775
+ msgstr "גובה"
776
+
777
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
778
+ msgid "Font color of characters"
779
+ msgstr "צבע הגופן של התווים"
780
+
781
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
782
+ msgid "Background color of image"
783
+ msgstr "צבע הרקע של התמונה"
784
+
785
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
786
+ msgid "Font size"
787
+ msgstr "גודל הגופן"
788
+
789
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
790
+ msgid "Width between characters"
791
+ msgstr "המרווח בין התווים"
792
+
793
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
794
+ msgid "Image type"
795
+ msgstr "סוג התמונה"
796
+
797
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
798
+ msgid ""
799
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
800
+ "installed and activated."
801
+ msgstr ""
802
+ "כדי להשתמש בקוד אימות פשוט באמת, חובה להתקין ולהפעיל את התוסף Really Simple "
803
+ "CAPTCHA."
804
+
805
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
806
+ msgid "Update CAPTCHA Settings"
807
+ msgstr "עדכון הגדרות קוד האימות"
808
+
809
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
810
+ msgid "CAPTCHA was updated for WP-Members"
811
+ msgstr "קוד האימות עבור וורדפרס-חברים עודכן"
812
+
813
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
814
+ msgid "Dialogs and Error Messages"
815
+ msgstr "הודעות דו-שיח ושגיאה"
816
+
817
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
818
+ #, php-format
819
+ msgid ""
820
+ "You can customize the text for dialogs and error messages. Simple HTML is "
821
+ "allowed %s etc."
822
+ msgstr ""
823
+ "באפשרותך להתאים אישית את הטקסט עבור תיבות דו-שיח והודעות שגיאה. אפשר להשתמש "
824
+ HTML פשוט %s ועוד."
825
+
826
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
827
+ msgid "Terms of Service (TOS)"
828
+ msgstr "תנאי השימוש"
829
+
830
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
831
+ msgid "Update Dialogs"
832
+ msgstr "עדכון דו-שיח"
833
+
834
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
835
+ msgid "WP-Members dialogs were updated"
836
+ msgstr "הדו-שיח של וורדפרס-חברים עודכן"
837
+
838
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
839
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
840
+ msgid "WP-Members Dropin settings were updated"
841
+ msgstr ""
842
+
843
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
844
+ msgid "Manage Dropins"
845
+ msgstr ""
846
+
847
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
848
+ msgid "Current dropin folder: "
849
+ msgstr ""
850
+
851
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
852
+ msgid ""
853
+ "You can change location of the dropin folder using the "
854
+ "<code>wpmem_dropin_folder</code> filter."
855
+ msgstr ""
856
+
857
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
858
+ msgid "Email Messages"
859
+ msgstr "הודעות אימייל"
860
+
861
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
862
+ msgid "You can customize the content of the emails sent by the plugin."
863
+ msgstr "אפשר לשנות את תוכן האימיילים הנשלחים על-ידי התוסף."
864
+
865
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
866
+ msgid "A list of shortcodes is available here."
867
+ msgstr "להלן רשימת קיצורי הקוד הזמינים"
868
+
869
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
870
+ msgid "Set a custom email address"
871
+ msgstr "הגדרת כתובת אימייל"
872
+
873
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
874
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
875
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
876
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
877
+ msgid "(optional)"
878
+ msgstr "(רשות)"
879
+
880
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
881
+ msgid "Set a custom email name"
882
+ msgstr "קביעת שם אימייל"
883
+
884
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
885
+ msgid "Email Signature"
886
+ msgstr "חתימת האימייל"
887
+
888
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
889
+ msgid "Update Emails"
890
+ msgstr "עדכון האימיילים"
891
+
892
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
893
+ msgid "WP-Members emails were updated"
894
+ msgstr "האימיילים של וורדפרס-חברים עודכנו"
895
+
896
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
897
+ #: includes/class-wp-members.php:1498
898
+ msgid "No fields selected for deletion"
899
+ msgstr ""
900
+
901
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
902
+ msgid "Are you sure you want to delete the following fields?"
903
+ msgstr ""
904
+
905
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
906
+ msgid "Fields deleted"
907
+ msgstr ""
908
+
909
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
910
+ msgid "Field Manager Documentation"
911
+ msgstr ""
912
+
913
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
914
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
915
+ #: includes/class-wp-members-forms.php:1626
916
+ #: includes/class-wp-members-forms.php:1803
917
+ #: includes/class-wp-members-user-profile.php:144
918
+ msgid "(required)"
919
+ msgstr "(חובה)"
920
+
921
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
922
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
923
+ msgid "Edit Field"
924
+ msgstr "עריכת השדה"
925
+
926
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
927
+ msgid "Add a Field"
928
+ msgstr "הוספת שדה"
929
+
930
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
931
+ msgid "Field Label"
932
+ msgstr "תווית השדה"
933
+
934
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
935
+ msgid "The name of the field as it will be displayed to the user."
936
+ msgstr "השם של השדה כפי שהוא יוצג בפני המשתמש."
937
+
938
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
939
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
940
+ msgid "Meta Key"
941
+ msgstr ""
942
+
943
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
944
+ msgid ""
945
+ "The database meta value for the field. It must be unique and contain no "
946
+ "spaces (underscores are ok)."
947
+ msgstr ""
948
+ "ערך תיאור meta עבור השדה. הוא חייב להיות ייחודי, ללא רווחים (אפשר להשתמש "
949
+ "במקפים תחתונים)."
950
+
951
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
952
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
953
+ msgid "Field Type"
954
+ msgstr "סוג השדה"
955
+
956
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
957
+ msgid "text"
958
+ msgstr "טקסט"
959
+
960
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
961
+ msgid "email"
962
+ msgstr "אימייל"
963
+
964
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
965
+ msgid "textarea"
966
+ msgstr "אזור טקסט"
967
+
968
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
969
+ msgid "checkbox"
970
+ msgstr "תיבת סימון"
971
+
972
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
973
+ msgid "multiple checkbox"
974
+ msgstr "תיבות סימון מרובות"
975
+
976
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
977
+ msgid "select (dropdown)"
978
+ msgstr "בחירה מרשימה נפתחת"
979
+
980
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
981
+ msgid "multiple select"
982
+ msgstr "בחירה מרובה ברשימה נפתחת"
983
+
984
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
985
+ msgid "radio group"
986
+ msgstr "קבוצת לחצני רדיו"
987
+
988
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
989
+ msgid "password"
990
+ msgstr "סיסמה"
991
+
992
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
993
+ msgid "image"
994
+ msgstr "תמונה"
995
+
996
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
997
+ msgid "file"
998
+ msgstr "קובץ"
999
+
1000
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
1001
+ msgid "url"
1002
+ msgstr "כתובת URL"
1003
+
1004
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1005
+ msgid "number"
1006
+ msgstr ""
1007
+
1008
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1009
+ msgid "date"
1010
+ msgstr ""
1011
+
1012
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1013
+ msgid "hidden"
1014
+ msgstr "נסתר"
1015
+
1016
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1017
+ msgid "membership"
1018
+ msgstr ""
1019
+
1020
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1021
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1022
+ msgid "Display?"
1023
+ msgstr "להציג?"
1024
+
1025
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1026
+ msgid "This field is always displayed"
1027
+ msgstr ""
1028
+
1029
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1030
+ msgid "Required?"
1031
+ msgstr "חובה?"
1032
+
1033
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1034
+ msgid "This field is always required"
1035
+ msgstr ""
1036
+
1037
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1038
+ msgid "Allow HTML?"
1039
+ msgstr ""
1040
+
1041
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1042
+ msgid "Placeholder"
1043
+ msgstr ""
1044
+
1045
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1046
+ msgid "Pattern"
1047
+ msgstr ""
1048
+
1049
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1050
+ msgid "Title"
1051
+ msgstr ""
1052
+
1053
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1054
+ msgid "Minimum Value"
1055
+ msgstr ""
1056
+
1057
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1058
+ msgid "Maximum Value"
1059
+ msgstr ""
1060
+
1061
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1062
+ msgid "Rows"
1063
+ msgstr ""
1064
+
1065
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1066
+ msgid "Columns"
1067
+ msgstr ""
1068
+
1069
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1070
+ msgid "Accepted file types:"
1071
+ msgstr "סוגי הקבצים המקובלים:"
1072
+
1073
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1074
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1075
+ msgstr "את סוגי הקבצים המקובלים יש להגדיר כך:jpg|jpeg|png|gif"
1076
+
1077
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1078
+ msgid "Checked by default?"
1079
+ msgstr "לסמן כברירת מחדל?"
1080
+
1081
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1082
+ msgid "Stored value if checked:"
1083
+ msgstr "הערך המאוחסן אם מסומi:"
1084
+
1085
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1086
+ msgid "Stored values delimiter:"
1087
+ msgstr ""
1088
+
1089
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1090
+ msgid "Values (Displayed|Stored):"
1091
+ msgstr ""
1092
+
1093
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1094
+ msgid "Options should be Option Name|option_value,"
1095
+ msgstr "האפשרויות צריכות להיות שם אפשרות | option_value,"
1096
+
1097
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1098
+ msgid "Visit plugin site for more information"
1099
+ msgstr "נא לבקר באתר התוסף למידע נוסף"
1100
+
1101
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1102
+ msgid "Value"
1103
+ msgstr ""
1104
+
1105
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1106
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1107
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1108
+ msgid "Add Field"
1109
+ msgstr "הוספת שדה"
1110
+
1111
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1112
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1113
+ msgid "Return to Fields Table"
1114
+ msgstr ""
1115
+
1116
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1117
+ msgid "Drag and drop to reorder fields"
1118
+ msgstr ""
1119
+
1120
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1121
+ msgid "Registration Date"
1122
+ msgstr "תאריך ההרשמה"
1123
+
1124
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1125
+ msgid "Active"
1126
+ msgstr "פעיל"
1127
+
1128
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1129
+ msgid "Registration IP"
1130
+ msgstr "כתובת ה IP בהרשמה"
1131
+
1132
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1133
+ msgid "Subscription Type"
1134
+ msgstr ""
1135
+
1136
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1137
+ msgid "Manage Fields"
1138
+ msgstr "ניהול שדות"
1139
+
1140
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1141
+ msgid "WP-Members fields were updated"
1142
+ msgstr "השדות של וורדפרס-חברים עודכנו"
1143
+
1144
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1145
+ msgid "Field Label is required. Nothing was updated."
1146
+ msgstr ""
1147
+
1148
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1149
+ msgid "Meta Key is required. Nothing was updated."
1150
+ msgstr ""
1151
+
1152
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1153
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1154
+ msgstr ""
1155
+
1156
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1157
+ msgid "A field with that meta key already exists"
1158
+ msgstr ""
1159
+
1160
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1161
+ #, php-format
1162
+ msgid ""
1163
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1164
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1165
+ "Field was not added."
1166
+ msgstr ""
1167
+ "מצטערים, %s הוא <a href=\"https://codex.wordpress.org/Function_Reference/"
1168
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">מונח שמור</a>. השדה לא "
1169
+ "התווסף."
1170
+
1171
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1172
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1173
+ msgstr "ערך מסומן הוא חובה עבור תיבות סימון. שום דבר לא עודכן."
1174
+
1175
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1176
+ msgid "A value is required for hidden fields. Nothing was updated."
1177
+ msgstr ""
1178
+
1179
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1180
+ #, php-format
1181
+ msgid "%s was added"
1182
+ msgstr ""
1183
+
1184
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1185
+ #, php-format
1186
+ msgid "%s was updated"
1187
+ msgstr ""
1188
+
1189
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1190
+ msgid "Form field order updated."
1191
+ msgstr ""
1192
+
1193
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1194
+ #, php-format
1195
+ msgid "%sChange%s or %sFilter%s this address"
1196
+ msgstr ""
1197
+
1198
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1199
+ #, php-format
1200
+ msgid "See the %sUsers Guide on plugin options%s."
1201
+ msgstr ""
1202
+
1203
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1204
+ msgid "Manage Options"
1205
+ msgstr "ניהול האפשרויות"
1206
+
1207
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1208
+ msgid "Content"
1209
+ msgstr ""
1210
+
1211
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1212
+ msgid "Content Blocking"
1213
+ msgstr ""
1214
+
1215
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1216
+ msgid "Do not block"
1217
+ msgstr "לא לחסום"
1218
+
1219
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1220
+ msgid "Show Excerpts"
1221
+ msgstr "להציג תקצירים"
1222
+
1223
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1224
+ msgid "Show Login Form"
1225
+ msgstr "להציג טופס כניסה"
1226
+
1227
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1228
+ msgid "Show Registration Form"
1229
+ msgstr "להציג טופס הרשמה"
1230
+
1231
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1232
+ msgid "Auto Excerpt:"
1233
+ msgstr "תקציר אוטומטי:"
1234
+
1235
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1236
+ msgid "Number of words in excerpt:"
1237
+ msgstr "מספר המילים בתקציר:"
1238
+
1239
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1240
+ msgid "Custom read more link (optional):"
1241
+ msgstr ""
1242
+
1243
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1244
+ msgid "Time-based expiration"
1245
+ msgstr "תפוגה מבוססת זמן"
1246
+
1247
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1248
+ msgid "Allows for access to expire"
1249
+ msgstr "מאפשר לגישה לפוג"
1250
+
1251
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1252
+ msgid "Trial period"
1253
+ msgstr "תקופת ניסיון"
1254
+
1255
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1256
+ msgid "Allows for a trial period"
1257
+ msgstr "מאפשר תקופת ניסיון"
1258
+
1259
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1260
+ msgid "Subscription Settings"
1261
+ msgstr ""
1262
+
1263
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1264
+ msgid "Other Settings"
1265
+ msgstr ""
1266
+
1267
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1268
+ msgid "Activation"
1269
+ msgstr ""
1270
+
1271
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1272
+ msgid ""
1273
+ "Send initial activation link and password reset link instead of new "
1274
+ "password. (Requires additional configuration)"
1275
+ msgstr ""
1276
+
1277
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1278
+ msgid "Enable Products"
1279
+ msgstr ""
1280
+
1281
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1282
+ msgid "Enables creation of different membership products"
1283
+ msgstr ""
1284
+
1285
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1286
+ msgid "Clone menus"
1287
+ msgstr ""
1288
+
1289
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1290
+ msgid "Enables logged in menus"
1291
+ msgstr ""
1292
+
1293
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1294
+ msgid "Notify admin"
1295
+ msgstr "להודיע למנהל"
1296
+
1297
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1298
+ #, php-format
1299
+ msgid "Notify %s for each new registration? %s"
1300
+ msgstr "להודיע ל %s מנהל על כל הרשמה חדשה? %s"
1301
+
1302
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1303
+ msgid "Moderate registration"
1304
+ msgstr "בקרת הרשמה"
1305
+
1306
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1307
+ msgid "Holds new registrations for admin approval"
1308
+ msgstr "עוצר הרשמת משתמשים חדשים עד לאישור מנהל"
1309
+
1310
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1311
+ msgid "Ignore warning messages"
1312
+ msgstr "להתעלם מהודעות אזהרה"
1313
+
1314
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1315
+ msgid "Ignores WP-Members warning messages in the admin panel"
1316
+ msgstr "להתעלם מהודעות אזהרה של וורדפרס-חברים בלוח הבקרה"
1317
+
1318
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1319
+ msgid "Attribution"
1320
+ msgstr "ייחוס"
1321
+
1322
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1323
+ msgid ""
1324
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
1325
+ msgstr "ייחוס תתקבל בברכה! להציג \"מופעל על ידי\" על הקישור בטופס ההרשמה?"
1326
+
1327
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1328
+ msgid "Enable CAPTCHA"
1329
+ msgstr "הפעלת קוד אימות"
1330
+
1331
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1332
+ msgid "reCAPTCHA v2"
1333
+ msgstr ""
1334
+
1335
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1336
+ msgid "reCAPTCHA v3"
1337
+ msgstr ""
1338
+
1339
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1340
+ msgid "Really Simple CAPTCHA"
1341
+ msgstr ""
1342
+
1343
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1344
+ msgid "Login Page:"
1345
+ msgstr "עמוד כניסה"
1346
+
1347
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1348
+ msgid "Specify a login page (optional)"
1349
+ msgstr "נא לציין עמוד כניסה (רשות)"
1350
+
1351
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1352
+ msgid "Register Page:"
1353
+ msgstr "עמוד ההרשמה"
1354
+
1355
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1356
+ msgid "For creating a register link in the login form"
1357
+ msgstr "כדי ליצור קישור להרשמה בטופס הכניסה"
1358
+
1359
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1360
+ msgid "User Profile Page:"
1361
+ msgstr "עמוד פרופיל המשתמש:"
1362
+
1363
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1364
+ msgid "For creating a forgot password link in the login form"
1365
+ msgstr "כדי ליצור קישור לאיפוס סיסמה בטופס הכניסה"
1366
+
1367
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1368
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1369
+ msgid "Stylesheet"
1370
+ msgstr "גיליון עיצוב"
1371
+
1372
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1373
+ msgid "Custom Stylesheet:"
1374
+ msgstr "גיליון עיצוב מותאם אישית:"
1375
+
1376
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1377
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1378
+ msgid "Update Settings"
1379
+ msgstr "עדכן ההגדרות"
1380
+
1381
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1382
+ msgid "Custom Post Types"
1383
+ msgstr "סוגי פוסט"
1384
+
1385
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1386
+ msgid "Add to WP-Members Settings"
1387
+ msgstr ""
1388
+
1389
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1390
+ msgid ""
1391
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not "
1392
+ "all of them will function exactly the same way. WP-Members will certainly "
1393
+ "work with any post type that operate like a post or a page; but you will "
1394
+ "need to review any custom post type added to determine that it functions the "
1395
+ "way you expect."
1396
+ msgstr ""
1397
+
1398
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1399
+ msgid "Close"
1400
+ msgstr ""
1401
+
1402
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1403
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1404
+ msgid "WP-Members Settings"
1405
+ msgstr ""
1406
+
1407
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1408
+ msgid ""
1409
+ "The following is your WP-Members settings information if needed for support."
1410
+ msgstr ""
1411
+
1412
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1413
+ msgid "Click to Copy"
1414
+ msgstr ""
1415
+
1416
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1417
+ msgid "Custom Post Type settings were updated"
1418
+ msgstr "הגדרות סוגי פוסט עודכנו"
1419
+
1420
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1421
+ msgid "WP-Members settings were updated"
1422
+ msgstr "הגדרות וורדפרס-חברים עודכנו"
1423
+
1424
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1425
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1426
+ msgid "USE CUSTOM URL BELOW"
1427
+ msgstr "להשתמש בכתובת URL מותאמת אישית להלן"
1428
+
1429
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1430
+ msgid "Select a page"
1431
+ msgstr "בחירת עמוד"
1432
+
1433
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1434
+ msgid "Name"
1435
+ msgstr ""
1436
+
1437
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1438
+ msgid "Enabled"
1439
+ msgstr ""
1440
+
1441
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1442
+ msgid "File"
1443
+ msgstr ""
1444
+
1445
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1446
+ msgid "Version"
1447
+ msgstr ""
1448
+
1449
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1450
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1451
+ msgid "Description"
1452
+ msgstr ""
1453
+
1454
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1455
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1456
+ msgid "Save Settings"
1457
+ msgstr ""
1458
+
1459
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1460
+ msgid "delete"
1461
+ msgstr ""
1462
+
1463
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1464
+ msgid "Display Label"
1465
+ msgstr ""
1466
+
1467
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1468
+ msgid "Required"
1469
+ msgstr ""
1470
+
1471
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1472
+ msgid "Users Screen"
1473
+ msgstr "מסך המשתמשים"
1474
+
1475
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1476
+ msgid "Users Search"
1477
+ msgstr ""
1478
+
1479
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1480
+ msgid "Sort"
1481
+ msgstr ""
1482
+
1483
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1484
+ msgid "Delete Selected"
1485
+ msgstr ""
1486
+
1487
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1488
+ msgid "log in"
1489
+ msgstr "כניסה"
1490
+
1491
+ #: includes/api/api.php:329
1492
+ msgid "log out"
1493
+ msgstr ""
1494
+
1495
+ #: includes/class-wp-members-activation-link.php:21
1496
+ msgid "Click to activate your account: "
1497
+ msgstr ""
1498
+
1499
+ #: includes/class-wp-members-activation-link.php:22
1500
+ msgid "Thank you for activating your account."
1501
+ msgstr ""
1502
+
1503
+ #: includes/class-wp-members-activation-link.php:23
1504
+ msgid "Activation key was expired or invalid"
1505
+ msgstr ""
1506
+
1507
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1508
+ #: includes/deprecated.php:501
1509
+ msgid "You have entered an incorrect code value. Please try again."
1510
+ msgstr "הזנת ערך קוד שגוי. נא נסה שוב."
1511
+
1512
+ #: includes/class-wp-members-forms.php:1048
1513
+ #: includes/class-wp-members-forms.php:1646 includes/class-wp-members.php:1538
1514
+ #, php-format
1515
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1516
+ msgstr ""
1517
+
1518
+ #: includes/class-wp-members-forms.php:1049
1519
+ #: includes/class-wp-members-forms.php:1647 includes/class-wp-members.php:1489
1520
+ msgid "TOS"
1521
+ msgstr "תנאי השימוש"
1522
+
1523
+ #: includes/class-wp-members-forms.php:1049
1524
+ #: includes/class-wp-members-forms.php:1647 templates/tos.php:20
1525
+ msgid "Terms of Service"
1526
+ msgstr "תנאי שימוש"
1527
+
1528
+ #: includes/class-wp-members-forms.php:1868
1529
+ #: includes/class-wp-members-user-profile.php:473
1530
+ msgid "Activate this user?"
1531
+ msgstr "לאשר את המשתמש הזה?"
1532
+
1533
+ #: includes/class-wp-members-menus.php:131
1534
+ msgid "Display"
1535
+ msgstr ""
1536
+
1537
+ #: includes/class-wp-members-menus.php:139
1538
+ msgid "Logged In Users"
1539
+ msgstr ""
1540
+
1541
+ #: includes/class-wp-members-menus.php:146
1542
+ msgid "Logged Out Users"
1543
+ msgstr ""
1544
+
1545
+ #: includes/class-wp-members-menus.php:153
1546
+ msgid "All Users"
1547
+ msgstr ""
1548
+
1549
+ #: includes/class-wp-members-menus.php:167
1550
+ #, php-format
1551
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1552
+ msgstr ""
1553
+
1554
+ #: includes/class-wp-members-menus.php:169
1555
+ msgid "Restrict menu item to a membership product"
1556
+ msgstr ""
1557
+
1558
+ #: includes/class-wp-members-products.php:302
1559
+ msgid "Product"
1560
+ msgstr ""
1561
+
1562
+ #: includes/class-wp-members-products.php:303
1563
+ msgid "Products"
1564
+ msgstr ""
1565
+
1566
+ #: includes/class-wp-members-products.php:309
1567
+ #, php-format
1568
+ msgid "All %s"
1569
+ msgstr ""
1570
+
1571
+ #: includes/class-wp-members-products.php:310
1572
+ #, php-format
1573
+ msgid "Add New %s"
1574
+ msgstr ""
1575
+
1576
+ #: includes/class-wp-members-products.php:311
1577
+ msgid "Add New"
1578
+ msgstr ""
1579
+
1580
+ #: includes/class-wp-members-products.php:312
1581
+ #, php-format
1582
+ msgid "New %s"
1583
+ msgstr ""
1584
+
1585
+ #: includes/class-wp-members-products.php:313
1586
+ #, php-format
1587
+ msgid "Edit %s"
1588
+ msgstr ""
1589
+
1590
+ #: includes/class-wp-members-products.php:314
1591
+ #, php-format
1592
+ msgid "Update %s"
1593
+ msgstr ""
1594
+
1595
+ #: includes/class-wp-members-products.php:315
1596
+ #: includes/class-wp-members-products.php:316
1597
+ #, php-format
1598
+ msgid "View %s"
1599
+ msgstr ""
1600
+
1601
+ #: includes/class-wp-members-products.php:317
1602
+ #, php-format
1603
+ msgid "Search %s"
1604
+ msgstr ""
1605
+
1606
+ #: includes/class-wp-members-products.php:318
1607
+ msgid "Not found"
1608
+ msgstr ""
1609
+
1610
+ #: includes/class-wp-members-products.php:319
1611
+ msgid "Not found in Trash"
1612
+ msgstr ""
1613
+
1614
+ #: includes/class-wp-members-products.php:320
1615
+ msgid "Insert into item"
1616
+ msgstr ""
1617
+
1618
+ #: includes/class-wp-members-products.php:321
1619
+ #, php-format
1620
+ msgid "Save %s Details"
1621
+ msgstr ""
1622
+
1623
+ #: includes/class-wp-members-products.php:324
1624
+ msgid "Membership Product"
1625
+ msgstr ""
1626
+
1627
+ #: includes/class-wp-members-products.php:325
1628
+ msgid "WP-Members Membership Products"
1629
+ msgstr ""
1630
+
1631
+ #: includes/class-wp-members-pwd-reset.php:31
1632
+ #: includes/class-wp-members-pwd-reset.php:32
1633
+ msgid ""
1634
+ "Sorry, no password reset key was found. Please check your email and try "
1635
+ "again."
1636
+ msgstr ""
1637
+
1638
+ #: includes/class-wp-members-pwd-reset.php:33
1639
+ msgid "Sorry, the password reset key is expired."
1640
+ msgstr ""
1641
+
1642
+ #: includes/class-wp-members-shortcodes.php:147
1643
+ msgid ""
1644
+ "This is a generic message to display the form message dialog in the "
1645
+ "Customizer."
1646
+ msgstr ""
1647
+
1648
+ #: includes/class-wp-members-shortcodes.php:158
1649
+ #: includes/class-wp-members.php:1566 includes/deprecated - Copy.php:695
1650
+ msgid "There was an error with the CAPTCHA form."
1651
+ msgstr "היתה שגיאה בטופס קוד האימות."
1652
+
1653
+ #: includes/class-wp-members-shortcodes.php:717
1654
+ msgid "Click here to log out."
1655
+ msgstr "נא ללחוץ כאן כדי להתנתק."
1656
+
1657
+ #: includes/class-wp-members-shortcodes.php:786
1658
+ #: includes/class-wp-members-user.php:172 includes/class-wp-members.php:1540
1659
+ #: includes/class-wp-members.php:1590
1660
+ msgid "Register"
1661
+ msgstr "הרשמה"
1662
+
1663
+ #: includes/class-wp-members-shortcodes.php:789
1664
+ #: includes/class-wp-members.php:1508
1665
+ msgid "Log In"
1666
+ msgstr "כניסה"
1667
+
1668
+ #: includes/class-wp-members-user-profile.php:38
1669
+ msgid "WP-Members Additional Fields"
1670
+ msgstr "שדות נוספים של וורדפרס-חברים"
1671
+
1672
+ #: includes/class-wp-members-user-profile.php:38
1673
+ msgid "Additional Information"
1674
+ msgstr "מידע נוסף"
1675
+
1676
+ #: includes/class-wp-members-user-profile.php:463
1677
+ msgid "Reactivate this user?"
1678
+ msgstr "לאשר מחדש את המשתמש הזה?"
1679
+
1680
+ #: includes/class-wp-members-user-profile.php:468
1681
+ msgid "Deactivate this user?"
1682
+ msgstr "לבטל את המשתמש הזה?"
1683
+
1684
+ #: includes/class-wp-members-user-profile.php:522
1685
+ msgid "IP @ registration"
1686
+ msgstr "כתובת IP והרשמה"
1687
+
1688
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1689
+ msgid "There was an error processing the form."
1690
+ msgstr "אירעה שגיאה בעיבוד הטופס."
1691
+
1692
+ #: includes/class-wp-members-user.php:1118
1693
+ msgid "<strong>ERROR</strong>: User has not been activated."
1694
+ msgstr "<strong>שגיאה</strong>: המשתמש אינו פעיל."
1695
+
1696
+ #: includes/class-wp-members-widget.php:24
1697
+ msgid "Displays the WP-Members sidebar login."
1698
+ msgstr "מציג את הכניסה של וורדפרס-חברים בסרגל הצד"
1699
+
1700
+ #: includes/class-wp-members-widget.php:39
1701
+ #: includes/class-wp-members-widget.php:82
1702
+ msgid "Login Status"
1703
+ msgstr "מצב ההתחברות"
1704
+
1705
+ #: includes/class-wp-members-widget.php:46
1706
+ msgid "Title:"
1707
+ msgstr "כותרת:"
1708
+
1709
+ #: includes/class-wp-members-widget.php:50
1710
+ msgid "Redirect to (optional):"
1711
+ msgstr "להפנות ל (רשות):"
1712
+
1713
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1714
+ msgid "You must be logged in to view this content."
1715
+ msgstr ""
1716
+
1717
+ #: includes/class-wp-members.php:1044
1718
+ msgid "The page you are looking for does not exist"
1719
+ msgstr ""
1720
+
1721
+ #: includes/class-wp-members.php:1436
1722
+ #, php-format
1723
+ msgid ""
1724
+ "You have a linked page in the WP-Members page settings that corresponds to a "
1725
+ "post ID that no longer exists. Please %s review and update the %s page "
1726
+ "settings %s."
1727
+ msgstr ""
1728
+
1729
+ #: includes/class-wp-members.php:1474
1730
+ msgid "First Name"
1731
+ msgstr "שם"
1732
+
1733
+ #: includes/class-wp-members.php:1475
1734
+ msgid "Last Name"
1735
+ msgstr "שם משפחה"
1736
+
1737
+ #: includes/class-wp-members.php:1476
1738
+ msgid "Address 1"
1739
+ msgstr "כתובת"
1740
+
1741
+ #: includes/class-wp-members.php:1477
1742
+ msgid "Address 2"
1743
+ msgstr "כתובת 2"
1744
+
1745
+ #: includes/class-wp-members.php:1478
1746
+ msgid "City"
1747
+ msgstr "יישוב"
1748
+
1749
+ #: includes/class-wp-members.php:1479
1750
+ msgid "State"
1751
+ msgstr "מדינה"
1752
+
1753
+ #: includes/class-wp-members.php:1480
1754
+ msgid "Zip"
1755
+ msgstr "מיקוד"
1756
+
1757
+ #: includes/class-wp-members.php:1481
1758
+ msgid "Country"
1759
+ msgstr "ארץ"
1760
+
1761
+ #: includes/class-wp-members.php:1482
1762
+ msgid "Day Phone"
1763
+ msgstr "טלפון"
1764
+
1765
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1766
+ msgid "Email"
1767
+ msgstr "אימייל"
1768
+
1769
+ #: includes/class-wp-members.php:1484
1770
+ msgid "Confirm Email"
1771
+ msgstr "אישור האימייל"
1772
+
1773
+ #: includes/class-wp-members.php:1485
1774
+ msgid "Website"
1775
+ msgstr "אתר"
1776
+
1777
+ #: includes/class-wp-members.php:1486
1778
+ msgid "Biographical Info"
1779
+ msgstr "מידע ביוגרפי"
1780
+
1781
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1782
+ #: includes/class-wp-members.php:1587
1783
+ msgid "Password"
1784
+ msgstr "סיסמה"
1785
+
1786
+ #: includes/class-wp-members.php:1488
1787
+ msgid "Confirm Password"
1788
+ msgstr "אישור הסיסמה"
1789
+
1790
+ #: includes/class-wp-members.php:1499
1791
+ msgid "You are not logged in."
1792
+ msgstr "עוד לא נכנסת."
1793
+
1794
+ #: includes/class-wp-members.php:1505
1795
+ msgid "Existing Users Log In"
1796
+ msgstr "כניסת משתמשים רשומים"
1797
+
1798
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1799
+ msgid "Username or Email"
1800
+ msgstr ""
1801
+
1802
+ #: includes/class-wp-members.php:1509
1803
+ msgid "Remember Me"
1804
+ msgstr "זכור אותי"
1805
+
1806
+ #: includes/class-wp-members.php:1510
1807
+ msgid "Forgot password?"
1808
+ msgstr "לאפס את הסיסמה?"
1809
+
1810
+ #: includes/class-wp-members.php:1511
1811
+ msgid "Click here to reset"
1812
+ msgstr "נא ללחוץ כאן כדי לאפס"
1813
+
1814
+ #: includes/class-wp-members.php:1512
1815
+ msgid "New User?"
1816
+ msgstr "משתמש חדש?"
1817
+
1818
+ #: includes/class-wp-members.php:1513
1819
+ msgid "Click here to register"
1820
+ msgstr "נא ללחוץ כאן כדי להירשם"
1821
+
1822
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1823
+ msgid "Change Password"
1824
+ msgstr "החלפת סיסמה"
1825
+
1826
+ #: includes/class-wp-members.php:1517
1827
+ msgid "New password"
1828
+ msgstr "סיסמה חדשה"
1829
+
1830
+ #: includes/class-wp-members.php:1518
1831
+ msgid "Confirm new password"
1832
+ msgstr "אישור הסיסמה החדשה"
1833
+
1834
+ #: includes/class-wp-members.php:1519
1835
+ msgid "Update Password"
1836
+ msgstr "עדכון הסיסמה"
1837
+
1838
+ #: includes/class-wp-members.php:1522
1839
+ msgid "Reset Forgotten Password"
1840
+ msgstr "איפוס סיסמה שנשכחה"
1841
+
1842
+ #: includes/class-wp-members.php:1525
1843
+ msgid "Reset Password"
1844
+ msgstr "איפוס סיסמה"
1845
+
1846
+ #: includes/class-wp-members.php:1526
1847
+ msgid "Forgot username?"
1848
+ msgstr "שכחת את שם המשתמש?"
1849
+
1850
+ #: includes/class-wp-members.php:1527
1851
+ msgid "Click here"
1852
+ msgstr "ללחוץ כאן"
1853
+
1854
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
1855
+ msgid "Retrieve username"
1856
+ msgstr "שחזור שם המשתמש"
1857
+
1858
+ #: includes/class-wp-members.php:1531
1859
+ msgid "Email Address"
1860
+ msgstr "כתובת אימייל"
1861
+
1862
+ #: includes/class-wp-members.php:1535
1863
+ msgid "New User Registration"
1864
+ msgstr "רישום משתמש חדש"
1865
+
1866
+ #: includes/class-wp-members.php:1536
1867
+ msgid "Choose a Username"
1868
+ msgstr "בחירת שם משתמש"
1869
+
1870
+ #: includes/class-wp-members.php:1537
1871
+ msgid "Input the code:"
1872
+ msgstr "להזין את הקוד:"
1873
+
1874
+ #: includes/class-wp-members.php:1539
1875
+ msgid "Reset Form"
1876
+ msgstr "איפוס הטופס"
1877
+
1878
+ #: includes/class-wp-members.php:1542
1879
+ msgid "Required field"
1880
+ msgstr "שדה חובה"
1881
+
1882
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
1883
+ msgid "Edit Your Information"
1884
+ msgstr "עריכת הפרטים שלך"
1885
+
1886
+ #: includes/class-wp-members.php:1547
1887
+ msgid "Update Profile"
1888
+ msgstr "עדכון הפרופיל"
1889
+
1890
+ #: includes/class-wp-members.php:1548
1891
+ msgid "Update this file"
1892
+ msgstr "עדכון הקובץ הזה"
1893
+
1894
+ #: includes/class-wp-members.php:1551
1895
+ msgid "Login Failed!"
1896
+ msgstr "הכניסה נכשלה!"
1897
+
1898
+ #: includes/class-wp-members.php:1552
1899
+ msgid "You entered an invalid username or password."
1900
+ msgstr "הזנת שם משתמש או סיסמה שגויים."
1901
+
1902
+ #: includes/class-wp-members.php:1553
1903
+ msgid "Click here to continue."
1904
+ msgstr "נא ללחוץ כאן כדי להמשיך"
1905
+
1906
+ #: includes/class-wp-members.php:1554
1907
+ msgid "Password fields cannot be empty"
1908
+ msgstr "שדות הסיסמה הם שדות חובה"
1909
+
1910
+ #: includes/class-wp-members.php:1555
1911
+ msgid "Sorry, that email address was not found."
1912
+ msgstr "מצטערים, כתובת האימייל הזו איננה"
1913
+
1914
+ #: includes/class-wp-members.php:1556
1915
+ #, php-format
1916
+ msgid "An email was sent to %s with your username."
1917
+ msgstr "אימייל עם שם המשתמש שלך נשלח ל %s"
1918
+
1919
+ #: includes/class-wp-members.php:1557
1920
+ #, php-format
1921
+ msgid "Sorry, %s is a required field."
1922
+ msgstr "מצטערים, %s הוא שדה חובה"
1923
+
1924
+ #: includes/class-wp-members.php:1558
1925
+ msgid "You must enter a valid email address."
1926
+ msgstr "חובה להזין אימייל תקף"
1927
+
1928
+ #: includes/class-wp-members.php:1559
1929
+ msgid "The username cannot include non-alphanumeric characters."
1930
+ msgstr "שם המשתמש אינו יכול לכלול תווים שאינם אלפא-נומריים."
1931
+
1932
+ #: includes/class-wp-members.php:1560
1933
+ msgid "Sorry, username is a required field"
1934
+ msgstr "מצטערים, שם המשתמש הוא שדה חובה"
1935
+
1936
+ #: includes/class-wp-members.php:1561
1937
+ msgid "Passwords did not match."
1938
+ msgstr "הסיסמאות אינן תואמות"
1939
+
1940
+ #: includes/class-wp-members.php:1562
1941
+ msgid "Emails did not match."
1942
+ msgstr "כתובות האימייל אינן תואמות"
1943
+
1944
+ #: includes/class-wp-members.php:1563
1945
+ msgid "You must complete the CAPTCHA form."
1946
+ msgstr "חובה להשלים את טופס קוד האימות."
1947
+
1948
+ #: includes/class-wp-members.php:1564
1949
+ msgid "CAPTCHA was not valid."
1950
+ msgstr "קוד האימות אינו תקף"
1951
+
1952
+ #: includes/class-wp-members.php:1567
1953
+ #, php-format
1954
+ msgid ""
1955
+ "Sorry, you can only upload the following file types for the %s field: %s."
1956
+ msgstr ""
1957
+
1958
+ #: includes/class-wp-members.php:1570
1959
+ msgid "Edit My Information"
1960
+ msgstr "עריכת הפרטים שלך"
1961
+
1962
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
1963
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
1964
+ #, php-format
1965
+ msgid "You are logged in as %s"
1966
+ msgstr "אתה מחובר כ- %s."
1967
+
1968
+ #: includes/class-wp-members.php:1573
1969
+ msgid "Log out"
1970
+ msgstr ""
1971
+
1972
+ #: includes/class-wp-members.php:1574
1973
+ msgid "Edit profile"
1974
+ msgstr ""
1975
+
1976
+ #: includes/class-wp-members.php:1574
1977
+ msgid "Begin using the site."
1978
+ msgstr "אפשר להתחיל להשתמש באתר"
1979
+
1980
+ #: includes/class-wp-members.php:1576
1981
+ msgid "Click to log out"
1982
+ msgstr "ללחוץ כדי לצאת"
1983
+
1984
+ #: includes/class-wp-members.php:1578
1985
+ msgid "click to log out"
1986
+ msgstr "ללחוץ כדי לצאת"
1987
+
1988
+ #: includes/class-wp-members.php:1579
1989
+ msgid "Log Out"
1990
+ msgstr ""
1991
+
1992
+ #: includes/class-wp-members.php:1583
1993
+ msgid "click here to log out"
1994
+ msgstr "ללחוץ כאן כדי לצאת"
1995
+
1996
+ #: includes/class-wp-members.php:1584
1997
+ msgid "Login Failed!<br />You entered an invalid username or password."
1998
+ msgstr "הכניסה נכשלה!<br>הזנת שם משתמש או סיסמה שגויים."
1999
+
2000
+ #: includes/class-wp-members.php:1589
2001
+ msgid "Forgot?"
2002
+ msgstr "שכחת?"
2003
+
2004
+ #: includes/class-wp-members.php:1593
2005
+ msgid ""
2006
+ "This content is restricted to site members. If you are an existing user, "
2007
+ "please log in. New users may register below."
2008
+ msgstr ""
2009
+ "תוכן זה מוגבל לחברי האתר. אם אתה משתמש קיים, נא להיכנס. משתמשים חדשים "
2010
+ "יכולים להירשם להלן."
2011
+
2012
+ #: includes/class-wp-members.php:1594
2013
+ msgid ""
2014
+ "Congratulations! Your registration was successful.<br /><br />You may now "
2015
+ "log in using the password that was emailed to you."
2016
+ msgstr ""
2017
+ "יופי! ההרשמה הצליחה<br /><br />אפשר להתחבר כעת עם הסיסמה שנשלחה אליך באימייל."
2018
+
2019
+ #: includes/class-wp-members.php:1597
2020
+ msgid "Sorry, that username is taken, please try another."
2021
+ msgstr "מצטערים, שם המשתמש הזה תפוס, נא לנסות שם אחר."
2022
+
2023
+ #: includes/class-wp-members.php:1598
2024
+ msgid ""
2025
+ "Sorry, that email address already has an account.<br />Please try another."
2026
+ msgstr "מצטערים, כבר יש חשבון עם האימייל הזה.<br />נא לנסות אחר."
2027
+
2028
+ #: includes/class-wp-members.php:1599
2029
+ msgid "Your information was updated!"
2030
+ msgstr "המידע שלך עודכן!"
2031
+
2032
+ #: includes/class-wp-members.php:1602
2033
+ msgid "Passwords did not match.<br /><br />Please try again."
2034
+ msgstr "הסיסמאות אינן תואמות.<br><br>נא לנסות שוב."
2035
+
2036
+ #: includes/class-wp-members.php:1603
2037
+ msgid "Password successfully changed!"
2038
+ msgstr "הסיסמה הוחלפה בהצלחה!"
2039
+
2040
+ #: includes/class-wp-members.php:1604
2041
+ msgid "Either the username or email address do not exist in our records."
2042
+ msgstr "שם המשתמש או כתובת האימייל לא קיימים ברשומות שלנו."
2043
+
2044
+ #: includes/class-wp-members.php:1605
2045
+ msgid ""
2046
+ "Password successfully reset!<br /><br />An email containing a new password "
2047
+ "has been sent to the email address on file for your account."
2048
+ msgstr ""
2049
+ "הסיסמה אופסה בהצלחה!<br /><br />אימייל עם הסיסמה החדשה נשלח אל כתובת האימייל "
2050
+ "שלך."
2051
+
2052
+ #: includes/class-wp-members.php:1607
2053
+ msgid "This content requires the following membership: "
2054
+ msgstr ""
2055
+
2056
+ #: includes/class-wp-members.php:1608
2057
+ msgid "This content requires one of the following memberships: "
2058
+ msgstr ""
2059
+
2060
+ #: includes/class-wp-members.php:1721
2061
+ msgid "Show forms as logged out"
2062
+ msgstr ""
2063
+
2064
+ #: includes/class-wp-members.php:1730
2065
+ msgid "Show form message dialog"
2066
+ msgstr ""
2067
+
2068
+ #: includes/class-wp-members.php:1838
2069
+ msgid "(more&hellip;)"
2070
+ msgstr "עוד..."
2071
+
2072
+ #: includes/cli/class-wp-members-cli.php:17
2073
+ #, php-format
2074
+ msgid "User: %s"
2075
+ msgstr ""
2076
+
2077
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2078
+ msgid "We were unable to validate the public key."
2079
+ msgstr "לא הצלחנו לאמת את המפתח הציבורי."
2080
+
2081
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2082
+ msgid "We were unable to validate the private key."
2083
+ msgstr "הצלחנו לאמת את המפתח הפרטי."
2084
+
2085
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2086
+ msgid "The challenge parameter of the verify script was incorrect."
2087
+ msgstr "הפרמטר המאתגר של קוד האימות היה שגוי."
2088
+
2089
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2090
+ msgid "The CAPTCHA solution was incorrect."
2091
+ msgstr "פתרון קוד האימות היה שגוי"
2092
+
2093
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2094
+ msgid "The parameters to verify were incorrect"
2095
+ msgstr "הפרמטרים לאימות היו שגויים"
2096
+
2097
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2098
+ msgid ""
2099
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2100
+ msgstr "מפתחות קוד האימות של-API reCAPTCHA קשורות לדומיין ספציפי מסיבות אבטחה."
2101
+
2102
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2103
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2104
+ msgstr "השרת של קוד האימות reCAPTCHA אינו נגיש. נא לנסות שוב."
2105
+
2106
+ #. translators: %s: title of menu item which is invalid
2107
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2108
+ #, php-format
2109
+ msgid "%s (Invalid)"
2110
+ msgstr ""
2111
+
2112
+ #. translators: %s: title of menu item in draft status
2113
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2114
+ #, php-format
2115
+ msgid "%s (Pending)"
2116
+ msgstr ""
2117
+
2118
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2119
+ msgid "Move up"
2120
+ msgstr ""
2121
+
2122
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2123
+ msgid "Move down"
2124
+ msgstr ""
2125
+
2126
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2127
+ msgid "Edit Menu Item"
2128
+ msgstr ""
2129
+
2130
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2131
+ msgid "URL"
2132
+ msgstr ""
2133
+
2134
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2135
+ msgid "Navigation Label"
2136
+ msgstr ""
2137
+
2138
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2139
+ msgid "Title Attribute"
2140
+ msgstr ""
2141
+
2142
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2143
+ msgid "Open link in a new window/tab"
2144
+ msgstr ""
2145
+
2146
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2147
+ msgid "CSS Classes (optional)"
2148
+ msgstr ""
2149
+
2150
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2151
+ msgid "Link Relationship (XFN)"
2152
+ msgstr ""
2153
+
2154
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2155
+ msgid ""
2156
+ "The description will be displayed in the menu if the current theme supports "
2157
+ "it."
2158
+ msgstr ""
2159
+
2160
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2161
+ #, php-format
2162
+ msgid "Original: %s"
2163
+ msgstr ""
2164
+
2165
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2166
+ msgid "Remove"
2167
+ msgstr ""
2168
+
2169
+ #: templates/tos.php:32
2170
+ #, php-format
2171
+ msgid "%sclose%s"
2172
+ msgstr "%sסגירה%s"
2173
+
2174
+ #: templates/tos.php:34
2175
+ #, php-format
2176
+ msgid "%sprint%s"
2177
+ msgstr "%sספרינט%s"
2178
+
2179
+ #. Plugin Name of the plugin/theme
2180
+ msgid "WP-Members"
2181
+ msgstr "וורדפרס-חברים"
2182
+
2183
+ #. Plugin URI of the plugin/theme
2184
+ msgid "https://rocketgeek.com"
2185
+ msgstr ""
2186
+
2187
+ #. Description of the plugin/theme
2188
+ msgid ""
2189
+ "WP access restriction and user registration. For more information on plugin "
2190
+ "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2191
+ "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2192
+ "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2193
+ "available. WP-Members(tm) is a trademark of butlerblog.com."
2194
+ msgstr ""
2195
+
2196
+ #. Author of the plugin/theme
2197
+ msgid "Chad Butler"
2198
+ msgstr "Chad Butler"
2199
+
2200
+ #. Author URI of the plugin/theme
2201
+ msgid "http://butlerblog.com/"
2202
+ msgstr "http://butlerblog.com/"
2203
+
2204
+ #~ msgid "Click to log out."
2205
+ #~ msgstr "יציאה"
2206
+
2207
+ #~ msgid "You have set WP-Members to turn off the registration process"
2208
+ #~ msgstr "הגדרת את וורדפרס-חברים לכבות את תהליך ההרשמה"
2209
+
2210
+ #~ msgid ""
2211
+ #~ "but you also set to moderate and/or email admin new registrations. You "
2212
+ #~ "will need to set up a registration page for users to register."
2213
+ #~ msgstr ""
2214
+ #~ "אבל הגדרת גם סינון ושליחת הודעה באימייל למנהל על הרשמה. צריך להגדיר עמוד "
2215
+ #~ "הרשמה למשתמשים כדי להירשם."
2216
+
2217
+ #~ msgid "%s are blocked by default."
2218
+ #~ msgstr "ה%s מוגבלים כברירת מחדל"
2219
+
2220
+ #~ msgid "Unblock this %s"
2221
+ #~ msgstr "ביטול חסימת %s זה"
2222
+
2223
+ #~ msgid "%s are not blocked by default."
2224
+ #~ msgstr "%s אינם חסומים כברירת מחדל."
2225
+
2226
+ #~ msgid "Block this %s"
2227
+ #~ msgstr "חסימת %s זה"
2228
+
2229
+ #~ msgid "Unblocked?"
2230
+ #~ msgstr "לבטל את החסימה?"
2231
+
2232
+ #~ msgid "Blocked?"
2233
+ #~ msgstr "חסום?"
2234
+
2235
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2236
+ #~ msgstr "תווית השדה הכרחית כדי להוסיף שדה חדש. שום דבר לא עודכן."
2237
+
2238
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2239
+ #~ msgstr "שם האפשרות הוא חובה כדי להוסיף שדה חדש. שום דבר לא עודכן."
2240
+
2241
+ #~ msgid "Option Name must contain only letters, numbers, and underscores"
2242
+ #~ msgstr "שם האפשרות חייב להכיל רק אותיות, ספרות ומקף תחתון."
2243
+
2244
+ #~ msgid "A field with that option name already exists"
2245
+ #~ msgstr "שדה עם שם אפשרות זה כבר קיים"
2246
+
2247
+ #~ msgid "field was added"
2248
+ #~ msgstr "השדה נוסף"
2249
+
2250
+ #~ msgid "field was updated"
2251
+ #~ msgstr "השדה עודכן"
2252
+
2253
+ #~ msgid "Option Name"
2254
+ #~ msgstr "שם האפשרות"
2255
+
2256
+ #~ msgid "Additional information for field upload fields"
2257
+ #~ msgstr "פרטים נוספים עבור שדות העלאת שדה"
2258
+
2259
+ #~ msgid "Additional information for checkbox fields"
2260
+ #~ msgstr "מידע נוסף עבור שדות תיבת סימון"
2261
+
2262
+ #~ msgid "Additional information for dropdown fields"
2263
+ #~ msgstr "פרטים נוספים עבור שדות של הרשימה הנפתחת"
2264
+
2265
+ #~ msgid "For dropdown, array of values:"
2266
+ #~ msgstr "עבור רשימה נפתחת, מערך של ערכים:"
2267
+
2268
+ #~ msgid ""
2269
+ #~ "Determine which fields will display and which are required. This "
2270
+ #~ "includes all fields, both native WP fields and WP-Members custom fields."
2271
+ #~ msgstr ""
2272
+ #~ "קביעת אילו שדות יוצגו ואילו חובה.זה כולל את כל השדות, גם שדות של וורדפרס "
2273
+ #~ "וגם שדות מותאמים אישית של וורדפרס-חברים."
2274
+
2275
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2276
+ #~ msgstr "(הערה: האימייל הוא תמיד חובה ולא ניתן לשנותו.)"
2277
+
2278
+ #~ msgid "Add/Delete"
2279
+ #~ msgstr "הוספה/מחיקה"
2280
+
2281
+ #~ msgid "Checked?"
2282
+ #~ msgstr "מסומן?"
2283
+
2284
+ #~ msgid "Delete"
2285
+ #~ msgstr "מחיקה"
2286
+
2287
+ #~ msgid "(Email cannot be removed)"
2288
+ #~ msgstr "(לא ניתן להסיר את האימייל)"
2289
+
2290
+ #~ msgid "native"
2291
+ #~ msgstr "מקומי"
2292
+
2293
+ #~ msgid "Update Fields"
2294
+ #~ msgstr "עדכון השדות"
2295
+
2296
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2297
+ #~ msgstr "נא להסכים ל%sתנאי השימוש%s"
2298
+
2299
+ #~ msgid "http://rocketgeek.com"
2300
+ #~ msgstr "http://rocketgeek.com"
2301
+
2302
+ #~ msgid ""
2303
+ #~ "WP access restriction and user registration. For more information on "
2304
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
2305
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
2306
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
2307
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
2308
+ #~ msgstr ""
2309
+ #~ "הגבלת גישה לאתר והרשמה. למידע נוסף על תכונות התוסף, נא להתייחס ל<a href="
2310
+ #~ "\"http://rocketgeek.com/plugins/wp-members/users-guide/\">מדריך המקוון</"
2311
+ #~ "a>. גם<a href=\"http://rocketgeek.com/plugins/wp-members/quick-start-"
2312
+ #~ "guide/\">מדריך התחלה מהירה</a> זמין. וורדפרס-חברים (סימן רשום) הוא סימן "
2313
+ #~ "רשום של butlerblog.com."
i18n/languages/wp-members-hi_IN.mo CHANGED
Binary file
i18n/languages/wp-members-hi_IN.po CHANGED
@@ -1,2280 +1,2577 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP-Members 3.2.6\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
6
- "PO-Revision-Date: 2019-04-02 09:55-0400\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Outshine Solutions <ash.pr@outshinesolutions.com>\n"
9
- "Language: hi_IN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,"
16
- "_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Generator: Poedit 2.2.1\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- # @ wp-members
23
- #: admin/dialogs.php:116
24
- msgid "Your WP settings allow anyone to register - this is not the recommended setting."
25
- msgstr "आपके WP सेटिंग्स किसी को भी रजिस्टर करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं है."
26
-
27
- # @ wp-members
28
- #: admin/dialogs.php:117
29
- #, php-format
30
- msgid ""
31
- "You can %s change this here %s making sure the box next to \"Anyone can register\" is "
32
- "unchecked."
33
- msgstr ""
34
- "आप%s में परिवर्तन के यहां%s बनाने यकीन है कि अगले करने के लिए बॉक्स \"कोई भी रजिस्टर कर सकते हैं \" "
35
- "अनियंत्रित है"
36
-
37
- # @ wp-members
38
- #: admin/dialogs.php:118
39
- msgid ""
40
- "This setting allows a link on the /wp-login.php page to register using the WP native "
41
- "registration process thus circumventing any registration you are using with WP-Members. In "
42
- "some cases, this may suit the users wants/needs, but most users should uncheck this option. "
43
- "If you do not change this setting, you can choose to ignore these warning messages under WP-"
44
- "Members Settings."
45
- msgstr ""
46
- "यह सेटिंग / wp-login.php पृष्ठ पर एक लिंक WP देशी पंजीकरण प्रक्रिया इस प्रकार का उपयोग कर आप किसी भी "
47
- "पंजीकरण WP-सदस्य के साथ प्रयोग कर रहे हैं धोखा रजिस्टर करने के लिए अनुमति देता है. कुछ मामलों में, यह "
48
- "उपयोगकर्ताओं को सूट / की जरूरत है चाहता है, हो सकता है, लेकिन अधिकांश उपयोगकर्ताओं को इस विकल्प को अनचेक "
49
- "करना चाहिए. यदि आप इस सेटिंग को बदल नहीं है, तुम WP-सदस्य सेटिंग्स के तहत इन चेतावनी संदेशों को अनदेखा करने "
50
- "के लिए चुन सकते हैं."
51
-
52
- # @ wp-members
53
- #: admin/dialogs.php:122
54
- msgid "Your WP settings allow anyone to comment - this is not the recommended setting."
55
- msgstr "आपके WP सेटिंग्स किसी को भी टिप्पणी करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं है."
56
-
57
- # @ wp-members
58
- #: admin/dialogs.php:123
59
- #, php-format
60
- msgid ""
61
- "You can %s change this here %s by checking the box next to \"Users must be registered and "
62
- "logged in to comment.\""
63
- msgstr ""
64
- "आप%s में परिवर्तन के इस%s अगले बॉक्स की जाँच करके यहाँ कर सकते हैं \"उपयोगकर्ताओं को पंजीकृत होना चाहिए और में "
65
- "लॉग इन टिप्पणी करने के लिए \""
66
-
67
- # @ wp-members
68
- #: admin/dialogs.php:124
69
- msgid ""
70
- "This setting allows any users to comment, whether or not they are registered. Depending on "
71
- "how you are using WP-Members will determine whether you should change this setting or not. "
72
- "If you do not change this setting, you can choose to ignore these warning messages under WP-"
73
- "Members Settings."
74
- msgstr ""
75
- "यह सेटिंग किसी भी उपयोगकर्ताओं को टिप्पणी करने के लिए, चाहे या नहीं वे पंजीकृत हैं अनुमति देता है. कैसे आप WP-"
76
- "सदस्यों का उपयोग कर रहे हैं के आधार पर निर्धारित होगा कि क्या आप इस सेटिंग को बदलने चाहिए या नहीं. यदि "
77
- "आप इस सेटिंग को बदल नहीं है, तुम WP-सदस्य सेटिंग्स के तहत इन चेतावनी संदेशों को अनदेखा करने के लिए चुन सकते हैं."
78
-
79
- # @ wp-members
80
- #: admin/dialogs.php:128
81
- msgid "Your WP settings allow full text rss feeds - this is not the recommended setting."
82
- msgstr "आपका WP सेटिंग्स पूर्ण पाठ आरएसएस फ़ीड की अनुमति यह सिफारिश की सेटिंग नहीं है."
83
-
84
- # @ wp-members
85
- #: admin/dialogs.php:129
86
- #, php-format
87
- msgid ""
88
- "You can %s change this here %s by changing \"For each article in a feed, show\" to \"Summary."
89
- "\""
90
- msgstr ""
91
- "आप बदल रहा है \"प्रत्येक लेख के लिए एक फ़ीड दिखाने के लिए, \" \"सारांश \"%s परिवर्तन यह है यहां%s कर सकते हैं"
92
-
93
- # @ wp-members
94
- #: admin/dialogs.php:130
95
- msgid ""
96
- "Leaving this set to full text allows anyone to read your protected content in an RSS reader. "
97
- "Changing this to Summary prevents this as your feeds will only show summary text."
98
- msgstr ""
99
- "पूर्ण पाठ करने के लिए इस सेट को छोड़कर किसी को भी एक आरएसएस रीडर में संरक्षित सामग्री को पढ़ने के लिए "
100
- "अनुमति देता है. यह करने के लिए सारांश बदलने से अपने फ़ीड के रूप में इस रोकता केवल सारांश पाठ दि"
101
-
102
- # @ wp-members
103
- #: admin/dialogs.php:134
104
- msgid "You have set WP-Members to hold registrations for approval"
105
- msgstr "आप WP-सदस्य सेट करने के लिए अनुमोदन के लिए पंजीकरण पकड़ है"
106
-
107
- # @ wp-members
108
- #: admin/dialogs.php:135
109
- msgid ""
110
- "but you have not changed the default message for \"Registration Completed\" under \"WP-"
111
- "Members Dialogs and Error Messages.\" You should change this message to let users know they "
112
- "are pending approval."
113
- msgstr ""
114
- "लेकिन आप के लिए डिफ़ॉल्ट संदेश नहीं बदल गया है \"पंजीकरण पूर्ण \" के अंतर्गत \"WP-सदस्य संवाद और त्रुटि संदेश \" "
115
- "आप इस संदेश को बदलने के लिए उपयोगकर्ताओं को पता है कि वे अनुमोदन के लिए लंबित कर रहे हैं "
116
-
117
- # @ wp-members
118
- #: admin/dialogs.php:139
119
- msgid "You have turned on reCAPTCHA"
120
- msgstr "आप reCAPTCHA पर बदल गया है"
121
-
122
- # @ wp-members
123
- #: admin/dialogs.php:140
124
- msgid ""
125
- "but you have not entered API keys. You will need both a public and private key. The "
126
- "CAPTCHA will not display unless a valid API key is included."
127
- msgstr ""
128
- "लेकिन आप एपीआई कुंजी दर्ज नहीं की है. तुम दोनों सार्वजनिक और निजी कुंजी की आवश्यकता होगी. कॅप्चा है जब तक "
129
- "एक मान्य API कुंजी शामिल है प्रदर्शित नहीं होगा."
130
-
131
- #: admin/dialogs.php:144
132
- msgid "You have active settings that are not recommended."
133
- msgstr ""
134
-
135
- #: admin/dialogs.php:145
136
- msgid ""
137
- "If you will not be changing these settings, you can turn off these warning messages by "
138
- "checking the \"Ignore warning messages\" in the settings below."
139
- msgstr ""
140
-
141
- # @ wp-members
142
- #: admin/dialogs.php:169
143
- msgid "Version:"
144
- msgstr "संस्करण:"
145
-
146
- #: admin/dialogs.php:170
147
- #, fuzzy
148
- msgid "Quick Start Guide"
149
- msgstr "नवीनीकरण उपयोगकर्ता"
150
-
151
- #: admin/dialogs.php:171
152
- #, fuzzy
153
- msgid "Online User Guide"
154
- msgstr "नवीनीकरण उपयोगकर्ता"
155
-
156
- #: admin/dialogs.php:172
157
- msgid "FAQs"
158
- msgstr ""
159
-
160
- # @ wp-members
161
- #: admin/dialogs.php:179
162
- #, fuzzy
163
- msgid "Thank you for using WP-Members"
164
- msgstr "WP-सदस्य का उपयोग करने के लिए धन्यवाद! संस्मरण%s का उपयोग कर रहे हैं"
165
-
166
- #: admin/dialogs.php:180
167
- msgid "A plugin developed by"
168
- msgstr ""
169
-
170
- # @ wp-members
171
- #: admin/dialogs.php:181
172
- msgid "Follow"
173
- msgstr "पालन करें"
174
-
175
- #: admin/dialogs.php:198 admin/dialogs.php:202
176
- msgid "Latest from RocketGeek"
177
- msgstr ""
178
-
179
- #: admin/dialogs.php:219
180
- msgid "Like WP-Members?"
181
- msgstr ""
182
-
183
- #: admin/dialogs.php:220
184
- #, php-format
185
- msgid ""
186
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s rating. "
187
- "Thanks!!"
188
- msgstr ""
189
-
190
- #: admin/dialogs.php:231 admin/dialogs.php:244
191
- msgid "Latest from ButlerBlog"
192
- msgstr ""
193
-
194
- #: admin/includes/class-wp-members-admin-api.php:256
195
- msgid "Custom email"
196
- msgstr ""
197
-
198
- # @ wp-members
199
- #: admin/includes/class-wp-members-admin-api.php:257
200
- #: admin/includes/class-wp-members-admin-api.php:259
201
- msgid "Subject"
202
- msgstr "विषय"
203
-
204
- # @ wp-members
205
- #: admin/includes/class-wp-members-admin-api.php:260
206
- msgid "Body"
207
- msgstr "शरीर"
208
-
209
- #: admin/includes/class-wp-members-admin-api.php:262
210
- msgid "Your custom email message content."
211
- msgstr ""
212
-
213
- # @ wp-members
214
- #: admin/includes/class-wp-members-admin-api.php:340
215
- msgid "Options"
216
- msgstr "विकल्प"
217
-
218
- # @ wp-members
219
- #: admin/includes/class-wp-members-admin-api.php:341
220
- msgid "Fields"
221
- msgstr "फ़ील्ड"
222
-
223
- # @ wp-members
224
- #: admin/includes/class-wp-members-admin-api.php:342
225
- msgid "Dialogs"
226
- msgstr "संवाद"
227
-
228
- # @ wp-members
229
- #: admin/includes/class-wp-members-admin-api.php:343
230
- msgid "Emails"
231
- msgstr "ईमेल"
232
-
233
- # @ wp-members
234
- #: admin/includes/class-wp-members-admin-api.php:359
235
- msgid "New Registration"
236
- msgstr "नया पंजीकरण"
237
-
238
- # @ wp-members
239
- #: admin/includes/class-wp-members-admin-api.php:368
240
- msgid "Registration is Moderated"
241
- msgstr "पंजीकरण संचालित है"
242
-
243
- # @ wp-members
244
- #: admin/includes/class-wp-members-admin-api.php:374
245
- msgid "Registration is Moderated, User is Approved"
246
- msgstr "पंजीकरण संचालित है, उपयोगकर्ता स्वीकृत"
247
-
248
- # @ wp-members
249
- #: admin/includes/class-wp-members-admin-api.php:382
250
- msgid "Password Reset"
251
- msgstr "पासवर्ड रीसेट"
252
-
253
- #: admin/includes/class-wp-members-admin-api.php:389
254
- msgid "Retrieve Username"
255
- msgstr ""
256
-
257
- # @ wp-members
258
- #: admin/includes/class-wp-members-admin-api.php:397
259
- msgid "Admin Notification"
260
- msgstr "व्यवस्थापक अधिसूचना"
261
-
262
- # @ wp-members
263
- #: admin/includes/class-wp-members-admin-api.php:423
264
- msgid "Restricted post (or page), displays above the login/registration form"
265
- msgstr "रतिबंधित पोस्ट, (या पृष्ठ) प्रपत्र लॉग इन / पंजीकरण ऊपर प्रदर्शित करता है"
266
-
267
- # @ wp-members
268
- #: admin/includes/class-wp-members-admin-api.php:424
269
- msgid "Username is taken"
270
- msgstr "उपयोगकर्ता नाम लिया है"
271
-
272
- # @ wp-members
273
- #: admin/includes/class-wp-members-admin-api.php:425
274
- msgid "Email is registered"
275
- msgstr "ईमेल पंजीकृत है"
276
-
277
- # @ wp-members
278
- #: admin/includes/class-wp-members-admin-api.php:426
279
- msgid "Registration completed"
280
- msgstr "पंजीकरण पूरा किया"
281
-
282
- # @ wp-members
283
- #: admin/includes/class-wp-members-admin-api.php:427
284
- msgid "User update"
285
- msgstr "नवीनीकरण उपयोगकर्ता"
286
-
287
- # @ wp-members
288
- #: admin/includes/class-wp-members-admin-api.php:428
289
- msgid "Passwords did not match"
290
- msgstr "कूटशब्द मेल नहीं खाता"
291
-
292
- # @ wp-members
293
- #: admin/includes/class-wp-members-admin-api.php:429
294
- msgid "Password changes"
295
- msgstr "पासवर्ड परिवर्तन"
296
-
297
- # @ wp-members
298
- #: admin/includes/class-wp-members-admin-api.php:430
299
- msgid "Username or email do not exist when trying to reset forgotten password"
300
- msgstr "उपयोगकर्ता नाम या ईमेल जब भूल पासवर्ड रीसेट करने की कोशिश मौजूद नहीं है"
301
-
302
- # @ wp-members
303
- #: admin/includes/class-wp-members-admin-api.php:431
304
- msgid "Password reset"
305
- msgstr "पासवर्ड रीसेट"
306
-
307
- # @ default
308
- # @ wp-members
309
- #: admin/includes/class-wp-members-admin-api.php:564
310
- msgid "Settings"
311
- msgstr "सेटिंग्स"
312
-
313
- #: admin/includes/class-wp-members-products-admin.php:57
314
- msgid "Slug"
315
- msgstr ""
316
-
317
- #: admin/includes/class-wp-members-products-admin.php:58
318
- msgid "Role"
319
- msgstr ""
320
-
321
- # @ wp-members
322
- #: admin/includes/class-wp-members-products-admin.php:59
323
- #: admin/includes/class-wp-members-products-admin.php:162 admin/tab-fields.php:459
324
- #: admin/user-export.php:69
325
- msgid "Expires"
326
- msgstr "समाप्त हो"
327
-
328
- #: admin/includes/class-wp-members-products-admin.php:60
329
- msgid "Last updated"
330
- msgstr ""
331
-
332
- #: admin/includes/class-wp-members-products-admin.php:80
333
- msgid "No role required"
334
- msgstr ""
335
-
336
- #: admin/includes/class-wp-members-products-admin.php:84
337
- msgid "Does not expire"
338
- msgstr ""
339
-
340
- #: admin/includes/class-wp-members-products-admin.php:120
341
- msgid "Membership Product Details"
342
- msgstr ""
343
-
344
- #: admin/includes/class-wp-members-products-admin.php:142
345
- #: admin/includes/class-wp-members-products-admin.php:167
346
- msgid "Period"
347
- msgstr ""
348
-
349
- #: admin/includes/class-wp-members-products-admin.php:142
350
- msgid "Day"
351
- msgstr ""
352
-
353
- #: admin/includes/class-wp-members-products-admin.php:142
354
- msgid "Week"
355
- msgstr ""
356
-
357
- #: admin/includes/class-wp-members-products-admin.php:142
358
- msgid "Month"
359
- msgstr ""
360
-
361
- #: admin/includes/class-wp-members-products-admin.php:142
362
- msgid "Year"
363
- msgstr ""
364
-
365
- #: admin/includes/class-wp-members-products-admin.php:148
366
- msgid "Name (slug)"
367
- msgstr ""
368
-
369
- #: admin/includes/class-wp-members-products-admin.php:153
370
- msgid "Role Required?"
371
- msgstr ""
372
-
373
- #: admin/includes/class-wp-members-products-admin.php:156
374
- msgid "No Role"
375
- msgstr ""
376
-
377
- #: admin/includes/class-wp-members-products-admin.php:164
378
- #: admin/includes/class-wp-members-products-admin.php:166
379
- msgid "Number"
380
- msgstr ""
381
-
382
- #: admin/includes/class-wp-members-products-admin.php:245 admin/tab-options.php:207
383
- #: inc/class-wp-members-forms.php:999 inc/class-wp-members-user-profile.php:106
384
- #: inc/deprecated.php:360 inc/deprecated.php:622
385
- msgid "None"
386
- msgstr ""
387
-
388
- #: admin/includes/class-wp-members-products-admin.php:251
389
- msgid "Limit access to:"
390
- msgstr ""
391
-
392
- #: admin/includes/class-wp-members-products-admin.php:321
393
- msgid "Required Membership"
394
- msgstr ""
395
-
396
- #: admin/includes/class-wp-members-products-admin.php:360
397
- msgid "Membership"
398
- msgstr ""
399
-
400
- #: admin/post.php:45 admin/post.php:48
401
- msgid "Unblock"
402
- msgstr ""
403
-
404
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
405
- #, fuzzy
406
- msgid "Block"
407
- msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
408
-
409
- #: admin/post.php:47 admin/post.php:50
410
- msgid "Hide"
411
- msgstr ""
412
-
413
- #: admin/post.php:138
414
- #, php-format
415
- msgid "%s blocked"
416
- msgstr ""
417
-
418
- #: admin/post.php:138
419
- #, php-format
420
- msgid "%s unblocked"
421
- msgstr ""
422
-
423
- #: admin/post.php:177
424
- #, php-format
425
- msgid "%s Restriction"
426
- msgstr ""
427
-
428
- #: admin/post.php:206
429
- msgid "Unblocked"
430
- msgstr ""
431
-
432
- #: admin/post.php:207
433
- msgid "Blocked"
434
- msgstr ""
435
-
436
- #: admin/post.php:208
437
- msgid "Hidden"
438
- msgstr ""
439
-
440
- #: admin/post.php:214
441
- msgid "Status:"
442
- msgstr ""
443
-
444
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
445
- #, fuzzy
446
- msgid "Edit"
447
- msgstr "जानकारी संपादित करें"
448
-
449
- #: admin/post.php:229
450
- msgid "Ok"
451
- msgstr ""
452
-
453
- #: admin/post.php:230
454
- msgid "Cancel"
455
- msgstr ""
456
-
457
- #: admin/post.php:314
458
- msgid "Status"
459
- msgstr ""
460
-
461
- #: admin/tab-about.php:34 admin/tab-about.php:54
462
- msgid "About WP-Members"
463
- msgstr ""
464
-
465
- #: admin/tab-captcha.php:66
466
- #, php-format
467
- msgid "See the %sUsers Guide on CAPTCHA%s."
468
- msgstr ""
469
-
470
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
471
- #: admin/tab-fields.php:153 admin/tab-options.php:82
472
- msgid "Need help?"
473
- msgstr ""
474
-
475
- # @ wp-members
476
- #: admin/tab-captcha.php:84
477
- msgid "Manage reCAPTCHA Options"
478
- msgstr "ReCAPTCHA विकल्प प्रबंधित करें"
479
-
480
- # @ wp-members
481
- #: admin/tab-captcha.php:98
482
- msgid ""
483
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking "
484
- "spam on your blog."
485
- msgstr ""
486
- "reCAPTCHA एक मुक्त, सुलभ कॅप्चा सेवा है कि पुस्तकों को डिजिटाइज़ करने में मदद करता है जबकि अपने ब्लॉग पर स्पैम "
487
- "अवरुद्ध है."
488
-
489
- # @ wp-members
490
- #: admin/tab-captcha.php:99
491
- #, php-format
492
- msgid ""
493
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a "
494
- "human. This verifies that they are not a spambot while also correcting the automatic scans "
495
- "of old books. So you get less spam, and the world gets accurately digitized books. Everybody "
496
- "wins! For details, visit the %s reCAPTCHA website%s"
497
- msgstr ""
498
- "reCAPTCHA commenters करने के लिए पूछता है दो पुस्तक से साबित होता है कि वे मानव हैं स्कैन शब्दों को पुन: "
499
- "लिखें. यह पुष्टि करता है कि वे एक spambot जबकि स्वचालित पुरानी पुस्तकों का स्कैन भी सही नहीं हैं. तो तुम कम "
500
- "स्पैम मिलता है, और दुनिया सही डिजीटल किताबें हो जाता है. हर कोई जीतता है! जानकारी के लिए,%s reCAPTCHA "
501
- "वेबसाइट%s की यात्रा"
502
-
503
- # @ wp-members
504
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
505
- msgid "reCAPTCHA Keys"
506
- msgstr "reCAPTCHA कुंजी"
507
-
508
- # @ wp-members
509
- #: admin/tab-captcha.php:106
510
- #, php-format
511
- msgid ""
512
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" key. You can "
513
- "sign up for a %s free reCAPTCHA key%s"
514
- msgstr ""
515
- "reCAPTCHA एक एपीआई कुंजी की आवश्यकता है, \"सार्वजनिक \" और \"निजी \" कुंजी शामिल है. आप%s मुक्त "
516
- "reCAPTCHA कुंजी%s के लिए साइन अप कर सकते हैं"
517
-
518
- # @ wp-members
519
- #: admin/tab-captcha.php:107
520
- msgid "Public Key"
521
- msgstr "सार्वजनिक कुंजी"
522
-
523
- # @ wp-members
524
- #: admin/tab-captcha.php:108
525
- msgid "Private Key"
526
- msgstr "निजी कुंजी"
527
-
528
- # @ wp-members
529
- #: admin/tab-captcha.php:112
530
- msgid "Choose Theme"
531
- msgstr "थीम चुनें"
532
-
533
- # @ wp-members
534
- #: admin/tab-captcha.php:115
535
- msgid "Red"
536
- msgstr "लाल"
537
-
538
- # @ wp-members
539
- #: admin/tab-captcha.php:116
540
- msgid "White"
541
- msgstr "सफ़ेद"
542
-
543
- # @ wp-members
544
- #: admin/tab-captcha.php:117
545
- msgid "Black Glass"
546
- msgstr "काले ग्लास"
547
-
548
- # @ wp-members
549
- #: admin/tab-captcha.php:118
550
- msgid "Clean"
551
- msgstr "स्वच्छ"
552
-
553
- #: admin/tab-captcha.php:132
554
- #, php-format
555
- msgid ""
556
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" key. You can sign "
557
- "up for a %s free reCAPTCHA key%s"
558
- msgstr ""
559
-
560
- #: admin/tab-captcha.php:133
561
- msgid "Site Key"
562
- msgstr ""
563
-
564
- #: admin/tab-captcha.php:134
565
- msgid "Secret Key"
566
- msgstr ""
567
-
568
- #: admin/tab-captcha.php:165
569
- #, fuzzy
570
- msgid "Characters for image"
571
- msgstr "फ़ील्ड प्रकार"
572
-
573
- #: admin/tab-captcha.php:169
574
- #, fuzzy
575
- msgid "Number of characters"
576
- msgstr "कुछ अंशः दिखाएँ"
577
-
578
- #: admin/tab-captcha.php:173
579
- #, fuzzy
580
- msgid "Image dimensions"
581
- msgstr "फ़ील्ड प्रकार"
582
-
583
- #: admin/tab-captcha.php:174
584
- msgid "Width"
585
- msgstr ""
586
-
587
- #: admin/tab-captcha.php:174
588
- msgid "Height"
589
- msgstr ""
590
-
591
- #: admin/tab-captcha.php:177
592
- msgid "Font color of characters"
593
- msgstr ""
594
-
595
- #: admin/tab-captcha.php:181
596
- #, fuzzy
597
- msgid "Background color of image"
598
- msgstr "फ़ील्ड प्रकार"
599
-
600
- #: admin/tab-captcha.php:185
601
- msgid "Font size"
602
- msgstr ""
603
-
604
- #: admin/tab-captcha.php:189
605
- msgid "Width between characters"
606
- msgstr ""
607
-
608
- #: admin/tab-captcha.php:193
609
- #, fuzzy
610
- msgid "Image type"
611
- msgstr "फ़ील्ड प्रकार"
612
-
613
- #: admin/tab-captcha.php:207
614
- msgid ""
615
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin installed and "
616
- "activated."
617
- msgstr ""
618
-
619
- # @ wp-members
620
- #: admin/tab-captcha.php:231
621
- msgid "Update CAPTCHA Settings"
622
- msgstr "अपडेट करें CAPTCHA सेटिंग्स"
623
-
624
- # @ wp-members
625
- #: admin/tab-captcha.php:301
626
- msgid "CAPTCHA was updated for WP-Members"
627
- msgstr "CAPTCHA WP-सदस्य के लिए अपडेट किया गया था"
628
-
629
- # @ wp-members
630
- #: admin/tab-dialogs.php:67
631
- msgid "Dialogs and Error Messages"
632
- msgstr "संवाद और त्रुटि संदेश"
633
-
634
- # @ wp-members
635
- #: admin/tab-dialogs.php:69
636
- #, php-format
637
- msgid ""
638
- "You can customize the text for dialogs and error messages. Simple HTML is allowed %s etc."
639
- msgstr "आप संवाद और त्रुटि संदेश के लिए पाठ को अनुकूलित कर सकते हैं. सरल HTML%s आदि की अनुमति दी है"
640
-
641
- # @ wp-members
642
- #: admin/tab-dialogs.php:80
643
- msgid "Terms of Service (TOS)"
644
- msgstr "सेवा की शर्तें (TOS)"
645
-
646
- # @ wp-members
647
- #: admin/tab-dialogs.php:87
648
- msgid "Update Dialogs"
649
- msgstr "संवाद अपडेट करें"
650
-
651
- # @ wp-members
652
- #: admin/tab-dialogs.php:123
653
- msgid "WP-Members dialogs were updated"
654
- msgstr "WP-सदस्य संवाद अपडेट की गई थीं"
655
-
656
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
657
- msgid "WP-Members Dropin settings were updated"
658
- msgstr ""
659
-
660
- #: admin/tab-dropins.php:204
661
- msgid "Manage Dropins"
662
- msgstr ""
663
-
664
- #: admin/tab-dropins.php:205
665
- msgid "Current dropin folder: "
666
- msgstr ""
667
-
668
- #: admin/tab-dropins.php:206
669
- msgid ""
670
- "You can change location of the dropin folder using the <code>wpmem_dropin_folder</code> "
671
- "filter."
672
- msgstr ""
673
-
674
- #: admin/tab-dropins.php:269
675
- msgid "Name"
676
- msgstr ""
677
-
678
- #: admin/tab-dropins.php:270
679
- msgid "File"
680
- msgstr ""
681
-
682
- #: admin/tab-dropins.php:271
683
- msgid "Version"
684
- msgstr ""
685
-
686
- #: admin/tab-dropins.php:272
687
- msgid "Description"
688
- msgstr ""
689
-
690
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
691
- msgid "Save Settings"
692
- msgstr ""
693
-
694
- # @ wp-members
695
- #: admin/tab-emails.php:58
696
- msgid "Email Messages"
697
- msgstr "ईमेल संदेश"
698
-
699
- # @ wp-members
700
- #: admin/tab-emails.php:61
701
- msgid "You can customize the content of the emails sent by the plugin."
702
- msgstr "आप प्लगइन द्वारा भेजे गए ईमेल की सामग्री को अनुकूलित कर सकते हैं."
703
-
704
- # @ wp-members
705
- #: admin/tab-emails.php:63
706
- msgid "A list of shortcodes is available here."
707
- msgstr "शॉर्टकोड की एक सूची यहाँ उपलब्ध है."
708
-
709
- # @ wp-members
710
- #: admin/tab-emails.php:70
711
- msgid "Set a custom email address"
712
- msgstr "एक कस्टम ईमेल पता सेट करें"
713
-
714
- # @ wp-members
715
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
716
- #: admin/tab-fields.php:179
717
- msgid "(optional)"
718
- msgstr "(वैकल्पिक)"
719
-
720
- # @ wp-members
721
- #: admin/tab-emails.php:74
722
- msgid "Set a custom email name"
723
- msgstr "एक कस्टम ईमेल का नाम सेट करें"
724
-
725
- # @ wp-members
726
- #: admin/tab-emails.php:85
727
- msgid "Email Signature"
728
- msgstr "ईमेल हस्ताक्षर"
729
-
730
- # @ wp-members
731
- #: admin/tab-emails.php:93
732
- msgid "Update Emails"
733
- msgstr "ईमेल अपडेट करें"
734
-
735
- # @ wp-members
736
- #: admin/tab-emails.php:161
737
- msgid "WP-Members emails were updated"
738
- msgstr "WP-सदस्य ईमेल अपडेट की गई थीं"
739
-
740
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
741
- msgid "No fields selected for deletion"
742
- msgstr ""
743
-
744
- #: admin/tab-fields.php:115
745
- msgid "Are you sure you want to delete the following fields?"
746
- msgstr ""
747
-
748
- #: admin/tab-fields.php:141
749
- msgid "Fields deleted"
750
- msgstr ""
751
-
752
- #: admin/tab-fields.php:155
753
- msgid "Field Manager Documentation"
754
- msgstr ""
755
-
756
- # @ wp-members
757
- #: admin/tab-fields.php:180 admin/tab-fields.php:322 inc/class-wp-members-user-profile.php:138
758
- #: inc/deprecated.php:385 inc/deprecated.php:646 inc/wp-registration.php:57
759
- #: inc/wp-registration.php:231
760
- msgid "(required)"
761
- msgstr "आवश्यकता है?"
762
-
763
- # @ wp-members
764
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
765
- #, fuzzy
766
- msgid "Edit Field"
767
- msgstr "जानकारी संपादित करें"
768
-
769
- # @ wp-members
770
- #: admin/tab-fields.php:185
771
- #, fuzzy
772
- msgid "Add a Field"
773
- msgstr "जोड़ना"
774
-
775
- # @ wp-members
776
- #: admin/tab-fields.php:190
777
- msgid "Field Label"
778
- msgstr "क्षेत्र लेबल"
779
-
780
- #: admin/tab-fields.php:192
781
- msgid "The name of the field as it will be displayed to the user."
782
- msgstr ""
783
-
784
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
785
- msgid "Meta Key"
786
- msgstr ""
787
-
788
- #: admin/tab-fields.php:201
789
- msgid ""
790
- "The database meta value for the field. It must be unique and contain no spaces (underscores "
791
- "are ok)."
792
- msgstr ""
793
-
794
- # @ wp-members
795
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
796
- msgid "Field Type"
797
- msgstr "फ़ील्ड प्रकार"
798
-
799
- # @ wp-members
800
- #: admin/tab-fields.php:211
801
- msgid "text"
802
- msgstr "पाठ"
803
-
804
- #: admin/tab-fields.php:212
805
- msgid "email"
806
- msgstr ""
807
-
808
- # @ wp-members
809
- #: admin/tab-fields.php:213
810
- msgid "textarea"
811
- msgstr "textarea"
812
-
813
- # @ wp-members
814
- #: admin/tab-fields.php:214
815
- msgid "checkbox"
816
- msgstr "चेकबॉक्स"
817
-
818
- #: admin/tab-fields.php:215
819
- msgid "multiple checkbox"
820
- msgstr ""
821
-
822
- #: admin/tab-fields.php:216
823
- msgid "select (dropdown)"
824
- msgstr ""
825
-
826
- #: admin/tab-fields.php:217
827
- msgid "multiple select"
828
- msgstr ""
829
-
830
- #: admin/tab-fields.php:218
831
- msgid "radio group"
832
- msgstr ""
833
-
834
- # @ wp-members
835
- #: admin/tab-fields.php:219
836
- msgid "password"
837
- msgstr "पासवर्ड"
838
-
839
- #: admin/tab-fields.php:220
840
- msgid "image"
841
- msgstr ""
842
-
843
- #: admin/tab-fields.php:221
844
- msgid "file"
845
- msgstr ""
846
-
847
- #: admin/tab-fields.php:222
848
- msgid "url"
849
- msgstr ""
850
-
851
- #: admin/tab-fields.php:223
852
- msgid "number"
853
- msgstr ""
854
-
855
- #: admin/tab-fields.php:224
856
- msgid "date"
857
- msgstr ""
858
-
859
- #: admin/tab-fields.php:225
860
- msgid "hidden"
861
- msgstr ""
862
-
863
- #: admin/tab-fields.php:227
864
- msgid "membership"
865
- msgstr ""
866
-
867
- # @ wp-members
868
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
869
- msgid "Display?"
870
- msgstr "प्रदर्शित करते हैं?"
871
-
872
- #: admin/tab-fields.php:237
873
- msgid "This field is always displayed"
874
- msgstr ""
875
-
876
- # @ wp-members
877
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
878
- msgid "Required?"
879
- msgstr "आवश्यकता है?"
880
-
881
- #: admin/tab-fields.php:246
882
- msgid "This field is always required"
883
- msgstr ""
884
-
885
- #: admin/tab-fields.php:252
886
- msgid "Allow HTML?"
887
- msgstr ""
888
-
889
- #: admin/tab-fields.php:259
890
- msgid "Placeholder"
891
- msgstr ""
892
-
893
- #: admin/tab-fields.php:267
894
- msgid "Pattern"
895
- msgstr ""
896
-
897
- #: admin/tab-fields.php:273
898
- msgid "Title"
899
- msgstr ""
900
-
901
- #: admin/tab-fields.php:282
902
- msgid "Minimum Value"
903
- msgstr ""
904
-
905
- #: admin/tab-fields.php:286
906
- msgid "Maximum Value"
907
- msgstr ""
908
-
909
- #: admin/tab-fields.php:294
910
- msgid "Rows"
911
- msgstr ""
912
-
913
- #: admin/tab-fields.php:298
914
- msgid "Columns"
915
- msgstr ""
916
-
917
- #: admin/tab-fields.php:306
918
- msgid "Accepted file types:"
919
- msgstr ""
920
-
921
- #: admin/tab-fields.php:311
922
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
923
- msgstr ""
924
-
925
- # @ wp-members
926
- #: admin/tab-fields.php:318
927
- #, fuzzy
928
- msgid "Checked by default?"
929
- msgstr "जाँच की?"
930
-
931
- # @ wp-members
932
- #: admin/tab-fields.php:322
933
- #, fuzzy
934
- msgid "Stored value if checked:"
935
- msgstr "चेकबॉक्स के लिए, मान संग्रहीत यदि जांचा जाता है:"
936
-
937
- #: admin/tab-fields.php:343
938
- msgid "Stored values delimiter:"
939
- msgstr ""
940
-
941
- #: admin/tab-fields.php:352
942
- msgid "Values (Displayed|Stored):"
943
- msgstr ""
944
-
945
- # @ wp-members
946
- #: admin/tab-fields.php:377
947
- msgid "Options should be Option Name|option_value,"
948
- msgstr "विकल्प का नाम होना चाहिए, option_value"
949
-
950
- # @ wp-members
951
- #: admin/tab-fields.php:381
952
- msgid "Visit plugin site for more information"
953
- msgstr "अधिक जानकारी के लिए प्लगइन साइट पर जाएँ"
954
-
955
- #: admin/tab-fields.php:388
956
- msgid "Value"
957
- msgstr ""
958
-
959
- # @ wp-members
960
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
961
- #, fuzzy
962
- msgid "Add Field"
963
- msgstr "जोड़ना"
964
-
965
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
966
- msgid "Return to Fields Table"
967
- msgstr ""
968
-
969
- #: admin/tab-fields.php:449
970
- msgid "Drag and drop to reorder fields"
971
- msgstr ""
972
-
973
- # @ wp-members
974
- #: admin/tab-fields.php:455
975
- #, fuzzy
976
- msgid "Registration Date"
977
- msgstr "पंजीकरण पूरा किया"
978
-
979
- # @ wp-members
980
- #: admin/tab-fields.php:456
981
- #, fuzzy
982
- msgid "Active"
983
- msgstr "सक्रिय"
984
-
985
- # @ wp-members
986
- #: admin/tab-fields.php:457
987
- #, fuzzy
988
- msgid "Registration IP"
989
- msgstr "आईपी ​​@ पंजीकरण"
990
-
991
- #: admin/tab-fields.php:458
992
- msgid "Subscription Type"
993
- msgstr ""
994
-
995
- #: admin/tab-fields.php:460 admin/user-export.php:58
996
- msgid "User ID"
997
- msgstr ""
998
-
999
- # @ wp-members
1000
- #: admin/tab-fields.php:493
1001
- msgid "Manage Fields"
1002
- msgstr "फील्ड्स प्रबंधित"
1003
-
1004
- #: admin/tab-fields.php:532
1005
- msgid "delete"
1006
- msgstr ""
1007
-
1008
- #: admin/tab-fields.php:546
1009
- msgid "Display Label"
1010
- msgstr ""
1011
-
1012
- #: admin/tab-fields.php:552
1013
- #, fuzzy
1014
- msgid "Users Screen"
1015
- msgstr "%d उपयोगकर्ताओं में सक्रिय थे."
1016
-
1017
- #: admin/tab-fields.php:553
1018
- msgid "Users Search"
1019
- msgstr ""
1020
-
1021
- #: admin/tab-fields.php:555
1022
- msgid "Sort"
1023
- msgstr ""
1024
-
1025
- #: admin/tab-fields.php:596
1026
- msgid "Delete Selected"
1027
- msgstr ""
1028
-
1029
- # @ wp-members
1030
- #: admin/tab-fields.php:738
1031
- msgid "WP-Members fields were updated"
1032
- msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
1033
-
1034
- #: admin/tab-fields.php:760
1035
- msgid "Field Label is required. Nothing was updated."
1036
- msgstr ""
1037
-
1038
- #: admin/tab-fields.php:761
1039
- msgid "Meta Key is required. Nothing was updated."
1040
- msgstr ""
1041
-
1042
- #: admin/tab-fields.php:763
1043
- msgid "Meta Key must contain only letters, numbers, and underscores"
1044
- msgstr ""
1045
-
1046
- #: admin/tab-fields.php:770
1047
- msgid "A field with that meta key already exists"
1048
- msgstr ""
1049
-
1050
- #: admin/tab-fields.php:775
1051
- #, php-format
1052
- msgid ""
1053
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1054
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. Field was not added."
1055
- msgstr ""
1056
-
1057
- # @ wp-members
1058
- #: admin/tab-fields.php:816
1059
- #, fuzzy
1060
- msgid "Checked value is required for checkboxes. Nothing was updated."
1061
- msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
1062
-
1063
- #: admin/tab-fields.php:847
1064
- msgid "A value is required for hidden fields. Nothing was updated."
1065
- msgstr ""
1066
-
1067
- #: admin/tab-fields.php:854
1068
- #, php-format
1069
- msgid "%s was added"
1070
- msgstr ""
1071
-
1072
- #: admin/tab-fields.php:867
1073
- #, php-format
1074
- msgid "%s was updated"
1075
- msgstr ""
1076
-
1077
- #: admin/tab-fields.php:909
1078
- msgid "Form field order updated."
1079
- msgstr ""
1080
-
1081
- #: admin/tab-options.php:60
1082
- #, php-format
1083
- msgid "%sChange%s or %sFilter%s this address"
1084
- msgstr ""
1085
-
1086
- #: admin/tab-options.php:61
1087
- #, php-format
1088
- msgid "See the %sUsers Guide on plugin options%s."
1089
- msgstr ""
1090
-
1091
- #: admin/tab-options.php:66
1092
- msgid "Posts"
1093
- msgstr ""
1094
-
1095
- #: admin/tab-options.php:67 admin/tab-options.php:215
1096
- #, fuzzy
1097
- msgid "Pages"
1098
- msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
1099
-
1100
- # @ wp-members
1101
- #: admin/tab-options.php:94
1102
- msgid "Manage Options"
1103
- msgstr "विकल्प प्रबंधित"
1104
-
1105
- #: admin/tab-options.php:98
1106
- msgid "Content"
1107
- msgstr ""
1108
-
1109
- #: admin/tab-options.php:109
1110
- msgid "Content Blocking"
1111
- msgstr ""
1112
-
1113
- #: admin/tab-options.php:113
1114
- msgid "Do not block"
1115
- msgstr ""
1116
-
1117
- #: admin/tab-options.php:127
1118
- msgid "Show Excerpts"
1119
- msgstr ""
1120
-
1121
- #: admin/tab-options.php:128
1122
- msgid "Show Login Form"
1123
- msgstr ""
1124
-
1125
- #: admin/tab-options.php:129
1126
- msgid "Show Registration Form"
1127
- msgstr ""
1128
-
1129
- # @ wp-members
1130
- #: admin/tab-options.php:130
1131
- #, fuzzy
1132
- msgid "Auto Excerpt:"
1133
- msgstr "कुछ अंशः दिखाएँ"
1134
-
1135
- #: admin/tab-options.php:152
1136
- #, fuzzy
1137
- msgid "Number of words in excerpt:"
1138
- msgstr "कुछ अंशः दिखाएँ"
1139
-
1140
- #: admin/tab-options.php:153
1141
- msgid "Custom read more link (optional):"
1142
- msgstr ""
1143
-
1144
- # @ wp-members
1145
- #: admin/tab-options.php:167
1146
- msgid "Time-based expiration"
1147
- msgstr "समय - आधारित समाप्ति"
1148
-
1149
- # @ wp-members
1150
- #: admin/tab-options.php:167
1151
- msgid "Allows for access to expire"
1152
- msgstr "उपयोग के लिए समाप्त करने के लिए"
1153
-
1154
- # @ wp-members
1155
- #: admin/tab-options.php:168
1156
- msgid "Trial period"
1157
- msgstr "परीक्षण अवधि"
1158
-
1159
- # @ wp-members
1160
- #: admin/tab-options.php:168
1161
- msgid "Allows for a trial period"
1162
- msgstr "एक परीक्षण अवधि के लिए अनुमति देता"
1163
-
1164
- #: admin/tab-options.php:170
1165
- msgid "Subscription Settings"
1166
- msgstr ""
1167
-
1168
- #: admin/tab-options.php:180
1169
- msgid "Other Settings"
1170
- msgstr ""
1171
-
1172
- #: admin/tab-options.php:186
1173
- msgid "Enable Products"
1174
- msgstr ""
1175
-
1176
- #: admin/tab-options.php:186
1177
- msgid "Enables creation of different membership products"
1178
- msgstr ""
1179
-
1180
- #: admin/tab-options.php:187
1181
- msgid "Clone menus"
1182
- msgstr ""
1183
-
1184
- #: admin/tab-options.php:187
1185
- msgid "Enables logged in menus"
1186
- msgstr ""
1187
-
1188
- # @ wp-members
1189
- #: admin/tab-options.php:188
1190
- msgid "Notify admin"
1191
- msgstr "व्यवस्थापक को सूचित करें"
1192
-
1193
- # @ wp-members
1194
- #: admin/tab-options.php:188
1195
- #, fuzzy, php-format
1196
- msgid "Notify %s for each new registration? %s"
1197
- msgstr "व्यवस्थापक करने के लिए प्रत्येक नए पंजीकरण के लिए ईमेल भेजता है?"
1198
-
1199
- # @ wp-members
1200
- #: admin/tab-options.php:189
1201
- msgid "Moderate registration"
1202
- msgstr "मध्यम पंजीकरण"
1203
-
1204
- # @ wp-members
1205
- #: admin/tab-options.php:189
1206
- msgid "Holds new registrations for admin approval"
1207
- msgstr "व्यवस्थापक अनुमोदन के लिए नए पंजीकरण धारण"
1208
-
1209
- # @ wp-members
1210
- #: admin/tab-options.php:190
1211
- msgid "Ignore warning messages"
1212
- msgstr "चेतावनी संदेश पर ध्यान न दें"
1213
-
1214
- # @ wp-members
1215
- #: admin/tab-options.php:190
1216
- msgid "Ignores WP-Members warning messages in the admin panel"
1217
- msgstr "व्यवस्थापक पैनल में WP-सदस्य चेतावनी संदेश ध्यान नहीं देता है"
1218
-
1219
- #: admin/tab-options.php:201
1220
- msgid "Attribution"
1221
- msgstr ""
1222
-
1223
- #: admin/tab-options.php:203
1224
- msgid "Attribution is appreciated! Display \"powered by\" link on register form?"
1225
- msgstr ""
1226
-
1227
- # @ wp-members
1228
- #: admin/tab-options.php:206
1229
- #, fuzzy
1230
- msgid "Enable CAPTCHA"
1231
- msgstr "CAPTCHA का प्रयोग करें"
1232
-
1233
- #: admin/tab-options.php:211
1234
- msgid "reCAPTCHA"
1235
- msgstr ""
1236
-
1237
- #: admin/tab-options.php:212
1238
- msgid "Really Simple CAPTCHA"
1239
- msgstr ""
1240
-
1241
- #: admin/tab-options.php:219
1242
- msgid "Login Page:"
1243
- msgstr ""
1244
-
1245
- #: admin/tab-options.php:222
1246
- msgid "Specify a login page (optional)"
1247
- msgstr ""
1248
-
1249
- # @ wp-members
1250
- #: admin/tab-options.php:231
1251
- #, fuzzy
1252
- msgid "Register Page:"
1253
- msgstr "रजिस्टर पृष्ठ URL:"
1254
-
1255
- #: admin/tab-options.php:234
1256
- msgid "For creating a register link in the login form"
1257
- msgstr ""
1258
-
1259
- #: admin/tab-options.php:243
1260
- #, fuzzy
1261
- msgid "User Profile Page:"
1262
- msgstr "रजिस्टर पृष्ठ URL:"
1263
-
1264
- #: admin/tab-options.php:246
1265
- msgid "For creating a forgot password link in the login form"
1266
- msgstr ""
1267
-
1268
- #: admin/tab-options.php:252 admin/tab-options.php:254
1269
- msgid "Stylesheet"
1270
- msgstr ""
1271
-
1272
- # @ wp-members
1273
- #: admin/tab-options.php:263
1274
- #, fuzzy
1275
- msgid "Custom Stylesheet:"
1276
- msgstr "रिवाज"
1277
-
1278
- # @ wp-members
1279
- #: admin/tab-options.php:268 admin/tab-options.php:295
1280
- msgid "Update Settings"
1281
- msgstr "सेटिंग्स अपडेट करें"
1282
-
1283
- #: admin/tab-options.php:276
1284
- msgid "Custom Post Types"
1285
- msgstr ""
1286
-
1287
- #: admin/tab-options.php:282
1288
- msgid "Add to WP-Members Settings"
1289
- msgstr ""
1290
-
1291
- #: admin/tab-options.php:312
1292
- msgid "Close"
1293
- msgstr ""
1294
-
1295
- #: admin/tab-options.php:330 admin/tab-options.php:331
1296
- msgid "WP-Members Settings"
1297
- msgstr ""
1298
-
1299
- #: admin/tab-options.php:332
1300
- msgid "The following is your WP-Members settings information if needed for support."
1301
- msgstr ""
1302
-
1303
- #: admin/tab-options.php:359
1304
- msgid "Click to Copy"
1305
- msgstr ""
1306
-
1307
- #: admin/tab-options.php:435
1308
- msgid "Custom Post Type settings were updated"
1309
- msgstr ""
1310
-
1311
- # @ wp-members
1312
- #: admin/tab-options.php:551
1313
- msgid "WP-Members settings were updated"
1314
- msgstr "WP-सदस्य सेटिंग्स अपडेट की गई थीं"
1315
-
1316
- #: admin/tab-options.php:621 admin/tab-options.php:651
1317
- msgid "USE CUSTOM URL BELOW"
1318
- msgstr ""
1319
-
1320
- #: admin/tab-options.php:640
1321
- #, fuzzy
1322
- msgid "Select a page"
1323
- msgstr "रजिस्टर पृष्ठ URL:"
1324
-
1325
- #: admin/user-export.php:59 inc/class-wp-members.php:1232 inc/class-wp-members.php:1255
1326
- msgid "Username"
1327
- msgstr ""
1328
-
1329
- # @ wp-members
1330
- #: admin/user-export.php:65
1331
- msgid "Activated?"
1332
- msgstr "सक्रिय?"
1333
-
1334
- # @ wp-members
1335
- #: admin/user-export.php:68 admin/users.php:317
1336
- msgid "Subscription"
1337
- msgstr "सदस्यता"
1338
-
1339
- # @ wp-members
1340
- #: admin/user-export.php:71
1341
- msgid "Registered"
1342
- msgstr "पंजीकृत"
1343
-
1344
- # @ wp-members
1345
- #: admin/user-export.php:72
1346
- msgid "IP"
1347
- msgstr "IP"
1348
-
1349
- # @ wp-members
1350
- #: admin/user-export.php:135
1351
- msgid "Yes"
1352
- msgstr "हां"
1353
-
1354
- #: admin/user-export.php:135 admin/users.php:399
1355
- msgid "No"
1356
- msgstr ""
1357
-
1358
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1359
- msgid "Activate"
1360
- msgstr ""
1361
-
1362
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1363
- msgid "Deactivate"
1364
- msgstr ""
1365
-
1366
- # @ wp-members
1367
- #: admin/users.php:52 admin/users.php:57
1368
- msgid "Export"
1369
- msgstr "निर्यात"
1370
-
1371
- #: admin/users.php:58 admin/users.php:109
1372
- #, fuzzy
1373
- msgid "Export All Users"
1374
- msgstr "निर्यात"
1375
-
1376
- #: admin/users.php:158
1377
- #, php-format
1378
- msgid "%s users activated"
1379
- msgstr ""
1380
-
1381
- #: admin/users.php:158
1382
- #, php-format
1383
- msgid "%s users deactivated"
1384
- msgstr ""
1385
-
1386
- #: admin/users.php:161
1387
- msgid "No users selected"
1388
- msgstr ""
1389
-
1390
- #: admin/users.php:181
1391
- #, php-format
1392
- msgid "%s activated"
1393
- msgstr ""
1394
-
1395
- #: admin/users.php:186
1396
- #, php-format
1397
- msgid "%s deactivated"
1398
- msgstr ""
1399
-
1400
- #: admin/users.php:190
1401
- msgid "That user is already active"
1402
- msgstr ""
1403
-
1404
- #: admin/users.php:315
1405
- msgid "Pending"
1406
- msgstr ""
1407
-
1408
- #: admin/users.php:316
1409
- msgid "Trial"
1410
- msgstr ""
1411
-
1412
- #: admin/users.php:318
1413
- msgid "Expired"
1414
- msgstr ""
1415
-
1416
- #: admin/users.php:321
1417
- msgid "Not Activated"
1418
- msgstr ""
1419
-
1420
- #: admin/users.php:322
1421
- msgid "Deactivated"
1422
- msgstr ""
1423
-
1424
- #: admin/users.php:324
1425
- msgid "Not Exported"
1426
- msgstr ""
1427
-
1428
- #: inc/api.php:304 inc/class-wp-members.php:1296
1429
- msgid "log in"
1430
- msgstr "लॉग इन"
1431
-
1432
- #: inc/api.php:305
1433
- msgid "log out"
1434
- msgstr ""
1435
-
1436
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247 inc/wp-registration.php:77
1437
- #, php-format
1438
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1439
- msgstr ""
1440
-
1441
- # @ wp-members
1442
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198 inc/wp-registration.php:78
1443
- msgid "TOS"
1444
- msgstr "टीओएस"
1445
-
1446
- # @ wp-members
1447
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78 wp-members-tos.php:23
1448
- msgid "Terms of Service"
1449
- msgstr "सेवा की शर्तें"
1450
-
1451
- #: inc/class-wp-members-products.php:212
1452
- msgid "Product"
1453
- msgstr ""
1454
-
1455
- #: inc/class-wp-members-products.php:213
1456
- msgid "Products"
1457
- msgstr ""
1458
-
1459
- #: inc/class-wp-members-products.php:218
1460
- msgid "Memberships"
1461
- msgstr ""
1462
-
1463
- #: inc/class-wp-members-products.php:219
1464
- #, php-format
1465
- msgid "All %s"
1466
- msgstr ""
1467
-
1468
- #: inc/class-wp-members-products.php:220
1469
- #, php-format
1470
- msgid "Add New %s"
1471
- msgstr ""
1472
-
1473
- #: inc/class-wp-members-products.php:221
1474
- msgid "Add New"
1475
- msgstr ""
1476
-
1477
- #: inc/class-wp-members-products.php:222
1478
- #, php-format
1479
- msgid "New %s"
1480
- msgstr ""
1481
-
1482
- #: inc/class-wp-members-products.php:223
1483
- #, php-format
1484
- msgid "Edit %s"
1485
- msgstr ""
1486
-
1487
- #: inc/class-wp-members-products.php:224
1488
- #, php-format
1489
- msgid "Update %s"
1490
- msgstr ""
1491
-
1492
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1493
- #, php-format
1494
- msgid "View %s"
1495
- msgstr ""
1496
-
1497
- #: inc/class-wp-members-products.php:227
1498
- #, php-format
1499
- msgid "Search %s"
1500
- msgstr ""
1501
-
1502
- #: inc/class-wp-members-products.php:228
1503
- msgid "Not found"
1504
- msgstr ""
1505
-
1506
- #: inc/class-wp-members-products.php:229
1507
- msgid "Not found in Trash"
1508
- msgstr ""
1509
-
1510
- #: inc/class-wp-members-products.php:230
1511
- msgid "Insert into item"
1512
- msgstr ""
1513
-
1514
- #: inc/class-wp-members-products.php:231
1515
- #, php-format
1516
- msgid "Save %s Details"
1517
- msgstr ""
1518
-
1519
- #: inc/class-wp-members-products.php:234
1520
- msgid "Membership Product"
1521
- msgstr ""
1522
-
1523
- #: inc/class-wp-members-products.php:235
1524
- msgid "WP-Members Membership Products"
1525
- msgstr ""
1526
-
1527
- #: inc/class-wp-members-shortcodes.php:135
1528
- msgid "This is a generic message to display the form message dialog in the Customizer."
1529
- msgstr ""
1530
-
1531
- # @ default
1532
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275 inc/deprecated.php:180
1533
- msgid "There was an error with the CAPTCHA form."
1534
- msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1535
-
1536
- #: inc/class-wp-members-shortcodes.php:676
1537
- msgid "Click here to log out."
1538
- msgstr ""
1539
-
1540
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1541
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1542
- msgid "Register"
1543
- msgstr ""
1544
-
1545
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1546
- msgid "Log In"
1547
- msgstr ""
1548
-
1549
- # @ wp-members
1550
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1551
- msgid "WP-Members Additional Fields"
1552
- msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
1553
-
1554
- # @ wp-members
1555
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1556
- #, fuzzy
1557
- msgid "Additional Information"
1558
- msgstr "अतिरिक्त जानकारी"
1559
-
1560
- # @ wp-members
1561
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1562
- msgid "Activate this user?"
1563
- msgstr "इस उपयोगकर्ता को सक्रिय करें?"
1564
-
1565
- # @ wp-members
1566
- #: inc/class-wp-members-user-profile.php:453
1567
- msgid "Reactivate this user?"
1568
- msgstr "इस उपयोगकर्ता को पुन: सक्रिय?"
1569
-
1570
- # @ wp-members
1571
- #: inc/class-wp-members-user-profile.php:458
1572
- msgid "Deactivate this user?"
1573
- msgstr "इस उपयोगकर्ता को निष्क्रिय करें?"
1574
-
1575
- # @ wp-members
1576
- #: inc/class-wp-members-user-profile.php:507
1577
- msgid "IP @ registration"
1578
- msgstr "आईपी ​​@ पंजीकरण"
1579
-
1580
- #: inc/class-wp-members-user-profile.php:526
1581
- msgid "Product Access"
1582
- msgstr ""
1583
-
1584
- #: inc/class-wp-members-user-profile.php:534
1585
- msgid "Enable"
1586
- msgstr ""
1587
-
1588
- #: inc/class-wp-members-user-profile.php:535
1589
- msgid "Disable"
1590
- msgstr ""
1591
-
1592
- #: inc/class-wp-members-user-profile.php:541
1593
- msgid "Expires:"
1594
- msgstr ""
1595
-
1596
- #: inc/class-wp-members-user-profile.php:543
1597
- msgid "Enabled"
1598
- msgstr ""
1599
-
1600
- # @ wp-members
1601
- #: inc/class-wp-members-user.php:712
1602
- msgid "<strong>ERROR</strong>: User has not been activated."
1603
- msgstr "<strong>ERROR</strong>: उपयोगकर्ता सक्रिय नहीं किया गया है."
1604
-
1605
- #: inc/class-wp-members-widget.php:24
1606
- msgid "Displays the WP-Members sidebar login."
1607
- msgstr ""
1608
-
1609
- # @ wp-members
1610
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1611
- msgid "Login Status"
1612
- msgstr "स्थिति लॉगिन"
1613
-
1614
- # @ wp-members
1615
- #: inc/class-wp-members-widget.php:46
1616
- msgid "Title:"
1617
- msgstr "शीर्षक:"
1618
-
1619
- #: inc/class-wp-members-widget.php:50
1620
- msgid "Redirect to (optional):"
1621
- msgstr ""
1622
-
1623
- # @ wp-members
1624
- #: inc/class-wp-members.php:1183
1625
- msgid "First Name"
1626
- msgstr "प्रथम नाम"
1627
-
1628
- # @ wp-members
1629
- #: inc/class-wp-members.php:1184
1630
- msgid "Last Name"
1631
- msgstr "अंतिम नाम"
1632
-
1633
- # @ wp-members
1634
- #: inc/class-wp-members.php:1185
1635
- msgid "Address 1"
1636
- msgstr "पता 1"
1637
-
1638
- # @ wp-members
1639
- #: inc/class-wp-members.php:1186
1640
- msgid "Address 2"
1641
- msgstr "पता 2"
1642
-
1643
- # @ wp-members
1644
- #: inc/class-wp-members.php:1187
1645
- msgid "City"
1646
- msgstr "शहर"
1647
-
1648
- # @ wp-members
1649
- #: inc/class-wp-members.php:1188
1650
- msgid "State"
1651
- msgstr "राज्य"
1652
-
1653
- # @ wp-members
1654
- #: inc/class-wp-members.php:1189
1655
- msgid "Zip"
1656
- msgstr "ज़िप"
1657
-
1658
- # @ wp-members
1659
- #: inc/class-wp-members.php:1190
1660
- msgid "Country"
1661
- msgstr "देश"
1662
-
1663
- # @ wp-members
1664
- #: inc/class-wp-members.php:1191
1665
- msgid "Day Phone"
1666
- msgstr "दिन फोन"
1667
-
1668
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1669
- msgid "Email"
1670
- msgstr ""
1671
-
1672
- #: inc/class-wp-members.php:1193
1673
- msgid "Confirm Email"
1674
- msgstr ""
1675
-
1676
- # @ wp-members
1677
- #: inc/class-wp-members.php:1194
1678
- msgid "Website"
1679
- msgstr "वेबसाइट"
1680
-
1681
- # @ wp-members
1682
- #: inc/class-wp-members.php:1195
1683
- msgid "Biographical Info"
1684
- msgstr "जीवनी जानकारी"
1685
-
1686
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216 inc/class-wp-members.php:1295
1687
- msgid "Password"
1688
- msgstr ""
1689
-
1690
- #: inc/class-wp-members.php:1197
1691
- msgid "Confirm Password"
1692
- msgstr ""
1693
-
1694
- # @ wp-members
1695
- #: inc/class-wp-members.php:1208
1696
- #, fuzzy
1697
- msgid "You are not logged in."
1698
- msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
1699
-
1700
- # @ wp-members
1701
- #: inc/class-wp-members.php:1214
1702
- #, fuzzy
1703
- msgid "Existing Users Log In"
1704
- msgstr "मौजूदा प्रयोक्ता लॉगिन"
1705
-
1706
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1707
- msgid "Username or Email"
1708
- msgstr ""
1709
-
1710
- #: inc/class-wp-members.php:1218
1711
- msgid "Remember Me"
1712
- msgstr ""
1713
-
1714
- # @ wp-members
1715
- #: inc/class-wp-members.php:1219
1716
- msgid "Forgot password?"
1717
- msgstr "पासवर्ड भूल गए?"
1718
-
1719
- # @ wp-members
1720
- #: inc/class-wp-members.php:1220
1721
- msgid "Click here to reset"
1722
- msgstr "रीसेट करने के लिए यहाँ पर क्लिक करें"
1723
-
1724
- # @ wp-members
1725
- #: inc/class-wp-members.php:1221
1726
- msgid "New User?"
1727
- msgstr "नये उपयोगकर्ता"
1728
-
1729
- # @ wp-members
1730
- #: inc/class-wp-members.php:1222
1731
- msgid "Click here to register"
1732
- msgstr "पंजीकरण केलिए क्लिक करें"
1733
-
1734
- # @ wp-members
1735
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1736
- msgid "Change Password"
1737
- msgstr "पासवर्ड बदलें"
1738
-
1739
- #: inc/class-wp-members.php:1226
1740
- msgid "New password"
1741
- msgstr ""
1742
-
1743
- #: inc/class-wp-members.php:1227
1744
- msgid "Confirm new password"
1745
- msgstr ""
1746
-
1747
- # @ wp-members
1748
- #: inc/class-wp-members.php:1228
1749
- msgid "Update Password"
1750
- msgstr "पासवर्ड अद्यतन करें"
1751
-
1752
- # @ wp-members
1753
- #: inc/class-wp-members.php:1231
1754
- msgid "Reset Forgotten Password"
1755
- msgstr "भूल गया पासवर्ड रीसेट करें"
1756
-
1757
- #: inc/class-wp-members.php:1234
1758
- msgid "Reset Password"
1759
- msgstr ""
1760
-
1761
- #: inc/class-wp-members.php:1235
1762
- msgid "Forgot username?"
1763
- msgstr ""
1764
-
1765
- #: inc/class-wp-members.php:1236
1766
- msgid "Click here"
1767
- msgstr ""
1768
-
1769
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1770
- msgid "Retrieve username"
1771
- msgstr ""
1772
-
1773
- #: inc/class-wp-members.php:1240
1774
- msgid "Email Address"
1775
- msgstr ""
1776
-
1777
- # @ wp-members
1778
- #: inc/class-wp-members.php:1244
1779
- #, fuzzy
1780
- msgid "New User Registration"
1781
- msgstr "नये उपयोगकर्ता"
1782
-
1783
- # @ wp-members
1784
- #: inc/class-wp-members.php:1245
1785
- msgid "Choose a Username"
1786
- msgstr "एक उपयोगकर्ता नाम चुनें"
1787
-
1788
- #: inc/class-wp-members.php:1246
1789
- msgid "Input the code:"
1790
- msgstr ""
1791
-
1792
- # @ wp-members
1793
- #: inc/class-wp-members.php:1248
1794
- #, fuzzy
1795
- msgid "Reset Form"
1796
- msgstr "स्पष्ट फार्म"
1797
-
1798
- # @ wp-members
1799
- #: inc/class-wp-members.php:1251
1800
- msgid "Required field"
1801
- msgstr "आवश्यक फ़ील्ड"
1802
-
1803
- # @ wp-members
1804
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1805
- msgid "Edit Your Information"
1806
- msgstr "जानकारी संपादित करें"
1807
-
1808
- # @ wp-members
1809
- #: inc/class-wp-members.php:1256
1810
- #, fuzzy
1811
- msgid "Update Profile"
1812
- msgstr "नवीनीकरण उपयोगकर्ता"
1813
-
1814
- #: inc/class-wp-members.php:1257
1815
- msgid "Update this file"
1816
- msgstr ""
1817
-
1818
- # @ wp-members
1819
- #: inc/class-wp-members.php:1260
1820
- msgid "Login Failed!"
1821
- msgstr "असफल लॉगिन!"
1822
-
1823
- # @ wp-members
1824
- #: inc/class-wp-members.php:1261
1825
- msgid "You entered an invalid username or password."
1826
- msgstr "आप एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया."
1827
-
1828
- # @ wp-members
1829
- #: inc/class-wp-members.php:1262
1830
- msgid "Click here to continue."
1831
- msgstr "यहाँ क्लिक करें"
1832
-
1833
- # @ wp-members
1834
- #: inc/class-wp-members.php:1263
1835
- msgid "Password fields cannot be empty"
1836
- msgstr "पासवर्ड फ़ील्ड रिक्त नहीं हो सकता"
1837
-
1838
- #: inc/class-wp-members.php:1264
1839
- msgid "Sorry, that email address was not found."
1840
- msgstr ""
1841
-
1842
- #: inc/class-wp-members.php:1265
1843
- #, php-format
1844
- msgid "An email was sent to %s with your username."
1845
- msgstr ""
1846
-
1847
- # @ wp-members
1848
- #: inc/class-wp-members.php:1266
1849
- #, php-format
1850
- msgid "Sorry, %s is a required field."
1851
- msgstr "क्षमा करें,%s एक आवश्यक फ़ील्ड है."
1852
-
1853
- # @ wp-members
1854
- #: inc/class-wp-members.php:1267
1855
- msgid "You must enter a valid email address."
1856
- msgstr "आपको एक मान्य ईमेल पता दर्ज करना होगा."
1857
-
1858
- # @ wp-members
1859
- #: inc/class-wp-members.php:1268
1860
- msgid "The username cannot include non-alphanumeric characters."
1861
- msgstr "उपयोक्तानाम गैर अल्फ़ान्यूमेरिक वर्णों को शामिल नहीं कर सकते."
1862
-
1863
- # @ wp-members
1864
- #: inc/class-wp-members.php:1269
1865
- msgid "Sorry, username is a required field"
1866
- msgstr "क्षमा करें, प्रयोक्ता नाम क्षेत्र जरूरी है"
1867
-
1868
- # @ wp-members
1869
- #: inc/class-wp-members.php:1270
1870
- #, fuzzy
1871
- msgid "Passwords did not match."
1872
- msgstr "कूटशब्द मेल नहीं खाता"
1873
-
1874
- # @ wp-members
1875
- #: inc/class-wp-members.php:1271
1876
- #, fuzzy
1877
- msgid "Emails did not match."
1878
- msgstr "कूटशब्द मेल नहीं खाता"
1879
-
1880
- # @ default
1881
- #: inc/class-wp-members.php:1272
1882
- msgid "You must complete the CAPTCHA form."
1883
- msgstr "कॅप्चा प्रपत्र को पूरा करना होगा."
1884
-
1885
- #: inc/class-wp-members.php:1273
1886
- msgid "CAPTCHA was not valid."
1887
- msgstr ""
1888
-
1889
- # @ default
1890
- #: inc/class-wp-members.php:1274 inc/register.php:52
1891
- #, fuzzy
1892
- msgid "There was an error processing the form."
1893
- msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1894
-
1895
- # @ wp-members
1896
- #: inc/class-wp-members.php:1278
1897
- msgid "Edit My Information"
1898
- msgstr "मेरी जानकारी संपादित करें"
1899
-
1900
- # @ wp-members
1901
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283 inc/class-wp-members.php:1285
1902
- #: inc/class-wp-members.php:1290
1903
- #, php-format
1904
- msgid "You are logged in as %s"
1905
- msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
1906
-
1907
- # @ wp-members
1908
- #: inc/class-wp-members.php:1281
1909
- #, fuzzy
1910
- msgid "Click to log out."
1911
- msgstr "लॉग इन"
1912
-
1913
- # @ wp-members
1914
- #: inc/class-wp-members.php:1282
1915
- msgid "Begin using the site."
1916
- msgstr "साइट का उपयोग शुरू करते हैं."
1917
-
1918
- # @ wp-members
1919
- #: inc/class-wp-members.php:1284
1920
- #, fuzzy
1921
- msgid "Click to log out"
1922
- msgstr "लॉग इन"
1923
-
1924
- # @ wp-members
1925
- #: inc/class-wp-members.php:1286
1926
- #, fuzzy
1927
- msgid "click to log out"
1928
- msgstr "लॉग इन"
1929
-
1930
- #: inc/class-wp-members.php:1287
1931
- msgid "Log Out"
1932
- msgstr ""
1933
-
1934
- # @ wp-members
1935
- #: inc/class-wp-members.php:1291
1936
- msgid "click here to log out"
1937
- msgstr "यहाँ क्लिक करने के लिए लॉग आउट करें"
1938
-
1939
- # @ wp-members
1940
- #: inc/class-wp-members.php:1292
1941
- msgid "Login Failed!<br />You entered an invalid username or password."
1942
- msgstr "विफल लॉगिन !<br /> तुम एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया"
1943
-
1944
- # @ wp-members
1945
- #: inc/class-wp-members.php:1297
1946
- msgid "Forgot?"
1947
- msgstr "भूल गए?"
1948
-
1949
- # @ wp-members
1950
- #: inc/class-wp-members.php:1301
1951
- #, fuzzy
1952
- msgid ""
1953
- "This content is restricted to site members. If you are an existing user, please log in. "
1954
- "New users may register below."
1955
- msgstr ""
1956
- "यह सामग्री साइट के सदस्यों के लिए प्रतिबंधित है. यदि आप एक मौजूदा उपयोगकर्ता हैं, तो प्रवेश करें. नए "
1957
- "उपयोगकर्ताओं को नीचे पंजीकृत कर सकते हैं."
1958
-
1959
- # @ wp-members
1960
- #: inc/class-wp-members.php:1302
1961
- #, fuzzy
1962
- msgid ""
1963
- "Congratulations! Your registration was successful.<br /><br />You may now log in using the "
1964
- "password that was emailed to you."
1965
- msgstr ""
1966
- "बधाई हो!आपके पंजीकरण सफल रहा था. <br /> अब आप पासवर्ड है कि आप के लिए ईमेल का उपयोग कर प्रवेश कर सकते "
1967
- "हैं."
1968
-
1969
- # @ wp-members
1970
- #: inc/class-wp-members.php:1305
1971
- msgid "Sorry, that username is taken, please try another."
1972
- msgstr "क्षमा करें, कि उपयोगकर्ता नाम लिया जाता है, एक और प्रयास करें."
1973
-
1974
- # @ wp-members
1975
- #: inc/class-wp-members.php:1306
1976
- msgid "Sorry, that email address already has an account.<br />Please try another."
1977
- msgstr "क्षमा करें, उस ईमेल पते पहले से ही एक खाता है <br /> कृपया एक और प्रयास करें."
1978
-
1979
- # @ wp-members
1980
- #: inc/class-wp-members.php:1307
1981
- msgid "Your information was updated!"
1982
- msgstr "आपकी जानकारी को अपडेट किया गया था!"
1983
-
1984
- # @ wp-members
1985
- #: inc/class-wp-members.php:1310
1986
- msgid "Passwords did not match.<br /><br />Please try again."
1987
- msgstr "पासवर्डों से मेल नहीं खाती. <br /> <br /> कृपया पुन: प्रयास करें."
1988
-
1989
- #: inc/class-wp-members.php:1311
1990
- msgid "Password successfully changed!"
1991
- msgstr ""
1992
-
1993
- # @ wp-members
1994
- #: inc/class-wp-members.php:1312
1995
- msgid "Either the username or email address do not exist in our records."
1996
- msgstr "या तो उपयोगकर्ता नाम या ईमेल पता हमारे रिकॉर्ड में मौजूद नहीं है"
1997
-
1998
- #: inc/class-wp-members.php:1313
1999
- msgid ""
2000
- "Password successfully reset!<br /><br />An email containing a new password has been sent to "
2001
- "the email address on file for your account."
2002
- msgstr ""
2003
-
2004
- #: inc/class-wp-members.php:1315
2005
- msgid "Sorry, you do not have access to this content."
2006
- msgstr ""
2007
-
2008
- #: inc/class-wp-members.php:1433
2009
- msgid "Show forms as logged out"
2010
- msgstr ""
2011
-
2012
- #: inc/class-wp-members.php:1442
2013
- msgid "Show form message dialog"
2014
- msgstr ""
2015
-
2016
- #: inc/class-wp-members.php:1538
2017
- msgid "(more&hellip;)"
2018
- msgstr ""
2019
-
2020
- # @ wp-members
2021
- #: inc/register.php:417
2022
- msgid "We were unable to validate the public key."
2023
- msgstr "हम सार्वजनिक कुंजी को मान्य करने में असमर्थ थे."
2024
-
2025
- # @ wp-members
2026
- #: inc/register.php:421
2027
- msgid "We were unable to validate the private key."
2028
- msgstr "हम निजी कुंजी को मान्य करने में असमर्थ थे."
2029
-
2030
- # @ wp-members
2031
- #: inc/register.php:425
2032
- msgid "The challenge parameter of the verify script was incorrect."
2033
- msgstr "सत्यापित स्क्रिप्ट की चुनौती पैरामीटर गलत थी."
2034
-
2035
- # @ wp-members
2036
- #: inc/register.php:429
2037
- msgid "The CAPTCHA solution was incorrect."
2038
- msgstr "कॅप्चा समाधान गलत था"
2039
-
2040
- # @ wp-members
2041
- #: inc/register.php:433
2042
- msgid "The parameters to verify were incorrect"
2043
- msgstr "सत्यापित करने के लिए पैरामीटर गलत थे"
2044
-
2045
- # @ wp-members
2046
- #: inc/register.php:437
2047
- msgid "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2048
- msgstr "reCAPTCHA एपीआई कुंजी सुरक्षा कारणों के लिए एक विशिष्ट डोमेन नाम के लिए बंधे हैं."
2049
-
2050
- # @ wp-members
2051
- #: inc/register.php:441
2052
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2053
- msgstr "ReCAPTCHA सर्वर तक पहुँच नहीं किया गया था. पुनः भेजने के लिये प्रयास करें"
2054
-
2055
- #: inc/register.php:445
2056
- msgid "You have entered an incorrect code value. Please try again."
2057
- msgstr ""
2058
-
2059
- # @ wp-members
2060
- #: wp-members-tos.php:35
2061
- #, php-format
2062
- msgid "%sclose%s"
2063
- msgstr "%sclose%s"
2064
-
2065
- # @ wp-members
2066
- #: wp-members-tos.php:37
2067
- #, php-format
2068
- msgid "%sprint%s"
2069
- msgstr "%sprint%s"
2070
-
2071
- # @ wp-members
2072
- #. Plugin Name of the plugin/theme
2073
- msgid "WP-Members"
2074
- msgstr "WP-सदस्य"
2075
-
2076
- #. Plugin URI of the plugin/theme
2077
- msgid "https://rocketgeek.com"
2078
- msgstr ""
2079
-
2080
- #. Description of the plugin/theme
2081
- msgid ""
2082
- "WP access restriction and user registration. For more information on plugin features, refer "
2083
- "to <a href=\"https://rocketgeek.com/plugins/wp-members/users-guide/\">the online Users "
2084
- "Guide</a>. A <a href=\"https://rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick "
2085
- "Start Guide</a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
2086
- msgstr ""
2087
-
2088
- #. Author of the plugin/theme
2089
- msgid "Chad Butler"
2090
- msgstr ""
2091
-
2092
- #. Author URI of the plugin/theme
2093
- msgid "http://butlerblog.com/"
2094
- msgstr ""
2095
-
2096
- # @ wp-members
2097
- #~ msgid "You have set WP-Members to turn off the registration process"
2098
- #~ msgstr "WP-सदस्य पंजीकरण प्रक्रिया को बारी के लिए निर्धारित किया है"
2099
-
2100
- # @ wp-members
2101
- #~ msgid ""
2102
- #~ "but you also set to moderate and/or email admin new registrations. You will need to set "
2103
- #~ "up a registration page for users to register."
2104
- #~ msgstr ""
2105
- #~ "लेकिन आप भी और / या मध्यम ईमेल व्यवस्थापक नए पंजीकरण के लिए निर्धारित किया है. आप के लिए एक पंजीकरण "
2106
- #~ "पृष्ठ सेट के लिए उपयोगकर्ताओं को रजिस्टर करने के लिए की आवश्यकता होगी.."
2107
-
2108
- #, fuzzy
2109
- #~ msgid "Unblocked?"
2110
- #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2111
-
2112
- # @ wp-members
2113
- #, fuzzy
2114
- #~ msgid "Blocked?"
2115
- #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2116
-
2117
- # @ wp-members
2118
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2119
- #~ msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
2120
-
2121
- # @ wp-members
2122
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2123
- #~ msgstr "विकल्प नाम के एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
2124
-
2125
- #, fuzzy
2126
- #~ msgid "field was added"
2127
- #~ msgstr "क्षेत्र लेबल"
2128
-
2129
- # @ wp-members
2130
- #, fuzzy
2131
- #~ msgid "field was updated"
2132
- #~ msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
2133
-
2134
- # @ wp-members
2135
- #~ msgid "Option Name"
2136
- #~ msgstr "विकल्प नाम"
2137
-
2138
- #, fuzzy
2139
- #~ msgid "Additional information for checkbox fields"
2140
- #~ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
2141
-
2142
- #, fuzzy
2143
- #~ msgid "Additional information for dropdown fields"
2144
- #~ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
2145
-
2146
- # @ wp-members
2147
- #~ msgid "For dropdown, array of values:"
2148
- #~ msgstr "मूल्यों की ड्रॉपडाउन सरणी, "
2149
-
2150
- # @ wp-members
2151
- #~ msgid ""
2152
- #~ "Determine which fields will display and which are required. This includes all fields, "
2153
- #~ "both native WP fields and WP-Members custom fields."
2154
- #~ msgstr ""
2155
- #~ "निर्धारित जो फ़ील्ड प्रदर्शित करने के लिए और जो आवश्यक हैं. यह सभी क्षेत्रों, दोनों देशी WP क्षेत्र और WP-"
2156
- #~ "सदस्य कस्टम फ़ील्ड्स शामिल हैं."
2157
-
2158
- # @ wp-members
2159
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2160
- #~ msgstr "(नोट: ईमेल हमेशा अनिवार्य है और बदला नहीं जा सकता.)"
2161
-
2162
- # @ wp-members
2163
- #~ msgid "Add/Delete"
2164
- #~ msgstr "जोड़ें /हटाएँ"
2165
-
2166
- # @ wp-members
2167
- #~ msgid "Checked?"
2168
- #~ msgstr "जाँच की?"
2169
-
2170
- # @ wp-members
2171
- #~ msgid "Delete"
2172
- #~ msgstr "हटाना"
2173
-
2174
- # @ wp-members
2175
- #~ msgid "(Email cannot be removed)"
2176
- #~ msgstr "(ईमेल हटाया नहीं जा सकता है)"
2177
-
2178
- # @ wp-members
2179
- #, fuzzy
2180
- #~ msgid "native"
2181
- #~ msgstr "WP के मूल निवासी हैं?"
2182
-
2183
- # @ wp-members
2184
- #~ msgid "Update Fields"
2185
- #~ msgstr "फ़ील्ड अपडेट करें"
2186
-
2187
- # @ wp-members
2188
- #~ msgid "Please indicate that you agree to the %s TOS %s"
2189
- #~ msgstr "संकेत मिलता है कि आप%s के TOS %s करने के लिए सहमत"
2190
-
2191
- # @ wp-members
2192
- #, fuzzy
2193
- #~ msgid "Post Restriction"
2194
- #~ msgstr "नया पंजीकरण"
2195
-
2196
- # @ wp-members
2197
- #, fuzzy
2198
- #~ msgid "Page Restriction"
2199
- #~ msgstr "रजिस्टर पृष्ठ URL:"
2200
-
2201
- # @ wp-members
2202
- #~ msgid "dropdown"
2203
- #~ msgstr "ड्रॉपडाउन"
2204
-
2205
- # @ wp-members
2206
- #~ msgid "Block Posts by default"
2207
- #~ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
2208
-
2209
- # @ wp-members
2210
- #~ msgid "Note: Posts can still be individually blocked or unblocked at the article level"
2211
- #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2212
-
2213
- # @ wp-members
2214
- #~ msgid "Block Pages by default"
2215
- #~ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
2216
-
2217
- # @ wp-members
2218
- #~ msgid "Note: Pages can still be individually blocked or unblocked at the article level"
2219
- #~ msgstr "नोट: अभी भी पन्ने व्यक्तिगत अवरुद्ध किया जा सकता है या लेख के स्तर पर अनवरोधित"
2220
-
2221
- # @ wp-members
2222
- #~ msgid "Show excerpts"
2223
- #~ msgstr "कुछ अंशः दिखाएँ"
2224
-
2225
- # @ wp-members
2226
- #~ msgid "Shows excerpted content above the login/registration on both Posts and Pages"
2227
- #~ msgstr " दोनों पोस्ट और पृष्ठों पर लॉगिन और पंजीकरण के ऊपर सामग्री का कुछ अंश दिखाता है"
2228
-
2229
- # @ wp-members
2230
- #~ msgid "Turns on CAPTCHA for registration"
2231
- #~ msgstr "कॅप्चा पर पंजीकरण के लिए बदल जाता है"
2232
-
2233
- # @ wp-members
2234
- #, fuzzy
2235
- #~ msgid "Hide registration"
2236
- #~ msgstr "पंजीकरण पूरा किया"
2237
-
2238
- # @ wp-members
2239
- #~ msgid "Optional"
2240
- #~ msgstr "वैकल्पिक"
2241
-
2242
- #, fuzzy
2243
- #~ msgid "Automatically creates an excerpt"
2244
- #~ msgstr "कुछ अंशः दिखाएँ"
2245
-
2246
- # @ wp-members
2247
- #~ msgid "AIM"
2248
- #~ msgstr "उद्देश्य"
2249
-
2250
- # @ wp-members
2251
- #~ msgid "Yahoo IM"
2252
- #~ msgstr "याहू आईएम"
2253
-
2254
- # @ wp-members
2255
- #~ msgid "Jabber/Google Talk"
2256
- #~ msgstr "अस्पष्ट / गूगल टॉक"
2257
-
2258
- # @ wp-members
2259
- #~ msgid ""
2260
- #~ "Password successfully changed!<br /><br />You will need to re-login with your new "
2261
- #~ "password."
2262
- #~ msgstr "कूटशब्द सफलतापूर्वक बदला <br /> <br आप फिर से अपने नए पासवर्ड के साथ लॉगिन की आवश्यकता होगी."
2263
-
2264
- # @ wp-members
2265
- #~ msgid ""
2266
- #~ "Password successfully reset!<br /><br />An email containing a new password has been sent "
2267
- #~ "to the email address on file for your account. You may change this random password then "
2268
- #~ "re-login with your new password."
2269
- #~ msgstr ""
2270
- #~ "पासवर्ड सफलतापूर्वक रीसेट!, /> <br /> एक युक्त ईमेल फ़ाइल पर अपने खाते के लिए ईमेल पते के लिए एक नया "
2271
- #~ "पासवर्ड भेज दिया गया है. आप अपने नए पासवर्ड के साथ इस यादृच्छिक तो फिर से लॉगिन पासवर्ड को बदल सकते "
2272
- #~ "हैं."
2273
-
2274
- # @ wp-members
2275
- #~ msgid "Custom"
2276
- #~ msgstr "रिवाज"
2277
-
2278
- #, fuzzy
2279
- #~ msgid "edit"
2280
- #~ msgstr "जानकारी संपादित करें"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 3.2.6\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
6
+ "PO-Revision-Date: 2020-05-22 17:53-0400\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Outshine Solutions <ash.pr@outshinesolutions.com>\n"
9
+ "Language: hi_IN\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,"
16
+ "_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Generator: Poedit 2.3.1\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: includes/admin/class-wp-members-admin-api.php:292
23
+ msgid "Custom email"
24
+ msgstr ""
25
+
26
+ # @ wp-members
27
+ #: includes/admin/class-wp-members-admin-api.php:293
28
+ #: includes/admin/class-wp-members-admin-api.php:295
29
+ msgid "Subject"
30
+ msgstr "विषय"
31
+
32
+ # @ wp-members
33
+ #: includes/admin/class-wp-members-admin-api.php:296
34
+ msgid "Body"
35
+ msgstr "शरीर"
36
+
37
+ #: includes/admin/class-wp-members-admin-api.php:298
38
+ msgid "Your custom email message content."
39
+ msgstr ""
40
+
41
+ # @ wp-members
42
+ #: includes/admin/class-wp-members-admin-api.php:376
43
+ msgid "Options"
44
+ msgstr "विकल्प"
45
+
46
+ # @ wp-members
47
+ #: includes/admin/class-wp-members-admin-api.php:377
48
+ msgid "Fields"
49
+ msgstr "फ़ील्ड"
50
+
51
+ # @ wp-members
52
+ #: includes/admin/class-wp-members-admin-api.php:378
53
+ msgid "Dialogs"
54
+ msgstr "संवाद"
55
+
56
+ # @ wp-members
57
+ #: includes/admin/class-wp-members-admin-api.php:379
58
+ msgid "Emails"
59
+ msgstr "ईमेल"
60
+
61
+ # @ wp-members
62
+ #: includes/admin/class-wp-members-admin-api.php:395
63
+ msgid "New Registration"
64
+ msgstr "नया पंजीकरण"
65
+
66
+ # @ wp-members
67
+ #: includes/admin/class-wp-members-admin-api.php:404
68
+ msgid "Registration is Moderated"
69
+ msgstr "पंजीकरण संचालित है"
70
+
71
+ # @ wp-members
72
+ #: includes/admin/class-wp-members-admin-api.php:410
73
+ msgid "Registration is Moderated, User is Approved"
74
+ msgstr "पंजीकरण संचालित है, उपयोगकर्ता स्वीकृत"
75
+
76
+ # @ wp-members
77
+ #: includes/admin/class-wp-members-admin-api.php:418
78
+ msgid "Password Reset"
79
+ msgstr "पासवर्ड रीसेट"
80
+
81
+ #: includes/admin/class-wp-members-admin-api.php:425
82
+ msgid "Retrieve Username"
83
+ msgstr ""
84
+
85
+ # @ wp-members
86
+ #: includes/admin/class-wp-members-admin-api.php:433
87
+ msgid "Admin Notification"
88
+ msgstr "व्यवस्थापक अधिसूचना"
89
+
90
+ # @ wp-members
91
+ #: includes/admin/class-wp-members-admin-api.php:459
92
+ msgid "Restricted post (or page), displays above the login/registration form"
93
+ msgstr "रतिबंधित पोस्ट, (या पृष्ठ) प्रपत्र लॉग इन / पंजीकरण ऊपर प्रदर्शित करता है"
94
+
95
+ # @ wp-members
96
+ #: includes/admin/class-wp-members-admin-api.php:460
97
+ msgid "Username is taken"
98
+ msgstr "उपयोगकर्ता नाम लिया है"
99
+
100
+ # @ wp-members
101
+ #: includes/admin/class-wp-members-admin-api.php:461
102
+ msgid "Email is registered"
103
+ msgstr "ईमेल पंजीकृत है"
104
+
105
+ # @ wp-members
106
+ #: includes/admin/class-wp-members-admin-api.php:462
107
+ msgid "Registration completed"
108
+ msgstr "पंजीकरण पूरा किया"
109
+
110
+ # @ wp-members
111
+ #: includes/admin/class-wp-members-admin-api.php:463
112
+ msgid "User update"
113
+ msgstr "नवीनीकरण उपयोगकर्ता"
114
+
115
+ # @ wp-members
116
+ #: includes/admin/class-wp-members-admin-api.php:464
117
+ msgid "Passwords did not match"
118
+ msgstr "कूटशब्द मेल नहीं खाता"
119
+
120
+ # @ wp-members
121
+ #: includes/admin/class-wp-members-admin-api.php:465
122
+ msgid "Password changes"
123
+ msgstr "पासवर्ड परिवर्तन"
124
+
125
+ # @ wp-members
126
+ #: includes/admin/class-wp-members-admin-api.php:466
127
+ msgid "Username or email do not exist when trying to reset forgotten password"
128
+ msgstr "उपयोगकर्ता नाम या ईमेल जब भूल पासवर्ड रीसेट करने की कोशिश मौजूद नहीं है"
129
+
130
+ # @ wp-members
131
+ #: includes/admin/class-wp-members-admin-api.php:467
132
+ msgid "Password reset"
133
+ msgstr "पासवर्ड रीसेट"
134
+
135
+ # @ default
136
+ # @ wp-members
137
+ #: includes/admin/class-wp-members-admin-api.php:623
138
+ msgid "Settings"
139
+ msgstr "सेटिंग्स"
140
+
141
+ #: includes/admin/class-wp-members-admin-posts.php:30
142
+ #: includes/admin/class-wp-members-admin-posts.php:33
143
+ msgid "Unblock"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-members-admin-posts.php:31
147
+ #: includes/admin/class-wp-members-admin-posts.php:34
148
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
149
+ #, fuzzy
150
+ msgid "Block"
151
+ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
152
+
153
+ #: includes/admin/class-wp-members-admin-posts.php:32
154
+ #: includes/admin/class-wp-members-admin-posts.php:35
155
+ msgid "Hide"
156
+ msgstr ""
157
+
158
+ #: includes/admin/class-wp-members-admin-posts.php:125
159
+ #, php-format
160
+ msgid "%s blocked"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-members-admin-posts.php:125
164
+ #, php-format
165
+ msgid "%s unblocked"
166
+ msgstr ""
167
+
168
+ #: includes/admin/class-wp-members-admin-posts.php:165
169
+ #, php-format
170
+ msgid "%s Restriction"
171
+ msgstr ""
172
+
173
+ #: includes/admin/class-wp-members-admin-posts.php:195
174
+ msgid "Unblocked"
175
+ msgstr ""
176
+
177
+ #: includes/admin/class-wp-members-admin-posts.php:196
178
+ msgid "Blocked"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-members-admin-posts.php:197
182
+ msgid "Hidden"
183
+ msgstr ""
184
+
185
+ #: includes/admin/class-wp-members-admin-posts.php:203
186
+ msgid "Status:"
187
+ msgstr ""
188
+
189
+ #: includes/admin/class-wp-members-admin-posts.php:203
190
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
191
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
192
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
193
+ #, fuzzy
194
+ msgid "Edit"
195
+ msgstr "जानकारी संपादित करें"
196
+
197
+ #: includes/admin/class-wp-members-admin-posts.php:218
198
+ msgid "Ok"
199
+ msgstr ""
200
+
201
+ #: includes/admin/class-wp-members-admin-posts.php:219
202
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
203
+ msgid "Cancel"
204
+ msgstr ""
205
+
206
+ #: includes/admin/class-wp-members-admin-posts.php:305
207
+ #: includes/admin/class-wp-members-products-admin.php:629
208
+ msgid "Status"
209
+ msgstr ""
210
+
211
+ #: includes/admin/class-wp-members-admin-users.php:28
212
+ #: includes/admin/class-wp-members-admin-users.php:33
213
+ #: includes/admin/class-wp-members-admin-users.php:59
214
+ msgid "Activate"
215
+ msgstr ""
216
+
217
+ #: includes/admin/class-wp-members-admin-users.php:29
218
+ #: includes/admin/class-wp-members-admin-users.php:34
219
+ #: includes/admin/class-wp-members-admin-users.php:62
220
+ msgid "Deactivate"
221
+ msgstr ""
222
+
223
+ # @ wp-members
224
+ #: includes/admin/class-wp-members-admin-users.php:31
225
+ #: includes/admin/class-wp-members-admin-users.php:36
226
+ msgid "Export"
227
+ msgstr "निर्यात"
228
+
229
+ #: includes/admin/class-wp-members-admin-users.php:37
230
+ #: includes/admin/class-wp-members-admin-users.php:88
231
+ #, fuzzy
232
+ msgid "Export All Users"
233
+ msgstr "निर्यात"
234
+
235
+ #: includes/admin/class-wp-members-admin-users.php:126
236
+ #, php-format
237
+ msgid "%s users activated"
238
+ msgstr ""
239
+
240
+ #: includes/admin/class-wp-members-admin-users.php:126
241
+ #, php-format
242
+ msgid "%s users deactivated"
243
+ msgstr ""
244
+
245
+ #: includes/admin/class-wp-members-admin-users.php:129
246
+ msgid "No users selected"
247
+ msgstr ""
248
+
249
+ #: includes/admin/class-wp-members-admin-users.php:147
250
+ msgid "You cannot activate or deactivate yourself"
251
+ msgstr ""
252
+
253
+ #: includes/admin/class-wp-members-admin-users.php:152
254
+ #, php-format
255
+ msgid "%s activated"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-members-admin-users.php:157
259
+ #, php-format
260
+ msgid "%s deactivated"
261
+ msgstr ""
262
+
263
+ #: includes/admin/class-wp-members-admin-users.php:161
264
+ msgid "That user is already active"
265
+ msgstr ""
266
+
267
+ #: includes/admin/class-wp-members-admin-users.php:288
268
+ msgid "Pending"
269
+ msgstr ""
270
+
271
+ #: includes/admin/class-wp-members-admin-users.php:289
272
+ msgid "Trial"
273
+ msgstr ""
274
+
275
+ # @ wp-members
276
+ #: includes/admin/class-wp-members-admin-users.php:290
277
+ #: includes/admin/class-wp-members-export.php:74
278
+ msgid "Subscription"
279
+ msgstr "सदस्यता"
280
+
281
+ #: includes/admin/class-wp-members-admin-users.php:291
282
+ msgid "Expired"
283
+ msgstr ""
284
+
285
+ #: includes/admin/class-wp-members-admin-users.php:294
286
+ msgid "Activated"
287
+ msgstr ""
288
+
289
+ #: includes/admin/class-wp-members-admin-users.php:295
290
+ msgid "Pending Activation"
291
+ msgstr ""
292
+
293
+ #: includes/admin/class-wp-members-admin-users.php:296
294
+ msgid "Deactivated"
295
+ msgstr ""
296
+
297
+ #: includes/admin/class-wp-members-admin-users.php:298
298
+ msgid "Not Exported"
299
+ msgstr ""
300
+
301
+ #: includes/admin/class-wp-members-admin-users.php:387
302
+ #: includes/admin/class-wp-members-export.php:160
303
+ msgid "No"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-members-export.php:64
307
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
308
+ msgid "User ID"
309
+ msgstr ""
310
+
311
+ #: includes/admin/class-wp-members-export.php:65 includes/class-wp-members.php:1523
312
+ #: includes/class-wp-members.php:1546
313
+ msgid "Username"
314
+ msgstr ""
315
+
316
+ # @ wp-members
317
+ #: includes/admin/class-wp-members-export.php:71
318
+ msgid "Activated?"
319
+ msgstr "सक्रिय?"
320
+
321
+ # @ wp-members
322
+ #: includes/admin/class-wp-members-export.php:75
323
+ #: includes/admin/class-wp-members-products-admin.php:64
324
+ #: includes/admin/class-wp-members-products-admin.php:632
325
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
326
+ msgid "Expires"
327
+ msgstr "समाप्त हो"
328
+
329
+ # @ wp-members
330
+ #: includes/admin/class-wp-members-export.php:77
331
+ msgid "Registered"
332
+ msgstr "पंजीकृत"
333
+
334
+ # @ wp-members
335
+ #: includes/admin/class-wp-members-export.php:78
336
+ msgid "IP"
337
+ msgstr "IP"
338
+
339
+ # @ wp-members
340
+ #: includes/admin/class-wp-members-export.php:160
341
+ #: includes/admin/class-wp-members-products-admin.php:104
342
+ msgid "Yes"
343
+ msgstr "हां"
344
+
345
+ #: includes/admin/class-wp-members-products-admin.php:62
346
+ msgid "Slug"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-members-products-admin.php:63
350
+ msgid "Role"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-members-products-admin.php:66
354
+ msgid "Default"
355
+ msgstr ""
356
+
357
+ #: includes/admin/class-wp-members-products-admin.php:68
358
+ msgid "Last updated"
359
+ msgstr ""
360
+
361
+ #: includes/admin/class-wp-members-products-admin.php:92
362
+ msgid "slug:"
363
+ msgstr ""
364
+
365
+ #: includes/admin/class-wp-members-products-admin.php:95
366
+ msgid "No role required"
367
+ msgstr ""
368
+
369
+ #: includes/admin/class-wp-members-products-admin.php:100
370
+ msgid "Does not expire"
371
+ msgstr ""
372
+
373
+ #: includes/admin/class-wp-members-products-admin.php:140
374
+ msgid "Membership Product Details"
375
+ msgstr ""
376
+
377
+ #: includes/admin/class-wp-members-products-admin.php:148
378
+ msgid "Membership Product Message (optional)"
379
+ msgstr ""
380
+
381
+ #: includes/admin/class-wp-members-products-admin.php:165
382
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
383
+ msgid "Posts"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-members-products-admin.php:166
387
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
388
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
389
+ #, fuzzy
390
+ msgid "Pages"
391
+ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
392
+
393
+ #: includes/admin/class-wp-members-products-admin.php:193
394
+ #: includes/admin/class-wp-members-products-admin.php:235
395
+ #: includes/admin/class-wp-members-products-admin.php:280
396
+ msgid "Period"
397
+ msgstr ""
398
+
399
+ #: includes/admin/class-wp-members-products-admin.php:193
400
+ msgid "Day"
401
+ msgstr ""
402
+
403
+ #: includes/admin/class-wp-members-products-admin.php:193
404
+ msgid "Week"
405
+ msgstr ""
406
+
407
+ #: includes/admin/class-wp-members-products-admin.php:193
408
+ msgid "Month"
409
+ msgstr ""
410
+
411
+ #: includes/admin/class-wp-members-products-admin.php:193
412
+ msgid "Year"
413
+ msgstr ""
414
+
415
+ #: includes/admin/class-wp-members-products-admin.php:199
416
+ msgid "Name (slug)"
417
+ msgstr ""
418
+
419
+ #: includes/admin/class-wp-members-products-admin.php:201
420
+ msgid "Optional Defaults"
421
+ msgstr ""
422
+
423
+ #: includes/admin/class-wp-members-products-admin.php:204
424
+ msgid "Assign as default at registration? (optional)"
425
+ msgstr ""
426
+
427
+ #: includes/admin/class-wp-members-products-admin.php:212
428
+ #, php-format
429
+ msgid "Pre-selected by default for new %s"
430
+ msgstr ""
431
+
432
+ #: includes/admin/class-wp-members-products-admin.php:218
433
+ msgid "Optional Properties"
434
+ msgstr ""
435
+
436
+ #: includes/admin/class-wp-members-products-admin.php:221
437
+ msgid "Role Required? (optional)"
438
+ msgstr ""
439
+
440
+ #: includes/admin/class-wp-members-products-admin.php:224
441
+ msgid "No Role"
442
+ msgstr ""
443
+
444
+ #: includes/admin/class-wp-members-products-admin.php:230
445
+ msgid "Expires (optional)"
446
+ msgstr ""
447
+
448
+ #: includes/admin/class-wp-members-products-admin.php:232
449
+ #: includes/admin/class-wp-members-products-admin.php:234
450
+ #: includes/admin/class-wp-members-products-admin.php:277
451
+ #: includes/admin/class-wp-members-products-admin.php:279
452
+ msgid "Number"
453
+ msgstr ""
454
+
455
+ #: includes/admin/class-wp-members-products-admin.php:240
456
+ msgid "Use \"no gap\" renewal"
457
+ msgstr ""
458
+
459
+ #: includes/admin/class-wp-members-products-admin.php:244
460
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
461
+ msgstr ""
462
+
463
+ #: includes/admin/class-wp-members-products-admin.php:261
464
+ msgid "Period Start (dd-mm)"
465
+ msgstr ""
466
+
467
+ #: includes/admin/class-wp-members-products-admin.php:262
468
+ msgid "Period End (dd-mm)"
469
+ msgstr ""
470
+
471
+ #: includes/admin/class-wp-members-products-admin.php:275
472
+ msgid "Fixed period grace period"
473
+ msgstr ""
474
+
475
+ #: includes/admin/class-wp-members-products-admin.php:284
476
+ msgid ""
477
+ "Grace period is the point at which expiration date is for following time period. For "
478
+ "example, if user who register August 1st would be part of the following year's Sept 1 - Aug "
479
+ "31 membership, set this at 1 Month. Leave blank for no grace period."
480
+ msgstr ""
481
+
482
+ #: includes/admin/class-wp-members-products-admin.php:333
483
+ msgid "Restricted Message (displays when a user does not have access to a membership)"
484
+ msgstr ""
485
+
486
+ #: includes/admin/class-wp-members-products-admin.php:435
487
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
488
+ #: includes/class-wp-members-forms.php:1092 includes/class-wp-members-user-profile.php:112
489
+ msgid "None"
490
+ msgstr ""
491
+
492
+ #: includes/admin/class-wp-members-products-admin.php:450
493
+ msgid "Limit access to:"
494
+ msgstr ""
495
+
496
+ #: includes/admin/class-wp-members-products-admin.php:520
497
+ msgid "Required Membership"
498
+ msgstr ""
499
+
500
+ #: includes/admin/class-wp-members-products-admin.php:559
501
+ #: includes/admin/class-wp-members-products-admin.php:630
502
+ msgid "Membership"
503
+ msgstr ""
504
+
505
+ #: includes/admin/class-wp-members-products-admin.php:599
506
+ #: includes/class-wp-members-products.php:308
507
+ msgid "Memberships"
508
+ msgstr ""
509
+
510
+ #: includes/admin/class-wp-members-products-admin.php:626
511
+ msgid "Product Access"
512
+ msgstr ""
513
+
514
+ #: includes/admin/class-wp-members-products-admin.php:631
515
+ msgid "Enabled?"
516
+ msgstr ""
517
+
518
+ #: includes/admin/class-wp-members-products-admin.php:641
519
+ msgid "Enable"
520
+ msgstr ""
521
+
522
+ #: includes/admin/class-wp-members-products-admin.php:642
523
+ msgid "Disable"
524
+ msgstr ""
525
+
526
+ #: includes/admin/class-wp-members-products-admin.php:647
527
+ msgid "Expiration date (optional)"
528
+ msgstr ""
529
+
530
+ # @ wp-members
531
+ #: includes/admin/dialogs.php:117
532
+ msgid "Your WP settings allow anyone to register - this is not the recommended setting."
533
+ msgstr "आपके WP सेटिंग्स किसी को भी रजिस्टर करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं है."
534
+
535
+ # @ wp-members
536
+ #: includes/admin/dialogs.php:118
537
+ #, php-format
538
+ msgid ""
539
+ "You can %s change this here %s making sure the box next to \"Anyone can register\" is "
540
+ "unchecked."
541
+ msgstr ""
542
+ "आप%s में परिवर्तन के यहां%s बनाने यकीन है कि अगले करने के लिए बॉक्स \"कोई भी रजिस्टर कर सकते हैं \" "
543
+ "अनियंत्रित है"
544
+
545
+ # @ wp-members
546
+ #: includes/admin/dialogs.php:119
547
+ msgid ""
548
+ "This setting allows a link on the /wp-login.php page to register using the WP native "
549
+ "registration process thus circumventing any registration you are using with WP-Members. In "
550
+ "some cases, this may suit the users wants/needs, but most users should uncheck this option. "
551
+ "If you do not change this setting, you can choose to ignore these warning messages under WP-"
552
+ "Members Settings."
553
+ msgstr ""
554
+ "यह सेटिंग / wp-login.php पृष्ठ पर एक लिंक WP देशी पंजीकरण प्रक्रिया इस प्रकार का उपयोग कर आप किसी भी "
555
+ "पंजीकरण WP-सदस्य के साथ प्रयोग कर रहे हैं धोखा रजिस्टर करने के लिए अनुमति देता है. कुछ मामलों में, यह "
556
+ "उपयोगकर्ताओं को सूट / की जरूरत है चाहता है, हो सकता है, लेकिन अधिकांश उपयोगकर्ताओं को इस विकल्प को अनचेक "
557
+ "करना चाहिए. यदि आप इस सेटिंग को बदल नहीं है, तुम WP-सदस्य सेटिंग्स के तहत इन चेतावनी संदेशों को अनदेखा करने "
558
+ "के लिए चुन सकते हैं."
559
+
560
+ # @ wp-members
561
+ #: includes/admin/dialogs.php:123
562
+ msgid "Your WP settings allow anyone to comment - this is not the recommended setting."
563
+ msgstr "आपके WP सेटिंग्स किसी को भी टिप्पणी करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं है."
564
+
565
+ # @ wp-members
566
+ #: includes/admin/dialogs.php:124
567
+ #, php-format
568
+ msgid ""
569
+ "You can %s change this here %s by checking the box next to \"Users must be registered and "
570
+ "logged in to comment.\""
571
+ msgstr ""
572
+ "आप%s में परिवर्तन के इस%s अगले बॉक्स की जाँच करके यहाँ कर सकते हैं \"उपयोगकर्ताओं को पंजीकृत होना चाहिए और में "
573
+ "लॉग इन टिप्पणी करने के लिए \""
574
+
575
+ # @ wp-members
576
+ #: includes/admin/dialogs.php:125
577
+ msgid ""
578
+ "This setting allows any users to comment, whether or not they are registered. Depending on "
579
+ "how you are using WP-Members will determine whether you should change this setting or not. "
580
+ "If you do not change this setting, you can choose to ignore these warning messages under WP-"
581
+ "Members Settings."
582
+ msgstr ""
583
+ "यह सेटिंग किसी भी उपयोगकर्ताओं को टिप्पणी करने के लिए, चाहे या नहीं वे पंजीकृत हैं अनुमति देता है. कैसे आप WP-"
584
+ "सदस्यों का उपयोग कर रहे हैं के आधार पर निर्धारित होगा कि क्या आप इस सेटिंग को बदलने चाहिए या नहीं. यदि "
585
+ "आप इस सेटिंग को बदल नहीं है, तुम WP-सदस्य सेटिंग्स के तहत इन चेतावनी संदेशों को अनदेखा करने के लिए चुन सकते हैं."
586
+
587
+ # @ wp-members
588
+ #: includes/admin/dialogs.php:129
589
+ msgid "Your WP settings allow full text rss feeds - this is not the recommended setting."
590
+ msgstr "आपका WP सेटिंग्स पूर्ण पाठ आरएसएस फ़ीड की अनुमति यह सिफारिश की सेटिंग नहीं है."
591
+
592
+ # @ wp-members
593
+ #: includes/admin/dialogs.php:130
594
+ #, php-format
595
+ msgid ""
596
+ "You can %s change this here %s by changing \"For each article in a feed, show\" to \"Summary."
597
+ "\""
598
+ msgstr ""
599
+ "आप बदल रहा है \"प्रत्येक लेख के लिए एक फ़ीड दिखाने के लिए, \" \"सारांश \"%s परिवर्तन यह है यहां%s कर सकते हैं"
600
+
601
+ # @ wp-members
602
+ #: includes/admin/dialogs.php:131
603
+ msgid ""
604
+ "Leaving this set to full text allows anyone to read your protected content in an RSS reader. "
605
+ "Changing this to Summary prevents this as your feeds will only show summary text."
606
+ msgstr ""
607
+ "पूर्ण पाठ करने के लिए इस सेट को छोड़कर किसी को भी एक आरएसएस रीडर में संरक्षित सामग्री को पढ़ने के लिए "
608
+ "अनुमति देता है. यह करने के लिए सारांश बदलने से अपने फ़ीड के रूप में इस रोकता केवल सारांश पाठ दि"
609
+
610
+ # @ wp-members
611
+ #: includes/admin/dialogs.php:135
612
+ msgid "You have set WP-Members to hold registrations for approval"
613
+ msgstr "आप WP-सदस्य सेट करने के लिए अनुमोदन के लिए पंजीकरण पकड़ है"
614
+
615
+ # @ wp-members
616
+ #: includes/admin/dialogs.php:136
617
+ msgid ""
618
+ "but you have not changed the default message for \"Registration Completed\" under \"WP-"
619
+ "Members Dialogs and Error Messages.\" You should change this message to let users know they "
620
+ "are pending approval."
621
+ msgstr ""
622
+ "लेकिन आप के लिए डिफ़ॉल्ट संदेश नहीं बदल गया है \"पंजीकरण पूर्ण \" के अंतर्गत \"WP-सदस्य संवाद और त्रुटि संदेश \" "
623
+ "आप इस संदेश को बदलने के लिए उपयोगकर्ताओं को पता है कि वे अनुमोदन के लिए लंबित कर रहे हैं "
624
+
625
+ # @ wp-members
626
+ #: includes/admin/dialogs.php:140
627
+ msgid "You have turned on reCAPTCHA"
628
+ msgstr "आप reCAPTCHA पर बदल गया है"
629
+
630
+ # @ wp-members
631
+ #: includes/admin/dialogs.php:141
632
+ msgid ""
633
+ "but you have not entered API keys. You will need both a public and private key. The "
634
+ "CAPTCHA will not display unless a valid API key is included."
635
+ msgstr ""
636
+ "लेकिन आप एपीआई कुंजी दर्ज नहीं की है. तुम दोनों सार्वजनिक और निजी कुंजी की आवश्यकता होगी. कॅप्चा है जब तक "
637
+ "एक मान्य API कुंजी शामिल है प्रदर्शित नहीं होगा."
638
+
639
+ #: includes/admin/dialogs.php:145
640
+ msgid "You have active settings that are not recommended."
641
+ msgstr ""
642
+
643
+ #: includes/admin/dialogs.php:146
644
+ msgid ""
645
+ "If you will not be changing these settings, you can turn off these warning messages by "
646
+ "checking the \"Ignore warning messages\" in the settings below."
647
+ msgstr ""
648
+
649
+ # @ wp-members
650
+ #: includes/admin/dialogs.php:174
651
+ msgid "Version:"
652
+ msgstr "संस्करण:"
653
+
654
+ #: includes/admin/dialogs.php:175
655
+ #, fuzzy
656
+ msgid "Quick Start Guide"
657
+ msgstr "नवीनीकरण उपयोगकर्ता"
658
+
659
+ #: includes/admin/dialogs.php:176
660
+ #, fuzzy
661
+ msgid "Online User Guide"
662
+ msgstr "नवीनीकरण उपयोगकर्ता"
663
+
664
+ #: includes/admin/dialogs.php:177
665
+ msgid "FAQs"
666
+ msgstr ""
667
+
668
+ # @ wp-members
669
+ #: includes/admin/dialogs.php:184
670
+ #, fuzzy
671
+ msgid "Thank you for using WP-Members"
672
+ msgstr "WP-सदस्य का उपयोग करने के लिए धन्यवाद! संस्मरण%s का उपयोग कर रहे हैं"
673
+
674
+ #: includes/admin/dialogs.php:185
675
+ msgid "A plugin developed by"
676
+ msgstr ""
677
+
678
+ # @ wp-members
679
+ #: includes/admin/dialogs.php:186
680
+ msgid "Follow"
681
+ msgstr "पालन करें"
682
+
683
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
684
+ msgid "Latest from RocketGeek"
685
+ msgstr ""
686
+
687
+ #: includes/admin/dialogs.php:224
688
+ msgid "Like WP-Members?"
689
+ msgstr ""
690
+
691
+ #: includes/admin/dialogs.php:225
692
+ #, php-format
693
+ msgid ""
694
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s rating. "
695
+ "Thanks!!"
696
+ msgstr ""
697
+
698
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
699
+ msgid "Latest from ButlerBlog"
700
+ msgstr ""
701
+
702
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
703
+ #, php-format
704
+ msgid "See the %sUsers Guide on CAPTCHA%s."
705
+ msgstr ""
706
+
707
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
708
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
709
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
710
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
711
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
712
+ msgid "Need help?"
713
+ msgstr ""
714
+
715
+ # @ wp-members
716
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
717
+ msgid "Manage reCAPTCHA Options"
718
+ msgstr "ReCAPTCHA विकल्प प्रबंधित करें"
719
+
720
+ # @ wp-members
721
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
722
+ msgid ""
723
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking "
724
+ "spam on your blog."
725
+ msgstr ""
726
+ "reCAPTCHA एक मुक्त, सुलभ कॅप्चा सेवा है कि पुस्तकों को डिजिटाइज़ करने में मदद करता है जबकि अपने ब्लॉग पर स्पैम "
727
+ "अवरुद्ध है."
728
+
729
+ # @ wp-members
730
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
731
+ #, php-format
732
+ msgid ""
733
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a "
734
+ "human. This verifies that they are not a spambot while also correcting the automatic scans "
735
+ "of old books. So you get less spam, and the world gets accurately digitized books. Everybody "
736
+ "wins! For details, visit the %s reCAPTCHA website%s"
737
+ msgstr ""
738
+ "reCAPTCHA commenters करने के लिए पूछता है दो पुस्तक से साबित होता है कि वे मानव हैं स्कैन शब्दों को पुन: "
739
+ "लिखें. यह पुष्टि करता है कि वे एक spambot जबकि स्वचालित पुरानी पुस्तकों का स्कैन भी सही नहीं हैं. तो तुम कम "
740
+ "स्पैम मिलता है, और दुनिया सही डिजीटल किताबें हो जाता है. हर कोई जीतता है! जानकारी के लिए,%s reCAPTCHA "
741
+ "वेबसाइट%s की यात्रा"
742
+
743
+ # @ wp-members
744
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
745
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
746
+ msgid "reCAPTCHA Keys"
747
+ msgstr "reCAPTCHA कुंजी"
748
+
749
+ # @ wp-members
750
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
751
+ #, php-format
752
+ msgid ""
753
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" key. You can "
754
+ "sign up for a %s free reCAPTCHA key%s"
755
+ msgstr ""
756
+ "reCAPTCHA एक एपीआई कुंजी की आवश्यकता है, \"सार्वजनिक \" और \"निजी \" कुंजी शामिल है. आप%s मुक्त "
757
+ "reCAPTCHA कुंजी%s के लिए साइन अप कर सकते हैं"
758
+
759
+ # @ wp-members
760
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
761
+ msgid "Public Key"
762
+ msgstr "सार्वजनिक कुंजी"
763
+
764
+ # @ wp-members
765
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
766
+ msgid "Private Key"
767
+ msgstr "निजी कुंजी"
768
+
769
+ # @ wp-members
770
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
771
+ msgid "Choose Theme"
772
+ msgstr "थीम चुनें"
773
+
774
+ # @ wp-members
775
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
776
+ msgid "Red"
777
+ msgstr "लाल"
778
+
779
+ # @ wp-members
780
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
781
+ msgid "White"
782
+ msgstr "सफ़ेद"
783
+
784
+ # @ wp-members
785
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
786
+ msgid "Black Glass"
787
+ msgstr "काले ग्लास"
788
+
789
+ # @ wp-members
790
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
791
+ msgid "Clean"
792
+ msgstr "स्वच्छ"
793
+
794
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
795
+ #, php-format
796
+ msgid ""
797
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" key. You can sign "
798
+ "up for a %s free reCAPTCHA key%s"
799
+ msgstr ""
800
+
801
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
802
+ msgid "Site Key"
803
+ msgstr ""
804
+
805
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
806
+ msgid "Secret Key"
807
+ msgstr ""
808
+
809
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
810
+ #, fuzzy
811
+ msgid "Characters for image"
812
+ msgstr "फ़ील्ड प्रकार"
813
+
814
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
815
+ #, fuzzy
816
+ msgid "Number of characters"
817
+ msgstr "कुछ अंशः दिखाएँ"
818
+
819
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
820
+ #, fuzzy
821
+ msgid "Image dimensions"
822
+ msgstr "फ़ील्ड प्रकार"
823
+
824
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
825
+ msgid "Width"
826
+ msgstr ""
827
+
828
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
829
+ msgid "Height"
830
+ msgstr ""
831
+
832
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
833
+ msgid "Font color of characters"
834
+ msgstr ""
835
+
836
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
837
+ #, fuzzy
838
+ msgid "Background color of image"
839
+ msgstr "फ़ील्ड प्रकार"
840
+
841
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
842
+ msgid "Font size"
843
+ msgstr ""
844
+
845
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
846
+ msgid "Width between characters"
847
+ msgstr ""
848
+
849
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
850
+ #, fuzzy
851
+ msgid "Image type"
852
+ msgstr "फ़ील्ड प्रकार"
853
+
854
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
855
+ msgid ""
856
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin installed and "
857
+ "activated."
858
+ msgstr ""
859
+
860
+ # @ wp-members
861
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
862
+ msgid "Update CAPTCHA Settings"
863
+ msgstr "अपडेट करें CAPTCHA सेटिंग्स"
864
+
865
+ # @ wp-members
866
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
867
+ msgid "CAPTCHA was updated for WP-Members"
868
+ msgstr "CAPTCHA WP-सदस्य के लिए अपडेट किया गया था"
869
+
870
+ # @ wp-members
871
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
872
+ msgid "Dialogs and Error Messages"
873
+ msgstr "संवाद और त्रुटि संदेश"
874
+
875
+ # @ wp-members
876
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
877
+ #, php-format
878
+ msgid ""
879
+ "You can customize the text for dialogs and error messages. Simple HTML is allowed %s etc."
880
+ msgstr "आप संवाद और त्रुटि संदेश के लिए पाठ को अनुकूलित कर सकते हैं. सरल HTML%s आदि की अनुमति दी है"
881
+
882
+ # @ wp-members
883
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
884
+ msgid "Terms of Service (TOS)"
885
+ msgstr "सेवा की शर्तें (TOS)"
886
+
887
+ # @ wp-members
888
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
889
+ msgid "Update Dialogs"
890
+ msgstr "संवाद अपडेट करें"
891
+
892
+ # @ wp-members
893
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
894
+ msgid "WP-Members dialogs were updated"
895
+ msgstr "WP-सदस्य संवाद अपडेट की गई थीं"
896
+
897
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
898
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
899
+ msgid "WP-Members Dropin settings were updated"
900
+ msgstr ""
901
+
902
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
903
+ msgid "Manage Dropins"
904
+ msgstr ""
905
+
906
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
907
+ msgid "Current dropin folder: "
908
+ msgstr ""
909
+
910
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
911
+ msgid ""
912
+ "You can change location of the dropin folder using the <code>wpmem_dropin_folder</code> "
913
+ "filter."
914
+ msgstr ""
915
+
916
+ # @ wp-members
917
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
918
+ msgid "Email Messages"
919
+ msgstr "ईमेल संदेश"
920
+
921
+ # @ wp-members
922
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
923
+ msgid "You can customize the content of the emails sent by the plugin."
924
+ msgstr "आप प्लगइन द्वारा भेजे गए ईमेल की सामग्री को अनुकूलित कर सकते हैं."
925
+
926
+ # @ wp-members
927
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
928
+ msgid "A list of shortcodes is available here."
929
+ msgstr "शॉर्टकोड की एक सूची यहाँ उपलब्ध है."
930
+
931
+ # @ wp-members
932
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
933
+ msgid "Set a custom email address"
934
+ msgstr "एक कस्टम ईमेल पता सेट करें"
935
+
936
+ # @ wp-members
937
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
938
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
939
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
940
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
941
+ msgid "(optional)"
942
+ msgstr "(वैकल्पिक)"
943
+
944
+ # @ wp-members
945
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
946
+ msgid "Set a custom email name"
947
+ msgstr "एक कस्टम ईमेल का नाम सेट करें"
948
+
949
+ # @ wp-members
950
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
951
+ msgid "Email Signature"
952
+ msgstr "ईमेल हस्ताक्षर"
953
+
954
+ # @ wp-members
955
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
956
+ msgid "Update Emails"
957
+ msgstr "ईमेल अपडेट करें"
958
+
959
+ # @ wp-members
960
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
961
+ msgid "WP-Members emails were updated"
962
+ msgstr "WP-सदस्य ईमेल अपडेट की गई थीं"
963
+
964
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
965
+ #: includes/class-wp-members.php:1498
966
+ msgid "No fields selected for deletion"
967
+ msgstr ""
968
+
969
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
970
+ msgid "Are you sure you want to delete the following fields?"
971
+ msgstr ""
972
+
973
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
974
+ msgid "Fields deleted"
975
+ msgstr ""
976
+
977
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
978
+ msgid "Field Manager Documentation"
979
+ msgstr ""
980
+
981
+ # @ wp-members
982
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
983
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
984
+ #: includes/class-wp-members-forms.php:1626 includes/class-wp-members-forms.php:1803
985
+ #: includes/class-wp-members-user-profile.php:144
986
+ msgid "(required)"
987
+ msgstr "आवश्यकता है?"
988
+
989
+ # @ wp-members
990
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
991
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
992
+ #, fuzzy
993
+ msgid "Edit Field"
994
+ msgstr "जानकारी संपादित करें"
995
+
996
+ # @ wp-members
997
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
998
+ #, fuzzy
999
+ msgid "Add a Field"
1000
+ msgstr "जोड़ना"
1001
+
1002
+ # @ wp-members
1003
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
1004
+ msgid "Field Label"
1005
+ msgstr "क्षेत्र लेबल"
1006
+
1007
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
1008
+ msgid "The name of the field as it will be displayed to the user."
1009
+ msgstr ""
1010
+
1011
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
1012
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
1013
+ msgid "Meta Key"
1014
+ msgstr ""
1015
+
1016
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
1017
+ msgid ""
1018
+ "The database meta value for the field. It must be unique and contain no spaces (underscores "
1019
+ "are ok)."
1020
+ msgstr ""
1021
+
1022
+ # @ wp-members
1023
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
1024
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
1025
+ msgid "Field Type"
1026
+ msgstr "फ़ील्ड प्रकार"
1027
+
1028
+ # @ wp-members
1029
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
1030
+ msgid "text"
1031
+ msgstr "पाठ"
1032
+
1033
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
1034
+ msgid "email"
1035
+ msgstr ""
1036
+
1037
+ # @ wp-members
1038
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
1039
+ msgid "textarea"
1040
+ msgstr "textarea"
1041
+
1042
+ # @ wp-members
1043
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
1044
+ msgid "checkbox"
1045
+ msgstr "चेकबॉक्स"
1046
+
1047
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
1048
+ msgid "multiple checkbox"
1049
+ msgstr ""
1050
+
1051
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
1052
+ msgid "select (dropdown)"
1053
+ msgstr ""
1054
+
1055
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
1056
+ msgid "multiple select"
1057
+ msgstr ""
1058
+
1059
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
1060
+ msgid "radio group"
1061
+ msgstr ""
1062
+
1063
+ # @ wp-members
1064
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
1065
+ msgid "password"
1066
+ msgstr "पासवर्ड"
1067
+
1068
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
1069
+ msgid "image"
1070
+ msgstr ""
1071
+
1072
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
1073
+ msgid "file"
1074
+ msgstr ""
1075
+
1076
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
1077
+ msgid "url"
1078
+ msgstr ""
1079
+
1080
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1081
+ msgid "number"
1082
+ msgstr ""
1083
+
1084
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1085
+ msgid "date"
1086
+ msgstr ""
1087
+
1088
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1089
+ msgid "hidden"
1090
+ msgstr ""
1091
+
1092
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1093
+ msgid "membership"
1094
+ msgstr ""
1095
+
1096
+ # @ wp-members
1097
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1098
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1099
+ msgid "Display?"
1100
+ msgstr "प्रदर्शित करते हैं?"
1101
+
1102
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1103
+ msgid "This field is always displayed"
1104
+ msgstr ""
1105
+
1106
+ # @ wp-members
1107
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1108
+ msgid "Required?"
1109
+ msgstr "आवश्यकता है?"
1110
+
1111
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1112
+ msgid "This field is always required"
1113
+ msgstr ""
1114
+
1115
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1116
+ msgid "Allow HTML?"
1117
+ msgstr ""
1118
+
1119
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1120
+ msgid "Placeholder"
1121
+ msgstr ""
1122
+
1123
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1124
+ msgid "Pattern"
1125
+ msgstr ""
1126
+
1127
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1128
+ msgid "Title"
1129
+ msgstr ""
1130
+
1131
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1132
+ msgid "Minimum Value"
1133
+ msgstr ""
1134
+
1135
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1136
+ msgid "Maximum Value"
1137
+ msgstr ""
1138
+
1139
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1140
+ msgid "Rows"
1141
+ msgstr ""
1142
+
1143
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1144
+ msgid "Columns"
1145
+ msgstr ""
1146
+
1147
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1148
+ msgid "Accepted file types:"
1149
+ msgstr ""
1150
+
1151
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1152
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1153
+ msgstr ""
1154
+
1155
+ # @ wp-members
1156
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1157
+ #, fuzzy
1158
+ msgid "Checked by default?"
1159
+ msgstr "जाँच की?"
1160
+
1161
+ # @ wp-members
1162
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1163
+ #, fuzzy
1164
+ msgid "Stored value if checked:"
1165
+ msgstr "चेकबॉक्स के लिए, मान संग्रहीत यदि जांचा जाता है:"
1166
+
1167
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1168
+ msgid "Stored values delimiter:"
1169
+ msgstr ""
1170
+
1171
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1172
+ msgid "Values (Displayed|Stored):"
1173
+ msgstr ""
1174
+
1175
+ # @ wp-members
1176
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1177
+ msgid "Options should be Option Name|option_value,"
1178
+ msgstr "विकल्प का नाम होना चाहिए, option_value"
1179
+
1180
+ # @ wp-members
1181
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1182
+ msgid "Visit plugin site for more information"
1183
+ msgstr "अधिक जानकारी के लिए प्लगइन साइट पर जाएँ"
1184
+
1185
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1186
+ msgid "Value"
1187
+ msgstr ""
1188
+
1189
+ # @ wp-members
1190
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1191
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1192
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1193
+ #, fuzzy
1194
+ msgid "Add Field"
1195
+ msgstr "जोड़ना"
1196
+
1197
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1198
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1199
+ msgid "Return to Fields Table"
1200
+ msgstr ""
1201
+
1202
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1203
+ msgid "Drag and drop to reorder fields"
1204
+ msgstr ""
1205
+
1206
+ # @ wp-members
1207
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1208
+ #, fuzzy
1209
+ msgid "Registration Date"
1210
+ msgstr "पंजीकरण पूरा किया"
1211
+
1212
+ # @ wp-members
1213
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1214
+ #, fuzzy
1215
+ msgid "Active"
1216
+ msgstr "सक्रिय"
1217
+
1218
+ # @ wp-members
1219
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1220
+ #, fuzzy
1221
+ msgid "Registration IP"
1222
+ msgstr "आईपी ​​@ पंजीकरण"
1223
+
1224
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1225
+ msgid "Subscription Type"
1226
+ msgstr ""
1227
+
1228
+ # @ wp-members
1229
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1230
+ msgid "Manage Fields"
1231
+ msgstr "फील्ड्स प्रबंधित"
1232
+
1233
+ # @ wp-members
1234
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1235
+ msgid "WP-Members fields were updated"
1236
+ msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
1237
+
1238
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1239
+ msgid "Field Label is required. Nothing was updated."
1240
+ msgstr ""
1241
+
1242
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1243
+ msgid "Meta Key is required. Nothing was updated."
1244
+ msgstr ""
1245
+
1246
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1247
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1248
+ msgstr ""
1249
+
1250
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1251
+ msgid "A field with that meta key already exists"
1252
+ msgstr ""
1253
+
1254
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1255
+ #, php-format
1256
+ msgid ""
1257
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1258
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. Field was not added."
1259
+ msgstr ""
1260
+
1261
+ # @ wp-members
1262
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1263
+ #, fuzzy
1264
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1265
+ msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
1266
+
1267
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1268
+ msgid "A value is required for hidden fields. Nothing was updated."
1269
+ msgstr ""
1270
+
1271
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1272
+ #, php-format
1273
+ msgid "%s was added"
1274
+ msgstr ""
1275
+
1276
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1277
+ #, php-format
1278
+ msgid "%s was updated"
1279
+ msgstr ""
1280
+
1281
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1282
+ msgid "Form field order updated."
1283
+ msgstr ""
1284
+
1285
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1286
+ #, php-format
1287
+ msgid "%sChange%s or %sFilter%s this address"
1288
+ msgstr ""
1289
+
1290
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1291
+ #, php-format
1292
+ msgid "See the %sUsers Guide on plugin options%s."
1293
+ msgstr ""
1294
+
1295
+ # @ wp-members
1296
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1297
+ msgid "Manage Options"
1298
+ msgstr "विकल्प प्रबंधित"
1299
+
1300
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1301
+ msgid "Content"
1302
+ msgstr ""
1303
+
1304
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1305
+ msgid "Content Blocking"
1306
+ msgstr ""
1307
+
1308
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1309
+ msgid "Do not block"
1310
+ msgstr ""
1311
+
1312
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1313
+ msgid "Show Excerpts"
1314
+ msgstr ""
1315
+
1316
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1317
+ msgid "Show Login Form"
1318
+ msgstr ""
1319
+
1320
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1321
+ msgid "Show Registration Form"
1322
+ msgstr ""
1323
+
1324
+ # @ wp-members
1325
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1326
+ #, fuzzy
1327
+ msgid "Auto Excerpt:"
1328
+ msgstr "कुछ अंशः दिखाएँ"
1329
+
1330
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1331
+ #, fuzzy
1332
+ msgid "Number of words in excerpt:"
1333
+ msgstr "कुछ अंशः दिखाएँ"
1334
+
1335
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1336
+ msgid "Custom read more link (optional):"
1337
+ msgstr ""
1338
+
1339
+ # @ wp-members
1340
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1341
+ msgid "Time-based expiration"
1342
+ msgstr "समय - आधारित समाप्ति"
1343
+
1344
+ # @ wp-members
1345
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1346
+ msgid "Allows for access to expire"
1347
+ msgstr "उपयोग के लिए समाप्त करने के लिए"
1348
+
1349
+ # @ wp-members
1350
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1351
+ msgid "Trial period"
1352
+ msgstr "परीक्षण अवधि"
1353
+
1354
+ # @ wp-members
1355
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1356
+ msgid "Allows for a trial period"
1357
+ msgstr "एक परीक्षण अवधि के लिए अनुमति देता"
1358
+
1359
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1360
+ msgid "Subscription Settings"
1361
+ msgstr ""
1362
+
1363
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1364
+ msgid "Other Settings"
1365
+ msgstr ""
1366
+
1367
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1368
+ msgid "Activation"
1369
+ msgstr ""
1370
+
1371
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1372
+ msgid ""
1373
+ "Send initial activation link and password reset link instead of new password. (Requires "
1374
+ "additional configuration)"
1375
+ msgstr ""
1376
+
1377
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1378
+ msgid "Enable Products"
1379
+ msgstr ""
1380
+
1381
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1382
+ msgid "Enables creation of different membership products"
1383
+ msgstr ""
1384
+
1385
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1386
+ msgid "Clone menus"
1387
+ msgstr ""
1388
+
1389
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1390
+ msgid "Enables logged in menus"
1391
+ msgstr ""
1392
+
1393
+ # @ wp-members
1394
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1395
+ msgid "Notify admin"
1396
+ msgstr "व्यवस्थापक को सूचित करें"
1397
+
1398
+ # @ wp-members
1399
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1400
+ #, fuzzy, php-format
1401
+ msgid "Notify %s for each new registration? %s"
1402
+ msgstr "व्यवस्थापक करने के लिए प्रत्येक नए पंजीकरण के लिए ईमेल भेजता है?"
1403
+
1404
+ # @ wp-members
1405
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1406
+ msgid "Moderate registration"
1407
+ msgstr "मध्यम पंजीकरण"
1408
+
1409
+ # @ wp-members
1410
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1411
+ msgid "Holds new registrations for admin approval"
1412
+ msgstr "व्यवस्थापक अनुमोदन के लिए नए पंजीकरण धारण"
1413
+
1414
+ # @ wp-members
1415
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1416
+ msgid "Ignore warning messages"
1417
+ msgstr "चेतावनी संदेश पर ध्यान न दें"
1418
+
1419
+ # @ wp-members
1420
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1421
+ msgid "Ignores WP-Members warning messages in the admin panel"
1422
+ msgstr "व्यवस्थापक पैनल में WP-सदस्य चेतावनी संदेश ध्यान नहीं देता है"
1423
+
1424
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1425
+ msgid "Attribution"
1426
+ msgstr ""
1427
+
1428
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1429
+ msgid "Attribution is appreciated! Display \"powered by\" link on register form?"
1430
+ msgstr ""
1431
+
1432
+ # @ wp-members
1433
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1434
+ #, fuzzy
1435
+ msgid "Enable CAPTCHA"
1436
+ msgstr "CAPTCHA का प्रयोग करें"
1437
+
1438
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1439
+ msgid "reCAPTCHA v2"
1440
+ msgstr ""
1441
+
1442
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1443
+ msgid "reCAPTCHA v3"
1444
+ msgstr ""
1445
+
1446
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1447
+ msgid "Really Simple CAPTCHA"
1448
+ msgstr ""
1449
+
1450
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1451
+ msgid "Login Page:"
1452
+ msgstr ""
1453
+
1454
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1455
+ msgid "Specify a login page (optional)"
1456
+ msgstr ""
1457
+
1458
+ # @ wp-members
1459
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1460
+ #, fuzzy
1461
+ msgid "Register Page:"
1462
+ msgstr "रजिस्टर पृष्ठ URL:"
1463
+
1464
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1465
+ msgid "For creating a register link in the login form"
1466
+ msgstr ""
1467
+
1468
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1469
+ #, fuzzy
1470
+ msgid "User Profile Page:"
1471
+ msgstr "रजिस्टर पृष्ठ URL:"
1472
+
1473
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1474
+ msgid "For creating a forgot password link in the login form"
1475
+ msgstr ""
1476
+
1477
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1478
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1479
+ msgid "Stylesheet"
1480
+ msgstr ""
1481
+
1482
+ # @ wp-members
1483
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1484
+ #, fuzzy
1485
+ msgid "Custom Stylesheet:"
1486
+ msgstr "रिवाज"
1487
+
1488
+ # @ wp-members
1489
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1490
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1491
+ msgid "Update Settings"
1492
+ msgstr "सेटिंग्स अपडेट करें"
1493
+
1494
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1495
+ msgid "Custom Post Types"
1496
+ msgstr ""
1497
+
1498
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1499
+ msgid "Add to WP-Members Settings"
1500
+ msgstr ""
1501
+
1502
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1503
+ msgid ""
1504
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not all of them "
1505
+ "will function exactly the same way. WP-Members will certainly work with any post type that "
1506
+ "operate like a post or a page; but you will need to review any custom post type added to "
1507
+ "determine that it functions the way you expect."
1508
+ msgstr ""
1509
+
1510
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1511
+ msgid "Close"
1512
+ msgstr ""
1513
+
1514
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1515
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1516
+ msgid "WP-Members Settings"
1517
+ msgstr ""
1518
+
1519
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1520
+ msgid "The following is your WP-Members settings information if needed for support."
1521
+ msgstr ""
1522
+
1523
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1524
+ msgid "Click to Copy"
1525
+ msgstr ""
1526
+
1527
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1528
+ msgid "Custom Post Type settings were updated"
1529
+ msgstr ""
1530
+
1531
+ # @ wp-members
1532
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1533
+ msgid "WP-Members settings were updated"
1534
+ msgstr "WP-सदस्य सेटिंग्स अपडेट की गई थीं"
1535
+
1536
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1537
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1538
+ msgid "USE CUSTOM URL BELOW"
1539
+ msgstr ""
1540
+
1541
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1542
+ #, fuzzy
1543
+ msgid "Select a page"
1544
+ msgstr "रजिस्टर पृष्ठ URL:"
1545
+
1546
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1547
+ msgid "Name"
1548
+ msgstr ""
1549
+
1550
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1551
+ msgid "Enabled"
1552
+ msgstr ""
1553
+
1554
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1555
+ msgid "File"
1556
+ msgstr ""
1557
+
1558
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1559
+ msgid "Version"
1560
+ msgstr ""
1561
+
1562
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1563
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1564
+ msgid "Description"
1565
+ msgstr ""
1566
+
1567
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1568
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1569
+ msgid "Save Settings"
1570
+ msgstr ""
1571
+
1572
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1573
+ msgid "delete"
1574
+ msgstr ""
1575
+
1576
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1577
+ msgid "Display Label"
1578
+ msgstr ""
1579
+
1580
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1581
+ msgid "Required"
1582
+ msgstr ""
1583
+
1584
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1585
+ #, fuzzy
1586
+ msgid "Users Screen"
1587
+ msgstr "%d उपयोगकर्ताओं में सक्रिय थे."
1588
+
1589
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1590
+ msgid "Users Search"
1591
+ msgstr ""
1592
+
1593
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1594
+ msgid "Sort"
1595
+ msgstr ""
1596
+
1597
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1598
+ msgid "Delete Selected"
1599
+ msgstr ""
1600
+
1601
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1602
+ msgid "log in"
1603
+ msgstr "लॉग इन"
1604
+
1605
+ #: includes/api/api.php:329
1606
+ msgid "log out"
1607
+ msgstr ""
1608
+
1609
+ #: includes/class-wp-members-activation-link.php:21
1610
+ msgid "Click to activate your account: "
1611
+ msgstr ""
1612
+
1613
+ #: includes/class-wp-members-activation-link.php:22
1614
+ msgid "Thank you for activating your account."
1615
+ msgstr ""
1616
+
1617
+ #: includes/class-wp-members-activation-link.php:23
1618
+ msgid "Activation key was expired or invalid"
1619
+ msgstr ""
1620
+
1621
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1622
+ #: includes/deprecated.php:501
1623
+ msgid "You have entered an incorrect code value. Please try again."
1624
+ msgstr ""
1625
+
1626
+ #: includes/class-wp-members-forms.php:1048 includes/class-wp-members-forms.php:1646
1627
+ #: includes/class-wp-members.php:1538
1628
+ #, php-format
1629
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1630
+ msgstr ""
1631
+
1632
+ # @ wp-members
1633
+ #: includes/class-wp-members-forms.php:1049 includes/class-wp-members-forms.php:1647
1634
+ #: includes/class-wp-members.php:1489
1635
+ msgid "TOS"
1636
+ msgstr "टीओएस"
1637
+
1638
+ # @ wp-members
1639
+ #: includes/class-wp-members-forms.php:1049 includes/class-wp-members-forms.php:1647
1640
+ #: templates/tos.php:20
1641
+ msgid "Terms of Service"
1642
+ msgstr "सेवा की शर्तें"
1643
+
1644
+ # @ wp-members
1645
+ #: includes/class-wp-members-forms.php:1868 includes/class-wp-members-user-profile.php:473
1646
+ msgid "Activate this user?"
1647
+ msgstr "इस उपयोगकर्ता को सक्रिय करें?"
1648
+
1649
+ #: includes/class-wp-members-menus.php:131
1650
+ msgid "Display"
1651
+ msgstr ""
1652
+
1653
+ #: includes/class-wp-members-menus.php:139
1654
+ msgid "Logged In Users"
1655
+ msgstr ""
1656
+
1657
+ #: includes/class-wp-members-menus.php:146
1658
+ msgid "Logged Out Users"
1659
+ msgstr ""
1660
+
1661
+ #: includes/class-wp-members-menus.php:153
1662
+ msgid "All Users"
1663
+ msgstr ""
1664
+
1665
+ #: includes/class-wp-members-menus.php:167
1666
+ #, php-format
1667
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1668
+ msgstr ""
1669
+
1670
+ #: includes/class-wp-members-menus.php:169
1671
+ msgid "Restrict menu item to a membership product"
1672
+ msgstr ""
1673
+
1674
+ #: includes/class-wp-members-products.php:302
1675
+ msgid "Product"
1676
+ msgstr ""
1677
+
1678
+ #: includes/class-wp-members-products.php:303
1679
+ msgid "Products"
1680
+ msgstr ""
1681
+
1682
+ #: includes/class-wp-members-products.php:309
1683
+ #, php-format
1684
+ msgid "All %s"
1685
+ msgstr ""
1686
+
1687
+ #: includes/class-wp-members-products.php:310
1688
+ #, php-format
1689
+ msgid "Add New %s"
1690
+ msgstr ""
1691
+
1692
+ #: includes/class-wp-members-products.php:311
1693
+ msgid "Add New"
1694
+ msgstr ""
1695
+
1696
+ #: includes/class-wp-members-products.php:312
1697
+ #, php-format
1698
+ msgid "New %s"
1699
+ msgstr ""
1700
+
1701
+ #: includes/class-wp-members-products.php:313
1702
+ #, php-format
1703
+ msgid "Edit %s"
1704
+ msgstr ""
1705
+
1706
+ #: includes/class-wp-members-products.php:314
1707
+ #, php-format
1708
+ msgid "Update %s"
1709
+ msgstr ""
1710
+
1711
+ #: includes/class-wp-members-products.php:315 includes/class-wp-members-products.php:316
1712
+ #, php-format
1713
+ msgid "View %s"
1714
+ msgstr ""
1715
+
1716
+ #: includes/class-wp-members-products.php:317
1717
+ #, php-format
1718
+ msgid "Search %s"
1719
+ msgstr ""
1720
+
1721
+ #: includes/class-wp-members-products.php:318
1722
+ msgid "Not found"
1723
+ msgstr ""
1724
+
1725
+ #: includes/class-wp-members-products.php:319
1726
+ msgid "Not found in Trash"
1727
+ msgstr ""
1728
+
1729
+ #: includes/class-wp-members-products.php:320
1730
+ msgid "Insert into item"
1731
+ msgstr ""
1732
+
1733
+ #: includes/class-wp-members-products.php:321
1734
+ #, php-format
1735
+ msgid "Save %s Details"
1736
+ msgstr ""
1737
+
1738
+ #: includes/class-wp-members-products.php:324
1739
+ msgid "Membership Product"
1740
+ msgstr ""
1741
+
1742
+ #: includes/class-wp-members-products.php:325
1743
+ msgid "WP-Members Membership Products"
1744
+ msgstr ""
1745
+
1746
+ #: includes/class-wp-members-pwd-reset.php:31 includes/class-wp-members-pwd-reset.php:32
1747
+ msgid "Sorry, no password reset key was found. Please check your email and try again."
1748
+ msgstr ""
1749
+
1750
+ #: includes/class-wp-members-pwd-reset.php:33
1751
+ msgid "Sorry, the password reset key is expired."
1752
+ msgstr ""
1753
+
1754
+ #: includes/class-wp-members-shortcodes.php:147
1755
+ msgid "This is a generic message to display the form message dialog in the Customizer."
1756
+ msgstr ""
1757
+
1758
+ # @ default
1759
+ #: includes/class-wp-members-shortcodes.php:158 includes/class-wp-members.php:1566
1760
+ #: includes/deprecated - Copy.php:695
1761
+ msgid "There was an error with the CAPTCHA form."
1762
+ msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1763
+
1764
+ #: includes/class-wp-members-shortcodes.php:717
1765
+ msgid "Click here to log out."
1766
+ msgstr ""
1767
+
1768
+ #: includes/class-wp-members-shortcodes.php:786 includes/class-wp-members-user.php:172
1769
+ #: includes/class-wp-members.php:1540 includes/class-wp-members.php:1590
1770
+ msgid "Register"
1771
+ msgstr ""
1772
+
1773
+ #: includes/class-wp-members-shortcodes.php:789 includes/class-wp-members.php:1508
1774
+ msgid "Log In"
1775
+ msgstr ""
1776
+
1777
+ # @ wp-members
1778
+ #: includes/class-wp-members-user-profile.php:38
1779
+ msgid "WP-Members Additional Fields"
1780
+ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
1781
+
1782
+ # @ wp-members
1783
+ #: includes/class-wp-members-user-profile.php:38
1784
+ #, fuzzy
1785
+ msgid "Additional Information"
1786
+ msgstr "अतिरिक्त जानकारी"
1787
+
1788
+ # @ wp-members
1789
+ #: includes/class-wp-members-user-profile.php:463
1790
+ msgid "Reactivate this user?"
1791
+ msgstr "इस उपयोगकर्ता को पुन: सक्रिय?"
1792
+
1793
+ # @ wp-members
1794
+ #: includes/class-wp-members-user-profile.php:468
1795
+ msgid "Deactivate this user?"
1796
+ msgstr "इस उपयोगकर्ता को निष्क्रिय करें?"
1797
+
1798
+ # @ wp-members
1799
+ #: includes/class-wp-members-user-profile.php:522
1800
+ msgid "IP @ registration"
1801
+ msgstr "आईपी ​​@ पंजीकरण"
1802
+
1803
+ # @ default
1804
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1805
+ #, fuzzy
1806
+ msgid "There was an error processing the form."
1807
+ msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1808
+
1809
+ # @ wp-members
1810
+ #: includes/class-wp-members-user.php:1118
1811
+ msgid "<strong>ERROR</strong>: User has not been activated."
1812
+ msgstr "<strong>ERROR</strong>: उपयोगकर्ता सक्रिय नहीं किया गया है."
1813
+
1814
+ #: includes/class-wp-members-widget.php:24
1815
+ msgid "Displays the WP-Members sidebar login."
1816
+ msgstr ""
1817
+
1818
+ # @ wp-members
1819
+ #: includes/class-wp-members-widget.php:39 includes/class-wp-members-widget.php:82
1820
+ msgid "Login Status"
1821
+ msgstr "स्थिति लॉगिन"
1822
+
1823
+ # @ wp-members
1824
+ #: includes/class-wp-members-widget.php:46
1825
+ msgid "Title:"
1826
+ msgstr "शीर्षक:"
1827
+
1828
+ #: includes/class-wp-members-widget.php:50
1829
+ msgid "Redirect to (optional):"
1830
+ msgstr ""
1831
+
1832
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1833
+ msgid "You must be logged in to view this content."
1834
+ msgstr ""
1835
+
1836
+ #: includes/class-wp-members.php:1044
1837
+ msgid "The page you are looking for does not exist"
1838
+ msgstr ""
1839
+
1840
+ #: includes/class-wp-members.php:1436
1841
+ #, php-format
1842
+ msgid ""
1843
+ "You have a linked page in the WP-Members page settings that corresponds to a post ID that no "
1844
+ "longer exists. Please %s review and update the %s page settings %s."
1845
+ msgstr ""
1846
+
1847
+ # @ wp-members
1848
+ #: includes/class-wp-members.php:1474
1849
+ msgid "First Name"
1850
+ msgstr "प्रथम नाम"
1851
+
1852
+ # @ wp-members
1853
+ #: includes/class-wp-members.php:1475
1854
+ msgid "Last Name"
1855
+ msgstr "अंतिम नाम"
1856
+
1857
+ # @ wp-members
1858
+ #: includes/class-wp-members.php:1476
1859
+ msgid "Address 1"
1860
+ msgstr "पता 1"
1861
+
1862
+ # @ wp-members
1863
+ #: includes/class-wp-members.php:1477
1864
+ msgid "Address 2"
1865
+ msgstr "पता 2"
1866
+
1867
+ # @ wp-members
1868
+ #: includes/class-wp-members.php:1478
1869
+ msgid "City"
1870
+ msgstr "शहर"
1871
+
1872
+ # @ wp-members
1873
+ #: includes/class-wp-members.php:1479
1874
+ msgid "State"
1875
+ msgstr "राज्य"
1876
+
1877
+ # @ wp-members
1878
+ #: includes/class-wp-members.php:1480
1879
+ msgid "Zip"
1880
+ msgstr "ज़िप"
1881
+
1882
+ # @ wp-members
1883
+ #: includes/class-wp-members.php:1481
1884
+ msgid "Country"
1885
+ msgstr "देश"
1886
+
1887
+ # @ wp-members
1888
+ #: includes/class-wp-members.php:1482
1889
+ msgid "Day Phone"
1890
+ msgstr "दिन फोन"
1891
+
1892
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1893
+ msgid "Email"
1894
+ msgstr ""
1895
+
1896
+ #: includes/class-wp-members.php:1484
1897
+ msgid "Confirm Email"
1898
+ msgstr ""
1899
+
1900
+ # @ wp-members
1901
+ #: includes/class-wp-members.php:1485
1902
+ msgid "Website"
1903
+ msgstr "वेबसाइट"
1904
+
1905
+ # @ wp-members
1906
+ #: includes/class-wp-members.php:1486
1907
+ msgid "Biographical Info"
1908
+ msgstr "जीवनी जानकारी"
1909
+
1910
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1911
+ #: includes/class-wp-members.php:1587
1912
+ msgid "Password"
1913
+ msgstr ""
1914
+
1915
+ #: includes/class-wp-members.php:1488
1916
+ msgid "Confirm Password"
1917
+ msgstr ""
1918
+
1919
+ # @ wp-members
1920
+ #: includes/class-wp-members.php:1499
1921
+ #, fuzzy
1922
+ msgid "You are not logged in."
1923
+ msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
1924
+
1925
+ # @ wp-members
1926
+ #: includes/class-wp-members.php:1505
1927
+ #, fuzzy
1928
+ msgid "Existing Users Log In"
1929
+ msgstr "मौजूदा प्रयोक्ता लॉगिन"
1930
+
1931
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1932
+ msgid "Username or Email"
1933
+ msgstr ""
1934
+
1935
+ #: includes/class-wp-members.php:1509
1936
+ msgid "Remember Me"
1937
+ msgstr ""
1938
+
1939
+ # @ wp-members
1940
+ #: includes/class-wp-members.php:1510
1941
+ msgid "Forgot password?"
1942
+ msgstr "पासवर्ड भूल गए?"
1943
+
1944
+ # @ wp-members
1945
+ #: includes/class-wp-members.php:1511
1946
+ msgid "Click here to reset"
1947
+ msgstr "रीसेट करने के लिए यहाँ पर क्लिक करें"
1948
+
1949
+ # @ wp-members
1950
+ #: includes/class-wp-members.php:1512
1951
+ msgid "New User?"
1952
+ msgstr "नये उपयोगकर्ता"
1953
+
1954
+ # @ wp-members
1955
+ #: includes/class-wp-members.php:1513
1956
+ msgid "Click here to register"
1957
+ msgstr "पंजीकरण केलिए क्लिक करें"
1958
+
1959
+ # @ wp-members
1960
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1961
+ msgid "Change Password"
1962
+ msgstr "पासवर्ड बदलें"
1963
+
1964
+ #: includes/class-wp-members.php:1517
1965
+ msgid "New password"
1966
+ msgstr ""
1967
+
1968
+ #: includes/class-wp-members.php:1518
1969
+ msgid "Confirm new password"
1970
+ msgstr ""
1971
+
1972
+ # @ wp-members
1973
+ #: includes/class-wp-members.php:1519
1974
+ msgid "Update Password"
1975
+ msgstr "पासवर्ड अद्यतन करें"
1976
+
1977
+ # @ wp-members
1978
+ #: includes/class-wp-members.php:1522
1979
+ msgid "Reset Forgotten Password"
1980
+ msgstr "भूल गया पासवर्ड रीसेट करें"
1981
+
1982
+ #: includes/class-wp-members.php:1525
1983
+ msgid "Reset Password"
1984
+ msgstr ""
1985
+
1986
+ #: includes/class-wp-members.php:1526
1987
+ msgid "Forgot username?"
1988
+ msgstr ""
1989
+
1990
+ #: includes/class-wp-members.php:1527
1991
+ msgid "Click here"
1992
+ msgstr ""
1993
+
1994
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
1995
+ msgid "Retrieve username"
1996
+ msgstr ""
1997
+
1998
+ #: includes/class-wp-members.php:1531
1999
+ msgid "Email Address"
2000
+ msgstr ""
2001
+
2002
+ # @ wp-members
2003
+ #: includes/class-wp-members.php:1535
2004
+ #, fuzzy
2005
+ msgid "New User Registration"
2006
+ msgstr "नये उपयोगकर्ता"
2007
+
2008
+ # @ wp-members
2009
+ #: includes/class-wp-members.php:1536
2010
+ msgid "Choose a Username"
2011
+ msgstr "एक उपयोगकर्ता नाम चुनें"
2012
+
2013
+ #: includes/class-wp-members.php:1537
2014
+ msgid "Input the code:"
2015
+ msgstr ""
2016
+
2017
+ # @ wp-members
2018
+ #: includes/class-wp-members.php:1539
2019
+ #, fuzzy
2020
+ msgid "Reset Form"
2021
+ msgstr "स्पष्ट फार्म"
2022
+
2023
+ # @ wp-members
2024
+ #: includes/class-wp-members.php:1542
2025
+ msgid "Required field"
2026
+ msgstr "आवश्यक फ़ील्ड"
2027
+
2028
+ # @ wp-members
2029
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
2030
+ msgid "Edit Your Information"
2031
+ msgstr "जानकारी संपादित करें"
2032
+
2033
+ # @ wp-members
2034
+ #: includes/class-wp-members.php:1547
2035
+ #, fuzzy
2036
+ msgid "Update Profile"
2037
+ msgstr "नवीनीकरण उपयोगकर्ता"
2038
+
2039
+ #: includes/class-wp-members.php:1548
2040
+ msgid "Update this file"
2041
+ msgstr ""
2042
+
2043
+ # @ wp-members
2044
+ #: includes/class-wp-members.php:1551
2045
+ msgid "Login Failed!"
2046
+ msgstr "असफल लॉगिन!"
2047
+
2048
+ # @ wp-members
2049
+ #: includes/class-wp-members.php:1552
2050
+ msgid "You entered an invalid username or password."
2051
+ msgstr "आप एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया."
2052
+
2053
+ # @ wp-members
2054
+ #: includes/class-wp-members.php:1553
2055
+ msgid "Click here to continue."
2056
+ msgstr "यहाँ क्लिक करें"
2057
+
2058
+ # @ wp-members
2059
+ #: includes/class-wp-members.php:1554
2060
+ msgid "Password fields cannot be empty"
2061
+ msgstr "पासवर्ड फ़ील्ड रिक्त नहीं हो सकता"
2062
+
2063
+ #: includes/class-wp-members.php:1555
2064
+ msgid "Sorry, that email address was not found."
2065
+ msgstr ""
2066
+
2067
+ #: includes/class-wp-members.php:1556
2068
+ #, php-format
2069
+ msgid "An email was sent to %s with your username."
2070
+ msgstr ""
2071
+
2072
+ # @ wp-members
2073
+ #: includes/class-wp-members.php:1557
2074
+ #, php-format
2075
+ msgid "Sorry, %s is a required field."
2076
+ msgstr "क्षमा करें,%s एक आवश्यक फ़ील्ड है."
2077
+
2078
+ # @ wp-members
2079
+ #: includes/class-wp-members.php:1558
2080
+ msgid "You must enter a valid email address."
2081
+ msgstr "आपको एक मान्य ईमेल पता दर्ज करना होगा."
2082
+
2083
+ # @ wp-members
2084
+ #: includes/class-wp-members.php:1559
2085
+ msgid "The username cannot include non-alphanumeric characters."
2086
+ msgstr "उपयोक्तानाम गैर अल्फ़ान्यूमेरिक वर्णों को शामिल नहीं कर सकते."
2087
+
2088
+ # @ wp-members
2089
+ #: includes/class-wp-members.php:1560
2090
+ msgid "Sorry, username is a required field"
2091
+ msgstr "क्षमा करें, प्रयोक्ता नाम क्षेत्र जरूरी है"
2092
+
2093
+ # @ wp-members
2094
+ #: includes/class-wp-members.php:1561
2095
+ #, fuzzy
2096
+ msgid "Passwords did not match."
2097
+ msgstr "कूटशब्द मेल नहीं खाता"
2098
+
2099
+ # @ wp-members
2100
+ #: includes/class-wp-members.php:1562
2101
+ #, fuzzy
2102
+ msgid "Emails did not match."
2103
+ msgstr "कूटशब्द मेल नहीं खाता"
2104
+
2105
+ # @ default
2106
+ #: includes/class-wp-members.php:1563
2107
+ msgid "You must complete the CAPTCHA form."
2108
+ msgstr "कॅप्चा प्रपत्र को पूरा करना होगा."
2109
+
2110
+ #: includes/class-wp-members.php:1564
2111
+ msgid "CAPTCHA was not valid."
2112
+ msgstr ""
2113
+
2114
+ #: includes/class-wp-members.php:1567
2115
+ #, php-format
2116
+ msgid "Sorry, you can only upload the following file types for the %s field: %s."
2117
+ msgstr ""
2118
+
2119
+ # @ wp-members
2120
+ #: includes/class-wp-members.php:1570
2121
+ msgid "Edit My Information"
2122
+ msgstr "मेरी जानकारी संपादित करें"
2123
+
2124
+ # @ wp-members
2125
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
2126
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
2127
+ #, php-format
2128
+ msgid "You are logged in as %s"
2129
+ msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
2130
+
2131
+ #: includes/class-wp-members.php:1573
2132
+ msgid "Log out"
2133
+ msgstr ""
2134
+
2135
+ #: includes/class-wp-members.php:1574
2136
+ msgid "Edit profile"
2137
+ msgstr ""
2138
+
2139
+ # @ wp-members
2140
+ #: includes/class-wp-members.php:1574
2141
+ msgid "Begin using the site."
2142
+ msgstr "साइट का उपयोग शुरू करते हैं."
2143
+
2144
+ # @ wp-members
2145
+ #: includes/class-wp-members.php:1576
2146
+ #, fuzzy
2147
+ msgid "Click to log out"
2148
+ msgstr "लॉग इन"
2149
+
2150
+ # @ wp-members
2151
+ #: includes/class-wp-members.php:1578
2152
+ #, fuzzy
2153
+ msgid "click to log out"
2154
+ msgstr "लॉग इन"
2155
+
2156
+ #: includes/class-wp-members.php:1579
2157
+ msgid "Log Out"
2158
+ msgstr ""
2159
+
2160
+ # @ wp-members
2161
+ #: includes/class-wp-members.php:1583
2162
+ msgid "click here to log out"
2163
+ msgstr "यहाँ क्लिक करने के लिए लॉग आउट करें"
2164
+
2165
+ # @ wp-members
2166
+ #: includes/class-wp-members.php:1584
2167
+ msgid "Login Failed!<br />You entered an invalid username or password."
2168
+ msgstr "विफल लॉगिन !<br /> तुम एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया"
2169
+
2170
+ # @ wp-members
2171
+ #: includes/class-wp-members.php:1589
2172
+ msgid "Forgot?"
2173
+ msgstr "भूल गए?"
2174
+
2175
+ # @ wp-members
2176
+ #: includes/class-wp-members.php:1593
2177
+ #, fuzzy
2178
+ msgid ""
2179
+ "This content is restricted to site members. If you are an existing user, please log in. "
2180
+ "New users may register below."
2181
+ msgstr ""
2182
+ "यह सामग्री साइट के सदस्यों के लिए प्रतिबंधित है. यदि आप एक मौजूदा उपयोगकर्ता हैं, तो प्रवेश करें. नए "
2183
+ "उपयोगकर्ताओं को नीचे पंजीकृत कर सकते हैं."
2184
+
2185
+ # @ wp-members
2186
+ #: includes/class-wp-members.php:1594
2187
+ #, fuzzy
2188
+ msgid ""
2189
+ "Congratulations! Your registration was successful.<br /><br />You may now log in using the "
2190
+ "password that was emailed to you."
2191
+ msgstr ""
2192
+ "बधाई हो!आपके पंजीकरण सफल रहा था. <br /> अब आप पासवर्ड है कि आप के लिए ईमेल का उपयोग कर प्रवेश कर सकते "
2193
+ "हैं."
2194
+
2195
+ # @ wp-members
2196
+ #: includes/class-wp-members.php:1597
2197
+ msgid "Sorry, that username is taken, please try another."
2198
+ msgstr "क्षमा करें, कि उपयोगकर्ता नाम लिया जाता है, एक और प्रयास करें."
2199
+
2200
+ # @ wp-members
2201
+ #: includes/class-wp-members.php:1598
2202
+ msgid "Sorry, that email address already has an account.<br />Please try another."
2203
+ msgstr "क्षमा करें, उस ईमेल पते पहले से ही एक खाता है <br /> कृपया एक और प्रयास करें."
2204
+
2205
+ # @ wp-members
2206
+ #: includes/class-wp-members.php:1599
2207
+ msgid "Your information was updated!"
2208
+ msgstr "आपकी जानकारी को अपडेट किया गया था!"
2209
+
2210
+ # @ wp-members
2211
+ #: includes/class-wp-members.php:1602
2212
+ msgid "Passwords did not match.<br /><br />Please try again."
2213
+ msgstr "पासवर्डों से मेल नहीं खाती. <br /> <br /> कृपया पुन: प्रयास करें."
2214
+
2215
+ #: includes/class-wp-members.php:1603
2216
+ msgid "Password successfully changed!"
2217
+ msgstr ""
2218
+
2219
+ # @ wp-members
2220
+ #: includes/class-wp-members.php:1604
2221
+ msgid "Either the username or email address do not exist in our records."
2222
+ msgstr "या तो उपयोगकर्ता नाम या ईमेल पता हमारे रिकॉर्ड में मौजूद नहीं है"
2223
+
2224
+ #: includes/class-wp-members.php:1605
2225
+ msgid ""
2226
+ "Password successfully reset!<br /><br />An email containing a new password has been sent to "
2227
+ "the email address on file for your account."
2228
+ msgstr ""
2229
+
2230
+ #: includes/class-wp-members.php:1607
2231
+ msgid "This content requires the following membership: "
2232
+ msgstr ""
2233
+
2234
+ #: includes/class-wp-members.php:1608
2235
+ msgid "This content requires one of the following memberships: "
2236
+ msgstr ""
2237
+
2238
+ #: includes/class-wp-members.php:1721
2239
+ msgid "Show forms as logged out"
2240
+ msgstr ""
2241
+
2242
+ #: includes/class-wp-members.php:1730
2243
+ msgid "Show form message dialog"
2244
+ msgstr ""
2245
+
2246
+ #: includes/class-wp-members.php:1838
2247
+ msgid "(more&hellip;)"
2248
+ msgstr ""
2249
+
2250
+ #: includes/cli/class-wp-members-cli.php:17
2251
+ #, php-format
2252
+ msgid "User: %s"
2253
+ msgstr ""
2254
+
2255
+ # @ wp-members
2256
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2257
+ msgid "We were unable to validate the public key."
2258
+ msgstr "हम सार्वजनिक कुंजी को मान्य करने में असमर्थ थे."
2259
+
2260
+ # @ wp-members
2261
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2262
+ msgid "We were unable to validate the private key."
2263
+ msgstr "हम निजी कुंजी को मान्य करने में असमर्थ थे."
2264
+
2265
+ # @ wp-members
2266
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2267
+ msgid "The challenge parameter of the verify script was incorrect."
2268
+ msgstr "सत्यापित स्क्रिप्ट की चुनौती पैरामीटर गलत थी."
2269
+
2270
+ # @ wp-members
2271
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2272
+ msgid "The CAPTCHA solution was incorrect."
2273
+ msgstr "कॅप्चा समाधान गलत था"
2274
+
2275
+ # @ wp-members
2276
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2277
+ msgid "The parameters to verify were incorrect"
2278
+ msgstr "सत्यापित करने के लिए पैरामीटर गलत थे"
2279
+
2280
+ # @ wp-members
2281
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2282
+ msgid "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2283
+ msgstr "reCAPTCHA एपीआई कुंजी सुरक्षा कारणों के लिए एक विशिष्ट डोमेन नाम के लिए बंधे हैं."
2284
+
2285
+ # @ wp-members
2286
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2287
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2288
+ msgstr "ReCAPTCHA सर्वर तक पहुँच नहीं किया गया था. पुनः भेजने के लिये प्रयास करें"
2289
+
2290
+ #. translators: %s: title of menu item which is invalid
2291
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2292
+ #, php-format
2293
+ msgid "%s (Invalid)"
2294
+ msgstr ""
2295
+
2296
+ #. translators: %s: title of menu item in draft status
2297
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2298
+ #, php-format
2299
+ msgid "%s (Pending)"
2300
+ msgstr ""
2301
+
2302
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2303
+ msgid "Move up"
2304
+ msgstr ""
2305
+
2306
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2307
+ msgid "Move down"
2308
+ msgstr ""
2309
+
2310
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2311
+ msgid "Edit Menu Item"
2312
+ msgstr ""
2313
+
2314
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2315
+ msgid "URL"
2316
+ msgstr ""
2317
+
2318
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2319
+ msgid "Navigation Label"
2320
+ msgstr ""
2321
+
2322
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2323
+ msgid "Title Attribute"
2324
+ msgstr ""
2325
+
2326
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2327
+ msgid "Open link in a new window/tab"
2328
+ msgstr ""
2329
+
2330
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2331
+ msgid "CSS Classes (optional)"
2332
+ msgstr ""
2333
+
2334
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2335
+ msgid "Link Relationship (XFN)"
2336
+ msgstr ""
2337
+
2338
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2339
+ msgid "The description will be displayed in the menu if the current theme supports it."
2340
+ msgstr ""
2341
+
2342
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2343
+ #, php-format
2344
+ msgid "Original: %s"
2345
+ msgstr ""
2346
+
2347
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2348
+ msgid "Remove"
2349
+ msgstr ""
2350
+
2351
+ # @ wp-members
2352
+ #: templates/tos.php:32
2353
+ #, php-format
2354
+ msgid "%sclose%s"
2355
+ msgstr "%sclose%s"
2356
+
2357
+ # @ wp-members
2358
+ #: templates/tos.php:34
2359
+ #, php-format
2360
+ msgid "%sprint%s"
2361
+ msgstr "%sprint%s"
2362
+
2363
+ # @ wp-members
2364
+ #. Plugin Name of the plugin/theme
2365
+ msgid "WP-Members"
2366
+ msgstr "WP-सदस्य"
2367
+
2368
+ #. Plugin URI of the plugin/theme
2369
+ msgid "https://rocketgeek.com"
2370
+ msgstr ""
2371
+
2372
+ #. Description of the plugin/theme
2373
+ msgid ""
2374
+ "WP access restriction and user registration. For more information on plugin features, refer "
2375
+ "to <a href=\"https://rocketgeek.com/plugins/wp-members/users-guide/\">the online Users "
2376
+ "Guide</a>. A <a href=\"https://rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick "
2377
+ "Start Guide</a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
2378
+ msgstr ""
2379
+
2380
+ #. Author of the plugin/theme
2381
+ msgid "Chad Butler"
2382
+ msgstr ""
2383
+
2384
+ #. Author URI of the plugin/theme
2385
+ msgid "http://butlerblog.com/"
2386
+ msgstr ""
2387
+
2388
+ # @ wp-members
2389
+ #, fuzzy
2390
+ #~ msgid "Click to log out."
2391
+ #~ msgstr "लॉग इन"
2392
+
2393
+ # @ wp-members
2394
+ #~ msgid "You have set WP-Members to turn off the registration process"
2395
+ #~ msgstr "WP-सदस्य पंजीकरण प्रक्रिया को बारी के लिए निर्धारित किया है"
2396
+
2397
+ # @ wp-members
2398
+ #~ msgid ""
2399
+ #~ "but you also set to moderate and/or email admin new registrations. You will need to set "
2400
+ #~ "up a registration page for users to register."
2401
+ #~ msgstr ""
2402
+ #~ "लेकिन आप भी और / या मध्यम ईमेल व्यवस्थापक नए पंजीकरण के लिए निर्धारित किया है. आप के लिए एक पंजीकरण "
2403
+ #~ "पृष्ठ सेट के लिए उपयोगकर्ताओं को रजिस्टर करने के लिए की आवश्यकता होगी.."
2404
+
2405
+ #, fuzzy
2406
+ #~ msgid "Unblocked?"
2407
+ #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2408
+
2409
+ # @ wp-members
2410
+ #, fuzzy
2411
+ #~ msgid "Blocked?"
2412
+ #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2413
+
2414
+ # @ wp-members
2415
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2416
+ #~ msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
2417
+
2418
+ # @ wp-members
2419
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2420
+ #~ msgstr "विकल्प नाम के एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
2421
+
2422
+ #, fuzzy
2423
+ #~ msgid "field was added"
2424
+ #~ msgstr "क्षेत्र लेबल"
2425
+
2426
+ # @ wp-members
2427
+ #, fuzzy
2428
+ #~ msgid "field was updated"
2429
+ #~ msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
2430
+
2431
+ # @ wp-members
2432
+ #~ msgid "Option Name"
2433
+ #~ msgstr "विकल्प नाम"
2434
+
2435
+ #, fuzzy
2436
+ #~ msgid "Additional information for checkbox fields"
2437
+ #~ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
2438
+
2439
+ #, fuzzy
2440
+ #~ msgid "Additional information for dropdown fields"
2441
+ #~ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
2442
+
2443
+ # @ wp-members
2444
+ #~ msgid "For dropdown, array of values:"
2445
+ #~ msgstr "मूल्यों की ड्रॉपडाउन सरणी, "
2446
+
2447
+ # @ wp-members
2448
+ #~ msgid ""
2449
+ #~ "Determine which fields will display and which are required. This includes all fields, "
2450
+ #~ "both native WP fields and WP-Members custom fields."
2451
+ #~ msgstr ""
2452
+ #~ "निर्धारित जो फ़ील्ड प्रदर्शित करने के लिए और जो आवश्यक हैं. यह सभी क्षेत्रों, दोनों देशी WP क्षेत्र और WP-"
2453
+ #~ "सदस्य कस्टम फ़ील्ड्स शामिल हैं."
2454
+
2455
+ # @ wp-members
2456
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2457
+ #~ msgstr "(नोट: ईमेल हमेशा अनिवार्य है और बदला नहीं जा सकता.)"
2458
+
2459
+ # @ wp-members
2460
+ #~ msgid "Add/Delete"
2461
+ #~ msgstr "जोड़ें /हटाएँ"
2462
+
2463
+ # @ wp-members
2464
+ #~ msgid "Checked?"
2465
+ #~ msgstr "जाँच की?"
2466
+
2467
+ # @ wp-members
2468
+ #~ msgid "Delete"
2469
+ #~ msgstr "हटाना"
2470
+
2471
+ # @ wp-members
2472
+ #~ msgid "(Email cannot be removed)"
2473
+ #~ msgstr "(ईमेल हटाया नहीं जा सकता है)"
2474
+
2475
+ # @ wp-members
2476
+ #, fuzzy
2477
+ #~ msgid "native"
2478
+ #~ msgstr "WP के मूल निवासी हैं?"
2479
+
2480
+ # @ wp-members
2481
+ #~ msgid "Update Fields"
2482
+ #~ msgstr "फ़ील्ड अपडेट करें"
2483
+
2484
+ # @ wp-members
2485
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2486
+ #~ msgstr "संकेत मिलता है कि आप%s के TOS %s करने के लिए सहमत"
2487
+
2488
+ # @ wp-members
2489
+ #, fuzzy
2490
+ #~ msgid "Post Restriction"
2491
+ #~ msgstr "नया पंजीकरण"
2492
+
2493
+ # @ wp-members
2494
+ #, fuzzy
2495
+ #~ msgid "Page Restriction"
2496
+ #~ msgstr "रजिस्टर पृष्ठ URL:"
2497
+
2498
+ # @ wp-members
2499
+ #~ msgid "dropdown"
2500
+ #~ msgstr "ड्रॉपडाउन"
2501
+
2502
+ # @ wp-members
2503
+ #~ msgid "Block Posts by default"
2504
+ #~ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
2505
+
2506
+ # @ wp-members
2507
+ #~ msgid "Note: Posts can still be individually blocked or unblocked at the article level"
2508
+ #~ msgstr "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
2509
+
2510
+ # @ wp-members
2511
+ #~ msgid "Block Pages by default"
2512
+ #~ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
2513
+
2514
+ # @ wp-members
2515
+ #~ msgid "Note: Pages can still be individually blocked or unblocked at the article level"
2516
+ #~ msgstr "नोट: अभी भी पन्ने व्यक्तिगत अवरुद्ध किया जा सकता है या लेख के स्तर पर अनवरोधित"
2517
+
2518
+ # @ wp-members
2519
+ #~ msgid "Show excerpts"
2520
+ #~ msgstr "कुछ अंशः दिखाएँ"
2521
+
2522
+ # @ wp-members
2523
+ #~ msgid "Shows excerpted content above the login/registration on both Posts and Pages"
2524
+ #~ msgstr " दोनों पोस्ट और पृष्ठों पर लॉगिन और पंजीकरण के ऊपर सामग्री का कुछ अंश दिखाता है"
2525
+
2526
+ # @ wp-members
2527
+ #~ msgid "Turns on CAPTCHA for registration"
2528
+ #~ msgstr "कॅप्चा पर पंजीकरण के लिए बदल जाता है"
2529
+
2530
+ # @ wp-members
2531
+ #, fuzzy
2532
+ #~ msgid "Hide registration"
2533
+ #~ msgstr "पंजीकरण पूरा किया"
2534
+
2535
+ # @ wp-members
2536
+ #~ msgid "Optional"
2537
+ #~ msgstr "वैकल्पिक"
2538
+
2539
+ #, fuzzy
2540
+ #~ msgid "Automatically creates an excerpt"
2541
+ #~ msgstr "कुछ अंशः दिखाएँ"
2542
+
2543
+ # @ wp-members
2544
+ #~ msgid "AIM"
2545
+ #~ msgstr "उद्देश्य"
2546
+
2547
+ # @ wp-members
2548
+ #~ msgid "Yahoo IM"
2549
+ #~ msgstr "याहू आईएम"
2550
+
2551
+ # @ wp-members
2552
+ #~ msgid "Jabber/Google Talk"
2553
+ #~ msgstr "अस्पष्ट / गूगल टॉक"
2554
+
2555
+ # @ wp-members
2556
+ #~ msgid ""
2557
+ #~ "Password successfully changed!<br /><br />You will need to re-login with your new "
2558
+ #~ "password."
2559
+ #~ msgstr "कूटशब्द सफलतापूर्वक बदला <br /> <br आप फिर से अपने नए पासवर्ड के साथ लॉगिन की आवश्यकता होगी."
2560
+
2561
+ # @ wp-members
2562
+ #~ msgid ""
2563
+ #~ "Password successfully reset!<br /><br />An email containing a new password has been sent "
2564
+ #~ "to the email address on file for your account. You may change this random password then "
2565
+ #~ "re-login with your new password."
2566
+ #~ msgstr ""
2567
+ #~ "पासवर्ड सफलतापूर्वक रीसेट!, /> <br /> एक युक्त ईमेल फ़ाइल पर अपने खाते के लिए ईमेल पते के लिए एक नया "
2568
+ #~ "पासवर्ड भेज दिया गया है. आप अपने नए पासवर्ड के साथ इस यादृच्छिक तो फिर से लॉगिन पासवर्ड को बदल सकते "
2569
+ #~ "हैं."
2570
+
2571
+ # @ wp-members
2572
+ #~ msgid "Custom"
2573
+ #~ msgstr "रिवाज"
2574
+
2575
+ #, fuzzy
2576
+ #~ msgid "edit"
2577
+ #~ msgstr "जानकारी संपादित करें"
i18n/languages/wp-members-ko_KR.mo CHANGED
Binary file
i18n/languages/wp-members-ko_KR.po CHANGED
@@ -1,2278 +1,2585 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WP-Members v3.2.6\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
6
- "PO-Revision-Date: 2019-06-19 08:52-0400\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Venusian <martian36@naver.com>\n"
9
- "Language: ko_KR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=1; plural=0;\n"
14
- "X-Generator: Poedit 2.2.1\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-Basepath: ..\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- # @ wp-members
23
- #: admin/dialogs.php:116
24
- msgid ""
25
- "Your WP settings allow anyone to register - this is not the recommended "
26
- "setting."
27
- msgstr ""
28
- "워드프레스 설정이 누구나 가입할 수 있도록 돼있습니다. 이 설정은 권장하지 않습"
29
- "니다."
30
-
31
- # @ wp-members
32
- #: admin/dialogs.php:117
33
- #, php-format
34
- msgid ""
35
- "You can %s change this here %s making sure the box next to \"Anyone can "
36
- "register\" is unchecked."
37
- msgstr ""
38
- "%s 이것을 여기서 변경%s 할 수 있습니다. \"누구나 가입할 있습니다\"의 체크"
39
- "박스를 체크해제 하세요."
40
-
41
- # @ wp-members
42
- #: admin/dialogs.php:118
43
- msgid ""
44
- "This setting allows a link on the /wp-login.php page to register using the "
45
- "WP native registration process thus circumventing any registration you are "
46
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
47
- "but most users should uncheck this option. If you do not change this "
48
- "setting, you can choose to ignore these warning messages under WP-Members "
49
- "Settings."
50
- msgstr ""
51
- "이 설정은 /wp-login.php에서 워드프레스 기본 회원가입을 사용해서 등록할 수 있"
52
- "는 링크를 허용합니다. 그러면 WP-Members를 사용하는 회원가입을 무시하게 됩니"
53
- "다. 어떤 경우는 이것이 사용자에게 어울리지만 대부분의 사용자는 이 옵션을 체크"
54
- "해제 해야 합니다. 이 설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 "
55
- "메시지 무시하기를 선택할 수 있습니다."
56
-
57
- # @ wp-members
58
- #: admin/dialogs.php:122
59
- msgid ""
60
- "Your WP settings allow anyone to comment - this is not the recommended "
61
- "setting."
62
- msgstr ""
63
- "워드프레스 설정이 누구나 댓글을 달 수 있도록 돼있습니다 - 이 설정은 권장하지 "
64
- "않습니다."
65
-
66
- # @ wp-members
67
- #: admin/dialogs.php:123
68
- #, php-format
69
- msgid ""
70
- "You can %s change this here %s by checking the box next to \"Users must be "
71
- "registered and logged in to comment.\""
72
- msgstr ""
73
- "%s 여기서 설정을 변경할 수 있고 %s \"가입하여 로그인한 사용자만 댓글을 남길 "
74
- "수 있습니다.\" 체크박스에 체크하세요."
75
-
76
- # @ wp-members
77
- #: admin/dialogs.php:124
78
- msgid ""
79
- "This setting allows any users to comment, whether or not they are "
80
- "registered. Depending on how you are using WP-Members will determine whether "
81
- "you should change this setting or not. If you do not change this setting, "
82
- "you can choose to ignore these warning messages under WP-Members Settings."
83
- msgstr ""
84
- "이 설정은 가입하거나 가입하지 않은 누구든 댓글을 달 수 있도록 허용합니다. WP-"
85
- "Members를 사용하는 방법에 따라서 이 설정을 변경할 것인지 결정해야 합니다.이 "
86
- "설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 메시지 무시하기를 선"
87
- "택할 수 있습니다."
88
-
89
- # @ wp-members
90
- #: admin/dialogs.php:128
91
- msgid ""
92
- "Your WP settings allow full text rss feeds - this is not the recommended "
93
- "setting."
94
- msgstr ""
95
- "워드프레스 설정이 전체 글 RSS 피드를 허용합니다 - 이 설정은 권장하지 않습니"
96
- "다."
97
-
98
- # @ wp-members
99
- #: admin/dialogs.php:129
100
- #, php-format
101
- msgid ""
102
- "You can %s change this here %s by changing \"For each article in a feed, show"
103
- "\" to \"Summary.\""
104
- msgstr ""
105
- "%s 여기서 변경할 수 %s있으며 \"피드 글의 보기 옵션\"에서 \"요약\"으로 변경하"
106
- "세요."
107
-
108
- # @ wp-members
109
- #: admin/dialogs.php:130
110
- msgid ""
111
- "Leaving this set to full text allows anyone to read your protected content "
112
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
113
- "only show summary text."
114
- msgstr ""
115
- "이 설정을 전체 글로 설정해두면 누구든 RSS 리더에서 보호된 콘텐츠를 읽을 수 있"
116
- "습니다. 이것을 요약으로 변경하면 이를 방지할 수 있으며 피드는 요약 텍스트만 "
117
- "보여줄 것입니다."
118
-
119
- # @ wp-members
120
- #: admin/dialogs.php:134
121
- msgid "You have set WP-Members to hold registrations for approval"
122
- msgstr "WP-Members 설정을 회원가입은 승인이 필요한 것으로 했습니다."
123
-
124
- # @ wp-members
125
- #: admin/dialogs.php:135
126
- msgid ""
127
- "but you have not changed the default message for \"Registration Completed\" "
128
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
129
- "message to let users know they are pending approval."
130
- msgstr ""
131
- "하지만 \"WP-Members 대화 및 에러 메시지\"에서 \"회원가입 완료됨\"의 기본 메"
132
- "시지를 변경하지 않았습니다. 사용자가 승인이 대기 중이라는 것을 알 수 있도록 "
133
- "메시지를 변경해야 합니다."
134
-
135
- # @ wp-members
136
- #: admin/dialogs.php:139
137
- msgid "You have turned on reCAPTCHA"
138
- msgstr "리캡챠를 켜놓았습니다"
139
-
140
- # @ wp-members
141
- #: admin/dialogs.php:140
142
- msgid ""
143
- "but you have not entered API keys. You will need both a public and private "
144
- "key. The CAPTCHA will not display unless a valid API key is included."
145
- msgstr ""
146
- "하지만 API 키를 입력하지 않았습니다. public 키와 private 키가 필요합니다. 유"
147
- "효한 API 키가 포함되지 않으면 캡챠는 표시되지 않습니다."
148
-
149
- #: admin/dialogs.php:144
150
- msgid "You have active settings that are not recommended."
151
- msgstr ""
152
-
153
- #: admin/dialogs.php:145
154
- msgid ""
155
- "If you will not be changing these settings, you can turn off these warning "
156
- "messages by checking the \"Ignore warning messages\" in the settings below."
157
- msgstr ""
158
-
159
- # @ wp-members
160
- #: admin/dialogs.php:169
161
- msgid "Version:"
162
- msgstr "버전:"
163
-
164
- # @ wp-members
165
- #: admin/dialogs.php:170
166
- msgid "Quick Start Guide"
167
- msgstr "빠른 시작 가이드"
168
-
169
- # @ wp-members
170
- #: admin/dialogs.php:171
171
- msgid "Online User Guide"
172
- msgstr "온라인 사용자 가이드"
173
-
174
- # @ wp-members
175
- #: admin/dialogs.php:172
176
- msgid "FAQs"
177
- msgstr "FAQ"
178
-
179
- # @ wp-members
180
- #: admin/dialogs.php:179
181
- msgid "Thank you for using WP-Members"
182
- msgstr "WP-Members를 사용해주셔서 감사합니다"
183
-
184
- # @ wp-members
185
- #: admin/dialogs.php:180
186
- msgid "A plugin developed by"
187
- msgstr "플러그인 개발자"
188
-
189
- # @ wp-members
190
- #: admin/dialogs.php:181
191
- msgid "Follow"
192
- msgstr "팔로우"
193
-
194
- #: admin/dialogs.php:198 admin/dialogs.php:202
195
- msgid "Latest from RocketGeek"
196
- msgstr "최근 RocketGeek"
197
-
198
- #: admin/dialogs.php:219
199
- msgid "Like WP-Members?"
200
- msgstr ""
201
-
202
- #: admin/dialogs.php:220
203
- #, php-format
204
- msgid ""
205
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
206
- "%s rating. Thanks!!"
207
- msgstr ""
208
-
209
- #: admin/dialogs.php:231 admin/dialogs.php:244
210
- msgid "Latest from ButlerBlog"
211
- msgstr "최근 ButlerBlog"
212
-
213
- #: admin/includes/class-wp-members-admin-api.php:256
214
- msgid "Custom email"
215
- msgstr ""
216
-
217
- # @ wp-members
218
- #: admin/includes/class-wp-members-admin-api.php:257
219
- #: admin/includes/class-wp-members-admin-api.php:259
220
- msgid "Subject"
221
- msgstr "제목"
222
-
223
- # @ wp-members
224
- #: admin/includes/class-wp-members-admin-api.php:260
225
- msgid "Body"
226
- msgstr "바디"
227
-
228
- #: admin/includes/class-wp-members-admin-api.php:262
229
- msgid "Your custom email message content."
230
- msgstr ""
231
-
232
- # @ wp-members
233
- #: admin/includes/class-wp-members-admin-api.php:340
234
- msgid "Options"
235
- msgstr "옵션"
236
-
237
- # @ wp-members
238
- #: admin/includes/class-wp-members-admin-api.php:341
239
- msgid "Fields"
240
- msgstr "필드"
241
-
242
- # @ wp-members
243
- #: admin/includes/class-wp-members-admin-api.php:342
244
- msgid "Dialogs"
245
- msgstr "대화"
246
-
247
- # @ wp-members
248
- #: admin/includes/class-wp-members-admin-api.php:343
249
- msgid "Emails"
250
- msgstr "이메일"
251
-
252
- # @ wp-members
253
- #: admin/includes/class-wp-members-admin-api.php:359
254
- msgid "New Registration"
255
- msgstr "새 회원가입"
256
-
257
- # @ wp-members
258
- #: admin/includes/class-wp-members-admin-api.php:368
259
- msgid "Registration is Moderated"
260
- msgstr "회원가입이 검토됐습니다"
261
-
262
- # @ wp-members
263
- #: admin/includes/class-wp-members-admin-api.php:374
264
- msgid "Registration is Moderated, User is Approved"
265
- msgstr "회원가입이 검토됐으며 사용자 승인됐습니다"
266
-
267
- # @ wp-members
268
- #: admin/includes/class-wp-members-admin-api.php:382
269
- msgid "Password Reset"
270
- msgstr "비밀번호 초기화"
271
-
272
- #: admin/includes/class-wp-members-admin-api.php:389
273
- msgid "Retrieve Username"
274
- msgstr ""
275
-
276
- # @ wp-members
277
- #: admin/includes/class-wp-members-admin-api.php:397
278
- msgid "Admin Notification"
279
- msgstr "관리자 알림"
280
-
281
- # @ wp-members
282
- #: admin/includes/class-wp-members-admin-api.php:423
283
- msgid "Restricted post (or page), displays above the login/registration form"
284
- msgstr "제한된 글 (또는 페이지), 로그인/회원가입 폼 위에 표시됨"
285
-
286
- # @ wp-members
287
- #: admin/includes/class-wp-members-admin-api.php:424
288
- msgid "Username is taken"
289
- msgstr "아이디가 사용 중입니다."
290
-
291
- # @ wp-members
292
- #: admin/includes/class-wp-members-admin-api.php:425
293
- msgid "Email is registered"
294
- msgstr "이메일이 등록됐습니다"
295
-
296
- # @ wp-members
297
- #: admin/includes/class-wp-members-admin-api.php:426
298
- msgid "Registration completed"
299
- msgstr "회원가입 완료"
300
-
301
- # @ wp-members
302
- #: admin/includes/class-wp-members-admin-api.php:427
303
- msgid "User update"
304
- msgstr "사용자 업데이트"
305
-
306
- # @ wp-members
307
- #: admin/includes/class-wp-members-admin-api.php:428
308
- msgid "Passwords did not match"
309
- msgstr "비밀번호가 일치하지 않습니다"
310
-
311
- # @ wp-members
312
- #: admin/includes/class-wp-members-admin-api.php:429
313
- msgid "Password changes"
314
- msgstr "비밀번호 변경"
315
-
316
- # @ wp-members
317
- #: admin/includes/class-wp-members-admin-api.php:430
318
- msgid "Username or email do not exist when trying to reset forgotten password"
319
- msgstr "분실 비밀번호 초기화 시 아이디 또는 이메일이 존재하지 않습니다"
320
-
321
- # @ wp-members
322
- #: admin/includes/class-wp-members-admin-api.php:431
323
- msgid "Password reset"
324
- msgstr "비밀번호 초기화"
325
-
326
- # @ default
327
- # @ wp-members
328
- #: admin/includes/class-wp-members-admin-api.php:564
329
- msgid "Settings"
330
- msgstr "설정"
331
-
332
- #: admin/includes/class-wp-members-products-admin.php:57
333
- msgid "Slug"
334
- msgstr ""
335
-
336
- #: admin/includes/class-wp-members-products-admin.php:58
337
- msgid "Role"
338
- msgstr ""
339
-
340
- # @ wp-members
341
- #: admin/includes/class-wp-members-products-admin.php:59
342
- #: admin/includes/class-wp-members-products-admin.php:162
343
- #: admin/tab-fields.php:459 admin/user-export.php:69
344
- msgid "Expires"
345
- msgstr "만료"
346
-
347
- #: admin/includes/class-wp-members-products-admin.php:60
348
- msgid "Last updated"
349
- msgstr ""
350
-
351
- #: admin/includes/class-wp-members-products-admin.php:80
352
- msgid "No role required"
353
- msgstr ""
354
-
355
- #: admin/includes/class-wp-members-products-admin.php:84
356
- msgid "Does not expire"
357
- msgstr ""
358
-
359
- #: admin/includes/class-wp-members-products-admin.php:120
360
- msgid "Membership Product Details"
361
- msgstr ""
362
-
363
- #: admin/includes/class-wp-members-products-admin.php:142
364
- #: admin/includes/class-wp-members-products-admin.php:167
365
- msgid "Period"
366
- msgstr ""
367
-
368
- #: admin/includes/class-wp-members-products-admin.php:142
369
- msgid "Day"
370
- msgstr ""
371
-
372
- #: admin/includes/class-wp-members-products-admin.php:142
373
- msgid "Week"
374
- msgstr ""
375
-
376
- #: admin/includes/class-wp-members-products-admin.php:142
377
- msgid "Month"
378
- msgstr ""
379
-
380
- #: admin/includes/class-wp-members-products-admin.php:142
381
- msgid "Year"
382
- msgstr ""
383
-
384
- #: admin/includes/class-wp-members-products-admin.php:148
385
- msgid "Name (slug)"
386
- msgstr ""
387
-
388
- #: admin/includes/class-wp-members-products-admin.php:153
389
- msgid "Role Required?"
390
- msgstr ""
391
-
392
- #: admin/includes/class-wp-members-products-admin.php:156
393
- msgid "No Role"
394
- msgstr ""
395
-
396
- #: admin/includes/class-wp-members-products-admin.php:164
397
- #: admin/includes/class-wp-members-products-admin.php:166
398
- msgid "Number"
399
- msgstr ""
400
-
401
- #: admin/includes/class-wp-members-products-admin.php:245
402
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
403
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
404
- #: inc/deprecated.php:622
405
- msgid "None"
406
- msgstr ""
407
-
408
- #: admin/includes/class-wp-members-products-admin.php:251
409
- msgid "Limit access to:"
410
- msgstr ""
411
-
412
- #: admin/includes/class-wp-members-products-admin.php:321
413
- msgid "Required Membership"
414
- msgstr ""
415
-
416
- #: admin/includes/class-wp-members-products-admin.php:360
417
- msgid "Membership"
418
- msgstr ""
419
-
420
- #: admin/post.php:45 admin/post.php:48
421
- msgid "Unblock"
422
- msgstr "차단 해제"
423
-
424
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
425
- msgid "Block"
426
- msgstr "차단"
427
-
428
- #: admin/post.php:47 admin/post.php:50
429
- msgid "Hide"
430
- msgstr ""
431
-
432
- #: admin/post.php:138
433
- #, php-format
434
- msgid "%s blocked"
435
- msgstr ""
436
-
437
- #: admin/post.php:138
438
- #, php-format
439
- msgid "%s unblocked"
440
- msgstr ""
441
-
442
- #: admin/post.php:177
443
- #, php-format
444
- msgid "%s Restriction"
445
- msgstr ""
446
-
447
- #: admin/post.php:206
448
- msgid "Unblocked"
449
- msgstr ""
450
-
451
- #: admin/post.php:207
452
- msgid "Blocked"
453
- msgstr ""
454
-
455
- #: admin/post.php:208
456
- msgid "Hidden"
457
- msgstr ""
458
-
459
- #: admin/post.php:214
460
- msgid "Status:"
461
- msgstr ""
462
-
463
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
464
- msgid "Edit"
465
- msgstr ""
466
-
467
- #: admin/post.php:229
468
- msgid "Ok"
469
- msgstr ""
470
-
471
- #: admin/post.php:230
472
- msgid "Cancel"
473
- msgstr ""
474
-
475
- #: admin/post.php:314
476
- msgid "Status"
477
- msgstr ""
478
-
479
- #: admin/tab-about.php:34 admin/tab-about.php:54
480
- msgid "About WP-Members"
481
- msgstr ""
482
-
483
- #: admin/tab-captcha.php:66
484
- #, php-format
485
- msgid "See the %sUsers Guide on CAPTCHA%s."
486
- msgstr ""
487
-
488
- # @ wp-members
489
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
490
- #: admin/tab-fields.php:153 admin/tab-options.php:82
491
- msgid "Need help?"
492
- msgstr "도움이 필요하세요?"
493
-
494
- # @ wp-members
495
- #: admin/tab-captcha.php:84
496
- msgid "Manage reCAPTCHA Options"
497
- msgstr "reCAPTCHA 옵션 관리"
498
-
499
- # @ wp-members
500
- #: admin/tab-captcha.php:98
501
- msgid ""
502
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
503
- "while blocking spam on your blog."
504
- msgstr ""
505
- "reCAPTCHA는 무료이며 접근 가능한 CAPTCHA 서비스로 블로그에서 스팸을 방지하는"
506
- "데 도움이 됩니다."
507
-
508
- # @ wp-members
509
- #: admin/tab-captcha.php:99
510
- #, php-format
511
- msgid ""
512
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
513
- "that they are a human. This verifies that they are not a spambot while also "
514
- "correcting the automatic scans of old books. So you get less spam, and the "
515
- "world gets accurately digitized books. Everybody wins! For details, visit "
516
- "the %s reCAPTCHA website%s"
517
- msgstr ""
518
- "reCAPTCHA는 댓글자가 사람인지 증명하기 위해 책에서 스캔해 두 개의단어를 입력"
519
- "하도록 요구합니다. 이것은 스팸로봇이 아닌지 확인하며 많은 스팸을 방지합니다. "
520
- "상세한 내용은 %s reCAPTCHA 웹사이트%s를 방문하세요."
521
-
522
- # @ wp-members
523
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
524
- msgid "reCAPTCHA Keys"
525
- msgstr "reCAPTCHA 키"
526
-
527
- # @ wp-members
528
- #: admin/tab-captcha.php:106
529
- #, php-format
530
- msgid ""
531
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
532
- "key. You can sign up for a %s free reCAPTCHA key%s"
533
- msgstr ""
534
- "reCAPTCHA는 API 키가 필요합니다. \"public\" 및 \"private\" 키로 구성됩니다. "
535
- "%s 무료 reCAPTCHA 키%s를 위해 가입하세요."
536
-
537
- # @ wp-members
538
- #: admin/tab-captcha.php:107
539
- msgid "Public Key"
540
- msgstr "Public 키"
541
-
542
- # @ wp-members
543
- #: admin/tab-captcha.php:108
544
- msgid "Private Key"
545
- msgstr "Private "
546
-
547
- # @ wp-members
548
- #: admin/tab-captcha.php:112
549
- msgid "Choose Theme"
550
- msgstr "테마 선택"
551
-
552
- # @ wp-members
553
- #: admin/tab-captcha.php:115
554
- msgid "Red"
555
- msgstr "Red"
556
-
557
- # @ wp-members
558
- #: admin/tab-captcha.php:116
559
- msgid "White"
560
- msgstr "White"
561
-
562
- # @ wp-members
563
- #: admin/tab-captcha.php:117
564
- msgid "Black Glass"
565
- msgstr "Black Glass"
566
-
567
- # @ wp-members
568
- #: admin/tab-captcha.php:118
569
- msgid "Clean"
570
- msgstr "Clean"
571
-
572
- #: admin/tab-captcha.php:132
573
- #, php-format
574
- msgid ""
575
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
576
- "key. You can sign up for a %s free reCAPTCHA key%s"
577
- msgstr ""
578
-
579
- #: admin/tab-captcha.php:133
580
- msgid "Site Key"
581
- msgstr ""
582
-
583
- #: admin/tab-captcha.php:134
584
- msgid "Secret Key"
585
- msgstr ""
586
-
587
- #: admin/tab-captcha.php:165
588
- msgid "Characters for image"
589
- msgstr "이미지에 대한 글자"
590
-
591
- #: admin/tab-captcha.php:169
592
- msgid "Number of characters"
593
- msgstr "글자 "
594
-
595
- #: admin/tab-captcha.php:173
596
- msgid "Image dimensions"
597
- msgstr "이미지 크기"
598
-
599
- #: admin/tab-captcha.php:174
600
- msgid "Width"
601
- msgstr ""
602
-
603
- #: admin/tab-captcha.php:174
604
- msgid "Height"
605
- msgstr ""
606
-
607
- #: admin/tab-captcha.php:177
608
- msgid "Font color of characters"
609
- msgstr "글자 폰트 색상"
610
-
611
- #: admin/tab-captcha.php:181
612
- msgid "Background color of image"
613
- msgstr "이미지 배경 색상"
614
-
615
- #: admin/tab-captcha.php:185
616
- msgid "Font size"
617
- msgstr "폰트 사이즈"
618
-
619
- #: admin/tab-captcha.php:189
620
- msgid "Width between characters"
621
- msgstr "글자간 폭"
622
-
623
- #: admin/tab-captcha.php:193
624
- msgid "Image type"
625
- msgstr "이미지 타입"
626
-
627
- #: admin/tab-captcha.php:207
628
- msgid ""
629
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
630
- "installed and activated."
631
- msgstr ""
632
- "Really Simple CAPTCHA를 사용하려면, Really Simple CAPTCHA 플러그인을 설치하"
633
- "고 활성화 해야 합니다."
634
-
635
- # @ wp-members
636
- #: admin/tab-captcha.php:231
637
- msgid "Update CAPTCHA Settings"
638
- msgstr "CAPTCHA 설정 업데이트"
639
-
640
- # @ wp-members
641
- #: admin/tab-captcha.php:301
642
- msgid "CAPTCHA was updated for WP-Members"
643
- msgstr "CAPTCHA가 WP-Members를 위해 업데이트 됐습니다"
644
-
645
- # @ wp-members
646
- #: admin/tab-dialogs.php:67
647
- msgid "Dialogs and Error Messages"
648
- msgstr "대화 및 에러 메시지"
649
-
650
- # @ wp-members
651
- #: admin/tab-dialogs.php:69
652
- #, php-format
653
- msgid ""
654
- "You can customize the text for dialogs and error messages. Simple HTML is "
655
- "allowed %s etc."
656
- msgstr ""
657
- "대화 에러 메시지 텍스트를 사용자 정의 할 수 있습니다. 간단한 HTML은 허용 "
658
- "됩니다 %s 등."
659
-
660
- # @ wp-members
661
- #: admin/tab-dialogs.php:80
662
- msgid "Terms of Service (TOS)"
663
- msgstr "이용약관"
664
-
665
- # @ wp-members
666
- #: admin/tab-dialogs.php:87
667
- msgid "Update Dialogs"
668
- msgstr "대화 업데이트"
669
-
670
- # @ wp-members
671
- #: admin/tab-dialogs.php:123
672
- msgid "WP-Members dialogs were updated"
673
- msgstr "WP-Members 대화가 업데이트 됐습니다"
674
-
675
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
676
- msgid "WP-Members Dropin settings were updated"
677
- msgstr ""
678
-
679
- #: admin/tab-dropins.php:204
680
- msgid "Manage Dropins"
681
- msgstr ""
682
-
683
- #: admin/tab-dropins.php:205
684
- msgid "Current dropin folder: "
685
- msgstr ""
686
-
687
- #: admin/tab-dropins.php:206
688
- msgid ""
689
- "You can change location of the dropin folder using the "
690
- "<code>wpmem_dropin_folder</code> filter."
691
- msgstr ""
692
-
693
- #: admin/tab-dropins.php:269
694
- msgid "Name"
695
- msgstr ""
696
-
697
- #: admin/tab-dropins.php:270
698
- msgid "File"
699
- msgstr ""
700
-
701
- #: admin/tab-dropins.php:271
702
- msgid "Version"
703
- msgstr ""
704
-
705
- #: admin/tab-dropins.php:272
706
- msgid "Description"
707
- msgstr ""
708
-
709
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
710
- msgid "Save Settings"
711
- msgstr ""
712
-
713
- # @ wp-members
714
- #: admin/tab-emails.php:58
715
- msgid "Email Messages"
716
- msgstr "이메일 메시지"
717
-
718
- # @ wp-members
719
- #: admin/tab-emails.php:61
720
- msgid "You can customize the content of the emails sent by the plugin."
721
- msgstr "플러그인에 의해 보내지는 이메일 콘텐츠를 사용자 정의 할 수 있습니다."
722
-
723
- # @ wp-members
724
- #: admin/tab-emails.php:63
725
- msgid "A list of shortcodes is available here."
726
- msgstr "단축코드 목록은 여기서 가능합니다."
727
-
728
- # @ wp-members
729
- #: admin/tab-emails.php:70
730
- msgid "Set a custom email address"
731
- msgstr "사용자 정의 이메일 주소 설정"
732
-
733
- # @ wp-members
734
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
735
- #: admin/tab-fields.php:179
736
- msgid "(optional)"
737
- msgstr "(선택적)"
738
-
739
- # @ wp-members
740
- #: admin/tab-emails.php:74
741
- msgid "Set a custom email name"
742
- msgstr "사용자 정의 이메일 이름 설정"
743
-
744
- # @ wp-members
745
- #: admin/tab-emails.php:85
746
- msgid "Email Signature"
747
- msgstr "이메일 서명"
748
-
749
- # @ wp-members
750
- #: admin/tab-emails.php:93
751
- msgid "Update Emails"
752
- msgstr "이메일 업데이트"
753
-
754
- # @ wp-members
755
- #: admin/tab-emails.php:161
756
- msgid "WP-Members emails were updated"
757
- msgstr "WP-Members 이메일이 업데이트 됐습니다"
758
-
759
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
760
- msgid "No fields selected for deletion"
761
- msgstr ""
762
-
763
- #: admin/tab-fields.php:115
764
- msgid "Are you sure you want to delete the following fields?"
765
- msgstr ""
766
-
767
- #: admin/tab-fields.php:141
768
- msgid "Fields deleted"
769
- msgstr ""
770
-
771
- #: admin/tab-fields.php:155
772
- msgid "Field Manager Documentation"
773
- msgstr ""
774
-
775
- # @ wp-members
776
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
777
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
778
- #: inc/deprecated.php:646 inc/wp-registration.php:57
779
- #: inc/wp-registration.php:231
780
- msgid "(required)"
781
- msgstr "(필수)"
782
-
783
- # @ wp-members
784
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
785
- msgid "Edit Field"
786
- msgstr "필드 편집"
787
-
788
- # @ wp-members
789
- #: admin/tab-fields.php:185
790
- msgid "Add a Field"
791
- msgstr "필드 추가"
792
-
793
- # @ wp-members
794
- #: admin/tab-fields.php:190
795
- msgid "Field Label"
796
- msgstr "필드 레이블"
797
-
798
- # @ wp-members
799
- #: admin/tab-fields.php:192
800
- msgid "The name of the field as it will be displayed to the user."
801
- msgstr "사용자에게 표시되는 필드 이름"
802
-
803
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
804
- msgid "Meta Key"
805
- msgstr ""
806
-
807
- # @ wp-members
808
- #: admin/tab-fields.php:201
809
- msgid ""
810
- "The database meta value for the field. It must be unique and contain no "
811
- "spaces (underscores are ok)."
812
- msgstr ""
813
- "필드의 데이터베이스 메타 값. 독특해야 하며 스페이스가 없어야 합니다 (밑줄은 "
814
- "가능)"
815
-
816
- # @ wp-members
817
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
818
- msgid "Field Type"
819
- msgstr "필드 타입"
820
-
821
- # @ wp-members
822
- #: admin/tab-fields.php:211
823
- msgid "text"
824
- msgstr "텍스트"
825
-
826
- #: admin/tab-fields.php:212
827
- msgid "email"
828
- msgstr ""
829
-
830
- # @ wp-members
831
- #: admin/tab-fields.php:213
832
- msgid "textarea"
833
- msgstr "textarea"
834
-
835
- # @ wp-members
836
- #: admin/tab-fields.php:214
837
- msgid "checkbox"
838
- msgstr "checkbox"
839
-
840
- #: admin/tab-fields.php:215
841
- msgid "multiple checkbox"
842
- msgstr ""
843
-
844
- #: admin/tab-fields.php:216
845
- msgid "select (dropdown)"
846
- msgstr ""
847
-
848
- #: admin/tab-fields.php:217
849
- msgid "multiple select"
850
- msgstr ""
851
-
852
- #: admin/tab-fields.php:218
853
- msgid "radio group"
854
- msgstr ""
855
-
856
- # @ wp-members
857
- #: admin/tab-fields.php:219
858
- msgid "password"
859
- msgstr "비밀번호"
860
-
861
- #: admin/tab-fields.php:220
862
- msgid "image"
863
- msgstr ""
864
-
865
- #: admin/tab-fields.php:221
866
- msgid "file"
867
- msgstr ""
868
-
869
- #: admin/tab-fields.php:222
870
- msgid "url"
871
- msgstr ""
872
-
873
- #: admin/tab-fields.php:223
874
- msgid "number"
875
- msgstr ""
876
-
877
- #: admin/tab-fields.php:224
878
- msgid "date"
879
- msgstr ""
880
-
881
- #: admin/tab-fields.php:225
882
- msgid "hidden"
883
- msgstr ""
884
-
885
- #: admin/tab-fields.php:227
886
- msgid "membership"
887
- msgstr ""
888
-
889
- # @ wp-members
890
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
891
- msgid "Display?"
892
- msgstr "표시?"
893
-
894
- #: admin/tab-fields.php:237
895
- msgid "This field is always displayed"
896
- msgstr ""
897
-
898
- # @ wp-members
899
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
900
- msgid "Required?"
901
- msgstr "필수?"
902
-
903
- #: admin/tab-fields.php:246
904
- msgid "This field is always required"
905
- msgstr ""
906
-
907
- #: admin/tab-fields.php:252
908
- msgid "Allow HTML?"
909
- msgstr ""
910
-
911
- #: admin/tab-fields.php:259
912
- msgid "Placeholder"
913
- msgstr ""
914
-
915
- #: admin/tab-fields.php:267
916
- msgid "Pattern"
917
- msgstr ""
918
-
919
- #: admin/tab-fields.php:273
920
- msgid "Title"
921
- msgstr ""
922
-
923
- #: admin/tab-fields.php:282
924
- msgid "Minimum Value"
925
- msgstr ""
926
-
927
- #: admin/tab-fields.php:286
928
- msgid "Maximum Value"
929
- msgstr ""
930
-
931
- #: admin/tab-fields.php:294
932
- msgid "Rows"
933
- msgstr ""
934
-
935
- #: admin/tab-fields.php:298
936
- msgid "Columns"
937
- msgstr ""
938
-
939
- #: admin/tab-fields.php:306
940
- msgid "Accepted file types:"
941
- msgstr ""
942
-
943
- #: admin/tab-fields.php:311
944
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
945
- msgstr ""
946
-
947
- # @ wp-members
948
- #: admin/tab-fields.php:318
949
- msgid "Checked by default?"
950
- msgstr "기본으로 체크?"
951
-
952
- # @ wp-members
953
- #: admin/tab-fields.php:322
954
- msgid "Stored value if checked:"
955
- msgstr "체크된 경우 저장된 값:"
956
-
957
- #: admin/tab-fields.php:343
958
- msgid "Stored values delimiter:"
959
- msgstr ""
960
-
961
- #: admin/tab-fields.php:352
962
- msgid "Values (Displayed|Stored):"
963
- msgstr ""
964
-
965
- # @ wp-members
966
- #: admin/tab-fields.php:377
967
- msgid "Options should be Option Name|option_value,"
968
- msgstr "옵션은 Option Name|option_value이어야 합니다,"
969
-
970
- # @ wp-members
971
- #: admin/tab-fields.php:381
972
- msgid "Visit plugin site for more information"
973
- msgstr "더 많은 정보는 플러그인 사이트를 방문하세요"
974
-
975
- #: admin/tab-fields.php:388
976
- msgid "Value"
977
- msgstr ""
978
-
979
- # @ wp-members
980
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
981
- msgid "Add Field"
982
- msgstr "필드 추가"
983
-
984
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
985
- msgid "Return to Fields Table"
986
- msgstr ""
987
-
988
- #: admin/tab-fields.php:449
989
- msgid "Drag and drop to reorder fields"
990
- msgstr ""
991
-
992
- # @ wp-members
993
- #: admin/tab-fields.php:455
994
- msgid "Registration Date"
995
- msgstr "회원가입 일자"
996
-
997
- # @ default
998
- #: admin/tab-fields.php:456
999
- msgid "Active"
1000
- msgstr "활성"
1001
-
1002
- # @ wp-members
1003
- #: admin/tab-fields.php:457
1004
- msgid "Registration IP"
1005
- msgstr "회원가입 IP"
1006
-
1007
- #: admin/tab-fields.php:458
1008
- msgid "Subscription Type"
1009
- msgstr ""
1010
-
1011
- #: admin/tab-fields.php:460 admin/user-export.php:58
1012
- msgid "User ID"
1013
- msgstr ""
1014
-
1015
- # @ wp-members
1016
- #: admin/tab-fields.php:493
1017
- msgid "Manage Fields"
1018
- msgstr "필드 관리"
1019
-
1020
- #: admin/tab-fields.php:532
1021
- msgid "delete"
1022
- msgstr ""
1023
-
1024
- #: admin/tab-fields.php:546
1025
- msgid "Display Label"
1026
- msgstr ""
1027
-
1028
- #: admin/tab-fields.php:552
1029
- msgid "Users Screen"
1030
- msgstr "사용자 화면"
1031
-
1032
- #: admin/tab-fields.php:553
1033
- msgid "Users Search"
1034
- msgstr ""
1035
-
1036
- #: admin/tab-fields.php:555
1037
- msgid "Sort"
1038
- msgstr ""
1039
-
1040
- #: admin/tab-fields.php:596
1041
- msgid "Delete Selected"
1042
- msgstr ""
1043
-
1044
- # @ wp-members
1045
- #: admin/tab-fields.php:738
1046
- msgid "WP-Members fields were updated"
1047
- msgstr "WP-Members 필드가 업데이트 됐습니다"
1048
-
1049
- #: admin/tab-fields.php:760
1050
- msgid "Field Label is required. Nothing was updated."
1051
- msgstr ""
1052
-
1053
- #: admin/tab-fields.php:761
1054
- msgid "Meta Key is required. Nothing was updated."
1055
- msgstr ""
1056
-
1057
- #: admin/tab-fields.php:763
1058
- msgid "Meta Key must contain only letters, numbers, and underscores"
1059
- msgstr ""
1060
-
1061
- #: admin/tab-fields.php:770
1062
- msgid "A field with that meta key already exists"
1063
- msgstr ""
1064
-
1065
- #: admin/tab-fields.php:775
1066
- #, php-format
1067
- msgid ""
1068
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1069
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1070
- "Field was not added."
1071
- msgstr ""
1072
-
1073
- # @ wp-members
1074
- #: admin/tab-fields.php:816
1075
- msgid "Checked value is required for checkboxes. Nothing was updated."
1076
- msgstr "Checked 값은 체크박스에 필수입니다. 아무것도 업데이트 되지 않았습니다."
1077
-
1078
- #: admin/tab-fields.php:847
1079
- msgid "A value is required for hidden fields. Nothing was updated."
1080
- msgstr ""
1081
-
1082
- #: admin/tab-fields.php:854
1083
- #, php-format
1084
- msgid "%s was added"
1085
- msgstr ""
1086
-
1087
- #: admin/tab-fields.php:867
1088
- #, php-format
1089
- msgid "%s was updated"
1090
- msgstr ""
1091
-
1092
- #: admin/tab-fields.php:909
1093
- msgid "Form field order updated."
1094
- msgstr ""
1095
-
1096
- #: admin/tab-options.php:60
1097
- #, php-format
1098
- msgid "%sChange%s or %sFilter%s this address"
1099
- msgstr ""
1100
-
1101
- #: admin/tab-options.php:61
1102
- #, php-format
1103
- msgid "See the %sUsers Guide on plugin options%s."
1104
- msgstr ""
1105
-
1106
- #: admin/tab-options.php:66
1107
- msgid "Posts"
1108
- msgstr ""
1109
-
1110
- #: admin/tab-options.php:67 admin/tab-options.php:215
1111
- msgid "Pages"
1112
- msgstr ""
1113
-
1114
- # @ wp-members
1115
- #: admin/tab-options.php:94
1116
- msgid "Manage Options"
1117
- msgstr "옵션 관리"
1118
-
1119
- #: admin/tab-options.php:98
1120
- msgid "Content"
1121
- msgstr ""
1122
-
1123
- #: admin/tab-options.php:109
1124
- msgid "Content Blocking"
1125
- msgstr ""
1126
-
1127
- #: admin/tab-options.php:113
1128
- msgid "Do not block"
1129
- msgstr ""
1130
-
1131
- #: admin/tab-options.php:127
1132
- msgid "Show Excerpts"
1133
- msgstr ""
1134
-
1135
- #: admin/tab-options.php:128
1136
- msgid "Show Login Form"
1137
- msgstr ""
1138
-
1139
- #: admin/tab-options.php:129
1140
- msgid "Show Registration Form"
1141
- msgstr ""
1142
-
1143
- # @ wp-members
1144
- #: admin/tab-options.php:130
1145
- msgid "Auto Excerpt:"
1146
- msgstr "자동 요약:"
1147
-
1148
- # @ wp-members
1149
- #: admin/tab-options.php:152
1150
- msgid "Number of words in excerpt:"
1151
- msgstr "요약에서 단어 수:"
1152
-
1153
- #: admin/tab-options.php:153
1154
- msgid "Custom read more link (optional):"
1155
- msgstr ""
1156
-
1157
- # @ wp-members
1158
- #: admin/tab-options.php:167
1159
- msgid "Time-based expiration"
1160
- msgstr "시간 기준 만료"
1161
-
1162
- # @ wp-members
1163
- #: admin/tab-options.php:167
1164
- msgid "Allows for access to expire"
1165
- msgstr "만료에 접근 허용"
1166
-
1167
- # @ wp-members
1168
- #: admin/tab-options.php:168
1169
- msgid "Trial period"
1170
- msgstr "시험 사용 기간"
1171
-
1172
- # @ wp-members
1173
- #: admin/tab-options.php:168
1174
- msgid "Allows for a trial period"
1175
- msgstr "시험사용 기간 허요"
1176
-
1177
- #: admin/tab-options.php:170
1178
- msgid "Subscription Settings"
1179
- msgstr ""
1180
-
1181
- #: admin/tab-options.php:180
1182
- msgid "Other Settings"
1183
- msgstr ""
1184
-
1185
- #: admin/tab-options.php:186
1186
- msgid "Enable Products"
1187
- msgstr ""
1188
-
1189
- #: admin/tab-options.php:186
1190
- msgid "Enables creation of different membership products"
1191
- msgstr ""
1192
-
1193
- #: admin/tab-options.php:187
1194
- msgid "Clone menus"
1195
- msgstr ""
1196
-
1197
- #: admin/tab-options.php:187
1198
- msgid "Enables logged in menus"
1199
- msgstr ""
1200
-
1201
- # @ wp-members
1202
- #: admin/tab-options.php:188
1203
- msgid "Notify admin"
1204
- msgstr "관리자에게 알림"
1205
-
1206
- # @ wp-members
1207
- #: admin/tab-options.php:188
1208
- #, php-format
1209
- msgid "Notify %s for each new registration? %s"
1210
- msgstr "새로운 새로운 회원가입을 %s에 알림? %s"
1211
-
1212
- # @ wp-members
1213
- #: admin/tab-options.php:189
1214
- msgid "Moderate registration"
1215
- msgstr "회원가입 검토"
1216
-
1217
- # @ wp-members
1218
- #: admin/tab-options.php:189
1219
- msgid "Holds new registrations for admin approval"
1220
- msgstr "새 회원가입은 관리자 승인 필요"
1221
-
1222
- # @ wp-members
1223
- #: admin/tab-options.php:190
1224
- msgid "Ignore warning messages"
1225
- msgstr "경고 메시지 무시하기"
1226
-
1227
- # @ wp-members
1228
- #: admin/tab-options.php:190
1229
- msgid "Ignores WP-Members warning messages in the admin panel"
1230
- msgstr "관리자 화면에서 WP-Members 경고 메시지 무시하기"
1231
-
1232
- #: admin/tab-options.php:201
1233
- msgid "Attribution"
1234
- msgstr "기여"
1235
-
1236
- #: admin/tab-options.php:203
1237
- msgid ""
1238
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1239
- msgstr ""
1240
- "기여에 대해 감사드립니다! 회원가입 폼에 \"powered by\" 링크를 표시해주세요."
1241
-
1242
- # @ wp-members
1243
- #: admin/tab-options.php:206
1244
- msgid "Enable CAPTCHA"
1245
- msgstr "CAPTCHA 활성화"
1246
-
1247
- #: admin/tab-options.php:211
1248
- msgid "reCAPTCHA"
1249
- msgstr ""
1250
-
1251
- #: admin/tab-options.php:212
1252
- msgid "Really Simple CAPTCHA"
1253
- msgstr ""
1254
-
1255
- #: admin/tab-options.php:219
1256
- msgid "Login Page:"
1257
- msgstr ""
1258
-
1259
- #: admin/tab-options.php:222
1260
- msgid "Specify a login page (optional)"
1261
- msgstr ""
1262
-
1263
- # @ wp-members
1264
- #: admin/tab-options.php:231
1265
- msgid "Register Page:"
1266
- msgstr "회원가입 페이지:"
1267
-
1268
- #: admin/tab-options.php:234
1269
- msgid "For creating a register link in the login form"
1270
- msgstr "로그인 폼에 회원가입 링크 생성"
1271
-
1272
- #: admin/tab-options.php:243
1273
- msgid "User Profile Page:"
1274
- msgstr "사용자 프로필 페이지:"
1275
-
1276
- #: admin/tab-options.php:246
1277
- msgid "For creating a forgot password link in the login form"
1278
- msgstr "로그인 폼에서 분실 비밀번호 링크 생성"
1279
-
1280
- #: admin/tab-options.php:252 admin/tab-options.php:254
1281
- msgid "Stylesheet"
1282
- msgstr ""
1283
-
1284
- # @ wp-members
1285
- #: admin/tab-options.php:263
1286
- msgid "Custom Stylesheet:"
1287
- msgstr "사용자 정의 스타일시트:"
1288
-
1289
- # @ wp-members
1290
- #: admin/tab-options.php:268 admin/tab-options.php:295
1291
- msgid "Update Settings"
1292
- msgstr "설정 업데이트"
1293
-
1294
- #: admin/tab-options.php:276
1295
- msgid "Custom Post Types"
1296
- msgstr ""
1297
-
1298
- #: admin/tab-options.php:282
1299
- msgid "Add to WP-Members Settings"
1300
- msgstr ""
1301
-
1302
- #: admin/tab-options.php:312
1303
- msgid "Close"
1304
- msgstr ""
1305
-
1306
- #: admin/tab-options.php:330 admin/tab-options.php:331
1307
- msgid "WP-Members Settings"
1308
- msgstr ""
1309
-
1310
- #: admin/tab-options.php:332
1311
- msgid ""
1312
- "The following is your WP-Members settings information if needed for support."
1313
- msgstr ""
1314
-
1315
- #: admin/tab-options.php:359
1316
- msgid "Click to Copy"
1317
- msgstr ""
1318
-
1319
- #: admin/tab-options.php:435
1320
- msgid "Custom Post Type settings were updated"
1321
- msgstr ""
1322
-
1323
- # @ wp-members
1324
- #: admin/tab-options.php:551
1325
- msgid "WP-Members settings were updated"
1326
- msgstr "WP-Members 설정이 업데이트 됐습니다"
1327
-
1328
- #: admin/tab-options.php:621 admin/tab-options.php:651
1329
- msgid "USE CUSTOM URL BELOW"
1330
- msgstr "아래에서 사용자 정의 URL 사용"
1331
-
1332
- #: admin/tab-options.php:640
1333
- msgid "Select a page"
1334
- msgstr "페이지 선택"
1335
-
1336
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1337
- #: inc/class-wp-members.php:1255
1338
- msgid "Username"
1339
- msgstr ""
1340
-
1341
- # @ wp-members
1342
- #: admin/user-export.php:65
1343
- msgid "Activated?"
1344
- msgstr "활성화?"
1345
-
1346
- # @ wp-members
1347
- #: admin/user-export.php:68 admin/users.php:317
1348
- msgid "Subscription"
1349
- msgstr "구독"
1350
-
1351
- # @ wp-members
1352
- #: admin/user-export.php:71
1353
- msgid "Registered"
1354
- msgstr "등록됨"
1355
-
1356
- # @ wp-members
1357
- #: admin/user-export.php:72
1358
- msgid "IP"
1359
- msgstr "IP"
1360
-
1361
- #: admin/user-export.php:135
1362
- msgid "Yes"
1363
- msgstr ""
1364
-
1365
- #: admin/user-export.php:135 admin/users.php:399
1366
- msgid "No"
1367
- msgstr ""
1368
-
1369
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1370
- msgid "Activate"
1371
- msgstr ""
1372
-
1373
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1374
- msgid "Deactivate"
1375
- msgstr ""
1376
-
1377
- # @ default
1378
- #: admin/users.php:52 admin/users.php:57
1379
- msgid "Export"
1380
- msgstr "내보내기"
1381
-
1382
- #: admin/users.php:58 admin/users.php:109
1383
- msgid "Export All Users"
1384
- msgstr "모든 사용자 내보내기"
1385
-
1386
- #: admin/users.php:158
1387
- #, php-format
1388
- msgid "%s users activated"
1389
- msgstr ""
1390
-
1391
- #: admin/users.php:158
1392
- #, php-format
1393
- msgid "%s users deactivated"
1394
- msgstr ""
1395
-
1396
- #: admin/users.php:161
1397
- msgid "No users selected"
1398
- msgstr ""
1399
-
1400
- #: admin/users.php:181
1401
- #, php-format
1402
- msgid "%s activated"
1403
- msgstr ""
1404
-
1405
- #: admin/users.php:186
1406
- #, php-format
1407
- msgid "%s deactivated"
1408
- msgstr ""
1409
-
1410
- #: admin/users.php:190
1411
- msgid "That user is already active"
1412
- msgstr ""
1413
-
1414
- #: admin/users.php:315
1415
- msgid "Pending"
1416
- msgstr ""
1417
-
1418
- #: admin/users.php:316
1419
- msgid "Trial"
1420
- msgstr ""
1421
-
1422
- #: admin/users.php:318
1423
- msgid "Expired"
1424
- msgstr ""
1425
-
1426
- #: admin/users.php:321
1427
- msgid "Not Activated"
1428
- msgstr ""
1429
-
1430
- #: admin/users.php:322
1431
- msgid "Deactivated"
1432
- msgstr ""
1433
-
1434
- #: admin/users.php:324
1435
- msgid "Not Exported"
1436
- msgstr ""
1437
-
1438
- #: inc/api.php:304 inc/class-wp-members.php:1296
1439
- msgid "log in"
1440
- msgstr "로그인"
1441
-
1442
- #: inc/api.php:305
1443
- msgid "log out"
1444
- msgstr "로그아웃"
1445
-
1446
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1447
- #: inc/wp-registration.php:77
1448
- #, php-format
1449
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1450
- msgstr ""
1451
-
1452
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1453
- #: inc/wp-registration.php:78
1454
- msgid "TOS"
1455
- msgstr "이용약관"
1456
-
1457
- # @ wp-members
1458
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1459
- #: wp-members-tos.php:23
1460
- msgid "Terms of Service"
1461
- msgstr "이용약관"
1462
-
1463
- #: inc/class-wp-members-products.php:212
1464
- msgid "Product"
1465
- msgstr ""
1466
-
1467
- #: inc/class-wp-members-products.php:213
1468
- msgid "Products"
1469
- msgstr ""
1470
-
1471
- #: inc/class-wp-members-products.php:218
1472
- msgid "Memberships"
1473
- msgstr ""
1474
-
1475
- #: inc/class-wp-members-products.php:219
1476
- #, php-format
1477
- msgid "All %s"
1478
- msgstr ""
1479
-
1480
- #: inc/class-wp-members-products.php:220
1481
- #, php-format
1482
- msgid "Add New %s"
1483
- msgstr ""
1484
-
1485
- #: inc/class-wp-members-products.php:221
1486
- msgid "Add New"
1487
- msgstr ""
1488
-
1489
- #: inc/class-wp-members-products.php:222
1490
- #, php-format
1491
- msgid "New %s"
1492
- msgstr ""
1493
-
1494
- #: inc/class-wp-members-products.php:223
1495
- #, php-format
1496
- msgid "Edit %s"
1497
- msgstr ""
1498
-
1499
- #: inc/class-wp-members-products.php:224
1500
- #, php-format
1501
- msgid "Update %s"
1502
- msgstr ""
1503
-
1504
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1505
- #, php-format
1506
- msgid "View %s"
1507
- msgstr ""
1508
-
1509
- #: inc/class-wp-members-products.php:227
1510
- #, php-format
1511
- msgid "Search %s"
1512
- msgstr ""
1513
-
1514
- #: inc/class-wp-members-products.php:228
1515
- msgid "Not found"
1516
- msgstr ""
1517
-
1518
- #: inc/class-wp-members-products.php:229
1519
- msgid "Not found in Trash"
1520
- msgstr ""
1521
-
1522
- #: inc/class-wp-members-products.php:230
1523
- msgid "Insert into item"
1524
- msgstr ""
1525
-
1526
- #: inc/class-wp-members-products.php:231
1527
- #, php-format
1528
- msgid "Save %s Details"
1529
- msgstr ""
1530
-
1531
- #: inc/class-wp-members-products.php:234
1532
- msgid "Membership Product"
1533
- msgstr ""
1534
-
1535
- #: inc/class-wp-members-products.php:235
1536
- msgid "WP-Members Membership Products"
1537
- msgstr ""
1538
-
1539
- #: inc/class-wp-members-shortcodes.php:135
1540
- msgid ""
1541
- "This is a generic message to display the form message dialog in the "
1542
- "Customizer."
1543
- msgstr ""
1544
-
1545
- # @ default
1546
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1547
- #: inc/deprecated.php:180
1548
- msgid "There was an error with the CAPTCHA form."
1549
- msgstr "CAPTCHA 폼에 에러가 있습니다."
1550
-
1551
- #: inc/class-wp-members-shortcodes.php:676
1552
- msgid "Click here to log out."
1553
- msgstr ""
1554
-
1555
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1556
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1557
- msgid "Register"
1558
- msgstr "회원가입"
1559
-
1560
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1561
- msgid "Log In"
1562
- msgstr "로그인"
1563
-
1564
- # @ wp-members
1565
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1566
- msgid "WP-Members Additional Fields"
1567
- msgstr "WP-Members 추가 필드"
1568
-
1569
- # @ wp-members
1570
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1571
- msgid "Additional Information"
1572
- msgstr "추가 정보"
1573
-
1574
- # @ wp-members
1575
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1576
- msgid "Activate this user?"
1577
- msgstr "이 사용자 활성화?"
1578
-
1579
- # @ wp-members
1580
- #: inc/class-wp-members-user-profile.php:453
1581
- msgid "Reactivate this user?"
1582
- msgstr "이 사용자 재활성화?"
1583
-
1584
- # @ wp-members
1585
- #: inc/class-wp-members-user-profile.php:458
1586
- msgid "Deactivate this user?"
1587
- msgstr "이 사용자 비활성화?"
1588
-
1589
- # @ wp-members
1590
- #: inc/class-wp-members-user-profile.php:507
1591
- msgid "IP @ registration"
1592
- msgstr "IP @ registration"
1593
-
1594
- #: inc/class-wp-members-user-profile.php:526
1595
- msgid "Product Access"
1596
- msgstr ""
1597
-
1598
- #: inc/class-wp-members-user-profile.php:534
1599
- msgid "Enable"
1600
- msgstr ""
1601
-
1602
- #: inc/class-wp-members-user-profile.php:535
1603
- msgid "Disable"
1604
- msgstr ""
1605
-
1606
- #: inc/class-wp-members-user-profile.php:541
1607
- msgid "Expires:"
1608
- msgstr ""
1609
-
1610
- #: inc/class-wp-members-user-profile.php:543
1611
- msgid "Enabled"
1612
- msgstr ""
1613
-
1614
- # @ wp-members
1615
- #: inc/class-wp-members-user.php:712
1616
- msgid "<strong>ERROR</strong>: User has not been activated."
1617
- msgstr "<strong>에러</strong>: 사용자가 활성화 되지 않았습니다."
1618
-
1619
- #: inc/class-wp-members-widget.php:24
1620
- msgid "Displays the WP-Members sidebar login."
1621
- msgstr "WP-Members 사이드바 로그인 표시하기."
1622
-
1623
- # @ wp-members
1624
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1625
- msgid "Login Status"
1626
- msgstr "로그인 상태"
1627
-
1628
- # @ wp-members
1629
- #: inc/class-wp-members-widget.php:46
1630
- msgid "Title:"
1631
- msgstr "제목:"
1632
-
1633
- #: inc/class-wp-members-widget.php:50
1634
- msgid "Redirect to (optional):"
1635
- msgstr ""
1636
-
1637
- #: inc/class-wp-members.php:1183
1638
- msgid "First Name"
1639
- msgstr "이름"
1640
-
1641
- # @ wp-members
1642
- #: inc/class-wp-members.php:1184
1643
- msgid "Last Name"
1644
- msgstr "성"
1645
-
1646
- #: inc/class-wp-members.php:1185
1647
- msgid "Address 1"
1648
- msgstr "주소1"
1649
-
1650
- #: inc/class-wp-members.php:1186
1651
- msgid "Address 2"
1652
- msgstr "주소2"
1653
-
1654
- #: inc/class-wp-members.php:1187
1655
- msgid "City"
1656
- msgstr "시"
1657
-
1658
- #: inc/class-wp-members.php:1188
1659
- msgid "State"
1660
- msgstr ""
1661
-
1662
- #: inc/class-wp-members.php:1189
1663
- msgid "Zip"
1664
- msgstr "우편번호"
1665
-
1666
- #: inc/class-wp-members.php:1190
1667
- msgid "Country"
1668
- msgstr "국가"
1669
-
1670
- #: inc/class-wp-members.php:1191
1671
- msgid "Day Phone"
1672
- msgstr "전화번호"
1673
-
1674
- #: inc/class-wp-members.php:1192 inc/class-wp-members.php:1233
1675
- msgid "Email"
1676
- msgstr ""
1677
-
1678
- #: inc/class-wp-members.php:1193
1679
- msgid "Confirm Email"
1680
- msgstr "이메일 확인"
1681
-
1682
- #: inc/class-wp-members.php:1194
1683
- msgid "Website"
1684
- msgstr "웹사이트"
1685
-
1686
- #: inc/class-wp-members.php:1195
1687
- msgid "Biographical Info"
1688
- msgstr "자기 소개"
1689
-
1690
- #: inc/class-wp-members.php:1196 inc/class-wp-members.php:1216
1691
- #: inc/class-wp-members.php:1295
1692
- msgid "Password"
1693
- msgstr "비밀번호"
1694
-
1695
- #: inc/class-wp-members.php:1197
1696
- msgid "Confirm Password"
1697
- msgstr "비밀번호 확인"
1698
-
1699
- # @ wp-members
1700
- #: inc/class-wp-members.php:1208
1701
- msgid "You are not logged in."
1702
- msgstr "로그인하지 않았습니다."
1703
-
1704
- # @ wp-members
1705
- #: inc/class-wp-members.php:1214
1706
- msgid "Existing Users Log In"
1707
- msgstr "기존 사용자 로그인"
1708
-
1709
- #: inc/class-wp-members.php:1215 inc/class-wp-members.php:1294
1710
- msgid "Username or Email"
1711
- msgstr "아이디 또는 이메일 "
1712
-
1713
- #: inc/class-wp-members.php:1218
1714
- msgid "Remember Me"
1715
- msgstr "기억하기"
1716
-
1717
- # @ wp-members
1718
- #: inc/class-wp-members.php:1219
1719
- msgid "Forgot password?"
1720
- msgstr "비밀번호 분실"
1721
-
1722
- # @ wp-members
1723
- #: inc/class-wp-members.php:1220
1724
- msgid "Click here to reset"
1725
- msgstr "초기화"
1726
-
1727
- # @ wp-members
1728
- #: inc/class-wp-members.php:1221
1729
- msgid "New User?"
1730
- msgstr "신규 가입"
1731
-
1732
- # @ wp-members
1733
- #: inc/class-wp-members.php:1222
1734
- msgid "Click here to register"
1735
- msgstr "회원가입"
1736
-
1737
- # @ wp-members
1738
- #: inc/class-wp-members.php:1225 inc/class-wp-members.php:1279
1739
- msgid "Change Password"
1740
- msgstr "비밀번호 변경"
1741
-
1742
- #: inc/class-wp-members.php:1226
1743
- msgid "New password"
1744
- msgstr ""
1745
-
1746
- #: inc/class-wp-members.php:1227
1747
- msgid "Confirm new password"
1748
- msgstr "새 비밀번호 확인"
1749
-
1750
- # @ wp-members
1751
- #: inc/class-wp-members.php:1228
1752
- msgid "Update Password"
1753
- msgstr "비밀번호 업데이트"
1754
-
1755
- # @ wp-members
1756
- #: inc/class-wp-members.php:1231
1757
- msgid "Reset Forgotten Password"
1758
- msgstr "분실 비밀번호 초기화"
1759
-
1760
- #: inc/class-wp-members.php:1234
1761
- msgid "Reset Password"
1762
- msgstr ""
1763
-
1764
- #: inc/class-wp-members.php:1235
1765
- msgid "Forgot username?"
1766
- msgstr "사용자 이름을 잊으셨나요?"
1767
-
1768
- #: inc/class-wp-members.php:1236
1769
- msgid "Click here"
1770
- msgstr ""
1771
-
1772
- #: inc/class-wp-members.php:1239 inc/class-wp-members.php:1241
1773
- msgid "Retrieve username"
1774
- msgstr ""
1775
-
1776
- #: inc/class-wp-members.php:1240
1777
- msgid "Email Address"
1778
- msgstr ""
1779
-
1780
- # @ wp-members
1781
- #: inc/class-wp-members.php:1244
1782
- msgid "New User Registration"
1783
- msgstr "새로운 사용자 등록"
1784
-
1785
- # @ wp-members
1786
- #: inc/class-wp-members.php:1245
1787
- msgid "Choose a Username"
1788
- msgstr "아이디"
1789
-
1790
- #: inc/class-wp-members.php:1246
1791
- msgid "Input the code:"
1792
- msgstr "코드 삽입:"
1793
-
1794
- # @ wp-members
1795
- #: inc/class-wp-members.php:1248
1796
- msgid "Reset Form"
1797
- msgstr "폼 초기화"
1798
-
1799
- # @ wp-members
1800
- #: inc/class-wp-members.php:1251
1801
- msgid "Required field"
1802
- msgstr "필수란"
1803
-
1804
- # @ wp-members
1805
- #: inc/class-wp-members.php:1254 inc/deprecated.php:226
1806
- msgid "Edit Your Information"
1807
- msgstr "정보 변경하기"
1808
-
1809
- # @ wp-members
1810
- #: inc/class-wp-members.php:1256
1811
- msgid "Update Profile"
1812
- msgstr "프로필 업데이트"
1813
-
1814
- #: inc/class-wp-members.php:1257
1815
- msgid "Update this file"
1816
- msgstr ""
1817
-
1818
- # @ wp-members
1819
- #: inc/class-wp-members.php:1260
1820
- msgid "Login Failed!"
1821
- msgstr "로그인 실패"
1822
-
1823
- # @ wp-members
1824
- #: inc/class-wp-members.php:1261
1825
- msgid "You entered an invalid username or password."
1826
- msgstr "유효하지 않은 아이디 또는 비밀번호입니다."
1827
-
1828
- # @ wp-members
1829
- #: inc/class-wp-members.php:1262
1830
- msgid "Click here to continue."
1831
- msgstr "계속하기"
1832
-
1833
- # @ wp-members
1834
- #: inc/class-wp-members.php:1263
1835
- msgid "Password fields cannot be empty"
1836
- msgstr "비밀번호는 필수입니다."
1837
-
1838
- #: inc/class-wp-members.php:1264
1839
- msgid "Sorry, that email address was not found."
1840
- msgstr ""
1841
-
1842
- #: inc/class-wp-members.php:1265
1843
- #, php-format
1844
- msgid "An email was sent to %s with your username."
1845
- msgstr ""
1846
-
1847
- # @ wp-members
1848
- #: inc/class-wp-members.php:1266
1849
- #, php-format
1850
- msgid "Sorry, %s is a required field."
1851
- msgstr "죄송합니다. %s는 필수란입니다."
1852
-
1853
- # @ wp-members
1854
- #: inc/class-wp-members.php:1267
1855
- msgid "You must enter a valid email address."
1856
- msgstr "유효한 이메일 주소를 입력해야 합니다."
1857
-
1858
- # @ wp-members
1859
- #: inc/class-wp-members.php:1268
1860
- msgid "The username cannot include non-alphanumeric characters."
1861
- msgstr "아이디는 알파벳이나 숫자만 사용합니다."
1862
-
1863
- # @ wp-members
1864
- #: inc/class-wp-members.php:1269
1865
- msgid "Sorry, username is a required field"
1866
- msgstr "죄송합니다. 아이디는 필수란입니다."
1867
-
1868
- # @ wp-members
1869
- #: inc/class-wp-members.php:1270
1870
- msgid "Passwords did not match."
1871
- msgstr "비밀번호가 일치하지 않습니다"
1872
-
1873
- # @ wp-members
1874
- #: inc/class-wp-members.php:1271
1875
- msgid "Emails did not match."
1876
- msgstr "이메일이 일치하지 않습니다"
1877
-
1878
- # @ wp-members
1879
- #: inc/class-wp-members.php:1272
1880
- msgid "You must complete the CAPTCHA form."
1881
- msgstr "캡챠 폼을 완성해야 합니다."
1882
-
1883
- #: inc/class-wp-members.php:1273
1884
- msgid "CAPTCHA was not valid."
1885
- msgstr ""
1886
-
1887
- # @ default
1888
- #: inc/class-wp-members.php:1274 inc/register.php:52
1889
- msgid "There was an error processing the form."
1890
- msgstr "폼 처리 중 에러가 있습니다."
1891
-
1892
- # @ wp-members
1893
- #: inc/class-wp-members.php:1278
1894
- msgid "Edit My Information"
1895
- msgstr "내 정보 수정"
1896
-
1897
- # @ wp-members
1898
- #: inc/class-wp-members.php:1280 inc/class-wp-members.php:1283
1899
- #: inc/class-wp-members.php:1285 inc/class-wp-members.php:1290
1900
- #, php-format
1901
- msgid "You are logged in as %s"
1902
- msgstr "%s으로 로그인 됨"
1903
-
1904
- # @ wp-members
1905
- #: inc/class-wp-members.php:1281
1906
- msgid "Click to log out."
1907
- msgstr "로그아웃 하려면 클릭"
1908
-
1909
- # @ wp-members
1910
- #: inc/class-wp-members.php:1282
1911
- msgid "Begin using the site."
1912
- msgstr "사이트 사용하기"
1913
-
1914
- # @ wp-members
1915
- #: inc/class-wp-members.php:1284
1916
- msgid "Click to log out"
1917
- msgstr "로그아웃 하려면 클릭"
1918
-
1919
- # @ wp-members
1920
- #: inc/class-wp-members.php:1286
1921
- msgid "click to log out"
1922
- msgstr "로그아웃 하려면 클릭"
1923
-
1924
- #: inc/class-wp-members.php:1287
1925
- msgid "Log Out"
1926
- msgstr "로그아웃"
1927
-
1928
- # @ wp-members
1929
- #: inc/class-wp-members.php:1291
1930
- msgid "click here to log out"
1931
- msgstr "로그아웃 하려면 클릭"
1932
-
1933
- # @ wp-members
1934
- #: inc/class-wp-members.php:1292
1935
- msgid "Login Failed!<br />You entered an invalid username or password."
1936
- msgstr "로그인 실패!<br />유효하지 않은 아이디 또는 비밀번호를 입력했습니다."
1937
-
1938
- # @ wp-members
1939
- #: inc/class-wp-members.php:1297
1940
- msgid "Forgot?"
1941
- msgstr "비밀번호 분실"
1942
-
1943
- #: inc/class-wp-members.php:1301
1944
- msgid ""
1945
- "This content is restricted to site members. If you are an existing user, "
1946
- "please log in. New users may register below."
1947
- msgstr ""
1948
- "이 콘텐츠는 사이트 회원 전용입니다. 기존의 사용자라면 로그인 하세요. 새 사용"
1949
- "자는 아래에서 회원가입 할 수 있습니다."
1950
-
1951
- #: inc/class-wp-members.php:1302
1952
- msgid ""
1953
- "Congratulations! Your registration was successful.<br /><br />You may now "
1954
- "log in using the password that was emailed to you."
1955
- msgstr ""
1956
- "축하합니다! 회원가입이 성공했습니다.<br /><br />이메일로 보낸 비밀번호를 사용"
1957
- "해서 로그인 할 수 있습니다."
1958
-
1959
- #: inc/class-wp-members.php:1305
1960
- msgid "Sorry, that username is taken, please try another."
1961
- msgstr "죄송합니다. 해당 아이디는 사용 중입니다. 다른 것으로 해주세요."
1962
-
1963
- #: inc/class-wp-members.php:1306
1964
- msgid ""
1965
- "Sorry, that email address already has an account.<br />Please try another."
1966
- msgstr ""
1967
- "죄송합니다. 해당 이메일 주소는 이미 사용 중입니다. <br />다른 것으로 해주세"
1968
- "요."
1969
-
1970
- # @ wp-members
1971
- #: inc/class-wp-members.php:1307
1972
- msgid "Your information was updated!"
1973
- msgstr "회원 정보가 업데이트 됐습니다!"
1974
-
1975
- # @ wp-members
1976
- #: inc/class-wp-members.php:1310
1977
- msgid "Passwords did not match.<br /><br />Please try again."
1978
- msgstr "비밀번호가 일치하지 않습니다. <br /><br />다시 해주세요."
1979
-
1980
- #: inc/class-wp-members.php:1311
1981
- msgid "Password successfully changed!"
1982
- msgstr ""
1983
-
1984
- # @ wp-members
1985
- #: inc/class-wp-members.php:1312
1986
- msgid "Either the username or email address do not exist in our records."
1987
- msgstr "사용자명 또는 이메일 주소가 데이터베이스에 존재하지 않습니다."
1988
-
1989
- #: inc/class-wp-members.php:1313
1990
- msgid ""
1991
- "Password successfully reset!<br /><br />An email containing a new password "
1992
- "has been sent to the email address on file for your account."
1993
- msgstr ""
1994
-
1995
- #: inc/class-wp-members.php:1315
1996
- msgid "Sorry, you do not have access to this content."
1997
- msgstr ""
1998
-
1999
- #: inc/class-wp-members.php:1433
2000
- msgid "Show forms as logged out"
2001
- msgstr ""
2002
-
2003
- #: inc/class-wp-members.php:1442
2004
- msgid "Show form message dialog"
2005
- msgstr ""
2006
-
2007
- #: inc/class-wp-members.php:1538
2008
- msgid "(more&hellip;)"
2009
- msgstr ""
2010
-
2011
- # @ wp-members
2012
- #: inc/register.php:417
2013
- msgid "We were unable to validate the public key."
2014
- msgstr "공개 키를 인증할 수 없습니다."
2015
-
2016
- # @ wp-members
2017
- #: inc/register.php:421
2018
- msgid "We were unable to validate the private key."
2019
- msgstr "비공개 키를 인증할 수 없습니다."
2020
-
2021
- # @ wp-members
2022
- #: inc/register.php:425
2023
- msgid "The challenge parameter of the verify script was incorrect."
2024
- msgstr "인증 스크립트 매개변수가 올바르지 않습니다."
2025
-
2026
- # @ wp-members
2027
- #: inc/register.php:429
2028
- msgid "The CAPTCHA solution was incorrect."
2029
- msgstr "CAPTCHA 솔루션이 올바르지 않습니다."
2030
-
2031
- # @ wp-members
2032
- #: inc/register.php:433
2033
- msgid "The parameters to verify were incorrect"
2034
- msgstr "인증할 매개변수가 올바르지 않습니다"
2035
-
2036
- # @ wp-members
2037
- #: inc/register.php:437
2038
- msgid ""
2039
- "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2040
- msgstr "reCAPTCHA API 키가 보안을 이유로 특정 도메인 이름에 귀속돼있습니다."
2041
-
2042
- # @ wp-members
2043
- #: inc/register.php:441
2044
- msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2045
- msgstr "reCAPTCHA 서버가 응답하지 않습니다. 다시 제출해보세요."
2046
-
2047
- #: inc/register.php:445
2048
- msgid "You have entered an incorrect code value. Please try again."
2049
- msgstr "올바른 코드 값을 입력하지 않았습니다. 다시 해주세요."
2050
-
2051
- # @ wp-members
2052
- #: wp-members-tos.php:35
2053
- #, php-format
2054
- msgid "%sclose%s"
2055
- msgstr "%s닫기%s"
2056
-
2057
- # @ wp-members
2058
- #: wp-members-tos.php:37
2059
- #, php-format
2060
- msgid "%sprint%s"
2061
- msgstr "%s인쇄%s"
2062
-
2063
- #. Plugin Name of the plugin/theme
2064
- msgid "WP-Members"
2065
- msgstr ""
2066
-
2067
- #. Plugin URI of the plugin/theme
2068
- msgid "https://rocketgeek.com"
2069
- msgstr ""
2070
-
2071
- #. Description of the plugin/theme
2072
- msgid ""
2073
- "WP access restriction and user registration. For more information on plugin "
2074
- "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2075
- "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2076
- "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2077
- "available. WP-Members(tm) is a trademark of butlerblog.com."
2078
- msgstr ""
2079
-
2080
- #. Author of the plugin/theme
2081
- msgid "Chad Butler"
2082
- msgstr ""
2083
-
2084
- #. Author URI of the plugin/theme
2085
- msgid "http://butlerblog.com/"
2086
- msgstr ""
2087
-
2088
- # @ wp-members
2089
- #~ msgid "You have set WP-Members to turn off the registration process"
2090
- #~ msgstr "WP-Members 설정을 회원가입 과정을 끄도록 했습니다."
2091
-
2092
- # @ wp-members
2093
- #~ msgid ""
2094
- #~ "but you also set to moderate and/or email admin new registrations. You "
2095
- #~ "will need to set up a registration page for users to register."
2096
- #~ msgstr ""
2097
- #~ "또한 회원가입을 검토하거나 관리자에게 이메일을 보내도록 설정했습니다. "
2098
- #~ "사용자가 등록할 수 있도록 회원가입 페이지를 설정해야 합니다."
2099
-
2100
- #~ msgid "Unblocked?"
2101
- #~ msgstr "차단 해제?"
2102
-
2103
- # @ wp-members
2104
- #~ msgid "Blocked?"
2105
- #~ msgstr "차단?"
2106
-
2107
- # @ wp-members
2108
- #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2109
- #~ msgstr ""
2110
- #~ "새 필드를 추가하려면 필드 레이블은 필수입니다. 아무것도 업데이트 되지 않았"
2111
- #~ "습니다."
2112
-
2113
- # @ wp-members
2114
- #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2115
- #~ msgstr ""
2116
- #~ "옵션 이름은 새 필드를 추가하는데 필수입니다. 아무것도 업데이트 되지 않았습"
2117
- #~ "니다."
2118
-
2119
- #~ msgid "A field with that option name already exists"
2120
- #~ msgstr "해당 옵션 이름의 필드는 이미 존재합니다"
2121
-
2122
- # @ wp-members
2123
- #~ msgid "field was added"
2124
- #~ msgstr "필드가 추가됐습니다"
2125
-
2126
- # @ wp-members
2127
- #~ msgid "field was updated"
2128
- #~ msgstr "필드가 업데이트 됐습니다"
2129
-
2130
- # @ wp-members
2131
- #~ msgid "Option Name"
2132
- #~ msgstr "옵션 이름"
2133
-
2134
- # @ wp-members
2135
- #~ msgid "Additional information for checkbox fields"
2136
- #~ msgstr "체크박스 추가 정보"
2137
-
2138
- # @ wp-members
2139
- #~ msgid "Additional information for dropdown fields"
2140
- #~ msgstr "드롭다운 필드 추가 정보"
2141
-
2142
- # @ wp-members
2143
- #~ msgid "For dropdown, array of values:"
2144
- #~ msgstr "드롭다운의 경우 값 배열(array):"
2145
-
2146
- # @ wp-members
2147
- #~ msgid ""
2148
- #~ "Determine which fields will display and which are required. This "
2149
- #~ "includes all fields, both native WP fields and WP-Members custom fields."
2150
- #~ msgstr ""
2151
- #~ "표시할 필드와 필수를 결정하세요. 이것은 모든 필드를 포함하며 워드프레스 기"
2152
- #~ " 필드와 WP-Members 사용자 정의 필드입니다."
2153
-
2154
- # @ wp-members
2155
- #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2156
- #~ msgstr "(주의: 이메일은 항상 필수이며 변경할 수 없습니다.)"
2157
-
2158
- # @ wp-members
2159
- #~ msgid "Add/Delete"
2160
- #~ msgstr "추가/삭제"
2161
-
2162
- # @ wp-members
2163
- #~ msgid "Checked?"
2164
- #~ msgstr "Checked?"
2165
-
2166
- # @ wp-members
2167
- #~ msgid "Delete"
2168
- #~ msgstr "삭제"
2169
-
2170
- # @ wp-members
2171
- #~ msgid "(Email cannot be removed)"
2172
- #~ msgstr "(이메일은 제거될 수 없습니다)"
2173
-
2174
- # @ wp-members
2175
- #~ msgid "native"
2176
- #~ msgstr "워드프레스 기본"
2177
-
2178
- # @ wp-members
2179
- #~ msgid "Update Fields"
2180
- #~ msgstr "필드 업데이트"
2181
-
2182
- # @ wp-members
2183
- #~ msgid "Please indicate that you agree to the %s TOS %s"
2184
- #~ msgstr "%s 이용약관 %s에 동의해주세요"
2185
-
2186
- #~ msgid "%s posts %sed."
2187
- #~ msgstr "%s 글 %s 됨."
2188
-
2189
- # @ wp-members
2190
- #~ msgid "Post Restriction"
2191
- #~ msgstr "글 제한"
2192
-
2193
- # @ wp-members
2194
- #~ msgid "Page Restriction"
2195
- #~ msgstr "페이지 제한"
2196
-
2197
- # @ wp-members
2198
- #~ msgid "dropdown"
2199
- #~ msgstr "드롭다운"
2200
-
2201
- # @ wp-members
2202
- #~ msgid "Block Posts by default"
2203
- #~ msgstr "기본으로 글 차단"
2204
-
2205
- # @ wp-members
2206
- #~ msgid ""
2207
- #~ "Note: Posts can still be individually blocked or unblocked at the article "
2208
- #~ "level"
2209
- #~ msgstr "주의: 글은 개별 글에서 차단하거나 차단해제 될 수 있습니다"
2210
-
2211
- # @ wp-members
2212
- #~ msgid "Block Pages by default"
2213
- #~ msgstr "기본으로 페이지 차단"
2214
-
2215
- # @ wp-members
2216
- #~ msgid ""
2217
- #~ "Note: Pages can still be individually blocked or unblocked at the article "
2218
- #~ "level"
2219
- #~ msgstr "주의: 페이지는 개별 페이지에서 차단하거나 차단해제 될 수 있습니다"
2220
-
2221
- # @ wp-members
2222
- #~ msgid "Show excerpts"
2223
- #~ msgstr "요약 보이기"
2224
-
2225
- # @ wp-members
2226
- #~ msgid ""
2227
- #~ "Shows excerpted content above the login/registration on both Posts and "
2228
- #~ "Pages"
2229
- #~ msgstr "글 및 페이지에서 로그인/회원가입 위에 요약 콘텐츠 보이기"
2230
-
2231
- # @ wp-members
2232
- #~ msgid "Turns on CAPTCHA for registration"
2233
- #~ msgstr "회원가입에 CAPTCHA 켜기"
2234
-
2235
- # @ wp-members
2236
- #~ msgid "Hide registration"
2237
- #~ msgstr "회원가입 감추기"
2238
-
2239
- #~ msgid "Removes the registration form from blocked content"
2240
- #~ msgstr "차단된 콘텐츠로부터 회원가입 폼 제거"
2241
-
2242
- # @ wp-members
2243
- #~ msgid "Optional"
2244
- #~ msgstr "선택적"
2245
-
2246
- # @ wp-members
2247
- #~ msgid "Automatically creates an excerpt"
2248
- #~ msgstr "자동으로 요약 만들기"
2249
-
2250
- # @ wp-members
2251
- #~ msgid "Select a stylesheet or specify a custom stylesheet below"
2252
- #~ msgstr ""
2253
- #~ "스타일시트를 선택하거나 아래에서 사용자 정의 스타일시트를 특정하세요"
2254
-
2255
- #~ msgid "AIM"
2256
- #~ msgstr "AIM"
2257
-
2258
- #~ msgid "Yahoo IM"
2259
- #~ msgstr "Yahoo IM"
2260
-
2261
- #~ msgid "Jabber/Google Talk"
2262
- #~ msgstr "Jabber / 구글 토크"
2263
-
2264
- #~ msgid ""
2265
- #~ "Password successfully changed!<br /><br />You will need to re-login with "
2266
- #~ "your new password."
2267
- #~ msgstr ""
2268
- #~ "비밀번호 변경이 성공했습니다!<br /><br />새 비밀번호로 재로그인 해야 합니"
2269
- #~ "다."
2270
-
2271
- #~ msgid ""
2272
- #~ "Password successfully reset!<br /><br />An email containing a new "
2273
- #~ "password has been sent to the email address on file for your account. You "
2274
- #~ "may change this random password then re-login with your new password."
2275
- #~ msgstr ""
2276
- #~ "비밀번호 초기화가 성공했습니다!<br /><br />새 비밀번호가 포함된 이메일을 "
2277
- #~ "계정 이메일 주소로 보냈습니다. 랜덤 비밀번호를 변경할 수 있으며 새로운 "
2278
- #~ "비밀번호로 로그인 하세요."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members v3.2.6\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2020-05-22 17:48-0400\n"
6
+ "PO-Revision-Date: 2020-05-22 17:53-0400\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Venusian <martian36@naver.com>\n"
9
+ "Language: ko_KR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
+ "X-Generator: Poedit 2.3.1\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-Basepath: ..\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: includes/admin/class-wp-members-admin-api.php:292
23
+ msgid "Custom email"
24
+ msgstr ""
25
+
26
+ # @ wp-members
27
+ #: includes/admin/class-wp-members-admin-api.php:293
28
+ #: includes/admin/class-wp-members-admin-api.php:295
29
+ msgid "Subject"
30
+ msgstr "제목"
31
+
32
+ # @ wp-members
33
+ #: includes/admin/class-wp-members-admin-api.php:296
34
+ msgid "Body"
35
+ msgstr "바디"
36
+
37
+ #: includes/admin/class-wp-members-admin-api.php:298
38
+ msgid "Your custom email message content."
39
+ msgstr ""
40
+
41
+ # @ wp-members
42
+ #: includes/admin/class-wp-members-admin-api.php:376
43
+ msgid "Options"
44
+ msgstr "옵션"
45
+
46
+ # @ wp-members
47
+ #: includes/admin/class-wp-members-admin-api.php:377
48
+ msgid "Fields"
49
+ msgstr "필드"
50
+
51
+ # @ wp-members
52
+ #: includes/admin/class-wp-members-admin-api.php:378
53
+ msgid "Dialogs"
54
+ msgstr "대화"
55
+
56
+ # @ wp-members
57
+ #: includes/admin/class-wp-members-admin-api.php:379
58
+ msgid "Emails"
59
+ msgstr "이메일"
60
+
61
+ # @ wp-members
62
+ #: includes/admin/class-wp-members-admin-api.php:395
63
+ msgid "New Registration"
64
+ msgstr "새 회원가입"
65
+
66
+ # @ wp-members
67
+ #: includes/admin/class-wp-members-admin-api.php:404
68
+ msgid "Registration is Moderated"
69
+ msgstr "회원가입이 검토됐습니다"
70
+
71
+ # @ wp-members
72
+ #: includes/admin/class-wp-members-admin-api.php:410
73
+ msgid "Registration is Moderated, User is Approved"
74
+ msgstr "회원가입이 검토됐으며 사용자 승인됐습니다"
75
+
76
+ # @ wp-members
77
+ #: includes/admin/class-wp-members-admin-api.php:418
78
+ msgid "Password Reset"
79
+ msgstr "비밀번호 초기화"
80
+
81
+ #: includes/admin/class-wp-members-admin-api.php:425
82
+ msgid "Retrieve Username"
83
+ msgstr ""
84
+
85
+ # @ wp-members
86
+ #: includes/admin/class-wp-members-admin-api.php:433
87
+ msgid "Admin Notification"
88
+ msgstr "관리자 알림"
89
+
90
+ # @ wp-members
91
+ #: includes/admin/class-wp-members-admin-api.php:459
92
+ msgid "Restricted post (or page), displays above the login/registration form"
93
+ msgstr "제한된 글 (또는 페이지), 로그인/회원가입 폼 위에 표시됨"
94
+
95
+ # @ wp-members
96
+ #: includes/admin/class-wp-members-admin-api.php:460
97
+ msgid "Username is taken"
98
+ msgstr "아이디가 사용 중입니다."
99
+
100
+ # @ wp-members
101
+ #: includes/admin/class-wp-members-admin-api.php:461
102
+ msgid "Email is registered"
103
+ msgstr "이메일이 등록됐습니다"
104
+
105
+ # @ wp-members
106
+ #: includes/admin/class-wp-members-admin-api.php:462
107
+ msgid "Registration completed"
108
+ msgstr "회원가입 완료"
109
+
110
+ # @ wp-members
111
+ #: includes/admin/class-wp-members-admin-api.php:463
112
+ msgid "User update"
113
+ msgstr "사용자 업데이트"
114
+
115
+ # @ wp-members
116
+ #: includes/admin/class-wp-members-admin-api.php:464
117
+ msgid "Passwords did not match"
118
+ msgstr "비밀번호가 일치하지 않습니다"
119
+
120
+ # @ wp-members
121
+ #: includes/admin/class-wp-members-admin-api.php:465
122
+ msgid "Password changes"
123
+ msgstr "비밀번호 변경"
124
+
125
+ # @ wp-members
126
+ #: includes/admin/class-wp-members-admin-api.php:466
127
+ msgid "Username or email do not exist when trying to reset forgotten password"
128
+ msgstr "분실 비밀번호 초기화 아이디 또는 이메일이 존재하지 않습니다"
129
+
130
+ # @ wp-members
131
+ #: includes/admin/class-wp-members-admin-api.php:467
132
+ msgid "Password reset"
133
+ msgstr "비밀번호 초기화"
134
+
135
+ # @ default
136
+ # @ wp-members
137
+ #: includes/admin/class-wp-members-admin-api.php:623
138
+ msgid "Settings"
139
+ msgstr "설정"
140
+
141
+ #: includes/admin/class-wp-members-admin-posts.php:30
142
+ #: includes/admin/class-wp-members-admin-posts.php:33
143
+ msgid "Unblock"
144
+ msgstr "차단 해제"
145
+
146
+ #: includes/admin/class-wp-members-admin-posts.php:31
147
+ #: includes/admin/class-wp-members-admin-posts.php:34
148
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:110
149
+ msgid "Block"
150
+ msgstr "차단"
151
+
152
+ #: includes/admin/class-wp-members-admin-posts.php:32
153
+ #: includes/admin/class-wp-members-admin-posts.php:35
154
+ msgid "Hide"
155
+ msgstr ""
156
+
157
+ #: includes/admin/class-wp-members-admin-posts.php:125
158
+ #, php-format
159
+ msgid "%s blocked"
160
+ msgstr ""
161
+
162
+ #: includes/admin/class-wp-members-admin-posts.php:125
163
+ #, php-format
164
+ msgid "%s unblocked"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-members-admin-posts.php:165
168
+ #, php-format
169
+ msgid "%s Restriction"
170
+ msgstr ""
171
+
172
+ #: includes/admin/class-wp-members-admin-posts.php:195
173
+ msgid "Unblocked"
174
+ msgstr ""
175
+
176
+ #: includes/admin/class-wp-members-admin-posts.php:196
177
+ msgid "Blocked"
178
+ msgstr ""
179
+
180
+ #: includes/admin/class-wp-members-admin-posts.php:197
181
+ msgid "Hidden"
182
+ msgstr ""
183
+
184
+ #: includes/admin/class-wp-members-admin-posts.php:203
185
+ msgid "Status:"
186
+ msgstr ""
187
+
188
+ #: includes/admin/class-wp-members-admin-posts.php:203
189
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:68
190
+ #: includes/admin/tabs/class-wp-members-fields-table.php:65
191
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:140
192
+ msgid "Edit"
193
+ msgstr ""
194
+
195
+ #: includes/admin/class-wp-members-admin-posts.php:218
196
+ msgid "Ok"
197
+ msgstr ""
198
+
199
+ #: includes/admin/class-wp-members-admin-posts.php:219
200
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:224
201
+ msgid "Cancel"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-members-admin-posts.php:305
205
+ #: includes/admin/class-wp-members-products-admin.php:629
206
+ msgid "Status"
207
+ msgstr ""
208
+
209
+ #: includes/admin/class-wp-members-admin-users.php:28
210
+ #: includes/admin/class-wp-members-admin-users.php:33
211
+ #: includes/admin/class-wp-members-admin-users.php:59
212
+ msgid "Activate"
213
+ msgstr ""
214
+
215
+ #: includes/admin/class-wp-members-admin-users.php:29
216
+ #: includes/admin/class-wp-members-admin-users.php:34
217
+ #: includes/admin/class-wp-members-admin-users.php:62
218
+ msgid "Deactivate"
219
+ msgstr ""
220
+
221
+ # @ default
222
+ #: includes/admin/class-wp-members-admin-users.php:31
223
+ #: includes/admin/class-wp-members-admin-users.php:36
224
+ msgid "Export"
225
+ msgstr "내보내기"
226
+
227
+ #: includes/admin/class-wp-members-admin-users.php:37
228
+ #: includes/admin/class-wp-members-admin-users.php:88
229
+ msgid "Export All Users"
230
+ msgstr "모든 사용자 내보내기"
231
+
232
+ #: includes/admin/class-wp-members-admin-users.php:126
233
+ #, php-format
234
+ msgid "%s users activated"
235
+ msgstr ""
236
+
237
+ #: includes/admin/class-wp-members-admin-users.php:126
238
+ #, php-format
239
+ msgid "%s users deactivated"
240
+ msgstr ""
241
+
242
+ #: includes/admin/class-wp-members-admin-users.php:129
243
+ msgid "No users selected"
244
+ msgstr ""
245
+
246
+ #: includes/admin/class-wp-members-admin-users.php:147
247
+ msgid "You cannot activate or deactivate yourself"
248
+ msgstr ""
249
+
250
+ #: includes/admin/class-wp-members-admin-users.php:152
251
+ #, php-format
252
+ msgid "%s activated"
253
+ msgstr ""
254
+
255
+ #: includes/admin/class-wp-members-admin-users.php:157
256
+ #, php-format
257
+ msgid "%s deactivated"
258
+ msgstr ""
259
+
260
+ #: includes/admin/class-wp-members-admin-users.php:161
261
+ msgid "That user is already active"
262
+ msgstr ""
263
+
264
+ #: includes/admin/class-wp-members-admin-users.php:288
265
+ msgid "Pending"
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-members-admin-users.php:289
269
+ msgid "Trial"
270
+ msgstr ""
271
+
272
+ # @ wp-members
273
+ #: includes/admin/class-wp-members-admin-users.php:290
274
+ #: includes/admin/class-wp-members-export.php:74
275
+ msgid "Subscription"
276
+ msgstr "구독"
277
+
278
+ #: includes/admin/class-wp-members-admin-users.php:291
279
+ msgid "Expired"
280
+ msgstr ""
281
+
282
+ #: includes/admin/class-wp-members-admin-users.php:294
283
+ msgid "Activated"
284
+ msgstr ""
285
+
286
+ #: includes/admin/class-wp-members-admin-users.php:295
287
+ msgid "Pending Activation"
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-members-admin-users.php:296
291
+ msgid "Deactivated"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-members-admin-users.php:298
295
+ msgid "Not Exported"
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-members-admin-users.php:387
299
+ #: includes/admin/class-wp-members-export.php:160
300
+ msgid "No"
301
+ msgstr ""
302
+
303
+ #: includes/admin/class-wp-members-export.php:64
304
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:449
305
+ msgid "User ID"
306
+ msgstr ""
307
+
308
+ #: includes/admin/class-wp-members-export.php:65
309
+ #: includes/class-wp-members.php:1523 includes/class-wp-members.php:1546
310
+ msgid "Username"
311
+ msgstr ""
312
+
313
+ # @ wp-members
314
+ #: includes/admin/class-wp-members-export.php:71
315
+ msgid "Activated?"
316
+ msgstr "활성화?"
317
+
318
+ # @ wp-members
319
+ #: includes/admin/class-wp-members-export.php:75
320
+ #: includes/admin/class-wp-members-products-admin.php:64
321
+ #: includes/admin/class-wp-members-products-admin.php:632
322
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:448
323
+ msgid "Expires"
324
+ msgstr "만료"
325
+
326
+ # @ wp-members
327
+ #: includes/admin/class-wp-members-export.php:77
328
+ msgid "Registered"
329
+ msgstr "등록됨"
330
+
331
+ # @ wp-members
332
+ #: includes/admin/class-wp-members-export.php:78
333
+ msgid "IP"
334
+ msgstr "IP"
335
+
336
+ #: includes/admin/class-wp-members-export.php:160
337
+ #: includes/admin/class-wp-members-products-admin.php:104
338
+ msgid "Yes"
339
+ msgstr ""
340
+
341
+ #: includes/admin/class-wp-members-products-admin.php:62
342
+ msgid "Slug"
343
+ msgstr ""
344
+
345
+ #: includes/admin/class-wp-members-products-admin.php:63
346
+ msgid "Role"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-members-products-admin.php:66
350
+ msgid "Default"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-members-products-admin.php:68
354
+ msgid "Last updated"
355
+ msgstr ""
356
+
357
+ #: includes/admin/class-wp-members-products-admin.php:92
358
+ msgid "slug:"
359
+ msgstr ""
360
+
361
+ #: includes/admin/class-wp-members-products-admin.php:95
362
+ msgid "No role required"
363
+ msgstr ""
364
+
365
+ #: includes/admin/class-wp-members-products-admin.php:100
366
+ msgid "Does not expire"
367
+ msgstr ""
368
+
369
+ #: includes/admin/class-wp-members-products-admin.php:140
370
+ msgid "Membership Product Details"
371
+ msgstr ""
372
+
373
+ #: includes/admin/class-wp-members-products-admin.php:148
374
+ msgid "Membership Product Message (optional)"
375
+ msgstr ""
376
+
377
+ #: includes/admin/class-wp-members-products-admin.php:165
378
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:62
379
+ msgid "Posts"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-members-products-admin.php:166
383
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:63
384
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:213
385
+ msgid "Pages"
386
+ msgstr ""
387
+
388
+ #: includes/admin/class-wp-members-products-admin.php:193
389
+ #: includes/admin/class-wp-members-products-admin.php:235
390
+ #: includes/admin/class-wp-members-products-admin.php:280
391
+ msgid "Period"
392
+ msgstr ""
393
+
394
+ #: includes/admin/class-wp-members-products-admin.php:193
395
+ msgid "Day"
396
+ msgstr ""
397
+
398
+ #: includes/admin/class-wp-members-products-admin.php:193
399
+ msgid "Week"
400
+ msgstr ""
401
+
402
+ #: includes/admin/class-wp-members-products-admin.php:193
403
+ msgid "Month"
404
+ msgstr ""
405
+
406
+ #: includes/admin/class-wp-members-products-admin.php:193
407
+ msgid "Year"
408
+ msgstr ""
409
+
410
+ #: includes/admin/class-wp-members-products-admin.php:199
411
+ msgid "Name (slug)"
412
+ msgstr ""
413
+
414
+ #: includes/admin/class-wp-members-products-admin.php:201
415
+ msgid "Optional Defaults"
416
+ msgstr ""
417
+
418
+ #: includes/admin/class-wp-members-products-admin.php:204
419
+ msgid "Assign as default at registration? (optional)"
420
+ msgstr ""
421
+
422
+ #: includes/admin/class-wp-members-products-admin.php:212
423
+ #, php-format
424
+ msgid "Pre-selected by default for new %s"
425
+ msgstr ""
426
+
427
+ #: includes/admin/class-wp-members-products-admin.php:218
428
+ msgid "Optional Properties"
429
+ msgstr ""
430
+
431
+ #: includes/admin/class-wp-members-products-admin.php:221
432
+ msgid "Role Required? (optional)"
433
+ msgstr ""
434
+
435
+ #: includes/admin/class-wp-members-products-admin.php:224
436
+ msgid "No Role"
437
+ msgstr ""
438
+
439
+ #: includes/admin/class-wp-members-products-admin.php:230
440
+ msgid "Expires (optional)"
441
+ msgstr ""
442
+
443
+ #: includes/admin/class-wp-members-products-admin.php:232
444
+ #: includes/admin/class-wp-members-products-admin.php:234
445
+ #: includes/admin/class-wp-members-products-admin.php:277
446
+ #: includes/admin/class-wp-members-products-admin.php:279
447
+ msgid "Number"
448
+ msgstr ""
449
+
450
+ #: includes/admin/class-wp-members-products-admin.php:240
451
+ msgid "Use \"no gap\" renewal"
452
+ msgstr ""
453
+
454
+ #: includes/admin/class-wp-members-products-admin.php:244
455
+ msgid "Use a fixed period (such as Jan 1 - Dec 31, or Sept 1 - Aug 31)"
456
+ msgstr ""
457
+
458
+ #: includes/admin/class-wp-members-products-admin.php:261
459
+ msgid "Period Start (dd-mm)"
460
+ msgstr ""
461
+
462
+ #: includes/admin/class-wp-members-products-admin.php:262
463
+ msgid "Period End (dd-mm)"
464
+ msgstr ""
465
+
466
+ #: includes/admin/class-wp-members-products-admin.php:275
467
+ msgid "Fixed period grace period"
468
+ msgstr ""
469
+
470
+ #: includes/admin/class-wp-members-products-admin.php:284
471
+ msgid ""
472
+ "Grace period is the point at which expiration date is for following time "
473
+ "period. For example, if user who register August 1st would be part of the "
474
+ "following year's Sept 1 - Aug 31 membership, set this at 1 Month. Leave "
475
+ "blank for no grace period."
476
+ msgstr ""
477
+
478
+ #: includes/admin/class-wp-members-products-admin.php:333
479
+ msgid ""
480
+ "Restricted Message (displays when a user does not have access to a "
481
+ "membership)"
482
+ msgstr ""
483
+
484
+ #: includes/admin/class-wp-members-products-admin.php:435
485
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:204
486
+ #: includes/class-wp-members-forms.php:1092
487
+ #: includes/class-wp-members-user-profile.php:112
488
+ msgid "None"
489
+ msgstr ""
490
+
491
+ #: includes/admin/class-wp-members-products-admin.php:450
492
+ msgid "Limit access to:"
493
+ msgstr ""
494
+
495
+ #: includes/admin/class-wp-members-products-admin.php:520
496
+ msgid "Required Membership"
497
+ msgstr ""
498
+
499
+ #: includes/admin/class-wp-members-products-admin.php:559
500
+ #: includes/admin/class-wp-members-products-admin.php:630
501
+ msgid "Membership"
502
+ msgstr ""
503
+
504
+ #: includes/admin/class-wp-members-products-admin.php:599
505
+ #: includes/class-wp-members-products.php:308
506
+ msgid "Memberships"
507
+ msgstr ""
508
+
509
+ #: includes/admin/class-wp-members-products-admin.php:626
510
+ msgid "Product Access"
511
+ msgstr ""
512
+
513
+ #: includes/admin/class-wp-members-products-admin.php:631
514
+ msgid "Enabled?"
515
+ msgstr ""
516
+
517
+ #: includes/admin/class-wp-members-products-admin.php:641
518
+ msgid "Enable"
519
+ msgstr ""
520
+
521
+ #: includes/admin/class-wp-members-products-admin.php:642
522
+ msgid "Disable"
523
+ msgstr ""
524
+
525
+ #: includes/admin/class-wp-members-products-admin.php:647
526
+ msgid "Expiration date (optional)"
527
+ msgstr ""
528
+
529
+ # @ wp-members
530
+ #: includes/admin/dialogs.php:117
531
+ msgid ""
532
+ "Your WP settings allow anyone to register - this is not the recommended "
533
+ "setting."
534
+ msgstr ""
535
+ "워드프레스 설정이 누구나 가입할 있도록 돼있습니다. 이 설정은 권장하지 않습"
536
+ "니다."
537
+
538
+ # @ wp-members
539
+ #: includes/admin/dialogs.php:118
540
+ #, php-format
541
+ msgid ""
542
+ "You can %s change this here %s making sure the box next to \"Anyone can "
543
+ "register\" is unchecked."
544
+ msgstr ""
545
+ "%s 이것을 여기서 변경%s 할 수 있습니다. \"누구나 가입할 수 있습니다\"의 체크"
546
+ "박스를 체크해제 하세요."
547
+
548
+ # @ wp-members
549
+ #: includes/admin/dialogs.php:119
550
+ msgid ""
551
+ "This setting allows a link on the /wp-login.php page to register using the "
552
+ "WP native registration process thus circumventing any registration you are "
553
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
554
+ "but most users should uncheck this option. If you do not change this "
555
+ "setting, you can choose to ignore these warning messages under WP-Members "
556
+ "Settings."
557
+ msgstr ""
558
+ "이 설정은 /wp-login.php에서 워드프레스 기본 회원가입을 사용해서 등록할 수 있"
559
+ "는 링크를 허용합니다. 그러면 WP-Members를 사용하는 회원가입을 무시하게 됩니"
560
+ "다. 어떤 경우는 이것이 사용자에게 어울리지만 대부분의 사용자는 이 옵션을 체크"
561
+ "해제 해야 합니다. 이 설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 "
562
+ "메시지 무시하기를 선택할 수 있습니다."
563
+
564
+ # @ wp-members
565
+ #: includes/admin/dialogs.php:123
566
+ msgid ""
567
+ "Your WP settings allow anyone to comment - this is not the recommended "
568
+ "setting."
569
+ msgstr ""
570
+ "워드프레스 설정이 누구나 댓글을 달 수 있도록 돼있습니다 - 이 설정은 권장하지 "
571
+ "않습니다."
572
+
573
+ # @ wp-members
574
+ #: includes/admin/dialogs.php:124
575
+ #, php-format
576
+ msgid ""
577
+ "You can %s change this here %s by checking the box next to \"Users must be "
578
+ "registered and logged in to comment.\""
579
+ msgstr ""
580
+ "%s 여기서 설정을 변경할 수 있고 %s \"가입하여 로그인한 사용자만 댓글을 남길 "
581
+ "수 있습니다.\" 의 체크박스에 체크하세요."
582
+
583
+ # @ wp-members
584
+ #: includes/admin/dialogs.php:125
585
+ msgid ""
586
+ "This setting allows any users to comment, whether or not they are "
587
+ "registered. Depending on how you are using WP-Members will determine whether "
588
+ "you should change this setting or not. If you do not change this setting, "
589
+ "you can choose to ignore these warning messages under WP-Members Settings."
590
+ msgstr ""
591
+ "이 설정은 가입하거나 가입하지 않은 누구든 댓글을 달 수 있도록 허용합니다. WP-"
592
+ "Members를 사용하는 방법에 따라서 이 설정을 변경할 것인지 결정해야 합니다.이 "
593
+ "설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 메시지 무시하기를 선"
594
+ "택할 수 있습니다."
595
+
596
+ # @ wp-members
597
+ #: includes/admin/dialogs.php:129
598
+ msgid ""
599
+ "Your WP settings allow full text rss feeds - this is not the recommended "
600
+ "setting."
601
+ msgstr ""
602
+ "워드프레스 설정이 전체 글 RSS 피드를 허용합니다 - 이 설정은 권장하지 않습니"
603
+ "다."
604
+
605
+ # @ wp-members
606
+ #: includes/admin/dialogs.php:130
607
+ #, php-format
608
+ msgid ""
609
+ "You can %s change this here %s by changing \"For each article in a feed, show"
610
+ "\" to \"Summary.\""
611
+ msgstr ""
612
+ "%s 여기서 변경할 수 %s있으며 \"피드 글의 보기 옵션\"에서 \"요약\"으로 변경하"
613
+ "세요."
614
+
615
+ # @ wp-members
616
+ #: includes/admin/dialogs.php:131
617
+ msgid ""
618
+ "Leaving this set to full text allows anyone to read your protected content "
619
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
620
+ "only show summary text."
621
+ msgstr ""
622
+ "이 설정을 전체 글로 설정해두면 누구든 RSS 리더에서 보호된 콘텐츠를 읽을 수 있"
623
+ "습니다. 이것을 요약으로 변경하면 이를 방지할 수 있으며 피드는 요약 텍스트만 "
624
+ "보여줄 것입니다."
625
+
626
+ # @ wp-members
627
+ #: includes/admin/dialogs.php:135
628
+ msgid "You have set WP-Members to hold registrations for approval"
629
+ msgstr "WP-Members 설정을 회원가입은 승인이 필요한 것으로 했습니다."
630
+
631
+ # @ wp-members
632
+ #: includes/admin/dialogs.php:136
633
+ msgid ""
634
+ "but you have not changed the default message for \"Registration Completed\" "
635
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
636
+ "message to let users know they are pending approval."
637
+ msgstr ""
638
+ "하지만 \"WP-Members 대화 및 에러 메시지\"에서 \"회원가입 완료됨\"의 기본 메"
639
+ "시지를 변경하지 않았습니다. 사용자가 승인이 대기 중이라는 것을 알 수 있도록 "
640
+ "메시지를 변경해야 합니다."
641
+
642
+ # @ wp-members
643
+ #: includes/admin/dialogs.php:140
644
+ msgid "You have turned on reCAPTCHA"
645
+ msgstr "리캡챠를 켜놓았습니다"
646
+
647
+ # @ wp-members
648
+ #: includes/admin/dialogs.php:141
649
+ msgid ""
650
+ "but you have not entered API keys. You will need both a public and private "
651
+ "key. The CAPTCHA will not display unless a valid API key is included."
652
+ msgstr ""
653
+ "하지만 API 키를 입력하지 않았습니다. public 키와 private 키가 필요합니다. 유"
654
+ "효한 API 키가 포함되지 않으면 캡챠는 표시되지 않습니다."
655
+
656
+ #: includes/admin/dialogs.php:145
657
+ msgid "You have active settings that are not recommended."
658
+ msgstr ""
659
+
660
+ #: includes/admin/dialogs.php:146
661
+ msgid ""
662
+ "If you will not be changing these settings, you can turn off these warning "
663
+ "messages by checking the \"Ignore warning messages\" in the settings below."
664
+ msgstr ""
665
+
666
+ # @ wp-members
667
+ #: includes/admin/dialogs.php:174
668
+ msgid "Version:"
669
+ msgstr "버전:"
670
+
671
+ # @ wp-members
672
+ #: includes/admin/dialogs.php:175
673
+ msgid "Quick Start Guide"
674
+ msgstr "빠른 시작 가이드"
675
+
676
+ # @ wp-members
677
+ #: includes/admin/dialogs.php:176
678
+ msgid "Online User Guide"
679
+ msgstr "온라인 사용자 가이드"
680
+
681
+ # @ wp-members
682
+ #: includes/admin/dialogs.php:177
683
+ msgid "FAQs"
684
+ msgstr "FAQ"
685
+
686
+ # @ wp-members
687
+ #: includes/admin/dialogs.php:184
688
+ msgid "Thank you for using WP-Members"
689
+ msgstr "WP-Members를 사용해주셔서 감사합니다"
690
+
691
+ # @ wp-members
692
+ #: includes/admin/dialogs.php:185
693
+ msgid "A plugin developed by"
694
+ msgstr "플러그인 개발자"
695
+
696
+ # @ wp-members
697
+ #: includes/admin/dialogs.php:186
698
+ msgid "Follow"
699
+ msgstr "팔로우"
700
+
701
+ #: includes/admin/dialogs.php:203 includes/admin/dialogs.php:207
702
+ msgid "Latest from RocketGeek"
703
+ msgstr "최근 RocketGeek"
704
+
705
+ #: includes/admin/dialogs.php:224
706
+ msgid "Like WP-Members?"
707
+ msgstr ""
708
+
709
+ #: includes/admin/dialogs.php:225
710
+ #, php-format
711
+ msgid ""
712
+ "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
713
+ "%s rating. Thanks!!"
714
+ msgstr ""
715
+
716
+ #: includes/admin/dialogs.php:236 includes/admin/dialogs.php:249
717
+ msgid "Latest from ButlerBlog"
718
+ msgstr "최근 ButlerBlog"
719
+
720
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:67
721
+ #, php-format
722
+ msgid "See the %sUsers Guide on CAPTCHA%s."
723
+ msgstr ""
724
+
725
+ # @ wp-members
726
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:74
727
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:57
728
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:100
729
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:134
730
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:78
731
+ msgid "Need help?"
732
+ msgstr "도움이 필요하세요?"
733
+
734
+ # @ wp-members
735
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:85
736
+ msgid "Manage reCAPTCHA Options"
737
+ msgstr "reCAPTCHA 옵션 관리"
738
+
739
+ # @ wp-members
740
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:99
741
+ msgid ""
742
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
743
+ "while blocking spam on your blog."
744
+ msgstr ""
745
+ "reCAPTCHA는 무료이며 접근 가능한 CAPTCHA 서비스로 블로그에서 스팸을 방지하는"
746
+ " 도움이 됩니다."
747
+
748
+ # @ wp-members
749
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:100
750
+ #, php-format
751
+ msgid ""
752
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
753
+ "that they are a human. This verifies that they are not a spambot while also "
754
+ "correcting the automatic scans of old books. So you get less spam, and the "
755
+ "world gets accurately digitized books. Everybody wins! For details, visit "
756
+ "the %s reCAPTCHA website%s"
757
+ msgstr ""
758
+ "reCAPTCHA는 댓글자가 사람인지 증명하기 위해 책에서 스캔해 두 개의단어를 입력"
759
+ "하도록 요구합니다. 이것은 스팸로봇이 아닌지 확인하며 많은 스팸을 방지합니다. "
760
+ "상세한 내용은 %s reCAPTCHA 웹사이트%s를 방문하세요."
761
+
762
+ # @ wp-members
763
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:105
764
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:131
765
+ msgid "reCAPTCHA Keys"
766
+ msgstr "reCAPTCHA 키"
767
+
768
+ # @ wp-members
769
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:107
770
+ #, php-format
771
+ msgid ""
772
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
773
+ "key. You can sign up for a %s free reCAPTCHA key%s"
774
+ msgstr ""
775
+ "reCAPTCHA는 API 키가 필요합니다. \"public\" 및 \"private\" 키로 구성됩니다. "
776
+ "%s 무료 reCAPTCHA 키%s를 위해 가입하세요."
777
+
778
+ # @ wp-members
779
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:108
780
+ msgid "Public Key"
781
+ msgstr "Public 키"
782
+
783
+ # @ wp-members
784
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:109
785
+ msgid "Private Key"
786
+ msgstr "Private "
787
+
788
+ # @ wp-members
789
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:113
790
+ msgid "Choose Theme"
791
+ msgstr "테마 선택"
792
+
793
+ # @ wp-members
794
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:116
795
+ msgid "Red"
796
+ msgstr "Red"
797
+
798
+ # @ wp-members
799
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:117
800
+ msgid "White"
801
+ msgstr "White"
802
+
803
+ # @ wp-members
804
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:118
805
+ msgid "Black Glass"
806
+ msgstr "Black Glass"
807
+
808
+ # @ wp-members
809
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:119
810
+ msgid "Clean"
811
+ msgstr "Clean"
812
+
813
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:133
814
+ #, php-format
815
+ msgid ""
816
+ "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
817
+ "key. You can sign up for a %s free reCAPTCHA key%s"
818
+ msgstr ""
819
+
820
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:134
821
+ msgid "Site Key"
822
+ msgstr ""
823
+
824
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:135
825
+ msgid "Secret Key"
826
+ msgstr ""
827
+
828
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:166
829
+ msgid "Characters for image"
830
+ msgstr "이미지에 대한 글자"
831
+
832
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:170
833
+ msgid "Number of characters"
834
+ msgstr "글자 수"
835
+
836
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:174
837
+ msgid "Image dimensions"
838
+ msgstr "이미지 크기"
839
+
840
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
841
+ msgid "Width"
842
+ msgstr ""
843
+
844
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:175
845
+ msgid "Height"
846
+ msgstr ""
847
+
848
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:178
849
+ msgid "Font color of characters"
850
+ msgstr "글자 폰트 색상"
851
+
852
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:182
853
+ msgid "Background color of image"
854
+ msgstr "이미지 배경 색상"
855
+
856
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:186
857
+ msgid "Font size"
858
+ msgstr "폰트 사이즈"
859
+
860
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:190
861
+ msgid "Width between characters"
862
+ msgstr "글자간 폭"
863
+
864
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:194
865
+ msgid "Image type"
866
+ msgstr "이미지 타입"
867
+
868
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:208
869
+ msgid ""
870
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
871
+ "installed and activated."
872
+ msgstr ""
873
+ "Really Simple CAPTCHA를 사용하려면, Really Simple CAPTCHA 플러그인을 설치하"
874
+ "고 활성화 해야 합니다."
875
+
876
+ # @ wp-members
877
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:233
878
+ msgid "Update CAPTCHA Settings"
879
+ msgstr "CAPTCHA 설정 업데이트"
880
+
881
+ # @ wp-members
882
+ #: includes/admin/tabs/class-wp-members-admin-tab-captcha.php:304
883
+ msgid "CAPTCHA was updated for WP-Members"
884
+ msgstr "CAPTCHA가 WP-Members를 위해 업데이트 됐습니다"
885
+
886
+ # @ wp-members
887
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:67
888
+ msgid "Dialogs and Error Messages"
889
+ msgstr "대화 및 에러 메시지"
890
+
891
+ # @ wp-members
892
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:69
893
+ #, php-format
894
+ msgid ""
895
+ "You can customize the text for dialogs and error messages. Simple HTML is "
896
+ "allowed %s etc."
897
+ msgstr ""
898
+ "대화 에러 메시지 텍스트를 사용자 정의 할 수 있습니다. 간단한 HTML은 허용 "
899
+ "됩니다 %s 등."
900
+
901
+ # @ wp-members
902
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:80
903
+ msgid "Terms of Service (TOS)"
904
+ msgstr "이용약관"
905
+
906
+ # @ wp-members
907
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:87
908
+ msgid "Update Dialogs"
909
+ msgstr "대화 업데이트"
910
+
911
+ # @ wp-members
912
+ #: includes/admin/tabs/class-wp-members-admin-tab-dialogs.php:124
913
+ msgid "WP-Members dialogs were updated"
914
+ msgstr "WP-Members 대화가 업데이트 됐습니다"
915
+
916
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:88
917
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:180
918
+ msgid "WP-Members Dropin settings were updated"
919
+ msgstr ""
920
+
921
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:216
922
+ msgid "Manage Dropins"
923
+ msgstr ""
924
+
925
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:217
926
+ msgid "Current dropin folder: "
927
+ msgstr ""
928
+
929
+ #: includes/admin/tabs/class-wp-members-admin-tab-dropins.php:218
930
+ msgid ""
931
+ "You can change location of the dropin folder using the "
932
+ "<code>wpmem_dropin_folder</code> filter."
933
+ msgstr ""
934
+
935
+ # @ wp-members
936
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:57
937
+ msgid "Email Messages"
938
+ msgstr "이메일 메시지"
939
+
940
+ # @ wp-members
941
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:60
942
+ msgid "You can customize the content of the emails sent by the plugin."
943
+ msgstr "플러그인에 의해 보내지는 이메일 콘텐츠를 사용자 정의 할 수 있습니다."
944
+
945
+ # @ wp-members
946
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:62
947
+ msgid "A list of shortcodes is available here."
948
+ msgstr "단축코드 목록은 여기서 가능합니다."
949
+
950
+ # @ wp-members
951
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:69
952
+ msgid "Set a custom email address"
953
+ msgstr "사용자 정의 이메일 주소 설정"
954
+
955
+ # @ wp-members
956
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:70
957
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:74
958
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
959
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:161
960
+ msgid "(optional)"
961
+ msgstr "(선택적)"
962
+
963
+ # @ wp-members
964
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:73
965
+ msgid "Set a custom email name"
966
+ msgstr "사용자 정의 이메일 이름 설정"
967
+
968
+ # @ wp-members
969
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:84
970
+ msgid "Email Signature"
971
+ msgstr "이메일 서명"
972
+
973
+ # @ wp-members
974
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:92
975
+ msgid "Update Emails"
976
+ msgstr "이메일 업데이트"
977
+
978
+ # @ wp-members
979
+ #: includes/admin/tabs/class-wp-members-admin-tab-emails.php:161
980
+ msgid "WP-Members emails were updated"
981
+ msgstr "WP-Members 이메일이 업데이트 됐습니다"
982
+
983
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:93
984
+ #: includes/class-wp-members.php:1498
985
+ msgid "No fields selected for deletion"
986
+ msgstr ""
987
+
988
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:95
989
+ msgid "Are you sure you want to delete the following fields?"
990
+ msgstr ""
991
+
992
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:122
993
+ msgid "Fields deleted"
994
+ msgstr ""
995
+
996
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:136
997
+ msgid "Field Manager Documentation"
998
+ msgstr ""
999
+
1000
+ # @ wp-members
1001
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:162
1002
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1003
+ #: includes/class-wp-members-forms.php:1626
1004
+ #: includes/class-wp-members-forms.php:1803
1005
+ #: includes/class-wp-members-user-profile.php:144
1006
+ msgid "(required)"
1007
+ msgstr "(필수)"
1008
+
1009
+ # @ wp-members
1010
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
1011
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1012
+ msgid "Edit Field"
1013
+ msgstr "필드 편집"
1014
+
1015
+ # @ wp-members
1016
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:167
1017
+ msgid "Add a Field"
1018
+ msgstr "필드 추가"
1019
+
1020
+ # @ wp-members
1021
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:172
1022
+ msgid "Field Label"
1023
+ msgstr "필드 레이블"
1024
+
1025
+ # @ wp-members
1026
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:174
1027
+ msgid "The name of the field as it will be displayed to the user."
1028
+ msgstr "사용자에게 표시되는 필드 이름"
1029
+
1030
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:177
1031
+ #: includes/admin/tabs/class-wp-members-fields-table.php:58
1032
+ msgid "Meta Key"
1033
+ msgstr ""
1034
+
1035
+ # @ wp-members
1036
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:183
1037
+ msgid ""
1038
+ "The database meta value for the field. It must be unique and contain no "
1039
+ "spaces (underscores are ok)."
1040
+ msgstr ""
1041
+ "필드의 데이터베이스 메타 값. 독특해야 하며 스페이스가 없어야 합니다 (밑줄은 "
1042
+ "가능)"
1043
+
1044
+ # @ wp-members
1045
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:187
1046
+ #: includes/admin/tabs/class-wp-members-fields-table.php:59
1047
+ msgid "Field Type"
1048
+ msgstr "필드 타입"
1049
+
1050
+ # @ wp-members
1051
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:193
1052
+ msgid "text"
1053
+ msgstr "텍스트"
1054
+
1055
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:194
1056
+ msgid "email"
1057
+ msgstr ""
1058
+
1059
+ # @ wp-members
1060
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:195
1061
+ msgid "textarea"
1062
+ msgstr "textarea"
1063
+
1064
+ # @ wp-members
1065
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:196
1066
+ msgid "checkbox"
1067
+ msgstr "checkbox"
1068
+
1069
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:197
1070
+ msgid "multiple checkbox"
1071
+ msgstr ""
1072
+
1073
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:198
1074
+ msgid "select (dropdown)"
1075
+ msgstr ""
1076
+
1077
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:199
1078
+ msgid "multiple select"
1079
+ msgstr ""
1080
+
1081
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:200
1082
+ msgid "radio group"
1083
+ msgstr ""
1084
+
1085
+ # @ wp-members
1086
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:201
1087
+ msgid "password"
1088
+ msgstr "비밀번호"
1089
+
1090
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:202
1091
+ msgid "image"
1092
+ msgstr ""
1093
+
1094
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:203
1095
+ msgid "file"
1096
+ msgstr ""
1097
+
1098
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:204
1099
+ msgid "url"
1100
+ msgstr ""
1101
+
1102
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:205
1103
+ msgid "number"
1104
+ msgstr ""
1105
+
1106
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:206
1107
+ msgid "date"
1108
+ msgstr ""
1109
+
1110
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:207
1111
+ msgid "hidden"
1112
+ msgstr ""
1113
+
1114
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:209
1115
+ msgid "membership"
1116
+ msgstr ""
1117
+
1118
+ # @ wp-members
1119
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:215
1120
+ #: includes/admin/tabs/class-wp-members-fields-table.php:60
1121
+ msgid "Display?"
1122
+ msgstr "표시?"
1123
+
1124
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:219
1125
+ msgid "This field is always displayed"
1126
+ msgstr ""
1127
+
1128
+ # @ wp-members
1129
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:224
1130
+ msgid "Required?"
1131
+ msgstr "필수?"
1132
+
1133
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:228
1134
+ msgid "This field is always required"
1135
+ msgstr ""
1136
+
1137
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:234
1138
+ msgid "Allow HTML?"
1139
+ msgstr ""
1140
+
1141
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:241
1142
+ msgid "Placeholder"
1143
+ msgstr ""
1144
+
1145
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:249
1146
+ msgid "Pattern"
1147
+ msgstr ""
1148
+
1149
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:255
1150
+ msgid "Title"
1151
+ msgstr ""
1152
+
1153
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:264
1154
+ msgid "Minimum Value"
1155
+ msgstr ""
1156
+
1157
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:268
1158
+ msgid "Maximum Value"
1159
+ msgstr ""
1160
+
1161
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:276
1162
+ msgid "Rows"
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:280
1166
+ msgid "Columns"
1167
+ msgstr ""
1168
+
1169
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:288
1170
+ msgid "Accepted file types:"
1171
+ msgstr ""
1172
+
1173
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:293
1174
+ msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
1175
+ msgstr ""
1176
+
1177
+ # @ wp-members
1178
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:300
1179
+ msgid "Checked by default?"
1180
+ msgstr "기본으로 체크?"
1181
+
1182
+ # @ wp-members
1183
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:304
1184
+ msgid "Stored value if checked:"
1185
+ msgstr "체크된 경우 저장된 값:"
1186
+
1187
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:325
1188
+ msgid "Stored values delimiter:"
1189
+ msgstr ""
1190
+
1191
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:334
1192
+ msgid "Values (Displayed|Stored):"
1193
+ msgstr ""
1194
+
1195
+ # @ wp-members
1196
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:359
1197
+ msgid "Options should be Option Name|option_value,"
1198
+ msgstr "옵션은 Option Name|option_value이어야 합니다,"
1199
+
1200
+ # @ wp-members
1201
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:363
1202
+ msgid "Visit plugin site for more information"
1203
+ msgstr " 많은 정보는 플러그인 사이트를 방문하세요"
1204
+
1205
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:370
1206
+ msgid "Value"
1207
+ msgstr ""
1208
+
1209
+ # @ wp-members
1210
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:389
1211
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:514
1212
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:515
1213
+ msgid "Add Field"
1214
+ msgstr "필드 추가"
1215
+
1216
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:391
1217
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:711
1218
+ msgid "Return to Fields Table"
1219
+ msgstr ""
1220
+
1221
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:438
1222
+ msgid "Drag and drop to reorder fields"
1223
+ msgstr ""
1224
+
1225
+ # @ wp-members
1226
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:444
1227
+ msgid "Registration Date"
1228
+ msgstr "회원가입 일자"
1229
+
1230
+ # @ default
1231
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:445
1232
+ msgid "Active"
1233
+ msgstr "활성"
1234
+
1235
+ # @ wp-members
1236
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:446
1237
+ msgid "Registration IP"
1238
+ msgstr "회원가입 IP"
1239
+
1240
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:447
1241
+ msgid "Subscription Type"
1242
+ msgstr ""
1243
+
1244
+ # @ wp-members
1245
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:482
1246
+ msgid "Manage Fields"
1247
+ msgstr "필드 관리"
1248
+
1249
+ # @ wp-members
1250
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:581
1251
+ msgid "WP-Members fields were updated"
1252
+ msgstr "WP-Members 필드가 업데이트 됐습니다"
1253
+
1254
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:603
1255
+ msgid "Field Label is required. Nothing was updated."
1256
+ msgstr ""
1257
+
1258
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:604
1259
+ msgid "Meta Key is required. Nothing was updated."
1260
+ msgstr ""
1261
+
1262
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:606
1263
+ msgid "Meta Key must contain only letters, numbers, and underscores"
1264
+ msgstr ""
1265
+
1266
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:613
1267
+ msgid "A field with that meta key already exists"
1268
+ msgstr ""
1269
+
1270
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:618
1271
+ #, php-format
1272
+ msgid ""
1273
+ "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
1274
+ "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
1275
+ "Field was not added."
1276
+ msgstr ""
1277
+
1278
+ # @ wp-members
1279
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:659
1280
+ msgid "Checked value is required for checkboxes. Nothing was updated."
1281
+ msgstr "Checked 값은 체크박스에 필수입니다. 아무것도 업데이트 되지 않았습니다."
1282
+
1283
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:690
1284
+ msgid "A value is required for hidden fields. Nothing was updated."
1285
+ msgstr ""
1286
+
1287
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:697
1288
+ #, php-format
1289
+ msgid "%s was added"
1290
+ msgstr ""
1291
+
1292
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:710
1293
+ #, php-format
1294
+ msgid "%s was updated"
1295
+ msgstr ""
1296
+
1297
+ #: includes/admin/tabs/class-wp-members-admin-tab-fields.php:753
1298
+ msgid "Form field order updated."
1299
+ msgstr ""
1300
+
1301
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:56
1302
+ #, php-format
1303
+ msgid "%sChange%s or %sFilter%s this address"
1304
+ msgstr ""
1305
+
1306
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:57
1307
+ #, php-format
1308
+ msgid "See the %sUsers Guide on plugin options%s."
1309
+ msgstr ""
1310
+
1311
+ # @ wp-members
1312
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:90
1313
+ msgid "Manage Options"
1314
+ msgstr "옵션 관리"
1315
+
1316
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:94
1317
+ msgid "Content"
1318
+ msgstr ""
1319
+
1320
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:105
1321
+ msgid "Content Blocking"
1322
+ msgstr ""
1323
+
1324
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:109
1325
+ msgid "Do not block"
1326
+ msgstr ""
1327
+
1328
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:123
1329
+ msgid "Show Excerpts"
1330
+ msgstr ""
1331
+
1332
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:124
1333
+ msgid "Show Login Form"
1334
+ msgstr ""
1335
+
1336
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:125
1337
+ msgid "Show Registration Form"
1338
+ msgstr ""
1339
+
1340
+ # @ wp-members
1341
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:126
1342
+ msgid "Auto Excerpt:"
1343
+ msgstr "자동 요약:"
1344
+
1345
+ # @ wp-members
1346
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:148
1347
+ msgid "Number of words in excerpt:"
1348
+ msgstr "요약에서 단어 수:"
1349
+
1350
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:149
1351
+ msgid "Custom read more link (optional):"
1352
+ msgstr ""
1353
+
1354
+ # @ wp-members
1355
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1356
+ msgid "Time-based expiration"
1357
+ msgstr "시간 기준 만료"
1358
+
1359
+ # @ wp-members
1360
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:163
1361
+ msgid "Allows for access to expire"
1362
+ msgstr "만료에 접근 허용"
1363
+
1364
+ # @ wp-members
1365
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1366
+ msgid "Trial period"
1367
+ msgstr "시험 사용 기간"
1368
+
1369
+ # @ wp-members
1370
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:164
1371
+ msgid "Allows for a trial period"
1372
+ msgstr "시험사용 기간 허요"
1373
+
1374
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:166
1375
+ msgid "Subscription Settings"
1376
+ msgstr ""
1377
+
1378
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:176
1379
+ msgid "Other Settings"
1380
+ msgstr ""
1381
+
1382
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1383
+ msgid "Activation"
1384
+ msgstr ""
1385
+
1386
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:182
1387
+ msgid ""
1388
+ "Send initial activation link and password reset link instead of new "
1389
+ "password. (Requires additional configuration)"
1390
+ msgstr ""
1391
+
1392
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1393
+ msgid "Enable Products"
1394
+ msgstr ""
1395
+
1396
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:183
1397
+ msgid "Enables creation of different membership products"
1398
+ msgstr ""
1399
+
1400
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1401
+ msgid "Clone menus"
1402
+ msgstr ""
1403
+
1404
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:184
1405
+ msgid "Enables logged in menus"
1406
+ msgstr ""
1407
+
1408
+ # @ wp-members
1409
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1410
+ msgid "Notify admin"
1411
+ msgstr "관리자에게 알림"
1412
+
1413
+ # @ wp-members
1414
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:185
1415
+ #, php-format
1416
+ msgid "Notify %s for each new registration? %s"
1417
+ msgstr "새로운 새로운 회원가입을 %s에 알림? %s"
1418
+
1419
+ # @ wp-members
1420
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1421
+ msgid "Moderate registration"
1422
+ msgstr "회원가입 검토"
1423
+
1424
+ # @ wp-members
1425
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:186
1426
+ msgid "Holds new registrations for admin approval"
1427
+ msgstr " 회원가입은 관리자 승인 필요"
1428
+
1429
+ # @ wp-members
1430
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1431
+ msgid "Ignore warning messages"
1432
+ msgstr "경고 메시지 무시하기"
1433
+
1434
+ # @ wp-members
1435
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:187
1436
+ msgid "Ignores WP-Members warning messages in the admin panel"
1437
+ msgstr "관리자 화면에서 WP-Members 경고 메시지 무시하기"
1438
+
1439
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:198
1440
+ msgid "Attribution"
1441
+ msgstr "기여"
1442
+
1443
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:200
1444
+ msgid ""
1445
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
1446
+ msgstr ""
1447
+ "기여에 대해 감사드립니다! 회원가입 폼에 \"powered by\" 링크를 표시해주세요."
1448
+
1449
+ # @ wp-members
1450
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:203
1451
+ msgid "Enable CAPTCHA"
1452
+ msgstr "CAPTCHA 활성화"
1453
+
1454
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:208
1455
+ msgid "reCAPTCHA v2"
1456
+ msgstr ""
1457
+
1458
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:209
1459
+ msgid "reCAPTCHA v3"
1460
+ msgstr ""
1461
+
1462
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:210
1463
+ msgid "Really Simple CAPTCHA"
1464
+ msgstr ""
1465
+
1466
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:217
1467
+ msgid "Login Page:"
1468
+ msgstr ""
1469
+
1470
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:220
1471
+ msgid "Specify a login page (optional)"
1472
+ msgstr ""
1473
+
1474
+ # @ wp-members
1475
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:229
1476
+ msgid "Register Page:"
1477
+ msgstr "회원가입 페이지:"
1478
+
1479
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:232
1480
+ msgid "For creating a register link in the login form"
1481
+ msgstr "로그인 폼에 회원가입 링크 생성"
1482
+
1483
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:241
1484
+ msgid "User Profile Page:"
1485
+ msgstr "사용자 프로필 페이지:"
1486
+
1487
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:244
1488
+ msgid "For creating a forgot password link in the login form"
1489
+ msgstr "로그인 폼에서 분실 비밀번호 링크 생성"
1490
+
1491
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:250
1492
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:252
1493
+ msgid "Stylesheet"
1494
+ msgstr ""
1495
+
1496
+ # @ wp-members
1497
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:261
1498
+ msgid "Custom Stylesheet:"
1499
+ msgstr "사용자 정의 스타일시트:"
1500
+
1501
+ # @ wp-members
1502
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:266
1503
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:293
1504
+ msgid "Update Settings"
1505
+ msgstr "설정 업데이트"
1506
+
1507
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:274
1508
+ msgid "Custom Post Types"
1509
+ msgstr ""
1510
+
1511
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:280
1512
+ msgid "Add to WP-Members Settings"
1513
+ msgstr ""
1514
+
1515
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:296
1516
+ msgid ""
1517
+ "Please keep in mind that Custom Post Types are \"custom\" and therefore, not "
1518
+ "all of them will function exactly the same way. WP-Members will certainly "
1519
+ "work with any post type that operate like a post or a page; but you will "
1520
+ "need to review any custom post type added to determine that it functions the "
1521
+ "way you expect."
1522
+ msgstr ""
1523
+
1524
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:315
1525
+ msgid "Close"
1526
+ msgstr ""
1527
+
1528
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:333
1529
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:334
1530
+ msgid "WP-Members Settings"
1531
+ msgstr ""
1532
+
1533
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:335
1534
+ msgid ""
1535
+ "The following is your WP-Members settings information if needed for support."
1536
+ msgstr ""
1537
+
1538
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:362
1539
+ msgid "Click to Copy"
1540
+ msgstr ""
1541
+
1542
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:442
1543
+ msgid "Custom Post Type settings were updated"
1544
+ msgstr ""
1545
+
1546
+ # @ wp-members
1547
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:551
1548
+ msgid "WP-Members settings were updated"
1549
+ msgstr "WP-Members 설정이 업데이트 됐습니다"
1550
+
1551
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:623
1552
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:654
1553
+ msgid "USE CUSTOM URL BELOW"
1554
+ msgstr "아래에서 사용자 정의 URL 사용"
1555
+
1556
+ #: includes/admin/tabs/class-wp-members-admin-tab-options.php:643
1557
+ msgid "Select a page"
1558
+ msgstr "페이지 선택"
1559
+
1560
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:70
1561
+ msgid "Name"
1562
+ msgstr ""
1563
+
1564
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:71
1565
+ msgid "Enabled"
1566
+ msgstr ""
1567
+
1568
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:72
1569
+ msgid "File"
1570
+ msgstr ""
1571
+
1572
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:73
1573
+ msgid "Version"
1574
+ msgstr ""
1575
+
1576
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:74
1577
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:186
1578
+ msgid "Description"
1579
+ msgstr ""
1580
+
1581
+ #: includes/admin/tabs/class-wp-members-dropins-table.php:117
1582
+ #: includes/admin/tabs/class-wp-members-fields-table.php:108
1583
+ msgid "Save Settings"
1584
+ msgstr ""
1585
+
1586
+ #: includes/admin/tabs/class-wp-members-fields-table.php:43
1587
+ msgid "delete"
1588
+ msgstr ""
1589
+
1590
+ #: includes/admin/tabs/class-wp-members-fields-table.php:57
1591
+ msgid "Display Label"
1592
+ msgstr ""
1593
+
1594
+ #: includes/admin/tabs/class-wp-members-fields-table.php:61
1595
+ msgid "Required"
1596
+ msgstr ""
1597
+
1598
+ #: includes/admin/tabs/class-wp-members-fields-table.php:63
1599
+ msgid "Users Screen"
1600
+ msgstr "사용자 화면"
1601
+
1602
+ #: includes/admin/tabs/class-wp-members-fields-table.php:64
1603
+ msgid "Users Search"
1604
+ msgstr ""
1605
+
1606
+ #: includes/admin/tabs/class-wp-members-fields-table.php:66
1607
+ msgid "Sort"
1608
+ msgstr ""
1609
+
1610
+ #: includes/admin/tabs/class-wp-members-fields-table.php:107
1611
+ msgid "Delete Selected"
1612
+ msgstr ""
1613
+
1614
+ #: includes/api/api.php:328 includes/class-wp-members.php:1588
1615
+ msgid "log in"
1616
+ msgstr "로그인"
1617
+
1618
+ #: includes/api/api.php:329
1619
+ msgid "log out"
1620
+ msgstr "로그아웃"
1621
+
1622
+ #: includes/class-wp-members-activation-link.php:21
1623
+ msgid "Click to activate your account: "
1624
+ msgstr ""
1625
+
1626
+ #: includes/class-wp-members-activation-link.php:22
1627
+ msgid "Thank you for activating your account."
1628
+ msgstr ""
1629
+
1630
+ #: includes/class-wp-members-activation-link.php:23
1631
+ msgid "Activation key was expired or invalid"
1632
+ msgstr ""
1633
+
1634
+ #: includes/class-wp-members-captcha.php:217 includes/deprecated - Copy.php:500
1635
+ #: includes/deprecated.php:501
1636
+ msgid "You have entered an incorrect code value. Please try again."
1637
+ msgstr "올바른 코드 값을 입력하지 않았습니다. 다시 해주세요."
1638
+
1639
+ #: includes/class-wp-members-forms.php:1048
1640
+ #: includes/class-wp-members-forms.php:1646 includes/class-wp-members.php:1538
1641
+ #, php-format
1642
+ msgid "Please indicate that you agree to the %s Terms of Service %s"
1643
+ msgstr ""
1644
+
1645
+ #: includes/class-wp-members-forms.php:1049
1646
+ #: includes/class-wp-members-forms.php:1647 includes/class-wp-members.php:1489
1647
+ msgid "TOS"
1648
+ msgstr "이용약관"
1649
+
1650
+ # @ wp-members
1651
+ #: includes/class-wp-members-forms.php:1049
1652
+ #: includes/class-wp-members-forms.php:1647 templates/tos.php:20
1653
+ msgid "Terms of Service"
1654
+ msgstr "이용약관"
1655
+
1656
+ # @ wp-members
1657
+ #: includes/class-wp-members-forms.php:1868
1658
+ #: includes/class-wp-members-user-profile.php:473
1659
+ msgid "Activate this user?"
1660
+ msgstr "이 사용자 활성화?"
1661
+
1662
+ #: includes/class-wp-members-menus.php:131
1663
+ msgid "Display"
1664
+ msgstr ""
1665
+
1666
+ #: includes/class-wp-members-menus.php:139
1667
+ msgid "Logged In Users"
1668
+ msgstr ""
1669
+
1670
+ #: includes/class-wp-members-menus.php:146
1671
+ msgid "Logged Out Users"
1672
+ msgstr ""
1673
+
1674
+ #: includes/class-wp-members-menus.php:153
1675
+ msgid "All Users"
1676
+ msgstr ""
1677
+
1678
+ #: includes/class-wp-members-menus.php:167
1679
+ #, php-format
1680
+ msgid "%sAdd membership products%s to restrict menu to a membership"
1681
+ msgstr ""
1682
+
1683
+ #: includes/class-wp-members-menus.php:169
1684
+ msgid "Restrict menu item to a membership product"
1685
+ msgstr ""
1686
+
1687
+ #: includes/class-wp-members-products.php:302
1688
+ msgid "Product"
1689
+ msgstr ""
1690
+
1691
+ #: includes/class-wp-members-products.php:303
1692
+ msgid "Products"
1693
+ msgstr ""
1694
+
1695
+ #: includes/class-wp-members-products.php:309
1696
+ #, php-format
1697
+ msgid "All %s"
1698
+ msgstr ""
1699
+
1700
+ #: includes/class-wp-members-products.php:310
1701
+ #, php-format
1702
+ msgid "Add New %s"
1703
+ msgstr ""
1704
+
1705
+ #: includes/class-wp-members-products.php:311
1706
+ msgid "Add New"
1707
+ msgstr ""
1708
+
1709
+ #: includes/class-wp-members-products.php:312
1710
+ #, php-format
1711
+ msgid "New %s"
1712
+ msgstr ""
1713
+
1714
+ #: includes/class-wp-members-products.php:313
1715
+ #, php-format
1716
+ msgid "Edit %s"
1717
+ msgstr ""
1718
+
1719
+ #: includes/class-wp-members-products.php:314
1720
+ #, php-format
1721
+ msgid "Update %s"
1722
+ msgstr ""
1723
+
1724
+ #: includes/class-wp-members-products.php:315
1725
+ #: includes/class-wp-members-products.php:316
1726
+ #, php-format
1727
+ msgid "View %s"
1728
+ msgstr ""
1729
+
1730
+ #: includes/class-wp-members-products.php:317
1731
+ #, php-format
1732
+ msgid "Search %s"
1733
+ msgstr ""
1734
+
1735
+ #: includes/class-wp-members-products.php:318
1736
+ msgid "Not found"
1737
+ msgstr ""
1738
+
1739
+ #: includes/class-wp-members-products.php:319
1740
+ msgid "Not found in Trash"
1741
+ msgstr ""
1742
+
1743
+ #: includes/class-wp-members-products.php:320
1744
+ msgid "Insert into item"
1745
+ msgstr ""
1746
+
1747
+ #: includes/class-wp-members-products.php:321
1748
+ #, php-format
1749
+ msgid "Save %s Details"
1750
+ msgstr ""
1751
+
1752
+ #: includes/class-wp-members-products.php:324
1753
+ msgid "Membership Product"
1754
+ msgstr ""
1755
+
1756
+ #: includes/class-wp-members-products.php:325
1757
+ msgid "WP-Members Membership Products"
1758
+ msgstr ""
1759
+
1760
+ #: includes/class-wp-members-pwd-reset.php:31
1761
+ #: includes/class-wp-members-pwd-reset.php:32
1762
+ msgid ""
1763
+ "Sorry, no password reset key was found. Please check your email and try "
1764
+ "again."
1765
+ msgstr ""
1766
+
1767
+ #: includes/class-wp-members-pwd-reset.php:33
1768
+ msgid "Sorry, the password reset key is expired."
1769
+ msgstr ""
1770
+
1771
+ #: includes/class-wp-members-shortcodes.php:147
1772
+ msgid ""
1773
+ "This is a generic message to display the form message dialog in the "
1774
+ "Customizer."
1775
+ msgstr ""
1776
+
1777
+ # @ default
1778
+ #: includes/class-wp-members-shortcodes.php:158
1779
+ #: includes/class-wp-members.php:1566 includes/deprecated - Copy.php:695
1780
+ msgid "There was an error with the CAPTCHA form."
1781
+ msgstr "CAPTCHA 폼에 에러가 있습니다."
1782
+
1783
+ #: includes/class-wp-members-shortcodes.php:717
1784
+ msgid "Click here to log out."
1785
+ msgstr ""
1786
+
1787
+ #: includes/class-wp-members-shortcodes.php:786
1788
+ #: includes/class-wp-members-user.php:172 includes/class-wp-members.php:1540
1789
+ #: includes/class-wp-members.php:1590
1790
+ msgid "Register"
1791
+ msgstr "회원가입"
1792
+
1793
+ #: includes/class-wp-members-shortcodes.php:789
1794
+ #: includes/class-wp-members.php:1508
1795
+ msgid "Log In"
1796
+ msgstr "로그인"
1797
+
1798
+ # @ wp-members
1799
+ #: includes/class-wp-members-user-profile.php:38
1800
+ msgid "WP-Members Additional Fields"
1801
+ msgstr "WP-Members 추가 필드"
1802
+
1803
+ # @ wp-members
1804
+ #: includes/class-wp-members-user-profile.php:38
1805
+ msgid "Additional Information"
1806
+ msgstr "추가 정보"
1807
+
1808
+ # @ wp-members
1809
+ #: includes/class-wp-members-user-profile.php:463
1810
+ msgid "Reactivate this user?"
1811
+ msgstr " 사용자 재활성화?"
1812
+
1813
+ # @ wp-members
1814
+ #: includes/class-wp-members-user-profile.php:468
1815
+ msgid "Deactivate this user?"
1816
+ msgstr "이 사용자 비활성화?"
1817
+
1818
+ # @ wp-members
1819
+ #: includes/class-wp-members-user-profile.php:522
1820
+ msgid "IP @ registration"
1821
+ msgstr "IP @ registration"
1822
+
1823
+ # @ default
1824
+ #: includes/class-wp-members-user.php:199 includes/class-wp-members.php:1565
1825
+ msgid "There was an error processing the form."
1826
+ msgstr " 처리 에러가 있습니다."
1827
+
1828
+ # @ wp-members
1829
+ #: includes/class-wp-members-user.php:1118
1830
+ msgid "<strong>ERROR</strong>: User has not been activated."
1831
+ msgstr "<strong>에러</strong>: 사용자가 활성화 되지 않았습니다."
1832
+
1833
+ #: includes/class-wp-members-widget.php:24
1834
+ msgid "Displays the WP-Members sidebar login."
1835
+ msgstr "WP-Members 사이드바 로그인 표시하기."
1836
+
1837
+ # @ wp-members
1838
+ #: includes/class-wp-members-widget.php:39
1839
+ #: includes/class-wp-members-widget.php:82
1840
+ msgid "Login Status"
1841
+ msgstr "로그인 상태"
1842
+
1843
+ # @ wp-members
1844
+ #: includes/class-wp-members-widget.php:46
1845
+ msgid "Title:"
1846
+ msgstr "제목:"
1847
+
1848
+ #: includes/class-wp-members-widget.php:50
1849
+ msgid "Redirect to (optional):"
1850
+ msgstr ""
1851
+
1852
+ #: includes/class-wp-members.php:1028 includes/class-wp-members.php:1038
1853
+ msgid "You must be logged in to view this content."
1854
+ msgstr ""
1855
+
1856
+ #: includes/class-wp-members.php:1044
1857
+ msgid "The page you are looking for does not exist"
1858
+ msgstr ""
1859
+
1860
+ #: includes/class-wp-members.php:1436
1861
+ #, php-format
1862
+ msgid ""
1863
+ "You have a linked page in the WP-Members page settings that corresponds to a "
1864
+ "post ID that no longer exists. Please %s review and update the %s page "
1865
+ "settings %s."
1866
+ msgstr ""
1867
+
1868
+ #: includes/class-wp-members.php:1474
1869
+ msgid "First Name"
1870
+ msgstr "이름"
1871
+
1872
+ # @ wp-members
1873
+ #: includes/class-wp-members.php:1475
1874
+ msgid "Last Name"
1875
+ msgstr ""
1876
+
1877
+ #: includes/class-wp-members.php:1476
1878
+ msgid "Address 1"
1879
+ msgstr "주소1"
1880
+
1881
+ #: includes/class-wp-members.php:1477
1882
+ msgid "Address 2"
1883
+ msgstr "주소2"
1884
+
1885
+ #: includes/class-wp-members.php:1478
1886
+ msgid "City"
1887
+ msgstr "시"
1888
+
1889
+ #: includes/class-wp-members.php:1479
1890
+ msgid "State"
1891
+ msgstr "주"
1892
+
1893
+ #: includes/class-wp-members.php:1480
1894
+ msgid "Zip"
1895
+ msgstr "우편번호"
1896
+
1897
+ #: includes/class-wp-members.php:1481
1898
+ msgid "Country"
1899
+ msgstr "국가"
1900
+
1901
+ #: includes/class-wp-members.php:1482
1902
+ msgid "Day Phone"
1903
+ msgstr "전화번호"
1904
+
1905
+ #: includes/class-wp-members.php:1483 includes/class-wp-members.php:1524
1906
+ msgid "Email"
1907
+ msgstr ""
1908
+
1909
+ #: includes/class-wp-members.php:1484
1910
+ msgid "Confirm Email"
1911
+ msgstr "이메일 확인"
1912
+
1913
+ #: includes/class-wp-members.php:1485
1914
+ msgid "Website"
1915
+ msgstr "웹사이트"
1916
+
1917
+ #: includes/class-wp-members.php:1486
1918
+ msgid "Biographical Info"
1919
+ msgstr "자기 소개"
1920
+
1921
+ #: includes/class-wp-members.php:1487 includes/class-wp-members.php:1507
1922
+ #: includes/class-wp-members.php:1587
1923
+ msgid "Password"
1924
+ msgstr "비밀번호"
1925
+
1926
+ #: includes/class-wp-members.php:1488
1927
+ msgid "Confirm Password"
1928
+ msgstr "비밀번호 확인"
1929
+
1930
+ # @ wp-members
1931
+ #: includes/class-wp-members.php:1499
1932
+ msgid "You are not logged in."
1933
+ msgstr "로그인하지 않았습니다."
1934
+
1935
+ # @ wp-members
1936
+ #: includes/class-wp-members.php:1505
1937
+ msgid "Existing Users Log In"
1938
+ msgstr "기존 사용자 로그인"
1939
+
1940
+ #: includes/class-wp-members.php:1506 includes/class-wp-members.php:1586
1941
+ msgid "Username or Email"
1942
+ msgstr "아이디 또는 이메일 "
1943
+
1944
+ #: includes/class-wp-members.php:1509
1945
+ msgid "Remember Me"
1946
+ msgstr "기억하기"
1947
+
1948
+ # @ wp-members
1949
+ #: includes/class-wp-members.php:1510
1950
+ msgid "Forgot password?"
1951
+ msgstr "비밀번호 분실"
1952
+
1953
+ # @ wp-members
1954
+ #: includes/class-wp-members.php:1511
1955
+ msgid "Click here to reset"
1956
+ msgstr "초기화"
1957
+
1958
+ # @ wp-members
1959
+ #: includes/class-wp-members.php:1512
1960
+ msgid "New User?"
1961
+ msgstr "신규 가입"
1962
+
1963
+ # @ wp-members
1964
+ #: includes/class-wp-members.php:1513
1965
+ msgid "Click here to register"
1966
+ msgstr "회원가입"
1967
+
1968
+ # @ wp-members
1969
+ #: includes/class-wp-members.php:1516 includes/class-wp-members.php:1571
1970
+ msgid "Change Password"
1971
+ msgstr "비밀번호 변경"
1972
+
1973
+ #: includes/class-wp-members.php:1517
1974
+ msgid "New password"
1975
+ msgstr ""
1976
+
1977
+ #: includes/class-wp-members.php:1518
1978
+ msgid "Confirm new password"
1979
+ msgstr "새 비밀번호 확인"
1980
+
1981
+ # @ wp-members
1982
+ #: includes/class-wp-members.php:1519
1983
+ msgid "Update Password"
1984
+ msgstr "비밀번호 업데이트"
1985
+
1986
+ # @ wp-members
1987
+ #: includes/class-wp-members.php:1522
1988
+ msgid "Reset Forgotten Password"
1989
+ msgstr "분실 비밀번호 초기화"
1990
+
1991
+ #: includes/class-wp-members.php:1525
1992
+ msgid "Reset Password"
1993
+ msgstr ""
1994
+
1995
+ #: includes/class-wp-members.php:1526
1996
+ msgid "Forgot username?"
1997
+ msgstr "사용자 이름을 잊으셨나요?"
1998
+
1999
+ #: includes/class-wp-members.php:1527
2000
+ msgid "Click here"
2001
+ msgstr ""
2002
+
2003
+ #: includes/class-wp-members.php:1530 includes/class-wp-members.php:1532
2004
+ msgid "Retrieve username"
2005
+ msgstr ""
2006
+
2007
+ #: includes/class-wp-members.php:1531
2008
+ msgid "Email Address"
2009
+ msgstr ""
2010
+
2011
+ # @ wp-members
2012
+ #: includes/class-wp-members.php:1535
2013
+ msgid "New User Registration"
2014
+ msgstr "새로운 사용자 등록"
2015
+
2016
+ # @ wp-members
2017
+ #: includes/class-wp-members.php:1536
2018
+ msgid "Choose a Username"
2019
+ msgstr "아이디"
2020
+
2021
+ #: includes/class-wp-members.php:1537
2022
+ msgid "Input the code:"
2023
+ msgstr "코드 삽입:"
2024
+
2025
+ # @ wp-members
2026
+ #: includes/class-wp-members.php:1539
2027
+ msgid "Reset Form"
2028
+ msgstr " 초기화"
2029
+
2030
+ # @ wp-members
2031
+ #: includes/class-wp-members.php:1542
2032
+ msgid "Required field"
2033
+ msgstr "필수란"
2034
+
2035
+ # @ wp-members
2036
+ #: includes/class-wp-members.php:1545 includes/deprecated - Copy.php:741
2037
+ msgid "Edit Your Information"
2038
+ msgstr "정보 변경하기"
2039
+
2040
+ # @ wp-members
2041
+ #: includes/class-wp-members.php:1547
2042
+ msgid "Update Profile"
2043
+ msgstr "프로필 업데이트"
2044
+
2045
+ #: includes/class-wp-members.php:1548
2046
+ msgid "Update this file"
2047
+ msgstr ""
2048
+
2049
+ # @ wp-members
2050
+ #: includes/class-wp-members.php:1551
2051
+ msgid "Login Failed!"
2052
+ msgstr "로그인 실패"
2053
+
2054
+ # @ wp-members
2055
+ #: includes/class-wp-members.php:1552
2056
+ msgid "You entered an invalid username or password."
2057
+ msgstr "유효하지 않은 아이디 또는 비밀번호입니다."
2058
+
2059
+ # @ wp-members
2060
+ #: includes/class-wp-members.php:1553
2061
+ msgid "Click here to continue."
2062
+ msgstr "계속하기"
2063
+
2064
+ # @ wp-members
2065
+ #: includes/class-wp-members.php:1554
2066
+ msgid "Password fields cannot be empty"
2067
+ msgstr "비밀번호는 필수입니다."
2068
+
2069
+ #: includes/class-wp-members.php:1555
2070
+ msgid "Sorry, that email address was not found."
2071
+ msgstr ""
2072
+
2073
+ #: includes/class-wp-members.php:1556
2074
+ #, php-format
2075
+ msgid "An email was sent to %s with your username."
2076
+ msgstr ""
2077
+
2078
+ # @ wp-members
2079
+ #: includes/class-wp-members.php:1557
2080
+ #, php-format
2081
+ msgid "Sorry, %s is a required field."
2082
+ msgstr "죄송합니다. %s는 필수란입니다."
2083
+
2084
+ # @ wp-members
2085
+ #: includes/class-wp-members.php:1558
2086
+ msgid "You must enter a valid email address."
2087
+ msgstr "유효한 이메일 주소를 입력해야 합니다."
2088
+
2089
+ # @ wp-members
2090
+ #: includes/class-wp-members.php:1559
2091
+ msgid "The username cannot include non-alphanumeric characters."
2092
+ msgstr "아이디는 알파벳이나 숫자만 사용합니다."
2093
+
2094
+ # @ wp-members
2095
+ #: includes/class-wp-members.php:1560
2096
+ msgid "Sorry, username is a required field"
2097
+ msgstr "죄송합니다. 아이디는 필수란입니다."
2098
+
2099
+ # @ wp-members
2100
+ #: includes/class-wp-members.php:1561
2101
+ msgid "Passwords did not match."
2102
+ msgstr "비밀번호가 일치하지 않습니다"
2103
+
2104
+ # @ wp-members
2105
+ #: includes/class-wp-members.php:1562
2106
+ msgid "Emails did not match."
2107
+ msgstr "이메일이 일치하지 않습니다"
2108
+
2109
+ # @ wp-members
2110
+ #: includes/class-wp-members.php:1563
2111
+ msgid "You must complete the CAPTCHA form."
2112
+ msgstr "캡챠 폼을 완성해야 합니다."
2113
+
2114
+ #: includes/class-wp-members.php:1564
2115
+ msgid "CAPTCHA was not valid."
2116
+ msgstr ""
2117
+
2118
+ #: includes/class-wp-members.php:1567
2119
+ #, php-format
2120
+ msgid ""
2121
+ "Sorry, you can only upload the following file types for the %s field: %s."
2122
+ msgstr ""
2123
+
2124
+ # @ wp-members
2125
+ #: includes/class-wp-members.php:1570
2126
+ msgid "Edit My Information"
2127
+ msgstr " 정보 수정"
2128
+
2129
+ # @ wp-members
2130
+ #: includes/class-wp-members.php:1572 includes/class-wp-members.php:1575
2131
+ #: includes/class-wp-members.php:1577 includes/class-wp-members.php:1582
2132
+ #, php-format
2133
+ msgid "You are logged in as %s"
2134
+ msgstr "%s으로 로그인 됨"
2135
+
2136
+ #: includes/class-wp-members.php:1573
2137
+ msgid "Log out"
2138
+ msgstr ""
2139
+
2140
+ #: includes/class-wp-members.php:1574
2141
+ msgid "Edit profile"
2142
+ msgstr ""
2143
+
2144
+ # @ wp-members
2145
+ #: includes/class-wp-members.php:1574
2146
+ msgid "Begin using the site."
2147
+ msgstr "사이트 사용하기"
2148
+
2149
+ # @ wp-members
2150
+ #: includes/class-wp-members.php:1576
2151
+ msgid "Click to log out"
2152
+ msgstr "로그아웃 하려면 클릭"
2153
+
2154
+ # @ wp-members
2155
+ #: includes/class-wp-members.php:1578
2156
+ msgid "click to log out"
2157
+ msgstr "로그아웃 하려면 클릭"
2158
+
2159
+ #: includes/class-wp-members.php:1579
2160
+ msgid "Log Out"
2161
+ msgstr "로그아웃"
2162
+
2163
+ # @ wp-members
2164
+ #: includes/class-wp-members.php:1583
2165
+ msgid "click here to log out"
2166
+ msgstr "로그아웃 하려면 클릭"
2167
+
2168
+ # @ wp-members
2169
+ #: includes/class-wp-members.php:1584
2170
+ msgid "Login Failed!<br />You entered an invalid username or password."
2171
+ msgstr "로그인 실패!<br />유효하지 않은 아이디 또는 비밀번호를 입력했습니다."
2172
+
2173
+ # @ wp-members
2174
+ #: includes/class-wp-members.php:1589
2175
+ msgid "Forgot?"
2176
+ msgstr "비밀번호 분실"
2177
+
2178
+ #: includes/class-wp-members.php:1593
2179
+ msgid ""
2180
+ "This content is restricted to site members. If you are an existing user, "
2181
+ "please log in. New users may register below."
2182
+ msgstr ""
2183
+ "이 콘텐츠는 사이트 회원 전용입니다. 기존의 사용자라면 로그인 하세요. 사용"
2184
+ "자는 아래에서 회원가입 있습니다."
2185
+
2186
+ #: includes/class-wp-members.php:1594
2187
+ msgid ""
2188
+ "Congratulations! Your registration was successful.<br /><br />You may now "
2189
+ "log in using the password that was emailed to you."
2190
+ msgstr ""
2191
+ "축하합니다! 회원가입이 성공했습니다.<br /><br />이메일로 보낸 비밀번호를 사용"
2192
+ "해서 로그인 할 수 있습니다."
2193
+
2194
+ #: includes/class-wp-members.php:1597
2195
+ msgid "Sorry, that username is taken, please try another."
2196
+ msgstr "죄송합니다. 해당 아이디는 사용 중입니다. 다른 것으로 해주세요."
2197
+
2198
+ #: includes/class-wp-members.php:1598
2199
+ msgid ""
2200
+ "Sorry, that email address already has an account.<br />Please try another."
2201
+ msgstr ""
2202
+ "죄송합니다. 해당 이메일 주소는 이미 사용 중입니다. <br />다른 것으로 해주세"
2203
+ "요."
2204
+
2205
+ # @ wp-members
2206
+ #: includes/class-wp-members.php:1599
2207
+ msgid "Your information was updated!"
2208
+ msgstr "회원 정보가 업데이트 됐습니다!"
2209
+
2210
+ # @ wp-members
2211
+ #: includes/class-wp-members.php:1602
2212
+ msgid "Passwords did not match.<br /><br />Please try again."
2213
+ msgstr "비밀번호가 일치하지 않습니다. <br /><br />다시 해주세요."
2214
+
2215
+ #: includes/class-wp-members.php:1603
2216
+ msgid "Password successfully changed!"
2217
+ msgstr ""
2218
+
2219
+ # @ wp-members
2220
+ #: includes/class-wp-members.php:1604
2221
+ msgid "Either the username or email address do not exist in our records."
2222
+ msgstr "사용자명 또는 이메일 주소가 데이터베이스에 존재하지 않습니다."
2223
+
2224
+ #: includes/class-wp-members.php:1605
2225
+ msgid ""
2226
+ "Password successfully reset!<br /><br />An email containing a new password "
2227
+ "has been sent to the email address on file for your account."
2228
+ msgstr ""
2229
+
2230
+ #: includes/class-wp-members.php:1607
2231
+ msgid "This content requires the following membership: "
2232
+ msgstr ""
2233
+
2234
+ #: includes/class-wp-members.php:1608
2235
+ msgid "This content requires one of the following memberships: "
2236
+ msgstr ""
2237
+
2238
+ #: includes/class-wp-members.php:1721
2239
+ msgid "Show forms as logged out"
2240
+ msgstr ""
2241
+
2242
+ #: includes/class-wp-members.php:1730
2243
+ msgid "Show form message dialog"
2244
+ msgstr ""
2245
+
2246
+ #: includes/class-wp-members.php:1838
2247
+ msgid "(more&hellip;)"
2248
+ msgstr ""
2249
+
2250
+ #: includes/cli/class-wp-members-cli.php:17
2251
+ #, php-format
2252
+ msgid "User: %s"
2253
+ msgstr ""
2254
+
2255
+ # @ wp-members
2256
+ #: includes/deprecated - Copy.php:472 includes/deprecated.php:473
2257
+ msgid "We were unable to validate the public key."
2258
+ msgstr "공개 키를 인증할 수 없습니다."
2259
+
2260
+ # @ wp-members
2261
+ #: includes/deprecated - Copy.php:476 includes/deprecated.php:477
2262
+ msgid "We were unable to validate the private key."
2263
+ msgstr "비공개 키를 인증할 수 없습니다."
2264
+
2265
+ # @ wp-members
2266
+ #: includes/deprecated - Copy.php:480 includes/deprecated.php:481
2267
+ msgid "The challenge parameter of the verify script was incorrect."
2268
+ msgstr "인증 스크립트 매개변수가 올바르지 않습니다."
2269
+
2270
+ # @ wp-members
2271
+ #: includes/deprecated - Copy.php:484 includes/deprecated.php:485
2272
+ msgid "The CAPTCHA solution was incorrect."
2273
+ msgstr "CAPTCHA 솔루션이 올바르지 않습니다."
2274
+
2275
+ # @ wp-members
2276
+ #: includes/deprecated - Copy.php:488 includes/deprecated.php:489
2277
+ msgid "The parameters to verify were incorrect"
2278
+ msgstr "인증할 매개변수가 올바르지 않습니다"
2279
+
2280
+ # @ wp-members
2281
+ #: includes/deprecated - Copy.php:492 includes/deprecated.php:493
2282
+ msgid ""
2283
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
2284
+ msgstr "reCAPTCHA API 키가 보안을 이유로 특정 도메인 이름에 귀속돼있습니다."
2285
+
2286
+ # @ wp-members
2287
+ #: includes/deprecated - Copy.php:496 includes/deprecated.php:497
2288
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
2289
+ msgstr "reCAPTCHA 서버가 응답하지 않습니다. 다시 제출해보세요."
2290
+
2291
+ #. translators: %s: title of menu item which is invalid
2292
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:92
2293
+ #, php-format
2294
+ msgid "%s (Invalid)"
2295
+ msgstr ""
2296
+
2297
+ #. translators: %s: title of menu item in draft status
2298
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:96
2299
+ #, php-format
2300
+ msgid "%s (Pending)"
2301
+ msgstr ""
2302
+
2303
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:123
2304
+ msgid "Move up"
2305
+ msgstr ""
2306
+
2307
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:136
2308
+ msgid "Move down"
2309
+ msgstr ""
2310
+
2311
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:138
2312
+ msgid "Edit Menu Item"
2313
+ msgstr ""
2314
+
2315
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:149
2316
+ msgid "URL"
2317
+ msgstr ""
2318
+
2319
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:156
2320
+ msgid "Navigation Label"
2321
+ msgstr ""
2322
+
2323
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:162
2324
+ msgid "Title Attribute"
2325
+ msgstr ""
2326
+
2327
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:169
2328
+ msgid "Open link in a new window/tab"
2329
+ msgstr ""
2330
+
2331
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:174
2332
+ msgid "CSS Classes (optional)"
2333
+ msgstr ""
2334
+
2335
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:180
2336
+ msgid "Link Relationship (XFN)"
2337
+ msgstr ""
2338
+
2339
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:188
2340
+ msgid ""
2341
+ "The description will be displayed in the menu if the current theme supports "
2342
+ "it."
2343
+ msgstr ""
2344
+
2345
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:210
2346
+ #, php-format
2347
+ msgid "Original: %s"
2348
+ msgstr ""
2349
+
2350
+ #: includes/walkers/class-wp-members-walker-nav-menu.php:223
2351
+ msgid "Remove"
2352
+ msgstr ""
2353
+
2354
+ # @ wp-members
2355
+ #: templates/tos.php:32
2356
+ #, php-format
2357
+ msgid "%sclose%s"
2358
+ msgstr "%s닫기%s"
2359
+
2360
+ # @ wp-members
2361
+ #: templates/tos.php:34
2362
+ #, php-format
2363
+ msgid "%sprint%s"
2364
+ msgstr "%s인쇄%s"
2365
+
2366
+ #. Plugin Name of the plugin/theme
2367
+ msgid "WP-Members"
2368
+ msgstr ""
2369
+
2370
+ #. Plugin URI of the plugin/theme
2371
+ msgid "https://rocketgeek.com"
2372
+ msgstr ""
2373
+
2374
+ #. Description of the plugin/theme
2375
+ msgid ""
2376
+ "WP access restriction and user registration. For more information on plugin "
2377
+ "features, refer to <a href=\"https://rocketgeek.com/plugins/wp-members/users-"
2378
+ "guide/\">the online Users Guide</a>. A <a href=\"https://rocketgeek.com/"
2379
+ "plugins/wp-members/quick-start-guide/\">Quick Start Guide</a> is also "
2380
+ "available. WP-Members(tm) is a trademark of butlerblog.com."
2381
+ msgstr ""
2382
+
2383
+ #. Author of the plugin/theme
2384
+ msgid "Chad Butler"
2385
+ msgstr ""
2386
+
2387
+ #. Author URI of the plugin/theme
2388
+ msgid "http://butlerblog.com/"
2389
+ msgstr ""
2390
+
2391
+ # @ wp-members
2392
+ #~ msgid "Click to log out."
2393
+ #~ msgstr "로그아웃 하려면 클릭"
2394
+
2395
+ # @ wp-members
2396
+ #~ msgid "You have set WP-Members to turn off the registration process"
2397
+ #~ msgstr "WP-Members 설정을 회원가입 과정을 끄도록 했습니다."
2398
+
2399
+ # @ wp-members
2400
+ #~ msgid ""
2401
+ #~ "but you also set to moderate and/or email admin new registrations. You "
2402
+ #~ "will need to set up a registration page for users to register."
2403
+ #~ msgstr ""
2404
+ #~ "또한 새 회원가입을 검토하거나 관리자에게 이메일을 보내도록 설정했습니다. "
2405
+ #~ "사용자가 등록할 수 있도록 회원가입 페이지를 설정해야 합니다."
2406
+
2407
+ #~ msgid "Unblocked?"
2408
+ #~ msgstr "차단 해제?"
2409
+
2410
+ # @ wp-members
2411
+ #~ msgid "Blocked?"
2412
+ #~ msgstr "차단?"
2413
+
2414
+ # @ wp-members
2415
+ #~ msgid "Field Label is required for adding a new field. Nothing was updated."
2416
+ #~ msgstr ""
2417
+ #~ "새 필드를 추가하려면 필드 레이블은 필수입니다. 아무것도 업데이트 되지 않았"
2418
+ #~ "습니다."
2419
+
2420
+ # @ wp-members
2421
+ #~ msgid "Option Name is required for adding a new field. Nothing was updated."
2422
+ #~ msgstr ""
2423
+ #~ "옵션 이름은 새 필드를 추가하는데 필수입니다. 아무것도 업데이트 되지 않았습"
2424
+ #~ "니다."
2425
+
2426
+ #~ msgid "A field with that option name already exists"
2427
+ #~ msgstr "해당 옵션 이름의 필드는 이미 존재합니다"
2428
+
2429
+ # @ wp-members
2430
+ #~ msgid "field was added"
2431
+ #~ msgstr "필드가 추가됐습니다"
2432
+
2433
+ # @ wp-members
2434
+ #~ msgid "field was updated"
2435
+ #~ msgstr "필드가 업데이트 됐습니다"
2436
+
2437
+ # @ wp-members
2438
+ #~ msgid "Option Name"
2439
+ #~ msgstr "옵션 이름"
2440
+
2441
+ # @ wp-members
2442
+ #~ msgid "Additional information for checkbox fields"
2443
+ #~ msgstr "체크박스 추가 정보"
2444
+
2445
+ # @ wp-members
2446
+ #~ msgid "Additional information for dropdown fields"
2447
+ #~ msgstr "드롭다운 필드 추가 정보"
2448
+
2449
+ # @ wp-members
2450
+ #~ msgid "For dropdown, array of values:"
2451
+ #~ msgstr "드롭다운의 경우 값 배열(array):"
2452
+
2453
+ # @ wp-members
2454
+ #~ msgid ""
2455
+ #~ "Determine which fields will display and which are required. This "
2456
+ #~ "includes all fields, both native WP fields and WP-Members custom fields."
2457
+ #~ msgstr ""
2458
+ #~ "표시할 필드와 필수를 결정하세요. 이것은 모든 필드를 포함하며 워드프레스 기"
2459
+ #~ "본 필드와 WP-Members 사용자 정의 필드입니다."
2460
+
2461
+ # @ wp-members
2462
+ #~ msgid "(Note: Email is always mandatory and cannot be changed.)"
2463
+ #~ msgstr "(주의: 이메일은 항상 필수이며 변경할 수 없습니다.)"
2464
+
2465
+ # @ wp-members
2466
+ #~ msgid "Add/Delete"
2467
+ #~ msgstr "추가/삭제"
2468
+
2469
+ # @ wp-members
2470
+ #~ msgid "Checked?"
2471
+ #~ msgstr "Checked?"
2472
+
2473
+ # @ wp-members
2474
+ #~ msgid "Delete"
2475
+ #~ msgstr "삭제"
2476
+
2477
+ # @ wp-members
2478
+ #~ msgid "(Email cannot be removed)"
2479
+ #~ msgstr "(이메일은 제거될 수 없습니다)"
2480
+
2481
+ # @ wp-members
2482
+ #~ msgid "native"
2483
+ #~ msgstr "워드프레스 기본"
2484
+
2485
+ # @ wp-members
2486
+ #~ msgid "Update Fields"
2487
+ #~ msgstr "필드 업데이트"
2488
+
2489
+ # @ wp-members
2490
+ #~ msgid "Please indicate that you agree to the %s TOS %s"
2491
+ #~ msgstr "%s 이용약관 %s에 동의해주세요"
2492
+
2493
+ #~ msgid "%s posts %sed."
2494
+ #~ msgstr "%s 글 %s 됨."
2495
+
2496
+ # @ wp-members
2497
+ #~ msgid "Post Restriction"
2498
+ #~ msgstr "글 제한"
2499
+
2500
+ # @ wp-members
2501
+ #~ msgid "Page Restriction"
2502
+ #~ msgstr "페이지 제한"
2503
+
2504
+ # @ wp-members
2505
+ #~ msgid "dropdown"
2506
+ #~ msgstr "드롭다운"
2507
+
2508
+ # @ wp-members
2509
+ #~ msgid "Block Posts by default"
2510
+ #~ msgstr "기본으로 글 차단"
2511
+
2512
+ # @ wp-members
2513
+ #~ msgid ""
2514
+ #~ "Note: Posts can still be individually blocked or unblocked at the article "
2515
+ #~ "level"
2516
+ #~ msgstr "주의: 글은 개별 글에서 차단하거나 차단해제 될 수 있습니다"
2517
+
2518
+ # @ wp-members
2519
+ #~ msgid "Block Pages by default"
2520
+ #~ msgstr "기본으로 페이지 차단"
2521
+
2522
+ # @ wp-members
2523
+ #~ msgid ""
2524
+ #~ "Note: Pages can still be individually blocked or unblocked at the article "
2525
+ #~ "level"
2526
+ #~ msgstr "주의: 페이지는 개별 페이지에서 차단하거나 차단해제 될 수 있습니다"
2527
+
2528
+ # @ wp-members
2529
+ #~ msgid "Show excerpts"
2530
+ #~ msgstr "요약 보이기"
2531
+
2532
+ # @ wp-members
2533
+ #~ msgid ""
2534
+ #~ "Shows excerpted content above the login/registration on both Posts and "
2535
+ #~ "Pages"
2536
+ #~ msgstr "글 및 페이지에서 로그인/회원가입 위에 요약 콘텐츠 보이기"
2537
+
2538
+ # @ wp-members
2539
+ #~ msgid "Turns on CAPTCHA for registration"
2540
+ #~ msgstr "회원가입에 CAPTCHA 켜기"
2541
+
2542
+ # @ wp-members
2543
+ #~ msgid "Hide registration"
2544
+ #~ msgstr "회원가입 감추기"
2545
+
2546
+ #~ msgid "Removes the registration form from blocked content"
2547
+ #~ msgstr "차단된 콘텐츠로부터 회원가입 폼 제거"
2548
+
2549
+ # @ wp-members
2550
+ #~ msgid "Optional"
2551
+ #~ msgstr "선택적"
2552
+
2553
+ # @ wp-members
2554
+ #~ msgid "Automatically creates an excerpt"
2555
+ #~ msgstr "자동으로 요약 만들기"
2556
+
2557
+ # @ wp-members
2558
+ #~ msgid "Select a stylesheet or specify a custom stylesheet below"
2559
+ #~ msgstr ""
2560
+ #~ "스타일시트를 선택하거나 아래에서 사용자 정의 스타일시트를 특정하세요"
2561
+
2562
+ #~ msgid "AIM"
2563
+ #~ msgstr "AIM"
2564
+
2565
+ #~ msgid "Yahoo IM"
2566
+ #~ msgstr "Yahoo IM"
2567
+
2568
+ #~ msgid "Jabber/Google Talk"
2569
+ #~ msgstr "Jabber / 구글 토크"
2570
+
2571
+ #~ msgid ""
2572
+ #~ "Password successfully changed!<br /><br />You will need to re-login with "
2573
+ #~ "your new password."
2574
+ #~ msgstr ""
2575
+ #~ "비밀번호 변경이 성공했습니다!<br /><br />새 비밀번호로 재로그인 해야 합니"
2576
+ #~ "다."
2577
+
2578
+ #~ msgid ""
2579
+ #~ "Password successfully reset!<br /><br />An email containing a new "
2580
+ #~ "password has been sent to the email address on file for your account. You "
2581
+ #~ "may change this random password then re-login with your new password."
2582
+ #~ msgstr ""
2583
+ #~ "비밀번호 초기화가 성공했습니다!<br /><br />새 비밀번호가 포함된 이메일을 "
2584
+ #~ "계정 이메일 주소로 보냈습니다. 이 랜덤 비밀번호를 변경할 수 있으며 새로운 "
2585
+ #~ "비밀번호로 재 로그인 하세요."
i18n/languages/wp-members-nb_NO.mo CHANGED
Binary file
i18n/languages/wp-members-nb_NO.po CHANGED
@@ -1,2265 +1,2572 @@
1
- # Copyright (C) 2010 WP-Members
2
- # This file is distributed under the same license as the WP-Members package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: WP-Members 3.2.6\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2019-04-02 08:55-0400\n"
8
- "PO-Revision-Date: 2019-04-02 09:56-0400\n"
9
- "Last-Translator: \n"
10
- "Language-Team: mikael.boldt@mail.dk\n"
11
- "Language: nb_NO\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_c\n"
17
- "X-Poedit-Basepath: D:/downloads/wp-members\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Generator: Poedit 2.2.1\n"
20
- "X-Poedit-SearchPath-0: D:/downloads/wp-members\n"
21
-
22
- #: admin/dialogs.php:116
23
- msgid ""
24
- "Your WP settings allow anyone to register - this is not the recommended "
25
- "setting."
26
- msgstr ""
27
- "Dine WP innstillinger tillater alle å registrere seg - dette kan ikke "
28
- "anbefales."
29
-
30
- #: admin/dialogs.php:117
31
- #, php-format
32
- msgid ""
33
- "You can %s change this here %s making sure the box next to \"Anyone can "
34
- "register\" is unchecked."
35
- msgstr ""
36
- "Du kan %s endre dette her %s ved at sørge for boksen ved siden av \"Alle kan "
37
- "registrere \" er u-markert."
38
-
39
- #: admin/dialogs.php:118
40
- msgid ""
41
- "This setting allows a link on the /wp-login.php page to register using the "
42
- "WP native registration process thus circumventing any registration you are "
43
- "using with WP-Members. In some cases, this may suit the users wants/needs, "
44
- "but most users should uncheck this option. If you do not change this "
45
- "setting, you can choose to ignore these warning messages under WP-Members "
46
- "Settings."
47
- msgstr ""
48
- "Denne innstillingen tillater at en link på /wp-login.php siden for å la seg "
49
- "registrere ved hjelp av WP opprinnelige registreringsprossess slik at det "
50
- "omgår WP-Members registrering. I noen tilfeller passer dette til brukerenes "
51
- "ønsker/behov, men de fleste brukere bør fjerne markeringen av denne "
52
- "muligheten. Hvis du ikke endrer denne indstilling, kan du velge at ignorere "
53
- "disse advarsler i henhold til WP-medlemmer innstillinger."
54
-
55
- #: admin/dialogs.php:122
56
- msgid ""
57
- "Your WP settings allow anyone to comment - this is not the recommended "
58
- "setting."
59
- msgstr ""
60
- "Dine WP innstillinger tillater alle at skrive kommentarer - denne "
61
- "innstillingen er ikke anbefalt."
62
-
63
- #: admin/dialogs.php:123
64
- #, php-format
65
- msgid ""
66
- "You can %s change this here %s by checking the box next to \"Users must be "
67
- "registered and logged in to comment.\""
68
- msgstr ""
69
- "Du kan %s endre dette her %s ved at sørge for boksen ved siden av \"Brukere "
70
- "skal være registrerede og logget inn for at kommentere \" er markert."
71
-
72
- #: admin/dialogs.php:124
73
- msgid ""
74
- "This setting allows any users to comment, whether or not they are "
75
- "registered. Depending on how you are using WP-Members will determine whether "
76
- "you should change this setting or not. If you do not change this setting, "
77
- "you can choose to ignore these warning messages under WP-Members Settings."
78
- msgstr ""
79
- "Denne innstillingen gjør det mulig for brukere å kommentere selv om de ikke "
80
- "er innlogget. Hvis du ikke endrer denne innstillingen, kan du velge å "
81
- "ignorere disse advarsler i henhold til WP-Members innstillinger."
82
-
83
- #: admin/dialogs.php:128
84
- msgid ""
85
- "Your WP settings allow full text rss feeds - this is not the recommended "
86
- "setting."
87
- msgstr ""
88
- "Din WP innstillinger tillater full RSS strøm - denne innstillingen er ikke å "
89
- "anbefale."
90
-
91
- #: admin/dialogs.php:129
92
- #, php-format
93
- msgid ""
94
- "You can %s change this here %s by changing \"For each article in a feed, show"
95
- "\" to \"Summary.\""
96
- msgstr ""
97
- "Du kan %s endre dette %s ved å endre \"For hvert innlegg, vis \" to \"Utdrag."
98
- "\""
99
-
100
- #: admin/dialogs.php:130
101
- msgid ""
102
- "Leaving this set to full text allows anyone to read your protected content "
103
- "in an RSS reader. Changing this to Summary prevents this as your feeds will "
104
- "only show summary text."
105
- msgstr ""
106
- "Ved å sette RSS til full tekst gir du alle mulighet for å lese ditt "
107
- "beskyttede innhold i en rss-leser. Endre RSS til utdrag for å forhindre "
108
- "dette."
109
-
110
- #: admin/dialogs.php:134
111
- msgid "You have set WP-Members to hold registrations for approval"
112
- msgstr "Du har satt WP-Members til at registreringer må godkjennes"
113
-
114
- #: admin/dialogs.php:135
115
- msgid ""
116
- "but you have not changed the default message for \"Registration Completed\" "
117
- "under \"WP-Members Dialogs and Error Messages.\" You should change this "
118
- "message to let users know they are pending approval."
119
- msgstr ""
120
- "men du har ikke endret standard melding for \"Registrering fullført\" under "
121
- "\"WP-Members Dialoger og feilmeldinger.\" Du bør endre denne meldingen så "
122
- "brukerene vet at deres registrering er må godkjennes."
123
-
124
- #: admin/dialogs.php:139
125
- msgid "You have turned on reCAPTCHA"
126
- msgstr "Du har slått på reCAPTCHA"
127
-
128
- #: admin/dialogs.php:140
129
- msgid ""
130
- "but you have not entered API keys. You will need both a public and private "
131
- "key. The CAPTCHA will not display unless a valid API key is included."
132
- msgstr ""
133
- "men du ikke har skrevet inn API nøkkel. Du skal bruke både en offentlig og "
134
- "privat nøkkel. Den CAPTCHA vises ikke, hvis ikke en gyldig API-nøkkel er "
135
- "fylt inn."
136
-
137
- #: admin/dialogs.php:144
138
- msgid "You have active settings that are not recommended."
139
- msgstr ""
140
-
141
- #: admin/dialogs.php:145
142
- msgid ""
143
- "If you will not be changing these settings, you can turn off these warning "
144
- "messages by checking the \"Ignore warning messages\" in the settings below."
145
- msgstr ""
146
-
147
- #: admin/dialogs.php:169
148
- msgid "Version:"
149
- msgstr "Versjon:"
150
-
151
- #: admin/dialogs.php:170
152
- msgid "Quick Start Guide"
153
- msgstr ""
154
-
155
- #: admin/dialogs.php:171
156
- msgid "Online User Guide"
157
- msgstr ""
158
-
159
- #: admin/dialogs.php:172
160
- msgid "FAQs"
161
- msgstr ""
162
-
163
- #: admin/dialogs.php:179
164
- msgid "Thank you for using WP-Members"
165
- msgstr ""
166
-
167
- #: admin/dialogs.php:180
168
- msgid "A plugin developed by"
169
- msgstr ""
170
-
171
- #: admin/dialogs.php:181
172
- msgid "Follow"
173
- msgstr "Følg"
174
-
175
- #: admin/dialogs.php:198 admin/dialogs.php:202
176
- msgid "Latest from RocketGeek"
177
- msgstr ""
178
-
179
- #: admin/dialogs.php:219
180
- msgid "Like WP-Members?"
181
- msgstr ""
182
-
183
- #: admin/dialogs.php:220
184
- #, php-format
185
- msgid ""
186
- "If you like WP-Members please give it a %s&#9733;&#9733;&#9733;&#9733;&#9733;"
187
- "%s rating. Thanks!!"
188
- msgstr ""
189
-
190
- #: admin/dialogs.php:231 admin/dialogs.php:244
191
- msgid "Latest from ButlerBlog"
192
- msgstr ""
193
-
194
- #: admin/includes/class-wp-members-admin-api.php:256
195
- msgid "Custom email"
196
- msgstr ""
197
-
198
- #: admin/includes/class-wp-members-admin-api.php:257
199
- #: admin/includes/class-wp-members-admin-api.php:259
200
- msgid "Subject"
201
- msgstr "Emne"
202
-
203
- #: admin/includes/class-wp-members-admin-api.php:260
204
- msgid "Body"
205
- msgstr "Brødtekst"
206
-
207
- #: admin/includes/class-wp-members-admin-api.php:262
208
- msgid "Your custom email message content."
209
- msgstr ""
210
-
211
- #: admin/includes/class-wp-members-admin-api.php:340
212
- msgid "Options"
213
- msgstr "Valg"
214
-
215
- #: admin/includes/class-wp-members-admin-api.php:341
216
- msgid "Fields"
217
- msgstr "Felter"
218
-
219
- #: admin/includes/class-wp-members-admin-api.php:342
220
- msgid "Dialogs"
221
- msgstr "Dialog"
222
-
223
- #: admin/includes/class-wp-members-admin-api.php:343
224
- msgid "Emails"
225
- msgstr "E-poster"
226
-
227
- #: admin/includes/class-wp-members-admin-api.php:359
228
- msgid "New Registration"
229
- msgstr "Ny Registrering"
230
-
231
- #: admin/includes/class-wp-members-admin-api.php:368
232
- msgid "Registration is Moderated"
233
- msgstr "Registrering fullført"
234
-
235
- #: admin/includes/class-wp-members-admin-api.php:374
236
- msgid "Registration is Moderated, User is Approved"
237
- msgstr "Din registrering er godkjent"
238
-
239
- #: admin/includes/class-wp-members-admin-api.php:382
240
- msgid "Password Reset"
241
- msgstr "Kodeord nullstilt"
242
-
243
- #: admin/includes/class-wp-members-admin-api.php:389
244
- msgid "Retrieve Username"
245
- msgstr ""
246
-
247
- #: admin/includes/class-wp-members-admin-api.php:397
248
- msgid "Admin Notification"
249
- msgstr "Admin melding"
250
-
251
- #: admin/includes/class-wp-members-admin-api.php:423
252
- msgid "Restricted post (or page), displays above the login/registration form"
253
- msgstr ""
254
- "Vises over Logg på / Registrering på Innlegg eller Side med begrenset adgang"
255
-
256
- #: admin/includes/class-wp-members-admin-api.php:424
257
- msgid "Username is taken"
258
- msgstr "Brukernavnet er oppdatt"
259
-
260
- #: admin/includes/class-wp-members-admin-api.php:425
261
- msgid "Email is registered"
262
- msgstr "E-post er registreret"
263
-
264
- #: admin/includes/class-wp-members-admin-api.php:426
265
- msgid "Registration completed"
266
- msgstr "Registrering fullført - avventer godkjennelse"
267
-
268
- #: admin/includes/class-wp-members-admin-api.php:427
269
- msgid "User update"
270
- msgstr "Bruker oppdatering"
271
-
272
- #: admin/includes/class-wp-members-admin-api.php:428
273
- msgid "Passwords did not match"
274
- msgstr "Passordene er ulike"
275
-
276
- #: admin/includes/class-wp-members-admin-api.php:429
277
- msgid "Password changes"
278
- msgstr "Endret passord"
279
-
280
- #: admin/includes/class-wp-members-admin-api.php:430
281
- msgid "Username or email do not exist when trying to reset forgotten password"
282
- msgstr ""
283
- "Brukernavn eller e-post eksisterer ikke når glemt passord forsøkes nullstilt"
284
-
285
- #: admin/includes/class-wp-members-admin-api.php:431
286
- msgid "Password reset"
287
- msgstr "Nullstill passord"
288
-
289
- #: admin/includes/class-wp-members-admin-api.php:564
290
- msgid "Settings"
291
- msgstr "Innstillinger"
292
-
293
- #: admin/includes/class-wp-members-products-admin.php:57
294
- msgid "Slug"
295
- msgstr ""
296
-
297
- #: admin/includes/class-wp-members-products-admin.php:58
298
- msgid "Role"
299
- msgstr ""
300
-
301
- #: admin/includes/class-wp-members-products-admin.php:59
302
- #: admin/includes/class-wp-members-products-admin.php:162
303
- #: admin/tab-fields.php:459 admin/user-export.php:69
304
- msgid "Expires"
305
- msgstr "Utløper"
306
-
307
- #: admin/includes/class-wp-members-products-admin.php:60
308
- msgid "Last updated"
309
- msgstr ""
310
-
311
- #: admin/includes/class-wp-members-products-admin.php:80
312
- msgid "No role required"
313
- msgstr ""
314
-
315
- #: admin/includes/class-wp-members-products-admin.php:84
316
- msgid "Does not expire"
317
- msgstr ""
318
-
319
- #: admin/includes/class-wp-members-products-admin.php:120
320
- msgid "Membership Product Details"
321
- msgstr ""
322
-
323
- #: admin/includes/class-wp-members-products-admin.php:142
324
- #: admin/includes/class-wp-members-products-admin.php:167
325
- msgid "Period"
326
- msgstr ""
327
-
328
- #: admin/includes/class-wp-members-products-admin.php:142
329
- msgid "Day"
330
- msgstr ""
331
-
332
- #: admin/includes/class-wp-members-products-admin.php:142
333
- msgid "Week"
334
- msgstr ""
335
-
336
- #: admin/includes/class-wp-members-products-admin.php:142
337
- msgid "Month"
338
- msgstr ""
339
-
340
- #: admin/includes/class-wp-members-products-admin.php:142
341
- msgid "Year"
342
- msgstr ""
343
-
344
- #: admin/includes/class-wp-members-products-admin.php:148
345
- msgid "Name (slug)"
346
- msgstr ""
347
-
348
- #: admin/includes/class-wp-members-products-admin.php:153
349
- msgid "Role Required?"
350
- msgstr ""
351
-
352
- #: admin/includes/class-wp-members-products-admin.php:156
353
- msgid "No Role"
354
- msgstr ""
355
-
356
- #: admin/includes/class-wp-members-products-admin.php:164
357
- #: admin/includes/class-wp-members-products-admin.php:166
358
- msgid "Number"
359
- msgstr ""
360
-
361
- #: admin/includes/class-wp-members-products-admin.php:245
362
- #: admin/tab-options.php:207 inc/class-wp-members-forms.php:999
363
- #: inc/class-wp-members-user-profile.php:106 inc/deprecated.php:360
364
- #: inc/deprecated.php:622
365
- msgid "None"
366
- msgstr ""
367
-
368
- #: admin/includes/class-wp-members-products-admin.php:251
369
- msgid "Limit access to:"
370
- msgstr ""
371
-
372
- #: admin/includes/class-wp-members-products-admin.php:321
373
- msgid "Required Membership"
374
- msgstr ""
375
-
376
- #: admin/includes/class-wp-members-products-admin.php:360
377
- msgid "Membership"
378
- msgstr ""
379
-
380
- #: admin/post.php:45 admin/post.php:48
381
- msgid "Unblock"
382
- msgstr ""
383
-
384
- #: admin/post.php:46 admin/post.php:49 admin/tab-options.php:114
385
- msgid "Block"
386
- msgstr ""
387
-
388
- #: admin/post.php:47 admin/post.php:50
389
- msgid "Hide"
390
- msgstr ""
391
-
392
- #: admin/post.php:138
393
- #, php-format
394
- msgid "%s blocked"
395
- msgstr ""
396
-
397
- #: admin/post.php:138
398
- #, php-format
399
- msgid "%s unblocked"
400
- msgstr ""
401
-
402
- #: admin/post.php:177
403
- #, php-format
404
- msgid "%s Restriction"
405
- msgstr ""
406
-
407
- #: admin/post.php:206
408
- msgid "Unblocked"
409
- msgstr ""
410
-
411
- #: admin/post.php:207
412
- msgid "Blocked"
413
- msgstr ""
414
-
415
- #: admin/post.php:208
416
- msgid "Hidden"
417
- msgstr ""
418
-
419
- #: admin/post.php:214
420
- msgid "Status:"
421
- msgstr ""
422
-
423
- #: admin/post.php:214 admin/tab-fields.php:88 admin/tab-fields.php:554
424
- msgid "Edit"
425
- msgstr ""
426
-
427
- #: admin/post.php:229
428
- msgid "Ok"
429
- msgstr ""
430
-
431
- #: admin/post.php:230
432
- msgid "Cancel"
433
- msgstr ""
434
-
435
- #: admin/post.php:314
436
- msgid "Status"
437
- msgstr ""
438
-
439
- #: admin/tab-about.php:34 admin/tab-about.php:54
440
- msgid "About WP-Members"
441
- msgstr ""
442
-
443
- #: admin/tab-captcha.php:66
444
- #, php-format
445
- msgid "See the %sUsers Guide on CAPTCHA%s."
446
- msgstr ""
447
-
448
- #: admin/tab-captcha.php:73 admin/tab-dialogs.php:57 admin/tab-emails.php:101
449
- #: admin/tab-fields.php:153 admin/tab-options.php:82
450
- msgid "Need help?"
451
- msgstr ""
452
-
453
- #: admin/tab-captcha.php:84
454
- msgid "Manage reCAPTCHA Options"
455
- msgstr "Administrer reCAPTCHA Valg"
456
-
457
- #: admin/tab-captcha.php:98
458
- msgid ""
459
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
460
- "while blocking spam on your blog."
461
- msgstr ""
462
- "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
463
- "while blocking spam on your blog."
464
-
465
- #: admin/tab-captcha.php:99
466
- #, php-format
467
- msgid ""
468
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
469
- "that they are a human. This verifies that they are not a spambot while also "
470
- "correcting the automatic scans of old books. So you get less spam, and the "
471
- "world gets accurately digitized books. Everybody wins! For details, visit "
472
- "the %s reCAPTCHA website%s"
473
- msgstr ""
474
- "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
475
- "that they are a human. This verifies that they are not a spambot while also "
476
- "correcting the automatic scans of old books. So you get less spam, and the "
477
- "world gets accurately digitized books. Everybody wins! For details, visit "
478
- "the %s reCAPTCHA website%s"
479
-
480
- #: admin/tab-captcha.php:104 admin/tab-captcha.php:130
481
- msgid "reCAPTCHA Keys"
482
- msgstr "reCAPTCHA Keys"
483
-
484
- #: admin/tab-captcha.php:106
485
- #, php-format
486
- msgid ""
487
- "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
488
- "key. You can sign up for a %s free reCAPTCHA key%s"
489
- msgstr ""
490
-
491
- #: admin/tab-captcha.php:107
492
- msgid "Public Key"
493
- msgstr "Offentlig nøkkel"
494
-
495
- #: admin/tab-captcha.php:108
496
- msgid "Private Key"
497
- msgstr "Privat nøkkel"
498
-
499
- #: admin/tab-captcha.php:112
500
- msgid "Choose Theme"
501
- msgstr "Velg tema"
502
-
503
- #: admin/tab-captcha.php:115
504
- msgid "Red"
505
- msgstr "Rød"
506
-
507
- #: admin/tab-captcha.php:116
508
- msgid "White"
509
- msgstr "Hvit"
510
-
511
- #: admin/tab-captcha.php:117
512
- msgid "Black Glass"
513
- msgstr "Sort Glass"
514
-
515
- #: admin/tab-captcha.php:118
516
- msgid "Clean"
517
- msgstr "Ren"
518
-
519
- #: admin/tab-captcha.php:132
520
- #, php-format
521
- msgid ""
522
- "reCAPTCHA requires an API key, consisting of a \"site\" and a \"secret\" "
523
- "key. You can sign up for a %s free reCAPTCHA key%s"
524
- msgstr ""
525
-
526
- #: admin/tab-captcha.php:133
527
- msgid "Site Key"
528
- msgstr ""
529
-
530
- #: admin/tab-captcha.php:134
531
- msgid "Secret Key"
532
- msgstr ""
533
-
534
- #: admin/tab-captcha.php:165
535
- msgid "Characters for image"
536
- msgstr ""
537
-
538
- #: admin/tab-captcha.php:169
539
- msgid "Number of characters"
540
- msgstr ""
541
-
542
- #: admin/tab-captcha.php:173
543
- msgid "Image dimensions"
544
- msgstr ""
545
-
546
- #: admin/tab-captcha.php:174
547
- msgid "Width"
548
- msgstr ""
549
-
550
- #: admin/tab-captcha.php:174
551
- msgid "Height"
552
- msgstr ""
553
-
554
- #: admin/tab-captcha.php:177
555
- msgid "Font color of characters"
556
- msgstr ""
557
-
558
- #: admin/tab-captcha.php:181
559
- msgid "Background color of image"
560
- msgstr ""
561
-
562
- #: admin/tab-captcha.php:185
563
- msgid "Font size"
564
- msgstr ""
565
-
566
- #: admin/tab-captcha.php:189
567
- msgid "Width between characters"
568
- msgstr ""
569
-
570
- #: admin/tab-captcha.php:193
571
- msgid "Image type"
572
- msgstr ""
573
-
574
- #: admin/tab-captcha.php:207
575
- msgid ""
576
- "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
577
- "installed and activated."
578
- msgstr ""
579
-
580
- #: admin/tab-captcha.php:231
581
- msgid "Update CAPTCHA Settings"
582
- msgstr ""
583
-
584
- #: admin/tab-captcha.php:301
585
- msgid "CAPTCHA was updated for WP-Members"
586
- msgstr ""
587
-
588
- #: admin/tab-dialogs.php:67
589
- msgid "Dialogs and Error Messages"
590
- msgstr "Dialoger og feilmeldinger"
591
-
592
- #: admin/tab-dialogs.php:69
593
- #, php-format
594
- msgid ""
595
- "You can customize the text for dialogs and error messages. Simple HTML is "
596
- "allowed %s etc."
597
- msgstr ""
598
- "Du kan tilpasse tekster til dialog og feilmeldinger. Enkel HTML er tillat %s "
599
- "osv."
600
-
601
- #: admin/tab-dialogs.php:80
602
- msgid "Terms of Service (TOS)"
603
- msgstr "Nettsidens vilkår"
604
-
605
- #: admin/tab-dialogs.php:87
606
- msgid "Update Dialogs"
607
- msgstr "Oppdater Dialoger"
608
-
609
- #: admin/tab-dialogs.php:123
610
- msgid "WP-Members dialogs were updated"
611
- msgstr "WP-Members dialoger er oppdatert"
612
-
613
- #: admin/tab-dropins.php:78 admin/tab-dropins.php:378
614
- msgid "WP-Members Dropin settings were updated"
615
- msgstr ""
616
-
617
- #: admin/tab-dropins.php:204
618
- msgid "Manage Dropins"
619
- msgstr ""
620
-
621
- #: admin/tab-dropins.php:205
622
- msgid "Current dropin folder: "
623
- msgstr ""
624
-
625
- #: admin/tab-dropins.php:206
626
- msgid ""
627
- "You can change location of the dropin folder using the "
628
- "<code>wpmem_dropin_folder</code> filter."
629
- msgstr ""
630
-
631
- #: admin/tab-dropins.php:269
632
- msgid "Name"
633
- msgstr ""
634
-
635
- #: admin/tab-dropins.php:270
636
- msgid "File"
637
- msgstr ""
638
-
639
- #: admin/tab-dropins.php:271
640
- msgid "Version"
641
- msgstr ""
642
-
643
- #: admin/tab-dropins.php:272
644
- msgid "Description"
645
- msgstr ""
646
-
647
- #: admin/tab-dropins.php:315 admin/tab-fields.php:597
648
- msgid "Save Settings"
649
- msgstr ""
650
-
651
- #: admin/tab-emails.php:58
652
- msgid "Email Messages"
653
- msgstr "E-post melding"
654
-
655
- #: admin/tab-emails.php:61
656
- msgid "You can customize the content of the emails sent by the plugin."
657
- msgstr "Du kan tilpasse innholdet av e-poster sendt fra denne plugin"
658
-
659
- #: admin/tab-emails.php:63
660
- msgid "A list of shortcodes is available here."
661
- msgstr "liste med shortcodes kan ses her."
662
-
663
- #: admin/tab-emails.php:70
664
- msgid "Set a custom email address"
665
- msgstr "Skriv inn en gyldig epost-adresse"
666
-
667
- #: admin/tab-emails.php:71 admin/tab-emails.php:75 admin/tab-emails.php:85
668
- #: admin/tab-fields.php:179
669
- msgid "(optional)"
670
- msgstr "(obligatorisk)"
671
-
672
- #: admin/tab-emails.php:74
673
- msgid "Set a custom email name"
674
- msgstr "Skriv din e-post her"
675
-
676
- #: admin/tab-emails.php:85
677
- msgid "Email Signature"
678
- msgstr ""
679
-
680
- #: admin/tab-emails.php:93
681
- msgid "Update Emails"
682
- msgstr "Oppdater e-poster"
683
-
684
- #: admin/tab-emails.php:161
685
- msgid "WP-Members emails were updated"
686
- msgstr "WP-Members e-poster er oppdatert"
687
-
688
- #: admin/tab-fields.php:113 inc/class-wp-members.php:1207
689
- msgid "No fields selected for deletion"
690
- msgstr ""
691
-
692
- #: admin/tab-fields.php:115
693
- msgid "Are you sure you want to delete the following fields?"
694
- msgstr ""
695
-
696
- #: admin/tab-fields.php:141
697
- msgid "Fields deleted"
698
- msgstr ""
699
-
700
- #: admin/tab-fields.php:155
701
- msgid "Field Manager Documentation"
702
- msgstr ""
703
-
704
- #: admin/tab-fields.php:180 admin/tab-fields.php:322
705
- #: inc/class-wp-members-user-profile.php:138 inc/deprecated.php:385
706
- #: inc/deprecated.php:646 inc/wp-registration.php:57
707
- #: inc/wp-registration.php:231
708
- msgid "(required)"
709
- msgstr ""
710
-
711
- #: admin/tab-fields.php:185 admin/tab-fields.php:407
712
- msgid "Edit Field"
713
- msgstr ""
714
-
715
- #: admin/tab-fields.php:185
716
- msgid "Add a Field"
717
- msgstr ""
718
-
719
- #: admin/tab-fields.php:190
720
- msgid "Field Label"
721
- msgstr "Felt Etikett"
722
-
723
- #: admin/tab-fields.php:192
724
- msgid "The name of the field as it will be displayed to the user."
725
- msgstr ""
726
-
727
- #: admin/tab-fields.php:195 admin/tab-fields.php:547
728
- msgid "Meta Key"
729
- msgstr ""
730
-
731
- #: admin/tab-fields.php:201
732
- msgid ""
733
- "The database meta value for the field. It must be unique and contain no "
734
- "spaces (underscores are ok)."
735
- msgstr ""
736
-
737
- #: admin/tab-fields.php:205 admin/tab-fields.php:548
738
- msgid "Field Type"
739
- msgstr "Felt Type"
740
-
741
- #: admin/tab-fields.php:211
742
- msgid "text"
743
- msgstr "Tekst"
744
-
745
- #: admin/tab-fields.php:212
746
- msgid "email"
747
- msgstr ""
748
-
749
- #: admin/tab-fields.php:213
750
- msgid "textarea"
751
- msgstr "Tekstfelt"
752
-
753
- #: admin/tab-fields.php:214
754
- msgid "checkbox"
755
- msgstr "Avkryssningsboks"
756
-
757
- #: admin/tab-fields.php:215
758
- msgid "multiple checkbox"
759
- msgstr ""
760
-
761
- #: admin/tab-fields.php:216
762
- msgid "select (dropdown)"
763
- msgstr ""
764
-
765
- #: admin/tab-fields.php:217
766
- msgid "multiple select"
767
- msgstr ""
768
-
769
- #: admin/tab-fields.php:218
770
- msgid "radio group"
771
- msgstr ""
772
-
773
- #: admin/tab-fields.php:219
774
- msgid "password"
775
- msgstr "passord"
776
-
777
- #: admin/tab-fields.php:220
778
- msgid "image"
779
- msgstr ""
780
-
781
- #: admin/tab-fields.php:221
782
- msgid "file"
783
- msgstr ""
784
-
785
- #: admin/tab-fields.php:222
786
- msgid "url"
787
- msgstr ""
788
-
789
- #: admin/tab-fields.php:223
790
- msgid "number"
791
- msgstr ""
792
-
793
- #: admin/tab-fields.php:224
794
- msgid "date"
795
- msgstr ""
796
-
797
- #: admin/tab-fields.php:225
798
- msgid "hidden"
799
- msgstr ""
800
-
801
- #: admin/tab-fields.php:227
802
- msgid "membership"
803
- msgstr ""
804
-
805
- #: admin/tab-fields.php:233 admin/tab-fields.php:549
806
- msgid "Display?"
807
- msgstr "Vis?"
808
-
809
- #: admin/tab-fields.php:237
810
- msgid "This field is always displayed"
811
- msgstr ""
812
-
813
- #: admin/tab-fields.php:242 admin/tab-fields.php:550
814
- msgid "Required?"
815
- msgstr "Obligatorisk?"
816
-
817
- #: admin/tab-fields.php:246
818
- msgid "This field is always required"
819
- msgstr ""
820
-
821
- #: admin/tab-fields.php:252
822
- msgid "Allow HTML?"
823
- msgstr ""
824
-
825
- #: admin/tab-fields.php:259
826
- msgid "Placeholder"
827
- msgstr ""
828
-
829
- #: admin/tab-fields.php:267
830
- msgid "Pattern"
831
- msgstr ""
832
-
833
- #: admin/tab-fields.php:273
834
- msgid "Title"
835
- msgstr ""
836
-
837
- #: admin/tab-fields.php:282
838
- msgid "Minimum Value"
839
- msgstr ""
840
-
841
- #: admin/tab-fields.php:286
842
- msgid "Maximum Value"
843
- msgstr ""
844
-
845
- #: admin/tab-fields.php:294
846
- msgid "Rows"
847
- msgstr ""
848
-
849
- #: admin/tab-fields.php:298
850
- msgid "Columns"
851
- msgstr ""
852
-
853
- #: admin/tab-fields.php:306
854
- msgid "Accepted file types:"
855
- msgstr ""
856
-
857
- #: admin/tab-fields.php:311
858
- msgid "Accepted file types should be set like this: jpg|jpeg|png|gif"
859
- msgstr ""
860
-
861
- #: admin/tab-fields.php:318
862
- msgid "Checked by default?"
863
- msgstr ""
864
-
865
- #: admin/tab-fields.php:322
866
- msgid "Stored value if checked:"
867
- msgstr ""
868
-
869
- #: admin/tab-fields.php:343
870
- msgid "Stored values delimiter:"
871
- msgstr ""
872
-
873
- #: admin/tab-fields.php:352
874
- msgid "Values (Displayed|Stored):"
875
- msgstr ""
876
-
877
- #: admin/tab-fields.php:377
878
- msgid "Options should be Option Name|option_value,"
879
- msgstr "Valg skal skrives Valg Navn|valg_værdi,"
880
-
881
- #: admin/tab-fields.php:381
882
- msgid "Visit plugin site for more information"
883
- msgstr "Besøk Plugin side for mer informasjon"
884
-
885
- #: admin/tab-fields.php:388
886
- msgid "Value"
887
- msgstr ""
888
-
889
- #: admin/tab-fields.php:407 admin/tab-fields.php:674 admin/tab-fields.php:675
890
- msgid "Add Field"
891
- msgstr ""
892
-
893
- #: admin/tab-fields.php:409 admin/tab-fields.php:868
894
- msgid "Return to Fields Table"
895
- msgstr ""
896
-
897
- #: admin/tab-fields.php:449
898
- msgid "Drag and drop to reorder fields"
899
- msgstr ""
900
-
901
- #: admin/tab-fields.php:455
902
- msgid "Registration Date"
903
- msgstr ""
904
-
905
- #: admin/tab-fields.php:456
906
- msgid "Active"
907
- msgstr ""
908
-
909
- #: admin/tab-fields.php:457
910
- msgid "Registration IP"
911
- msgstr ""
912
-
913
- #: admin/tab-fields.php:458
914
- msgid "Subscription Type"
915
- msgstr ""
916
-
917
- #: admin/tab-fields.php:460 admin/user-export.php:58
918
- msgid "User ID"
919
- msgstr ""
920
-
921
- #: admin/tab-fields.php:493
922
- msgid "Manage Fields"
923
- msgstr "Administrer Felter"
924
-
925
- #: admin/tab-fields.php:532
926
- msgid "delete"
927
- msgstr ""
928
-
929
- #: admin/tab-fields.php:546
930
- msgid "Display Label"
931
- msgstr ""
932
-
933
- #: admin/tab-fields.php:552
934
- msgid "Users Screen"
935
- msgstr ""
936
-
937
- #: admin/tab-fields.php:553
938
- msgid "Users Search"
939
- msgstr ""
940
-
941
- #: admin/tab-fields.php:555
942
- msgid "Sort"
943
- msgstr ""
944
-
945
- #: admin/tab-fields.php:596
946
- msgid "Delete Selected"
947
- msgstr ""
948
-
949
- #: admin/tab-fields.php:738
950
- msgid "WP-Members fields were updated"
951
- msgstr "WP-Members felter er oppdatert"
952
-
953
- #: admin/tab-fields.php:760
954
- msgid "Field Label is required. Nothing was updated."
955
- msgstr ""
956
-
957
- #: admin/tab-fields.php:761
958
- msgid "Meta Key is required. Nothing was updated."
959
- msgstr ""
960
-
961
- #: admin/tab-fields.php:763
962
- msgid "Meta Key must contain only letters, numbers, and underscores"
963
- msgstr ""
964
-
965
- #: admin/tab-fields.php:770
966
- msgid "A field with that meta key already exists"
967
- msgstr ""
968
-
969
- #: admin/tab-fields.php:775
970
- #, php-format
971
- msgid ""
972
- "Sorry, \"%s\" is a <a href=\"https://codex.wordpress.org/Function_Reference/"
973
- "register_taxonomy#Reserved_Terms\" target=\"_blank\">reserved term</a>. "
974
- "Field was not added."
975
- msgstr ""
976
-
977
- #: admin/tab-fields.php:816
978
- msgid "Checked value is required for checkboxes. Nothing was updated."
979
- msgstr ""
980
-
981
- #: admin/tab-fields.php:847
982
- msgid "A value is required for hidden fields. Nothing was updated."
983
- msgstr ""
984
-
985
- #: admin/tab-fields.php:854
986
- #, php-format
987
- msgid "%s was added"
988
- msgstr ""
989
-
990
- #: admin/tab-fields.php:867
991
- #, php-format
992
- msgid "%s was updated"
993
- msgstr ""
994
-
995
- #: admin/tab-fields.php:909
996
- msgid "Form field order updated."
997
- msgstr ""
998
-
999
- #: admin/tab-options.php:60
1000
- #, php-format
1001
- msgid "%sChange%s or %sFilter%s this address"
1002
- msgstr ""
1003
-
1004
- #: admin/tab-options.php:61
1005
- #, php-format
1006
- msgid "See the %sUsers Guide on plugin options%s."
1007
- msgstr ""
1008
-
1009
- #: admin/tab-options.php:66
1010
- msgid "Posts"
1011
- msgstr ""
1012
-
1013
- #: admin/tab-options.php:67 admin/tab-options.php:215
1014
- msgid "Pages"
1015
- msgstr ""
1016
-
1017
- #: admin/tab-options.php:94
1018
- msgid "Manage Options"
1019
- msgstr "Administrer valg"
1020
-
1021
- #: admin/tab-options.php:98
1022
- msgid "Content"
1023
- msgstr ""
1024
-
1025
- #: admin/tab-options.php:109
1026
- msgid "Content Blocking"
1027
- msgstr ""
1028
-
1029
- #: admin/tab-options.php:113
1030
- msgid "Do not block"
1031
- msgstr ""
1032
-
1033
- #: admin/tab-options.php:127
1034
- msgid "Show Excerpts"
1035
- msgstr ""
1036
-
1037
- #: admin/tab-options.php:128
1038
- msgid "Show Login Form"
1039
- msgstr ""
1040
-
1041
- #: admin/tab-options.php:129
1042
- msgid "Show Registration Form"
1043
- msgstr ""
1044
-
1045
- #: admin/tab-options.php:130
1046
- msgid "Auto Excerpt:"
1047
- msgstr ""
1048
-
1049
- #: admin/tab-options.php:152
1050
- msgid "Number of words in excerpt:"
1051
- msgstr ""
1052
-
1053
- #: admin/tab-options.php:153
1054
- msgid "Custom read more link (optional):"
1055
- msgstr ""
1056
-
1057
- #: admin/tab-options.php:167
1058
- msgid "Time-based expiration"
1059
- msgstr "Time-based expiration"
1060
-
1061
- #: admin/tab-options.php:167
1062
- msgid "Allows for access to expire"
1063
- msgstr "Allows for access to expire"
1064
-
1065
- #: admin/tab-options.php:168
1066
- msgid "Trial period"
1067
- msgstr "Prøveperiode"
1068
-
1069
- #: admin/tab-options.php:168
1070
- msgid "Allows for a trial period"
1071
- msgstr "tillater en prøveperiode"
1072
-
1073
- #: admin/tab-options.php:170
1074
- msgid "Subscription Settings"
1075
- msgstr ""
1076
-
1077
- #: admin/tab-options.php:180
1078
- msgid "Other Settings"
1079
- msgstr ""
1080
-
1081
- #: admin/tab-options.php:186
1082
- msgid "Enable Products"
1083
- msgstr ""
1084
-
1085
- #: admin/tab-options.php:186
1086
- msgid "Enables creation of different membership products"
1087
- msgstr ""
1088
-
1089
- #: admin/tab-options.php:187
1090
- msgid "Clone menus"
1091
- msgstr ""
1092
-
1093
- #: admin/tab-options.php:187
1094
- msgid "Enables logged in menus"
1095
- msgstr ""
1096
-
1097
- #: admin/tab-options.php:188
1098
- msgid "Notify admin"
1099
- msgstr "Gi beskjed til admin"
1100
-
1101
- #: admin/tab-options.php:188
1102
- #, php-format
1103
- msgid "Notify %s for each new registration? %s"
1104
- msgstr ""
1105
-
1106
- #: admin/tab-options.php:189
1107
- msgid "Moderate registration"
1108
- msgstr "Redigere registrering"
1109
-
1110
- #: admin/tab-options.php:189
1111
- msgid "Holds new registrations for admin approval"
1112
- msgstr "Nye registreringer krever godkjennelse fra admin"
1113
-
1114
- #: admin/tab-options.php:190
1115
- msgid "Ignore warning messages"
1116
- msgstr "Ignorer advarsels-meldinger"
1117
-
1118
- #: admin/tab-options.php:190
1119
- msgid "Ignores WP-Members warning messages in the admin panel"
1120
- msgstr "Ignorer WP-Members advarsel-meldinger i admin"
1121
-
1122
- #: admin/tab-options.php:201
1123
- msgid "Attribution"
1124
- msgstr ""
1125
-
1126
- #: admin/tab-options.php:203
1127
- msgid ""
1128
- "Attribution is appreciated! Display \"powered by\" link on register form?"
1129
- msgstr ""
1130
-
1131
- #: admin/tab-options.php:206
1132
- msgid "Enable CAPTCHA"
1133
- msgstr ""
1134
-
1135
- #: admin/tab-options.php:211
1136
- msgid "reCAPTCHA"
1137
- msgstr "reCAPTCHA"
1138
-
1139
- #: admin/tab-options.php:212
1140
- msgid "Really Simple CAPTCHA"
1141
- msgstr ""
1142
-
1143
- #: admin/tab-options.php:219
1144
- msgid "Login Page:"
1145
- msgstr ""
1146
-
1147
- #: admin/tab-options.php:222
1148
- msgid "Specify a login page (optional)"
1149
- msgstr ""
1150
-
1151
- #: admin/tab-options.php:231
1152
- msgid "Register Page:"
1153
- msgstr ""
1154
-
1155
- #: admin/tab-options.php:234
1156
- msgid "For creating a register link in the login form"
1157
- msgstr ""
1158
-
1159
- #: admin/tab-options.php:243
1160
- msgid "User Profile Page:"
1161
- msgstr ""
1162
-
1163
- #: admin/tab-options.php:246
1164
- msgid "For creating a forgot password link in the login form"
1165
- msgstr ""
1166
-
1167
- #: admin/tab-options.php:252 admin/tab-options.php:254
1168
- msgid "Stylesheet"
1169
- msgstr ""
1170
-
1171
- #: admin/tab-options.php:263
1172
- msgid "Custom Stylesheet:"
1173
- msgstr ""
1174
-
1175
- #: admin/tab-options.php:268 admin/tab-options.php:295
1176
- msgid "Update Settings"
1177
- msgstr "Oppdater innstillinger"
1178
-
1179
- #: admin/tab-options.php:276
1180
- msgid "Custom Post Types"
1181
- msgstr ""
1182
-
1183
- #: admin/tab-options.php:282
1184
- msgid "Add to WP-Members Settings"
1185
- msgstr ""
1186
-
1187
- #: admin/tab-options.php:312
1188
- msgid "Close"
1189
- msgstr ""
1190
-
1191
- #: admin/tab-options.php:330 admin/tab-options.php:331
1192
- msgid "WP-Members Settings"
1193
- msgstr ""
1194
-
1195
- #: admin/tab-options.php:332
1196
- msgid ""
1197
- "The following is your WP-Members settings information if needed for support."
1198
- msgstr ""
1199
-
1200
- #: admin/tab-options.php:359
1201
- msgid "Click to Copy"
1202
- msgstr ""
1203
-
1204
- #: admin/tab-options.php:435
1205
- msgid "Custom Post Type settings were updated"
1206
- msgstr ""
1207
-
1208
- #: admin/tab-options.php:551
1209
- msgid "WP-Members settings were updated"
1210
- msgstr "WP-Member innstillinger er oppdatert"
1211
-
1212
- #: admin/tab-options.php:621 admin/tab-options.php:651
1213
- msgid "USE CUSTOM URL BELOW"
1214
- msgstr ""
1215
-
1216
- #: admin/tab-options.php:640
1217
- msgid "Select a page"
1218
- msgstr ""
1219
-
1220
- #: admin/user-export.php:59 inc/class-wp-members.php:1232
1221
- #: inc/class-wp-members.php:1255
1222
- msgid "Username"
1223
- msgstr "Brukernavn"
1224
-
1225
- #: admin/user-export.php:65
1226
- msgid "Activated?"
1227
- msgstr "Aktivert?"
1228
-
1229
- #: admin/user-export.php:68 admin/users.php:317
1230
- msgid "Subscription"
1231
- msgstr "Abonnement"
1232
-
1233
- #: admin/user-export.php:71
1234
- msgid "Registered"
1235
- msgstr "Registrert"
1236
-
1237
- #: admin/user-export.php:72
1238
- msgid "IP"
1239
- msgstr "IP"
1240
-
1241
- #: admin/user-export.php:135
1242
- msgid "Yes"
1243
- msgstr "Ja"
1244
-
1245
- #: admin/user-export.php:135 admin/users.php:399
1246
- msgid "No"
1247
- msgstr "Nei"
1248
-
1249
- #: admin/users.php:49 admin/users.php:54 admin/users.php:80
1250
- msgid "Activate"
1251
- msgstr "Aktiver"
1252
-
1253
- #: admin/users.php:50 admin/users.php:55 admin/users.php:83
1254
- msgid "Deactivate"
1255
- msgstr ""
1256
-
1257
- #: admin/users.php:52 admin/users.php:57
1258
- msgid "Export"
1259
- msgstr "Eksporter"
1260
-
1261
- #: admin/users.php:58 admin/users.php:109
1262
- msgid "Export All Users"
1263
- msgstr ""
1264
-
1265
- #: admin/users.php:158
1266
- #, php-format
1267
- msgid "%s users activated"
1268
- msgstr ""
1269
-
1270
- #: admin/users.php:158
1271
- #, php-format
1272
- msgid "%s users deactivated"
1273
- msgstr ""
1274
-
1275
- #: admin/users.php:161
1276
- msgid "No users selected"
1277
- msgstr ""
1278
-
1279
- #: admin/users.php:181
1280
- #, php-format
1281
- msgid "%s activated"
1282
- msgstr ""
1283
-
1284
- #: admin/users.php:186
1285
- #, php-format
1286
- msgid "%s deactivated"
1287
- msgstr ""
1288
-
1289
- #: admin/users.php:190
1290
- msgid "That user is already active"
1291
- msgstr ""
1292
-
1293
- #: admin/users.php:315
1294
- msgid "Pending"
1295
- msgstr ""
1296
-
1297
- #: admin/users.php:316
1298
- msgid "Trial"
1299
- msgstr ""
1300
-
1301
- #: admin/users.php:318
1302
- msgid "Expired"
1303
- msgstr ""
1304
-
1305
- #: admin/users.php:321
1306
- msgid "Not Activated"
1307
- msgstr ""
1308
-
1309
- #: admin/users.php:322
1310
- msgid "Deactivated"
1311
- msgstr ""
1312
-
1313
- #: admin/users.php:324
1314
- msgid "Not Exported"
1315
- msgstr ""
1316
-
1317
- #: inc/api.php:304 inc/class-wp-members.php:1296
1318
- msgid "log in"
1319
- msgstr ""
1320
-
1321
- #: inc/api.php:305
1322
- msgid "log out"
1323
- msgstr ""
1324
-
1325
- #: inc/class-wp-members-forms.php:961 inc/class-wp-members.php:1247
1326
- #: inc/wp-registration.php:77
1327
- #, php-format
1328
- msgid "Please indicate that you agree to the %s Terms of Service %s"
1329
- msgstr ""
1330
-
1331
- #: inc/class-wp-members-forms.php:962 inc/class-wp-members.php:1198
1332
- #: inc/wp-registration.php:78
1333
- msgid "TOS"
1334
- msgstr "VfD"
1335
-
1336
- #: inc/class-wp-members-forms.php:962 inc/wp-registration.php:78
1337
- #: wp-members-tos.php:23
1338
- msgid "Terms of Service"
1339
- msgstr "Nettsidens vilkår"
1340
-
1341
- #: inc/class-wp-members-products.php:212
1342
- msgid "Product"
1343
- msgstr ""
1344
-
1345
- #: inc/class-wp-members-products.php:213
1346
- msgid "Products"
1347
- msgstr ""
1348
-
1349
- #: inc/class-wp-members-products.php:218
1350
- msgid "Memberships"
1351
- msgstr ""
1352
-
1353
- #: inc/class-wp-members-products.php:219
1354
- #, php-format
1355
- msgid "All %s"
1356
- msgstr ""
1357
-
1358
- #: inc/class-wp-members-products.php:220
1359
- #, php-format
1360
- msgid "Add New %s"
1361
- msgstr ""
1362
-
1363
- #: inc/class-wp-members-products.php:221
1364
- msgid "Add New"
1365
- msgstr "Opprett ny"
1366
-
1367
- #: inc/class-wp-members-products.php:222
1368
- #, php-format
1369
- msgid "New %s"
1370
- msgstr ""
1371
-
1372
- #: inc/class-wp-members-products.php:223
1373
- #, php-format
1374
- msgid "Edit %s"
1375
- msgstr ""
1376
-
1377
- #: inc/class-wp-members-products.php:224
1378
- #, php-format
1379
- msgid "Update %s"
1380
- msgstr ""
1381
-
1382
- #: inc/class-wp-members-products.php:225 inc/class-wp-members-products.php:226
1383
- #, php-format
1384
- msgid "View %s"
1385
- msgstr ""
1386
-
1387
- #: inc/class-wp-members-products.php:227
1388
- #, php-format
1389
- msgid "Search %s"
1390
- msgstr ""
1391
-
1392
- #: inc/class-wp-members-products.php:228
1393
- msgid "Not found"
1394
- msgstr ""
1395
-
1396
- #: inc/class-wp-members-products.php:229
1397
- msgid "Not found in Trash"
1398
- msgstr ""
1399
-
1400
- #: inc/class-wp-members-products.php:230
1401
- msgid "Insert into item"
1402
- msgstr ""
1403
-
1404
- #: inc/class-wp-members-products.php:231
1405
- #, php-format
1406
- msgid "Save %s Details"
1407
- msgstr ""
1408
-
1409
- #: inc/class-wp-members-products.php:234
1410
- msgid "Membership Product"
1411
- msgstr ""
1412
-
1413
- #: inc/class-wp-members-products.php:235
1414
- msgid "WP-Members Membership Products"
1415
- msgstr ""
1416
-
1417
- #: inc/class-wp-members-shortcodes.php:135
1418
- msgid ""
1419
- "This is a generic message to display the form message dialog in the "
1420
- "Customizer."
1421
- msgstr ""
1422
-
1423
- #: inc/class-wp-members-shortcodes.php:146 inc/class-wp-members.php:1275
1424
- #: inc/deprecated.php:180
1425
- msgid "There was an error with the CAPTCHA form."
1426
- msgstr "Der oppstod en feil i CAPTCHA skjemaet."
1427
-
1428
- #: inc/class-wp-members-shortcodes.php:676
1429
- msgid "Click here to log out."
1430
- msgstr ""
1431
-
1432
- #: inc/class-wp-members-shortcodes.php:745 inc/class-wp-members.php:1249
1433
- #: inc/class-wp-members.php:1298 inc/wp-registration.php:366
1434
- msgid "Register"
1435
- msgstr "Registrer"
1436
-
1437
- #: inc/class-wp-members-shortcodes.php:748 inc/class-wp-members.php:1217
1438
- msgid "Log In"
1439
- msgstr ""
1440
-
1441
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:315
1442
- msgid "WP-Members Additional Fields"
1443
- msgstr "WP-Members Ekstra Felter"
1444
-
1445
- #: inc/class-wp-members-user-profile.php:38 inc/deprecated.php:589
1446
- msgid "Additional Information"
1447
- msgstr ""
1448
-
1449
- #: inc/class-wp-members-user-profile.php:448 inc/wp-registration.php:296
1450
- msgid "Activate this user?"
1451
- msgstr "Aktiver bruker?"
1452
-
1453
- #: inc/class-wp-members-user-profile.php:453
1454
- msgid "Reactivate this user?"
1455
- msgstr ""
1456
-
1457
- #: inc/class-wp-members-user-profile.php:458
1458
- msgid "Deactivate this user?"
1459
- msgstr ""
1460
-
1461
- #: inc/class-wp-members-user-profile.php:507
1462
- msgid "IP @ registration"
1463
- msgstr "IP @ registrering"
1464
-
1465
- #: inc/class-wp-members-user-profile.php:526
1466
- msgid "Product Access"
1467
- msgstr ""
1468
-
1469
- #: inc/class-wp-members-user-profile.php:534
1470
- msgid "Enable"
1471
- msgstr ""
1472
-
1473
- #: inc/class-wp-members-user-profile.php:535
1474
- msgid "Disable"
1475
- msgstr ""
1476
-
1477
- #: inc/class-wp-members-user-profile.php:541
1478
- msgid "Expires:"
1479
- msgstr ""
1480
-
1481
- #: inc/class-wp-members-user-profile.php:543
1482
- msgid "Enabled"
1483
- msgstr ""
1484
-
1485
- #: inc/class-wp-members-user.php:712
1486
- msgid "<strong>ERROR</strong>: User has not been activated."
1487
- msgstr ""
1488
-
1489
- #: inc/class-wp-members-widget.php:24
1490
- msgid "Displays the WP-Members sidebar login."
1491
- msgstr ""
1492
-
1493
- #: inc/class-wp-members-widget.php:39 inc/class-wp-members-widget.php:82
1494
- msgid "Login Status"
1495
- msgstr "Loginstatus"
1496
-
1497
- #: inc/class-wp-members-widget.php:46
1498
- msgid "Title:"
1499
- msgstr "Tittel:"
1500
-
1501
- #: inc/class-wp-members-widget.php:50
1502
- msgid "Redirect to (optional):"
1503
- msgstr ""
1504
-
1505
- #: inc/class-wp-members.php:1183
1506
- msgid "First Name"
1507
- msgstr "Fornavn"
1508
-
1509
- #: inc/class-wp-members.php:1184
1510
- msgid "Last Name"
1511
- msgstr "Etternavn"
1512
-