WP-Members Membership Plugin - Version 2.9.9

Version Description

  • Code standards in wp-members-email.php
  • Rebuilt admin notification email to follow new regular email structure with more filters in wp-members-email.com
  • Added $toggle to headers filter that is used in both emails so that headers could be filtered based on the email being sent (i.e. sending plain text for admin notification vs html for others. in wp-members-email.php
  • Added redirect_to parameter as a widget entry in wp-members-sidebar.php
  • Corrected flaws in error checking for adding new fields in /admin/tab-fields.php
  • Added functions for updating user_status in wp_users table in /admin/users.php
  • Fixed get_user_meta 'true' error in wp-members-core.php, users.php, /admin/users.php, /admin/user-profile.php
  • Added dummy comments template to protect comments without post password.
  • Added new action for deactivting a user (opposite of wpmem_user_activated).
  • Added check to remove password, confirm_password, and confirm_email from export (data for these was already skipped, but the field space was there).
  • Added wpmem_status_msg_args and wpmem_login_links_args filters.
  • Corrected Really Simple Captcha, added field wrapper and should not display on user profile edit.
Download this release

Release Info

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

Version 2.9.9

Files changed (72) hide show
  1. admin/admin.php +283 -0
  2. admin/dialogs.php +242 -0
  3. admin/index.php +1 -0
  4. admin/post.php +352 -0
  5. admin/tab-captcha.php +233 -0
  6. admin/tab-dialogs.php +118 -0
  7. admin/tab-emails.php +165 -0
  8. admin/tab-fields.php +544 -0
  9. admin/tab-options.php +342 -0
  10. admin/user-export.php +131 -0
  11. admin/user-profile.php +230 -0
  12. admin/users.php +514 -0
  13. css/admin.css +46 -0
  14. css/generic-no-float.css +249 -0
  15. css/generic-rigid.css +288 -0
  16. css/index.php +1 -0
  17. css/wp-login.css +29 -0
  18. css/wp-members-2011.css +311 -0
  19. css/wp-members-2012.css +297 -0
  20. css/wp-members-2013.css +204 -0
  21. css/wp-members-2014-no-float.css +210 -0
  22. css/wp-members-2014.css +234 -0
  23. css/wp-members-2015-no-float.css +254 -0
  24. css/wp-members-2015.css +265 -0
  25. css/wp-members-kubrick.css +188 -0
  26. css/wp-members.css +216 -0
  27. forms.php +1041 -0
  28. index.php +1 -0
  29. js/admin.js +442 -0
  30. js/index.php +1 -0
  31. lang/wp-members-ca_CA.mo +0 -0
  32. lang/wp-members-ca_CA.po +1230 -0
  33. lang/wp-members-cs_CZ.mo +0 -0
  34. lang/wp-members-cs_CZ.po +1358 -0
  35. lang/wp-members-da_DK.mo +0 -0
  36. lang/wp-members-da_DK.po +1450 -0
  37. lang/wp-members-de_DE.mo +0 -0
  38. lang/wp-members-de_DE.po +1331 -0
  39. lang/wp-members-es_ES.mo +0 -0
  40. lang/wp-members-es_ES.po +1459 -0
  41. lang/wp-members-fi.mo +0 -0
  42. lang/wp-members-fi.po +1470 -0
  43. lang/wp-members-fr_FR.mo +0 -0
  44. lang/wp-members-fr_FR.po +1263 -0
  45. lang/wp-members-hi_IN.mo +0 -0
  46. lang/wp-members-hi_IN.po +1502 -0
  47. lang/wp-members-it_IT.mo +0 -0
  48. lang/wp-members-it_IT.po +1480 -0
  49. lang/wp-members-ja.mo +0 -0
  50. lang/wp-members-ja.po +1408 -0
  51. lang/wp-members-ko_KR.mo +0 -0
  52. lang/wp-members-ko_KR.po +1427 -0
  53. lang/wp-members-nb_NO.mo +0 -0
  54. lang/wp-members-nb_NO.po +1234 -0
  55. lang/wp-members-nl_NL.mo +0 -0
  56. lang/wp-members-nl_NL.po +1541 -0
  57. lang/wp-members-pl_PL.mo +0 -0
  58. lang/wp-members-pl_PL.po +1542 -0
  59. lang/wp-members-pt_BR.mo +0 -0
  60. lang/wp-members-pt_BR.po +1474 -0
  61. lang/wp-members-pt_PT.mo +0 -0
  62. lang/wp-members-pt_PT.po +1460 -0
  63. lang/wp-members-ru_RU.mo +0 -0
  64. lang/wp-members-ru_RU.po +1442 -0
  65. lang/wp-members-sk_SK.mo +0 -0
  66. lang/wp-members-sk_SK.po +1454 -0
  67. lang/wp-members-sr_RS.mo +0 -0
  68. lang/wp-members-sr_RS.po +1439 -0
  69. lang/wp-members-sv_SE.mo +0 -0
  70. lang/wp-members-sv_SE.po +1606 -0
  71. lang/wp-members-tr_TR.mo +0 -0
  72. lang/wp-members-tr_TR.po +490 -0
admin/admin.php ADDED
@@ -0,0 +1,283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage administration.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /** File Includes */
20
+ include_once( 'dialogs.php' );
21
+ //include_once( 'users.php' ); // currently included in the main plugin file
22
+ //include_once( 'user-profile.php' ); // currently included in the main plugin file
23
+
24
+
25
+ /** Actions and Filters */
26
+ add_action( 'wpmem_admin_do_tab', 'wpmem_admin_do_tab', 10, 2 );
27
+ add_action( 'wp_ajax_wpmem_a_field_reorder', 'wpmem_a_do_field_reorder' );
28
+ add_action( 'user_new_form', 'wpmem_admin_add_new_user' );
29
+ add_filter( 'plugin_action_links', 'wpmem_admin_plugin_links', 10, 2 );
30
+
31
+
32
+ /**
33
+ * Calls the function to reorder fields
34
+ *
35
+ * @since 2.8.0
36
+ *
37
+ * @uses wpmem_a_field_reorder
38
+ */
39
+ function wpmem_a_do_field_reorder(){
40
+ include_once( 'tab-fields.php' );
41
+ wpmem_a_field_reorder();
42
+ }
43
+
44
+
45
+ /**
46
+ * filter to add link to settings from plugin panel
47
+ *
48
+ * @since 2.4
49
+ *
50
+ * @param array $links
51
+ * @param string $file
52
+ * @static string $wpmem_plugin
53
+ * @return array $links
54
+ */
55
+ function wpmem_admin_plugin_links( $links, $file )
56
+ {
57
+ static $wpmem_plugin;
58
+ if( !$wpmem_plugin ) $wpmem_plugin = plugin_basename( 'wp-members/wp-members.php' );
59
+ if( $file == $wpmem_plugin ) {
60
+ $settings_link = '<a href="options-general.php?page=wpmem-settings">' . __( 'Settings' ) . '</a>';
61
+ $links = array_merge( array( $settings_link ), $links );
62
+ }
63
+ return $links;
64
+ }
65
+
66
+
67
+ /**
68
+ * Loads the admin javascript and css files
69
+ *
70
+ * @since 2.5.1
71
+ *
72
+ * @uses wp_enqueue_script
73
+ * @uses wp_enqueue_style
74
+ */
75
+ function wpmem_load_admin_js()
76
+ {
77
+ // queue up admin ajax and styles
78
+ wp_enqueue_script( 'wpmem-admin-js', WPMEM_DIR . '/js/admin.js', '', WPMEM_VERSION );
79
+ wp_enqueue_style ( 'wpmem-admin-css', WPMEM_DIR . '/css/admin.css', '', WPMEM_VERSION );
80
+ }
81
+
82
+
83
+ /**
84
+ * Creates the captcha tab
85
+ *
86
+ * @since 2.8
87
+ *
88
+ * @param string $tab
89
+ * @return
90
+ */
91
+ function wpmem_a_captcha_tab( $tab ) {
92
+ include_once( 'tab-captcha.php' );
93
+ return ( $tab == 'captcha' ) ? wpmem_a_build_captcha_options() : false ;
94
+ }
95
+
96
+
97
+ /**
98
+ * Adds the captcha tab
99
+ *
100
+ * @since 2.8
101
+ *
102
+ * @param array $tabs The array of tabs for the admin panel
103
+ * @return array The updated array of tabs for the admin panel
104
+ */
105
+ function wpmem_add_captcha_tab( $tabs ) {
106
+ return array_merge( $tabs, array( 'captcha' => 'Captcha' ) );
107
+ }
108
+
109
+
110
+ /**
111
+ * Primary admin function
112
+ *
113
+ * @since 2.1
114
+ */
115
+ function wpmem_admin()
116
+ {
117
+ $did_update = ( isset( $_POST['wpmem_admin_a'] ) ) ? wpmem_admin_action( $_POST['wpmem_admin_a'] ) : false;
118
+
119
+ $wpmem_settings = get_option( 'wpmembers_settings' );
120
+ if( $wpmem_settings[6] ) {
121
+ add_filter( 'wpmem_admin_tabs', 'wpmem_add_captcha_tab' );
122
+ add_action( 'wpmem_admin_do_tab', 'wpmem_a_captcha_tab', 1, 1 );
123
+ } ?>
124
+
125
+ <div class="wrap">
126
+ <?php screen_icon( 'options-general' ); ?>
127
+ <!--<h2>WP-Members <?php _e('Settings', 'wp-members'); ?></h2>-->
128
+ <?php
129
+ $tab = ( isset( $_GET['tab'] ) ) ? $_GET['tab'] : 'options';
130
+
131
+ wpmem_admin_tabs( $tab );
132
+
133
+ wpmem_a_do_warnings( $did_update, $wpmem_settings );
134
+
135
+ /**
136
+ * Fires at the end of creating an admin panel tab.
137
+ *
138
+ * This action is part of the plugin's admin panel API for adding
139
+ * additional admin tabs. This action is for adding content for
140
+ * a custom tab.
141
+ *
142
+ * @since 2.8
143
+ *
144
+ * @param string $tab The tab being generated.
145
+ * @param array $wpmem_settings The plugin settings.
146
+ */
147
+ do_action( 'wpmem_admin_do_tab', $tab, $wpmem_settings );
148
+ ?>
149
+ </div><!-- .wrap --><?php
150
+
151
+ return;
152
+ }
153
+
154
+
155
+ /**
156
+ * Displays the content for default tabs
157
+ *
158
+ * @since 2.8
159
+ *
160
+ * @param string $tab The tab that we are on and displaying
161
+ * @param array $wpmem_settings The array of plugin settings
162
+ */
163
+ function wpmem_admin_do_tab( $tab, $wpmem_settings )
164
+ {
165
+ switch ( $tab ) {
166
+
167
+ case 'options' :
168
+ include_once( 'tab-options.php' );
169
+ wpmem_a_build_options( $wpmem_settings );
170
+ break;
171
+ case 'fields' :
172
+ include_once( 'tab-fields.php' );
173
+ wpmem_a_build_fields();
174
+ break;
175
+ case 'dialogs' :
176
+ include_once( 'tab-dialogs.php' );
177
+ wpmem_a_build_dialogs();
178
+ break;
179
+ case 'emails' :
180
+ include_once( 'tab-emails.php' );
181
+ wpmem_a_build_emails( $wpmem_settings );
182
+ break;
183
+ }
184
+ }
185
+
186
+
187
+ /**
188
+ * Assemble the tabs for the admin panel
189
+ *
190
+ * @since 2.8
191
+ *
192
+ * @param string $current The tab that we are on
193
+ */
194
+ function wpmem_admin_tabs( $current = 'options' )
195
+ {
196
+ $tabs = array(
197
+ 'options' => 'WP-Members ' . __( 'Options', 'wp-members' ),
198
+ 'fields' => __( 'Fields', 'wp-members' ),
199
+ 'dialogs' => __( 'Dialogs', 'wp-members' ),
200
+ 'emails' => __( 'Emails', 'wp-members' )
201
+ );
202
+
203
+ /**
204
+ * Filter the admin tabs for the plugin settings page.
205
+ *
206
+ * @since 2.8.0
207
+ *
208
+ * @param array $tabs An array of the tabs to be displayed on the plugin settings page.
209
+ */
210
+ $tabs = apply_filters( 'wpmem_admin_tabs', $tabs );
211
+
212
+ $links = array();
213
+ foreach( $tabs as $tab => $name ) {
214
+
215
+ $class = ( $tab == $current ) ? 'nav-tab nav-tab-active' : 'nav-tab';
216
+ $links[] = '<a class="' . $class . '" href="?page=wpmem-settings&amp;tab=' . $tab . '">' . $name . '</a>';
217
+
218
+ }
219
+
220
+ echo '<h2 class="nav-tab-wrapper">';
221
+ foreach( $links as $link )
222
+ echo $link;
223
+ echo '</h2>';
224
+ }
225
+
226
+
227
+ /**
228
+ * Handles the various update actions for the default tabs
229
+ *
230
+ * @since 2.8
231
+ *
232
+ * @param string $action The action that is being done
233
+ */
234
+ function wpmem_admin_action( $action )
235
+ {
236
+ $did_update = ''; // makes sure $did_update is defined
237
+ switch( $action ) {
238
+
239
+ case( 'update_settings' ):
240
+ include_once( 'tab-options.php' );
241
+ $did_update = wpmem_update_options();
242
+ break;
243
+
244
+ case( 'update_fields' ):
245
+ case( 'add_field' ):
246
+ case( 'edit_field' ):
247
+ include_once( 'tab-fields.php' );
248
+ $did_update = wpmem_update_fields( $action );
249
+ break;
250
+
251
+ case( 'update_dialogs' ):
252
+ include_once( 'tab-dialogs.php' );
253
+ $did_update = wpmem_update_dialogs();
254
+ break;
255
+
256
+ case( 'update_emails' ):
257
+ include_once( 'tab-emails.php' );
258
+ $did_update = wpmem_update_emails();
259
+ break;
260
+
261
+ case( 'update_captcha' ):
262
+ include_once( 'tab-captcha.php' );
263
+ $did_update = wpmem_update_captcha();
264
+ break;
265
+ }
266
+
267
+ return $did_update;
268
+ }
269
+
270
+
271
+ /**
272
+ * Adds WP-Members custom fields to the WP Add New User form
273
+ *
274
+ * @since 2.9.1
275
+ */
276
+ function wpmem_admin_add_new_user()
277
+ {
278
+ include_once( WPMEM_PATH . '/native-registration.php' );
279
+ echo wpmem_do_wp_newuser_form();
280
+ return;
281
+ }
282
+
283
+ /** End of File **/
admin/dialogs.php ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Handles functions that output admin dialogs to adminstrative users.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /** Actions */
20
+ if( ! is_multisite() ) {
21
+ add_action('wp_dashboard_setup', 'butlerblog_dashboard_widget');
22
+ }
23
+
24
+
25
+ /**
26
+ * Outputs the various admin warning messages
27
+ *
28
+ * @since 2.8
29
+ *
30
+ * @param string $did_update Contains the update message
31
+ * @param array $wpmem_settings Array containing the plugin settings
32
+ */
33
+ function wpmem_a_do_warnings( $did_update, $wpmem_settings )
34
+ {
35
+ //$wpmem_settings = get_option( 'wpmembers_settings' );
36
+ $wpmem_dialogs = get_option( 'wpmembers_dialogs' );
37
+
38
+ if( $did_update != false ) {
39
+
40
+ /* if( $chkreq == "err" ) { ?>
41
+ <div class="error"><p><strong><?php _e('Settings were saved, but you have required fields that are not set to display!', 'wp-members'); ?></strong><br /><br />
42
+ <?php _e('Note: This will not cause an error for the end user, as only displayed fields are validated. However, you should still check that your displayed and required fields match up. Mismatched fields are highlighted below.', 'wp-members'); ?></p></div>
43
+ <?php } elseif( $add_field_err_msg ) { ?>
44
+ <div class="error"><p><strong><?php echo $add_field_err_msg; ?></p></div>
45
+ <?php } else { ?> */ ?>
46
+ <div id="message" class="updated fade"><p><strong><?php echo $did_update; ?></strong></p></div>
47
+ <?php //}
48
+
49
+ }
50
+
51
+ /**
52
+ * Warning messages
53
+ */
54
+
55
+ // settings allow anyone to register
56
+ if( get_option( 'users_can_register' ) != 0 && $wpmem_settings[11] == 0 ) {
57
+ wpmem_a_warning_msg(1);
58
+ }
59
+
60
+ // settings allow anyone to comment
61
+ if( get_option( 'comment_registration' ) !=1 && $wpmem_settings[11] == 0 ) {
62
+ wpmem_a_warning_msg(2);
63
+ }
64
+
65
+ // rss set to full text feeds
66
+ if( get_option( 'rss_use_excerpt' ) !=1 && $wpmem_settings[11] == 0 ) {
67
+ wpmem_a_warning_msg(3);
68
+ }
69
+
70
+ // holding registrations but haven't changed default successful registration message
71
+ if( $wpmem_settings[11] == 0 && $wpmem_settings[5] == 1 && $wpmem_dialogs[3] == 'Congratulations! Your registration was successful.<br /><br />You may now login using the password that was emailed to you.' ) {
72
+ wpmem_a_warning_msg(4);
73
+ }
74
+
75
+ // turned off registration but also have set to moderate and/or email new registrations
76
+ if( $wpmem_settings[11] == 0 && $wpmem_settings[7] == 1 ) {
77
+ if( $wpmem_settings[5] == 1 || $wpmem_settings[4] ==1 ) {
78
+ wpmem_a_warning_msg(5);
79
+ }
80
+ }
81
+
82
+ // haven't entered recaptcha api keys
83
+ if( $wpmem_settings[11] == 0 && $wpmem_settings[6] == 1 ) {
84
+ $wpmem_captcha = get_option('wpmembers_captcha');
85
+ if( !$wpmem_captcha['recaptcha']['public'] || !$wpmem_captcha['recaptcha']['private'] ) {
86
+ wpmem_a_warning_msg(6);
87
+ }
88
+ }
89
+
90
+ }
91
+
92
+
93
+ /**
94
+ * Assembles the various admin warning messages
95
+ *
96
+ * @since 2.4.0
97
+ *
98
+ * @param int $msg The number for which message should be displayed
99
+ */
100
+ function wpmem_a_warning_msg( $msg )
101
+ {
102
+ $strong_msg = $remain_msg = $span_msg = '';
103
+
104
+ switch( $msg ) {
105
+
106
+ case 1:
107
+
108
+ $strong_msg = __( 'Your WP settings allow anyone to register - this is not the recommended setting.', 'wp-members' );
109
+ $remain_msg = sprintf( __( 'You can %s change this here %s making sure the box next to "Anyone can register" is unchecked.', 'wp-members'), '<a href="options-general.php">', '</a>' );
110
+ $span_msg = __( 'This setting allows a link on the /wp-login.php page to register using the WP native registration process thus circumventing any registration you are using with WP-Members. In some cases, this may suit the users wants/needs, but most users should uncheck this option. If you do not change this setting, you can choose to ignore these warning messages under WP-Members Settings.', 'wp-members' );
111
+
112
+ break;
113
+
114
+ case 2:
115
+
116
+ $strong_msg = __( 'Your WP settings allow anyone to comment - this is not the recommended setting.', 'wp-members' );
117
+ $remain_msg = sprintf( __( 'You can %s change this here %s by checking the box next to "Users must be registered and logged in to comment."', 'wp-members' ), '<a href="options-discussion.php">', '</a>' );
118
+ $span_msg = __( 'This setting allows any users to comment, whether or not they are registered. Depending on how you are using WP-Members will determine whether you should change this setting or not. If you do not change this setting, you can choose to ignore these warning messages under WP-Members Settings.', 'wp-members' );
119
+
120
+ break;
121
+
122
+ case 3:
123
+
124
+ $strong_msg = __( 'Your WP settings allow full text rss feeds - this is not the recommended setting.', 'wp-members' );
125
+ $remain_msg = sprintf( __( 'You can %s change this here %s by changing "For each article in a feed, show" to "Summary."', 'wp-members' ), '<a href="options-reading.php">' , '</a>' );
126
+ $span_msg = __( 'Leaving this set to full text allows anyone to read your protected content in an RSS reader. Changing this to Summary prevents this as your feeds will only show summary text.', 'wp-members' );
127
+
128
+ break;
129
+
130
+ case 4:
131
+
132
+ $strong_msg = __( 'You have set WP-Members to hold registrations for approval', 'wp-members' );
133
+ $remain_msg = __( 'but you have not changed the default message for "Registration Completed" under "WP-Members Dialogs and Error Messages." You should change this message to let users know they are pending approval.', 'wp-members' );
134
+
135
+ break;
136
+
137
+ case 5:
138
+
139
+ $strong_msg = __( 'You have set WP-Members to turn off the registration process', 'wp-members' );
140
+ $remain_msg = __( 'but you also set to moderate and/or email admin new registrations. You will need to set up a registration page for users to register.', 'wp-members' );
141
+
142
+ break;
143
+
144
+ case 6:
145
+
146
+ $strong_msg = __( 'You have turned on reCAPTCHA', 'wp-members');
147
+ $remain_msg = __( 'but you have not entered API keys. You will need both a public and private key. The CAPTCHA will not display unless a valid API key is included.', 'wp-members' );
148
+
149
+ break;
150
+
151
+ }
152
+
153
+ if ( $span_msg ) { $span_msg = ' [<span title="' . $span_msg . '">why is this?</span>]'; }
154
+ echo '<div class="error"><p><strong>' . $strong_msg . '</strong> ' . $remain_msg . $span_msg . '</p></div>';
155
+
156
+ }
157
+
158
+
159
+ /**
160
+ * Assemble the side meta box
161
+ *
162
+ * @since 2.8
163
+ */
164
+ function wpmem_a_meta_box()
165
+ {
166
+ ?><div class="postbox">
167
+ <h3><span>WP-Members Information</span></h3>
168
+ <div class="inside">
169
+
170
+ <p><strong><?php _e('Version:', 'wp-members'); echo "&nbsp;".WPMEM_VERSION; ?></strong><br />
171
+ <a href="http://rocketgeek.com/plugins/wp-members/quick-start-guide/"><?php _e( 'Quick Start Guide', 'wp-members' ); ?></a><br />
172
+ <a href="http://rocketgeek.com/plugins/wp-members/users-guide/"><?php _e( 'Online User Guide', 'wp-members' ); ?></a><br />
173
+ <a href="http://rocketgeek.com/plugins/wp-members/users-guide/faqs/"><?php _e( 'FAQs', 'wp-members' ); ?></a>
174
+ <?php if( ! defined( 'WPMEM_REMOVE_ATTR' ) ) { ?>
175
+ <br /><br /><a href="http://rocketgeek.com/about/site-membership-subscription/">Find out how to get access</a> to WP-Members private members forum, premium code snippets, tutorials, and add-on modules!
176
+ <?php } ?>
177
+ </p>
178
+
179
+ <p><i>
180
+ <?php _e( 'Thank you for using WP-Members', 'wp-members' ); ?>&trade;!<br /><br />
181
+ <?php _e( 'A plugin developed by', 'wp-members' ); ?>&nbsp;<a href="http://butlerblog.com">Chad Butler</a><br />
182
+ <?php _e( 'Follow', 'wp-members' ); ?> ButlerBlog: <a href="http://feeds.butlerblog.com/butlerblog" target="_blank">RSS</a> | <a href="http://www.twitter.com/butlerblog" target="_blank">Twitter</a><br />
183
+ Copyright &copy; 2006-<?php echo date("Y"); ?><br /><br />
184
+ Premium support and installation service <a href="http://rocketgeek.com/about/site-membership-subscription/">available at rocketgeek.com</a>.
185
+ </i></p>
186
+ </div>
187
+ </div><?php
188
+ }
189
+
190
+
191
+ /**
192
+ * Assemble the rocketgeek.com rss feed box
193
+ *
194
+ * @since 2.8.0
195
+ */
196
+ function wpmem_a_rss_box()
197
+ {
198
+ ?><div class="postbox">
199
+ <h3><span><?php _e( 'Latest from RocketGeek', 'wp-members' ); ?></span></h3>
200
+ <div class="inside"><?php
201
+ wp_widget_rss_output(array(
202
+ 'url' => 'http://rocketgeek.com/feed/', //put your feed URL here
203
+ 'title' => __( 'Latest from RocketGeek', 'wp-members' ),
204
+ 'items' => 4, //how many posts to show
205
+ 'show_summary' => 0,
206
+ 'show_author' => 0,
207
+ 'show_date' => 0
208
+ ));?>
209
+ </div>
210
+ </div><?php
211
+ }
212
+
213
+
214
+ /**
215
+ * Add the dashboard widget
216
+ *
217
+ * @since 2.8.0
218
+ */
219
+ function butlerblog_dashboard_widget() {
220
+ wp_add_dashboard_widget( 'dashboard_custom_feed', __( 'Latest from ButlerBlog', 'wp-members' ), 'butlerblog_feed_output' );
221
+ }
222
+
223
+
224
+ /**
225
+ * Output the rss feed for the dashboard widget
226
+ *
227
+ * @since 2.8.0
228
+ */
229
+ function butlerblog_feed_output() {
230
+ echo '<div class="rss-widget">';
231
+ wp_widget_rss_output(array(
232
+ 'url' => 'http://feeds.feedburner.com/butlerblog',
233
+ 'title' => __( 'Latest from ButlerBlog', 'wp-members' ),
234
+ 'items' => 5,
235
+ 'show_summary' => 0,
236
+ 'show_author' => 0,
237
+ 'show_date' => 1
238
+ ));
239
+ echo "</div>";
240
+ }
241
+
242
+ /** End of File **/
admin/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // there is nothing to see here! ?>
admin/post.php ADDED
@@ -0,0 +1,352 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the post/page editor screens.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * Actions
21
+ */
22
+ add_action( 'admin_footer-edit.php', 'wpmem_bulk_posts_action' );
23
+ add_action( 'load-edit.php', 'wpmem_posts_page_load' );
24
+ add_action( 'admin_notices', 'wpmem_posts_admin_notices');
25
+
26
+
27
+ /**
28
+ * Function to add block/unblock to the bulk dropdown list
29
+ *
30
+ * @since 2.9.2
31
+ */
32
+ function wpmem_bulk_posts_action()
33
+ { ?>
34
+ <script type="text/javascript">
35
+ jQuery(document).ready(function() {
36
+ jQuery('<option>').val('block').text('<?php _e( 'Block', 'wp-members' )?>').appendTo("select[name='action']");
37
+ jQuery('<option>').val('unblock').text('<?php _e( 'Unblock', 'wp-members' )?>').appendTo("select[name='action']");
38
+ jQuery('<option>').val('block').text('<?php _e( 'Block', 'wp-members' )?>').appendTo("select[name='action2']");
39
+ jQuery('<option>').val('unblock').text('<?php _e( 'Unblock', 'wp-members' )?>').appendTo("select[name='action2']");
40
+ });
41
+ </script>
42
+ <?php
43
+ }
44
+
45
+
46
+ /**
47
+ * Function to handle bulk actions at page load
48
+ *
49
+ * @since 2.9.2
50
+ *
51
+ * @uses WP_Users_List_Table
52
+ */
53
+ function wpmem_posts_page_load()
54
+ {
55
+ $wp_list_table = _get_list_table( 'WP_Posts_List_Table' );
56
+ $action = $wp_list_table->current_action();
57
+ $sendback = '';
58
+
59
+ switch( $action ) {
60
+
61
+ case ( 'block' ):
62
+ case ( 'unblock' ):
63
+ /** validate nonce **/
64
+ check_admin_referer( 'bulk-posts' );
65
+ /** get the posts **/
66
+ $posts = ( isset( $_REQUEST['post'] ) ) ? $_REQUEST['post'] : '';
67
+ /** update posts **/
68
+ $x = '';
69
+ if( $posts ) {
70
+ foreach( $posts as $post_id ) {
71
+ $x++;
72
+ $post = get_post( $post_id );
73
+ $type = $post->post_type;
74
+ // update accordingly
75
+ if( ( $type == 'post' && WPMEM_BLOCK_POSTS == 0 ) ||
76
+ ( $type == 'page' && WPMEM_BLOCK_PAGES == 0 ) ) {
77
+ if( $action == 'block' ) {
78
+ update_post_meta( $post_id, '_wpmem_block', 1 );
79
+ } else {
80
+ delete_post_meta( $post_id, '_wpmem_block' );
81
+ }
82
+ }
83
+
84
+ if( ( $type == 'post' && WPMEM_BLOCK_POSTS == 1 ) ||
85
+ ( $type == 'page' && WPMEM_BLOCK_PAGES == 1 ) ) {
86
+ if( $action == 'unblock' ) {
87
+ update_post_meta( $post_id, '_wpmem_block', 0 );
88
+ } else {
89
+ delete_post_meta( $post_id, '_wpmem_block' );
90
+ }
91
+ }
92
+ }
93
+ /** set the return message */
94
+ $arr = array(
95
+ 'a' => $action,
96
+ 'n' => $x
97
+ );
98
+ if( $type == 'page' ) {
99
+ $arr['post_type'] = 'page';
100
+ }
101
+ $sendback = add_query_arg( array( $arr ), '', $sendback );
102
+ } else {
103
+ /** set the return message */
104
+ $sendback = add_query_arg( array( 'a' => 'none' ), '', $sendback );
105
+ }
106
+ break;
107
+
108
+ default:
109
+ return;
110
+
111
+ }
112
+
113
+ /** if we did not return already, we need to wp_redirect */
114
+ wp_redirect( $sendback );
115
+ exit();
116
+ }
117
+
118
+
119
+ /**
120
+ * Function to echo admin update message
121
+ *
122
+ * @since 2.8.2
123
+ */
124
+ function wpmem_posts_admin_notices()
125
+ {
126
+ global $pagenow, $post_type;
127
+ if( $pagenow == 'edit.php' && isset( $_REQUEST['a'] ) ) {
128
+ $action = ( $_REQUEST['a'] == 'block' ) ? 'blocked' : 'unblocked';
129
+ echo '<div class="updated"><p>' . $_REQUEST['n'] . ' ' . $post_type . ' ' . $action . '</p></div>';
130
+ }
131
+ }
132
+
133
+
134
+ /**
135
+ * Adds the blocking meta boxes for post and page editor screens.
136
+ *
137
+ * @since 2.8
138
+ */
139
+ function wpmem_block_meta_add()
140
+ {
141
+ /**
142
+ * Filter the post meta box title
143
+ *
144
+ * @since 2.9.0
145
+ */
146
+ $post_title = apply_filters( 'wpmem_admin_post_meta_title', __( 'Post Restriction', 'wp-members' ) );
147
+
148
+ /**
149
+ * Filter the page meta box title
150
+ *
151
+ * @since 2.9.0
152
+ */
153
+ $page_title = apply_filters( 'wpmem_admin_page_meta_title', __( 'Page Restriction', 'wp-members' ) );
154
+
155
+ add_meta_box( 'wpmem-block-meta-id', $post_title, 'wpmem_block_meta', 'post', 'side', 'high' );
156
+ add_meta_box( 'wpmem-block-meta-id', $page_title, 'wpmem_block_meta', 'page', 'side', 'high' );
157
+ }
158
+
159
+
160
+ /**
161
+ * Builds the meta boxes for post and page editor screens.
162
+ *
163
+ * @since 2.8
164
+ *
165
+ * @global $post The WordPress post object.
166
+ */
167
+ function wpmem_block_meta() {
168
+
169
+ global $post;
170
+
171
+ wp_nonce_field( 'wpmem_block_meta_nonce', 'wpmem_block_meta_nonce' );
172
+
173
+ $post_type = get_post_type_object( $post->post_type );
174
+
175
+ if( ( $post->post_type == 'post' && WPMEM_BLOCK_POSTS == 1 ) || ( $post->post_type == 'page' && WPMEM_BLOCK_PAGES == 1 ) ) {
176
+ $block = 0;
177
+ $notice_text = 'blocked';
178
+ $text = 'Unblock';
179
+ } elseif( ( $post->post_type == 'post' && WPMEM_BLOCK_POSTS == 0 ) || ( $post->post_type == 'page' && WPMEM_BLOCK_PAGES == 0 ) ) {
180
+ $block = 1;
181
+ $notice_text = 'not blocked';
182
+ $text = 'Block';
183
+ }
184
+ $meta = '_wpmem_block';
185
+ $admin_url = get_admin_url(); ?>
186
+
187
+ <p>
188
+ <?php
189
+ printf( '%s are %s by default.', $post_type->labels->name, $notice_text );
190
+ echo '&nbsp;&nbsp;';
191
+ printf( '<a href="%s/options-general.php?page=wpmem-settings">Edit</a>', $admin_url );
192
+ ?>
193
+ </p>
194
+ <p>
195
+ <?php if( $block == 1 ) { ?>
196
+ <input type="checkbox" id="wpmem_block" name="wpmem_block" value="1" <?php checked( get_post_meta( $post->ID, $meta, true ), '1' ); ?> />
197
+ <?php } else { ?>
198
+ <input type="checkbox" id="wpmem_block" name="wpmem_block" value="0" <?php checked( get_post_meta( $post->ID, $meta, true ), '0' ); ?> />
199
+ <?php } ?>
200
+ <label for="wpmem_block"><?php printf( '%s this %s', $text, strtolower( $post_type->labels->singular_name ) ); ?></label>
201
+ </p>
202
+ <?php
203
+ /**
204
+ * Fires after the post block meta box.
205
+ *
206
+ * Allows actions at the end of the block meta box on pages and posts.
207
+ *
208
+ * @since 2.8.8
209
+ *
210
+ * @param $post object The WP Post Object.
211
+ * @param $block boolean The WP-Members block value.
212
+ */
213
+ do_action( 'wpmem_admin_after_block_meta', $post, $block );
214
+ }
215
+
216
+
217
+ /**
218
+ * Saves the meta boxes data for post and page editor screens.
219
+ *
220
+ * @since 2.8
221
+ *
222
+ * @param int $post_id The post ID
223
+ */
224
+ function wpmem_block_meta_save( $post_id ) {
225
+
226
+ // quit if we are doing autosave
227
+ if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
228
+
229
+ // quit if the nonce isn't there, or is wrong
230
+ if( ! isset( $_POST['wpmem_block_meta_nonce'] ) || ! wp_verify_nonce( $_POST['wpmem_block_meta_nonce'], 'wpmem_block_meta_nonce' ) ) return;
231
+
232
+ // quit if the current user cannot edit posts
233
+ if( ! current_user_can( 'edit_posts' ) ) return;
234
+
235
+ // get value
236
+ $block = isset( $_POST['wpmem_block'] ) ? $_POST['wpmem_block'] : null;
237
+
238
+ // need the post object
239
+ global $post;
240
+
241
+ // update accordingly
242
+ if( $block != null ) {
243
+ update_post_meta( $post_id, '_wpmem_block', $block );
244
+ } else {
245
+ delete_post_meta( $post_id, '_wpmem_block' );
246
+ }
247
+
248
+ /**
249
+ * Fires after the post block meta box is saved.
250
+ *
251
+ * Allows actions to be hooked to the meta save process.
252
+ *
253
+ * @since 2.8.8
254
+ *
255
+ * @param $post object The WP Post Object.
256
+ * @param $block boolean The WP-Members block value.
257
+ */
258
+ do_action( 'wpmem_admin_block_meta_save', $post, $block, '' );
259
+ }
260
+
261
+
262
+ /**
263
+ * Adds WP-Members blocking status to Posts Table columns
264
+ *
265
+ * @since 2.8.3
266
+ *
267
+ * @uses wp_enqueue_style Loads the WP-Members admin stylesheet
268
+ *
269
+ * @param arr $columns The array of table columns
270
+ */
271
+ function wpmem_post_columns( $columns ) {
272
+ wp_enqueue_style ( 'wpmem-admin-css', WPMEM_DIR . '/css/admin.css', '', WPMEM_VERSION );
273
+ $columns['wpmem_block'] = ( WPMEM_BLOCK_POSTS == 1 ) ? __( 'Unblocked?', 'wp-members' ) : __( 'Blocked?', 'wp-members' );
274
+ return $columns;
275
+ }
276
+
277
+
278
+ /**
279
+ * Adds blocking status to the Post Table column
280
+ *
281
+ * @since 2.8.3
282
+ *
283
+ * @param $column_name
284
+ * @param $post_ID
285
+ */
286
+ function wpmem_post_columns_content( $column_name, $post_ID ) {
287
+ if( $column_name == 'wpmem_block' ) {
288
+
289
+ $block_meta = get_post_meta( $post_ID, '_wpmem_block', true );
290
+
291
+ /**
292
+ * Backward compatibility for old block/unblock meta
293
+ */
294
+ if( ! $block_meta ) {
295
+ // check for old meta
296
+ $old_block = get_post_meta( $post_ID, 'block', true );
297
+ $old_unblock = get_post_meta( $post_ID, 'unblock', true );
298
+ $block_meta = ( $old_block ) ? 1 : ( ( $old_unblock ) ? 0 : $block_meta );
299
+ }
300
+
301
+ echo ( WPMEM_BLOCK_POSTS == 1 && $block_meta == '0' ) ? __( 'Yes' ) : '';
302
+ echo ( WPMEM_BLOCK_POSTS == 0 && $block_meta == '1' ) ? __( 'Yes' ) : '';
303
+ }
304
+ }
305
+
306
+
307
+ /**
308
+ * Adds WP-Members blocking status to Page Table columns
309
+ *
310
+ * @since 2.8.3
311
+ *
312
+ * @uses wp_enqueue_style Loads the WP-Members admin stylesheet
313
+ *
314
+ * @param arr $columns The array of table columns
315
+ */
316
+ function wpmem_page_columns( $columns ) {
317
+ wp_enqueue_style ( 'wpmem-admin-css', WPMEM_DIR . '/css/admin.css', '', WPMEM_VERSION );
318
+ $columns['wpmem_block'] = ( WPMEM_BLOCK_PAGES == 1 ) ? __( 'Unblocked?', 'wp-members' ) : __( 'Blocked?', 'wp-members' );
319
+ return $columns;
320
+ }
321
+
322
+
323
+ /**
324
+
325
+ * Adds blocking status to the Page Table column
326
+ *
327
+ * @since 2.8.3
328
+ *
329
+ * @param $column_name
330
+ * @param $post_ID
331
+ */
332
+ function wpmem_page_columns_content( $column_name, $post_ID ) {
333
+ if( $column_name == 'wpmem_block' ) {
334
+
335
+ $block_meta = get_post_meta( $post_ID, '_wpmem_block', true );
336
+
337
+ /**
338
+ * Backward compatibility for old block/unblock meta
339
+ */
340
+ if( ! $block_meta ) {
341
+ // check for old meta
342
+ $old_block = get_post_meta( $post_ID, 'block', true );
343
+ $old_unblock = get_post_meta( $post_ID, 'unblock', true );
344
+ $block_meta = ( $old_block ) ? 1 : ( ( $old_unblock ) ? 0 : $block_meta );
345
+ }
346
+
347
+ echo ( WPMEM_BLOCK_PAGES == 1 && $block_meta == '0' ) ? __( 'Yes' ) : '';
348
+ echo ( WPMEM_BLOCK_PAGES == 0 && $block_meta == '1' ) ? __( 'Yes' ) : '';
349
+ }
350
+ }
351
+
352
+ /** End of File **/
admin/tab-captcha.php ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the captcha tab.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * builds the captcha options
21
+ *
22
+ * @since 2.4.0
23
+ */
24
+ function wpmem_a_build_captcha_options()
25
+ {
26
+ $wpmem_captcha = get_option( 'wpmembers_captcha' );
27
+ $url = home_url();
28
+ $help_link = __( sprintf( 'See the %sUsers Guide on CAPTCHA%s.', '<a href="http://rocketgeek.com/plugins/wp-members/users-guide/registration/using-captcha/" target="_blank">', '</a>' ), 'wp-members' );
29
+ ?>
30
+ <div class="metabox-holder has-right-sidebar">
31
+
32
+ <div class="inner-sidebar">
33
+ <?php wpmem_a_meta_box(); ?>
34
+ <div class="postbox">
35
+ <h3><span><?php _e( 'Need help?', 'wp-members' ); ?></span></h3>
36
+ <div class="inside">
37
+ <strong><i><?php echo $help_link; ?></i></strong>
38
+ </div>
39
+ </div>
40
+ </div> <!-- .inner-sidebar -->
41
+
42
+ <div id="post-body">
43
+ <div id="post-body-content">
44
+ <div class="postbox">
45
+
46
+ <h3><?php _e( 'Manage reCAPTCHA Options', 'wp-members' ); ?></h3>
47
+ <div class="inside">
48
+ <form name="updatecaptchaform" id="updatecaptchaform" method="post" action="<?php echo $_SERVER['REQUEST_URI']?>">
49
+ <?php wp_nonce_field( 'wpmem-update-captcha' ); ?>
50
+ <table class="form-table">
51
+ <?php
52
+ // @todo re-thing getting settings this way in 3.0
53
+ $wpmem_settings = get_option( 'wpmembers_settings' );
54
+
55
+ // if reCAPTCHA is enabled...
56
+ if( $wpmem_settings[6] == 1 ) {
57
+ $show_update_button = true; ?>
58
+ <tr>
59
+ <td colspan="2">
60
+ <p><?php _e( 'reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog.', 'wp-members' ); ?></p>
61
+ <p><?php printf( __( 'reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot while also correcting the automatic scans of old books. So you get less spam, and the world gets accurately digitized books. Everybody wins! For details, visit the %s reCAPTCHA website%s', 'wp-members' ), '<a href="http://www.google.com/recaptcha/intro/index.html" target="_blank">', '</a>' ); ?>.</p>
62
+ <p>
63
+ </td>
64
+ </tr>
65
+ <tr valign="top">
66
+ <th scope="row"><?php _e( 'reCAPTCHA Keys', 'wp-members' ); ?></th>
67
+ <td>
68
+ <?php printf( __( 'reCAPTCHA requires an API key, consisting of a "public" and a "private" key. You can sign up for a %s free reCAPTCHA key%s', 'wp-members' ), "<a href=\"https://www.google.com/recaptcha/admin#whyrecaptcha\" target=\"_blank\">", '</a>' ); ?>.<br />
69
+ <?php _e( 'Public Key', 'wp-members' ); ?>:&nbsp;&nbsp;<input type="text" name="wpmem_captcha_publickey" size="50" value="<?php echo $wpmem_captcha['recaptcha']['public']; ?>" /><br />
70
+ <?php _e( 'Private Key', 'wp-members' ); ?>:&nbsp;<input type="text" name="wpmem_captcha_privatekey" size="50" value="<?php echo $wpmem_captcha['recaptcha']['private']; ?>" />
71
+ </td>
72
+ </tr>
73
+ <tr valign="top">
74
+ <th scope="row"><?php _e( 'Choose Theme', 'wp-members' ); ?></th>
75
+ <td>
76
+ <select name="wpmem_captcha_theme"><?php
77
+ echo wpmem_create_formfield( __( 'Red', 'wp-members' ), 'option', 'red', $wpmem_captcha['recaptcha']['theme'] );
78
+ echo wpmem_create_formfield( __( 'White', 'wp-members' ), 'option', 'white', $wpmem_captcha['recaptcha']['theme'] );
79
+ echo wpmem_create_formfield( __( 'Black Glass', 'wp-members' ), 'option', 'blackglass', $wpmem_captcha['recaptcha']['theme'] );
80
+ echo wpmem_create_formfield( __( 'Clean', 'wp-members' ), 'option', 'clean', $wpmem_captcha['recaptcha']['theme'] ); ?>
81
+ </select>
82
+ </td>
83
+ </tr>
84
+ <?php
85
+ // if Really Simple CAPTCHA is enabled...
86
+ } elseif( $wpmem_settings[6] == 2 ) {
87
+
88
+ // setup defaults
89
+ $defaults = array(
90
+ 'characters' => 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789',
91
+ 'num_char' => '4',
92
+ 'dim_w' => '72',
93
+ 'dim_h' => '30',
94
+ 'font_color' => '0,0,0',
95
+ 'bg_color' => '255,255,255',
96
+ 'font_size' => '12',
97
+ 'kerning' => '14',
98
+ 'img_type' => 'png'
99
+ );
100
+
101
+ $args = ( is_array( $wpmem_captcha['really_simple'] ) ) ? $wpmem_captcha['really_simple'] : array();
102
+
103
+ extract( wp_parse_args( $args, $defaults ) );
104
+
105
+ // explode colors
106
+ $font_color = explode( ',', $font_color );
107
+ $bg_color = explode( ',', $bg_color );
108
+
109
+ $show_update_button = true;
110
+ if ( is_plugin_active( 'really-simple-captcha/really-simple-captcha.php' ) ) { ?>
111
+ <tr>
112
+ <th scope="row"><?php _e( 'Characters for image', 'wp-members' ); ?></th>
113
+ <td><input name="characters" type="text" size="34" value="<?php echo $characters; ?>" /></td>
114
+ </tr>
115
+ <tr>
116
+ <th scope="row"><?php _e( 'Number of characters', 'wp-members' ); ?></th>
117
+ <td><input name="num_char" type="text" size="2" value="<?php echo $num_char; ?>" /></td>
118
+ </tr>
119
+ <tr>
120
+ <th scope="row"><?php _e( 'Image dimensions', 'wp-members' ); ?></th>
121
+ <td><?php _e( 'Width' ); ?> <input name="dim_w" type="text" size="2" value="<?php echo $dim_w; ?>" /> <?php _e( 'Height' ); ?> <input name="dim_h" type="text" size="2" value="<?php echo $dim_h; ?>" /></td>
122
+ </tr>
123
+ <tr>
124
+ <th scope="row"><?php _e( 'Font color of characters', 'wp-members' ); ?></th>
125
+ <td>R:<input name="font_color_r" type="text" size="2" value="<?php echo $font_color[0]; ?>" /> G:<input name="font_color_g" type="text" size="2" value="<?php echo $font_color[1]; ?>" /> B:<input name="font_color_b" type="text" size="2" value="<?php echo $font_color[2]; ?>" /></td>
126
+ </tr>
127
+ <tr>
128
+ <th scope="row"><?php _e( 'Background color of image', 'wp-members' ); ?></th>
129
+ <td>R:<input name="bg_color_r" type="text" size="2" value="<?php echo $bg_color[0]; ?>" /> G:<input name="bg_color_g" type="text" size="2" value="<?php echo $bg_color[1]; ?>" /> B:<input name="bg_color_b" type="text" size="2" value="<?php echo $bg_color[2]; ?>" /></td>
130
+ </tr>
131
+ <tr>
132
+ <th scope="row"><?php _e( 'Font size', 'wp-members' ); ?></th>
133
+ <td><input name="font_size" type="text" value="<?php echo $font_size; ?>" /></td>
134
+ </tr>
135
+ <tr>
136
+ <th scope="row"><?php _e( 'Width between characters', 'wp-members' ); ?></th>
137
+ <td><input name="kerning" type="text" value="<?php echo $kerning; ?>" /></td>
138
+ </tr>
139
+ <tr>
140
+ <th scope="row"><?php _e( 'Image type', 'wp-members' ); ?></th>
141
+ <td><select name="img_type">
142
+ <option<?php echo ( $img_type == 'png' ) ? ' selected' : ''; ?>>png</option>
143
+ <option<?php echo ( $img_type == 'gif' ) ? ' selected' : ''; ?>>gif</option>
144
+ <option<?php echo ( $img_type == 'jpg' ) ? ' selected' : ''; ?>>jpg</option>
145
+ </select>
146
+ </td>
147
+ </tr><?php
148
+
149
+ } else {
150
+
151
+ $show_update_button = false; ?>
152
+ <tr>
153
+ <td colspan="2">
154
+ <p><?php _e( 'To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin installed and activated.', 'wp-members' ); ?></p>
155
+ <p><?php _e( sprintf( 'You can download Really Simple CAPTCHA from the %swordpress.org plugin repository%s.', '<a href="http://wordpress.org/plugins/really-simple-captcha/">', '</a>' ), 'wp-members' ); ?></p>
156
+ </td>
157
+ </tr><?php
158
+ }
159
+ } // end if RSC is selected
160
+ if( $show_update_button ) { ?>
161
+ <tr valign="top">
162
+ <th scope="row">&nbsp;</th>
163
+ <td>
164
+ <input type="hidden" name="wpmem_recaptcha_type" value="<?php echo ( $wpmem_settings[6] == 1 ) ? 'recaptcha' : 'really_simple'; ?>" />
165
+ <input type="hidden" name="wpmem_admin_a" value="update_captcha" />
166
+ <input type="submit" name="save" class="button-primary" value="<?php _e( 'Update CAPTCHA Settings', 'wp-members' ); ?> &raquo;" />
167
+ </td>
168
+ </tr>
169
+ <?php } ?>
170
+ </table>
171
+ </form>
172
+ </div><!-- .inside -->
173
+ </div>
174
+ </div><!-- #post-body-content -->
175
+ </div><!-- #post-body -->
176
+ </div><!-- .metabox-holder -->
177
+ <?php
178
+ }
179
+
180
+
181
+ /**
182
+ * Updates the captcha options
183
+ *
184
+ * @since 2.8
185
+ *
186
+ * @return string The captcha option update message
187
+ */
188
+ function wpmem_update_captcha()
189
+ {
190
+ //check nonce
191
+ check_admin_referer( 'wpmem-update-captcha' );
192
+
193
+ $settings = get_option( 'wpmembers_captcha' );
194
+ $update_type = $_POST['wpmem_recaptcha_type'];
195
+ $new_settings = array();
196
+
197
+ if( $update_type == 'recaptcha' ) {
198
+ if( array_key_exists( 'really_simple', $settings ) ) {
199
+ // updating recaptcha but need to maintain really_simple
200
+ $new_settings['really_simple'] = $settings['really_simple'];
201
+ }
202
+ $new_settings['recaptcha'] = array(
203
+ 'public' => $_POST['wpmem_captcha_publickey'],
204
+ 'private' => $_POST['wpmem_captcha_privatekey'],
205
+ 'theme' => $_POST['wpmem_captcha_theme']
206
+ );
207
+ }
208
+
209
+ if( $update_type == 'really_simple' ) {
210
+ if( array_key_exists( 'recaptcha', $settings ) ) {
211
+ // updating really_simple but need to maintain recaptcha
212
+ $new_settings['recaptcha'] = $settings['recaptcha'];
213
+ }
214
+ $font_color = $_POST['font_color_r'] . ',' . $_POST['font_color_g'] . ',' . $_POST['font_color_b'];
215
+ $bg_color = $_POST['bg_color_r'] . ',' . $_POST['bg_color_g'] . ',' . $_POST['bg_color_b'];
216
+ $new_settings['really_simple'] = array(
217
+ 'characters' => $_POST['characters'],
218
+ 'num_char' => $_POST['num_char'],
219
+ 'dim_w' => $_POST['dim_w'],
220
+ 'dim_h' => $_POST['dim_h'],
221
+ 'font_color' => $font_color,
222
+ 'bg_color' => $bg_color,
223
+ 'font_size' => $_POST['font_size'],
224
+ 'kerning' => $_POST['kerning'],
225
+ 'img_type' => $_POST['img_type'],
226
+ );
227
+ }
228
+
229
+ update_option( 'wpmembers_captcha', $new_settings );
230
+ return __( 'CAPTCHA was updated for WP-Members', 'wp-members' );
231
+ }
232
+
233
+ /** End of File **/
admin/tab-dialogs.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the dialogs tab.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * builds the dialogs panel
21
+ *
22
+ * @since 2.2.2
23
+ */
24
+ function wpmem_a_build_dialogs()
25
+ {
26
+ $wpmem_dialogs = get_option( 'wpmembers_dialogs' );
27
+
28
+ $wpmem_dialog_title_arr = array(
29
+ __( "Restricted post (or page), displays above the login/registration form", 'wp-members' ),
30
+ __( "Username is taken", 'wp-members' ),
31
+ __( "Email is registered", 'wp-members' ),
32
+ __( "Registration completed", 'wp-members' ),
33
+ __( "User update", 'wp-members' ),
34
+ __( "Passwords did not match", 'wp-members' ),
35
+ __( "Password changes", 'wp-members' ),
36
+ __( "Username or email do not exist when trying to reset forgotten password", 'wp-members' ),
37
+ __( "Password reset", 'wp-members' )
38
+ ); ?>
39
+ <div class="metabox-holder has-right-sidebar">
40
+
41
+ <div class="inner-sidebar">
42
+ <?php wpmem_a_meta_box(); ?>
43
+ <div class="postbox">
44
+ <h3><span><?php _e( 'Need help?', 'wp-members' ); ?></span></h3>
45
+ <div class="inside">
46
+ <strong><i>See the <a href="http://rocketgeek.com/plugins/wp-members/users-guide/plugin-settings/dialogs/" target="_blank">Users Guide on dialogs</a>.</i></strong>
47
+ </div>
48
+ </div>
49
+ </div> <!-- .inner-sidebar -->
50
+
51
+ <div id="post-body">
52
+ <div id="post-body-content">
53
+ <div class="postbox">
54
+ <h3><span>WP-Members <?php _e( 'Dialogs and Error Messages', 'wp-members' ); ?></span></h3>
55
+ <div class="inside">
56
+ <p><?php printf( __( 'You can customize the text for dialogs and error messages. Simple HTML is allowed %s etc.', 'wp-members' ), '- &lt;p&gt;, &lt;b&gt;, &lt;i&gt;,' ); ?></p>
57
+ <form name="updatedialogform" id="updatedialogform" method="post" action="<?php echo $_SERVER['REQUEST_URI']?>">
58
+ <?php wp_nonce_field( 'wpmem-update-dialogs' ); ?>
59
+ <table class="form-table">
60
+ <?php for( $row = 0; $row < count( $wpmem_dialog_title_arr ); $row++ ) { ?>
61
+ <tr valign="top">
62
+ <th scope="row"><?php echo $wpmem_dialog_title_arr[$row]; ?></th>
63
+ <td><textarea name="<?php echo "dialogs_".$row; ?>" rows="3" cols="50" id="" class="large-text code"><?php echo stripslashes( $wpmem_dialogs[$row] ); ?></textarea></td>
64
+ </tr>
65
+ <?php } ?>
66
+
67
+ <?php $wpmem_tos = stripslashes( get_option( 'wpmembers_tos' ) ); ?>
68
+ <tr valign="top">
69
+ <th scope="row"><?php _e( 'Terms of Service (TOS)', 'wp-members' ); ?></th>
70
+ <td><textarea name="dialogs_tos" rows="3" cols="50" id="" class="large-text code"><?php echo $wpmem_tos; ?></textarea></td>
71
+ </tr>
72
+ <tr valign="top">
73
+ <th scope="row">&nbsp;</th>
74
+ <td>
75
+ <input type="hidden" name="wpmem_admin_a" value="update_dialogs" />
76
+ <input type="submit" name="save" class="button-primary" value="<?php _e( 'Update Dialogs', 'wp-members' ); ?> &raquo;" />
77
+ </td>
78
+ </tr>
79
+ </table>
80
+ </form>
81
+ </div><!-- .inside -->
82
+ </div><!-- #post-box -->
83
+ </div><!-- #post-body-content -->
84
+ </div><!-- #post-body -->
85
+ </div> <!-- .metabox-holder -->
86
+ <?php
87
+ }
88
+
89
+
90
+ /**
91
+ * Updates the dialog settings
92
+ *
93
+ * @since 2.8
94
+ *
95
+ * @return string The dialogs updated message
96
+ */
97
+ function wpmem_update_dialogs()
98
+ {
99
+ //check nonce
100
+ check_admin_referer( 'wpmem-update-dialogs' );
101
+
102
+ $wpmem_dialogs = get_option( 'wpmembers_dialogs' );
103
+
104
+ for( $row = 0; $row < count( $wpmem_dialogs); $row++ ) {
105
+ $dialog = "dialogs_" . $row;
106
+ $wpmem_newdialogs[$row] = $_POST[$dialog];
107
+ }
108
+
109
+ update_option( 'wpmembers_dialogs', $wpmem_newdialogs );
110
+ $wpmem_dialogs = $wpmem_newdialogs;
111
+
112
+ // Terms of Service
113
+ update_option( 'wpmembers_tos', $_POST['dialogs_tos'] );
114
+
115
+ return __( 'WP-Members dialogs were updated', 'wp-members' );
116
+ }
117
+
118
+ /** End of File **/
admin/tab-emails.php ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the emails tab.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * builds the emails panel
21
+ *
22
+ * @since 2.7
23
+ *
24
+ * @param array $wpmem_settings
25
+ */
26
+ function wpmem_a_build_emails( $wpmem_settings )
27
+ {
28
+ if( $wpmem_settings[5] == 0 ) {
29
+ $wpmem_email_title_arr = array(
30
+ array( __( "New Registration", 'wp-members' ), 'wpmembers_email_newreg' )
31
+ );
32
+ } else {
33
+ $wpmem_email_title_arr = array(
34
+ array( __( "Registration is Moderated", 'wp-members' ), 'wpmembers_email_newmod' ),
35
+ array( __( "Registration is Moderated, User is Approved", 'wp-members' ), 'wpmembers_email_appmod' )
36
+ );
37
+ }
38
+ array_push(
39
+ $wpmem_email_title_arr,
40
+ array( __( "Password Reset", 'wp-members' ), 'wpmembers_email_repass' )
41
+ );
42
+ if( $wpmem_settings[4] == 1 ) {
43
+ array_push(
44
+ $wpmem_email_title_arr,
45
+ array( __( "Admin Notification", 'wp-members' ), 'wpmembers_email_notify' )
46
+ );
47
+ }
48
+ array_push(
49
+ $wpmem_email_title_arr,
50
+ array( __( "Email Signature", 'wp-members' ), 'wpmembers_email_footer' )
51
+ ); ?>
52
+ <div class="metabox-holder">
53
+
54
+ <div id="post-body">
55
+ <div id="post-body-content">
56
+ <div class="postbox">
57
+ <h3><span>WP-Members <?php _e( 'Email Messages', 'wp-members' ); ?></span></h3>
58
+ <div class="inside">
59
+ <p>
60
+ <?php _e( 'You can customize the content of the emails sent by the plugin.', 'wp-members' ); ?><br />
61
+ <a href="http://rocketgeek.com/plugins/wp-members/users-guide/customizing-emails/" target="_blank">
62
+ <?php _e( 'A list of shortcodes is available here.', 'wp-members' ); ?></a>
63
+ </p>
64
+ <hr />
65
+ <form name="updateemailform" id="updateemailform" method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
66
+ <?php wp_nonce_field( 'wpmem-update-emails' ); ?>
67
+ <table class="form-table">
68
+ <tr valign="top">
69
+ <th scope="row"><?php _e( 'Set a custom email address', 'wp-members' ); ?></th>
70
+ <td><input type="text" name="wp_mail_from" size="40" value="<?php echo get_option( 'wpmembers_email_wpfrom' ); ?>" />&nbsp;<span class="description"><?php _e( '(optional)', 'wp-members' ); ?> email@yourdomain.com</span></td>
71
+ </tr>
72
+ <tr valign="top">
73
+ <th scope="row"><?php _e( 'Set a custom email name', 'wp-members' ); ?></th>
74
+ <td><input type="text" name="wp_mail_from_name" size="40" value="<?php echo stripslashes( get_option( 'wpmembers_email_wpname' ) ); ?>" />&nbsp;<span class="description"><?php _e( '(optional)', 'wp-members' ); ?> John Smith</span></td>
75
+ </tr>
76
+ <tr><td colspan="2"><hr /></td></tr>
77
+
78
+ <?php for( $row = 0; $row < ( count( $wpmem_email_title_arr ) - 1 ); $row++ ) {
79
+
80
+ $arr = get_option( $wpmem_email_title_arr[$row][1] );
81
+ ?>
82
+ <tr valign="top"><td colspan="2"><strong><?php echo $wpmem_email_title_arr[$row][0]; ?></strong></td></tr>
83
+ <tr valign="top">
84
+ <th scope="row"><?php _e( 'Subject', 'wp-members' ); ?></th>
85
+ <td><input type="text" name="<?php echo $wpmem_email_title_arr[$row][1] . '_subj'; ?>" size="80" value="<?php echo stripslashes( $arr['subj'] ); ?>"></td>
86
+ </tr>
87
+ <tr valign="top">
88
+ <th scope="row"><?php _e( 'Body', 'wp-members' ); ?></th>
89
+ <td><textarea name="<?php echo $wpmem_email_title_arr[$row][1] . '_body'; ?>" rows="12" cols="50" id="" class="large-text code"><?php echo stripslashes( $arr['body'] ); ?></textarea></td>
90
+ </tr>
91
+ <tr><td colspan="2"><hr /></td></tr>
92
+ <?php }
93
+
94
+ $arr = get_option( $wpmem_email_title_arr[$row][1] ); ?>
95
+
96
+ <tr valign="top">
97
+ <th scope="row"><strong><?php echo $wpmem_email_title_arr[$row][0]; ?></strong> <span class="description"><?php _e( '(optional)', 'wp-members' ); ?></span></th>
98
+ <td><textarea name="<?php echo $wpmem_email_title_arr[$row][1] . '_body'; ?>" rows="10" cols="50" id="" class="large-text code"><?php echo stripslashes( $arr ); ?></textarea></td>
99
+ </tr>
100
+ <tr><td colspan="2"><hr /></td></tr>
101
+ <tr valign="top">
102
+ <th scope="row">&nbsp;</th>
103
+ <td>
104
+ <input type="hidden" name="wpmem_admin_a" value="update_emails" />
105
+ <input type="submit" name="save" class="button-primary" value="<?php _e( 'Update Emails', 'wp-members' ); ?> &raquo;" />
106
+ </td>
107
+ </tr>
108
+ </table>
109
+ </form>
110
+ </div><!-- .inside -->
111
+ </div><!-- #post-box -->
112
+ <div class="postbox">
113
+ <h3><span><?php _e( 'Need help?', 'wp-members' ); ?></span></h3>
114
+ <div class="inside">
115
+ <strong><i>See the <a href="http://rocketgeek.com/plugins/wp-members/users-guide/plugin-settings/emails/" target="_blank">Users Guide on email options</a>.</i></strong>
116
+ </div>
117
+ </div>
118
+ </div> <!-- #post-body-content -->
119
+ </div><!-- #post-body -->
120
+ </div><!-- .metabox-holder -->
121
+ <?php
122
+ }
123
+
124
+
125
+ /**
126
+ * Updates the email message settings
127
+ *
128
+ * @since 2.8
129
+ *
130
+ * @return string The emails updated message
131
+ */
132
+ function wpmem_update_emails()
133
+ {
134
+ //check nonce
135
+ check_admin_referer( 'wpmem-update-emails' );
136
+
137
+ $wpmem_settings = get_option( 'wpmembers_settings' );
138
+
139
+ // update the email address (if applicable)
140
+ ( $_POST['wp_mail_from'] ) ? update_option( 'wpmembers_email_wpfrom', $_POST['wp_mail_from'] ) : delete_option( 'wpmembers_email_wpfrom' );
141
+ ( $_POST['wp_mail_from_name'] ) ? update_option( 'wpmembers_email_wpname', $_POST['wp_mail_from_name'] ) : delete_option( 'wpmembers_email_wpname' );
142
+
143
+ // update the various emails being used
144
+ ( $wpmem_settings[5] == 0 ) ? $arr = array( 'wpmembers_email_newreg' ) : $arr = array( 'wpmembers_email_newmod', 'wpmembers_email_appmod' );
145
+ array_push( $arr, 'wpmembers_email_repass' );
146
+ ( $wpmem_settings[4] == 1 ) ? array_push( $arr, 'wpmembers_email_notify' ) : false;
147
+ array_push( $arr, 'wpmembers_email_footer' );
148
+
149
+ for( $row = 0; $row < ( count( $arr ) - 1 ); $row++ ) {
150
+ $arr2 = array(
151
+ "subj" => $_POST[$arr[$row] . '_subj'],
152
+ "body" => $_POST[$arr[$row] . '_body']
153
+ );
154
+ update_option( $arr[$row], $arr2, false );
155
+ $arr2 = '';
156
+ }
157
+
158
+ // updated the email footer
159
+ update_option( $arr[$row], $_POST[$arr[$row] . '_body'], false );
160
+
161
+ return __('WP-Members emails were updated', 'wp-members');
162
+
163
+ }
164
+
165
+ /** End of File **/
admin/tab-fields.php ADDED
@@ -0,0 +1,544 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the fields tab.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * Builds the fields panel
21
+ *
22
+ * @since 2.2.2
23
+ *
24
+ * @param string $wpmem_fields deprecated in 2.8.0
25
+ * @global string $add_field_err_msg The fields error message
26
+ */
27
+ function wpmem_a_build_fields()
28
+ {
29
+ global $add_field_err_msg;
30
+ $add_toggle = ( isset( $_GET['edit'] ) ) ? $_GET['edit'] : false;
31
+ $wpmem_fields = get_option( 'wpmembers_fields' );
32
+ ?>
33
+ <div class="metabox-holder">
34
+
35
+ <div id="post-body">
36
+ <div id="post-body-content">
37
+ <?php if( $add_toggle && ( isset( $_POST['wpmem_admin_a'] ) != 'edit_field' ) ) {
38
+ wpmem_a_field_edit( 'edit', $wpmem_fields, $add_toggle );
39
+ } else {
40
+ if( ! $add_field_err_msg ) { wpmem_a_field_table( $wpmem_fields ); }
41
+ wpmem_a_field_edit( 'add' );
42
+ } ?>
43
+
44
+ <div class="postbox">
45
+ <h3><span><?php _e( 'Need help?', 'wp-members' ); ?></span></h3>
46
+ <div class="inside">
47
+ <strong><i>See the <a href="http://rocketgeek.com/plugins/wp-members/users-guide/plugin-settings/fields/" target="_blank">Users Guide on the field manager</a>.</i></strong>
48
+ </div>
49
+ </div>
50
+ </div><!-- #post-body-content -->
51
+ </div><!-- #post-body -->
52
+
53
+ </div><!-- .metabox-holder -->
54
+ <?php
55
+ }
56
+
57
+
58
+ /**
59
+ * reorders the fields on DnD
60
+ *
61
+ * @since 2.5.1
62
+ */
63
+ function wpmem_a_field_reorder()
64
+ {
65
+ // start fresh
66
+ $new_order = $wpmem_old_fields = $wpmem_new_fields = $key = $row = '';
67
+
68
+ $new_order = $_REQUEST['orderstring'];
69
+ $new_order = explode( "&", $new_order );
70
+
71
+ // loop through $new_order to create new field array
72
+ $wpmem_old_fields = get_option( 'wpmembers_fields' );
73
+ for( $row = 0; $row < count( $new_order ); $row++ ) {
74
+ if( $row > 0 ) {
75
+ $key = $new_order[$row];
76
+ $key = substr( $key, 15 ); //echo $key.", ";
77
+
78
+ for( $x = 0; $x < count( $wpmem_old_fields ); $x++ ) {
79
+
80
+ if( $wpmem_old_fields[$x][0] == $key ) {
81
+ $wpmem_new_fields[$row - 1] = $wpmem_old_fields[$x];
82
+ }
83
+ }
84
+ }
85
+ }
86
+
87
+ update_option( 'wpmembers_fields', $wpmem_new_fields );
88
+
89
+ die(); // this is required to return a proper result
90
+
91
+ }
92
+
93
+
94
+ /**
95
+ * Updates fields
96
+ *
97
+ * @since 2.8
98
+ *
99
+ * @param string $action The field update action (update_fields|add|edit)
100
+ * @global string $add_field_err_msg The add field error message
101
+ * @return string $did_update The fields update message
102
+ *
103
+ * @todo apply some additional form validation to the add/update process
104
+ */
105
+ function wpmem_update_fields( $action )
106
+ {
107
+ // get the current fields
108
+ $wpmem_fields = get_option( 'wpmembers_fields' );
109
+ $wpmem_ut_fields = get_option( 'wpmembers_utfields' );
110
+
111
+ if( $action == 'update_fields' ) {
112
+
113
+ // check nonce
114
+ check_admin_referer( 'wpmem-update-fields' );
115
+
116
+ // @todo - need some additional form validation here
117
+
118
+ // update user table fields
119
+ $arr = ( isset( $_POST['ut_fields'] ) ) ? $_POST['ut_fields'] : '';
120
+ update_option( 'wpmembers_utfields', $arr );
121
+
122
+ // rebuild the array, don't touch user_email - it's always mandatory
123
+ $nrow = 0;
124
+ for( $row = 0; $row < count( $wpmem_fields ); $row++ ) {
125
+
126
+ // check to see if the field is checked for deletion, and if not, add it to the new array.
127
+ $delete_field = "del_" . $wpmem_fields[$row][2];
128
+ $delete_field = ( isset( $_POST[$delete_field] ) ) ? $_POST[$delete_field] : false;
129
+ if( $delete_field != "delete" ) {
130
+
131
+ for( $i = 0; $i < 4; $i++ ) {
132
+ $wpmem_newfields[$nrow][$i] = $wpmem_fields[$row][$i];
133
+ }
134
+
135
+ $wpmem_newfields[$nrow][0] = $nrow + 1;
136
+
137
+ $display_field = $wpmem_fields[$row][2] . "_display";
138
+ $require_field = $wpmem_fields[$row][2] . "_required";
139
+ $checked_field = $wpmem_fields[$row][2] . "_checked";
140
+
141
+ if( $wpmem_fields[$row][2] != 'user_email' ){
142
+ $wpmem_newfields[$nrow][4] = ( isset( $_POST[$display_field] ) ) ? $_POST[$display_field] : '';
143
+ $wpmem_newfields[$nrow][5] = ( isset( $_POST[$require_field] ) ) ? $_POST[$require_field] : '';
144
+ } else {
145
+ $wpmem_newfields[$nrow][4] = 'y';
146
+ $wpmem_newfields[$nrow][5] = 'y';
147
+ }
148
+
149
+ if( $wpmem_newfields[$nrow][4] != 'y' && $wpmem_newfields[$nrow][5] == 'y' ) { $chkreq = "err"; }
150
+ $wpmem_newfields[$nrow][6] = $wpmem_fields[$row][6];
151
+ $wpmem_newfields[$nrow][7] = ( isset( $wpmem_fields[$row][7] ) ) ? $wpmem_fields[$row][7] : '';
152
+ if( $wpmem_fields[$row][3] == 'checkbox' ) {
153
+ if( isset( $_POST[$checked_field] ) && $_POST[$checked_field] == 'y' ) { //for debugging: echo "checked: " . $_POST[$checked_field];
154
+ $wpmem_newfields[$nrow][8] = 'y';
155
+ } else {
156
+ $wpmem_newfields[$nrow][8] = 'n';
157
+ }
158
+ }
159
+
160
+ $nrow = $nrow + 1;
161
+ }
162
+
163
+ }
164
+
165
+ update_option( 'wpmembers_fields', $wpmem_newfields );
166
+ $did_update = __( 'WP-Members fields were updated', 'wp-members' );
167
+
168
+ } elseif( $action == 'add_field' || 'edit_field' ) {
169
+
170
+ // check nonce
171
+ check_admin_referer( 'wpmem-add-fields' );
172
+
173
+ global $add_field_err_msg;
174
+
175
+ $add_field_err_msg = false;
176
+
177
+ // error check that field label and option name are included and unique
178
+ $add_field_err_msg = ( $_POST['add_name'] == '' ) ? __( 'Field Label is required for adding a new field. Nothing was updated.', 'wp-members' ) : $add_field_err_msg;
179
+ $add_field_err_msg = ( $_POST['add_option'] == '' ) ? __( 'Option Name is required for adding a new field. Nothing was updated.', 'wp-members' ) : $add_field_err_msg;
180
+
181
+ //$option_len = strlen( $_POST['add_option'] );
182
+ $add_field_err_msg = ( !preg_match("/^[A-Za-z0-9_]*$/", $_POST['add_option'] ) ) ? __( 'Option Name must contain only letters, numbers, and underscores', 'wp-members' ) : $add_field_err_msg;
183
+
184
+ // check for duplicate field names
185
+ $chk_fields = array();
186
+ foreach ( $wpmem_fields as $field ) {
187
+ $chk_fields[] = $field[2];
188
+ }
189
+ $add_field_err_msg = ( in_array( $_POST['add_option'], $chk_fields ) ) ? __( 'A field with that option name already exists', 'wp-members' ) : $add_field_err_msg;
190
+
191
+ // error check option name for spaces and replace with underscores
192
+ $us_option = $_POST['add_option'];
193
+ $us_option = preg_replace( "/ /", '_', $us_option );
194
+
195
+ $arr = array();
196
+
197
+ $arr[0] = ( $action == 'add_field' ) ? ( count( $wpmem_fields ) ) + 2 : false;
198
+ $arr[1] = stripslashes( $_POST['add_name'] );
199
+ $arr[2] = $us_option;
200
+ $arr[3] = $_POST['add_type'];
201
+ $arr[4] = ( isset( $_POST['add_display'] ) ) ? $_POST['add_display'] : 'n';
202
+ $arr[5] = ( isset( $_POST['add_required'] ) ) ? $_POST['add_required'] : 'n';
203
+ $arr[6] = ( $us_option == 'user_nicename' || $us_option == 'display_name' || $us_option == 'nickname' ) ? 'y' : 'n';
204
+
205
+ if( $_POST['add_type'] == 'checkbox' ) {
206
+ $add_field_err_msg = ( ! $_POST['add_checked_value'] ) ? __( 'Checked value is required for checkboxes. Nothing was updated.', 'wp-members' ) : $add_field_err_msg;
207
+ $arr[7] = ( isset( $_POST['add_checked_value'] ) ) ? $_POST['add_checked_value'] : false;
208
+ $arr[8] = ( isset( $_POST['add_checked_default'] ) ) ? $_POST['add_checked_default'] : 'n';
209
+ }
210
+
211
+ if( $_POST['add_type'] == 'select' ) {
212
+ // get the values
213
+ $str = stripslashes( $_POST['add_dropdown_value'] );
214
+ // remove linebreaks
215
+ $str = trim( str_replace( array("\r", "\r\n", "\n"), '', $str ) );
216
+ // create array
217
+ if( ! function_exists( 'str_getcsv' ) ) {
218
+ $arr[7] = explode( ',', $str );
219
+ } else {
220
+ $arr[7] = str_getcsv( $str, ',', '"' );
221
+ }
222
+ }
223
+
224
+ if( $action == 'add_field' ) {
225
+ if( ! $add_field_err_msg ) {
226
+ array_push( $wpmem_fields, $arr );
227
+ update_option( 'wpmembers_fields', $wpmem_fields );
228
+ $did_update = $_POST['add_name'] . ' ' . __( 'field was added', 'wp-members' );
229
+ } else {
230
+ $did_update = $add_field_err_msg;
231
+ }
232
+ } else {
233
+
234
+ for( $row = 0; $row < count( $wpmem_fields ); $row++ ) {
235
+ if( $wpmem_fields[$row][2] == $_GET['edit'] ) {
236
+ $arr[0] = $wpmem_fields[$row][0];
237
+ $x = ( $arr[3] == 'checkbox' ) ? 8 : ( ( $arr[3] == 'select' ) ? 7 : 6 );
238
+ for( $r = 0; $r < $x+1; $r++ ) {
239
+ $wpmem_fields[$row][$r] = $arr[$r];
240
+ }
241
+ }
242
+ }
243
+
244
+ update_option( 'wpmembers_fields', $wpmem_fields );
245
+
246
+ $did_update = $_POST['add_name'] . ' ' . __( 'field was updated', 'wp-members' );
247
+
248
+ }
249
+ //} elseif( $action == 'edit_field' ) {
250
+
251
+ }
252
+
253
+ if( WPMEM_DEBUG == true && isset( $arr ) ) { echo "<pre>"; print_r($arr); echo "</pre>"; }
254
+
255
+ return $did_update;
256
+ }
257
+
258
+
259
+ /**
260
+ * Function to write the field edit link
261
+ *
262
+ * @since 2.8
263
+ *
264
+ * @param string $field_id The option name of the field to be edited
265
+ */
266
+ function wpmem_fields_edit_link( $field_id ) {
267
+ return '<a href="' . get_admin_url() . 'options-general.php?page=wpmem-settings&amp;tab=fields&amp;edit=' . $field_id . '">' . __( 'Edit' ) . '</a>';
268
+ }
269
+
270
+
271
+ /**
272
+ * Function to dispay the add/edit field form
273
+ *
274
+ * @since 2.8
275
+ *
276
+ * @param string $mode The mode for the function (edit|add)
277
+ * @param array|null $wpmem_fields the array of fields
278
+ * @param string|null $field the field being edited
279
+ */
280
+ function wpmem_a_field_edit( $mode, $wpmem_fields = null, $field = null )
281
+ {
282
+ if( $mode == 'edit' ) {
283
+ for( $row = 0; $row < count( $wpmem_fields ); $row++ ) {
284
+ if( $wpmem_fields[$row][2] == $field ) {
285
+ $field_arr = $wpmem_fields[$row];
286
+ }
287
+ }
288
+ }
289
+
290
+ $form_action = ( $mode == 'edit' ) ? 'editfieldform' : 'addfieldform';
291
+
292
+ ?>
293
+ <div class="postbox">
294
+ <h3 class="title"><?php ( $mode == 'edit' ) ? _e( 'Edit Field', 'wp-members' ) : _e( 'Add a Field', 'wp-members' ); ?></h3>
295
+ <div class="inside">
296
+ <form name="<?php echo $form_action; ?>" id="<?php echo $form_action; ?>" method="post" action="<?php echo $_SERVER['REQUEST_URI']?>">
297
+ <?php wp_nonce_field( 'wpmem-add-fields' ); ?>
298
+ <ul>
299
+ <li>
300
+ <label><?php _e( 'Field Label', 'wp-members' ); ?></label>
301
+ <input type="text" name="add_name" value="<?php echo ( $mode == 'edit' ) ? $field_arr[1] : false; ?>" />
302
+ <?php _e( 'The name of the field as it will be displayed to the user.', 'wp-members' ); ?>
303
+ </li>
304
+ <li>
305
+ <label><?php _e( 'Option Name', 'wp-members' ); ?></label>
306
+ <?php if( $mode == 'edit' ) {
307
+ echo $field_arr[2]; ?>
308
+ <input type="hidden" name="add_option" value="<?php echo $field_arr[2]; ?>" />
309
+ <?php } else { ?>
310
+ <input type="text" name="add_option" value="" />
311
+ <?php _e( 'The database meta value for the field. It must be unique and contain no spaces (underscores are ok).', 'wp-members' ); ?>
312
+ <?php } ?>
313
+ </li>
314
+ <li>
315
+ <label><?php _e( 'Field Type', 'wp-members' ); ?></label>
316
+ <?php if( $mode == 'edit' ) {
317
+ echo $field_arr[3]; ?>
318
+ <input type="hidden" name="add_type" value="<?php echo $field_arr[3]; ?>" />
319
+ <?php } else { ?>
320
+ <select name="add_type" id="wpmem_field_type_select">
321
+ <option value="text"><?php _e( 'text', 'wp-members' ); ?></option>
322
+ <option value="textarea"><?php _e( 'textarea', 'wp-members' ); ?></option>
323
+ <option value="checkbox"><?php _e( 'checkbox', 'wp-members' ); ?></option>
324
+ <option value="select"><?php _e( 'dropdown', 'wp-members' ); ?></option>
325
+ <option value="password"><?php _e( 'password', 'wp-members' ); ?></option>
326
+ </select>
327
+ <?php } ?>
328
+ </li>
329
+ <li>
330
+ <label><?php _e( 'Display?', 'wp-members' ); ?></label>
331
+ <input type="checkbox" name="add_display" value="y" <?php echo ( $mode == 'edit' ) ? wpmem_selected( 'y', $field_arr[4] ) : false; ?> />
332
+ </li>
333
+ <li>
334
+ <label><?php _e( 'Required?', 'wp-members' ); ?></label>
335
+ <input type="checkbox" name="add_required" value="y" <?php echo ( $mode == 'edit' ) ? wpmem_selected( 'y', $field_arr[5] ) : false; ?> />
336
+ </li>
337
+ <?php if( $mode == 'add' || ( $mode == 'edit' && $field_arr[3] == 'checkbox' ) ) { ?>
338
+ <?php echo ( $mode == 'add' ) ? '<div id="wpmem_checkbox_info">' : ''; ?>
339
+ <li>
340
+ <strong><?php _e( 'Additional information for checkbox fields', 'wp-members' ); ?></strong>
341
+ </li>
342
+ <li>
343
+ <label><?php _e( 'Checked by default?', 'wp-members' ); ?></label>
344
+ <input type="checkbox" name="add_checked_default" value="y" <?php echo ( $mode == 'edit' && $field_arr[3] == 'checkbox' ) ? wpmem_selected( 'y', $field_arr[8] ) : false; ?> />
345
+ </li>
346
+ <li>
347
+ <label><?php _e( 'Stored value if checked:', 'wp-members' ); ?></label>
348
+ <input type="text" name="add_checked_value" value="<?php echo ( $mode == 'edit' && $field_arr[3] == 'checkbox' ) ? $field_arr[7] : false; ?>" class="small-text" />
349
+ </li>
350
+ <?php echo ( $mode == 'add' ) ? '</div>' : ''; ?>
351
+ <?php } ?>
352
+ <?php if( $mode == 'add' || ( $mode == 'edit' && $field_arr[3] == 'select' ) ) { ?>
353
+ <?php echo ( $mode == 'add' ) ? '<div id="wpmem_dropdown_info">' : ''; ?>
354
+ <li>
355
+ <strong><?php _e( 'Additional information for dropdown fields', 'wp-members' ); ?></strong>
356
+ </li>
357
+ <li>
358
+ <label><?php _e( 'For dropdown, array of values:', 'wp-members' ); ?></label>
359
+ <textarea name="add_dropdown_value" rows="5" cols="40"><?php
360
+ /** Accomodate editing the current dropdown values or create dropdown value example */
361
+ if( $mode == 'edit' ) {
362
+ for( $row = 0; $row < count( $field_arr[7] ); $row++ ) {
363
+ /** If the row contains commas (i.e. 1,000-10,000), wrap in double quotes */
364
+ if( strstr( $field_arr[7][$row], ',' ) ) {
365
+ echo '"' . $field_arr[7][$row]; echo ( $row == count( $field_arr[7] )- 1 ) ? '"' : "\",\n";
366
+ } else {
367
+ echo $field_arr[7][$row]; echo ( $row == count( $field_arr[7] )- 1 ) ? "" : ",\n";
368
+ } }
369
+ } else {
370
+ if (version_compare(PHP_VERSION, '5.3.0') >= 0) { ?>
371
+ <---- Select One ---->|,
372
+ Choice One|choice_one,
373
+ "1,000|one_thousand",
374
+ "1,000-10,000|1,000-10,000",
375
+ Last Row|last_row<?php } else { ?>
376
+ <---- Select One ---->|,
377
+ Choice One|choice_one,
378
+ Choice 2|choice_two,
379
+ Last Row|last_row<?php } } ?></textarea>
380
+ </li>
381
+ <li>
382
+ <label>&nbsp;</label>
383
+ <span class="description"><?php _e( 'Options should be Option Name|option_value,', 'wp-members' ); ?>
384
+ </li>
385
+ <li>
386
+ <label>&nbsp;</label>
387
+ <a href="http://rocketgeek.com/plugins/wp-members/users-guide/registration/choosing-fields/" target="_blank"><?php _e( 'Visit plugin site for more information', 'wp-members' ); ?></a></span>
388
+ </li>
389
+ <?php echo ( $mode == 'add' ) ? '</div>' : ''; ?>
390
+ <?php } ?>
391
+
392
+ </ul><br />
393
+ <?php if( $mode == 'edit' ) { ?><input type="hidden" name="field_arr" value="<?php echo $field_arr[2]; ?>" /><?php } ?>
394
+ <input type="hidden" name="wpmem_admin_a" value="<?php echo ( $mode == 'edit' ) ? 'edit_field' : 'add_field'; ?>" />
395
+ <input type="submit" name="save" class="button-primary" value="<?php echo ( $mode == 'edit' ) ? __( 'Edit Field', 'wp-members' ) : __( 'Add Field', 'wp-members' ); ?> &raquo;" />
396
+ </form>
397
+ </div>
398
+ </div>
399
+
400
+ <?php
401
+
402
+ }
403
+
404
+
405
+
406
+ /**
407
+ * Function to display the table of fields in the field manager tab
408
+ *
409
+ * @since 2.8
410
+ *
411
+ * @param array $wpmem_fields The array of fields
412
+ */
413
+ function wpmem_a_field_table( $wpmem_fields )
414
+ {
415
+ ?>
416
+ <div class="postbox">
417
+ <h3 class="title"><?php _e( 'Manage Fields', 'wp-members' ); ?></h3>
418
+ <div class="inside">
419
+ <p><?php _e( 'Determine which fields will display and which are required. This includes all fields, both native WP fields and WP-Members custom fields.', 'wp-members' ); ?>
420
+ <br /><strong><?php _e( '(Note: Email is always mandatory and cannot be changed.)', 'wp-members' ); ?></strong></p>
421
+ <form name="updatefieldform" id="updatefieldform" method="post" action="<?php echo $_SERVER['REQUEST_URI']?>">
422
+ <?php wp_nonce_field( 'wpmem-update-fields' ); ?>
423
+ <table class="widefat" id="wpmem-fields">
424
+ <thead><tr class="head">
425
+ <th scope="col"><?php _e( 'Add/Delete', 'wp-members' ); ?></th>
426
+ <th scope="col"><?php _e( 'Field Label', 'wp-members' ); ?></th>
427
+ <th scope="col"><?php _e( 'Option Name', 'wp-members' ); ?></th>
428
+ <th scope="col"><?php _e( 'Field Type', 'wp-members' ); ?></th>
429
+ <th scope="col"><?php _e( 'Display?', 'wp-members' ); ?></th>
430
+ <th scope="col"><?php _e( 'Required?', 'wp-members' ); ?></th>
431
+ <th scope="col"><?php _e( 'Checked?', 'wp-members' ); ?></th>
432
+ <th scope="col"><?php _e( 'Edit' ); ?></th>
433
+ <th scope="col"><?php _e( 'Users Screen','wp-members' ); ?></th>
434
+ </tr></thead>
435
+ <?php
436
+ // get the user table fields array
437
+ $wpmem_ut_fields = get_option( 'wpmembers_utfields' );
438
+ // order, label, optionname, input type, display, required, native
439
+ $class = '';
440
+ for( $row = 0; $row < count($wpmem_fields); $row++ ) {
441
+ $class = ( $class == 'alternate' ) ? '' : 'alternate'; ?>
442
+ <tr class="<?php echo $class; ?>" valign="top" id="<?php echo $wpmem_fields[$row][0];?>">
443
+ <td width="10%"><?php
444
+ $can_delete = ( $wpmem_fields[$row][2] == 'user_nicename' || $wpmem_fields[$row][2] == 'display_name' || $wpmem_fields[$row][2] == 'nickname' ) ? 'y' : 'n';
445
+ if( ( $can_delete == 'y' ) || $wpmem_fields[$row][6] != 'y' ) { ?><input type="checkbox" name="<?php echo "del_".$wpmem_fields[$row][2]; ?>" value="delete" /> <?php _e( 'Delete', 'wp-members' ); } ?></td>
446
+ <td width="15%"><?php
447
+ _e( $wpmem_fields[$row][1], 'wp-members' );
448
+ if( $wpmem_fields[$row][5] == 'y' ){ ?><font color="red">*</font><?php }
449
+ ?>
450
+ </td>
451
+ <td width="15%"><?php echo $wpmem_fields[$row][2]; ?></td>
452
+ <td width="10%"><?php echo $wpmem_fields[$row][3]; ?></td>
453
+ <?php if( $wpmem_fields[$row][2]!='user_email' ) { ?>
454
+ <td width="10%"><?php echo wpmem_create_formfield( $wpmem_fields[$row][2] . "_display", 'checkbox', 'y', $wpmem_fields[$row][4] ); ?></td>
455
+ <td width="10%"><?php echo wpmem_create_formfield( $wpmem_fields[$row][2] . "_required",'checkbox', 'y', $wpmem_fields[$row][5] ); ?></td>
456
+ <?php } else { ?>
457
+ <td colspan="2" width="20%"><small><i><?php _e( '(Email cannot be removed)', 'wp-members' ); ?></i></small></td>
458
+ <?php } ?>
459
+ <td align="center" width="10%"><?php if( $wpmem_fields[$row][3] == 'checkbox' ) {
460
+ echo wpmem_create_formfield( $wpmem_fields[$row][2]."_checked", 'checkbox', 'y', $wpmem_fields[$row][8] ); } ?>
461
+ </td>
462
+ <td width="10%"><?php echo ( $wpmem_fields[$row][6] == 'y' ) ? 'native' : wpmem_fields_edit_link( $wpmem_fields[$row][2] ); ?></td>
463
+
464
+ <td align="center" width="10%">
465
+ <?php
466
+ $wpmem_ut_fields_skip = array( 'user_email', 'confirm_email', 'password', 'confirm_password' );
467
+ if ( !in_array( $wpmem_fields[$row][2], $wpmem_ut_fields_skip ) ) { ?>
468
+ <input type="checkbox" name="ut_fields[<?php echo $wpmem_fields[$row][2]; ?>]"
469
+ value="<?php echo $wpmem_fields[$row][1]; ?>"
470
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( $wpmem_fields[$row][1], $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
471
+ <?php } ?>
472
+ </td>
473
+ </tr><?php
474
+ } ?>
475
+ <tr class="nodrag nodrop">
476
+ <td>&nbsp;</td>
477
+ <td><i><?php _e( 'Registration Date', 'wp-members' ); ?></i></td>
478
+ <td><i>user_registered</i></td>
479
+ <td colspan="4">&nbsp;</td>
480
+ <td><?php _e( 'native', 'wp-members' ); ?></td>
481
+ <td align="center">
482
+ <input type="checkbox" name="ut_fields[user_registered]"
483
+ value="Registration Date"
484
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( 'Registration Date', $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
485
+ </td>
486
+ </tr>
487
+ <?php if( WPMEM_MOD_REG == 1 ) { ?>
488
+ <tr class="nodrag nodrop">
489
+ <td>&nbsp;</td>
490
+ <td><i><?php _e( 'Active', 'wp-members' ); ?></i></td>
491
+ <td><i>active</i></td>
492
+ <td colspan="5">&nbsp;</td>
493
+ <td align="center">
494
+ <input type="checkbox" name="ut_fields[active]"
495
+ value="Active"
496
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( 'Active', $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
497
+ </td>
498
+ </tr>
499
+ <?php } ?>
500
+ <tr class="nodrag nodrop">
501
+ <td>&nbsp;</td>
502
+ <td><i><?php _e( 'Registration IP', 'wp-members' ); ?></i></td>
503
+ <td><i>wpmem_reg_ip</i></td>
504
+ <td colspan="5">&nbsp;</td>
505
+ <td align="center">
506
+ <input type="checkbox" name="ut_fields[wpmem_reg_ip]"
507
+ value="Registration IP"
508
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( 'Registration IP', $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
509
+ </td>
510
+ </tr>
511
+ <?php if( WPMEM_USE_EXP == 1 ) { ?>
512
+ <tr class="nodrag nodrop">
513
+ <td>&nbsp;</td>
514
+ <td><i>Subscription Type</i></td>
515
+ <td><i>exp_type</i></td>
516
+ <td colspan="5">&nbsp;</td>
517
+ <td align="center">
518
+ <input type="checkbox" name="ut_fields[exp_type]"
519
+ value="Subscription Type"
520
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( 'Subscription Type', $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
521
+ </td>
522
+ </tr>
523
+ <tr class="nodrag nodrop">
524
+ <td>&nbsp;</td>
525
+ <td><i>Expires</i></td>
526
+ <td><i>expires</i></td>
527
+ <td colspan="5">&nbsp;</td>
528
+ <td align="center">
529
+ <input type="checkbox" name="ut_fields[expires]"
530
+ value="Expires"
531
+ <?php echo ( ( $wpmem_ut_fields ) && ( in_array( 'Expires', $wpmem_ut_fields ) ) ) ? 'checked' : false; ?> />
532
+ </td>
533
+ </tr>
534
+ <?php } ?>
535
+ </table><br />
536
+ <input type="hidden" name="wpmem_admin_a" value="update_fields" />
537
+ <input type="submit" name="save" class="button-primary" value="<?php _e( 'Update Fields', 'wp-members' ); ?> &raquo;" />
538
+ </form>
539
+ </div><!-- .inside -->
540
+ </div>
541
+ <?php
542
+ }
543
+
544
+ /** End of File **/
admin/tab-options.php ADDED
@@ -0,0 +1,342 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the plugin options tab.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * builds the settings panel
21
+ *
22
+ * @since 2.2.2
23
+ *
24
+ * @param array $wpmem_settings
25
+ */
26
+ function wpmem_a_build_options( $wpmem_settings )
27
+ {
28
+ $admin_email = apply_filters( 'wpmem_notify_addr', get_option( 'admin_email' ) );
29
+ $chg_email = __( sprintf( '%sChange%s or %sFilter%s this address', '<a href="' . site_url( 'wp-admin/options-general.php', 'admin' ) . '">', '</a>', '<a href="http://rocketgeek.com/plugins/wp-members/users-guide/filter-hooks/wpmem_notify_addr/">', '</a>' ), 'wp-members' );
30
+ $help_link = __( sprintf( 'See the %sUsers Guide on plugin options%s.', '<a href="http://rocketgeek.com/plugins/wp-members/users-guide/plugin-settings/options/" target="_blank">', '</a>' ), 'wp-members' );
31
+ ?>
32
+ <div class="metabox-holder has-right-sidebar">
33
+
34
+ <div class="inner-sidebar">
35
+ <?php wpmem_a_meta_box(); ?>
36
+ <div class="postbox">
37
+ <h3><span><?php _e( 'Need help?', 'wp-members' ); ?></span></h3>
38
+ <div class="inside">
39
+ <strong><i><?php echo $help_link; ?></i></strong>
40
+ </div>
41
+ </div>
42
+ <?php wpmem_a_rss_box(); ?>
43
+ </div> <!-- .inner-sidebar -->
44
+
45
+ <div id="post-body">
46
+ <div id="post-body-content">
47
+ <div class="postbox">
48
+ <h3><span><?php _e( 'Manage Options', 'wp-members' ); ?></span></h3>
49
+ <div class="inside">
50
+ <form name="updatesettings" id="updatesettings" method="post" action="<?php echo $_SERVER['REQUEST_URI']?>">
51
+ <?php wp_nonce_field( 'wpmem-update-settings' ); ?>
52
+ <ul>
53
+ <?php $arr = array(
54
+ array(__('Block Posts by default','wp-members'),'wpmem_settings_block_posts',__('Note: Posts can still be individually blocked or unblocked at the article level','wp-members')),
55
+ array(__('Block Pages by default','wp-members'),'wpmem_settings_block_pages',__('Note: Pages can still be individually blocked or unblocked at the article level','wp-members')),
56
+ array(__('Show excerpts','wp-members'),'wpmem_settings_show_excerpts',__('Shows excerpted content above the login/registration on both Posts and Pages','wp-members')),
57
+ array(__('Notify admin','wp-members'),'wpmem_settings_notify',sprintf(__('Notify %s for each new registration? %s','wp-members'),$admin_email,$chg_email)),
58
+ array(__('Moderate registration','wp-members'),'wpmem_settings_moderate',__('Holds new registrations for admin approval','wp-members')),
59
+ array(__('Use reCAPTCHA','wp-members'),'wpmem_settings_captcha',__('Turns on CAPTCHA for registration','wp-members')),
60
+ array(__('Hide registration','wp-members'),'wpmem_settings_turnoff',__('Removes the registration form from blocked content','wp-members')),
61
+ array('','',''),
62
+ array(__('Time-based expiration','wp-members'),'wpmem_settings_time_exp',__('Allows for access to expire','wp-members')),
63
+ array(__('Trial period','wp-members'),'wpmem_settings_trial',__('Allows for a trial period','wp-members')),
64
+ array(__('Ignore warning messages','wp-members'),'wpmem_settings_ignore_warnings',__('Ignores WP-Members warning messages in the admin panel','wp-members'))
65
+ );
66
+ for( $row = 0; $row < count( $arr ); $row++ ) {
67
+
68
+ if( $row != 7 && $row != 5 ) { //if( $row != 7 ) {
69
+ if( ( $row < 8 || $row > 9 ) || ( WPMEM_EXP_MODULE == true ) ) { ?>
70
+ <li>
71
+ <label><?php echo $arr[$row][0]; ?></label>
72
+ <?php if (WPMEM_DEBUG == true) { echo $wpmem_settings[$row+1]; } ?>
73
+ <input name="<?php echo $arr[$row][1]; ?>" type="checkbox" id="<?php echo $arr[$row][1]; ?>" value="1" <?php if( $wpmem_settings[$row+1] == 1 ) { echo "checked"; }?> />&nbsp;&nbsp;
74
+ <?php if( $arr[$row][2] ) { ?><span class="description"><?php echo $arr[$row][2]; ?></span><?php } ?>
75
+ </li>
76
+ <?php }
77
+ }
78
+ } ?>
79
+ <?php $attribution = get_option( 'wpmembers_attrib' ); ?>
80
+ <li>
81
+ <label><?php _e( 'Attribution', 'wp-members' ); ?></label>
82
+ <input name="attribution" type="checkbox" id="attribution" value="1" <?php if( $attribution == 1 ) { echo "checked"; }?> />&nbsp;&nbsp;
83
+ <span class="description"><?php _e( 'Attribution is appreciated! Display "powered by" link on register form?', 'wp-members' ); ?></span>
84
+ </li>
85
+ <?php $auto_ex = get_option( 'wpmembers_autoex' ); ?>
86
+ <li>
87
+ <label><?php _e( 'Auto Excerpt:', 'wp-members' ); ?></label>
88
+ <input type="checkbox" name="wpmem_autoex" value="1" <?php if( $auto_ex['auto_ex'] == 1 ) { echo "checked"; } ?> />&nbsp;&nbsp;&nbsp;&nbsp;<?php _e( 'Number of words in excerpt:', 'wp-members' ); ?> <input name="wpmem_autoex_len" type="text" size="5" value="<?php if( $auto_ex['auto_ex_len'] ) { echo $auto_ex['auto_ex_len']; } ?>" />&nbsp;<span class="description"><?php _e( 'Optional', 'wp-members' ); ?>. <?php _e( 'Automatically creates an excerpt', 'wp-members' ); ?></span>
89
+ </li>
90
+ <li>
91
+ <label><?php _e( 'Enable CAPTCHA', 'wp-members' ); ?></label>
92
+ <select name="wpmem_settings_captcha">
93
+ <option value="0"<?php echo ( $wpmem_settings[6] == 0 ) ? ' selected ' : ''; ?>><?php _e( 'None' ); ?></option>
94
+ <option value="1"<?php echo ( $wpmem_settings[6] == 1 ) ? ' selected ' : ''; ?>>reCAPTCHA</option>
95
+ <?php // if rs captcha is enabled ?>
96
+ <option value="2"<?php echo ( $wpmem_settings[6] == 2 ) ? ' selected ' : ''; ?>>Really Simple CAPTCHA</option>
97
+ </select>
98
+ </li>
99
+ <h3><?php _e( 'Pages' ); ?></h3>
100
+ <?php $wpmem_logurl = get_option( 'wpmembers_logurl' );
101
+ if( ! $wpmem_logurl ) { $wpmem_logurl = wpmem_use_ssl(); } ?>
102
+ <li>
103
+ <label><?php _e( 'Login Page:', 'wp-members' ); ?></label>
104
+ <select name="wpmem_settings_logpage" id="wpmem_logpage_select">
105
+ <?php wpmem_admin_page_list( $wpmem_logurl ); ?>
106
+ </select>&nbsp;<span class="description"><?php _e( 'Specify a login page (optional)', 'wp-members' ); ?></span><br />
107
+ <div id="wpmem_logpage_custom">
108
+ <label>&nbsp;</label>
109
+ <input class="regular-text code" type="text" name="wpmem_settings_logurl" value="<?php echo $wpmem_logurl; ?>" size="50" />
110
+ </div>
111
+ </li>
112
+ <?php $wpmem_regurl = get_option( 'wpmembers_regurl' );
113
+ if( ! $wpmem_regurl ) { $wpmem_regurl = wpmem_use_ssl(); } ?>
114
+ <li>
115
+ <label><?php _e( 'Register Page:', 'wp-members' ); ?></label>
116
+ <select name="wpmem_settings_regpage" id="wpmem_regpage_select">
117
+ <?php wpmem_admin_page_list( $wpmem_regurl ); ?>
118
+ </select>&nbsp;<span class="description"><?php _e( 'For creating a register link in the login form', 'wp-members' ); ?></span><br />
119
+ <div id="wpmem_regpage_custom">
120
+ <label>&nbsp;</label>
121
+ <input class="regular-text code" type="text" name="wpmem_settings_regurl" value="<?php echo $wpmem_regurl; ?>" size="50" />
122
+ </div>
123
+ </li>
124
+ <?php $wpmem_msurl = get_option( 'wpmembers_msurl' );
125
+ if( ! $wpmem_msurl ) { $wpmem_msurl = wpmem_use_ssl(); } ?>
126
+ <li>
127
+ <label><?php _e( 'User Profile Page:', 'wp-members' ); ?></label>
128
+ <select name="wpmem_settings_mspage" id="wpmem_mspage_select">
129
+ <?php wpmem_admin_page_list( $wpmem_msurl ); ?>
130
+ </select>&nbsp;<span class="description"><?php _e( 'For creating a forgot password link in the login form', 'wp-members' ); ?></span><br />
131
+ <div id="wpmem_mspage_custom">
132
+ <label>&nbsp;</label>
133
+ <input class="regular-text code" type="text" name="wpmem_settings_msurl" value="<?php echo $wpmem_msurl; ?>" size="50" />
134
+ </div>
135
+ </li>
136
+ <?php $wpmem_style = get_option( 'wpmembers_style' ); ?>
137
+ <h3><?php _e( 'Stylesheet' ); ?></h3>
138
+ <li>
139
+ <label><?php _e( 'Stylesheet' ); ?>:</label>
140
+ <select name="wpmem_settings_style" id="wpmem_stylesheet_select">
141
+ <?php wpmem_admin_style_list(); ?>
142
+ </select>
143
+ </li>
144
+ <?php $wpmem_cssurl = get_option( 'wpmembers_cssurl' );
145
+ if( ! $wpmem_cssurl ) { $wpmem_cssurl = wpmem_use_ssl(); } ?>
146
+ <div id="wpmem_stylesheet_custom">
147
+ <li>
148
+ <label><?php _e( 'Custom Stylesheet:', 'wp-members' ); ?></label>
149
+ <input class="regular-text code" type="text" name="wpmem_settings_cssurl" value="<?php echo $wpmem_cssurl; ?>" size="50" />
150
+ </li>
151
+ </div>
152
+ <br /></br />
153
+ <input type="hidden" name="wpmem_admin_a" value="update_settings">
154
+ <input type="submit" name="UpdateSettings" class="button-primary" value="<?php _e( 'Update Settings', 'wp-members' ); ?> &raquo;" />
155
+ </ul>
156
+ </form>
157
+ </div><!-- .inside -->
158
+ </div>
159
+ </div><!-- #post-body-content -->
160
+ </div><!-- #post-body -->
161
+ </div><!-- .metabox-holder -->
162
+ <?php
163
+ }
164
+
165
+
166
+ /**
167
+ * Updates the plugin options
168
+ *
169
+ * @since 2.8.0
170
+ *
171
+ * @return string The options updated message
172
+ */
173
+ function wpmem_update_options()
174
+ {
175
+ //check nonce
176
+ check_admin_referer( 'wpmem-update-settings' );
177
+
178
+ //keep things clean
179
+ $post_arr = array(
180
+ 'WPMEM_VERSION',
181
+ 'wpmem_settings_block_posts',
182
+ 'wpmem_settings_block_pages',
183
+ 'wpmem_settings_show_excerpts',
184
+ 'wpmem_settings_notify',
185
+ 'wpmem_settings_moderate',
186
+ 'wpmem_settings_captcha',
187
+ 'wpmem_settings_turnoff',
188
+ 'wpmem_settings_legacy',
189
+ 'wpmem_settings_time_exp',
190
+ 'wpmem_settings_trial',
191
+ 'wpmem_settings_ignore_warnings'
192
+ );
193
+
194
+ $wpmem_newsettings = array();
195
+ for( $row = 0; $row < count( $post_arr ); $row++ ) {
196
+ if( $post_arr[$row] == 'WPMEM_VERSION' ) {
197
+ $wpmem_newsettings[$row] = 'WPMEM_VERSION';
198
+ } else {
199
+ if( isset( $_POST[$post_arr[$row]] ) != 1 ) {
200
+ $wpmem_newsettings[$row] = 0;
201
+ } else {
202
+ $wpmem_newsettings[$row] = $_POST[$post_arr[$row]];
203
+ }
204
+ }
205
+
206
+ if( WPMEM_DEBUG == true ) {
207
+ echo $post_arr[$row] . ' ' . $_POST[$post_arr[$row]] . '<br />';
208
+ }
209
+
210
+ /*
211
+ if we are setting registration to be moderated,
212
+ check to see if the current admin has been
213
+ activated so they don't accidentally lock themselves
214
+ out later
215
+ */
216
+ if( $row == 5 ) {
217
+ if( isset( $_POST[$post_arr[$row]] ) == 1) {
218
+ global $current_user;
219
+ get_currentuserinfo();
220
+ $user_ID = $current_user->ID;
221
+ update_user_meta( $user_ID, 'active', 1 );
222
+ }
223
+ }
224
+ }
225
+
226
+ $wpmem_attribution = ( isset( $_POST['attribution'] ) ) ? 1 : 0;
227
+ update_option( 'wpmembers_attrib', $wpmem_attribution );
228
+
229
+ $wpmem_settings_msurl = ( $_POST['wpmem_settings_mspage'] == 'use_custom' ) ? $_POST['wpmem_settings_msurl'] : '';
230
+ $wpmem_settings_mspage = ( $_POST['wpmem_settings_mspage'] == 'use_custom' ) ? '' : $_POST['wpmem_settings_mspage'];
231
+ if( $wpmem_settings_mspage ) { update_option( 'wpmembers_msurl', $wpmem_settings_mspage ); }
232
+ if( $wpmem_settings_msurl != wpmem_use_ssl() && $wpmem_settings_msurl != 'use_custom' && ! $wpmem_settings_mspage ) {
233
+ update_option( 'wpmembers_msurl', trim( $wpmem_settings_msurl ) );
234
+ }
235
+
236
+ $wpmem_settings_regurl = ( $_POST['wpmem_settings_regpage'] == 'use_custom' ) ? $_POST['wpmem_settings_regurl'] : '';
237
+ $wpmem_settings_regpage = ( $_POST['wpmem_settings_regpage'] == 'use_custom' ) ? '' : $_POST['wpmem_settings_regpage'];
238
+ if( $wpmem_settings_regpage ) { update_option( 'wpmembers_regurl', $wpmem_settings_regpage ); }
239
+ if( $wpmem_settings_regurl != wpmem_use_ssl() && $wpmem_settings_regurl != 'use_custom' && ! $wpmem_settings_regpage ) {
240
+ update_option( 'wpmembers_regurl', trim( $wpmem_settings_regurl ) );
241
+ }
242
+
243
+ $wpmem_settings_logurl = ( $_POST['wpmem_settings_logpage'] == 'use_custom' ) ? $_POST['wpmem_settings_logurl'] : '';
244
+ $wpmem_settings_logpage = ( $_POST['wpmem_settings_logpage'] == 'use_custom' ) ? '' : $_POST['wpmem_settings_logpage'];
245
+ if( $wpmem_settings_logpage ) { update_option( 'wpmembers_logurl', $wpmem_settings_logpage ); }
246
+ if( $wpmem_settings_logurl != wpmem_use_ssl() && $wpmem_settings_logurl != 'use_custom' && ! $wpmem_settings_logpage ) {
247
+ update_option( 'wpmembers_logurl', trim( $wpmem_settings_logurl ) );
248
+ }
249
+
250
+ $wpmem_settings_cssurl = $_POST['wpmem_settings_cssurl'];
251
+ if( $wpmem_settings_cssurl != wpmem_use_ssl() ) {
252
+ update_option( 'wpmembers_cssurl', trim( $wpmem_settings_cssurl ) );
253
+ }
254
+
255
+ $wpmem_settings_style = ( isset( $_POST['wpmem_settings_style'] ) ) ? $_POST['wpmem_settings_style'] : false;
256
+ update_option( 'wpmembers_style', $wpmem_settings_style, false );
257
+
258
+ $wpmem_autoex = array (
259
+ 'auto_ex' => isset( $_POST['wpmem_autoex'] ) ? $_POST['wpmem_autoex'] : 0,
260
+ 'auto_ex_len' => isset( $_POST['wpmem_autoex_len'] ) ? $_POST['wpmem_autoex_len'] : ''
261
+ );
262
+ update_option( 'wpmembers_autoex', $wpmem_autoex, false );
263
+
264
+ update_option( 'wpmembers_settings', $wpmem_newsettings );
265
+ $wpmem_settings = $wpmem_newsettings;
266
+
267
+
268
+ return __( 'WP-Members settings were updated', 'wp-members' );
269
+ }
270
+
271
+
272
+ /**
273
+ * Create the stylesheet dropdown selection
274
+ *
275
+ * @since 2.8
276
+ */
277
+ function wpmem_admin_style_list()
278
+ {
279
+ $val = get_option( 'wpmembers_style', null );
280
+ $list = array(
281
+ 'No Float' => WPMEM_DIR . 'css/generic-no-float.css',
282
+ 'Rigid' => WPMEM_DIR . 'css/generic-rigid.css',
283
+ 'Twenty Fifteen' => WPMEM_DIR . 'css/wp-members-2015.css',
284
+ 'Twenty Fifteen - no float' => WPMEM_DIR . 'css/wp-members-2015-no-float.css',
285
+ 'Twenty Fourteen' => WPMEM_DIR . 'css/wp-members-2014.css',
286
+ 'Twenty Fourteen - no float' => WPMEM_DIR . 'css/wp-members-2014-no-float.css',
287
+ 'Twenty Thirteen' => WPMEM_DIR . 'css/wp-members-2013.css',
288
+ 'Twenty Twelve' => WPMEM_DIR . 'css/wp-members-2012.css',
289
+ 'Twenty Eleven' => WPMEM_DIR . 'css/wp-members-2011.css',
290
+ 'Twenty Ten' => WPMEM_DIR . 'css/wp-members.css',
291
+ 'Kubrick' => WPMEM_DIR . 'css/wp-members-kubrick.css',
292
+ );
293
+
294
+ /**
295
+ * Filters the list of stylesheets in the plugin options dropdown.
296
+ *
297
+ * @since 2.8.0
298
+ *
299
+ * @param array $list An array of stylesheets that can be applied to the plugin's forms.
300
+ */
301
+ $list = apply_filters( 'wpmem_admin_style_list', $list );
302
+
303
+ $selected = false;
304
+ foreach( $list as $name => $location ) {
305
+ $selected = ( $location == $val ) ? true : $selected;
306
+ echo '<option value="' . $location . '" ' . wpmem_selected( $location, $val, 'select' ) . '>' . $name . "</option>\n";
307
+ }
308
+ $selected = ( ! $selected ) ? ' selected' : '';
309
+ echo '<option value="use_custom"' . $selected . '>' . __( 'USE CUSTOM URL BELOW', 'wp-members' ) . '</option>';
310
+
311
+ return;
312
+ }
313
+
314
+
315
+ /**
316
+ * Create a dropdown selection of pages
317
+ *
318
+ * @since 2.8.1
319
+ *
320
+ * @param string $val
321
+ */
322
+ function wpmem_admin_page_list( $val, $show_custom_url = true )
323
+ {
324
+ $selected = ( $val == 'http://' ) ? 'select a page' : false;
325
+ $pages = get_pages();
326
+
327
+ echo '<option value=""'; echo ( $selected == 'select a page' ) ? ' selected' : ''; echo '>'; echo esc_attr( __( 'Select a page' ) ); echo '</option>';
328
+
329
+ foreach ( $pages as $page ) {
330
+ $selected = ( get_page_link( $page->ID ) == $val ) ? true : $selected;
331
+ $option = '<option value="' . get_page_link( $page->ID ) . '"' . wpmem_selected( get_page_link( $page->ID ), $val, 'select' ) . '>';
332
+ $option .= $page->post_title;
333
+ $option .= '</option>';
334
+ echo $option;
335
+ }
336
+ if( $show_custom_url ) {
337
+ $selected = ( ! $selected ) ? ' selected' : '';
338
+ echo '<option value="use_custom"' . $selected . '>' . __( 'USE CUSTOM URL BELOW', 'wp-members' ) . '</option>';
339
+ }
340
+ }
341
+
342
+ /** End of File **/
admin/user-export.php ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Export Functions
4
+ *
5
+ * Mananges exporting users to a CSV file.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * New export function to export all or selected users
21
+ *
22
+ * @since 2.9.7
23
+ *
24
+ * @param array $args
25
+ * @param array $users
26
+ */
27
+ function wpmem_export_users( $args, $users = null ) {
28
+ $today = date( "m-d-y" );
29
+
30
+ /** Setup defaults **/
31
+ $defaults = array(
32
+ 'export' => 'all',
33
+ 'filename' => 'wp-members-user-export-' . $today . '.csv',
34
+ 'export_fields' => array(),
35
+ 'exclude_fields' => array( 'password', 'confirm_password', 'confirm_email' ),
36
+ );
37
+
38
+ /** merge $args with defaults and extract **/
39
+ /**
40
+ * Filter the default export arguments.
41
+ *
42
+ * @since 2.9.7
43
+ *
44
+ * @param array $args An array of arguments to merge with defaults. Default null.
45
+ */
46
+ extract( wp_parse_args( apply_filters( 'wpmem_export_args', $args ), $defaults ) );
47
+
48
+ /** Output needs to be buffered, start the buffer */
49
+ ob_start();
50
+
51
+ /** If exporting all, get all of the users */
52
+ $users = ( $export == 'all' ) ? get_users( array( 'fields' => 'ID' ) ) : $users;
53
+
54
+ /** Generate headers and a filename based on date of export */
55
+ header( "Content-Description: File Transfer" );
56
+ header( "Content-type: application/octet-stream" );
57
+ header( "Content-Disposition: attachment; filename=" . $filename );
58
+ header( "Content-Type: text/csv; charset=" . get_option( 'blog_charset' ), true );
59
+ echo "\xEF\xBB\xBF"; // UTF-8 BOM
60
+
61
+ /** get the fields */
62
+ $wpmem_fields = get_option( 'wpmembers_fields' );
63
+
64
+ /** do the header row */
65
+ $hrow = "User ID,Username,";
66
+
67
+ foreach ( $wpmem_fields as $meta ) {
68
+ if ( ! in_array( $meta[2], $exclude_fields ) ) {
69
+ $hrow.= $meta[1] . ",";
70
+ }
71
+ }
72
+
73
+ $hrow .= ( WPMEM_MOD_REG == 1 ) ? __( 'Activated?', 'wp-members' ) . "," : '';
74
+ $hrow .= ( WPMEM_USE_EXP == 1 ) ? __( 'Subscription', 'wp-members' ) . "," . __( 'Expires', 'wp-members' ) . "," : '';
75
+
76
+ $hrow .= __( 'Registered', 'wp-members' ) . ",";
77
+ $hrow .= __( 'IP', 'wp-members' );
78
+ $data = $hrow . "\r\n";
79
+
80
+ /**
81
+ * we used the fields array once,
82
+ * rewind so we can use it again
83
+ */
84
+ reset( $wpmem_fields );
85
+
86
+ /**
87
+ * Loop through the array of users,
88
+ * build the data, delimit by commas, wrap fields with double quotes,
89
+ * use \n switch for new line
90
+ */
91
+ foreach ( $users as $user ) {
92
+
93
+ $user_info = get_userdata( $user );
94
+
95
+ $data .= '"' . $user_info->ID . '","' . $user_info->user_login . '",';
96
+
97
+ $wp_user_fields = array( 'user_email', 'user_nicename', 'user_url', 'display_name' );
98
+ foreach ( $wpmem_fields as $meta ) {
99
+ if ( ! in_array( $meta[2], $exclude_fields ) ) {
100
+ if ( in_array( $meta[2], $wp_user_fields ) ){
101
+ $data .= '"' . $user_info->$meta[2] . '",';
102
+ } else {
103
+ $data .= '"' . get_user_meta( $user, $meta[2], true ) . '",';
104
+ }
105
+ }
106
+ }
107
+
108
+ $data .= ( WPMEM_MOD_REG == 1 ) ? '"' . ( get_user_meta( $user, 'active', 1 ) ) ? __( 'Yes' ) : __( 'No' ) . '",' : '';
109
+ $data .= ( WPMEM_USE_EXP == 1 ) ? '"' . get_user_meta( $user, "exp_type", true ) . '",' : '';
110
+ $data .= ( WPMEM_USE_EXP == 1 ) ? '"' . get_user_meta( $user, "expires", true ) . '",' : '';
111
+
112
+ $data .= '"' . $user_info->user_registered . '",';
113
+ $data .= '"' . get_user_meta( $user, "wpmem_reg_ip", true ). '"';
114
+ $data .= "\r\n";
115
+
116
+ /** update the user record as being exported */
117
+ if ( $export != 'all' ){
118
+ update_user_meta( $user, 'exported', 1 );
119
+ }
120
+ }
121
+
122
+ /** We are done, output the CSV */
123
+ echo $data;
124
+
125
+ /** Clear the buffer */
126
+ ob_flush();
127
+
128
+ exit();
129
+ }
130
+
131
+ /** End of File **/
admin/user-profile.php ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the user profile screen.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /** Actions */
20
+ add_action( 'show_user_profile', 'wpmem_admin_fields' );
21
+ add_action( 'edit_user_profile', 'wpmem_admin_fields' );
22
+ add_action( 'profile_update', 'wpmem_admin_update' );
23
+
24
+
25
+ /**
26
+ * add WP-Members fields to the WP user profile screen
27
+ *
28
+ * @since 2.1
29
+ *
30
+ * @global array $current_screen The WordPress screen object
31
+ * @global int $user_ID The user ID
32
+ */
33
+ function wpmem_admin_fields()
34
+ {
35
+ global $current_screen, $user_ID;
36
+ $user_id = ( $current_screen->id == 'profile' ) ? $user_ID : $_REQUEST['user_id']; ?>
37
+
38
+ <h3><?php
39
+ /**
40
+ * Filter the heading for additional profile fields.
41
+ *
42
+ * @since 2.8.2
43
+ *
44
+ * @param string The default additional fields heading.
45
+ */
46
+ echo apply_filters( 'wpmem_admin_profile_heading', __( 'WP-Members Additional Fields', 'wp-members' ) ); ?></h3>
47
+ <table class="form-table">
48
+ <?php
49
+ // get fields
50
+ $wpmem_fields = get_option( 'wpmembers_fields' );
51
+ // get excluded meta
52
+ $exclude = wpmem_get_excluded_meta( 'admin-profile' );
53
+
54
+ /**
55
+ * Fires at the beginning of generating the WP-Members fields in the user profile.
56
+ *
57
+ * @since 2.9.3
58
+ *
59
+ * @param int $user_id The user's ID.
60
+ * @param array $wpmem_fields The WP-Members fields.
61
+ */
62
+ do_action( 'wpmem_admin_before_profile', $user_id, $wpmem_fields );
63
+
64
+ foreach( $wpmem_fields as $meta ) {
65
+
66
+ $valtochk = '';
67
+
68
+ /** determine which fields to show in the additional fields area */
69
+ $show = ( $meta[6] == 'n' && ! in_array( $meta[2], $exclude ) ) ? true : false;
70
+ $show = ( $meta[1] == 'TOS' && $meta[4] != 'y' ) ? null : $show;
71
+
72
+ if( $show ) {
73
+ // is the field required
74
+ $req = ( $meta[5] == 'y' ) ? ' <span class="description">' . __( '(required)' ) . '</span>' : '';
75
+
76
+ $show_field = '
77
+ <tr>
78
+ <th><label>' . __( $meta[1], 'wp-members' ) . $req . '</label></th>
79
+ <td>';
80
+ $val = htmlspecialchars( get_user_meta( $user_id, $meta[2], true ) );
81
+ if( $meta[3] == 'checkbox' || $meta[3] == 'select' ) {
82
+ $valtochk = $val;
83
+ $val = $meta[7];
84
+ }
85
+ $show_field.= wpmem_create_formfield( $meta[2], $meta[3], $val, $valtochk ) . '
86
+ </td>
87
+ </tr>';
88
+
89
+ /**
90
+ * Filter the profile field.
91
+ *
92
+ * @since 2.8.2
93
+ *
94
+ * @param string $show_field The HTML string for the additional profile field.
95
+ */
96
+ echo apply_filters( 'wpmem_admin_profile_field', $show_field );
97
+ }
98
+ }
99
+
100
+ // see if reg is moderated, and if the user has been activated
101
+ if( WPMEM_MOD_REG == 1 ) {
102
+ $user_active_flag = get_user_meta( $user_id, 'active', true );
103
+ switch( $user_active_flag ) {
104
+
105
+ case '':
106
+ $label = __( 'Activate this user?', 'wp-members' );
107
+ $action = 1;
108
+ break;
109
+
110
+ case 0:
111
+ $label = __( 'Reactivate this user?', 'wp-members' );
112
+ $action = 1;
113
+ break;
114
+
115
+ case 1:
116
+ $label = __( 'Deactivate this user?', 'wp-members' );
117
+ $action = 0;
118
+ break;
119
+
120
+ }?>
121
+
122
+ <tr>
123
+ <th><label><?php echo $label; ?></label></th>
124
+ <td><input id="activate_user" type="checkbox" class="input" name="activate_user" value="<?php echo $action; ?>" /></td>
125
+ </tr>
126
+
127
+ <?php }
128
+
129
+ // if using subscription model, show expiration
130
+ // if registration is moderated, this doesn't show if user is not active yet.
131
+ if( WPMEM_USE_EXP == 1 ) {
132
+ if( ( WPMEM_MOD_REG == 1 && get_user_meta( $user_id, 'active', true ) == 1 ) || ( WPMEM_MOD_REG != 1 ) ) {
133
+ wpmem_a_extenduser( $user_id );
134
+ }
135
+ } ?>
136
+ <tr>
137
+ <th><label><?php _e( 'IP @ registration', 'wp-members' ); ?></label></th>
138
+ <td><?php echo get_user_meta( $user_id, 'wpmem_reg_ip', true ); ?></td>
139
+ </tr>
140
+ <?php
141
+ /**
142
+ * Fires after generating the WP-Members fields in the user profile.
143
+ *
144
+ * @since 2.9.3
145
+ *
146
+ * @param int $user_id The user's ID.
147
+ * @param array $wpmem_fields The WP-Members fields.
148
+ */
149
+ do_action( 'wpmem_admin_after_profile', $user_id, $wpmem_fields ); ?>
150
+
151
+ </table><?php
152
+ }
153
+
154
+
155
+ /**
156
+ * updates WP-Members fields from the WP user profile screen
157
+ *
158
+ * @since 2.1
159
+ */
160
+ function wpmem_admin_update() {
161
+
162
+ $user_id = $_REQUEST['user_id'];
163
+ $wpmem_fields = get_option( 'wpmembers_fields' );
164
+
165
+ /**
166
+ * Fires before the user profile is updated.
167
+ *
168
+ * @since 2.9.2
169
+ *
170
+ * @param int $user_id The user ID.
171
+ * @param array $wpmem_fields Array of the custom fields.
172
+ */
173
+ do_action( 'wpmem_admin_pre_user_update', $user_id, $wpmem_fields );
174
+
175
+ $fields = array();
176
+ $chk_pass = false;
177
+ foreach( $wpmem_fields as $meta ) {
178
+ if( $meta[6] == "n" && $meta[3] != 'password' && $meta[3] != 'checkbox' ) {
179
+ ( isset( $_POST[ $meta[2] ] ) ) ? $fields[ $meta[2] ] = $_POST[ $meta[2] ] : false;
180
+ } elseif( $meta[2] == 'password' && $meta[4] == 'y' ) {
181
+ $chk_pass = true;
182
+ } elseif( $meta[3] == 'checkbox' ) {
183
+ $fields[ $meta[2] ] = ( isset( $_POST[ $meta[2] ] ) ) ? $_POST[ $meta[2] ] : '';
184
+ }
185
+ }
186
+
187
+ /**
188
+ * Filter the submitted field values for backend profile update.
189
+ *
190
+ * @since 2.8.2
191
+ *
192
+ * @param array $fields An array of the posted form values.
193
+ * @param int $user_id The ID of the user being updated.
194
+ */
195
+ $fields = apply_filters( 'wpmem_admin_profile_update', $fields, $user_id );
196
+
197
+ // get any excluded meta fields
198
+ $exclude = wpmem_get_excluded_meta( 'admin-profile' );
199
+ foreach( $fields as $key => $val ) {
200
+ if( ! in_array( $key, $exclude ) ) {
201
+ update_user_meta( $user_id, $key, $val );
202
+ }
203
+ }
204
+
205
+ if( WPMEM_MOD_REG == 1 ) {
206
+
207
+ $wpmem_activate_user = ( isset( $_POST['activate_user'] ) == '' ) ? -1 : $_POST['activate_user'];
208
+
209
+ if( $wpmem_activate_user == 1 ) {
210
+ wpmem_a_activate_user( $user_id, $chk_pass );
211
+ } elseif( $wpmem_activate_user == 0 ) {
212
+ wpmem_a_deactivate_user( $user_id );
213
+ }
214
+ }
215
+
216
+ ( WPMEM_USE_EXP == 1 ) ? wpmem_a_extend_user( $user_id ) : '';
217
+
218
+ /**
219
+ * Fires after the user profile is updated.
220
+ *
221
+ * @since 2.9.2
222
+ *
223
+ * @param int $user_id The user ID.
224
+ */
225
+ do_action( 'wpmem_admin_after_user_update', $user_id );
226
+
227
+ return;
228
+ }
229
+
230
+ /** End of File **/
admin/users.php ADDED
@@ -0,0 +1,514 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Admin Functions
4
+ *
5
+ * Functions to manage the Users > All Users page.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ */
17
+
18
+
19
+ /**
20
+ * Actions and filters
21
+ */
22
+ add_action( 'admin_footer-users.php', 'wpmem_bulk_user_action' );
23
+ add_action( 'load-users.php', 'wpmem_users_page_load' );
24
+ add_action( 'admin_notices', 'wpmem_users_admin_notices' );
25
+ add_filter( 'views_users', 'wpmem_users_views' );
26
+ add_filter( 'manage_users_columns', 'wpmem_add_user_column' );
27
+ add_action( 'manage_users_custom_column', 'wpmem_add_user_column_content', 10, 3 );
28
+ add_action( 'wpmem_post_register_data', 'wpmem_set_new_user_non_active' );
29
+ add_action( 'wpmem_user_activated', 'wpmem_set_activated_user' );
30
+ add_action( 'wpmem_user_deactivated', 'wpmem_set_deactivated_user' );
31
+ if( WPMEM_MOD_REG == 1 ) {
32
+ add_filter( 'user_row_actions', 'wpmem_insert_activate_link', 10, 2 );
33
+ }
34
+
35
+
36
+ /**
37
+ * Function to add activate/export to the bulk dropdown list
38
+ *
39
+ * @since 2.8.2
40
+ */
41
+ function wpmem_bulk_user_action()
42
+ { ?>
43
+ <script type="text/javascript">
44
+ jQuery(document).ready(function() {
45
+ <?php if( WPMEM_MOD_REG == 1 ) { ?>
46
+ jQuery('<option>').val('activate').text('<?php _e( 'Activate' )?>').appendTo("select[name='action']");
47
+ <?php } ?>
48
+ jQuery('<option>').val('export').text('<?php _e( 'Export', 'wp-members' )?>').appendTo("select[name='action']");
49
+ <?php if( WPMEM_MOD_REG == 1 ) { ?>
50
+ jQuery('<option>').val('activate').text('<?php _e( 'Activate' )?>').appendTo("select[name='action2']");
51
+ <?php } ?>
52
+ jQuery('<option>').val('export').text('<?php _e( 'Export', 'wp-members' )?>').appendTo("select[name='action2']");
53
+ jQuery('<input id="export_all" name="export_all" class="button action" type="submit" value="<?php _e( 'Export All Users', 'wp-members' ); ?>" />').appendTo(".bottom .bulkactions");
54
+ });
55
+ </script>
56
+ <?php
57
+ }
58
+
59
+
60
+ /**
61
+ * Function to add activate link to the user row action
62
+ *
63
+ * @since 2.8.2
64
+ *
65
+ * @param array $actions
66
+ * @param $user_object
67
+ * @return array $actions
68
+ */
69
+ function wpmem_insert_activate_link( $actions, $user_object ) {
70
+ if( current_user_can( 'edit_users', $user_object->ID ) ) {
71
+
72
+ $var = get_user_meta( $user_object->ID, 'active', true );
73
+
74
+ if( $var != 1 ) {
75
+ $url = "users.php?action=activate-single&amp;user=$user_object->ID";
76
+ $url = wp_nonce_url( $url, 'activate-user' );
77
+ $actions['activate'] = '<a href="' . $url . '">Activate</a>';
78
+ }
79
+ }
80
+ return $actions;
81
+ }
82
+
83
+
84
+ /**
85
+ * Function to handle bulk actions at page load
86
+ *
87
+ * @since 2.8.2
88
+ *
89
+ * @uses WP_Users_List_Table
90
+ */
91
+ function wpmem_users_page_load()
92
+ {
93
+ // if exporting all users, do it, then exit
94
+ if( isset( $_REQUEST['export_all'] ) && $_REQUEST['export_all'] == __( 'Export All Users', 'wp-members' ) ) {
95
+ include_once( WPMEM_PATH . 'admin/user-export.php' );
96
+ $today = date( "m-d-y" );
97
+ wpmem_export_users( array( 'export'=>'all', 'filename'=>'user-export-' . $today . '.csv' ), '' );
98
+ exit();
99
+ }
100
+
101
+ $wp_list_table = _get_list_table( 'WP_Users_List_Table' );
102
+ $action = $wp_list_table->current_action();
103
+ $sendback = '';
104
+
105
+ if( $action == 'activate' || 'activate-single' ) {
106
+ // find out if we need to set passwords
107
+ $chk_pass = false;
108
+ $wpmem_fields = get_option( 'wpmembers_fields' );
109
+ foreach( $wpmem_fields as $field ) {
110
+ if( $field[2] == 'password' && $field[4] == 'y' ) {
111
+ $chk_pass = true;
112
+ break;
113
+ }
114
+ }
115
+ }
116
+
117
+ switch( $action ) {
118
+
119
+ case 'activate':
120
+
121
+ /** validate nonce */
122
+ check_admin_referer( 'bulk-users' );
123
+
124
+ /** get the users */
125
+ $users = $_REQUEST['users'];
126
+
127
+ /** update the users */
128
+ $x = 0;
129
+ foreach( $users as $user ) {
130
+ // check to see if the user is already activated, if not, activate
131
+ if( ! get_user_meta( $user, 'active', true ) ) {
132
+ wpmem_a_activate_user( $user, $chk_pass );
133
+ $x++;
134
+ }
135
+ }
136
+
137
+ /** set the return message */
138
+ $sendback = add_query_arg( array('activated' => $x . ' users activated' ), $sendback );
139
+
140
+ break;
141
+
142
+ case 'activate-single':
143
+
144
+ /** validate nonce */
145
+ check_admin_referer( 'activate-user' );
146
+
147
+ /** get the users */
148
+ $users = $_REQUEST['user'];
149
+
150
+ /** check to see if the user is already activated, if not, activate */
151
+ if( ! get_user_meta( $users, 'active', true ) ) {
152
+
153
+ wpmem_a_activate_user( $users, $chk_pass );
154
+
155
+ /** get the user data */
156
+ $user_info = get_userdata( $users );
157
+
158
+ /** set the return message */
159
+ $sendback = add_query_arg( array('activated' => "$user_info->user_login activated" ), $sendback );
160
+
161
+ } else {
162
+
163
+ /** get the return message */
164
+ $sendback = add_query_arg( array('activated' => "That user is already active" ), $sendback );
165
+
166
+ }
167
+
168
+ break;
169
+
170
+ case 'show':
171
+
172
+ add_action( 'pre_user_query', 'wpmem_a_pre_user_query' );
173
+ return;
174
+ break;
175
+
176
+ case 'export':
177
+
178
+ $users = ( isset( $_REQUEST['users'] ) ) ? $_REQUEST['users'] : false;
179
+ include_once( WPMEM_PATH . 'admin/user-export.php' );
180
+ wpmem_export_users( array( 'export'=>'selected' ), $users );
181
+ return;
182
+ break;
183
+
184
+ default:
185
+ return;
186
+ break;
187
+
188
+ }
189
+
190
+ /** if we did not return already, we need to wp_redirect */
191
+ wp_redirect( $sendback );
192
+ exit();
193
+
194
+ }
195
+
196
+
197
+ /**
198
+ * Function to echo admin update message
199
+ *
200
+ * @since 2.8.2
201
+ */
202
+ function wpmem_users_admin_notices()
203
+ {
204
+ global $pagenow, $user_action_msg;
205
+ if( $pagenow == 'users.php' && isset( $_REQUEST['activated'] ) ) {
206
+ $message = $_REQUEST['activated'];
207
+ echo "<div class=\"updated\"><p>{$message}</p></div>";
208
+ }
209
+
210
+ if( $user_action_msg ) {
211
+ echo "<div class=\"updated\"><p>{$user_action_msg}</p></div>";
212
+ }
213
+ }
214
+
215
+
216
+ /**
217
+ * Function to add user views to the top list
218
+ *
219
+ * @since 2.8.2
220
+ *
221
+ * @param array $views
222
+ * @return array $views
223
+ */
224
+ function wpmem_users_views( $views )
225
+ {
226
+ $arr = array();
227
+ if( defined( 'WPMEM_USE_EXP' ) && WPMEM_USE_EXP == 1 ) { $arr[] = 'Pending'; }
228
+ if( defined( 'WPMEM_USE_TRL' ) && WPMEM_USE_TRL == 1 ) { $arr[] = 'Trial'; }
229
+ if( defined( 'WPMEM_USE_EXP' ) && WPMEM_USE_EXP == 1 ) { $arr[] = 'Subscription'; $arr[] = 'Expired'; }
230
+ if( defined( 'WPMEM_MOD_REG' ) && WPMEM_MOD_REG == 1 ) { $arr[] = 'Not Active'; }
231
+ $arr[] = 'Not Exported';
232
+ $show = ( isset( $_GET['show'] ) ) ? $_GET['show'] : false;
233
+
234
+ for( $row = 0; $row < count( $arr ); $row++ )
235
+ {
236
+ $link = "users.php?action=show&amp;show=";
237
+ $lcas = str_replace( " ", "", strtolower( $arr[$row] ) );
238
+ $link.= $lcas;
239
+ $curr = ( $show == $lcas ) ? ' class="current"' : '';
240
+
241
+ $echolink = true;
242
+ if( $lcas == "notactive" && WPMEM_MOD_REG != 1 ) { $echolink = false; }
243
+
244
+ if( $echolink ) { $views[$lcas] = "<a href=\"$link\" $curr>$arr[$row] <span class=\"count\"></span></a>"; }
245
+ }
246
+
247
+ /** @todo if $show, then run function search query for the users */
248
+
249
+ return $views;
250
+ }
251
+
252
+
253
+ /**
254
+ * Function to add custom user columns to the user table
255
+ *
256
+ * @since 2.8.2
257
+ *
258
+ * @param array $columns
259
+ * @return array $columns
260
+ */
261
+ function wpmem_add_user_column( $columns )
262
+ {
263
+ global $wpmem_user_columns;
264
+ $wpmem_user_columns = get_option( 'wpmembers_utfields' );
265
+
266
+ if( $wpmem_user_columns ) {
267
+ foreach( $wpmem_user_columns as $key => $val ) {
268
+
269
+ if( $key == 'active' ) {
270
+
271
+ if( WPMEM_MOD_REG == 1 ) {
272
+ $columns[$key] = $val;
273
+ }
274
+
275
+ } else {
276
+ $columns[$key] = $val;
277
+ }
278
+ }
279
+ }
280
+
281
+ return $columns;
282
+ }
283
+
284
+
285
+ /**
286
+ * Function to add the user content to the custom column
287
+ *
288
+ * @since 2.8.2
289
+ *
290
+ * @param $value
291
+ * @param $column_name
292
+ * @param $user_id
293
+ * @return The user value for the custom column
294
+ */
295
+ function wpmem_add_user_column_content( $value, $column_name, $user_id ) {
296
+
297
+ // is the column a WP-Members column?
298
+ global $wpmem_user_columns;
299
+ $is_wpmem = ( is_array( $wpmem_user_columns ) && array_key_exists( $column_name, $wpmem_user_columns ) ) ? true : false;
300
+
301
+ if( $is_wpmem ) {
302
+
303
+ switch( $column_name ) {
304
+
305
+ case 'active':
306
+ if( WPMEM_MOD_REG == 1 ) {
307
+ /**
308
+ * If the column is "active", then return the value or empty.
309
+ * Returning in here keeps us from displaying another value.
310
+ */
311
+ return ( get_user_meta( $user_id , 'active', 'true' ) != 1 ) ? __( 'No' ) : '';
312
+ } else {
313
+ return;
314
+ }
315
+ break;
316
+
317
+ case 'user_url':
318
+ case 'user_registered':
319
+ /**
320
+ * Unlike other fields, website/url is not a meta field
321
+ */
322
+ $user_info = get_userdata( $user_id );
323
+ return $user_info->$column_name;
324
+ break;
325
+
326
+ default:
327
+ return get_user_meta( $user_id, $column_name, true );
328
+ break;
329
+ }
330
+
331
+ }
332
+
333
+ return $value;
334
+ }
335
+
336
+
337
+ /**
338
+ * Activates a user
339
+ *
340
+ * If registration is moderated, sets the activated flag
341
+ * in the usermeta. Flag prevents login when WPMEM_MOD_REG
342
+ * is true (1). Function is fired from bulk user edit or
343
+ * user profile update.
344
+ *
345
+ * @since 2.4
346
+ *
347
+ * @param int $user_id
348
+ * @param bool $chk_pass
349
+ * @uses $wpdb WordPress Database object
350
+ */
351
+ function wpmem_a_activate_user( $user_id, $chk_pass = false )
352
+ {
353
+ // define new_pass
354
+ $new_pass = '';
355
+
356
+ // If passwords are user defined skip this
357
+ if( ! $chk_pass ) {
358
+ // generates a password to send the user
359
+ $new_pass = wp_generate_password();
360
+ $new_hash = wp_hash_password( $new_pass );
361
+
362
+ // update the user with the new password
363
+ global $wpdb;
364
+ $wpdb->update( $wpdb->users, array( 'user_pass' => $new_hash ), array( 'ID' => $user_id ), array( '%s' ), array( '%d' ) );
365
+ }
366
+
367
+ // if subscriptions can expire, set the user's expiration date
368
+ if( WPMEM_USE_EXP == 1 ) { wpmem_set_exp( $user_id ); }
369
+
370
+ // generate and send user approved email to user
371
+ require_once( WPMEM_PATH . 'wp-members-email.php' );
372
+ wpmem_inc_regemail( $user_id, $new_pass, 2 );
373
+
374
+ // set the active flag in usermeta
375
+ update_user_meta( $user_id, 'active', 1 );
376
+
377
+ /**
378
+ * Fires after the user activation process is complete.
379
+ *
380
+ * @since 2.8.2
381
+ *
382
+ * @param int $user_id The user's ID.
383
+ */
384
+ do_action( 'wpmem_user_activated', $user_id );
385
+
386
+ return;
387
+ }
388
+
389
+
390
+ /**
391
+ * Deactivates a user
392
+ *
393
+ * Reverses the active flag from the activation process
394
+ * preventing login when registration is moderated.
395
+ *
396
+ * @since 2.7.1
397
+ *
398
+ * @param int $user_id
399
+ */
400
+ function wpmem_a_deactivate_user( $user_id ) {
401
+ update_user_meta( $user_id, 'active', 0 );
402
+
403
+ /**
404
+ * Fires after the user deactivation process is complete.
405
+ *
406
+ * @since 2.9.9
407
+ *
408
+ * @param int $user_id The user's ID.
409
+ */
410
+ do_action( 'wpmem_user_deactivated', $user_id );
411
+ }
412
+
413
+
414
+ /**
415
+ * Adjusts user query based on custom views
416
+ *
417
+ * @since 2.8.3
418
+ *
419
+ * @param $user_search
420
+ */
421
+ function wpmem_a_pre_user_query( $user_search )
422
+ {
423
+ global $wpdb;
424
+ $show = $_GET['show'];
425
+ switch ( $show ) {
426
+
427
+ case 'notactive':
428
+ case 'notexported':
429
+ $key = ( $show == 'notactive' ) ? 'active' : 'exported';
430
+ $replace_query = "WHERE 1=1 AND {$wpdb->users}.ID NOT IN (
431
+ SELECT {$wpdb->usermeta}.user_id FROM $wpdb->usermeta
432
+ WHERE {$wpdb->usermeta}.meta_key = \"$key\"
433
+ AND {$wpdb->usermeta}.meta_value = '1' )";
434
+ break;
435
+
436
+ case 'trial':
437
+ case 'subscription':
438
+ $replace_query = "WHERE 1=1 AND {$wpdb->users}.ID IN (
439
+ SELECT {$wpdb->usermeta}.user_id FROM $wpdb->usermeta
440
+ WHERE {$wpdb->usermeta}.meta_key = 'exp_type'
441
+ AND {$wpdb->usermeta}.meta_value = \"$show\" )";
442
+ break;
443
+
444
+ case 'pending':
445
+ $replace_query = "WHERE 1=1 AND {$wpdb->users}.ID IN (
446
+ SELECT {$wpdb->usermeta}.user_id FROM $wpdb->usermeta
447
+ WHERE {$wpdb->usermeta}.meta_key = 'exp_type'
448
+ AND {$wpdb->usermeta}.meta_value = \"$show\" )";
449
+ break;
450
+
451
+
452
+ case 'expired':
453
+ $replace_query = "WHERE 1=1 AND {$wpdb->users}.ID IN (
454
+ SELECT {$wpdb->usermeta}.user_id FROM $wpdb->usermeta
455
+ WHERE {$wpdb->usermeta}.meta_key = 'expires'
456
+ AND STR_TO_DATE( {$wpdb->usermeta}.meta_value, '%m/%d/%Y' ) < CURDATE()
457
+ AND {$wpdb->usermeta}.meta_value != '01/01/1970' )";
458
+ break;
459
+ }
460
+
461
+ $user_search->query_where = str_replace( 'WHERE 1=1', $replace_query, $user_search->query_where );
462
+ }
463
+
464
+
465
+ /**
466
+ * Use wpmem_post_register_data to set the user_status field to 2 using wp_update_user.
467
+ * http://codex.wordpress.org/Function_Reference/wp_update_user
468
+ *
469
+ * @uses wpmem_set_user_status
470
+ * @param $fields
471
+ */
472
+ function wpmem_set_new_user_non_active( $fields ) {
473
+ wpmem_set_user_status( $fields['ID'], 2 );
474
+ return;
475
+ }
476
+
477
+
478
+ /**
479
+ * Use wpmem_user_activated to set the user_status field to 0 using wp_update_user.
480
+ *
481
+ * @uses wpmem_set_user_status
482
+ * @param $user_id
483
+ */
484
+ function wpmem_set_activated_user( $user_id ) {
485
+ wpmem_set_user_status( $user_id, 0 );
486
+ return;
487
+ }
488
+
489
+
490
+ /**
491
+ * Use wpmem_user_deactivated to set the user_status field to 2 using wp_update_user.
492
+ *
493
+ * @uses wpmem_set_user_status
494
+ * @param $user_id
495
+ */
496
+ function wpmem_set_deactivated_user( $user_id ) {
497
+ wpmem_set_user_status( $user_id, 2 );
498
+ return;
499
+ }
500
+
501
+
502
+ /**
503
+ * Updates the user_status value in the wp_users table
504
+ *
505
+ * @param $user_id
506
+ * @param $status
507
+ */
508
+ function wpmem_set_user_status( $user_id, $status ) {
509
+ global $wpdb;
510
+ $wpdb->update( $wpdb->users, array( 'user_status' => $status ), array( 'ID' => $user_id ) );
511
+ return;
512
+ }
513
+
514
+ /** End of File **/
css/admin.css ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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
+ .wpmem_tbl_drag {
19
+ background:#fffbcc;
20
+ font-weight: bold;
21
+ border: 1px solid #990000;
22
+ }
23
+
24
+ .column-wpmem_block {
25
+ width: 80px;
26
+ }
27
+
28
+ #addfieldform li,
29
+ #updatesettings li {
30
+ padding: 5px 0;
31
+ }
32
+
33
+ #addfieldform label,
34
+ #updatesettings label {
35
+ float:left;
36
+ width: 166px;
37
+ }
38
+
39
+ #addfieldform .add-field-indent {
40
+ margin-left: 165px;
41
+ }
42
+
43
+ #fields_postbox,
44
+ #add_field_postbox{
45
+ min-width:950px;
46
+ }
css/generic-no-float.css ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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: #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, #wpmem_login {
82
+ color: rgb(43, 43, 43);
83
+ font-family: Arial,sans-serif;
84
+ font-size: 16px;
85
+ font-weight: 400;
86
+ line-height: 1.5;
87
+ }
88
+
89
+ #wpmem_reg input[type="text"],
90
+ #wpmem_reg textarea,
91
+ #wpmem_login input[type="text"],
92
+ #wpmem_login input[type="password"] {
93
+ border: 1px solid rgba(0, 0, 0, 0.1);
94
+ border-radius: 2px;
95
+ color: rgb(43, 43, 43);
96
+ padding: 8px 10px 8px;
97
+ background: none repeat scroll 0% 0% #fff;
98
+ }
99
+
100
+ #wpmem_reg input,
101
+ #wpmem_reg button,
102
+ #wpmem_reg select,
103
+ #wpmem_reg textarea,
104
+ #wpmem_login input,
105
+ #wpmem_login button {
106
+ -moz-box-sizing: border-box;
107
+ font-size: 100%;
108
+ margin: 0px;
109
+ max-width: 100%;
110
+ vertical-align: baseline;
111
+ }
112
+
113
+ #wpmem_reg input:focus,
114
+ #wpmem_reg textarea:focus,
115
+ #wpmem_login input:focus {
116
+ border: 1px solid rgba(0, 0, 0, 0.3);
117
+ outline: 0px none;
118
+ }
119
+
120
+ #wpmem_reg select {
121
+ width:100%;
122
+ padding: 8px 10px 7px;
123
+ border: 1px solid rgba(0, 0, 0, 0.1);
124
+ border-radius: 2px;
125
+ color: rgb(43, 43, 43);
126
+ margin: 5px 0;
127
+ }
128
+
129
+ #wpmem_reg fieldset, #wpmem_login fieldset {
130
+ border: none;
131
+ padding: 0;
132
+ margin: 40px 0;
133
+ }
134
+ #wpmem_reg legend, #wpmem_login legend {
135
+ font-size: 24px;
136
+ line-height: 1;
137
+ font-weight: 700;
138
+ margin-bottom: 10px;
139
+ }
140
+ #wpmem_reg .form, #wpmem_login .form {
141
+ margin:0;
142
+ padding:0;
143
+ }
144
+ #wpmem_reg .clear, #wpmem_login .clear {
145
+ clear:both;
146
+ }
147
+ #wpmem_reg .holder, #wpmem_login .holder {
148
+ background-color:#fff;
149
+ }
150
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
151
+ #wpmem_reg .div_select, #wpmem_login .div_text,
152
+ #wpmem_reg .div_checkbox {
153
+ width:74%;
154
+ margin:0 0 14px 0;
155
+ }
156
+ #wpmem_login input[type="checkbox"] {
157
+ margin: 12px 2px;
158
+ }
159
+ #wpmem_reg .div_textarea textarea,
160
+ #wpmem_reg .textbox, #wpmem_login .textbox,
161
+ #wpmem_reg .username, #wpmem_login .username,
162
+ #wpmem_reg .password, #wpmem_login .password {
163
+ width:100%;
164
+ }
165
+
166
+
167
+ #wpmem_reg textarea {
168
+ height:185px;
169
+ }
170
+ #wpmem_reg .req {
171
+ color: #bd3500;
172
+ font-size: 22px;
173
+ line-height: 50%;
174
+ }
175
+
176
+ #wpmem_reg .req-text {
177
+ margin: 20px 0px 0px 5px;
178
+ }
179
+
180
+ #wpmem_reg .noinput {
181
+ width:93%;
182
+ padding: 8px 10px 7px;
183
+ border: 1px solid rgba(0, 0, 0, 0.1);
184
+ border-radius: 2px;
185
+ color: rgb(43, 43, 43);
186
+ margin: 5px 0;
187
+ }
188
+
189
+ #wpmem_reg .captcha {
190
+ width: 74%;
191
+ margin: 5px 0px;
192
+ }
193
+ #wpmem_reg .captcha table{
194
+ line-height: 0px;
195
+ }
196
+ #wpmem_login .link-text {
197
+ width: 74%;
198
+ }
199
+
200
+ #tos {
201
+ margin-right:5px;
202
+ }
203
+
204
+
205
+ /* Buttons */
206
+
207
+ #wpmem_reg .button_div, #wpmem_login .button_div {
208
+ width:74%;
209
+ height:35px;
210
+ padding: 6px 0;
211
+ text-align: right;
212
+ }
213
+
214
+
215
+ /** for smaller screens */
216
+
217
+ @media screen and (max-width: 720px) {
218
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
219
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
220
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
221
+ #wpmem_reg .div_select, #wpmem_login .div_text,
222
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
223
+ float: none;
224
+ }
225
+
226
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
227
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
228
+ #wpmem_login label {
229
+ width: 90%;
230
+ padding: 5px 0 0 0;
231
+ }
232
+ #wpmem_reg label.textarea {
233
+ height: 26px;
234
+ }
235
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
236
+ #wpmem_reg .div_select, #wpmem_login .div_text,
237
+ #wpmem_reg .div_checkbox {
238
+ width: 98%;
239
+ }
240
+ #wpmem_msg, .wpmem_msg {
241
+ width: 100%;
242
+ }
243
+
244
+ #wpmem_reg .button_div,
245
+ #wpmem_login .button_div,
246
+ #wpmem_login .link-text {
247
+ width:98%;
248
+ }
249
+ }
css/generic-rigid.css ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 using more rigid element properties.
20
+ There are quite a few examples in here of what you can do to style the forms.
21
+ You can build off of this or start from scratch and set your own
22
+ custom css for the plugin (set the location in the admin panel).
23
+
24
+ See http://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 http://rocketgeek.com/tips-and-tricks/load-a-custom-stylesheet/
29
+ */
30
+
31
+
32
+ /* Error and Dialog Messages */
33
+
34
+ #wpmem_msg, .wpmem_msg {
35
+ width: 100%;
36
+ background: #F9F9F9;
37
+ border:1px solid lightGrey;
38
+ border-radius: 3px;
39
+ padding: 20px 0 0 0;
40
+ }
41
+
42
+
43
+ /* Sidebar Login Widget */
44
+
45
+ #wp-members {
46
+ width: 100%;
47
+ }
48
+ #wp-members fieldset {
49
+ border:none;
50
+ padding:0px
51
+ }
52
+ #wp-members input {
53
+ font-family: inherit;
54
+ }
55
+ #wp-members input[type="text"],
56
+ #wp-members input[type="password"]{
57
+ margin: 0 0 4px 0;
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
+ /**
78
+ Fonts
79
+ */
80
+
81
+ #wpmem_reg label, #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, #wpmem_login legend {
89
+ font-size: 24px;
90
+ font-weight: 700;
91
+ }
92
+
93
+ #wpmem_reg input, #wpmem_reg_ textarea,
94
+ #wpmem_reg select, #wpmem_login input {
95
+ font-family: Arial,sans-serif;
96
+ font-size: 100%;
97
+ font-size: 14px;
98
+ font-weight: 400;
99
+ }
100
+
101
+ #wpmem_reg .req {
102
+ font-size: 22px;
103
+ color: #bd3500;
104
+ }
105
+
106
+ /**
107
+ Form Design
108
+ */
109
+
110
+ #wpmem_reg fieldset, #wpmem_login fieldset {
111
+ border: none;
112
+ }
113
+
114
+ #wpmem_reg input, #wpmem_reg textarea,
115
+ #wpmem_reg select, #wpmem_login input {
116
+ border: 1px solid rgba(0, 0, 0, 0.3);
117
+ outline: 0px none;
118
+ border-radius: 2px;
119
+ color: rgb(43, 43, 43);
120
+ padding: 8px 10px;
121
+ -moz-box-sizing: border-box;
122
+ margin: 0px;
123
+ max-width: 315px;
124
+ vertical-align: baseline;
125
+ }
126
+
127
+
128
+ #wpmem_reg .dropdown {
129
+ width:311px;
130
+ }
131
+ #wpmem_reg .dropdown:focus {
132
+ border: 1px solid rgba(0, 0, 0, 0.3);
133
+ outline: 0;
134
+ }
135
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
136
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
137
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
138
+ background-color:inherit;
139
+ }
140
+
141
+ /**
142
+ Size and Spacing
143
+ */
144
+
145
+ #wpmem_reg fieldset, #wpmem_login fieldset {
146
+ padding: 0;
147
+ margin: 40px 0;
148
+ }
149
+ #wpmem_reg legend, #wpmem_login legend {
150
+ line-height: 1;
151
+ margin-bottom: 10px;
152
+ }
153
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
154
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
155
+ #wpmem_login label {
156
+ height: 30px;
157
+ width:32%;
158
+ float:left;
159
+ display: block;
160
+ }
161
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
162
+ #wpmem_reg label.select, #wpmem_login label{
163
+ padding: 14px 0 4px 0;
164
+ }
165
+ #wpmem_reg label.textarea {
166
+ height: 176px;
167
+ padding: 16px 0 2px;
168
+ }
169
+ #wpmem_reg input[type="checkbox"]{
170
+ margin-top:18px;
171
+ }
172
+ #wpmem_reg .form, #wpmem_login .form {
173
+ margin:0;
174
+ padding:0;
175
+ }
176
+ #wpmem_reg .clear, #wpmem_login .clear {
177
+ clear:both;
178
+ }
179
+ #wpmem_reg .holder, #wpmem_login .holder {
180
+ background-color:#fff;
181
+ }
182
+ #wpmem_reg .div_text, #wpmem_login .div_text,
183
+ #wpmem_reg .div_checkbox, #wpmem_reg .div_select,
184
+ #wpmem_reg .div_textarea {
185
+ width:311px;
186
+ float:right;
187
+ }
188
+ #wpmem_reg .div_text, #wpmem_login .div_text {
189
+ padding: 8px 0 6px;
190
+ }
191
+ #wpmem_reg .div_checkbox {
192
+ height: 48px;
193
+ }
194
+ #wpmem_reg .div_select {
195
+ padding: 2px 0 1px;
196
+ }
197
+ #wpmem_reg .div_textarea {
198
+ padding: 5px 0 4px 0;
199
+ }
200
+ #wpmem_login input[type="checkbox"] {
201
+ margin: 12px 2px;
202
+ }
203
+ #wpmem_reg .textbox, #wpmem_login .textbox,
204
+ #wpmem_reg .username, #wpmem_login .username,
205
+ #wpmem_reg .password, #wpmem_login .password {
206
+ display: block;
207
+ width:100%;
208
+ height: 34px;
209
+ }
210
+ #wpmem_reg .div_textarea textarea {
211
+ display: block;
212
+ width:100%;
213
+ }
214
+ #wpmem_reg .dropdown {
215
+ height: 36px;
216
+ padding: 8px 10px;
217
+ margin: 5px 0 4px 0;
218
+ }
219
+ #wpmem_reg textarea {
220
+ height:185px;
221
+ }
222
+ #wpmem_reg .req {
223
+ line-height: 50%;
224
+ }
225
+
226
+ #wpmem_reg .req-text {
227
+ float:left;
228
+ margin: 20px 0px 0px 5px;
229
+ }
230
+
231
+ #wpmem_reg .noinput {
232
+ margin: 6px 0px 7px 10px;
233
+ }
234
+
235
+ #wpmem_reg .captcha {
236
+ margin: 5px -3px 5px 0;
237
+ }
238
+ #wpmem_reg .captcha table{
239
+ line-height: 0px;
240
+ }
241
+
242
+ #tos {
243
+ margin-right:5px;
244
+ }
245
+
246
+ #wpmem_login .link-text {
247
+ width: 100%;
248
+ float:right;
249
+ }
250
+
251
+
252
+ /* Buttons */
253
+
254
+ #wpmem_reg .button_div, #wpmem_login .button_div {
255
+ width:100%;
256
+ float:right;
257
+ text-align:right;
258
+ height:35px;
259
+ padding: 6px 0;
260
+ }
261
+
262
+
263
+ /** for smaller screens */
264
+
265
+ @media screen and (max-width: 720px) {
266
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
267
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
268
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
269
+ #wpmem_reg .div_select, #wpmem_login .div_text,
270
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
271
+ float: none;
272
+ }
273
+
274
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
275
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
276
+ #wpmem_login label {
277
+ width: 90%;
278
+ padding: 5px 0 0 0;
279
+ }
280
+ #wpmem_reg label.textarea {
281
+ height: 26px;
282
+ }
283
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
284
+ #wpmem_reg .div_select, #wpmem_login .div_text,
285
+ #wpmem_reg .div_checkbox {
286
+ width: 98%;
287
+ }
288
+ }
css/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // there is nothing to see here! ?>
css/wp-login.css ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body.login select.dropdown,
2
+ body.login textarea {
3
+ color:#555;
4
+ font-weight:200;
5
+ font-size:24px;
6
+ line-height:1;
7
+ width:100%;
8
+ padding:3px;
9
+ margin-top:2px;
10
+ margin-right:6px;
11
+ margin-bottom:16px;
12
+ border:1px solid #e5e5e5;
13
+ background:#fbfbfb;
14
+ outline:0;
15
+ -webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,.2);
16
+ box-shadow:inset 1px 1px 2px rgba(200,200,200,.2)
17
+ }
18
+
19
+ p.wpmem-checkbox {
20
+ padding: 10px 0;
21
+ }
22
+
23
+ label[for=tos] {
24
+ font-size: 12px;
25
+ }
26
+
27
+ .req {
28
+ color: #f00;
29
+ }
css/wp-members-2011.css ADDED
@@ -0,0 +1,311 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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
+
158
+ #wpmem_reg .form, #wpmem_login .form {
159
+ margin:0;
160
+ padding:0;
161
+ }
162
+ #wpmem_reg .clear, #wpmem_login .clear {
163
+ clear:both;
164
+ }
165
+ #wpmem_reg .holder, #wpmem_login .holder {
166
+ background-color:#fff;
167
+ }
168
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
169
+ #wpmem_reg .div_textarea, #wpmem_reg .div_select,
170
+ #wpmem_login .div_text {
171
+ width:360px;
172
+ float:right;
173
+ margin-top:3px;
174
+ padding-top:5px;
175
+ padding-bottom:3px;
176
+ padding-left:5px;
177
+ }
178
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
179
+ #wpmem_reg .div_select, #wpmem_login .div_text {
180
+ height:35px;
181
+ margin-bottom: 15px;
182
+ }
183
+ #wpmem_login input[type="password"],
184
+ #wpmem_login input[type="text"],
185
+ #wpmem_reg input[type="text"] {
186
+ height: 26px;
187
+ }
188
+ #wpmem_reg input[type=checkbox]{
189
+ outline: 4px solid #eee;
190
+ border: none;
191
+ background: none;
192
+ margin:20px 0 0 5px;
193
+ }
194
+ #wpmem_reg .dropdown,
195
+ #wpmem_reg .textbox, #wpmem_login .textbox,
196
+ #wpmem_reg .username, #wpmem_login .username,
197
+ #wpmem_reg .password, #wpmem_login .password {
198
+ height: 24px;
199
+ }
200
+ #wpmem_reg .div_textarea textarea,
201
+ #wpmem_reg .textbox, #wpmem_login .textbox,
202
+ #wpmem_reg .username, #wpmem_login .username,
203
+ #wpmem_reg .password, #wpmem_login .password {
204
+ display: block;
205
+ width: 75%;
206
+ background-color:white;
207
+ border: 4px solid #eee;
208
+ border-radius: 5px;
209
+ width:340px;
210
+ -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
211
+ box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
212
+ color: #888;
213
+ padding: 10px;
214
+ font: 15px; "Helvetica Neue", Arial, sans serif;
215
+ font-weight: 300;
216
+ line-height: 1.625;
217
+ }
218
+ #wpmem_reg .dropdown {
219
+ height: 53px;
220
+ background-color:white;
221
+ border: 4px solid #eee;
222
+ border-radius: 5px;
223
+ width:340px;
224
+ -webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
225
+ box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
226
+ color: #888;
227
+ padding: 10px;
228
+ font: 15px "Helvetica Neue", Arial, sans serif;
229
+ font-weight: 300;
230
+ line-height: 1.625;
231
+ width: 368px;
232
+ }
233
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
234
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
235
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
236
+ background-color:#F0FFE6;
237
+ }
238
+
239
+ #wpmem_reg .textarea {
240
+ width:346px;
241
+ height:190px;
242
+ }
243
+
244
+ #wpmem_reg .req {
245
+ color: #bd3500;
246
+ font-size: 22px;
247
+ font-weight: bold;
248
+ line-height: 50%;
249
+ }
250
+
251
+ #wpmem_reg .req-text {
252
+ float:left;
253
+ margin: 15px 0px 0px 8px;
254
+ }
255
+
256
+ #wpmem_reg .captcha {
257
+ margin: 5px -10px 5px 0;
258
+ }
259
+ #wpmem_reg .captcha table{
260
+ line-height: 0px;
261
+ }
262
+
263
+ #wpmem_reg .noinput {
264
+ margin: 0px;
265
+ padding: 5px 0 5px 0;
266
+ color:#555;
267
+ width:100%;
268
+ background-color:#eee;
269
+ float:left;
270
+ font-family: "Helvetica Neue",Arial,Helvetica,"Nimbus Sans L",sans-serif;
271
+ font-size: 115%;
272
+ line-height: 2.2;
273
+ height: 35px;
274
+ display: block;
275
+ border: 4px solid #eee;
276
+ border-radius: 5px;
277
+ }
278
+
279
+
280
+ /* Buttons */
281
+
282
+ #wpmem_reg .button_div, #wpmem_login .button_div {
283
+ width:360px;
284
+ float:right;
285
+ text-align:right;
286
+ height:35px;
287
+ margin-top:3px;
288
+ padding:5px;
289
+ white-space:nowrap;
290
+ }
291
+
292
+ #wpmem_reg .buttons, #wpmem_login .buttons {
293
+ background: #222;
294
+ border: none;
295
+ -moz-border-radius: 3px;
296
+ border-radius: 3px;
297
+ -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
298
+ -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
299
+ box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
300
+ color: #eee;
301
+ cursor: pointer;
302
+ font-size: 15px;
303
+ padding: 5px 42px 5px 22px;
304
+ position: relative;
305
+ left: 15px;
306
+ text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
307
+ }
308
+ #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
309
+ background: #1982d1;
310
+ color: #bfddf3;
311
+ }
css/wp-members-2012.css ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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_reg .form, #wpmem_login .form {
145
+ margin:0;
146
+ padding:0;
147
+ }
148
+ #wpmem_reg .clear, #wpmem_login .clear {
149
+ clear:both;
150
+ }
151
+ #wpmem_reg .holder, #wpmem_login .holder {
152
+ background-color:#fff;
153
+ }
154
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
155
+ #wpmem_reg .div_select, #wpmem_login .div_text,
156
+ #wpmem_reg .div_checkbox {
157
+ width:68%;
158
+ float:right;
159
+ padding: 6px 0;
160
+ }
161
+ #wpmem_reg .div_checkbox {
162
+ padding: 17px 0;
163
+ }
164
+ #wpmem_reg .dropdown,
165
+ #wpmem_reg .textbox, #wpmem_login .textbox,
166
+ #wpmem_reg .username, #wpmem_login .username,
167
+ #wpmem_reg .password, #wpmem_login .password {
168
+ height: 24px;
169
+ }
170
+ #wpmem_reg .div_textarea textarea,
171
+ #wpmem_reg .textbox, #wpmem_login .textbox,
172
+ #wpmem_reg .username, #wpmem_login .username,
173
+ #wpmem_reg .password, #wpmem_login .password {
174
+ display: block;
175
+ width:95%;
176
+ padding: 10px;
177
+ font: inherit;
178
+ }
179
+ #wpmem_reg .dropdown {
180
+ height: 50px;
181
+ border: 1px solid #ccc;
182
+ border-radius: 3px;
183
+ color: inherit;
184
+ padding: 10px;
185
+ font: inherit;
186
+ width:100%;
187
+ }
188
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
189
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
190
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
191
+ background-color:inherit;
192
+ }
193
+ #wpmem_reg textarea {
194
+ height:185px;
195
+ }
196
+ #wpmem_reg .req {
197
+ color: #bd3500;
198
+ font-size: 22px;
199
+ line-height: 50%;
200
+ }
201
+
202
+ #wpmem_reg .req-text {
203
+ float:left;
204
+ margin: 20px 0px 0px 5px;
205
+ }
206
+
207
+ #wpmem_reg .noinput {
208
+ margin: 10px 0 12px 10px;
209
+ }
210
+
211
+ #wpmem_reg .captcha {
212
+ margin: 5px 0px;
213
+ }
214
+ #wpmem_reg .captcha table{
215
+ line-height: 0px;
216
+ }
217
+
218
+
219
+ /* Buttons */
220
+
221
+ #wpmem_reg .button_div, #wpmem_login .button_div {
222
+ width:100%;
223
+ float:right;
224
+ text-align:right;
225
+ height:35px;
226
+ padding: 6px 0;
227
+ }
228
+
229
+ #wpmem_reg .buttons, #wpmem_login .buttons {
230
+ padding: 6px 10px;
231
+ padding: 0.428571429rem 0.714285714rem;
232
+ font-size: 11px;
233
+ font-size: 0.785714286rem;
234
+ line-height: 1.428571429;
235
+ font-weight: normal;
236
+ color: #7c7c7c;
237
+ background-color: #e6e6e6;
238
+ background-repeat: repeat-x;
239
+ background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
240
+ background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
241
+ background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
242
+ background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
243
+ background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
244
+ border: 1px solid #d2d2d2;
245
+ border-radius: 3px;
246
+ box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
247
+ }
248
+ #wpmem_reg .buttons:hover, #wpmem_login .buttons:hover {
249
+ color: #5e5e5e;
250
+ background-color: #ebebeb;
251
+ background-repeat: repeat-x;
252
+ background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
253
+ background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
254
+ background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
255
+ background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
256
+ background-image: linear-gradient(top, #f9f9f9, #ebebeb);
257
+ }
258
+ #wpmem_reg .buttons:active, #wpmem_login .buttons:active {
259
+ color: #777;
260
+ background-color: #e1e1e1;
261
+ background-repeat: repeat-x;
262
+ background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
263
+ background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
264
+ background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
265
+ background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
266
+ background-image: linear-gradient(top, #ebebeb, #e1e1e1);
267
+ box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
268
+ border: none;
269
+ }
270
+
271
+
272
+ /** for smaller screens */
273
+
274
+ @media screen and (max-width: 720px) {
275
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
276
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
277
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
278
+ #wpmem_reg .div_select, #wpmem_login .div_text,
279
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
280
+ float: none;
281
+ }
282
+
283
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
284
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
285
+ #wpmem_login label {
286
+ width: 90%;
287
+ padding: 5px 0 0 0;
288
+ }
289
+ #wpmem_reg label.textarea {
290
+ height: 26px;
291
+ }
292
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
293
+ #wpmem_reg .div_select, #wpmem_login .div_text,
294
+ #wpmem_reg .div_checkbox {
295
+ width: 98%;
296
+ }
297
+ }
css/wp-members-2013.css ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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_reg .form, #wpmem_login .form {
100
+ margin:0;
101
+ padding:0;
102
+ }
103
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
104
+ #wpmem_reg .div_select, #wpmem_login .div_text,
105
+ #wpmem_reg .div_checkbox {
106
+ width: 68%;
107
+ float:right;
108
+ }
109
+ #wpmem_login .div_text,
110
+ #wpmem_reg .div_text,
111
+ #wpmem_reg .div_checkbox,
112
+ #wpmem_reg .div_select{
113
+ height: 40px;
114
+ }
115
+ #wpmem_login .div_text,
116
+ #wpmem_reg .div_text,
117
+ #wpmem_reg .div_textarea,
118
+ #wpmem_reg .div_checkbox,
119
+ #wpmem_reg .div_select{
120
+ margin: 2px 0;
121
+ padding: 0px;
122
+ }
123
+ #wpmem_reg input[type=checkbox]{
124
+ outline: 2px solid rgb(195, 192, 171);
125
+ border: none;
126
+ background: none;
127
+ margin:10px 0 0 2px;
128
+ }
129
+ #wpmem_reg .div_textarea textarea,
130
+ #wpmem_reg .textbox, #wpmem_login .textbox,
131
+ #wpmem_reg .username, #wpmem_login .username,
132
+ #wpmem_reg .password, #wpmem_login .password,
133
+ #wpmem_reg .dropdown {
134
+ width: 100%;
135
+ }
136
+ #wpmem_reg .dropdown {
137
+ height: 36px;
138
+ border: 2px solid rgb(195, 192, 171);
139
+ }
140
+ #wpmem_reg .textarea {
141
+ width:100%;
142
+ height:190px;
143
+ }
144
+ #wpmem_reg .button_div, #wpmem_login .button_div {
145
+ width:100%;
146
+ float:right;
147
+ text-align:right;
148
+ height:65px;
149
+ margin-top:3px;
150
+ padding-top:10px;
151
+ white-space:nowrap;
152
+ }
153
+ #wpmem_reg .req {
154
+ color: #bd3500;
155
+ font-size: 22px;
156
+ line-height: 50%;
157
+ }
158
+ #wpmem_reg .req-text {
159
+ float:left;
160
+ margin: 20px 0px 0px 5px;
161
+ }
162
+ #wpmem_reg .clear, #wpmem_login .clear {
163
+ clear:both;
164
+ }
165
+ #wpmem_reg .holder, #wpmem_login .holder {
166
+ background-color:#fff;
167
+ }
168
+ #wpmem_reg .noinput {
169
+ margin: 4px 0px 12px 6px;
170
+ }
171
+ #wpmem_reg .captcha {
172
+ margin: 5px 0px;
173
+ }
174
+ #wpmem_reg .captcha table{
175
+ line-height: 0px;
176
+ }
177
+
178
+
179
+ /** for smaller screens */
180
+
181
+ @media screen and (max-width: 720px) {
182
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
183
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
184
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
185
+ #wpmem_reg .div_select, #wpmem_login .div_text,
186
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
187
+ float: none;
188
+ }
189
+
190
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
191
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
192
+ #wpmem_login label {
193
+ width: 90%;
194
+ padding: 5px 0 0 0;
195
+ }
196
+ #wpmem_reg label.textarea {
197
+ height: 26px;
198
+ }
199
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
200
+ #wpmem_reg .div_select, #wpmem_login .div_text,
201
+ #wpmem_reg .div_checkbox {
202
+ width: 98%;
203
+ }
204
+ }
css/wp-members-2014-no-float.css ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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
+ }
63
+ #wp-members input[type="submit"] {
64
+ padding: 5px 6px 4px;
65
+ margin: 0 4px 0 0;
66
+ }
67
+ #wp-members .button_div {
68
+ margin-top:4px;
69
+ }
70
+ #wp-members .err {
71
+ width:100%;
72
+ padding: 5px;
73
+ font-family: inherit;
74
+ border: 1px solid #ccc;
75
+ border-radius: 3px;
76
+ }
77
+
78
+
79
+ /* Login Form and Registration Form */
80
+
81
+ #wpmem_reg fieldset, #wpmem_login fieldset {
82
+ border: none;
83
+ padding: 0;
84
+ margin: 40px 0;
85
+ }
86
+ #wpmem_reg legend, #wpmem_login legend {
87
+ font-size: 24px;
88
+ line-height: 1;
89
+ font-weight: 700;
90
+ margin-bottom: 10px;
91
+ }
92
+ #wpmem_reg .form, #wpmem_login .form {
93
+ margin:0;
94
+ padding:0;
95
+ }
96
+ #wpmem_reg .clear, #wpmem_login .clear {
97
+ clear:both;
98
+ }
99
+ #wpmem_reg .holder, #wpmem_login .holder {
100
+ background-color:#fff;
101
+ }
102
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
103
+ #wpmem_reg .div_select, #wpmem_login .div_text,
104
+ #wpmem_reg .div_checkbox {
105
+ width:74%;
106
+ margin:0 0 14px 0;
107
+ }
108
+ #wpmem_login input[type="checkbox"] {
109
+ margin: 12px 2px;
110
+ }
111
+ #wpmem_reg .div_textarea textarea,
112
+ #wpmem_reg .textbox, #wpmem_login .textbox,
113
+ #wpmem_reg .username, #wpmem_login .username,
114
+ #wpmem_reg .password, #wpmem_login .password {
115
+ width:100%;
116
+ }
117
+ #wpmem_reg .dropdown {
118
+ width:100%;
119
+ padding: 8px 10px 7px;
120
+ border: 1px solid rgba(0, 0, 0, 0.1);
121
+ border-radius: 2px;
122
+ color: rgb(43, 43, 43);
123
+ margin: 5px 0;
124
+ }
125
+ #wpmem_reg .dropdown:focus {
126
+ border: 1px solid rgba(0, 0, 0, 0.3);
127
+ outline: 0;
128
+ }
129
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
130
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
131
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
132
+ background-color:inherit;
133
+ }
134
+ #wpmem_reg textarea {
135
+ height:185px;
136
+ }
137
+ #wpmem_reg .req {
138
+ color: #bd3500;
139
+ font-size: 22px;
140
+ line-height: 50%;
141
+ }
142
+
143
+ #wpmem_reg .req-text {
144
+ margin: 20px 0px 0px 5px;
145
+ }
146
+
147
+ #wpmem_reg .noinput {
148
+ width:93%;
149
+ padding: 8px 10px 7px;
150
+ border: 1px solid rgba(0, 0, 0, 0.1);
151
+ border-radius: 2px;
152
+ color: rgb(43, 43, 43);
153
+ margin: 5px 0;
154
+ }
155
+
156
+ #wpmem_reg .captcha {
157
+ width: 74%;
158
+ margin: 5px 0px;
159
+ }
160
+ #wpmem_reg .captcha table{
161
+ line-height: 0px;
162
+ }
163
+ #wpmem_login .link-text {
164
+ width: 74%;
165
+ }
166
+
167
+ #tos {
168
+ margin-right:5px;
169
+ }
170
+
171
+
172
+ /* Buttons */
173
+
174
+ #wpmem_reg .button_div, #wpmem_login .button_div {
175
+ width:74%;
176
+ height:35px;
177
+ padding: 6px 0;
178
+ text-align: right;
179
+ }
180
+
181
+
182
+ /** for smaller screens */
183
+
184
+ @media screen and (max-width: 720px) {
185
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
186
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
187
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
188
+ #wpmem_reg .div_select, #wpmem_login .div_text,
189
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
190
+ float: none;
191
+ }
192
+
193
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
194
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
195
+ #wpmem_login label {
196
+ width: 90%;
197
+ padding: 5px 0 0 0;
198
+ }
199
+ #wpmem_reg label.textarea {
200
+ height: 26px;
201
+ }
202
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
203
+ #wpmem_reg .div_select, #wpmem_login .div_text,
204
+ #wpmem_reg .div_checkbox {
205
+ width: 98%;
206
+ }
207
+ #wpmem_msg, .wpmem_msg {
208
+ width: 100%;
209
+ }
210
+ }
css/wp-members-2014.css ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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
+ #wpmem_reg, #wpmem_login {
77
+
78
+ }
79
+ #wpmem_reg fieldset, #wpmem_login fieldset {
80
+ border: none;
81
+ padding: 0;
82
+ margin: 40px 0;
83
+ }
84
+ #wpmem_reg legend, #wpmem_login legend {
85
+ font-size: 24px;
86
+ line-height: 1;
87
+ font-weight: 700;
88
+ margin-bottom: 10px;
89
+ }
90
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
91
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
92
+ #wpmem_login label {
93
+ height: 30px;
94
+ width:32%;
95
+ float:left;
96
+ display: block;
97
+ }
98
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
99
+ #wpmem_reg label.select, #wpmem_login label{
100
+ padding: 13px 0px 5px;
101
+ }
102
+ #wpmem_reg label.textarea {
103
+ height: 176px;
104
+ padding: 9px 0;
105
+ }
106
+ #wpmem_reg .form, #wpmem_login .form {
107
+ margin:0;
108
+ padding:0;
109
+ }
110
+ #wpmem_reg .clear, #wpmem_login .clear {
111
+ clear:both;
112
+ }
113
+ #wpmem_reg .holder, #wpmem_login .holder {
114
+ background-color:#fff;
115
+ }
116
+ #wpmem_reg .div_text, #wpmem_login .div_text,
117
+ #wpmem_reg .div_checkbox, #wpmem_reg .div_select {
118
+ width:66%;
119
+ float:right;
120
+ height: 48px;
121
+ }
122
+ #wpmem_reg .div_textarea {
123
+ width:66%;
124
+ float:right;
125
+ padding: 5px 0 4px 0;
126
+ }
127
+ #wpmem_login input[type="checkbox"] {
128
+ margin: 12px 2px;
129
+ }
130
+ #wpmem_reg input[type="checkbox"] {
131
+ margin: 20px 0 0 0;
132
+ }
133
+ #wpmem_reg .dropdown,
134
+ #wpmem_reg .textbox, #wpmem_login .textbox,
135
+ #wpmem_reg .username, #wpmem_login .username,
136
+ #wpmem_reg .password, #wpmem_login .password {
137
+ margin: 6px 0 0 0;
138
+ }
139
+ #wpmem_reg .div_textarea textarea,
140
+ #wpmem_reg .textbox, #wpmem_login .textbox,
141
+ #wpmem_reg .username, #wpmem_login .username,
142
+ #wpmem_reg .password, #wpmem_login .password {
143
+ display: block;
144
+ width:100%;
145
+ }
146
+ #wpmem_reg .dropdown {
147
+ width:100%;
148
+ padding: 8px 10px 7px;
149
+ border: 1px solid rgba(0, 0, 0, 0.1);
150
+ border-radius: 2px;
151
+ color: rgb(43, 43, 43);
152
+ margin: 5px 0 4px 0;
153
+ }
154
+ #wpmem_reg .dropdown:focus {
155
+ border: 1px solid rgba(0, 0, 0, 0.3);
156
+ outline: 0;
157
+ }
158
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
159
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
160
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
161
+ background-color:inherit;
162
+ }
163
+ #wpmem_reg textarea {
164
+ height:185px;
165
+ }
166
+ #wpmem_reg .req {
167
+ color: #bd3500;
168
+ font-size: 22px;
169
+ line-height: 50%;
170
+ }
171
+
172
+ #wpmem_reg .req-text {
173
+ float:left;
174
+ margin: 20px 0px 0px 5px;
175
+ }
176
+
177
+ #wpmem_reg .noinput {
178
+ margin:7px 0px 6px 10px;
179
+ }
180
+
181
+ #wpmem_reg .captcha {
182
+ margin: 5px 0px;
183
+ }
184
+ #wpmem_reg .captcha table{
185
+ line-height: 0px;
186
+ }
187
+
188
+ #tos {
189
+ margin-right:5px;
190
+ }
191
+
192
+ #wpmem_login .link-text {
193
+ float:right;
194
+ width:100%;
195
+ }
196
+
197
+
198
+ /* Buttons */
199
+
200
+ #wpmem_reg .button_div, #wpmem_login .button_div {
201
+ width:100%;
202
+ float:right;
203
+ text-align:right;
204
+ height:35px;
205
+ padding: 6px 0;
206
+ }
207
+
208
+
209
+ /** for smaller screens */
210
+
211
+ @media screen and (max-width: 720px) {
212
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
213
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
214
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
215
+ #wpmem_reg .div_select, #wpmem_login .div_text,
216
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
217
+ float: none;
218
+ }
219
+
220
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
221
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
222
+ #wpmem_login label {
223
+ width: 90%;
224
+ padding: 5px 0 0 0;
225
+ }
226
+ #wpmem_reg label.textarea {
227
+ height: 26px;
228
+ }
229
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
230
+ #wpmem_reg .div_select, #wpmem_login .div_text,
231
+ #wpmem_reg .div_checkbox {
232
+ width: 98%;
233
+ }
234
+ }
css/wp-members-2015-no-float.css ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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
+ width: 74%;
48
+ margin: 0;
49
+ padding: 28px 26px 4px;
50
+ }
51
+
52
+
53
+ /* Sidebar Login Widget */
54
+
55
+ #wp-members {
56
+ width: 100%;
57
+ }
58
+ #wp-members fieldset {
59
+ border:none;
60
+ padding:0px
61
+ }
62
+ #wp-members input {
63
+ font-family: inherit;
64
+ }
65
+ #wp-members input[type="text"],
66
+ #wp-members input[type="password"]{
67
+ margin: 0 0 4px 0;
68
+ }
69
+ #wp-members input[type="submit"] {
70
+ padding: 5px 6px 4px;
71
+ margin: 0 4px 0 0;
72
+ }
73
+ #wp-members .button_div {
74
+ margin-top:4px;
75
+ }
76
+ #wp-members .err {
77
+ width:100%;
78
+ padding: 5px;
79
+ font-family: inherit;
80
+ background: #F7F7F7;
81
+ border: 1px solid rgba(51, 51, 51, 0.3);
82
+ }
83
+
84
+
85
+ /* Login Form and Registration Form */
86
+ #wpmem_reg, #wpmem_login {
87
+
88
+ }
89
+
90
+ #wpmem_reg label,
91
+ #wpmem_login label {
92
+ font-size: 1.6rem;
93
+ color: #707070;
94
+ color: rgba(51, 51, 51, 0.7);
95
+ font-family: "Noto Sans", sans-serif;
96
+ font-weight: 700;
97
+ display: block;
98
+ letter-spacing: 0.04em;
99
+ line-height: 1.5;
100
+ text-transform: uppercase;
101
+ margin-bottom: 6px;
102
+ }
103
+
104
+ #wpmem_reg input[type="text"],
105
+ #wpmem_reg textarea,
106
+ #wpmem_login input[type="text"],
107
+ #wpmem_login input[type="password"] {
108
+
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
+
118
+ }
119
+
120
+ #wpmem_reg input:focus,
121
+ #wpmem_reg textarea:focus,
122
+ #wpmem_login input:focus {
123
+
124
+ }
125
+
126
+ #wpmem_reg select {
127
+ width:100%;
128
+ padding: 8px 10px 7px;
129
+ border: 1px solid rgba(0, 0, 0, 0.1);
130
+ margin: 5px 0;
131
+ }
132
+
133
+ #wpmem_reg fieldset, #wpmem_login fieldset {
134
+ border: none;
135
+ padding: 0;
136
+ margin: 40px 0;
137
+ }
138
+ #wpmem_reg legend, #wpmem_login legend {
139
+ font-weight: 700;
140
+ margin-bottom: 25px;
141
+ font-size: 27px;
142
+ font-size: 2.7rem;
143
+ line-height: 1.1852;
144
+ }
145
+ #wpmem_reg .form, #wpmem_login .form {
146
+ margin:0;
147
+ padding:0;
148
+ }
149
+ #wpmem_reg .clear, #wpmem_login .clear {
150
+ clear:both;
151
+ }
152
+ #wpmem_reg .holder, #wpmem_login .holder {
153
+ background-color:#fff;
154
+ }
155
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
156
+ #wpmem_reg .div_select, #wpmem_login .div_text,
157
+ #wpmem_reg .div_checkbox {
158
+ width:74%;
159
+ margin:0 0 14px 0;
160
+ }
161
+ #wpmem_login input[type="checkbox"] {
162
+ margin: 12px 2px;
163
+ }
164
+ #wpmem_reg .div_textarea textarea,
165
+ #wpmem_reg .textbox, #wpmem_login .textbox,
166
+ #wpmem_reg .username, #wpmem_login .username,
167
+ #wpmem_reg .password, #wpmem_login .password {
168
+ width:100%;
169
+ }
170
+
171
+
172
+ #wpmem_reg textarea {
173
+ height:185px;
174
+ }
175
+ #wpmem_reg .req {
176
+ color: #bd3500;
177
+ font-size: 22px;
178
+ line-height: 50%;
179
+ }
180
+
181
+ #wpmem_reg .req-text {
182
+ margin: 20px 0px 0px 5px;
183
+ }
184
+
185
+ #wpmem_reg .noinput {
186
+ width:93%;
187
+ padding: 8px 10px 7px;
188
+ border: 1px solid rgba(0, 0, 0, 0.1);
189
+ border-radius: 2px;
190
+ color: rgb(43, 43, 43);
191
+ margin: 5px 0;
192
+ }
193
+
194
+ #wpmem_reg .captcha {
195
+ width: 74%;
196
+ margin: 5px 0px;
197
+ }
198
+ #wpmem_reg .captcha table{
199
+ line-height: 0px;
200
+ }
201
+ #wpmem_login .link-text {
202
+ width: 74%;
203
+ }
204
+
205
+ #tos {
206
+ margin-right:5px;
207
+ }
208
+
209
+
210
+ /* Buttons */
211
+
212
+ #wpmem_reg .button_div, #wpmem_login .button_div {
213
+ width:74%;
214
+ height: 62px;
215
+ padding: 6px 0;
216
+ text-align: right;
217
+ }
218
+
219
+
220
+ /** for smaller screens */
221
+
222
+ @media screen and (max-width: 720px) {
223
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
224
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
225
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
226
+ #wpmem_reg .div_select, #wpmem_login .div_text,
227
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
228
+ float: none;
229
+ }
230
+
231
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
232
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
233
+ #wpmem_login label {
234
+ width: 90%;
235
+ padding: 5px 0 0 0;
236
+ }
237
+ #wpmem_reg label.textarea {
238
+ height: 26px;
239
+ }
240
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
241
+ #wpmem_reg .div_select, #wpmem_login .div_text,
242
+ #wpmem_reg .div_checkbox {
243
+ width: 98%;
244
+ }
245
+ #wpmem_msg, .wpmem_msg {
246
+ width: 100%;
247
+ }
248
+
249
+ #wpmem_reg .button_div,
250
+ #wpmem_login .button_div,
251
+ #wpmem_login .link-text {
252
+ width:98%;
253
+ }
254
+ }
css/wp-members-2015.css ADDED
@@ -0,0 +1,265 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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: 28px 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, #wpmem_login {
86
+
87
+ }
88
+
89
+ #wpmem_reg input[type="text"],
90
+ #wpmem_reg textarea,
91
+ #wpmem_login input[type="text"],
92
+ #wpmem_login input[type="password"] {
93
+
94
+ }
95
+
96
+ #wpmem_reg input,
97
+ #wpmem_reg button,
98
+ #wpmem_reg select,
99
+ #wpmem_reg textarea,
100
+ #wpmem_login input,
101
+ #wpmem_login button {
102
+
103
+ }
104
+
105
+ #wpmem_reg input:focus,
106
+ #wpmem_reg textarea:focus,
107
+ #wpmem_login input:focus {
108
+
109
+ }
110
+
111
+ #wpmem_reg select {
112
+ width:100%;
113
+ padding: 6px 10px 7px;
114
+ border: 1px solid rgba(0, 0, 0, 0.1);
115
+ margin: 3px 0;
116
+ }
117
+
118
+ #wpmem_reg fieldset, #wpmem_login fieldset {
119
+ border: none;
120
+ padding: 0;
121
+ margin: 40px 0;
122
+ }
123
+ #wpmem_reg legend, #wpmem_login legend {
124
+ font-size: 24px;
125
+ line-height: 1;
126
+ font-weight: 700;
127
+ margin-bottom: 10px;
128
+ }
129
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
130
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
131
+ #wpmem_login label {
132
+ height: 30px;
133
+ width:32%;
134
+ float:left;
135
+ padding: 12px 0px 0px;
136
+ margin: 0px 0px 14px;
137
+ height: 49px;
138
+ }
139
+ #wpmem_reg label,
140
+ #wpmem_login label {
141
+ font-size: 1.6rem;
142
+ color: #707070;
143
+ color: rgba(51, 51, 51, 0.7);
144
+ font-family: "Noto Sans", sans-serif;
145
+ font-weight: 700;
146
+ display: block;
147
+ letter-spacing: 0.04em;
148
+ line-height: 1.5;
149
+ text-transform: uppercase;
150
+ margin-bottom: 6px;
151
+ }
152
+ #wpmem_reg .form, #wpmem_login .form {
153
+ margin:0;
154
+ padding:0;
155
+ }
156
+ #wpmem_reg .clear, #wpmem_login .clear {
157
+ clear:both;
158
+ }
159
+ #wpmem_reg .holder, #wpmem_login .holder {
160
+ background-color:#fff;
161
+ }
162
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
163
+ #wpmem_reg .div_select, #wpmem_login .div_text,
164
+ #wpmem_reg .div_checkbox {
165
+ width:66%;
166
+ float:right;
167
+ margin:0 0 14px 0;
168
+ }
169
+ #wpmem_reg .div_checkbox { height: 49px; }
170
+ #wpmem_login input[type="checkbox"] {
171
+ margin: 18px 2px;
172
+ }
173
+ #wpmem_reg .div_textarea textarea,
174
+ #wpmem_reg .textbox, #wpmem_login .textbox,
175
+ #wpmem_reg .username, #wpmem_login .username,
176
+ #wpmem_reg .password, #wpmem_login .password {
177
+ width:100%;
178
+ }
179
+
180
+
181
+ #wpmem_reg textarea {
182
+ height:185px;
183
+ }
184
+ #wpmem_reg .req {
185
+ color: #bd3500;
186
+ font-size: 22px;
187
+ line-height: 50%;
188
+ }
189
+
190
+ #wpmem_reg .req-text {
191
+ margin: 20px 0px 0px 5px;
192
+ }
193
+
194
+ #wpmem_reg .noinput {
195
+ width:93%;
196
+ padding: 8px 10px 7px;
197
+ border: 1px solid rgba(0, 0, 0, 0.1);
198
+ border-radius: 2px;
199
+ color: rgb(43, 43, 43);
200
+ margin: 5px 0;
201
+ }
202
+
203
+ #wpmem_reg .captcha {
204
+ width: 74%;
205
+ margin: 5px 0px;
206
+ }
207
+ #wpmem_reg .captcha table{
208
+ line-height: 0px;
209
+ }
210
+ #wpmem_login .link-text {
211
+ width: 100%;
212
+ float: right;
213
+ }
214
+
215
+ #tos {
216
+ margin-right:5px;
217
+ }
218
+
219
+
220
+ /* Buttons */
221
+
222
+ #wpmem_reg .button_div, #wpmem_login .button_div {
223
+ width:100%;
224
+ float:right;
225
+ height: 62px;
226
+ padding: 6px 0;
227
+ text-align: right;
228
+ }
229
+
230
+
231
+ /** for smaller screens */
232
+
233
+ @media screen and (max-width: 720px) {
234
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
235
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
236
+ #wpmem_login label, #wpmem_reg .div_text, #wpmem_reg .div_textarea,
237
+ #wpmem_reg .div_select, #wpmem_login .div_text,
238
+ #wpmem_reg .div_checkbox, #wpmem_reg .button_div, #wpmem_login .button_div {
239
+ float: none;
240
+ }
241
+
242
+ #wpmem_reg label.text, #wpmem_reg label.checkbox,
243
+ #wpmem_reg label.textarea , #wpmem_reg label.select,
244
+ #wpmem_login label {
245
+ width: 90%;
246
+ padding: 5px 0 0 0;
247
+ }
248
+ #wpmem_reg label.textarea {
249
+ height: 26px;
250
+ }
251
+ #wpmem_reg .div_text, #wpmem_reg .div_textarea,
252
+ #wpmem_reg .div_select, #wpmem_login .div_text,
253
+ #wpmem_reg .div_checkbox {
254
+ width: 98%;
255
+ }
256
+ #wpmem_msg, .wpmem_msg {
257
+ width: 100%;
258
+ }
259
+
260
+ #wpmem_reg .button_div,
261
+ #wpmem_login .button_div,
262
+ #wpmem_login .link-text {
263
+ width:98%;
264
+ }
265
+ }
css/wp-members-kubrick.css ADDED
@@ -0,0 +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 http://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 http://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 http://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
+ }
css/wp-members.css ADDED
@@ -0,0 +1,216 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 http://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 http://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 http://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_reg .form, #wpmem_login .form {
119
+ margin:0;
120
+ padding:0;
121
+ }
122
+ #wpmem_reg .clear, #wpmem_login .clear {
123
+ clear:both;
124
+ }
125
+ #wpmem_reg .holder, #wpmem_login .holder {
126
+ background-color:#fff;
127
+ }
128
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
129
+ #wpmem_reg .div_textarea, #wpmem_reg .div_select,
130
+ #wpmem_login .div_text {
131
+ width:360px;
132
+ float:right;
133
+ background-color:#E6E6E6;
134
+ margin-top:3px;
135
+ padding-top:5px;
136
+ padding-bottom:3px;
137
+ padding-left:5px;
138
+ }
139
+ #wpmem_reg .div_text, #wpmem_reg .div_checkbox,
140
+ #wpmem_reg .div_select, #wpmem_login .div_text {
141
+ height:35px;
142
+ }
143
+ #wpmem_reg .div_textarea {
144
+ height:200px;
145
+ }
146
+ #wpmem_reg .dropdown,
147
+ #wpmem_reg .textbox, #wpmem_login .textbox,
148
+ #wpmem_reg .username, #wpmem_login .username,
149
+ #wpmem_reg .password, #wpmem_login .password {
150
+ border: 1px solid #ccc;
151
+ background-color:#fff;
152
+ width:340px;
153
+ font:normal 18px Times New Roman;
154
+ color: #000000;
155
+ padding:3px 5px 3px 5px;
156
+ }
157
+ #wpmem_reg .dropdown {
158
+ width:352px;
159
+ }
160
+ #wpmem_reg .textbox:focus, #wpmem_reg .textbox:hover, #wpmem_login .textbox:focus, #wpmem_login .textbox:hover,
161
+ #wpmem_reg .username:focus, #wpmem_reg .username:hover, #wpmem_login .username:focus, #wpmem_login .username:hover,
162
+ #wpmem_reg .password:focus, #wpmem_reg .password:hover, #wpmem_login .password:focus, #wpmem_login .password:hover {
163
+ background-color:#F0FFE6;
164
+ }
165
+
166
+ #wpmem_reg .textarea {
167
+ width:346px;
168
+ height:190px;
169
+ }
170
+
171
+ #wpmem_reg .button_div, #wpmem_login .button_div {
172
+ width:353px;
173
+ float:right;
174
+ background-color:#fff;
175
+ border:1px solid #ccc;
176
+ text-align:right;
177
+ height:35px;
178
+ margin-top:3px;
179
+ padding:5px;
180
+ white-space:nowrap;
181
+ }
182
+
183
+ #wpmem_reg .buttons, #wpmem_login .buttons {
184
+ font-family:Arial,Helvetica,sans-serif;
185
+ background: #e3e3db;
186
+ font-size:12px;
187
+ color: #000;
188
+ padding: 4px 12px;
189
+ border-width: 2px;
190
+ border-style: solid;
191
+ border-color: #fff #d8d8d0 #d8d8d0 #fff;
192
+ text-decoration: none;
193
+ text-transform:uppercase;
194
+ font-weight:bold;
195
+ }
196
+ #wpmem_reg .req { color: red; }
197
+ #wpmem_reg .noinput{
198
+ height: 32px;
199
+ padding-top: 5px;
200
+ padding-left: 6px;
201
+ }
202
+ #wpmem_reg input[type="checkbox"] {
203
+ margin: 9px 0 0 2px;
204
+ }
205
+
206
+ #wpmem_reg .req-text {
207
+ float:left;
208
+ margin: 15px 0px 0px 5px;
209
+ }
210
+
211
+ #wpmem_reg .captcha {
212
+ margin: 5px 0px;
213
+ }
214
+ #wpmem_reg .captcha table{
215
+ line-height: 0px;
216
+ }
forms.php ADDED
@@ -0,0 +1,1041 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WP-Members Form Building Functions
4
+ *
5
+ * Handles functions that build the various forms.
6
+ *
7
+ * This file is part of the WP-Members plugin by Chad Butler
8
+ * You can find out more about this plugin at http://rocketgeek.com
9
+ * Copyright (c) 2006-2015 Chad Butler
10
+ * WP-Members(tm) is a trademark of butlerblog.com
11
+ *
12
+ * @package WordPress
13
+ * @subpackage WP-Members
14
+ * @author Chad Butler
15
+ * @copyright 2006-2015
16
+ *
17
+ * Functions Included:
18
+ * * wpmem_inc_login
19
+ * * wpmem_inc_changepassword
20
+ * * wpmem_inc_resetpassword
21
+ * * wpmem_login_form
22
+ * * wpmem_inc_registration
23
+ * * wpmem_inc_recaptcha
24
+ * * wpmem_inc_attribution
25
+ */
26
+
27
+
28
+ if ( ! function_exists( 'wpmem_inc_login' ) ):
29
+ /**
30
+ * Login Dialog
31
+ *
32
+ * Loads the login form for user login
33
+ *
34
+ * @since 1.8
35
+ *
36
+ * @uses wpmem_login_form()
37
+ *
38
+ * @param string $page
39
+ * @param string $redirect_to
40
+ * @return string $str the generated html for the login form
41
+ */
42
+ function wpmem_inc_login( $page="page", $redirect_to = null )
43
+ {
44
+ global $wpmem_regchk;
45
+
46
+ $str = '';
47
+
48
+ if( $page == "page" ){
49
+ if( $wpmem_regchk!="success" ){
50
+
51
+ $arr = get_option( 'wpmembers_dialogs' );
52
+
53
+ // this shown above blocked content
54
+ $str = '<p>' . __( stripslashes( $arr[0] ), 'wp-members' ) . '</p>';
55
+
56
+ /**
57
+ * Filter the post restricted message.
58
+ *
59
+ * @since 2.7.3
60
+ *
61
+ * @param string $str The post restricted message.
62
+ */
63
+ $str = apply_filters( 'wpmem_restricted_msg', $str );
64
+
65
+ }
66
+ }
67
+
68
+ /** create the default inputs **/
69
+ $default_inputs = array(
70
+ array(
71
+ 'name' => __( 'Username' ),
72
+ 'type' => 'text',
73
+ 'tag' => 'log',
74
+ 'class' => 'username',
75
+ 'div' => 'div_text'
76
+ ),
77
+ array(
78
+ 'name' => __( 'Password' ),
79
+ 'type' => 'password',
80
+ 'tag' => 'pwd',
81
+ 'class' => 'password',
82
+ 'div' => 'div_text'
83
+ )
84
+ );
85
+
86
+ /**
87
+ * Filter the array of login form fields.
88
+ *
89
+ * @since 2.9.0
90
+ *
91
+ * @param array $default_inputs An array matching the elements used by default.
92
+ */
93
+ $default_inputs = apply_filters( 'wpmem_inc_login_inputs', $default_inputs );
94
+
95
+ $defaults = array(
96
+ 'heading' => __( 'Existing Users Log In', 'wp-members' ),
97
+ 'action' => 'login',
98
+ 'button_text' => __( 'Log In' ),
99
+ 'inputs' => $default_inputs,
100
+ 'redirect_to' => $redirect_to
101
+ );
102
+
103
+ /**
104
+ * Filter the arguments to override login form defaults.
105
+ *
106
+ * @since 2.9.0
107
+ *
108
+ * @param array $args An array of arguments to use. Default null.
109
+ */
110
+ $args = apply_filters( 'wpmem_inc_login_args', '' );
111
+
112
+ $arr = wp_parse_args( $args, $defaults );
113
+
114
+ $str = $str . wpmem_login_form( $page, $arr );
115
+
116
+ return $str;
117
+ }
118
+ endif;
119
+
120
+
121
+ if ( ! function_exists( 'wpmem_inc_changepassword' ) ):
122
+ /**
123
+ * Change Password Dialog
124
+ *
125
+ * Loads the form for changing password.
126
+ *
127
+ * @since 2.0
128
+ *
129
+ * @uses wpmem_login_form()
130
+ *
131
+ * @return string $str the generated html for the change password form
132
+ */
133
+ function wpmem_inc_changepassword()
134
+ {
135
+ /** create the default inputs **/
136
+ $default_inputs = array(
137
+ array(
138
+ 'name' => __( 'New password' ),
139
+ 'type' => 'password',
140
+ 'tag' => 'pass1',
141
+ 'class' => 'password',
142
+ 'div' => 'div_text'
143
+ ),
144
+ array(
145
+ 'name' => __( 'Confirm new password' ),
146
+ 'type' => 'password',
147
+ 'tag' => 'pass2',
148
+ 'class' => 'password',
149
+ 'div' => 'div_text'
150
+ )
151
+ );
152
+
153
+ /**
154
+ * Filter the array of change password form fields.
155
+ *
156
+ * @since 2.9.0
157
+ *
158
+ * @param array $default_inputs An array matching the elements used by default.
159
+ */
160
+ $default_inputs = apply_filters( 'wpmem_inc_changepassword_inputs', $default_inputs );
161
+
162
+ $defaults = array(
163
+ 'heading' => __('Change Password', 'wp-members'),
164
+ 'action' => 'pwdchange',
165
+ 'button_text' => __('Update Password', 'wp-members'),
166
+ 'inputs' => $default_inputs
167
+ );
168
+
169
+ /**
170
+ * Filter the arguments to override change password form defaults.
171
+ *
172
+ * @since 2.9.0
173
+ *
174
+ * @param array $args An array of arguments to use. Default null.
175
+ */
176
+ $args = apply_filters( 'wpmem_inc_changepassword_args', '' );
177
+
178
+ $arr = wp_parse_args( $args, $defaults );
179
+
180
+ $str = wpmem_login_form( 'page', $arr );
181
+
182
+ return $str;
183
+ }
184
+ endif;
185
+
186
+
187
+ if ( ! function_exists( 'wpmem_inc_resetpassword' ) ):
188
+ /**
189
+ * Reset Password Dialog
190
+ *
191
+ * Loads the form for resetting password.
192
+ *
193
+ * @since 2.1
194
+ *
195
+ * @uses wpmem_login_form()
196
+ *
197
+ * @return string $str the generated html fo the reset password form
198
+ */
199
+ function wpmem_inc_resetpassword()
200
+ {
201
+ /** create the default inputs **/
202
+ $default_inputs = array(
203
+ array(
204
+ 'name' => __( 'Username' ),
205
+ 'type' => 'text',
206
+ 'tag' => 'user',
207
+ 'class' => 'username',
208
+ 'div' => 'div_text'
209
+ ),
210
+ array(
211
+ 'name' => __( 'Email' ),
212
+ 'type' => 'text',
213
+ 'tag' => 'email',
214
+ 'class' => 'password',
215
+ 'div' => 'div_text'
216
+ )
217
+ );
218
+
219
+ /**
220
+ * Filter the array of reset password form fields.
221
+ *
222
+ * @since 2.9.0
223
+ *
224
+ * @param array $default_inputs An array matching the elements used by default.
225
+ */
226
+ $default_inputs = apply_filters( 'wpmem_inc_resetpassword_inputs', $default_inputs );
227
+
228
+ $defaults = array(
229
+ 'heading' => __( 'Reset Forgotten Password', 'wp-members' ),
230
+ 'action' => 'pwdreset',
231
+ 'button_text' => __( 'Reset Password' ),
232
+ 'inputs' => $default_inputs
233
+ );
234
+
235
+ /**
236
+ * Filter the arguments to override reset password form defaults.
237
+ *
238
+ * @since 2.9.0
239
+ *
240
+ * @param array $args An array of arguments to use. Default null.
241
+ */
242
+ $args = apply_filters( 'wpmem_inc_resetpassword_args', '' );
243
+
244
+ $arr = wp_parse_args( $args, $defaults );
245
+
246
+ $str = wpmem_login_form( 'page', $arr );
247
+
248
+ return $str;
249
+ }
250
+ endif;
251
+
252
+
253
+ if ( ! function_exists( 'wpmem_login_form' ) ):
254
+ /**
255
+ * Login Form Dialog
256
+ *
257
+ * Builds the form used for login, change password, and reset password.
258
+ *
259
+ * @since 2.5.1
260
+ *
261
+ * @param string $page
262
+ * @param array $arr The elements needed to generate the form (login|reset password|forgotten password)
263
+ * @return string $form The HTML for the form as a string
264
+ */
265
+ function wpmem_login_form( $page, $arr )
266
+ {
267
+ // extract the arguments array
268
+ extract( $arr );
269
+
270
+ // set up default wrappers
271
+ $defaults = array(
272
+
273
+ // wrappers
274
+ 'heading_before' => '<legend>',
275
+ 'heading_after' => '</legend>',
276
+ 'fieldset_before' => '<fieldset>',
277
+ 'fieldset_after' => '</fieldset>',
278
+ 'main_div_before' => '<div id="wpmem_login">',
279
+ 'main_div_after' => '</div>',
280
+ 'txt_before' => '[wpmem_txt]',
281
+ 'txt_after' => '[/wpmem_txt]',
282
+ 'row_before' => '',
283
+ 'row_after' => '',
284
+ 'buttons_before' => '<div class="button_div">',
285
+ 'buttons_after' => '</div>',
286
+ 'link_before' => '<div align="right" class="link-text">',
287
+ 'link_after' => '</div>',
288
+
289
+ // classes & ids
290
+ 'form_id' => '',
291
+ 'form_class' => 'form',
292
+ 'button_id' => '',
293
+ 'button_class' => 'buttons',
294
+
295
+ // other
296
+ 'strip_breaks' => true,
297
+ 'wrap_inputs' => true,
298
+ 'remember_check' => true,
299
+ 'n' => "\n",
300
+ 't' => "\t",
301
+ 'redirect_to' => ( isset( $_REQUEST['redirect_to'] ) ) ? esc_url( $_REQUEST['redirect_to'] ) : ( ( isset( $redirect_to ) ) ? $redirect_to : get_permalink() )
302
+
303
+ );
304
+
305
+ /**
306
+ * Filter the default form arguments.
307
+ *
308
+ * This filter accepts an array of various elements to replace the form defaults. This
309
+ * includes default tags, labels, text, and small items including various booleans.
310
+ *
311
+ * @since 2.9.0
312
+ *
313
+ * @param array An array of arguments to merge with defaults. Default null.
314
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
315
+ */
316
+ $args = apply_filters( 'wpmem_login_form_args', '', $action );
317
+
318
+ // merge $args with defaults and extract
319
+ extract( wp_parse_args( $args, $defaults ) );
320
+
321
+ // build the input rows
322
+ foreach ( $inputs as $input ) {
323
+ $label = '<label for="' . $input['tag'] . '">' . $input['name'] . '</label>';
324
+ $field = wpmem_create_formfield( $input['tag'], $input['type'], '', '', $input['class'] );
325
+ $field_before = ( $wrap_inputs ) ? '<div class="' . $input['div'] . '">' : '';
326
+ $field_after = ( $wrap_inputs ) ? '</div>' : '';
327
+ $rows[] = array(
328
+ 'row_before' => $row_before,
329
+ 'label' => $label,
330
+ 'field_before' => $field_before,
331
+ 'field' => $field,
332
+ 'field_after' => $field_after,
333
+ 'row_after' => $row_after
334
+ );
335
+ }
336
+
337
+ /**
338
+ * Filter the array of form rows.
339
+ *
340
+ * This filter receives an array of the main rows in the form, each array element being
341
+ * an array of that particular row's pieces. This allows making changes to individual
342
+ * parts of a row without needing to parse through a string of HTML.
343
+ *
344
+ * @since 2.9.0
345
+ *
346
+ * @param array $rows An array containing the form rows.
347
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
348
+ */
349
+ $rows = apply_filters( 'wpmem_login_form_rows', $rows, $action );
350
+
351
+ // put the rows from the array into $form
352
+ $form = '';
353
+ foreach( $rows as $row_item ) {
354
+ $row = ( $row_item['row_before'] != '' ) ? $row_item['row_before'] . $n . $row_item['label'] . $n : $row_item['label'] . $n;
355
+ $row .= ( $row_item['field_before'] != '' ) ? $row_item['field_before'] . $n . $t . $row_item['field'] . $n . $row_item['field_after'] . $n : $row_item['field'] . $n;
356
+ $row .= ( $row_item['row_before'] != '' ) ? $row_item['row_after'] . $n : '';
357
+ $form.= $row;
358
+ }
359
+
360
+ // build hidden fields, filter, and add to the form
361
+ //$redirect_to = ( isset( $_REQUEST['redirect_to'] ) ) ? esc_url( $_REQUEST['redirect_to'] ) : get_permalink();
362
+ $hidden = wpmem_create_formfield( 'redirect_to', 'hidden', $redirect_to ) . $n;
363
+ $hidden = $hidden . wpmem_create_formfield( 'a', 'hidden', $action ) . $n;
364
+ $hidden = ( $action != 'login' ) ? $hidden . wpmem_create_formfield( 'formsubmit', 'hidden', '1' ) : $hidden;
365
+
366
+ /**
367
+ * Filter the hidden field HTML.
368
+ *
369
+ * @since 2.9.0
370
+ *
371
+ * @param string $hidden The generated HTML of hidden fields.
372
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
373
+ */
374
+ $form = $form . apply_filters( 'wpmem_login_hidden_fields', $hidden, $action );
375
+
376
+ // build the buttons, filter, and add to the form
377
+ if ( $action == 'login' ) {
378
+ $remember_check = ( $remember_check ) ? $t . wpmem_create_formfield( 'rememberme', 'checkbox', 'forever' ) . '&nbsp;' . __( 'Remember Me' ) . '&nbsp;&nbsp;' . $n : '';
379
+ $buttons = $remember_check . $t . '<input type="submit" name="Submit" value="' . $button_text . '" class="' . $button_class . '" />' . $n;
380
+ } else {
381
+ $buttons = '<input type="submit" name="Submit" value="' . $button_text . '" class="' . $button_class . '" />' . $n;
382
+ }
383
+
384
+ /**
385
+ * Filter the HTML for form buttons.
386
+ *
387
+ * The string includes the buttons, as well as the before/after wrapper elements.
388
+ *
389
+ * @since 2.9.0
390
+ *
391
+ * @param string $buttons The generated HTML of the form buttons.
392
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
393
+ */
394
+ $form = $form . apply_filters( 'wpmem_login_form_buttons', $buttons_before . $n . $buttons . $buttons_after . $n, $action );
395
+
396
+ if ( ( WPMEM_MSURL != null || $page == 'members' ) && $action == 'login' ) {
397
+
398
+ /**
399
+ * Filter the forgot password link.
400
+ *
401
+ * @since 2.8.0
402
+ *
403
+ * @param string The forgot password link.
404
+ */
405
+ $link = apply_filters( 'wpmem_forgot_link', wpmem_chk_qstr( WPMEM_MSURL ) . 'a=pwdreset' );
406
+ $str = __( 'Forgot password?', 'wp-members' ) . '&nbsp;<a href="' . $link . '">' . __( 'Click here to reset', 'wp-members' ) . '</a>';
407
+ $form = $form . $link_before . apply_filters( 'wpmem_forgot_link_str', $str ) . $link_after . $n;
408
+
409
+ }
410
+
411
+ if ( ( WPMEM_REGURL != null ) && $action == 'login' ) {
412
+
413
+ /**
414
+ * Filter the link to the registration page.
415
+ *
416
+ * @since 2.8.0
417
+ *
418
+ * @param string The registration page link.
419
+ */
420
+ $link = apply_filters( 'wpmem_reg_link', WPMEM_REGURL );
421
+ $str = __( 'New User?', 'wp-members' ) . '&nbsp;<a href="' . $link . '">' . __( 'Click here to register', 'wp-members' ) . '</a>';
422
+ $form = $form . $link_before . apply_filters( 'wpmem_reg_link_str', $str ) . $link_after . $n;
423
+
424
+ }
425
+
426
+ // apply the heading
427
+ $form = $heading_before . $heading . $heading_after . $n . $form;
428
+
429
+ // apply fieldset wrapper
430
+ $form = $fieldset_before . $n . $form . $fieldset_after . $n;
431
+
432
+ // apply form wrapper
433
+ $form = '<form action="' . get_permalink() . '" method="POST" id="' . $form_id . '" class="' . $form_class . '">' . $n . $form . '</form>';
434
+
435
+ // apply anchor
436
+ $form = '<a name="login"></a>' . $n . $form;
437
+
438
+ // apply main wrapper
439
+ $form = $main_div_before . $n . $form . $n . $main_div_after;
440
+
441
+ // apply wpmem_txt wrapper
442
+ $form = $txt_before . $form . $txt_after;
443
+
444
+ // remove line breaks
445
+ $form = ( $strip_breaks ) ? str_replace( array( "\n", "\r", "\t" ), array( '','','' ), $form ) : $form;
446
+
447
+ /**
448
+ * Filter the generated HTML of the entire form.
449
+ *
450
+ * @since 2.7.4
451
+ *
452
+ * @param string $form The HTML of the final generated form.
453
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
454
+ */
455
+ $form = apply_filters( 'wpmem_login_form', $form, $action );
456
+
457
+ /**
458
+ * Filter before the form.
459
+ *
460
+ * This rarely used filter allows you to stick any string onto the front of
461
+ * the generated form.
462
+ *
463
+ * @since 2.7.4
464
+ *
465
+ * @param string $str The HTML to add before the form. Default null.
466
+ * @param string $action The action being performed by the form. login|pwdreset|pwdchange.
467
+ */
468
+ $form = apply_filters( 'wpmem_login_form_before', '', $action ) . $form;
469
+
470
+ return $form;
471
+ } // end wpmem_login_form
472
+ endif;
473
+
474
+
475
+ if ( ! function_exists( 'wpmem_inc_registration' ) ):
476
+ /**
477
+ * Registration Form Dialog
478
+ *
479
+ * Outputs the form for new user registration and existing user edits.
480
+ *
481
+ * @since 2.5.1
482
+ *
483
+ * @param string $toggle (optional) Toggles between new registration ('new') and user profile edit ('edit')
484
+ * @param string $heading (optional) The heading text for the form, null (default) for new registration
485
+ * @global string $wpmem_regchk Used to determine if the form is in an error state
486
+ * @global array $userdata Used to get the user's registration data if they are logged in (user profile edit)
487
+ * @return string $form The HTML for the entire form as a string
488
+ */
489
+ function wpmem_inc_registration( $toggle = 'new', $heading = '' )
490
+ {
491
+ global $wpmem_regchk, $userdata;
492
+
493
+ // set up default wrappers
494
+ $defaults = array(
495
+
496
+ // wrappers
497
+ 'heading_before' => '<legend>',
498
+ 'heading_after' => '</legend>',
499
+ 'fieldset_before' => '<fieldset>',
500
+ 'fieldset_after' => '</fieldset>',
501
+ 'main_div_before' => '<div id="wpmem_reg">',
502
+ 'main_div_after' => '</div>',
503
+ 'txt_before' => '[wpmem_txt]',
504
+ 'txt_after' => '[/wpmem_txt]',
505
+ 'row_before' => '',
506
+ 'row_after' => '',
507
+ 'buttons_before' => '<div class="button_div">',
508
+ 'buttons_after' => '</div>',
509
+
510
+ // classes & ids
511
+ 'form_id' => '',
512
+ 'form_class' => 'form',
513
+ 'button_id' => '',
514
+ 'button_class' => 'buttons',
515
+
516
+ // required field tags and text
517
+ 'req_mark' => '<font class="req">*</font>',
518
+ 'req_label' => __( 'Required field', 'wp-members' ),
519
+ 'req_label_before' => '<div class="req-text">',
520
+ 'req_label_after' => '</div>',
521
+
522
+ // buttons
523
+ 'show_clear_form' => true,
524
+ 'clear_form' => __( 'Reset Form', 'wp-members' ),
525
+ 'submit_register' => __( 'Register' ),
526
+ 'submit_update' => __( 'Update Profile', 'wp-members' ),
527
+
528
+ // other
529
+ 'strip_breaks' => true,
530
+ 'use_nonce' => false,
531
+ 'wrap_inputs' => true,
532
+ 'n' => "\n",
533
+ 't' => "\t",
534
+
535
+ );
536
+
537
+ /**
538
+ * Filter the default form arguments.
539
+ *
540
+ * This filter accepts an array of various elements to replace the form defaults. This
541
+ * includes default tags, labels, text, and small items including various booleans.
542
+ *
543
+ * @since 2.9.0
544
+ *
545
+ * @param array An array of arguments to merge with defaults. Default null.
546
+ * @param string $toggle Toggle new registration or profile update. new|edit.
547
+ */
548
+ $args = apply_filters( 'wpmem_register_form_args', '', $toggle );
549
+
550
+ // merge $args with defaults and extract
551
+ extract( wp_parse_args( $args, $defaults ) );
552
+
553
+ // Username is editable if new reg, otherwise user profile is not
554
+ if( $toggle == 'edit' ) {
555
+ // this is the User Profile edit - username is not editable
556
+ $val = $userdata->user_login;
557
+ $label = '<label for="username" class="text">' . __( 'Username' ) . '</label>';
558
+ $input = '<p class="noinput">' . $val . '</p>';
559
+ $field_before = ( $wrap_inputs ) ? '<div class="div_text">' : '';
560
+ $field_after = ( $wrap_inputs ) ? '</div>' : '';
561
+ } else {
562
+ // this is a new registration
563
+ $val = ( isset( $_POST['log'] ) ) ? stripslashes( $_POST['log'] ) : '';
564
+ $label = '<label for="username" class="text">' . __( 'Choose a Username', 'wp-members' ) . $req_mark . '</label>';
565
+ $input = wpmem_create_formfield( 'log', 'text', $val, '', 'username' );
566
+
567
+ }
568
+ $field_before = ( $wrap_inputs ) ? '<div class="div_text">' : '';
569
+ $field_after = ( $wrap_inputs ) ? '</div>': '';
570
+
571
+ // add the username row to the array
572
+ $rows['username'] = array(
573
+ 'order' => 0,
574
+ 'meta' => 'username',
575
+ 'type' => 'text',
576
+ 'value' => $val,
577
+ 'row_before' => $row_before,
578
+ 'label' => $label,
579
+ 'field_before' => $field_before,
580
+ 'field' => $input,
581
+ 'field_after' => $field_after,
582
+ 'row_after' => $row_after
583
+ );
584
+
585
+ /**
586
+ * Filter the array of form fields.
587
+ *
588
+ * The form fields are stored in the WP options table as wpmembers_fields. This
589
+ * filter can filter that array after the option is retreived before the fields
590
+ * are parsed. This allows you to change the fields that may be used in the form
591
+ * on the fly.
592
+ *
593
+ * @since 2.9.0
594
+ *
595
+ * @param array The array of form fields.
596
+ * @param string $toggle Toggle new registration or profile update. new|edit.
597
+ */
598
+ $wpmem_fields = apply_filters( 'wpmem_register_fields_arr', get_option( 'wpmembers_fields' ), $toggle );
599
+ //$wpmem_fields = get_option( 'wpmembers_fields' );
600
+
601
+ // loop through the remaining fields
602
+ foreach( $wpmem_fields as $field )
603
+ {
604
+ // start with a clean row
605
+ $val = ''; $label = ''; $input = ''; $field_before = ''; $field_after = '';
606
+
607
+ // skips user selected passwords for profile update
608
+ $pass_arr = array( 'password', 'confirm_password', 'password_confirm' );
609
+ $do_row = ( $toggle == 'edit' && in_array( $field[2], $pass_arr ) ) ? false : true;
610
+
611
+ // skips tos, makes tos field hidden on user edit page, unless they haven't got a value for tos
612
+ if( $field[2] == 'tos' && $toggle == 'edit' && ( get_user_meta( $userdata->ID, 'tos', true ) ) ) {
613
+ $do_row = false;
614
+ $hidden_tos = wpmem_create_formfield( $field[2], 'hidden', get_user_meta( $userdata->ID, 'tos', true ) );
615
+ }
616
+
617
+ // if the field is set to display and we aren't skipping, construct the row
618
+ if( $field[4] == 'y' && $do_row == true ) {
619
+
620
+ // label for all but TOS
621
+ if( $field[2] != 'tos' ) {
622
+
623
+ $class = ( $field[3] == 'password' ) ? 'text' : $field[3];
624
+
625
+ $label = '<label for="' . $field[2] . '" class="' . $class . '">' . __( $field[1], 'wp-members' );
626
+ $label = ( $field[5] == 'y' ) ? $label . $req_mark : $label;
627
+ $label = $label . '</label>';
628
+
629
+ }
630
+
631
+ // gets the field value for both edit profile and submitted reg w/ error
632
+ if( ( $toggle == 'edit' ) && ( $wpmem_regchk != 'updaterr' ) ) {
633
+
634
+ switch( $field[2] ) {
635
+ case( 'description' ):
636
+ $val = htmlspecialchars( get_user_meta( $userdata->ID, 'description', 'true' ) );
637
+ break;
638
+
639
+ case( 'user_email' ):
640
+ case( 'confirm_email' ):
641
+ $val = $userdata->user_email;
642
+ break;
643
+
644
+ case( 'user_url' ):
645
+ $val = esc_url( $userdata->user_url );
646
+ break;
647
+
648
+ default:
649
+ $val = htmlspecialchars( get_user_meta( $userdata->ID, $field[2], 'true' ) );
650
+ break;
651
+ }
652
+
653
+ } else {
654
+
655
+ $val = ( isset( $_POST[ $field[2] ] ) ) ? $_POST[ $field[2] ] : '';
656
+
657
+ }
658
+
659
+ // does the tos field
660
+ if( $field[2] == 'tos' ) {
661
+
662
+ $val = ( isset( $_POST[ $field[2] ] ) ) ? $_POST[ $field[2] ] : '';
663
+
664
+ // should be checked by default? and only if form hasn't been submitted
665
+ $val = ( ! $_POST && $field[8] == 'y' ) ? $field[7] : $val;
666
+ $input = wpmem_create_formfield( $field[2], $field[3], $field[7], $val );
667
+ $input = ( $field[5] == 'y' ) ? $input . $req_mark : $input;
668
+
669
+ // determine if TOS is a WP page or not...
670
+ $tos_content = stripslashes( get_option( 'wpmembers_tos' ) );
671
+ if ( ( wpmem_test_shortcode( $tos_content, 'wp-members' ) ) ) {
672
+ $link = do_shortcode( $tos_content );
673
+ $tos_pop = '<a href="' . $link . '" target="_blank">';
674
+ } else {
675
+ $tos_pop = "<a href=\"#\" onClick=\"window.open('" . WP_PLUGIN_URL . "/wp-members/wp-members-tos.php','mywindow');\">";
676
+ }
677
+
678
+ /**
679
+ * Filter the TOS link text.
680
+ *
681
+ * @since 2.7.5
682
+ *
683
+ * @param string The link text.
684
+ * @param string $toggle Toggle new registration or profile update. new|edit.
685
+ */
686
+ $input.= apply_filters( 'wpmem_tos_link_txt', sprintf( __( 'Please indicate that you agree to the %s TOS %s', 'wp-members' ), $tos_pop, '</a>' ), $toggle );
687
+
688
+ // in previous versions, the div class would end up being the same as the row before.
689
+ $field_before = ( $wrap_inputs ) ? '<div class="div_text">' : '';
690
+ $field_after = ( $wrap_inputs ) ? '</div>' : '';
691
+
692
+ } else {
693
+
694
+ // for checkboxes
695
+ if( $field[3] == 'checkbox' ) {
696
+ $valtochk = $val;
697
+ $val = $field[7];
698
+ // if it should it be checked by default (& only if form not submitted), then override above...
699
+ if( $field[8] == 'y' && ( ! $_POST && $toggle != 'edit' ) ) { $val = $valtochk = $field[7]; }
700
+ }
701
+
702
+ // for dropdown select
703
+ if( $field[3] == 'select' ) {
704
+ $valtochk = $val;
705
+ $val = $field[7];
706
+ }
707
+
708
+ if( ! isset( $valtochk ) ) { $valtochk = ''; }
709
+
710
+ // for all other input types
711
+ $input = wpmem_create_formfield( $field[2], $field[3], $val, $valtochk );
712
+
713
+ // determine input wrappers
714
+ $field_before = ( $wrap_inputs ) ? '<div class="div_' . $class . '">' : '';
715
+ $field_after = ( $wrap_inputs ) ? '</div>' : '';
716
+ }
717
+
718
+ }
719
+
720
+ // if the row is set to display, add the row to the form array
721
+ if( $field[4] == 'y' ) {
722
+ $rows[$field[2]] = array(
723
+ 'order' => $field[0],
724
+ 'meta' => $field[2],
725
+ 'type' => $field[3],
726
+ 'value' => $val,
727
+ 'row_before' => $row_before,
728
+ 'label' => $label,
729
+ 'field_before' => $field_before,
730
+ 'field' => $input,
731
+ 'field_after' => $field_after,
732
+ 'row_after' => $row_after
733
+ );
734
+ }
735
+ }
736
+
737
+
738
+ // if captcha is Really Simple CAPTCHA
739
+ if( WPMEM_CAPTCHA == 2 && $toggle != 'edit' ) {
740
+ $row = wpmem_build_rs_captcha();
741
+ $rows['captcha'] = array(
742
+ 'order' => '',
743
+ 'meta' => '',
744
+ 'type' => 'text',
745
+ 'value' => '',
746
+ 'row_before' => $row_before,
747
+ 'label' => $row['label'],
748
+ 'field_before' => ( $wrap_inputs ) ? '<div class="div_text">' : '',
749
+ 'field' => $row['field'],
750
+ 'field_after' => ( $wrap_inputs ) ? '</div>' : '',
751
+ 'row_after' => $row_after
752
+ );
753
+ }
754
+
755
+
756
+
757
+ /**
758
+ * Filter the array of form rows.
759
+ *
760
+ * This filter receives an array of the main rows in the form, each array element being
761
+ * an array of that particular row's pieces. This allows making changes to individual
762
+ * parts of a row without needing to parse through a string of HTML.
763
+ *
764
+ * @since 2.9.0
765
+ *
766
+ * @param array $rows An array containing the form rows.
767
+ * @param string $toggle Toggle new registration or profile update. new|edit.
768
+ */
769
+ $rows = apply_filters( 'wpmem_register_form_rows', $rows, $toggle );
770
+
771
+ // put the rows from the array into $form
772
+ $form = ''; $enctype = '';
773
+ foreach( $rows as $row_item ) {
774
+ $enctype = ( $row_item['type'] == 'file' ) ? "multipart/form-data" : $enctype;
775
+ $row = ( $row_item['row_before'] != '' ) ? $row_item['row_before'] . $n . $row_item['label'] . $n : $row_item['label'] . $n;
776
+ $row .= ( $row_item['field_before'] != '' ) ? $row_item['field_before'] . $n . $t . $row_item['field'] . $n . $row_item['field_after'] . $n : $row_item['field'] . $n;
777
+ $row .= ( $row_item['row_after'] != '' ) ? $row_item['row_after'] . $n : '';
778
+ $form.= $row;
779
+ }
780
+
781
+ // do recaptcha if enabled
782
+ if( WPMEM_CAPTCHA == 1 && $toggle != 'edit' ) { // don't show on edit page!
783
+
784
+ // get the captcha options
785
+ $wpmem_captcha = get_option( 'wpmembers_captcha' );
786
+
787
+ // start with a clean row
788
+ $row = '';
789
+ $row = '<div class="clear"></div>';
790
+ $row.= '<div align="right" class="captcha">' . wpmem_inc_recaptcha( $wpmem_captcha['recaptcha'] ) . '</div>';
791
+
792
+ // add the captcha row to the form
793
+ /**
794
+ * Filter the HTML for the CAPTCHA row.
795
+ *
796
+ * @since 2.9.0
797
+ *
798
+ * @param string The HTML for the entire row (includes HTML tags plus reCAPTCHA).
799
+ * @param string $toggle Toggle new registration or profile update. new|edit.
800
+ */
801
+ $form.= apply_filters( 'wpmem_register_captcha_row', $row_before . $row . $row_after, $toggle );
802
+ }
803
+
804
+ // create hidden fields
805
+ $var = ( $toggle == 'edit' ) ? 'update' : 'register';
806
+ $redirect_to = ( isset( $_REQUEST['redirect_to'] ) ) ? esc_url( $_REQUEST['redirect_to'] ) : get_permalink();
807
+ $hidden = '<input name="a" type="hidden" value="' . $var . '" />' . $n;
808
+ $hidden .= '<input name="redirect_to" type="hidden" value="' . $redirect_to . '" />' . $n;
809
+ $hidden = ( isset( $hidden_tos ) ) ? $hidden . $hidden_tos . $n : $hidden;
810
+
811
+ /**
812
+ * Filter the hidden field HTML.
813
+ *
814
+ * @since 2.9.0
815
+ *
816
+ * @param string $hidden The generated HTML of hidden fields.
817
+ * @param string $toggle Toggle new registration or profile update. new|edit.
818
+ */
819
+ $hidden = apply_filters( 'wpmem_register_hidden_fields', $hidden, $toggle );
820
+
821
+ // add the hidden fields to the form
822
+ $form.= $hidden;
823
+
824
+ // create buttons and wrapper
825
+ $button_text = ( $toggle == 'edit' ) ? $submit_update : $submit_register;
826
+ $buttons = ( $show_clear_form ) ? '<input name="reset" type="reset" value="' . $clear_form . '" class="' . $button_class . '" /> ' . $n : '';
827
+ $buttons.= '<input name="submit" type="submit" value="' . $button_text . '" class="' . $button_class . '" />' . $n;
828
+
829
+ /**
830
+ * Filter the HTML for form buttons.
831
+ *
832
+ * The string passed through the filter includes the buttons, as well as the HTML wrapper elements.
833
+ *
834
+ * @since 2.9.0
835
+ *
836
+ * @param string $buttons The generated HTML of the form buttons.
837
+ * @param string $toggle Toggle new registration or profile update. new|edit.
838
+ */
839
+ $buttons = apply_filters( 'wpmem_register_form_buttons', $buttons, $toggle );
840
+
841
+ // add the buttons to the form
842
+ $form.= $buttons_before . $n . $buttons . $buttons_after . $n;
843
+
844
+ // add the required field notation to the bottom of the form
845
+ $form.= $req_label_before . $req_mark . $req_label . $req_label_after;
846
+
847
+ // apply the heading
848
+ /**
849
+ * Filter the registration form heading.
850
+ *
851
+ * @since 2.8.2
852
+ *
853
+ * @param string $str
854
+ * @param string $toggle Toggle new registration or profile update. new|edit.
855
+ */
856
+ $heading = ( !$heading ) ? apply_filters( 'wpmem_register_heading', __( 'New User Registration', 'wp-members' ), $toggle ) : $heading;
857
+ $form = $heading_before . $heading . $heading_after . $n . $form;
858
+
859
+ // apply fieldset wrapper
860
+ $form = $fieldset_before . $n . $form . $n . $fieldset_after;
861
+
862
+ // apply attribution if enabled
863
+ $form = $form . wpmem_inc_attribution();
864
+
865
+ // apply nonce
866
+ $form = ( defined( 'WPMEM_USE_NONCE' ) || $use_nonce ) ? wp_nonce_field( 'wpmem-validate-submit', 'wpmem-form-submit' ) . $n . $form : $form;
867
+
868
+ // apply form wrapper
869
+ $enctype = ( $enctype == 'multipart/form-data' ) ? ' enctype="multipart/form-data"' : '';
870
+ $form = '<form name="form" method="post"' . $enctype . ' action="' . get_permalink() . '" id="' . $form_id . '" class="' . $form_class . '">' . $n . $form. $n . '</form>';
871
+
872
+ // apply anchor
873
+ $form = '<a name="register"></a>' . $n . $form;
874
+
875
+ // apply main div wrapper
876
+ $form = $main_div_before . $n . $form . $n . $main_div_after . $n;
877
+
878
+ // apply wpmem_txt wrapper
879
+ $form = $txt_before . $form . $txt_after;
880
+
881
+ // remove line breaks if enabled for easier filtering later
882
+ $form = ( $strip_breaks ) ? str_replace( array( "\n", "\r", "\t" ), array( '','','' ), $form ) : $form;
883
+
884
+ /**
885
+ * Filter the generated HTML of the entire form.
886
+ *
887
+ * @since 2.7.4
888
+ *
889
+ * @param string $form The HTML of the final generated form.
890
+ * @param string $toggle Toggle new registration or profile update. new|edit.
891
+ * @param array $rows The rows array
892
+ * @param string $hidden The HTML string of hidden fields
893
+ */
894
+ $form = apply_filters( 'wpmem_register_form', $form, $toggle, $rows, $hidden );
895
+
896
+ /**
897
+ * Filter before the form.
898
+ *
899
+ * This rarely used filter allows you to stick any string onto the front of
900
+ * the generated form.
901
+ *
902
+ * @since 2.7.4
903
+ *
904
+ * @param string $str The HTML to add before the form. Default null.
905
+ * @param string $toggle Toggle new registration or profile update. new|edit.
906
+ */
907
+ $form = apply_filters( 'wpmem_register_form_before', '', $toggle ) . $form;
908
+
909
+ // return the generated form
910
+ return $form;
911
+ } // end wpmem_inc_registration
912
+ endif;
913
+
914
+
915
+ if ( ! function_exists( 'wpmem_inc_recaptcha' ) ):
916
+ /**
917
+ * Create reCAPTCHA form
918
+ *
919
+ * @since 2.6.0
920
+ *
921
+ * @param array $arr
922
+ * @return string $str
923
+ */
924
+ function wpmem_inc_recaptcha( $arr )
925
+ {
926
+ // determine if reCAPTCHA should be another language
927
+ $allowed_langs = array( 'nl', 'fr', 'de', 'pt', 'ru', 'es', 'tr' );
928
+ $compare_lang = strtolower( substr( WPLANG, -2 ) );
929
+ $use_the_lang = ( in_array( $compare_lang, $allowed_langs ) ) ? $compare_lang : false;
930
+ $lang = ( $use_the_lang ) ? ' lang : \'' . $use_the_lang . '\'' : '';
931
+
932
+ // determine if we need ssl
933
+ $http = wpmem_use_ssl();
934
+
935
+ $str = '<script type="text/javascript">
936
+ var RecaptchaOptions = { theme : \''. $arr['theme'] . '\'' . $lang . ' };
937
+ </script>
938
+ <script type="text/javascript" src="' . $http . 'www.google.com/recaptcha/api/challenge?k=' . $arr['public'] . '"></script>
939
+ <noscript>
940
+ <iframe src="' . $http . 'www.google.com/recaptcha/api/noscript?k=' . $arr['public'] . '" height="300" width="500" frameborder="0"></iframe><br/>
941
+ <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
942
+ <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
943
+ </noscript>';
944
+
945
+ /**
946
+ * Filter the reCAPTCHA HTML.
947
+ *
948
+ * @since 2.7.4
949
+ *
950
+ * @param string $str A string of HTML for the reCAPTCHA.
951
+ */
952
+ $str = apply_filters( 'wpmem_recaptcha', $str );
953
+
954
+ return $str;
955
+ }
956
+ endif;
957
+
958
+
959
+ /**
960
+ * Create an attribution link in the form
961
+ *
962
+ * @since 2.6.0
963
+ *
964
+ * @return string $str
965
+ */
966
+ function wpmem_inc_attribution()
967
+ {
968
+ $http = ( is_ssl() ) ? 'https://' : 'http://';
969
+ $str = '
970
+ <div align="center">
971
+ <small>Powered by <a href="' . $http . 'rocketgeek.com" target="_blank">WP-Members</a></small>
972
+ </div>';
973
+
974
+ return ( get_option( 'wpmembers_attrib' ) ) ? $str : '';
975
+ }
976
+
977
+
978
+ /**
979
+ * Create Really Simple CAPTCHA.
980
+ *
981
+ * @since 2.9.5
982
+ *
983
+ * @return array Form elements for Really Simple CAPTCHA.
984
+ */
985
+ function wpmem_build_rs_captcha()
986
+ {
987
+ if( defined( 'REALLYSIMPLECAPTCHA_VERSION' ) ) {
988
+ // setup defaults
989
+ $defaults = array(
990
+ 'characters' => 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789',
991
+ 'num_char' => '4',
992
+ 'dim_w' => '72',
993
+ 'dim_h' => '30',
994
+ 'font_color' => '0,0,0',
995
+ 'bg_color' => '255,255,255',
996
+ 'font_size' => '12',
997
+ 'kerning' => '14',
998
+ 'img_type' => 'png'
999
+ );
1000
+ $wpmem_captcha = get_option( 'wpmembers_captcha' );
1001
+
1002
+ extract( wp_parse_args( $wpmem_captcha['really_simple'], $defaults ) );
1003
+
1004
+ $img_size = array( $dim_w, $dim_h );
1005
+ $fg = explode( ",", $font_color );
1006
+ $bg = explode( ",", $bg_color );
1007
+
1008
+ $wpmem_captcha = new ReallySimpleCaptcha();
1009
+ $wpmem_captcha->chars = $characters;
1010
+ $wpmem_captcha->char_length = $num_char;
1011
+ $wpmem_captcha->img_size = $img_size;
1012
+ $wpmem_captcha->fg = $fg;
1013
+ $wpmem_captcha->bg = $bg;
1014
+ $wpmem_captcha->font_size = $font_size;
1015
+ $wpmem_captcha->font_char_width = $kerning;
1016
+ $wpmem_captcha->img_type = $img_type;
1017
+
1018
+ $wpmem_captcha_word = $wpmem_captcha->generate_random_word();
1019
+ $wpmem_captcha_prefix = mt_rand();
1020
+
1021
+ $wpmem_captcha_image_name = $wpmem_captcha->generate_image( $wpmem_captcha_prefix, $wpmem_captcha_word );
1022
+ $wpmem_captcha_image_url = get_bloginfo('wpurl') . '/wp-content/plugins/really-simple-captcha/tmp/';
1023
+
1024
+ $img_w = $wpmem_captcha->img_size[0];
1025
+ $img_h = $wpmem_captcha->img_size[1];
1026
+ $src = $wpmem_captcha_image_url . $wpmem_captcha_image_name;
1027
+ $size = $wpmem_captcha->char_length;
1028
+ $pre = $wpmem_captcha_prefix;
1029
+
1030
+ return array(
1031
+ 'label' => '<label class="text" for="captcha">' . __( 'Input the code:', 'wp-members' ) . '</label>',
1032
+ 'field' => '<input id="captcha_code" name="captcha_code" size="'.$size.'" type="text" />
1033
+ <input id="captcha_prefix" name="captcha_prefix" type="hidden" value="' . $pre . '" />
1034
+ <img src="'.$src.'" alt="captcha" width="'.$img_w.'" height="'.$img_h.'" />'
1035
+ );
1036
+ } else {
1037
+ return;
1038
+ }
1039
+ }
1040
+
1041
+ /** End of File **/
index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // there is nothing to see here! ?>
js/admin.js ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * WP-Members Admin JavaScript Functions
3
+ *
4
+ * Contains the JavaScript functions for WP-Members admin.
5
+ *
6
+ * This file is part of the WP-Members plugin by Chad Butler
7
+ * You can find out more about this plugin at http://rocketgeek.com
8
+ * Copyright (c) 2006-2015 Chad Butler
9
+ * WP-Members(tm) is a trademark of butlerblog.com
10
+ *
11
+ * TableDnD plugin for jQuery :
12
+ * Copyright (c) Denis Howlett <denish@isocra.com>
13
+ * Licensed like jQuery, see http://docs.jquery.com/License.
14
+ *
15
+ * table.add.row plugin for jQuery :
16
+ * Copyright (c) C.F.Wong <cloudgen@ymail.com>
17
+ * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
18
+ *
19
+ * @package WordPress
20
+ * @subpackage WP-Members
21
+ * @author Chad Butler
22
+ * @copyright 2006-2015
23
+ */
24
+
25
+
26
+ /**
27
+ * JS for field table DnD
28
+ *
29
+ * @since 2.6
30
+ */
31
+ (function($) {
32
+ $(document).ready(function() {
33
+
34
+ $("#wpmem-fields").tableDnD({
35
+ onDragClass: "wpmem_tbl_drag",
36
+
37
+ onDrop: function(table, row) {
38
+ var data = {
39
+ action: 'wpmem_a_field_reorder',
40
+ orderstring: $.tableDnD.serialize()
41
+ }
42
+
43
+ $.post( ajaxurl, data, function(response) {
44
+ // alert(response);
45
+ })
46
+ }
47
+ });
48
+ });
49
+ })(jQuery);
50
+
51
+
52
+ /**
53
+ * TableDnD plug-in for JQuery, allows you to drag and drop table rows
54
+ * You can set up various options to control how the system will work
55
+ * Copyright (c) Denis Howlett <denish@isocra.com>
56
+ * Licensed like jQuery, see http://docs.jquery.com/License.
57
+ */
58
+ jQuery.tableDnD = {
59
+ /** Keep hold of the current table being dragged */
60
+ currentTable : null,
61
+ /** Keep hold of the current drag object if any */
62
+ dragObject: null,
63
+ /** The current mouse offset */
64
+ mouseOffset: null,
65
+ /** Remember the old value of Y so that we don't do too much processing */
66
+ oldY: 0,
67
+
68
+ /** Actually build the structure */
69
+ build: function(options) {
70
+ // Set up the defaults if any
71
+
72
+ this.each(function() {
73
+ // This is bound to each matching table, set up the defaults and override with user options
74
+ this.tableDnDConfig = jQuery.extend({
75
+ onDragStyle: null,
76
+ onDropStyle: null,
77
+ // Add in the default class for whileDragging
78
+ onDragClass: "tDnD_whileDrag",
79
+ onDrop: null,
80
+ onDragStart: null,
81
+ scrollAmount: 5,
82
+ serializeRegexp: /[^\-]*$/, // The regular expression to use to trim row IDs
83
+ serializeParamName: null, // If you want to specify another parameter name instead of the table ID
84
+ dragHandle: null // If you give the name of a class here, then only Cells with this class will be draggable
85
+ }, options || {});
86
+ // Now make the rows draggable
87
+ jQuery.tableDnD.makeDraggable(this);
88
+ });
89
+
90
+ // Now we need to capture the mouse up and mouse move event
91
+ // We can use bind so that we don't interfere with other event handlers
92
+ jQuery(document)
93
+ .bind('mousemove', jQuery.tableDnD.mousemove)
94
+ .bind('mouseup', jQuery.tableDnD.mouseup);
95
+
96
+ // Don't break the chain
97
+ return this;
98
+ },
99
+
100
+ /** This function makes all the rows on the table draggable apart from those marked as "NoDrag" */
101
+ makeDraggable: function(table) {
102
+ var config = table.tableDnDConfig;
103
+ if (table.tableDnDConfig.dragHandle) {
104
+ // We only need to add the event to the specified cells
105
+ var cells = jQuery("td."+table.tableDnDConfig.dragHandle, table);
106
+ cells.each(function() {
107
+ // The cell is bound to "this"
108
+ jQuery(this).mousedown(function(ev) {
109
+ jQuery.tableDnD.dragObject = this.parentNode;
110
+ jQuery.tableDnD.currentTable = table;
111
+ jQuery.tableDnD.mouseOffset = jQuery.tableDnD.getMouseOffset(this, ev);
112
+ if (config.onDragStart) {
113
+ // Call the onDrop method if there is one
114
+ config.onDragStart(table, this);
115
+ }
116
+ return false;
117
+ });
118
+ })
119
+ } else {
120
+ // For backwards compatibility, we add the event to the whole row
121
+ var rows = jQuery("tr", table); // get all the rows as a wrapped set
122
+ rows.each(function() {
123
+ // Iterate through each row, the row is bound to "this"
124
+ var row = jQuery(this);
125
+ if (! row.hasClass("nodrag")) {
126
+ row.mousedown(function(ev) {
127
+ if (ev.target.tagName == "TD") {
128
+ jQuery.tableDnD.dragObject = this;
129
+ jQuery.tableDnD.currentTable = table;
130
+ jQuery.tableDnD.mouseOffset = jQuery.tableDnD.getMouseOffset(this, ev);
131
+ if (config.onDragStart) {
132
+ // Call the onDrop method if there is one
133
+ config.onDragStart(table, this);
134
+ }
135
+ return false;
136
+ }
137
+ }).css("cursor", "move"); // Store the tableDnD object
138
+ }
139
+ });
140
+ }
141
+ },
142
+
143
+ updateTables: function() {
144
+ this.each(function() {
145
+ // this is now bound to each matching table
146
+ if (this.tableDnDConfig) {
147
+ jQuery.tableDnD.makeDraggable(this);
148
+ }
149
+ })
150
+ },
151
+
152
+ /** Get the mouse coordinates from the event (allowing for browser differences) */
153
+ mouseCoords: function(ev){
154
+ if(ev.pageX || ev.pageY){
155
+ return {x:ev.pageX, y:ev.pageY};
156
+ }
157
+ return {
158
+ x:ev.clientX + document.body.scrollLeft - document.body.clientLeft,
159
+ y:ev.clientY + document.body.scrollTop - document.body.clientTop
160
+ };
161
+ },
162
+
163
+ /** Given a target element and a mouse event, get the mouse offset from that element.
164
+ To do this we need the element's position and the mouse position */
165
+ getMouseOffset: function(target, ev) {
166
+ ev = ev || window.event;
167
+
168
+ var docPos = this.getPosition(target);
169
+ var mousePos = this.mouseCoords(ev);
170
+ return {x:mousePos.x - docPos.x, y:mousePos.y - docPos.y};
171
+ },
172
+
173
+ /** Get the position of an element by going up the DOM tree and adding up all the offsets */
174
+ getPosition: function(e){
175
+ var left = 0;
176
+ var top = 0;
177
+ /** Safari fix -- thanks to Luis Chato for this! */
178
+ if (e.offsetHeight == 0) {
179
+ /** Safari 2 doesn't correctly grab the offsetTop of a table row
180
+ this is detailed here:
181
+ http://jacob.peargrove.com/blog/2006/technical/table-row-offsettop-bug-in-safari/
182
+ the solution is likewise noted there, grab the offset of a table cell in the row - the firstChild.
183
+ note that firefox will return a text node as a first child, so designing a more thorough
184
+ solution may need to take that into account, for now this seems to work in firefox, safari, ie */
185
+ e = e.firstChild; // a table cell
186
+ }
187
+
188
+ while (e.offsetParent){
189
+ left += e.offsetLeft;
190
+ top += e.offsetTop;
191
+ e = e.offsetParent;
192
+ }
193
+
194
+ left += e.offsetLeft;
195
+ top += e.offsetTop;
196
+
197
+ return {x:left, y:top};
198
+ },
199
+
200
+ mousemove: function(ev) {
201
+ if (jQuery.tableDnD.dragObject == null) {
202
+ return;
203
+ }
204
+
205
+ var dragObj = jQuery(jQuery.tableDnD.dragObject);
206
+ var config = jQuery.tableDnD.currentTable.tableDnDConfig;
207
+ var mousePos = jQuery.tableDnD.mouseCoords(ev);
208
+ var y = mousePos.y - jQuery.tableDnD.mouseOffset.y;
209
+ //auto scroll the window
210
+ var yOffset = window.pageYOffset;
211
+ if (document.all) {
212
+ // Windows version
213
+ //yOffset=document.body.scrollTop;
214
+ if (typeof document.compatMode != 'undefined' &&
215
+ document.compatMode != 'BackCompat') {
216
+ yOffset = document.documentElement.scrollTop;
217
+ }
218
+ else if (typeof document.body != 'undefined') {
219
+ yOffset=document.body.scrollTop;
220
+ }
221
+
222
+ }
223
+
224
+ if (mousePos.y-yOffset < config.scrollAmount) {
225
+ window.scrollBy(0, -config.scrollAmount);
226
+ } else {
227
+ var windowHeight = window.innerHeight ? window.innerHeight
228
+ : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
229
+ if (windowHeight-(mousePos.y-yOffset) < config.scrollAmount) {
230
+ window.scrollBy(0, config.scrollAmount);
231
+ }
232
+ }
233
+
234
+
235
+ if (y != jQuery.tableDnD.oldY) {
236
+ // work out if we're going up or down...
237
+ var movingDown = y > jQuery.tableDnD.oldY;
238
+ // update the old value
239
+ jQuery.tableDnD.oldY = y;
240
+ // update the style to show we're dragging
241
+ if (config.onDragClass) {
242
+ dragObj.addClass(config.onDragClass);
243
+ } else {
244
+ dragObj.css(config.onDragStyle);
245
+ }
246
+ // If we're over a row then move the dragged row to there so that the user sees the
247
+ // effect dynamically
248
+ var currentRow = jQuery.tableDnD.findDropTargetRow(dragObj, y);
249
+ if (currentRow) {
250
+ // TODO worry about what happens when there are multiple TBODIES
251
+ if (movingDown && jQuery.tableDnD.dragObject != currentRow) {
252
+ jQuery.tableDnD.dragObject.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow.nextSibling);
253
+ } else if (! movingDown && jQuery.tableDnD.dragObject != currentRow) {
254
+ jQuery.tableDnD.dragObject.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow);
255
+ }
256
+ }
257
+ }
258
+
259
+ return false;
260
+ },
261
+
262
+ /** We're only worried about the y position really, because we can only move rows up and down */
263
+ findDropTargetRow: function(draggedRow, y) {
264
+ var rows = jQuery.tableDnD.currentTable.rows;
265
+ for (var i=0; i<rows.length; i++) {
266
+ var row = rows[i];
267
+ var rowY = this.getPosition(row).y;
268
+ var rowHeight = parseInt(row.offsetHeight)/2;
269
+ if (row.offsetHeight == 0) {
270
+ rowY = this.getPosition(row.firstChild).y;
271
+ rowHeight = parseInt(row.firstChild.offsetHeight)/2;
272
+ }
273
+ // Because we always have to insert before, we need to offset the height a bit
274
+ if ((y > rowY - rowHeight) && (y < (rowY + rowHeight))) {
275
+ // that's the row we're over
276
+ // If it's the same as the current row, ignore it
277
+ if (row == draggedRow) {return null;}
278
+ var config = jQuery.tableDnD.currentTable.tableDnDConfig;
279
+ if (config.onAllowDrop) {
280
+ if (config.onAllowDrop(draggedRow, row)) {
281
+ return row;
282
+ } else {
283
+ return null;
284
+ }
285
+ } else {
286
+ // If a row has nodrop class, then don't allow dropping (inspired by John Tarr and Famic)
287
+ var nodrop = jQuery(row).hasClass("nodrop");
288
+ if (! nodrop) {
289
+ return row;
290
+ } else {
291
+ return null;
292
+ }
293
+ }
294
+ return row;
295
+ }
296
+ }
297
+ return null;
298
+ },
299
+
300
+ mouseup: function(e) {
301
+ if (jQuery.tableDnD.currentTable && jQuery.tableDnD.dragObject) {
302
+ var droppedRow = jQuery.tableDnD.dragObject;
303
+ var config = jQuery.tableDnD.currentTable.tableDnDConfig;
304
+ // If we have a dragObject, then we need to release it,
305
+ // The row will already have been moved to the right place so we just reset stuff
306
+ if (config.onDragClass) {
307
+ jQuery(droppedRow).removeClass(config.onDragClass);
308
+ } else {
309
+ jQuery(droppedRow).css(config.onDropStyle);
310
+ }
311
+ jQuery.tableDnD.dragObject = null;
312
+ if (config.onDrop) {
313
+ // Call the onDrop method if there is one
314
+ config.onDrop(jQuery.tableDnD.currentTable, droppedRow);
315
+ }
316
+ jQuery.tableDnD.currentTable = null; // let go of the table too
317
+ }
318
+ },
319
+
320
+ serialize: function() {
321
+ if (jQuery.tableDnD.currentTable) {
322
+ return jQuery.tableDnD.serializeTable(jQuery.tableDnD.currentTable);
323
+ } else {
324
+ return "Error: No Table id set, you need to set an id on your table and every row";
325
+ }
326
+ },
327
+
328
+ serializeTable: function(table) {
329
+ var result = "";
330
+ var tableId = table.id;
331
+ var rows = table.rows;
332
+ for (var i=0; i<rows.length; i++) {
333
+ if (result.length > 0) result += "&";
334
+ var rowId = rows[i].id;
335
+ if (rowId && rowId && table.tableDnDConfig && table.tableDnDConfig.serializeRegexp) {
336
+ rowId = rowId.match(table.tableDnDConfig.serializeRegexp)[0];
337
+ }
338
+
339
+ result += tableId + '[]=' + rowId;
340
+ }
341
+ return result;
342
+ },
343
+
344
+ serializeTables: function() {
345
+ var result = "";
346
+ this.each(function() {
347
+ // this is now bound to each matching table
348
+ result += jQuery.tableDnD.serializeTable(this);
349
+ });
350
+ return result;
351
+ }
352
+
353
+ }
354
+
355
+ jQuery.fn.extend(
356
+ {
357
+ tableDnD : jQuery.tableDnD.build,
358
+ tableDnDUpdate : jQuery.tableDnD.updateTables,
359
+ tableDnDSerialize: jQuery.tableDnD.serializeTables
360
+ }
361
+ );
362
+
363
+ /** END TableDnD plugin */
364
+
365
+
366
+ /**
367
+ * JS for displaying custom url for:
368
+ * * Profile page
369
+ * * Register page
370
+ * * Custom stylesheet
371
+ *
372
+ * @since 2.9.6
373
+ */
374
+ (function($) {
375
+ $(document).ready(function() {
376
+ if ($("#wpmem_logpage_select").val() == 'use_custom')
377
+ $("#wpmem_logpage_custom").show();
378
+ else
379
+ $("#wpmem_logpage_custom").hide();
380
+ if ($("#wpmem_regpage_select").val() == 'use_custom')
381
+ $("#wpmem_regpage_custom").show();
382
+ else
383
+ $("#wpmem_regpage_custom").hide();
384
+ if ($("#wpmem_mspage_select").val() == 'use_custom')
385
+ $("#wpmem_mspage_custom").show();
386
+ else
387
+ $("#wpmem_mspage_custom").hide();
388
+ if ($("#wpmem_stylesheet_select").val() == 'use_custom')
389
+ $("#wpmem_stylesheet_custom").show();
390
+ else
391
+ $("#wpmem_stylesheet_custom").hide();
392
+ $("#wpmem_logpage_select").change(function() {
393
+ if ($("#wpmem_logpage_select").val() == 'use_custom')
394
+ $("#wpmem_logpage_custom").show();
395
+ else
396
+ $("#wpmem_logpage_custom").hide();
397
+ });
398
+ $("#wpmem_regpage_select").change(function() {
399
+ if ($("#wpmem_regpage_select").val() == 'use_custom')
400
+ $("#wpmem_regpage_custom").show();
401
+ else
402
+ $("#wpmem_regpage_custom").hide();
403
+ });
404
+ $("#wpmem_mspage_select").change(function() {
405
+ if ($("#wpmem_mspage_select").val() == 'use_custom')
406
+ $("#wpmem_mspage_custom").show();
407
+ else
408
+ $("#wpmem_mspage_custom").hide();
409
+ });
410
+ $("#wpmem_stylesheet_select").change(function() {
411
+ if ($("#wpmem_stylesheet_select").val() == 'use_custom')
412
+ $("#wpmem_stylesheet_custom").show();
413
+ else
414
+ $("#wpmem_stylesheet_custom").hide();
415
+ });
416
+ });
417
+ })(jQuery);
418
+
419
+
420
+ /**
421
+ * JS for displaying additional info for checkbox/dropdowns
422
+ *
423
+ * @since 2.9.6
424
+ */
425
+ (function($) {
426
+ $(document).ready(function() {
427
+ $("#wpmem_checkbox_info").hide();
428
+ $("#wpmem_dropdown_info").hide();
429
+ });
430
+ $(document).ready(function() {
431
+ $("#wpmem_field_type_select").change(function() {
432
+ if ($("#wpmem_field_type_select").val() == 'checkbox')
433
+ $("#wpmem_checkbox_info").show();
434
+ else
435
+ $("#wpmem_checkbox_info").hide();
436
+ if ($("#wpmem_field_type_select").val() == 'select')
437
+ $("#wpmem_dropdown_info").show();
438
+ else
439
+ $("#wpmem_dropdown_info").hide();
440
+ });
441
+ });
442
+ })(jQuery);
js/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // there is nothing to see here! ?>
lang/wp-members-ca_CA.mo ADDED
Binary file
lang/wp-members-ca_CA.po ADDED
@@ -0,0 +1,1230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.9.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-18 12:35-0600\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 1.6.4\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/admin.php:60 admin/admin.php:129
23
+ msgid "Settings"
24
+ msgstr "Preferències"
25
+
26
+ #: admin/admin.php:187
27
+ msgid "Options"
28
+ msgstr "Opcions"
29
+
30
+ #: admin/admin.php:188
31
+ msgid "Fields"
32
+ msgstr "Camps"
33
+
34
+ #: admin/admin.php:189
35
+ msgid "Dialogs"
36
+ msgstr "Diàlegs"
37
+
38
+ #: admin/admin.php:190
39
+ msgid "Emails"
40
+ msgstr "Emails"
41
+
42
+ #: admin/dialogs.php:109
43
+ msgid ""
44
+ "Your WP settings allow anyone to register - this is not the recommended "
45
+ "setting."
46
+ msgstr ""
47
+ "La seva configuració de WP permet que qualsevol persona pugui registrar-se, "
48
+ "això no és el més recomenat. "
49
+
50
+ #: admin/dialogs.php:110
51
+ #, php-format
52
+ msgid ""
53
+ "You can %s change this here %s making sure the box next to \"Anyone can "
54
+ "register\" is unchecked."
55
+ msgstr ""
56
+ "Pot %s canviar això aquí %s revistant la casella \"Qualsevol pot registrar-se"
57
+ "\" està demercada."
58
+
59
+ #: admin/dialogs.php:111
60
+ msgid ""
61
+ "This setting allows a link on the /wp-login.php page to register using the "
62
+ "WP native registration process thus circumventing any registration you are "
63
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
64
+ "but most users should uncheck this option. If you do not change this "
65
+ "setting, you can choose to ignore these warning messages under WP-Members "
66
+ "Settings."
67
+ msgstr ""
68
+ "La configuració permet un enllaç a /wp-login.php per registra-se usant el "
69
+ "procés WP i així eludir qualsevol registre que utilitzem amb WP-Members. En "
70
+ "alguns casos, pot ser útil, però la majoria de vegades aquesta opció ha "
71
+ "d'estar desactivada. Si decideix deixar la configuració aixó, pot escollir "
72
+ "ignorar els missatges d'alerta en la configuració de WP-Members."
73
+
74
+ #: admin/dialogs.php:117
75
+ msgid ""
76
+ "Your WP settings allow anyone to comment - this is not the recommended "
77
+ "setting."
78
+ msgstr ""
79
+ "La seva configuració de WP permet a qualsevol fer comentaris, això no és el "
80
+ "més recomenat. "
81
+
82
+ #: admin/dialogs.php:118
83
+ #, php-format
84
+ msgid ""
85
+ "You can %s change this here %s by checking the box next to \"Users must be "
86
+ "registered and logged in to comment.\""
87
+ msgstr ""
88
+ "Pot %s canviar %s això marcant la casella al costat de \"Els usuaris han "
89
+ "d'estar registrats i connectats per fer comentaris.\""
90
+
91
+ #: admin/dialogs.php:119
92
+ msgid ""
93
+ "This setting allows any users to comment, whether or not they are "
94
+ "registered. Depending on how you are using WP-Members will determine whether "
95
+ "you should change this setting or not. If you do not change this setting, "
96
+ "you can choose to ignore these warning messages under WP-Members Settings."
97
+ msgstr ""
98
+ "Aquesta condició permet a qualsevol usuari comentar, estigui o no registrat. "
99
+ "Depenen de com estigui usant el WP-Members haurà de canviar aquesta opció. "
100
+ "Si decideix deixar la configuració així, pot marcar \"ignorar els missatges "
101
+ "d'alerta en el panell la configuració de WP-Members."
102
+
103
+ #: admin/dialogs.php:125
104
+ msgid ""
105
+ "Your WP settings allow full text rss feeds - this is not the recommended "
106
+ "setting."
107
+ msgstr ""
108
+ "La teva configuració de WP permet textos complets en el canal RSS, això no "
109
+ "és el més recomenat."
110
+
111
+ #: admin/dialogs.php:126
112
+ #, php-format
113
+ msgid ""
114
+ "You can %s change this here %s by changing \"For each article in a feed, show"
115
+ "\" to \"Summary.\""
116
+ msgstr ""
117
+ "Pots %s canviar això aquí %s per canviar-ho \"Per a cada article en una "
118
+ "font , mostra\" el \"Resum.\""
119
+
120
+ #: admin/dialogs.php:127
121
+ msgid ""
122
+ "Leaving this set to full text allows anyone to read your protected content "
123
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
124
+ "only show summary text."
125
+ msgstr ""
126
+ "Deixant l'opció a text complet permet a qualsevol llegir el text del seu "
127
+ "contingut protegit amb un lector de RSS. Canviar això evita aquesta "
128
+ "possibilitat."
129
+
130
+ #: admin/dialogs.php:133
131
+ msgid "You have set WP-Members to hold registrations for approval"
132
+ msgstr ""
133
+ "Ha configurat WP-Members perquè els nous registres estiguin retinguts fins "
134
+ "que siguin aprovats. "
135
+
136
+ #: admin/dialogs.php:134
137
+ msgid ""
138
+ "but you have not changed the default message for \"Registration Completed\" "
139
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
140
+ "message to let users know they are pending approval."
141
+ msgstr ""
142
+ "però no ha canviat el missatge per defecte per \"Registre Complet\" a \"WP-"
143
+ "Members Diàlegs i Missatges d'Error.\" Heu de canviar aquest missatge perquè "
144
+ "els usuaris sàpiguen que estan pendents d'aprovació."
145
+
146
+ #: admin/dialogs.php:140
147
+ msgid "You have set WP-Members to turn off the registration process"
148
+ msgstr "Ha configurat WP-Members per desactivar el procés de registre "
149
+
150
+ #: admin/dialogs.php:141
151
+ msgid ""
152
+ "but you also set to moderate and/or email admin new registrations. You will "
153
+ "need to set up a registration page for users to register."
154
+ msgstr ""
155
+ "però també s'estableix com a moderador i/o l'administrador email per a nous "
156
+ "registres. Necessiteu establir una pàgina de registres pels usuaris que "
157
+ "vulguin registrar-se"
158
+
159
+ #: admin/dialogs.php:147
160
+ msgid "You have turned on reCAPTCHA"
161
+ msgstr "Ha activat reCAPTCHA, el sistema per prevenir registres falsos."
162
+
163
+ #: admin/dialogs.php:148
164
+ msgid ""
165
+ "but you have not entered API keys. You will need both a public and private "
166
+ "key. The CAPTCHA will not display unless a valid API key is included."
167
+ msgstr ""
168
+ "però no ha introduit les claus API. Necessitaràs una clau pública i privada. "
169
+ "El CAPTCHA no es mostrarà si no es mostra una clau API vàlida."
170
+
171
+ #: admin/dialogs.php:171
172
+ msgid "Version:"
173
+ msgstr "Versió:"
174
+
175
+ #: admin/dialogs.php:172
176
+ msgid "Quick Start Guide"
177
+ msgstr ""
178
+
179
+ #: admin/dialogs.php:173
180
+ msgid "Online User Guide"
181
+ msgstr ""
182
+
183
+ #: admin/dialogs.php:174
184
+ msgid "FAQs"
185
+ msgstr ""
186
+
187
+ #: admin/dialogs.php:181
188
+ msgid "Thank you for using WP-Members"
189
+ msgstr "Gràcies per utilitzar WP-Members"
190
+
191
+ #: admin/dialogs.php:182
192
+ msgid "A plugin developed by"
193
+ msgstr ""
194
+
195
+ #: admin/dialogs.php:183
196
+ msgid "Follow"
197
+ msgstr "Continuar:"
198
+
199
+ #: admin/dialogs.php:200 admin/dialogs.php:204
200
+ msgid "Latest from RocketGeek"
201
+ msgstr ""
202
+
203
+ #: admin/dialogs.php:221 admin/dialogs.php:234
204
+ msgid "Latest from ButlerBlog"
205
+ msgstr ""
206
+
207
+ #: admin/post.php:36 admin/post.php:38
208
+ msgid "Block"
209
+ msgstr "Bloquejar"
210
+
211
+ #: admin/post.php:37 admin/post.php:39
212
+ msgid "Unblock"
213
+ msgstr ""
214
+
215
+ #: admin/post.php:120
216
+ #, php-format
217
+ msgid "%s posts %sed."
218
+ msgstr ""
219
+
220
+ #: admin/post.php:138
221
+ msgid "Post Restriction"
222
+ msgstr "Restricció de l'anunci"
223
+
224
+ #: admin/post.php:145
225
+ msgid "Page Restriction"
226
+ msgstr "Pàgina Restricció"
227
+
228
+ #: admin/post.php:263 admin/post.php:295
229
+ msgid "Unblocked?"
230
+ msgstr "Desbloquejat?"
231
+
232
+ #: admin/post.php:263 admin/post.php:295
233
+ msgid "Blocked?"
234
+ msgstr "Bloquejat?"
235
+
236
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
237
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
238
+ msgid "Need help?"
239
+ msgstr ""
240
+
241
+ #: admin/tab-captcha.php:46
242
+ msgid "Manage reCAPTCHA Options"
243
+ msgstr "Gestionar les opcions de reCAPTCHA"
244
+
245
+ #: admin/tab-captcha.php:60
246
+ msgid ""
247
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
248
+ "while blocking spam on your blog."
249
+ msgstr ""
250
+ "reCAPTCHA és un servei gratuit i accessible que ajuda als registres digitals "
251
+ "mentre bloqueja el spam del seu blog."
252
+
253
+ #: admin/tab-captcha.php:61
254
+ #, php-format
255
+ msgid ""
256
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
257
+ "that they are a human. This verifies that they are not a spambot while also "
258
+ "correcting the automatic scans of old books. So you get less spam, and the "
259
+ "world gets accurately digitized books. Everybody wins! For details, visit "
260
+ "the %s reCAPTCHA website%s"
261
+ msgstr ""
262
+ "reCAPTCHA pregunta als usuaris una clau de dues paraules mostrades en una "
263
+ "imatge com a prova de que som humans. Això verifica que no som robots de "
264
+ "spam inscrivint-nos automàticament. Així s'aconseguirà menys spam i més "
265
+ "exactitud en els registres. Tothom hi guanya! Per a més informació, visiteu "
266
+ "el %s lloc web de reCAPTCHA %s"
267
+
268
+ #: admin/tab-captcha.php:66
269
+ msgid "reCAPTCHA Keys"
270
+ msgstr "Claus de reCAPTCHA"
271
+
272
+ #: admin/tab-captcha.php:68
273
+ #, php-format
274
+ msgid ""
275
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
276
+ "key. You can sign up for a %s free reCAPTCHA key%s"
277
+ msgstr ""
278
+ "reCAPTCHA requereix una clau d'encriptació pública y privada. Pot apuntar-se "
279
+ "per %s per aconseguir claus gratuïtes%s."
280
+
281
+ #: admin/tab-captcha.php:69
282
+ msgid "Public Key"
283
+ msgstr "Clau pública"
284
+
285
+ #: admin/tab-captcha.php:70
286
+ msgid "Private Key"
287
+ msgstr "Clau privada"
288
+
289
+ #: admin/tab-captcha.php:74
290
+ msgid "Choose Theme"
291
+ msgstr "Escull el tema"
292
+
293
+ #: admin/tab-captcha.php:77
294
+ msgid "Red"
295
+ msgstr "Vermell"
296
+
297
+ #: admin/tab-captcha.php:78
298
+ msgid "White"
299
+ msgstr "Blanc"
300
+
301
+ #: admin/tab-captcha.php:79
302
+ msgid "Black Glass"
303
+ msgstr "Negre cristall"
304
+
305
+ #: admin/tab-captcha.php:80
306
+ msgid "Clean"
307
+ msgstr "Clar"
308
+
309
+ #: admin/tab-captcha.php:112
310
+ msgid "Characters for image"
311
+ msgstr ""
312
+
313
+ #: admin/tab-captcha.php:116
314
+ msgid "Number of characters"
315
+ msgstr ""
316
+
317
+ #: admin/tab-captcha.php:120
318
+ msgid "Image dimensions"
319
+ msgstr ""
320
+
321
+ #: admin/tab-captcha.php:124
322
+ msgid "Font color of characters"
323
+ msgstr ""
324
+
325
+ #: admin/tab-captcha.php:128
326
+ msgid "Background color of image"
327
+ msgstr ""
328
+
329
+ #: admin/tab-captcha.php:132
330
+ msgid "Font size"
331
+ msgstr ""
332
+
333
+ #: admin/tab-captcha.php:136
334
+ msgid "Width between characters"
335
+ msgstr ""
336
+
337
+ #: admin/tab-captcha.php:140
338
+ msgid "Image type"
339
+ msgstr "Tipus d'Imatge"
340
+
341
+ #: admin/tab-captcha.php:154
342
+ msgid ""
343
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
344
+ "installed and activated."
345
+ msgstr ""
346
+
347
+ #: admin/tab-captcha.php:166
348
+ msgid "Update CAPTCHA Settings"
349
+ msgstr "Actualizar configuració de CAPTCHA"
350
+
351
+ #: admin/tab-captcha.php:230
352
+ msgid "CAPTCHA was updated for WP-Members"
353
+ msgstr "CAPTCHA s'ha actualitzat per WP-Members"
354
+
355
+ #: admin/tab-dialogs.php:29
356
+ msgid "Restricted post (or page), displays above the login/registration form"
357
+ msgstr ""
358
+ "Les entrades (o pàgines) bloquejades mostren sempre el formulari "
359
+ "d'identificació/registre"
360
+
361
+ #: admin/tab-dialogs.php:30
362
+ msgid "Username is taken"
363
+ msgstr "El nom d'usuari ja està en ús"
364
+
365
+ #: admin/tab-dialogs.php:31
366
+ msgid "Email is registered"
367
+ msgstr "L'email ja està registrat"
368
+
369
+ #: admin/tab-dialogs.php:32
370
+ msgid "Registration completed"
371
+ msgstr "Registre complet"
372
+
373
+ #: admin/tab-dialogs.php:33
374
+ msgid "User update"
375
+ msgstr "Actualitza l'usuari"
376
+
377
+ #: admin/tab-dialogs.php:34
378
+ msgid "Passwords did not match"
379
+ msgstr "Les contrasenyes no coincideixen"
380
+
381
+ #: admin/tab-dialogs.php:35
382
+ msgid "Password changes"
383
+ msgstr "Canvi de contrasenya"
384
+
385
+ #: admin/tab-dialogs.php:36
386
+ msgid "Username or email do not exist when trying to reset forgotten password"
387
+ msgstr ""
388
+ "L'usuari o email no existeixen quan intentem restablir la contrasenya "
389
+ "oblidada "
390
+
391
+ #: admin/tab-dialogs.php:37
392
+ msgid "Password reset"
393
+ msgstr "Contrasenya restablerta"
394
+
395
+ #: admin/tab-dialogs.php:54
396
+ msgid "Dialogs and Error Messages"
397
+ msgstr "Diàlegs i missatges d'error"
398
+
399
+ #: admin/tab-dialogs.php:56
400
+ #, php-format
401
+ msgid ""
402
+ "You can customize the text for dialogs and error messages. Simple HTML is "
403
+ "allowed %s etc."
404
+ msgstr ""
405
+ "Pot personalitzar els textes pels diàlegs i els missatges d'error. Es permet "
406
+ "HTML simple %s etc."
407
+
408
+ #: admin/tab-dialogs.php:69
409
+ msgid "Terms of Service (TOS)"
410
+ msgstr "Condicions d'ús"
411
+
412
+ #: admin/tab-dialogs.php:76
413
+ msgid "Update Dialogs"
414
+ msgstr "Actualitza els diàlegs"
415
+
416
+ #: admin/tab-dialogs.php:115
417
+ msgid "WP-Members dialogs were updated"
418
+ msgstr "Els diàlegs de WP-Members s'han actualitzat"
419
+
420
+ #: admin/tab-emails.php:30
421
+ msgid "New Registration"
422
+ msgstr "Nou registre"
423
+
424
+ #: admin/tab-emails.php:34
425
+ msgid "Registration is Moderated"
426
+ msgstr "Registre complet"
427
+
428
+ #: admin/tab-emails.php:35
429
+ msgid "Registration is Moderated, User is Approved"
430
+ msgstr "El seu registre ha estat aprovat"
431
+
432
+ #: admin/tab-emails.php:40
433
+ msgid "Password Reset"
434
+ msgstr "Contrasenya reiniciada"
435
+
436
+ #: admin/tab-emails.php:45
437
+ msgid "Admin Notification"
438
+ msgstr "Notificació de l'administrador"
439
+
440
+ #: admin/tab-emails.php:50
441
+ msgid "Email Signature"
442
+ msgstr "Signatura email"
443
+
444
+ #: admin/tab-emails.php:57
445
+ msgid "Email Messages"
446
+ msgstr "Missatges d'email"
447
+
448
+ #: admin/tab-emails.php:60
449
+ msgid "You can customize the content of the emails sent by the plugin."
450
+ msgstr "Pots personalitzar el contingut dels emails enviats per el plugin."
451
+
452
+ #: admin/tab-emails.php:62
453
+ msgid "A list of shortcodes is available here."
454
+ msgstr "En aquesta pàgina podeu trobar una llista de codis."
455
+
456
+ #: admin/tab-emails.php:69
457
+ msgid "Set a custom email address"
458
+ msgstr "Configureu una adreça de correu electrònic personalitzada"
459
+
460
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
461
+ msgid "(optional)"
462
+ msgstr "(opcional)"
463
+
464
+ #: admin/tab-emails.php:73
465
+ msgid "Set a custom email name"
466
+ msgstr "Establiu un nom de correu electrònic personalitzat"
467
+
468
+ #: admin/tab-emails.php:84
469
+ msgid "Subject"
470
+ msgstr "Assumpte"
471
+
472
+ #: admin/tab-emails.php:88
473
+ msgid "Body"
474
+ msgstr "Cos"
475
+
476
+ #: admin/tab-emails.php:105
477
+ msgid "Update Emails"
478
+ msgstr "Actualizar emails"
479
+
480
+ #: admin/tab-emails.php:161
481
+ msgid "WP-Members emails were updated"
482
+ msgstr "Els emails de WP-Members s'han actualitzat"
483
+
484
+ #: admin/tab-fields.php:166
485
+ msgid "WP-Members fields were updated"
486
+ msgstr "Els camps dels WP-Members s'han actualitzat"
487
+
488
+ #: admin/tab-fields.php:176
489
+ msgid "Field Label is required for adding a new field. Nothing was updated."
490
+ msgstr ""
491
+ "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha actualitzat."
492
+
493
+ #: admin/tab-fields.php:177
494
+ msgid "Option Name is required for adding a new field. Nothing was updated."
495
+ msgstr ""
496
+ "L'opció del Nom és requereix per incloure un nou camp. Res s'ha actualitzat."
497
+
498
+ #: admin/tab-fields.php:184
499
+ msgid "A field with that option name already exists"
500
+ msgstr ""
501
+
502
+ #: admin/tab-fields.php:201
503
+ msgid "Checked value is required for checkboxes. Nothing was updated."
504
+ msgstr ""
505
+ "Es requereix etiqueta del camp per afegir un nou camp. Res s'ha actualitzat."
506
+
507
+ #: admin/tab-fields.php:223
508
+ msgid "field was added"
509
+ msgstr "es va afegir camp"
510
+
511
+ #: admin/tab-fields.php:241
512
+ msgid "field was updated"
513
+ msgstr "camp s'actualitza"
514
+
515
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
516
+ msgid "Edit Field"
517
+ msgstr "Edita Camp"
518
+
519
+ #: admin/tab-fields.php:289
520
+ msgid "Add a Field"
521
+ msgstr "Afegir un camp"
522
+
523
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
524
+ msgid "Field Label"
525
+ msgstr "Etiqueta del camp"
526
+
527
+ #: admin/tab-fields.php:297
528
+ msgid "The name of the field as it will be displayed to the user."
529
+ msgstr ""
530
+
531
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
532
+ msgid "Option Name"
533
+ msgstr "Opcions"
534
+
535
+ #: admin/tab-fields.php:306
536
+ msgid ""
537
+ "The database meta value for the field. It must be unique and contain no "
538
+ "spaces (underscores are ok)."
539
+ msgstr ""
540
+
541
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
542
+ msgid "Field Type"
543
+ msgstr "Tipus de camp"
544
+
545
+ #: admin/tab-fields.php:316
546
+ msgid "text"
547
+ msgstr "text"
548
+
549
+ #: admin/tab-fields.php:317
550
+ msgid "textarea"
551
+ msgstr "àrea de text"
552
+
553
+ #: admin/tab-fields.php:318
554
+ msgid "checkbox"
555
+ msgstr "checkbox"
556
+
557
+ #: admin/tab-fields.php:319
558
+ msgid "dropdown"
559
+ msgstr "desplegable"
560
+
561
+ #: admin/tab-fields.php:320
562
+ msgid "password"
563
+ msgstr "Contrasenya "
564
+
565
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
566
+ msgid "Display?"
567
+ msgstr "Mostrar?"
568
+
569
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
570
+ msgid "Required?"
571
+ msgstr "Obligatori?"
572
+
573
+ #: admin/tab-fields.php:334
574
+ msgid "Additional information for checkbox fields"
575
+ msgstr "Informació addicional per als camps de casella de verificació"
576
+
577
+ #: admin/tab-fields.php:337
578
+ msgid "Checked by default?"
579
+ msgstr "Marcada per defecte?"
580
+
581
+ #: admin/tab-fields.php:341
582
+ msgid "Stored value if checked:"
583
+ msgstr "Valor emmagatzemat si s'activa:"
584
+
585
+ #: admin/tab-fields.php:347
586
+ msgid "Additional information for dropdown fields"
587
+ msgstr "Informació addicional per als camps desplegables"
588
+
589
+ #: admin/tab-fields.php:350
590
+ msgid "For dropdown, array of values:"
591
+ msgstr "Pel desplegable, valors:"
592
+
593
+ #: admin/tab-fields.php:375
594
+ msgid "Options should be Option Name|option_value,"
595
+ msgstr "Les opcions han de ser Option Name|option_value,"
596
+
597
+ #: admin/tab-fields.php:379
598
+ msgid "Visit plugin site for more information"
599
+ msgstr "Per a més informació visita la pàgina del plugin "
600
+
601
+ #: admin/tab-fields.php:385
602
+ msgid "Add Field"
603
+ msgstr "afegir camp"
604
+
605
+ #: admin/tab-fields.php:407
606
+ msgid "Manage Fields"
607
+ msgstr "Gestionar camps"
608
+
609
+ #: admin/tab-fields.php:409
610
+ msgid ""
611
+ "Determine which fields will display and which are required. This includes "
612
+ "all fields, both native WP fields and WP-Members custom fields."
613
+ msgstr ""
614
+ "Determina quins camps es mostraran i quins són obligatoris. Això inclou tots "
615
+ "els camps, els natius de WP com els creats a WP-Members."
616
+
617
+ #: admin/tab-fields.php:410
618
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
619
+ msgstr "(Nota: el camp email és obligatori, no pot canviar-se)"
620
+
621
+ #: admin/tab-fields.php:415
622
+ msgid "Add/Delete"
623
+ msgstr "Inclou/Suprimeix"
624
+
625
+ #: admin/tab-fields.php:421
626
+ msgid "Checked?"
627
+ msgstr "Comprovat?"
628
+
629
+ #: admin/tab-fields.php:423
630
+ msgid "Users Screen"
631
+ msgstr ""
632
+
633
+ #: admin/tab-fields.php:435
634
+ msgid "Delete"
635
+ msgstr "Suprimeix"
636
+
637
+ #: admin/tab-fields.php:447
638
+ msgid "(Email cannot be removed)"
639
+ msgstr "(Nota: el camp de l'email és obligatori, no es pot canviar)"
640
+
641
+ #: admin/tab-fields.php:467
642
+ msgid "Registration Date"
643
+ msgstr "Data de Registre"
644
+
645
+ #: admin/tab-fields.php:470
646
+ msgid "native"
647
+ msgstr ""
648
+
649
+ #: admin/tab-fields.php:480
650
+ msgid "Active"
651
+ msgstr "Activar"
652
+
653
+ #: admin/tab-fields.php:492
654
+ msgid "Registration IP"
655
+ msgstr "Adreça IP"
656
+
657
+ #: admin/tab-fields.php:527
658
+ msgid "Update Fields"
659
+ msgstr "Actualitzar camps"
660
+
661
+ #: admin/tab-options.php:48
662
+ msgid "Manage Options"
663
+ msgstr "Configurar opcions"
664
+
665
+ #: admin/tab-options.php:54
666
+ msgid "Block Posts by default"
667
+ msgstr "Bloquejar entrades per defecte"
668
+
669
+ #: admin/tab-options.php:54
670
+ msgid ""
671
+ "Note: Posts can still be individually blocked or unblocked at the article "
672
+ "level"
673
+ msgstr ""
674
+ "Nota: les entrades poden ser bloquejades o desbloquejades a nivell d'article"
675
+
676
+ #: admin/tab-options.php:55
677
+ msgid "Block Pages by default"
678
+ msgstr "Bloquejar pàgines per defecte"
679
+
680
+ #: admin/tab-options.php:55
681
+ msgid ""
682
+ "Note: Pages can still be individually blocked or unblocked at the article "
683
+ "level"
684
+ msgstr ""
685
+ "Nota: les pàgines encara poden ser bloquejades o no bloquejades a nivell "
686
+ "d'article"
687
+
688
+ #: admin/tab-options.php:56
689
+ msgid "Show excerpts"
690
+ msgstr "Mostra resums"
691
+
692
+ #: admin/tab-options.php:56
693
+ msgid ""
694
+ "Shows excerpted content above the login/registration on both Posts and Pages"
695
+ msgstr ""
696
+ "Mostra resums de contingut sobre el formulari d'accés, tant en entrades com "
697
+ "en pàgines"
698
+
699
+ #: admin/tab-options.php:57
700
+ msgid "Notify admin"
701
+ msgstr "Notificar a l'administrador"
702
+
703
+ #: admin/tab-options.php:57
704
+ #, php-format
705
+ msgid "Notify %s for each new registration? %s"
706
+ msgstr "Enviar un email a %s per a cada nou registre? %s"
707
+
708
+ #: admin/tab-options.php:58
709
+ msgid "Moderate registration"
710
+ msgstr "Confirmar registre"
711
+
712
+ #: admin/tab-options.php:58
713
+ msgid "Holds new registrations for admin approval"
714
+ msgstr "Els nous registres seran aprovats per l'administrador"
715
+
716
+ #: admin/tab-options.php:91
717
+ msgid "Enable CAPTCHA"
718
+ msgstr "Permetre CAPTCHA"
719
+
720
+ #: admin/tab-options.php:59
721
+ msgid "Turns on CAPTCHA for registration"
722
+ msgstr "Activa CAPTCHA pel registre"
723
+
724
+ #: admin/tab-options.php:60
725
+ msgid "Hide registration"
726
+ msgstr "Amaga registre"
727
+
728
+ #: admin/tab-options.php:60
729
+ msgid "Removes the registration form from blocked content"
730
+ msgstr ""
731
+
732
+ #: admin/tab-options.php:62
733
+ msgid "Time-based expiration"
734
+ msgstr "Venciment en funció del temps"
735
+
736
+ #: admin/tab-options.php:62
737
+ msgid "Allows for access to expire"
738
+ msgstr "Permet que l'accés expiri"
739
+
740
+ #: admin/tab-options.php:63
741
+ msgid "Trial period"
742
+ msgstr "Període de prova"
743
+
744
+ #: admin/tab-options.php:63
745
+ msgid "Allows for a trial period"
746
+ msgstr "Permet un període de prova"
747
+
748
+ #: admin/tab-options.php:64
749
+ msgid "Ignore warning messages"
750
+ msgstr "Ignorar missatges d'advertència"
751
+
752
+ #: admin/tab-options.php:64
753
+ msgid "Ignores WP-Members warning messages in the admin panel"
754
+ msgstr "Ignorar missatges de perill de WP-Members en el panell d'administració"
755
+
756
+ #: admin/tab-options.php:81
757
+ msgid "Attribution"
758
+ msgstr ""
759
+
760
+ #: admin/tab-options.php:83
761
+ msgid ""
762
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
763
+ msgstr ""
764
+
765
+ #: admin/tab-options.php:87
766
+ msgid "Auto Excerpt:"
767
+ msgstr "Acte Extracte:"
768
+
769
+ #: admin/tab-options.php:88
770
+ msgid "Number of words in excerpt:"
771
+ msgstr ""
772
+
773
+ #: admin/tab-options.php:88 admin/tab-options.php:108
774
+ #: admin/tab-options.php:118 admin/tab-options.php:132
775
+ msgid "Optional"
776
+ msgstr "Opcional"
777
+
778
+ #: admin/tab-options.php:88
779
+ msgid "Automatically creates an excerpt"
780
+ msgstr ""
781
+
782
+ #: admin/tab-options.php:103
783
+ msgid "User Profile Page:"
784
+ msgstr "Fitxa d'usuari de la pàgina:"
785
+
786
+ #: admin/tab-options.php:106
787
+ msgid "For creating a forgot password link in the login form"
788
+ msgstr ""
789
+
790
+ #: admin/tab-options.php:113
791
+ msgid "Register Page:"
792
+ msgstr "Registrar la URL de la pàgina"
793
+
794
+ #: admin/tab-options.php:116
795
+ msgid "For creating a register link in the login form"
796
+ msgstr ""
797
+
798
+ #: admin/tab-options.php:126
799
+ msgid "Select a stylesheet or specify a custom stylesheet below"
800
+ msgstr ""
801
+
802
+ #: admin/tab-options.php:131
803
+ msgid "Custom Stylesheet:"
804
+ msgstr ""
805
+
806
+ #: admin/tab-options.php:136
807
+ msgid "Update Settings"
808
+ msgstr "Actualizar configuració"
809
+
810
+ #: admin/tab-options.php:246
811
+ msgid "WP-Members settings were updated"
812
+ msgstr "La configuració de WP-Members s'ha actualitzat"
813
+
814
+ #: admin/tab-options.php:296
815
+ msgid "Select a page"
816
+ msgstr ""
817
+
818
+ #: admin/tab-options.php:304
819
+ msgid "USE CUSTOM URL BELOW"
820
+ msgstr ""
821
+
822
+ #: admin/user-export.php:57 admin/user-export.php:172
823
+ msgid "Activated?"
824
+ msgstr "Activa?"
825
+
826
+ #: admin/user-export.php:61 admin/user-export.php:175
827
+ msgid "Subscription"
828
+ msgstr "Subscripció"
829
+
830
+ #: admin/user-export.php:61 admin/user-export.php:175
831
+ msgid "Expires"
832
+ msgstr "Expira"
833
+
834
+ #: admin/user-export.php:64 admin/user-export.php:178
835
+ msgid "Registered"
836
+ msgstr "Registrat"
837
+
838
+ #: admin/user-export.php:65 admin/user-export.php:179
839
+ msgid "IP"
840
+ msgstr "IP"
841
+
842
+ #: admin/user-profile.php:46
843
+ msgid "WP-Members Additional Fields"
844
+ msgstr "WP-Members camps adicionals"
845
+
846
+ #: admin/user-profile.php:66 native-registration.php:36
847
+ #: native-registration.php:159 users.php:62
848
+ msgid "(required)"
849
+ msgstr "(requerit)"
850
+
851
+ #: admin/user-profile.php:98
852
+ msgid "Activate this user?"
853
+ msgstr "Activar usuari?"
854
+
855
+ #: admin/user-profile.php:103
856
+ msgid "Reactivate this user?"
857
+ msgstr "Voleu tornar a activar aquest usuari?"
858
+
859
+ #: admin/user-profile.php:108
860
+ msgid "Deactivate this user?"
861
+ msgstr "Desactivar usuari?"
862
+
863
+ #: admin/user-profile.php:129
864
+ msgid "IP @ registration"
865
+ msgstr "Adreça IP"
866
+
867
+ #: admin/users.php:45 admin/users.php:49
868
+ msgid "Export"
869
+ msgstr "Exportar"
870
+
871
+ #: admin/users.php:50 admin/users.php:91
872
+ msgid "Export All Users"
873
+ msgstr "Exportar tots els usuaris"
874
+
875
+ #: forms.php:95
876
+ msgid "Existing Users Log In"
877
+ msgstr "Usuaris Existents Entrada"
878
+
879
+ #: forms.php:161 wp-members-dialogs.php:192
880
+ msgid "Change Password"
881
+ msgstr "Canvia la contrasenya"
882
+
883
+ #: forms.php:163
884
+ msgid "Update Password"
885
+ msgstr "Actualitza la contrasenya"
886
+
887
+ #: forms.php:227
888
+ msgid "Reset Forgotten Password"
889
+ msgstr "Reinicia la contrasenya oblidada"
890
+
891
+ #: forms.php:403
892
+ msgid "Forgot password?"
893
+ msgstr "Has oblidat la contrasenya?"
894
+
895
+ #: forms.php:403
896
+ msgid "Click here to reset"
897
+ msgstr "Prem aquí per reiniciar"
898
+
899
+ #: forms.php:418
900
+ msgid "New User?"
901
+ msgstr "Nou usuari?"
902
+
903
+ #: forms.php:418
904
+ msgid "Click here to register"
905
+ msgstr "Prem aquí per registrar-te"
906
+
907
+ #: forms.php:515
908
+ msgid "Required field"
909
+ msgstr "Camp obligatori"
910
+
911
+ #: forms.php:521
912
+ msgid "Reset Form"
913
+ msgstr "Restablir el Formulari"
914
+
915
+ #: forms.php:523
916
+ msgid "Update Profile"
917
+ msgstr "Actualitzar Perfil"
918
+
919
+ #: forms.php:561
920
+ msgid "Choose a Username"
921
+ msgstr "Escull un nom d'usuari"
922
+
923
+ #: forms.php:683 native-registration.php:65
924
+ #, php-format
925
+ msgid "Please indicate that you agree to the %s TOS %s"
926
+ msgstr ""
927
+ "Siusplau indiqueu que heu llegit i esteu d'acord amb les %s condicions d'ús "
928
+ "%s"
929
+
930
+ #: forms.php:852
931
+ msgid "New User Registration"
932
+ msgstr "Registre d'un nou usuari"
933
+
934
+ #: forms.php:1018
935
+ msgid "Input the code:"
936
+ msgstr ""
937
+
938
+ #: users.php:38
939
+ msgid "Additional Information"
940
+ msgstr "Informació Addicional"
941
+
942
+ #: wp-members-core.php:118 wp-members-core.php:245
943
+ msgid "There was an error with the CAPTCHA form."
944
+ msgstr "Hi hagut un error amb el formulari de CAPTCHA"
945
+
946
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
947
+ msgid "Edit Your Information"
948
+ msgstr "Edita la teva informació"
949
+
950
+ #: wp-members-core.php:544
951
+ msgid "<strong>ERROR</strong>: User has not been activated."
952
+ msgstr "<strong>ERROR</strong>: L'usuari no ha estat activat."
953
+
954
+ #: wp-members-core.php:903 wp-members-register.php:93
955
+ #, php-format
956
+ msgid "Sorry, %s is a required field."
957
+ msgstr "Disculpa, %s és un camp obligatori."
958
+
959
+ #: wp-members-dialogs.php:42
960
+ msgid "Login Failed!"
961
+ msgstr "¡Error d'identificació!"
962
+
963
+ #: wp-members-dialogs.php:45
964
+ msgid "You entered an invalid username or password."
965
+ msgstr "Ha introduit un nom d'usuari o una contrasenya incorrecta"
966
+
967
+ #: wp-members-dialogs.php:47
968
+ msgid "Click here to continue."
969
+ msgstr "Prem aquí per continuar."
970
+
971
+ #: wp-members-dialogs.php:191
972
+ msgid "Edit My Information"
973
+ msgstr "Editar la meva informació"
974
+
975
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
976
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
977
+ #: wp-members-sidebar.php:246
978
+ #, php-format
979
+ msgid "You are logged in as %s"
980
+ msgstr "S'ha identificat com %s"
981
+
982
+ #: wp-members-dialogs.php:208
983
+ msgid "Click to log out."
984
+ msgstr "Prem aquí per desconnectar-te"
985
+
986
+ #: wp-members-dialogs.php:209
987
+ msgid "Begin using the site."
988
+ msgstr "Comença a utilitzar el web"
989
+
990
+ #: wp-members-dialogs.php:225
991
+ msgid "Click to log out"
992
+ msgstr "Prem aquí per desconnectar-te"
993
+
994
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
995
+ msgid "click to log out"
996
+ msgstr "Prem aquí per desconnectar-te"
997
+
998
+ #: wp-members-dialogs.php:271
999
+ msgid "Password fields cannot be empty"
1000
+ msgstr "La contrasenya no coincideix"
1001
+
1002
+ #: wp-members-register.php:51
1003
+ msgid "There was an error processing the form."
1004
+ msgstr "Hi hagut un error amb el formulari"
1005
+
1006
+ #: wp-members-register.php:110
1007
+ msgid "Sorry, username is a required field"
1008
+ msgstr "Disculpa, el nom d'usuari és obligatori"
1009
+
1010
+ #: wp-members-register.php:111
1011
+ msgid "The username cannot include non-alphanumeric characters."
1012
+ msgstr "El nom d'usuari no pot contenir caràcters que no siguin alfanumèrics."
1013
+
1014
+ #: wp-members-register.php:112 wp-members-register.php:282
1015
+ msgid "You must enter a valid email address."
1016
+ msgstr "Heu d'introduir un adreça de correu electrònic vàlida"
1017
+
1018
+ #: wp-members-register.php:119
1019
+ msgid "Passwords did not match."
1020
+ msgstr "Les contrasenyes no coincideixen"
1021
+
1022
+ #: wp-members-register.php:120 wp-members-register.php:286
1023
+ msgid "Emails did not match."
1024
+ msgstr "Les correus electrònics no coincideixen"
1025
+
1026
+ #: wp-members-register.php:127
1027
+ msgid "You must complete the CAPTCHA form."
1028
+ msgstr "Heu de completar la paraula mostrada en la imatge"
1029
+
1030
+ #: wp-members-register.php:377
1031
+ msgid "We were unable to validate the public key."
1032
+ msgstr "No s'ha pogut validar la clau pública."
1033
+
1034
+ #: wp-members-register.php:381
1035
+ msgid "We were unable to validate the private key."
1036
+ msgstr "No s'ha pogut validar la clau privada."
1037
+
1038
+ #: wp-members-register.php:385
1039
+ msgid "The challenge parameter of the verify script was incorrect."
1040
+ msgstr "El paràmetre de verificació del script és incorrecte."
1041
+
1042
+ #: wp-members-register.php:389
1043
+ msgid "The CAPTCHA solution was incorrect."
1044
+ msgstr "La resolució de CAPTCHA és incorrecte."
1045
+
1046
+ #: wp-members-register.php:393
1047
+ msgid "The parameters to verify were incorrect"
1048
+ msgstr "Els paràmetres a verificar són incorrectes"
1049
+
1050
+ #: wp-members-register.php:397
1051
+ msgid ""
1052
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1053
+ msgstr ""
1054
+ "Les claus de reCAPTCHA van associades a un domini específic per raons de "
1055
+ "seguretat. "
1056
+
1057
+ #: wp-members-register.php:401
1058
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1059
+ msgstr "El servidor de reCAPTCHA no respond, siusplau intenta-ho de nou."
1060
+
1061
+ #: wp-members-register.php:405
1062
+ msgid "You have entered an incorrect code value. Please try again."
1063
+ msgstr ""
1064
+
1065
+ #: wp-members-sidebar.php:117
1066
+ msgid "Login Failed!<br />You entered an invalid username or password."
1067
+ msgstr ""
1068
+ "Identificació fallada! <br />Has introduit un nom d'usuari o una contrasenya "
1069
+ "incorrectes."
1070
+
1071
+ #: wp-members-sidebar.php:118
1072
+ msgid "You are not logged in."
1073
+ msgstr "No ha entrat en"
1074
+
1075
+ #: wp-members-sidebar.php:169
1076
+ msgid "log in"
1077
+ msgstr "Identifica't"
1078
+
1079
+ #: wp-members-sidebar.php:180
1080
+ msgid "Forgot?"
1081
+ msgstr "Has oblidat la contrasenya?"
1082
+
1083
+ #: wp-members-sidebar.php:247
1084
+ msgid "click here to log out"
1085
+ msgstr "Prem aquí per desconnectar-te"
1086
+
1087
+ #: wp-members-sidebar.php:279
1088
+ msgid "Displays the WP-Members sidebar login."
1089
+ msgstr ""
1090
+
1091
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1092
+ msgid "Login Status"
1093
+ msgstr "Estat de la identificació"
1094
+
1095
+ #: wp-members-sidebar.php:299
1096
+ msgid "Title:"
1097
+ msgstr "Titol:"
1098
+
1099
+ #: wp-members-tos.php:24
1100
+ msgid "Terms of Service"
1101
+ msgstr "Condicions d'us"
1102
+
1103
+ #: wp-members-tos.php:36
1104
+ #, php-format
1105
+ msgid "%sclose%s"
1106
+ msgstr "%stanca%s"
1107
+
1108
+ #: wp-members-tos.php:38
1109
+ #, php-format
1110
+ msgid "%sprint%s"
1111
+ msgstr "%simprimeix%s"
1112
+
1113
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1114
+ #: Strings wp-members-install.php:49
1115
+ msgid "First Name"
1116
+ msgstr "Nom"
1117
+
1118
+ #: wp-members-install.php:50
1119
+ msgid "Last Name"
1120
+ msgstr "Cognoms"
1121
+
1122
+ #: wp-members-install.php:51
1123
+ msgid "Address 1"
1124
+ msgstr "Adreça (línia 1)"
1125
+
1126
+ #: wp-members-install.php:52
1127
+ msgid "Address 2"
1128
+ msgstr "Adreça (línia 2)"
1129
+
1130
+ #: wp-members-install.php:53
1131
+ msgid "City"
1132
+ msgstr "Ciutat"
1133
+
1134
+ #: wp-members-install.php:54
1135
+ msgid "State"
1136
+ msgstr "Província"
1137
+
1138
+ #: wp-members-install.php:55
1139
+ msgid "Zip"
1140
+ msgstr "CP"
1141
+
1142
+ #: wp-members-install.php:56
1143
+ msgid "Country"
1144
+ msgstr "País"
1145
+
1146
+ #: wp-members-install.php:57
1147
+ msgid "Day Phone"
1148
+ msgstr "Telèfon"
1149
+
1150
+ #: wp-members-install.php:59
1151
+ msgid "Website"
1152
+ msgstr "Lloc web"
1153
+
1154
+ #: wp-members-install.php:60
1155
+ msgid "AIM"
1156
+ msgstr "AIM"
1157
+
1158
+ #: wp-members-install.php:61
1159
+ msgid "Yahoo IM"
1160
+ msgstr "Yahoo IM"
1161
+
1162
+ #: wp-members-install.php:62
1163
+ msgid "Jabber/Google Talk"
1164
+ msgstr "Jabber/Google Talk"
1165
+
1166
+ #: wp-members-install.php:63
1167
+ msgid "Biographical Info"
1168
+ msgstr "Informació biogràfica"
1169
+
1170
+ #: wp-members-install.php:64 wp-members-install.php:211
1171
+ msgid "TOS"
1172
+ msgstr "Condicions d'ús"
1173
+
1174
+ #: Error message dialog strings wp-members-install.php:96
1175
+ msgid ""
1176
+ "This content is restricted to site members. If you are an existing user, "
1177
+ "please log in. New users may register below."
1178
+ msgstr ""
1179
+ "Aquest contingut és exclussiu pels usuaris registrats. Si ja ets un usuari "
1180
+ "registrat, siusplau identifica't. Si és un nou usuari, siusplau registra't. "
1181
+
1182
+ #: wp-members-install.php:97
1183
+ msgid "Sorry, that username is taken, please try another."
1184
+ msgstr ""
1185
+ "Ho sentim, aquest nom d'usuari ja està agafat, siusplau prova'n un altre. "
1186
+
1187
+ #: wp-members-install.php:98
1188
+ msgid ""
1189
+ "Sorry, that email address already has an account.<br />Please try another."
1190
+ msgstr "Ho sentim, aquest email ja està agafat, siusplau prova'n un altre. "
1191
+
1192
+ #: wp-members-install.php:99
1193
+ msgid ""
1194
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1195
+ "log in using the password that was emailed to you."
1196
+ msgstr ""
1197
+ "Felicitats! El procés de registre s'ha completat. <br /><br />Pots iniciar "
1198
+ "la sessió identifican-te amb la contrasenya que ha estat enviada a la teva "
1199
+ "adreça de correu. "
1200
+
1201
+ #: wp-members-install.php:100
1202
+ msgid "Your information was updated!"
1203
+ msgstr "La teva informació ha estat actualitzada!"
1204
+
1205
+ #: wp-members-install.php:101
1206
+ msgid "Passwords did not match.<br /><br />Please try again."
1207
+ msgstr ""
1208
+ "Les contrasenyes no coincideixen<br /><br />Siusplau intenta-ho de nou."
1209
+
1210
+ #: wp-members-install.php:102
1211
+ msgid ""
1212
+ "Password successfully changed!<br /><br />You will need to re-login with "
1213
+ "your new password."
1214
+ msgstr ""
1215
+ "La contrasenya s'ha canviat correctament!. <br/><br/> Hauràs de tornar-te "
1216
+ "identificar utilitzant la nova contrasenya."
1217
+
1218
+ #: wp-members-install.php:103
1219
+ msgid "Either the username or email address do not exist in our records."
1220
+ msgstr "El nom d'usuari o email no existeixen en la nostra base de dades."
1221
+
1222
+ #: wp-members-install.php:104
1223
+ msgid ""
1224
+ "Password successfully reset!<br /><br />An email containing a new password "
1225
+ "has been sent to the email address on file for your account. You may change "
1226
+ "this random password then re-login with your new password."
1227
+ msgstr ""
1228
+ "La contrasenya ha estat restablerta correctament<br /><br /> Li enviarem un "
1229
+ "email amb la nova contrasenya a l'adreça que ha registrat. Podrà canviar la "
1230
+ "contrasenya a l'atzar i després iniciar la sessió amb una nova contrasenya."
lang/wp-members-cs_CZ.mo ADDED
Binary file
lang/wp-members-cs_CZ.po ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-18 12:37-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "Language: cs\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 1.6.4\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17
+
18
+ #: admin/admin.php:60 admin/admin.php:129
19
+ msgid "Settings"
20
+ msgstr "Nastavení"
21
+
22
+ #: admin/admin.php:187
23
+ msgid "Options"
24
+ msgstr "Možnosti"
25
+
26
+ #: admin/admin.php:188
27
+ msgid "Fields"
28
+ msgstr "Pole"
29
+
30
+ #: admin/admin.php:189
31
+ msgid "Dialogs"
32
+ msgstr "Dialogy"
33
+
34
+ #: admin/admin.php:190
35
+ msgid "Emails"
36
+ msgstr "E-maily"
37
+
38
+ #: admin/dialogs.php:109
39
+ msgid ""
40
+ "Your WP settings allow anyone to register - this is not the recommended "
41
+ "setting."
42
+ msgstr "Nastavení WP umožňuje registrovat se každému - to se nedoporučuje."
43
+
44
+ #: admin/dialogs.php:110
45
+ #, php-format
46
+ msgid ""
47
+ "You can %s change this here %s making sure the box next to \"Anyone can "
48
+ "register\" is unchecked."
49
+ msgstr ""
50
+ "Můžete %s to změnit zde %s odškrtnutím políčka u \"Každý se může registrovat"
51
+ "\"."
52
+
53
+ #: admin/dialogs.php:111
54
+ msgid ""
55
+ "This setting allows a link on the /wp-login.php page to register using the "
56
+ "WP native registration process thus circumventing any registration you are "
57
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
58
+ "but most users should uncheck this option. If you do not change this "
59
+ "setting, you can choose to ignore these warning messages under WP-Members "
60
+ "Settings."
61
+ msgstr ""
62
+ "Toto nastavení povoluje na stránce /wp-login.php registraci za použití "
63
+ "vlastního registračního postupu WordPressu, což obchází veškerou registraci "
64
+ "pomocí WP-Members. To v některých případech možná vyhovuje požadavkům či "
65
+ "potřebám uživatelů, ale většina uživatelů by měla tuto možnost odškrtnout. "
66
+ "Pokud toto nastavení nezměníte, můžete si v nastaveních WP-Member vybrat "
67
+ "ignorování této varovné zprávy."
68
+
69
+ #: admin/dialogs.php:117
70
+ msgid ""
71
+ "Your WP settings allow anyone to comment - this is not the recommended "
72
+ "setting."
73
+ msgstr "Nastavení WP umožňuje vkládat komentáře každému - to se nedoporučuje."
74
+
75
+ #: admin/dialogs.php:118
76
+ #, php-format
77
+ msgid ""
78
+ "You can %s change this here %s by checking the box next to \"Users must be "
79
+ "registered and logged in to comment.\""
80
+ msgstr ""
81
+ "Můžete %s to změnit zde %s zaškrtnutím políčka u \"Pro vkládání komentářů se "
82
+ "uživatelé musí registrovat a přihlásit\"."
83
+
84
+ #: admin/dialogs.php:119
85
+ msgid ""
86
+ "This setting allows any users to comment, whether or not they are "
87
+ "registered. Depending on how you are using WP-Members will determine whether "
88
+ "you should change this setting or not. If you do not change this setting, "
89
+ "you can choose to ignore these warning messages under WP-Members Settings."
90
+ msgstr ""
91
+ "Toto nastavení umožňuje uživatelům vkládat komentáře, ať už se registrovali, "
92
+ "nebo ne. Zda byste měli změnit toto nastavení závisí na tom, jak používáte "
93
+ "WP-Members. Pokud toto nastavení nezměníte, můžete si v nastaveních WP-"
94
+ "Member vybrat ignorování této varovné zprávy."
95
+
96
+ #: admin/dialogs.php:125
97
+ msgid ""
98
+ "Your WP settings allow full text rss feeds - this is not the recommended "
99
+ "setting."
100
+ msgstr "Nastavení WP umožňuje plný text kanálů RSS - to se nedoporučuje."
101
+
102
+ #: admin/dialogs.php:126
103
+ #, php-format
104
+ msgid ""
105
+ "You can %s change this here %s by changing \"For each article in a feed, show"
106
+ "\" to \"Summary.\""
107
+ msgstr ""
108
+ "Můžete %s to změnit zde %s změnou \"Pro každý článek v kanálu zobraz\" na "
109
+ "\"Souhrn\"."
110
+
111
+ #: admin/dialogs.php:127
112
+ msgid ""
113
+ "Leaving this set to full text allows anyone to read your protected content "
114
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
115
+ "only show summary text."
116
+ msgstr ""
117
+ "Pokud toto necháte nastaveno na plný text, umožníte každému číst váš "
118
+ "chráněný obsah v čtečce RSS. Pokud toto změníte na Souhrn, zamezíte tomu, "
119
+ "protože vaše kanály budou zobrazovat jen souhrnný text."
120
+
121
+ #: admin/dialogs.php:133
122
+ msgid "You have set WP-Members to hold registrations for approval"
123
+ msgstr "Nastavili jste, že WP-Members má registrace předkládat ke schválení"
124
+
125
+ #: admin/dialogs.php:134
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
+ "ale nezměnili jste výchozí zprávu pro \"Registrace dokončena\" pod \"Dialogy "
132
+ "a chybové zprávy WP-Members\". Měli byste tuto zprávu změnit, aby uživatelé "
133
+ "věděli, že čekají na schválení."
134
+
135
+ #: admin/dialogs.php:140
136
+ msgid "You have set WP-Members to turn off the registration process"
137
+ msgstr "Nastavili jste, aby WP-Members vypnul registrační postup."
138
+
139
+ #: admin/dialogs.php:141
140
+ msgid ""
141
+ "but you also set to moderate and/or email admin new registrations. You will "
142
+ "need to set up a registration page for users to register."
143
+ msgstr ""
144
+ "ale také jste nastavili moderování a/nebo zasílání nových registrací "
145
+ "administrátorovi. Aby se uživatelé mohli registrovat, je potřeba, abyste "
146
+ "nastavili registrační stránku."
147
+
148
+ #: admin/dialogs.php:147
149
+ msgid "You have turned on reCAPTCHA"
150
+ msgstr "Povolili jste reCAPTCHA"
151
+
152
+ #: admin/dialogs.php:148
153
+ msgid ""
154
+ "but you have not entered API keys. You will need both a public and private "
155
+ "key. The CAPTCHA will not display unless a valid API key is included."
156
+ msgstr ""
157
+ "ale nezadali jste klíče API. Potřebujete veřejný i soukromý klíč. CAPTCHA se "
158
+ "nebude zobrazovat, dokud nebude zadán platný klíč API."
159
+
160
+ #: admin/dialogs.php:171
161
+ msgid "Version:"
162
+ msgstr "Verze:"
163
+
164
+ #: admin/dialogs.php:172
165
+ msgid "Quick Start Guide"
166
+ msgstr "Uživatelská příručka Začínáme"
167
+
168
+ #: admin/dialogs.php:173
169
+ msgid "Online User Guide"
170
+ msgstr "Uživatelská příručka online"
171
+
172
+ #: admin/dialogs.php:174
173
+ msgid "FAQs"
174
+ msgstr "Často kladené dotazy"
175
+
176
+ #: admin/dialogs.php:181
177
+ msgid "Thank you for using WP-Members"
178
+ msgstr "Děkujeme vám, že používáte WP-Members"
179
+
180
+ #: admin/dialogs.php:182
181
+ msgid "A plugin developed by"
182
+ msgstr "Vývojář pluginu:"
183
+
184
+ #: admin/dialogs.php:183
185
+ msgid "Follow"
186
+ msgstr "Následovat"
187
+
188
+ #: admin/dialogs.php:200 admin/dialogs.php:204
189
+ msgid "Latest from RocketGeek"
190
+ msgstr "Nejnovější z RocketGeeku"
191
+
192
+ #: admin/dialogs.php:221 admin/dialogs.php:234
193
+ msgid "Latest from ButlerBlog"
194
+ msgstr "Nejnovější z ButlerBlogu"
195
+
196
+ #: admin/post.php:36 admin/post.php:38
197
+ msgid "Block"
198
+ msgstr "Ve výchozím nastavení blokuje příspěvky"
199
+
200
+ #: admin/post.php:37 admin/post.php:39
201
+ msgid "Unblock"
202
+ msgstr "Neblokováno?"
203
+
204
+ #: admin/post.php:120
205
+ #, php-format
206
+ msgid "%s posts %sed."
207
+ msgstr ""
208
+
209
+ #: admin/post.php:138
210
+ msgid "Post Restriction"
211
+ msgstr "Omezení příspěvku"
212
+
213
+ #: admin/post.php:145
214
+ msgid "Page Restriction"
215
+ msgstr "Omezení stránky"
216
+
217
+ #: admin/post.php:263 admin/post.php:295
218
+ msgid "Unblocked?"
219
+ msgstr "Neblokováno?"
220
+
221
+ #: admin/post.php:263 admin/post.php:295
222
+ msgid "Blocked?"
223
+ msgstr "Blokováno?"
224
+
225
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
226
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
227
+ msgid "Need help?"
228
+ msgstr "Potřebujete pomoc?"
229
+
230
+ #: admin/tab-captcha.php:46
231
+ msgid "Manage reCAPTCHA Options"
232
+ msgstr "Spravovat možnosti reCAPTCHA"
233
+
234
+ #: admin/tab-captcha.php:60
235
+ msgid ""
236
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
237
+ "while blocking spam on your blog."
238
+ msgstr ""
239
+ "reCAPTCHA je bezplatná, přístupná služba CAPTCHA, která pomáhá digitalizovat "
240
+ "knihy a zároveň zamezuje spamu na vašem blogu."
241
+
242
+ #: admin/tab-captcha.php:61
243
+ #, php-format
244
+ msgid ""
245
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
246
+ "that they are a human. This verifies that they are not a spambot while also "
247
+ "correcting the automatic scans of old books. So you get less spam, and the "
248
+ "world gets accurately digitized books. Everybody wins! For details, visit "
249
+ "the %s reCAPTCHA website%s"
250
+ msgstr ""
251
+ "reCAPTCHA vyžaduje, aby komentátoři přepsali dvě slova naskenovaná z knihy, "
252
+ "a tak osvědčili, že jsou lidmi. Tímto se ověřuje, že to nejsou spamboti, a "
253
+ "zároveň se tím opravují automatické skeny starých knih. Takže dostáváte méně "
254
+ "spamu a svět bude mít přesněji digitalizované knihy. Vyhrává každý! Další "
255
+ "informace získáte na %s webových stránkách reCAPTCHA%s"
256
+
257
+ #: admin/tab-captcha.php:66
258
+ msgid "reCAPTCHA Keys"
259
+ msgstr "Klíče reCAPTCHA"
260
+
261
+ #: admin/tab-captcha.php:68
262
+ #, php-format
263
+ msgid ""
264
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
265
+ "key. You can sign up for a %s free reCAPTCHA key%s"
266
+ msgstr ""
267
+ "reCAPTCHA potřebuje klíč API, který sestává z \"veřejného\" a \"soukromého\" "
268
+ "klíče. Můžete si zažádat o %s klíč reCAPTCHA zdarma%s"
269
+
270
+ #: admin/tab-captcha.php:69
271
+ msgid "Public Key"
272
+ msgstr "Veřejný klíč"
273
+
274
+ #: admin/tab-captcha.php:70
275
+ msgid "Private Key"
276
+ msgstr "Soukromý klíč"
277
+
278
+ #: admin/tab-captcha.php:74
279
+ msgid "Choose Theme"
280
+ msgstr "Vyberte si téma"
281
+
282
+ #: admin/tab-captcha.php:77
283
+ msgid "Red"
284
+ msgstr "Červený"
285
+
286
+ #: admin/tab-captcha.php:78
287
+ msgid "White"
288
+ msgstr "Bílý"
289
+
290
+ #: admin/tab-captcha.php:79
291
+ msgid "Black Glass"
292
+ msgstr "Černé sklo"
293
+
294
+ #: admin/tab-captcha.php:80
295
+ msgid "Clean"
296
+ msgstr "Čistý"
297
+
298
+ #: admin/tab-captcha.php:112
299
+ msgid "Characters for image"
300
+ msgstr "Typ pole"
301
+
302
+ #: admin/tab-captcha.php:116
303
+ msgid "Number of characters"
304
+ msgstr "Počet slov ve výtažku:"
305
+
306
+ #: admin/tab-captcha.php:120
307
+ msgid "Image dimensions"
308
+ msgstr "Typ pole"
309
+
310
+ #: admin/tab-captcha.php:124
311
+ msgid "Font color of characters"
312
+ msgstr "Počet slov ve výtažku:"
313
+
314
+ #: admin/tab-captcha.php:128
315
+ msgid "Background color of image"
316
+ msgstr "Typ pole"
317
+
318
+ #: admin/tab-captcha.php:132
319
+ msgid "Font size"
320
+ msgstr ""
321
+
322
+ #: admin/tab-captcha.php:136
323
+ msgid "Width between characters"
324
+ msgstr "Počet slov ve výtažku:"
325
+
326
+ #: admin/tab-captcha.php:140
327
+ msgid "Image type"
328
+ msgstr "Typ pole"
329
+
330
+ #: admin/tab-captcha.php:154
331
+ msgid ""
332
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
333
+ "installed and activated."
334
+ msgstr ""
335
+
336
+ #: admin/tab-captcha.php:166
337
+ msgid "Update CAPTCHA Settings"
338
+ msgstr "Aktualizovat nastavení reCAPTCHA"
339
+
340
+ #: admin/tab-captcha.php:230
341
+ msgid "CAPTCHA was updated for WP-Members"
342
+ msgstr "reCAPTCHA byla pro WP-Members aktualizována"
343
+
344
+ #: admin/tab-dialogs.php:29
345
+ msgid "Restricted post (or page), displays above the login/registration form"
346
+ msgstr ""
347
+ "Omezený příspěvek (nebo stránka), zobrazuje se nad přihlašovacím či "
348
+ "registračním formulářem"
349
+
350
+ #: admin/tab-dialogs.php:30
351
+ msgid "Username is taken"
352
+ msgstr "Uživatelské jméno se už používá"
353
+
354
+ #: admin/tab-dialogs.php:31
355
+ msgid "Email is registered"
356
+ msgstr "E-mail je registrován"
357
+
358
+ #: admin/tab-dialogs.php:32
359
+ msgid "Registration completed"
360
+ msgstr "Registrace dokončena"
361
+
362
+ #: admin/tab-dialogs.php:33
363
+ msgid "User update"
364
+ msgstr "Aktualizace uživatele"
365
+
366
+ #: admin/tab-dialogs.php:34
367
+ msgid "Passwords did not match"
368
+ msgstr "Hesla nesouhlasí"
369
+
370
+ #: admin/tab-dialogs.php:35
371
+ msgid "Password changes"
372
+ msgstr "Heslo se mění"
373
+
374
+ #: admin/tab-dialogs.php:36
375
+ msgid "Username or email do not exist when trying to reset forgotten password"
376
+ msgstr ""
377
+ "Uživatelské jméno nebo e-mail použité při pokusu o znovunastavení "
378
+ "zapomenutého hesla neexistují"
379
+
380
+ #: admin/tab-dialogs.php:37
381
+ msgid "Password reset"
382
+ msgstr "Znovunastavení hesla"
383
+
384
+ #: admin/tab-dialogs.php:54
385
+ msgid "Dialogs and Error Messages"
386
+ msgstr "Dialogy a chybové zprávy"
387
+
388
+ #: admin/tab-dialogs.php:56
389
+ #, php-format
390
+ msgid ""
391
+ "You can customize the text for dialogs and error messages. Simple HTML is "
392
+ "allowed %s etc."
393
+ msgstr ""
394
+ "Můžete změnit text dialogů a chybových zpráv. Je povoleno prosté HTML %s atd."
395
+
396
+ #: admin/tab-dialogs.php:69
397
+ msgid "Terms of Service (TOS)"
398
+ msgstr "Podmínky služby"
399
+
400
+ #: admin/tab-dialogs.php:76
401
+ msgid "Update Dialogs"
402
+ msgstr "Aktualizovat dialogy"
403
+
404
+ #: admin/tab-dialogs.php:115
405
+ msgid "WP-Members dialogs were updated"
406
+ msgstr "Diaogy WP-Members byly aktualizovány"
407
+
408
+ #: admin/tab-emails.php:30
409
+ msgid "New Registration"
410
+ msgstr "Registrace nového uživatele"
411
+
412
+ #: admin/tab-emails.php:34
413
+ msgid "Registration is Moderated"
414
+ msgstr "Registrace je moderována"
415
+
416
+ #: admin/tab-emails.php:35
417
+ msgid "Registration is Moderated, User is Approved"
418
+ msgstr "Registrace je moderována, uživatel je schvalován"
419
+
420
+ #: admin/tab-emails.php:40
421
+ msgid "Password Reset"
422
+ msgstr "Znovunastavení hesla"
423
+
424
+ #: admin/tab-emails.php:45
425
+ msgid "Admin Notification"
426
+ msgstr "Upozornění administrátora"
427
+
428
+ #: admin/tab-emails.php:50
429
+ msgid "Email Signature"
430
+ msgstr "E-mailový podpis"
431
+
432
+ #: admin/tab-emails.php:57
433
+ msgid "Email Messages"
434
+ msgstr "E-mailové zprávy"
435
+
436
+ #: admin/tab-emails.php:60
437
+ msgid "You can customize the content of the emails sent by the plugin."
438
+ msgstr "Můžete změnit obsah e-mailů, které plugin zasílá."
439
+
440
+ #: admin/tab-emails.php:62
441
+ msgid "A list of shortcodes is available here."
442
+ msgstr "Seznam zkratek je k dispozici zde."
443
+
444
+ #: admin/tab-emails.php:69
445
+ msgid "Set a custom email address"
446
+ msgstr "Nastav vlastní e-mailovou adresu"
447
+
448
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
449
+ msgid "(optional)"
450
+ msgstr "(volitelné)"
451
+
452
+ #: admin/tab-emails.php:73
453
+ msgid "Set a custom email name"
454
+ msgstr "Nastav vlastní e-mailové jméno"
455
+
456
+ #: admin/tab-emails.php:84
457
+ msgid "Subject"
458
+ msgstr "Předmět"
459
+
460
+ #: admin/tab-emails.php:88
461
+ msgid "Body"
462
+ msgstr "Tělo"
463
+
464
+ #: admin/tab-emails.php:105
465
+ msgid "Update Emails"
466
+ msgstr "Aktualizovat e-maily"
467
+
468
+ #: admin/tab-emails.php:161
469
+ msgid "WP-Members emails were updated"
470
+ msgstr "E-maily WP-Members byly aktualizovány"
471
+
472
+ #: admin/tab-fields.php:166
473
+ msgid "WP-Members fields were updated"
474
+ msgstr "Pole WP-Members byla aktualizována"
475
+
476
+ #: admin/tab-fields.php:176
477
+ msgid "Field Label is required for adding a new field. Nothing was updated."
478
+ msgstr ""
479
+ "Při přidání nového pole se vyžaduje jeho popisek. Nic se neaktualizovalo."
480
+
481
+ #: admin/tab-fields.php:177
482
+ msgid "Option Name is required for adding a new field. Nothing was updated."
483
+ msgstr ""
484
+ "Při přidání nového pole se vyžaduje název možnosti. Nic se neaktualizovalo."
485
+
486
+ #: admin/tab-fields.php:184
487
+ msgid "A field with that option name already exists"
488
+ msgstr ""
489
+
490
+ #: admin/tab-fields.php:201
491
+ msgid "Checked value is required for checkboxes. Nothing was updated."
492
+ msgstr ""
493
+ "Pro zaškrtávací políčka je požadována zaškrtnutá hodnota. Nic se "
494
+ "neaktualizovalo."
495
+
496
+ #: admin/tab-fields.php:223
497
+ msgid "field was added"
498
+ msgstr "pole bylo přidáno"
499
+
500
+ #: admin/tab-fields.php:241
501
+ msgid "field was updated"
502
+ msgstr "pole bylo aktualizováno"
503
+
504
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
505
+ msgid "Edit Field"
506
+ msgstr "Upravit pole"
507
+
508
+ #: admin/tab-fields.php:289
509
+ msgid "Add a Field"
510
+ msgstr "Přidat pole"
511
+
512
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
513
+ msgid "Field Label"
514
+ msgstr "Popisek pole"
515
+
516
+ #: admin/tab-fields.php:297
517
+ msgid "The name of the field as it will be displayed to the user."
518
+ msgstr "Název pole, jak ho bude vidět uživatel."
519
+
520
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
521
+ msgid "Option Name"
522
+ msgstr "Název možnosti"
523
+
524
+ #: admin/tab-fields.php:306
525
+ msgid ""
526
+ "The database meta value for the field. It must be unique and contain no "
527
+ "spaces (underscores are ok)."
528
+ msgstr ""
529
+ "Databázová metahodnota pro toto pole. Musí být jedinečná a nesmí obsahovat "
530
+ "mezery (podtržítka ano)."
531
+
532
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
533
+ msgid "Field Type"
534
+ msgstr "Typ pole"
535
+
536
+ #: admin/tab-fields.php:316
537
+ msgid "text"
538
+ msgstr "text"
539
+
540
+ #: admin/tab-fields.php:317
541
+ msgid "textarea"
542
+ msgstr "textová oblast"
543
+
544
+ #: admin/tab-fields.php:318
545
+ msgid "checkbox"
546
+ msgstr "zaškrtávací políčko"
547
+
548
+ #: admin/tab-fields.php:319
549
+ msgid "dropdown"
550
+ msgstr "rozbalovací pole"
551
+
552
+ #: admin/tab-fields.php:320
553
+ msgid "password"
554
+ msgstr "heslo"
555
+
556
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
557
+ msgid "Display?"
558
+ msgstr "Zobrazovat?"
559
+
560
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
561
+ msgid "Required?"
562
+ msgstr "Požadováno?"
563
+
564
+ #: admin/tab-fields.php:334
565
+ msgid "Additional information for checkbox fields"
566
+ msgstr "Další informace pro zaškrtávací políčka"
567
+
568
+ #: admin/tab-fields.php:337
569
+ msgid "Checked by default?"
570
+ msgstr "Ve výchozím nastavení zaškrtnuto?"
571
+
572
+ #: admin/tab-fields.php:341
573
+ msgid "Stored value if checked:"
574
+ msgstr "Ukládaná hodnota, pokud je zaškrtnuto:"
575
+
576
+ #: admin/tab-fields.php:347
577
+ msgid "Additional information for dropdown fields"
578
+ msgstr "Další informace pro rozbalovací pole"
579
+
580
+ #: admin/tab-fields.php:350
581
+ msgid "For dropdown, array of values:"
582
+ msgstr "Výčet hodnot pro rozbalovací pole:"
583
+
584
+ #: admin/tab-fields.php:375
585
+ msgid "Options should be Option Name|option_value,"
586
+ msgstr "Možnosti by měly vypadat Název možnosti|hodnota_možnosti,"
587
+
588
+ #: admin/tab-fields.php:379
589
+ msgid "Visit plugin site for more information"
590
+ msgstr "Více informací se dozvíte na stránce pluginu"
591
+
592
+ #: admin/tab-fields.php:385
593
+ msgid "Add Field"
594
+ msgstr "Přidat pole"
595
+
596
+ #: admin/tab-fields.php:407
597
+ msgid "Manage Fields"
598
+ msgstr "Spravovat pole"
599
+
600
+ #: admin/tab-fields.php:409
601
+ msgid ""
602
+ "Determine which fields will display and which are required. This includes "
603
+ "all fields, both native WP fields and WP-Members custom fields."
604
+ msgstr ""
605
+ "Určete, která pole se zobrazí a která se budou vyžadovat. To je potřeba u "
606
+ "všech polí, jak u těch pocházejících z WP, tak u vlastních polí WP-Members."
607
+
608
+ #: admin/tab-fields.php:410
609
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
610
+ msgstr "(Poznámka: E-mailová adresa je vždy povinná a nemůže se změnit.)"
611
+
612
+ #: admin/tab-fields.php:415
613
+ msgid "Add/Delete"
614
+ msgstr "Přidat/smazat"
615
+
616
+ #: admin/tab-fields.php:421
617
+ msgid "Checked?"
618
+ msgstr "Zaškrtnuto?"
619
+
620
+ #: admin/tab-fields.php:423
621
+ msgid "Users Screen"
622
+ msgstr "Obrazovka uživatelů"
623
+
624
+ #: admin/tab-fields.php:435
625
+ msgid "Delete"
626
+ msgstr "Smazat"
627
+
628
+ #: admin/tab-fields.php:447
629
+ msgid "(Email cannot be removed)"
630
+ msgstr "(E-mailová adresa nemůže být odstraněna)"
631
+
632
+ #: admin/tab-fields.php:467
633
+ msgid "Registration Date"
634
+ msgstr "Datum registrace"
635
+
636
+ #: admin/tab-fields.php:470
637
+ msgid "native"
638
+ msgstr "původní"
639
+
640
+ #: admin/tab-fields.php:480
641
+ msgid "Active"
642
+ msgstr "Aktivní"
643
+
644
+ #: admin/tab-fields.php:492
645
+ msgid "Registration IP"
646
+ msgstr "IP při registraci"
647
+
648
+ #: admin/tab-fields.php:527
649
+ msgid "Update Fields"
650
+ msgstr "Aktualizovat pole"
651
+
652
+ #: admin/tab-options.php:48
653
+ msgid "Manage Options"
654
+ msgstr "Spravovat možnosti"
655
+
656
+ #: admin/tab-options.php:54
657
+ msgid "Block Posts by default"
658
+ msgstr "Ve výchozím nastavení blokuje příspěvky"
659
+
660
+ #: admin/tab-options.php:54
661
+ msgid ""
662
+ "Note: Posts can still be individually blocked or unblocked at the article "
663
+ "level"
664
+ msgstr ""
665
+ "Poznámka: Příspěvky mohou i tak být blokovány nebo zpřístupněny jednotlivě "
666
+ "na úrovni článků"
667
+
668
+ #: admin/tab-options.php:55
669
+ msgid "Block Pages by default"
670
+ msgstr "Ve výchozím nastavení blokuje stránky"
671
+
672
+ #: admin/tab-options.php:55
673
+ msgid ""
674
+ "Note: Pages can still be individually blocked or unblocked at the article "
675
+ "level"
676
+ msgstr ""
677
+ "Poznámka: Stránky mohou i tak být blokovány nebo zpřístupněny jednotlivě na "
678
+ "úrovni článků"
679
+
680
+ #: admin/tab-options.php:56
681
+ msgid "Show excerpts"
682
+ msgstr "Zobrazit výtažky"
683
+
684
+ #: admin/tab-options.php:56
685
+ msgid ""
686
+ "Shows excerpted content above the login/registration on both Posts and Pages"
687
+ msgstr ""
688
+ "Zobrazit obsah výtažku nad přihlašováním či registrací u příspěvků i stránek"
689
+
690
+ #: admin/tab-options.php:57
691
+ msgid "Notify admin"
692
+ msgstr "Upozornit administrátora"
693
+
694
+ #: admin/tab-options.php:57
695
+ #, php-format
696
+ msgid "Notify %s for each new registration? %s"
697
+ msgstr "Upozornit %s na každou novou registraci? %s"
698
+
699
+ #: admin/tab-options.php:58
700
+ msgid "Moderate registration"
701
+ msgstr "Moderovat registraci"
702
+
703
+ #: admin/tab-options.php:58
704
+ msgid "Holds new registrations for admin approval"
705
+ msgstr "Předloží nové registrace ke schválení administrátorovi"
706
+
707
+ #: admin/tab-options.php:91
708
+ msgid "Enable CAPTCHA"
709
+ msgstr "Použít CAPTCHA"
710
+
711
+ #: admin/tab-options.php:59
712
+ msgid "Turns on CAPTCHA for registration"
713
+ msgstr "Při registraci povolit CAPTCHA"
714
+
715
+ #: admin/tab-options.php:60
716
+ msgid "Hide registration"
717
+ msgstr "Skrýt registraci"
718
+
719
+ #: admin/tab-options.php:60
720
+ msgid "Removes the registration form from blocked content"
721
+ msgstr "Odstraní z blokovaného obsahu registrační formulář"
722
+
723
+ #: admin/tab-options.php:62
724
+ msgid "Time-based expiration"
725
+ msgstr "Vypršení na základě času"
726
+
727
+ #: admin/tab-options.php:62
728
+ msgid "Allows for access to expire"
729
+ msgstr "Umožňuje přístup, který vyprší"
730
+
731
+ #: admin/tab-options.php:63
732
+ msgid "Trial period"
733
+ msgstr "Zkušební období"
734
+
735
+ #: admin/tab-options.php:63
736
+ msgid "Allows for a trial period"
737
+ msgstr "Umožňuje zkušební období"
738
+
739
+ #: admin/tab-options.php:64
740
+ msgid "Ignore warning messages"
741
+ msgstr "Ignorovat varovné zprávy"
742
+
743
+ #: admin/tab-options.php:64
744
+ msgid "Ignores WP-Members warning messages in the admin panel"
745
+ msgstr "V administrátorském panelu ignoruje varovné zprávy WP-Members"
746
+
747
+ #: admin/tab-options.php:81
748
+ msgid "Attribution"
749
+ msgstr "Poděkování"
750
+
751
+ #: admin/tab-options.php:83
752
+ msgid ""
753
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
754
+ msgstr ""
755
+ "Uvítáme poděkování! Zobrazovat odkaz \"běží na\" na registračním formuláři?"
756
+
757
+ #: admin/tab-options.php:87
758
+ msgid "Auto Excerpt:"
759
+ msgstr "Automatický výtažek:"
760
+
761
+ #: admin/tab-options.php:88
762
+ msgid "Number of words in excerpt:"
763
+ msgstr "Počet slov ve výtažku:"
764
+
765
+ #: admin/tab-options.php:88 admin/tab-options.php:108
766
+ #: admin/tab-options.php:118 admin/tab-options.php:132
767
+ msgid "Optional"
768
+ msgstr "Volitelné"
769
+
770
+ #: admin/tab-options.php:88
771
+ msgid "Automatically creates an excerpt"
772
+ msgstr "Automaticky vytváří výtažek"
773
+
774
+ #: admin/tab-options.php:103
775
+ msgid "User Profile Page:"
776
+ msgstr "Stránka profilu uživatele:"
777
+
778
+ #: admin/tab-options.php:106
779
+ msgid "For creating a forgot password link in the login form"
780
+ msgstr "Pro vytvoření odkazu na zapomenuté heslo na přihlašovacím formuláři"
781
+
782
+ #: admin/tab-options.php:113
783
+ msgid "Register Page:"
784
+ msgstr "Stránka registrace:"
785
+
786
+ #: admin/tab-options.php:116
787
+ msgid "For creating a register link in the login form"
788
+ msgstr "Pro vytvoření odkazu na registraci na přihlašovacím formuláři"
789
+
790
+ #: admin/tab-options.php:126
791
+ msgid "Select a stylesheet or specify a custom stylesheet below"
792
+ msgstr "Vyberte si styl, nebo udejte níže vlastní styl"
793
+
794
+ #: admin/tab-options.php:131
795
+ msgid "Custom Stylesheet:"
796
+ msgstr "Vlastní styl:"
797
+
798
+ #: admin/tab-options.php:136
799
+ msgid "Update Settings"
800
+ msgstr "Aktualizovat nastavení"
801
+
802
+ #: admin/tab-options.php:246
803
+ msgid "WP-Members settings were updated"
804
+ msgstr "Nastavení WP-Members byla aktualizována"
805
+
806
+ #: admin/tab-options.php:296
807
+ msgid "Select a page"
808
+ msgstr "Vyberte stránku"
809
+
810
+ #: admin/tab-options.php:304
811
+ msgid "USE CUSTOM URL BELOW"
812
+ msgstr "Použít adresu URL zadanou níže"
813
+
814
+ #: admin/user-export.php:57 admin/user-export.php:172
815
+ msgid "Activated?"
816
+ msgstr "Aktivován?"
817
+
818
+ #: admin/user-export.php:61 admin/user-export.php:175
819
+ msgid "Subscription"
820
+ msgstr "Odběr"
821
+
822
+ #: admin/user-export.php:61 admin/user-export.php:175
823
+ msgid "Expires"
824
+ msgstr "Vyprší"
825
+
826
+ #: admin/user-export.php:64 admin/user-export.php:178
827
+ msgid "Registered"
828
+ msgstr "Registrován"
829
+
830
+ #: admin/user-export.php:65 admin/user-export.php:179
831
+ msgid "IP"
832
+ msgstr "Adresa IP"
833
+
834
+ #: admin/user-profile.php:46
835
+ msgid "WP-Members Additional Fields"
836
+ msgstr "Další pole WP-Members"
837
+
838
+ #: admin/user-profile.php:66 native-registration.php:36
839
+ #: native-registration.php:159 users.php:62
840
+ msgid "(required)"
841
+ msgstr "(požadováno)"
842
+
843
+ #: admin/user-profile.php:98
844
+ msgid "Activate this user?"
845
+ msgstr "Aktivovat tohoto uživatele?"
846
+
847
+ #: admin/user-profile.php:103
848
+ msgid "Reactivate this user?"
849
+ msgstr "Aktivovat tohoto uživatele znovu?"
850
+
851
+ #: admin/user-profile.php:108
852
+ msgid "Deactivate this user?"
853
+ msgstr "Deaktivovat tohoto uživatele?"
854
+
855
+ #: admin/user-profile.php:129
856
+ msgid "IP @ registration"
857
+ msgstr "IP při registraci"
858
+
859
+ #: admin/users.php:45 admin/users.php:49
860
+ msgid "Export"
861
+ msgstr "Exportovat"
862
+
863
+ #: admin/users.php:50 admin/users.php:91
864
+ msgid "Export All Users"
865
+ msgstr "Exportovat všechny uživatele"
866
+
867
+ #: forms.php:95
868
+ msgid "Existing Users Log In"
869
+ msgstr "Přihlášení existujících uživatelů"
870
+
871
+ #: forms.php:161 wp-members-dialogs.php:192
872
+ msgid "Change Password"
873
+ msgstr "Změnit heslo"
874
+
875
+ #: forms.php:163
876
+ msgid "Update Password"
877
+ msgstr "Aktualizovat heslo"
878
+
879
+ #: forms.php:227
880
+ msgid "Reset Forgotten Password"
881
+ msgstr "Znovunastavit zapomenuté heslo"
882
+
883
+ #: forms.php:403
884
+ msgid "Forgot password?"
885
+ msgstr "Zapomenuté heslo?"
886
+
887
+ #: forms.php:403
888
+ msgid "Click here to reset"
889
+ msgstr "Pro znovunastavení klikněte"
890
+
891
+ #: forms.php:418
892
+ msgid "New User?"
893
+ msgstr "Nový uživatel?"
894
+
895
+ #: forms.php:418
896
+ msgid "Click here to register"
897
+ msgstr "Pro registraci klikněte"
898
+
899
+ #: forms.php:515
900
+ msgid "Required field"
901
+ msgstr "Vyžadovaná položka"
902
+
903
+ #: forms.php:521
904
+ msgid "Reset Form"
905
+ msgstr "Formulář pro znovunastavení"
906
+
907
+ #: forms.php:523
908
+ msgid "Update Profile"
909
+ msgstr "Aktualizovat profil"
910
+
911
+ #: forms.php:561
912
+ msgid "Choose a Username"
913
+ msgstr "Uživatelské jméno"
914
+
915
+ #: forms.php:683 native-registration.php:65
916
+ #, php-format
917
+ msgid "Please indicate that you agree to the %s TOS %s"
918
+ msgstr "Prosíme, označte, že souhlasíte s %s Podmínkami služby %s"
919
+
920
+ #: forms.php:852
921
+ msgid "New User Registration"
922
+ msgstr "Registrace nového uživatele"
923
+
924
+ #: forms.php:1018
925
+ msgid "Input the code:"
926
+ msgstr ""
927
+
928
+ #: users.php:38
929
+ msgid "Additional Information"
930
+ msgstr "Další informace"
931
+
932
+ #: wp-members-core.php:118 wp-members-core.php:245
933
+ msgid "There was an error with the CAPTCHA form."
934
+ msgstr "U formuláře CAPTCHA se vyskytla chyba."
935
+
936
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
937
+ msgid "Edit Your Information"
938
+ msgstr "Upravte informace o sobě"
939
+
940
+ #: wp-members-core.php:544
941
+ msgid "<strong>ERROR</strong>: User has not been activated."
942
+ msgstr "<strong>CHYBA</strong>: Uživatel nebyl aktivován"
943
+
944
+ #: wp-members-core.php:903 wp-members-register.php:93
945
+ #, php-format
946
+ msgid "Sorry, %s is a required field."
947
+ msgstr "Omlouváme se, položka %s je vyžadována."
948
+
949
+ #: wp-members-dialogs.php:42
950
+ msgid "Login Failed!"
951
+ msgstr "Neúspěšné přihlášení"
952
+
953
+ #: wp-members-dialogs.php:45
954
+ msgid "You entered an invalid username or password."
955
+ msgstr "Zadali jste nesprávné uživatelské jméno nebo heslo."
956
+
957
+ #: wp-members-dialogs.php:47
958
+ msgid "Click here to continue."
959
+ msgstr "Pro pokračování klikněte"
960
+
961
+ #: wp-members-dialogs.php:191
962
+ msgid "Edit My Information"
963
+ msgstr "Upravit informace o mně"
964
+
965
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
966
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
967
+ #: wp-members-sidebar.php:246
968
+ #, php-format
969
+ msgid "You are logged in as %s"
970
+ msgstr "Jste přihlášeni jako %s"
971
+
972
+ #: wp-members-dialogs.php:208
973
+ msgid "Click to log out."
974
+ msgstr "Pro odhlášení klikněte."
975
+
976
+ #: wp-members-dialogs.php:209
977
+ msgid "Begin using the site."
978
+ msgstr "Začněte používat portál"
979
+
980
+ #: wp-members-dialogs.php:225
981
+ msgid "Click to log out"
982
+ msgstr "Pro odhlášení klikněte"
983
+
984
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
985
+ msgid "click to log out"
986
+ msgstr "pro odhlášení klikněte"
987
+
988
+ #: wp-members-dialogs.php:271
989
+ msgid "Password fields cannot be empty"
990
+ msgstr "Položky hesla nemohou být prázdné"
991
+
992
+ #: wp-members-register.php:51
993
+ msgid "There was an error processing the form."
994
+ msgstr "Při zpracování formuláře nastala chyba."
995
+
996
+ #: wp-members-register.php:110
997
+ msgid "Sorry, username is a required field"
998
+ msgstr "Omlouváme se, uživatelské jméno je vyžadovaná položka"
999
+
1000
+ #: wp-members-register.php:111
1001
+ msgid "The username cannot include non-alphanumeric characters."
1002
+ msgstr "Uživatelské jméno může obsahovat jen písmena a číslice."
1003
+
1004
+ #: wp-members-register.php:112 wp-members-register.php:282
1005
+ msgid "You must enter a valid email address."
1006
+ msgstr "Musíte zadat platnou e-mailovou adresu."
1007
+
1008
+ #: wp-members-register.php:119
1009
+ msgid "Passwords did not match."
1010
+ msgstr "Hesla nesouhlasí"
1011
+
1012
+ #: wp-members-register.php:120 wp-members-register.php:286
1013
+ msgid "Emails did not match."
1014
+ msgstr "Hesla nesouhlasí"
1015
+
1016
+ #: wp-members-register.php:127
1017
+ msgid "You must complete the CAPTCHA form."
1018
+ msgstr "Musíte dokončit formulář CAPTCHA."
1019
+
1020
+ #: wp-members-register.php:377
1021
+ msgid "We were unable to validate the public key."
1022
+ msgstr "Nepodařilo se nám ověřit veřejný klíč."
1023
+
1024
+ #: wp-members-register.php:381
1025
+ msgid "We were unable to validate the private key."
1026
+ msgstr "Nepodařilo se nám ověřit soukromý klíč."
1027
+
1028
+ #: wp-members-register.php:385
1029
+ msgid "The challenge parameter of the verify script was incorrect."
1030
+ msgstr "Parametr ověřovacího skriptu nebyl správný."
1031
+
1032
+ #: wp-members-register.php:389
1033
+ msgid "The CAPTCHA solution was incorrect."
1034
+ msgstr "Řešení CAPTCHA nebylo správné."
1035
+
1036
+ #: wp-members-register.php:393
1037
+ msgid "The parameters to verify were incorrect"
1038
+ msgstr "Parametr k ověření nebyl správný"
1039
+
1040
+ #: wp-members-register.php:397
1041
+ msgid ""
1042
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1043
+ msgstr ""
1044
+ "API klíče reCAPTCHA jsou z bezpečnostních důvodů svázány s určitou doménou."
1045
+
1046
+ #: wp-members-register.php:401
1047
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1048
+ msgstr "Nepodařilo se spojit se serverem reCAPTCHA. Prosíme, zkuste to znovu."
1049
+
1050
+ #: wp-members-register.php:405
1051
+ msgid "You have entered an incorrect code value. Please try again."
1052
+ msgstr ""
1053
+
1054
+ #: wp-members-sidebar.php:117
1055
+ msgid "Login Failed!<br />You entered an invalid username or password."
1056
+ msgstr ""
1057
+ "Neúspěšné přihlášení!<br />Zadali jste nesprávné uživatelské jméno nebo "
1058
+ "heslo."
1059
+
1060
+ #: wp-members-sidebar.php:118
1061
+ msgid "You are not logged in."
1062
+ msgstr "Nejste přihlášeni."
1063
+
1064
+ #: wp-members-sidebar.php:169
1065
+ msgid "log in"
1066
+ msgstr "přihlásit se"
1067
+
1068
+ #: wp-members-sidebar.php:180
1069
+ msgid "Forgot?"
1070
+ msgstr "Zapomněli jste?"
1071
+
1072
+ #: wp-members-sidebar.php:247
1073
+ msgid "click here to log out"
1074
+ msgstr "pro odhlášení klikněte"
1075
+
1076
+ #: wp-members-sidebar.php:279
1077
+ msgid "Displays the WP-Members sidebar login."
1078
+ msgstr ""
1079
+
1080
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1081
+ msgid "Login Status"
1082
+ msgstr "Stav přihlášení"
1083
+
1084
+ #: wp-members-sidebar.php:299
1085
+ msgid "Title:"
1086
+ msgstr "Nadpis:"
1087
+
1088
+ #: wp-members-tos.php:24
1089
+ msgid "Terms of Service"
1090
+ msgstr "Podmínky služby"
1091
+
1092
+ #: wp-members-tos.php:36
1093
+ #, php-format
1094
+ msgid "%sclose%s"
1095
+ msgstr "%sclose%s"
1096
+
1097
+ #: wp-members-tos.php:38
1098
+ #, php-format
1099
+ msgid "%sprint%s"
1100
+ msgstr "%sprint%s"
1101
+
1102
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1103
+ #: Strings wp-members-install.php:49
1104
+ msgid "First Name"
1105
+ msgstr "Křestní jméno"
1106
+
1107
+ #: wp-members-install.php:50
1108
+ msgid "Last Name"
1109
+ msgstr "Příjmení"
1110
+
1111
+ #: wp-members-install.php:51
1112
+ msgid "Address 1"
1113
+ msgstr "Adresa 1"
1114
+
1115
+ #: wp-members-install.php:52
1116
+ msgid "Address 2"
1117
+ msgstr "Adresa 2"
1118
+
1119
+ #: wp-members-install.php:53
1120
+ msgid "City"
1121
+ msgstr "Město"
1122
+
1123
+ #: wp-members-install.php:54
1124
+ msgid "State"
1125
+ msgstr "Stát"
1126
+
1127
+ #: wp-members-install.php:55
1128
+ msgid "Zip"
1129
+ msgstr "PSČ"
1130
+
1131
+ #: wp-members-install.php:56
1132
+ msgid "Country"
1133
+ msgstr "Země"
1134
+
1135
+ #: wp-members-install.php:57
1136
+ msgid "Day Phone"
1137
+ msgstr "Telefon"
1138
+
1139
+ #: wp-members-install.php:59
1140
+ msgid "Website"
1141
+ msgstr "Web"
1142
+
1143
+ #: wp-members-install.php:60
1144
+ msgid "AIM"
1145
+ msgstr "AIM"
1146
+
1147
+ #: wp-members-install.php:61
1148
+ msgid "Yahoo IM"
1149
+ msgstr "Yahoo IM"
1150
+
1151
+ #: wp-members-install.php:62
1152
+ msgid "Jabber/Google Talk"
1153
+ msgstr "Jabber/Google Talk"
1154
+
1155
+ #: wp-members-install.php:63
1156
+ msgid "Biographical Info"
1157
+ msgstr "Životopisné informace"
1158
+
1159
+ #: wp-members-install.php:64 wp-members-install.php:211
1160
+ msgid "TOS"
1161
+ msgstr "Podmínky služby"
1162
+
1163
+ #: Error message dialog strings wp-members-install.php:96
1164
+ msgid ""
1165
+ "This content is restricted to site members. If you are an existing user, "
1166
+ "please log in. New users may register below."
1167
+ msgstr ""
1168
+ "Tento obsah je určen jen pro členy portálu. Pokud už jste členem, prosíme, "
1169
+ "přihlaste se. Noví uživatelé se mohou registrovat níže."
1170
+
1171
+ #: wp-members-install.php:97
1172
+ msgid "Sorry, that username is taken, please try another."
1173
+ msgstr ""
1174
+ "Omlouváme se, toto uživatelské jméno se už používá, prosíme, zkuste jiné."
1175
+
1176
+ #: wp-members-install.php:98
1177
+ msgid ""
1178
+ "Sorry, that email address already has an account.<br />Please try another."
1179
+ msgstr ""
1180
+ "Omlouvám se, této e-mailové adrese je už přiřazen účet.<br />Prosíme, zkuste "
1181
+ "jinou."
1182
+
1183
+ #: wp-members-install.php:99
1184
+ msgid ""
1185
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1186
+ "log in using the password that was emailed to you."
1187
+ msgstr ""
1188
+ "Gratulujeme! Registrovali jste se úspěšně!<br /><br />Teď se můžete "
1189
+ "přihlásit pomocí hesla, které vám bylo doručeno e-mailem."
1190
+
1191
+ #: wp-members-install.php:100
1192
+ msgid "Your information was updated!"
1193
+ msgstr "Informace o vás byly aktualizovány!"
1194
+
1195
+ #: wp-members-install.php:101
1196
+ msgid "Passwords did not match.<br /><br />Please try again."
1197
+ msgstr "Hesla nesouhlasí.<br /><br />Prosíme, zkuste to znovu."
1198
+
1199
+ #: wp-members-install.php:102
1200
+ msgid ""
1201
+ "Password successfully changed!<br /><br />You will need to re-login with "
1202
+ "your new password."
1203
+ msgstr ""
1204
+ "Heslo bylo úspěšně změněno!<br /><br />Bude potřeba, abyste se přihlásili "
1205
+ "znovu pomocí nového hesla."
1206
+
1207
+ #: wp-members-install.php:103
1208
+ msgid "Either the username or email address do not exist in our records."
1209
+ msgstr ""
1210
+ "V našich záznamech se nenachází předmětné uživatelské jméno nebo e-mailová "
1211
+ "adresa."
1212
+
1213
+ #: wp-members-install.php:104
1214
+ msgid ""
1215
+ "Password successfully reset!<br /><br />An email containing a new password "
1216
+ "has been sent to the email address on file for your account. You may change "
1217
+ "this random password then re-login with your new password."
1218
+ msgstr ""
1219
+ "Heslo bylo úspěšně nastaveno znovu!<br /><br />Na e-mailovou adresu "
1220
+ "zaznamenanou u vašeho účtu byla odeslána zpráva s novým heslem. Toto náhodné "
1221
+ "heslo můžete změnit a pak se přihlásit znovu s novým heslem."
1222
+
1223
+ #~ msgid "Yes"
1224
+ #~ msgstr "Ano"
1225
+
1226
+ #~ msgid "edit"
1227
+ #~ msgstr "upravit"
1228
+
1229
+ #~ msgid "Edit"
1230
+ #~ msgstr "Upravit"
1231
+
1232
+ #~ msgid "Pages"
1233
+ #~ msgstr "Stránky"
1234
+
1235
+ #~ msgid "Stylesheet"
1236
+ #~ msgstr "Styl"
1237
+
1238
+ #~ msgid "Stylesheet:"
1239
+ #~ msgstr "Styl:"
1240
+
1241
+ #~ msgid "No"
1242
+ #~ msgstr "Ne"
1243
+
1244
+ #~ msgid "Activate"
1245
+ #~ msgstr "Aktivovat"
1246
+
1247
+ #~ msgid "Username"
1248
+ #~ msgstr "Uživatelské jméno"
1249
+
1250
+ #~ msgid "Password"
1251
+ #~ msgstr "Heslo"
1252
+
1253
+ #~ msgid "Log In"
1254
+ #~ msgstr "Přihlásit se"
1255
+
1256
+ #~ msgid "New Password"
1257
+ #~ msgstr "Nové heslo"
1258
+
1259
+ #~ msgid "Repeat Password"
1260
+ #~ msgstr "Opakování hesla"
1261
+
1262
+ #~ msgid "Email"
1263
+ #~ msgstr "E-mail"
1264
+
1265
+ #~ msgid "Reset Password"
1266
+ #~ msgstr "Znovunastavit heslo"
1267
+
1268
+ #~ msgid "Remember me"
1269
+ #~ msgstr "Zapamatuj si mě"
1270
+
1271
+ #~ msgid "Register"
1272
+ #~ msgstr "Registrovat se"
1273
+
1274
+ #~ msgid "(more&hellip;)"
1275
+ #~ msgstr "(více&hellip;)"
1276
+
1277
+ #~ msgid "WP-Members"
1278
+ #~ msgstr "WP-Members"
1279
+
1280
+ #~ msgid "Custom"
1281
+ #~ msgstr "Vlastní"
1282
+
1283
+ #~ msgid ""
1284
+ #~ "WP access restriction and user registration. For more information on "
1285
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1286
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1287
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1288
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1289
+ #~ msgstr ""
1290
+ #~ "Omezení přístupu WP a registrace uživatelů. Více se o vlastnostech "
1291
+ #~ "pluginu dozvíte v <a href=\"http://rocketgeek.com/plugins/wp-members/"
1292
+ #~ "users-guide/\">on-line Uživatelské příručce</a>. Je k dispozici i <a href="
1293
+ #~ "\"http://rocketgeek.com/plugins/wp-members/quick-start-guide/\">Příručka "
1294
+ #~ "rychlého startu</a>. WP-Members(tm) je obchodní značka butlerblog.com."
1295
+
1296
+ #~ msgid "http://rocketgeek.com"
1297
+ #~ msgstr "http://rocketgeek.com"
1298
+
1299
+ #~ msgid "Chad Butler"
1300
+ #~ msgstr "Chad Butler"
1301
+
1302
+ #~ msgid "http://butlerblog.com/"
1303
+ #~ msgstr "http://butlerblog.com/"
1304
+
1305
+ #~ msgid ""
1306
+ #~ "Find out how to get access to WP-Members private members forum, premium "
1307
+ #~ "code snippets, tutorials, and more!"
1308
+ #~ msgstr ""
1309
+ #~ "Zjistěte, jak se dostat k soukromému fóru členů WP-Members, prémiovým "
1310
+ #~ "úryvkům kódu, kurzům a dalšímu!"
1311
+
1312
+ #~ msgid "Cheatin&#8217; uh?"
1313
+ #~ msgstr "Snažíte se podvádět?"
1314
+
1315
+ #~ msgid "there was an error and no users were exported"
1316
+ #~ msgstr "vyskytla se chyba a uživatelé se neexporovali"
1317
+
1318
+ #~ msgid "Turn off registration"
1319
+ #~ msgstr "Zakázat registraci"
1320
+
1321
+ #~ msgid "Legacy forms"
1322
+ #~ msgstr "Starší formuláře"
1323
+
1324
+ #~ msgid "Members Area URL:"
1325
+ #~ msgstr "Adresa URL pblasti pro členy"
1326
+
1327
+ #~ msgid "%d users were activated."
1328
+ #~ msgstr "%d uživatelů bylo aktivováno."
1329
+
1330
+ #~ msgid "WP-Members Users"
1331
+ #~ msgstr "Členové WP-Member"
1332
+
1333
+ #~ msgid "Add New"
1334
+ #~ msgstr "Přidat nového"
1335
+
1336
+ #~ msgid "No users matched your criteria"
1337
+ #~ msgstr "Žádní uživatelé nesplňují vaše kritéria"
1338
+
1339
+ #~ msgid "Bulk Actions"
1340
+ #~ msgstr "Hromadné akce"
1341
+
1342
+ #~ msgid "Apply"
1343
+ #~ msgstr "Použít"
1344
+
1345
+ #~ msgid "Indicates a required field"
1346
+ #~ msgstr "Označuje vyžadovanou položku"
1347
+
1348
+ #~ msgid "Submit"
1349
+ #~ msgstr "Odeslat"
1350
+
1351
+ #~ msgid "Clear Form"
1352
+ #~ msgstr "Vymazat formulář"
1353
+
1354
+ #~ msgid "login"
1355
+ #~ msgstr "přihlášení"
1356
+
1357
+ #~ msgid "Login"
1358
+ #~ msgstr "Přihlášení"
lang/wp-members-da_DK.mo ADDED
Binary file
lang/wp-members-da_DK.po ADDED
@@ -0,0 +1,1450 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.9.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-21 22:53-0600\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 1.6.4\n"
19
+ "X-Poedit-SearchPath-0: D:\\downloads\\wp-members\n"
20
+
21
+ #: admin/admin.php:60 admin/admin.php:129
22
+ msgid "Settings"
23
+ msgstr "Indstillinger"
24
+
25
+ #: admin/admin.php:187
26
+ msgid "Options"
27
+ msgstr "Valg"
28
+
29
+ #: admin/admin.php:188
30
+ msgid "Fields"
31
+ msgstr "Felter"
32
+
33
+ #: admin/admin.php:189
34
+ msgid "Dialogs"
35
+ msgstr "Dialog"
36
+
37
+ #: admin/admin.php:190
38
+ msgid "Emails"
39
+ msgstr "Email"
40
+
41
+ #: admin/dialogs.php:109
42
+ msgid ""
43
+ "Your WP settings allow anyone to register - this is not the recommended "
44
+ "setting."
45
+ msgstr ""
46
+ "Dine WP indstillinger tillader alle at registrere sig - dette kan ikke "
47
+ "anbefales."
48
+
49
+ #: admin/dialogs.php:110
50
+ #, php-format
51
+ msgid ""
52
+ "You can %s change this here %s making sure the box next to \"Anyone can "
53
+ "register\" is unchecked."
54
+ msgstr ""
55
+ "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Alle kan "
56
+ "registrere \" er u-markeret."
57
+
58
+ #: admin/dialogs.php:111
59
+ msgid ""
60
+ "This setting allows a link on the /wp-login.php page to register using the "
61
+ "WP native registration process thus circumventing any registration you are "
62
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
63
+ "but most users should uncheck this option. If you do not change this "
64
+ "setting, you can choose to ignore these warning messages under WP-Members "
65
+ "Settings."
66
+ msgstr ""
67
+ "Denne indstilling tillader at et link på /wp-login.php siden for at lade sig "
68
+ "registrere ved hjælp af WP oprindelige registreringsprocessen således omgår "
69
+ "enhver form for registrering, du bruger sammen med WP-Members. I nogle "
70
+ "tilfælde passer dette til brugernes ønsker/behov, men de fleste brugere bør "
71
+ "fjerne markeringen af denne mulighed. Hvis du ikke ændrer denne indstilling, "
72
+ "kan du vælge at ignorere disse advarsler i henhold til WP-medlemmer "
73
+ "indstillinger."
74
+
75
+ #: admin/dialogs.php:117
76
+ msgid ""
77
+ "Your WP settings allow anyone to comment - this is not the recommended "
78
+ "setting."
79
+ msgstr ""
80
+ "Dine WP indstillinger tillader alle at skrive kommentarer - denne "
81
+ "indstilling kan ikke anbefales."
82
+
83
+ #: admin/dialogs.php:118
84
+ #, php-format
85
+ msgid ""
86
+ "You can %s change this here %s by checking the box next to \"Users must be "
87
+ "registered and logged in to comment.\""
88
+ msgstr ""
89
+ "Du kan %s ændre dette her %s ved at sørge for boksen ved siden af \"Brugere "
90
+ "skal være registrerede og logget ind for at kommentere \" er markeret."
91
+
92
+ #: admin/dialogs.php:119
93
+ msgid ""
94
+ "This setting allows any users to comment, whether or not they are "
95
+ "registered. Depending on how you are using WP-Members will determine whether "
96
+ "you should change this setting or not. If you do not change this setting, "
97
+ "you can choose to ignore these warning messages under WP-Members Settings."
98
+ msgstr ""
99
+ "Denne indstilling gør det muligt for alle brugere at kommentere, selv om de "
100
+ "ikker er registreret. Afhængigt af, hvordan du bruger WP-Members afgør om "
101
+ "du bør ændre denne indstilling eller ej. Hvis du ikke ændrer denne "
102
+ "indstilling, kan du vælge at ignorere disse advarsler i henhold til WP-"
103
+ "Members indstillinger."
104
+
105
+ #: admin/dialogs.php:125
106
+ msgid ""
107
+ "Your WP settings allow full text rss feeds - this is not the recommended "
108
+ "setting."
109
+ msgstr ""
110
+ "Din WP indstilling tilader fuld RSS feeds - denne indstilling kan ikke "
111
+ "anbefales"
112
+
113
+ #: admin/dialogs.php:126
114
+ #, php-format
115
+ msgid ""
116
+ "You can %s change this here %s by changing \"For each article in a feed, show"
117
+ "\" to \"Summary.\""
118
+ msgstr ""
119
+ "Du kan %s ændre dette %s ved at ændre \"For hvert indlæg, vis \" to \"Resume."
120
+ "\""
121
+
122
+ #: admin/dialogs.php:127
123
+ msgid ""
124
+ "Leaving this set to full text allows anyone to read your protected content "
125
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
126
+ "only show summary text."
127
+ msgstr ""
128
+ "At sætte RSS til fuld tekst giver alle mulighed for at læse dit beskyttet "
129
+ "indhold i en RSS-læser. At ændre RSS til Oversigt forhindrer dette og dine "
130
+ "feeds vil kun blive vist som summarisk tekst."
131
+
132
+ #: admin/dialogs.php:133
133
+ msgid "You have set WP-Members to hold registrations for approval"
134
+ msgstr "Du har sat WP-Members til at vente på godkendelse af registreringer"
135
+
136
+ #: admin/dialogs.php:134
137
+ msgid ""
138
+ "but you have not changed the default message for \"Registration Completed\" "
139
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
140
+ "message to let users know they are pending approval."
141
+ msgstr ""
142
+ "men du har ikke ændret standard besked for \"Registrering fuldført\" under "
143
+ "\"WP-Members Dialoger og Fejlmeldinger.\" Du bør ændre denne besked så "
144
+ "brugerne ved at deres tilmelding afventer godkendelsel."
145
+
146
+ #: admin/dialogs.php:140
147
+ msgid "You have set WP-Members to turn off the registration process"
148
+ msgstr "Du har sat WP-Members til at afbryde registreringsprocessen"
149
+
150
+ #: admin/dialogs.php:141
151
+ msgid ""
152
+ "but you also set to moderate and/or email admin new registrations. You will "
153
+ "need to set up a registration page for users to register."
154
+ msgstr ""
155
+ "men du skal også ændre og / eller e-mail admin for nye registreringer. Du "
156
+ "skal oprette en registreringsside for brugere."
157
+
158
+ #: admin/dialogs.php:147
159
+ msgid "You have turned on reCAPTCHA"
160
+ msgstr "Du har slået reCAPTCHA til"
161
+
162
+ #: admin/dialogs.php:148
163
+ msgid ""
164
+ "but you have not entered API keys. You will need both a public and private "
165
+ "key. The CAPTCHA will not display unless a valid API key is included."
166
+ msgstr ""
167
+ "men du ikke har indtastet API nøgler. Du skal bruge både en offentlig og "
168
+ "privat nøgle. Den CAPTCHA vises ikke, medmindre at en gyldig API-nøgle er "
169
+ "inkluderet."
170
+
171
+ #: admin/dialogs.php:171
172
+ msgid "Version:"
173
+ msgstr "Version:"
174
+
175
+ #: admin/dialogs.php:172
176
+ msgid "Quick Start Guide"
177
+ msgstr ""
178
+
179
+ #: admin/dialogs.php:173
180
+ msgid "Online User Guide"
181
+ msgstr ""
182
+
183
+ #: admin/dialogs.php:174
184
+ msgid "FAQs"
185
+ msgstr ""
186
+
187
+ #: admin/dialogs.php:181
188
+ msgid "Thank you for using WP-Members"
189
+ msgstr "Thank you for using WP-Members"
190
+
191
+ #: admin/dialogs.php:182
192
+ msgid "A plugin developed by"
193
+ msgstr ""
194
+
195
+ #: admin/dialogs.php:183
196
+ msgid "Follow"
197
+ msgstr "Følg"
198
+
199
+ #: admin/dialogs.php:200 admin/dialogs.php:204
200
+ msgid "Latest from RocketGeek"
201
+ msgstr ""
202
+
203
+ #: admin/dialogs.php:221 admin/dialogs.php:234
204
+ msgid "Latest from ButlerBlog"
205
+ msgstr ""
206
+
207
+ #: admin/post.php:36 admin/post.php:38
208
+ msgid "Block"
209
+ msgstr "Bloker"
210
+
211
+ #: admin/post.php:37 admin/post.php:39
212
+ msgid "Unblock"
213
+ msgstr ""
214
+
215
+ #: admin/post.php:120
216
+ #, php-format
217
+ msgid "%s posts %sed."
218
+ msgstr ""
219
+
220
+ #: admin/post.php:138
221
+ msgid "Post Restriction"
222
+ msgstr ""
223
+
224
+ #: admin/post.php:145
225
+ msgid "Page Restriction"
226
+ msgstr ""
227
+
228
+ #: admin/post.php:263 admin/post.php:295
229
+ msgid "Unblocked?"
230
+ msgstr ""
231
+
232
+ #: admin/post.php:263 admin/post.php:295
233
+ msgid "Blocked?"
234
+ msgstr ""
235
+
236
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
237
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
238
+ msgid "Need help?"
239
+ msgstr ""
240
+
241
+ #: admin/tab-captcha.php:46
242
+ msgid "Manage reCAPTCHA Options"
243
+ msgstr "Administrer reCAPTCHA Valg"
244
+
245
+ #: admin/tab-captcha.php:60
246
+ msgid ""
247
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
248
+ "while blocking spam on your blog."
249
+ msgstr ""
250
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
251
+ "while blocking spam on your blog."
252
+
253
+ #: admin/tab-captcha.php:61
254
+ #, php-format
255
+ msgid ""
256
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
257
+ "that they are a human. This verifies that they are not a spambot while also "
258
+ "correcting the automatic scans of old books. So you get less spam, and the "
259
+ "world gets accurately digitized books. Everybody wins! For details, visit "
260
+ "the %s reCAPTCHA website%s"
261
+ msgstr ""
262
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
263
+ "that they are a human. This verifies that they are not a spambot while also "
264
+ "correcting the automatic scans of old books. So you get less spam, and the "
265
+ "world gets accurately digitized books. Everybody wins! For details, visit "
266
+ "the %s reCAPTCHA website%s"
267
+
268
+ #: admin/tab-captcha.php:66
269
+ msgid "reCAPTCHA Keys"
270
+ msgstr "reCAPTCHA Keys"
271
+
272
+ #: admin/tab-captcha.php:68
273
+ #, php-format
274
+ msgid ""
275
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
276
+ "key. You can sign up for a %s free reCAPTCHA key%s"
277
+ msgstr ""
278
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
279
+ "key. You can sign up for a %s free reCAPTCHA key%s"
280
+
281
+ #: admin/tab-captcha.php:69
282
+ msgid "Public Key"
283
+ msgstr "Public Key"
284
+
285
+ #: admin/tab-captcha.php:70
286
+ msgid "Private Key"
287
+ msgstr "Private Key"
288
+
289
+ #: admin/tab-captcha.php:74
290
+ msgid "Choose Theme"
291
+ msgstr "Choose Theme"
292
+
293
+ #: admin/tab-captcha.php:77
294
+ msgid "Red"
295
+ msgstr "Rød"
296
+
297
+ #: admin/tab-captcha.php:78
298
+ msgid "White"
299
+ msgstr "Hvid"
300
+
301
+ #: admin/tab-captcha.php:79
302
+ msgid "Black Glass"
303
+ msgstr "Sort Glas"
304
+
305
+ #: admin/tab-captcha.php:80
306
+ msgid "Clean"
307
+ msgstr "Ren"
308
+
309
+ #: admin/tab-captcha.php:112
310
+ msgid "Characters for image"
311
+ msgstr ""
312
+
313
+ #: admin/tab-captcha.php:116
314
+ msgid "Number of characters"
315
+ msgstr ""
316
+
317
+ #: admin/tab-captcha.php:120
318
+ msgid "Image dimensions"
319
+ msgstr ""
320
+
321
+ #: admin/tab-captcha.php:124
322
+ msgid "Font color of characters"
323
+ msgstr ""
324
+
325
+ #: admin/tab-captcha.php:128
326
+ msgid "Background color of image"
327
+ msgstr ""
328
+
329
+ #: admin/tab-captcha.php:132
330
+ msgid "Font size"
331
+ msgstr ""
332
+
333
+ #: admin/tab-captcha.php:136
334
+ msgid "Width between characters"
335
+ msgstr ""
336
+
337
+ #: admin/tab-captcha.php:140
338
+ msgid "Image type"
339
+ msgstr ""
340
+
341
+ #: admin/tab-captcha.php:154
342
+ msgid ""
343
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
344
+ "installed and activated."
345
+ msgstr ""
346
+
347
+ #: admin/tab-captcha.php:166
348
+ msgid "Update CAPTCHA Settings"
349
+ msgstr "Update CAPTCHA Settings"
350
+
351
+ #: admin/tab-captcha.php:230
352
+ msgid "CAPTCHA was updated for WP-Members"
353
+ msgstr "CAPTCHA er opdateret for WP-Members"
354
+
355
+ #: admin/tab-dialogs.php:29
356
+ msgid "Restricted post (or page), displays above the login/registration form"
357
+ msgstr ""
358
+ "Vises over Log på / Registrering på Post eller Side med begrænset adgang"
359
+
360
+ #: admin/tab-dialogs.php:30
361
+ msgid "Username is taken"
362
+ msgstr "Brugernavn er taget"
363
+
364
+ #: admin/tab-dialogs.php:31
365
+ msgid "Email is registered"
366
+ msgstr "Email er registreret"
367
+
368
+ #: admin/tab-dialogs.php:32
369
+ msgid "Registration completed"
370
+ msgstr "Registrering fuldført - afventer godkendelse"
371
+
372
+ #: admin/tab-dialogs.php:33
373
+ msgid "User update"
374
+ msgstr "Bruger opdatering"
375
+
376
+ #: admin/tab-dialogs.php:34
377
+ msgid "Passwords did not match"
378
+ msgstr "Kodeordene er ikke ens"
379
+
380
+ #: admin/tab-dialogs.php:35
381
+ msgid "Password changes"
382
+ msgstr "Ændret Kodeord"
383
+
384
+ #: admin/tab-dialogs.php:36
385
+ msgid "Username or email do not exist when trying to reset forgotten password"
386
+ msgstr ""
387
+ "Brugernavn eller Email eksisterer ikke når glemt Kodeord forsøges nulstillet"
388
+
389
+ #: admin/tab-dialogs.php:37
390
+ msgid "Password reset"
391
+ msgstr "Nulstil Kodeord"
392
+
393
+ #: admin/tab-dialogs.php:54
394
+ msgid "Dialogs and Error Messages"
395
+ msgstr "Dialoger og Fejlmeldinger"
396
+
397
+ #: admin/tab-dialogs.php:56
398
+ #, php-format
399
+ msgid ""
400
+ "You can customize the text for dialogs and error messages. Simple HTML is "
401
+ "allowed %s etc."
402
+ msgstr ""
403
+ "Du kan tilpasse tekster til dialog og fejlmeldinger. Simpel HTML er tilladt "
404
+ "%s osv."
405
+
406
+ #: admin/tab-dialogs.php:69
407
+ msgid "Terms of Service (TOS)"
408
+ msgstr "Vilkår for Deltagelse"
409
+
410
+ #: admin/tab-dialogs.php:76
411
+ msgid "Update Dialogs"
412
+ msgstr "Opdater Dialoger"
413
+
414
+ #: admin/tab-dialogs.php:115
415
+ msgid "WP-Members dialogs were updated"
416
+ msgstr "WP-Members dialoger er opdateret"
417
+
418
+ #: admin/tab-emails.php:30
419
+ msgid "New Registration"
420
+ msgstr "Ny Bruger Registrering"
421
+
422
+ #: admin/tab-emails.php:34
423
+ msgid "Registration is Moderated"
424
+ msgstr "Registrering fuldført"
425
+
426
+ #: admin/tab-emails.php:35
427
+ msgid "Registration is Moderated, User is Approved"
428
+ msgstr "Din registrering er godkendt"
429
+
430
+ #: admin/tab-emails.php:40
431
+ msgid "Password Reset"
432
+ msgstr "Kodeord Nulstillet"
433
+
434
+ #: admin/tab-emails.php:45
435
+ msgid "Admin Notification"
436
+ msgstr "Admin Meddelelse"
437
+
438
+ #: admin/tab-emails.php:50
439
+ msgid "Email Signature"
440
+ msgstr "Email underskrift"
441
+
442
+ #: admin/tab-emails.php:57
443
+ msgid "Email Messages"
444
+ msgstr "Email Besked"
445
+
446
+ #: admin/tab-emails.php:60
447
+ msgid "You can customize the content of the emails sent by the plugin."
448
+ msgstr "Du kan tilpasse indholdet af emails sendt fra denne plugin"
449
+
450
+ #: admin/tab-emails.php:62
451
+ msgid "A list of shortcodes is available here."
452
+ msgstr "liste med shortcodes kan ses her."
453
+
454
+ #: admin/tab-emails.php:69
455
+ msgid "Set a custom email address"
456
+ msgstr "Indsæt en gyldig Email-adresse"
457
+
458
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
459
+ msgid "(optional)"
460
+ msgstr "(obligatorisk)"
461
+
462
+ #: admin/tab-emails.php:73
463
+ msgid "Set a custom email name"
464
+ msgstr "Skriv dit email navn her"
465
+
466
+ #: admin/tab-emails.php:84
467
+ msgid "Subject"
468
+ msgstr "Emne"
469
+
470
+ #: admin/tab-emails.php:88
471
+ msgid "Body"
472
+ msgstr "Brødtekst"
473
+
474
+ #: admin/tab-emails.php:105
475
+ msgid "Update Emails"
476
+ msgstr "Opdater Emails"
477
+
478
+ #: admin/tab-emails.php:161
479
+ msgid "WP-Members emails were updated"
480
+ msgstr "WP-Members emails er opdateret"
481
+
482
+ #: admin/tab-fields.php:166
483
+ msgid "WP-Members fields were updated"
484
+ msgstr "WP-Members felter er opdateret"
485
+
486
+ #: admin/tab-fields.php:176
487
+ msgid "Field Label is required for adding a new field. Nothing was updated."
488
+ msgstr ""
489
+ "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
490
+
491
+ #: admin/tab-fields.php:177
492
+ msgid "Option Name is required for adding a new field. Nothing was updated."
493
+ msgstr "Valgt Navn er nødvendigt for at tilføje et nyt felt. Intet er ændret."
494
+
495
+ #: admin/tab-fields.php:184
496
+ msgid "A field with that option name already exists"
497
+ msgstr ""
498
+
499
+ #: admin/tab-fields.php:201
500
+ msgid "Checked value is required for checkboxes. Nothing was updated."
501
+ msgstr ""
502
+ "Felt-etikette er nødvendig for at tilføje et nyt felt. Intet er ændret."
503
+
504
+ #: admin/tab-fields.php:223
505
+ msgid "field was added"
506
+ msgstr "Felt Etiket"
507
+
508
+ #: admin/tab-fields.php:241
509
+ msgid "field was updated"
510
+ msgstr "WP-Members felter er opdateret"
511
+
512
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
513
+ msgid "Edit Field"
514
+ msgstr ""
515
+
516
+ #: admin/tab-fields.php:289
517
+ msgid "Add a Field"
518
+ msgstr ""
519
+
520
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
521
+ msgid "Field Label"
522
+ msgstr "Felt Etiket"
523
+
524
+ #: admin/tab-fields.php:297
525
+ msgid "The name of the field as it will be displayed to the user."
526
+ msgstr ""
527
+
528
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
529
+ msgid "Option Name"
530
+ msgstr "Valgt Navn"
531
+
532
+ #: admin/tab-fields.php:306
533
+ msgid ""
534
+ "The database meta value for the field. It must be unique and contain no "
535
+ "spaces (underscores are ok)."
536
+ msgstr ""
537
+
538
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
539
+ msgid "Field Type"
540
+ msgstr "Felt Type"
541
+
542
+ #: admin/tab-fields.php:316
543
+ msgid "text"
544
+ msgstr "Tekst"
545
+
546
+ #: admin/tab-fields.php:317
547
+ msgid "textarea"
548
+ msgstr "Tekstfelt"
549
+
550
+ #: admin/tab-fields.php:318
551
+ msgid "checkbox"
552
+ msgstr "Markeringsboks"
553
+
554
+ #: admin/tab-fields.php:319
555
+ msgid "dropdown"
556
+ msgstr "Dropdown"
557
+
558
+ #: admin/tab-fields.php:320
559
+ msgid "password"
560
+ msgstr "Kodeord"
561
+
562
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
563
+ msgid "Display?"
564
+ msgstr "Vis?"
565
+
566
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
567
+ msgid "Required?"
568
+ msgstr "Obligatorisk?"
569
+
570
+ #: admin/tab-fields.php:334
571
+ msgid "Additional information for checkbox fields"
572
+ msgstr ""
573
+
574
+ #: admin/tab-fields.php:337
575
+ msgid "Checked by default?"
576
+ msgstr "Markering?"
577
+
578
+ #: admin/tab-fields.php:341
579
+ msgid "Stored value if checked:"
580
+ msgstr ""
581
+
582
+ #: admin/tab-fields.php:347
583
+ msgid "Additional information for dropdown fields"
584
+ msgstr ""
585
+
586
+ #: admin/tab-fields.php:350
587
+ msgid "For dropdown, array of values:"
588
+ msgstr "Til Dropdown, tabel med valg:"
589
+
590
+ #: admin/tab-fields.php:375
591
+ msgid "Options should be Option Name|option_value,"
592
+ msgstr "Valg skal skrives Valg Navn|valg_værdi,"
593
+
594
+ #: admin/tab-fields.php:379
595
+ msgid "Visit plugin site for more information"
596
+ msgstr "Besøg Plugin Site for mere information"
597
+
598
+ #: admin/tab-fields.php:385
599
+ msgid "Add Field"
600
+ msgstr ""
601
+
602
+ #: admin/tab-fields.php:407
603
+ msgid "Manage Fields"
604
+ msgstr "Administrer Felter"
605
+
606
+ #: admin/tab-fields.php:409
607
+ msgid ""
608
+ "Determine which fields will display and which are required. This includes "
609
+ "all fields, both native WP fields and WP-Members custom fields."
610
+ msgstr ""
611
+ "Beslut hvilke felter der skal vises og hvilke der er obligatoriske. Dette "
612
+ "inkluderer både almindelige WP felter og WP-Member felter"
613
+
614
+ #: admin/tab-fields.php:410
615
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
616
+ msgstr "(Bemærk: Email er altid obligatorisk - og kan ikke ændres.)"
617
+
618
+ #: admin/tab-fields.php:415
619
+ msgid "Add/Delete"
620
+ msgstr "Tilføj/Slet"
621
+
622
+ #: admin/tab-fields.php:421
623
+ msgid "Checked?"
624
+ msgstr "Markering?"
625
+
626
+ #: admin/tab-fields.php:423
627
+ msgid "Users Screen"
628
+ msgstr ""
629
+
630
+ #: admin/tab-fields.php:435
631
+ msgid "Delete"
632
+ msgstr "Slet"
633
+
634
+ #: admin/tab-fields.php:447
635
+ msgid "(Email cannot be removed)"
636
+ msgstr "(Email kan ikke slettes)"
637
+
638
+ #: admin/tab-fields.php:467
639
+ msgid "Registration Date"
640
+ msgstr ""
641
+
642
+ #: admin/tab-fields.php:470
643
+ msgid "native"
644
+ msgstr ""
645
+
646
+ #: admin/tab-fields.php:480
647
+ msgid "Active"
648
+ msgstr "Aktiver"
649
+
650
+ #: admin/tab-fields.php:492
651
+ msgid "Registration IP"
652
+ msgstr "IP @ registration"
653
+
654
+ #: admin/tab-fields.php:527
655
+ msgid "Update Fields"
656
+ msgstr "Opdater Felter"
657
+
658
+ #: admin/tab-options.php:48
659
+ msgid "Manage Options"
660
+ msgstr "Administrer Valgmuligheder"
661
+
662
+ #: admin/tab-options.php:54
663
+ msgid "Block Posts by default"
664
+ msgstr "Bloker Poster som standard"
665
+
666
+ #: admin/tab-options.php:54
667
+ msgid ""
668
+ "Note: Posts can still be individually blocked or unblocked at the article "
669
+ "level"
670
+ msgstr ""
671
+ "Bemærk: Poster kan stadig blokeres eller frigives individuelt under "
672
+ "redigering"
673
+
674
+ #: admin/tab-options.php:55
675
+ msgid "Block Pages by default"
676
+ msgstr "Bloker Sider som standard"
677
+
678
+ #: admin/tab-options.php:55
679
+ msgid ""
680
+ "Note: Pages can still be individually blocked or unblocked at the article "
681
+ "level"
682
+ msgstr ""
683
+ "Bemærk: Sider kan stadig blokeres eller frigives individuelt under redigering"
684
+
685
+ #: admin/tab-options.php:56
686
+ msgid "Show excerpts"
687
+ msgstr "Vis Uddrag"
688
+
689
+ #: admin/tab-options.php:56
690
+ msgid ""
691
+ "Shows excerpted content above the login/registration on both Posts and Pages"
692
+ msgstr "Vis uddrag inden Log på / Registrering af både Poster og Sider"
693
+
694
+ #: admin/tab-options.php:57
695
+ msgid "Notify admin"
696
+ msgstr "Underret Admin"
697
+
698
+ #: admin/tab-options.php:57
699
+ #, php-format
700
+ msgid "Notify %s for each new registration? %s"
701
+ msgstr "Send email til %s for hver ny registrering? %s"
702
+
703
+ #: admin/tab-options.php:58
704
+ msgid "Moderate registration"
705
+ msgstr "Rediger registrering"
706
+
707
+ #: admin/tab-options.php:58
708
+ msgid "Holds new registrations for admin approval"
709
+ msgstr "Tilbageholder nye registreringer for godkendelse fra Admin"
710
+
711
+ #: admin/tab-options.php:91
712
+ msgid "Enable CAPTCHA"
713
+ msgstr "Muliggøre CAPTCHA"
714
+
715
+ #: admin/tab-options.php:59
716
+ msgid "Turns on CAPTCHA for registration"
717
+ msgstr "Slår CAPTCHA til under registrering"
718
+
719
+ #: admin/tab-options.php:60
720
+ msgid "Hide registration"
721
+ msgstr "Skjul Registrering"
722
+
723
+ #: admin/tab-options.php:60
724
+ msgid "Removes the registration form from blocked content"
725
+ msgstr ""
726
+
727
+ #: admin/tab-options.php:62
728
+ msgid "Time-based expiration"
729
+ msgstr "Time-based expiration"
730
+
731
+ #: admin/tab-options.php:62
732
+ msgid "Allows for access to expire"
733
+ msgstr "Allows for access to expire"
734
+
735
+ #: admin/tab-options.php:63
736
+ msgid "Trial period"
737
+ msgstr "Prøveperiode"
738
+
739
+ #: admin/tab-options.php:63
740
+ msgid "Allows for a trial period"
741
+ msgstr "Tillader en prøveperiode"
742
+
743
+ #: admin/tab-options.php:64
744
+ msgid "Ignore warning messages"
745
+ msgstr "Ignorer advarsels-beskeder"
746
+
747
+ #: admin/tab-options.php:64
748
+ msgid "Ignores WP-Members warning messages in the admin panel"
749
+ msgstr "Ignorerer WP-Members advarsels-beskeder i administrationspanelet"
750
+
751
+ #: admin/tab-options.php:81
752
+ msgid "Attribution"
753
+ msgstr ""
754
+
755
+ #: admin/tab-options.php:83
756
+ msgid ""
757
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
758
+ msgstr ""
759
+
760
+ #: admin/tab-options.php:87
761
+ msgid "Auto Excerpt:"
762
+ msgstr "Vis Uddrag"
763
+
764
+ #: admin/tab-options.php:88
765
+ msgid "Number of words in excerpt:"
766
+ msgstr ""
767
+
768
+ #: admin/tab-options.php:88 admin/tab-options.php:108
769
+ #: admin/tab-options.php:118 admin/tab-options.php:132
770
+ msgid "Optional"
771
+ msgstr "Valgfrit"
772
+
773
+ #: admin/tab-options.php:88
774
+ msgid "Automatically creates an excerpt"
775
+ msgstr ""
776
+
777
+ #: admin/tab-options.php:103
778
+ msgid "User Profile Page:"
779
+ msgstr "Brugeren Profil Sider"
780
+
781
+ #: admin/tab-options.php:106
782
+ msgid "For creating a forgot password link in the login form"
783
+ msgstr ""
784
+
785
+ #: admin/tab-options.php:113
786
+ msgid "Register Page:"
787
+ msgstr "Register Page:"
788
+
789
+ #: admin/tab-options.php:116
790
+ msgid "For creating a register link in the login form"
791
+ msgstr ""
792
+
793
+ #: admin/tab-options.php:126
794
+ msgid "Select a stylesheet or specify a custom stylesheet below"
795
+ msgstr ""
796
+
797
+ #: admin/tab-options.php:131
798
+ msgid "Custom Stylesheet:"
799
+ msgstr "Custom Stylesheet:"
800
+
801
+ #: admin/tab-options.php:136
802
+ msgid "Update Settings"
803
+ msgstr "Opdater Indstillinger"
804
+
805
+ #: admin/tab-options.php:246
806
+ msgid "WP-Members settings were updated"
807
+ msgstr "WP-Member indstillinger er opdateret"
808
+
809
+ #: admin/tab-options.php:296
810
+ msgid "Select a page"
811
+ msgstr "vælg en sider"
812
+
813
+ #: admin/tab-options.php:304
814
+ msgid "USE CUSTOM URL BELOW"
815
+ msgstr ""
816
+
817
+ #: admin/user-export.php:57 admin/user-export.php:172
818
+ msgid "Activated?"
819
+ msgstr "Aktiveret?"
820
+
821
+ #: admin/user-export.php:61 admin/user-export.php:175
822
+ msgid "Subscription"
823
+ msgstr "Abonnement"
824
+
825
+ #: admin/user-export.php:61 admin/user-export.php:175
826
+ msgid "Expires"
827
+ msgstr "Udløber"
828
+
829
+ #: admin/user-export.php:64 admin/user-export.php:178
830
+ msgid "Registered"
831
+ msgstr "Registreret"
832
+
833
+ #: admin/user-export.php:65 admin/user-export.php:179
834
+ msgid "IP"
835
+ msgstr "IP"
836
+
837
+ #: admin/user-profile.php:46
838
+ msgid "WP-Members Additional Fields"
839
+ msgstr "WP-Members Ekstra Felter"
840
+
841
+ #: admin/user-profile.php:66 native-registration.php:36
842
+ #: native-registration.php:159 users.php:62
843
+ msgid "(required)"
844
+ msgstr "(påkrævet)"
845
+
846
+ #: admin/user-profile.php:98
847
+ msgid "Activate this user?"
848
+ msgstr "Aktiver denne bruger?"
849
+
850
+ #: admin/user-profile.php:103
851
+ msgid "Reactivate this user?"
852
+ msgstr "Genaktivere denne bruger?"
853
+
854
+ #: admin/user-profile.php:108
855
+ msgid "Deactivate this user?"
856
+ msgstr "Deactivate this user?"
857
+
858
+ #: admin/user-profile.php:129
859
+ msgid "IP @ registration"
860
+ msgstr "IP @ registration"
861
+
862
+ #: admin/users.php:45 admin/users.php:49
863
+ msgid "Export"
864
+ msgstr "Eksporter"
865
+
866
+ #: admin/users.php:50 admin/users.php:91
867
+ msgid "Export All Users"
868
+ msgstr "Eksporter Alle Brugere"
869
+
870
+ #: forms.php:95
871
+ msgid "Existing Users Log In"
872
+ msgstr "Logge Ind"
873
+
874
+ #: forms.php:161 wp-members-dialogs.php:192
875
+ msgid "Change Password"
876
+ msgstr "Skift Kodeord"
877
+
878
+ #: forms.php:163
879
+ msgid "Update Password"
880
+ msgstr "Opdater Kodeord"
881
+
882
+ #: forms.php:227
883
+ msgid "Reset Forgotten Password"
884
+ msgstr "Nulstil glemt Kodeord"
885
+
886
+ #: forms.php:403
887
+ msgid "Forgot password?"
888
+ msgstr "Glemt Kodeord?"
889
+
890
+ #: forms.php:403
891
+ msgid "Click here to reset"
892
+ msgstr "Klik her for at nulstille"
893
+
894
+ #: forms.php:418
895
+ msgid "New User?"
896
+ msgstr "Ny Bruger"
897
+
898
+ #: forms.php:418
899
+ msgid "Click here to register"
900
+ msgstr "Klik her for at registrere"
901
+
902
+ #: forms.php:515
903
+ msgid "Required field"
904
+ msgstr "Obligatorisk felt"
905
+
906
+ #: forms.php:521
907
+ msgid "Reset Form"
908
+ msgstr ""
909
+
910
+ #: forms.php:523
911
+ msgid "Update Profile"
912
+ msgstr "Opdater Profil"
913
+
914
+ #: forms.php:561
915
+ msgid "Choose a Username"
916
+ msgstr "Vælg et Brugernavn"
917
+
918
+ #: forms.php:683 native-registration.php:65
919
+ #, php-format
920
+ msgid "Please indicate that you agree to the %s TOS %s"
921
+ msgstr "Marker at du accepterer %sVilkår for Deltagelse %s"
922
+
923
+ #: forms.php:852
924
+ msgid "New User Registration"
925
+ msgstr "Ny Bruger Registrering"
926
+
927
+ #: forms.php:1018
928
+ msgid "Input the code:"
929
+ msgstr ""
930
+
931
+ #: users.php:38
932
+ msgid "Additional Information"
933
+ msgstr "Yderligere Information"
934
+
935
+ #: wp-members-core.php:118 wp-members-core.php:245
936
+ msgid "There was an error with the CAPTCHA form."
937
+ msgstr "Der opstod en fejl in CAPTCHA skemaet."
938
+
939
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
940
+ msgid "Edit Your Information"
941
+ msgstr "Rediger dine Oplysninger"
942
+
943
+ #: wp-members-core.php:544
944
+ msgid "<strong>ERROR</strong>: User has not been activated."
945
+ msgstr ""
946
+
947
+ #: wp-members-core.php:903 wp-members-register.php:93
948
+ #, php-format
949
+ msgid "Sorry, %s is a required field."
950
+ msgstr "%s skal udfyldes, er et obligatorisk felt."
951
+
952
+ #: wp-members-dialogs.php:42
953
+ msgid "Login Failed!"
954
+ msgstr "Log på fejlede!"
955
+
956
+ #: wp-members-dialogs.php:45
957
+ msgid "You entered an invalid username or password."
958
+ msgstr "Du har skrevet forkert Brugernavn eller Kodeord."
959
+
960
+ #: wp-members-dialogs.php:47
961
+ msgid "Click here to continue."
962
+ msgstr "Klik her for at fortsætte."
963
+
964
+ #: wp-members-dialogs.php:191
965
+ msgid "Edit My Information"
966
+ msgstr "Rediger mine info"
967
+
968
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
969
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
970
+ #: wp-members-sidebar.php:246
971
+ #, php-format
972
+ msgid "You are logged in as %s"
973
+ msgstr "Du er logget på som %s"
974
+
975
+ #: wp-members-dialogs.php:208
976
+ msgid "Click to log out."
977
+ msgstr "Klik for at logge ud."
978
+
979
+ #: wp-members-dialogs.php:209
980
+ msgid "Begin using the site."
981
+ msgstr "Begynd at bruge sitet"
982
+
983
+ #: wp-members-dialogs.php:225
984
+ msgid "Click to log out"
985
+ msgstr "Klik for at logge ud"
986
+
987
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
988
+ msgid "click to log out"
989
+ msgstr "klik for at logge ud"
990
+
991
+ #: wp-members-dialogs.php:271
992
+ msgid "Password fields cannot be empty"
993
+ msgstr "Kodeordsfelt må ikke være tomt"
994
+
995
+ #: wp-members-register.php:51
996
+ msgid "There was an error processing the form."
997
+ msgstr "Der var en fejl under behandling formularen."
998
+
999
+ #: wp-members-register.php:110
1000
+ msgid "Sorry, username is a required field"
1001
+ msgstr "Brugernavn skal udfyldes, er et obligatorisk felt"
1002
+
1003
+ #: wp-members-register.php:111
1004
+ msgid "The username cannot include non-alphanumeric characters."
1005
+ msgstr "Brugernavn må kun indeholde bogstaver."
1006
+
1007
+ #: wp-members-register.php:112 wp-members-register.php:282
1008
+ msgid "You must enter a valid email address."
1009
+ msgstr "Du skal indtaste en gyldig Email-adresse. "
1010
+
1011
+ #: wp-members-register.php:119
1012
+ msgid "Passwords did not match."
1013
+ msgstr "Adgangskoder matcher ikke."
1014
+
1015
+ #: wp-members-register.php:120 wp-members-register.php:286
1016
+ msgid "Emails did not match."
1017
+ msgstr "Emails matchede ikke."
1018
+
1019
+ #: wp-members-register.php:127
1020
+ msgid "You must complete the CAPTCHA form."
1021
+ msgstr "Du skal færdiggøre CAPTCHA skemaet."
1022
+
1023
+ #: wp-members-register.php:377
1024
+ msgid "We were unable to validate the public key."
1025
+ msgstr "Det var ikke muligt at validere den offentlige nøgle."
1026
+
1027
+ #: wp-members-register.php:381
1028
+ msgid "We were unable to validate the private key."
1029
+ msgstr "Det var ikke muligt at validere den private nøgle."
1030
+
1031
+ #: wp-members-register.php:385
1032
+ msgid "The challenge parameter of the verify script was incorrect."
1033
+ msgstr "The challenge parameter of the verify script was incorrect."
1034
+
1035
+ #: wp-members-register.php:389
1036
+ msgid "The CAPTCHA solution was incorrect."
1037
+ msgstr "CAPTCHA løsningen er ikke fuldstændig."
1038
+
1039
+ #: wp-members-register.php:393
1040
+ msgid "The parameters to verify were incorrect"
1041
+ msgstr "Verificierings-parametrene er forkerte"
1042
+
1043
+ #: wp-members-register.php:397
1044
+ msgid ""
1045
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1046
+ msgstr ""
1047
+ "Af sikkerhedsmæssige årsager er reCAPTCHA API nøglen er tilknyttet et "
1048
+ "specifikt domænenavn."
1049
+
1050
+ #: wp-members-register.php:401
1051
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1052
+ msgstr "reCAPTCHA serveren blev ikke tilsluttet. Prøv igen."
1053
+
1054
+ #: wp-members-register.php:405
1055
+ msgid "You have entered an incorrect code value. Please try again."
1056
+ msgstr ""
1057
+
1058
+ #: wp-members-sidebar.php:117
1059
+ msgid "Login Failed!<br />You entered an invalid username or password."
1060
+ msgstr "Log på fejlede! <br />Forkert Brugernavn eller Kodeord."
1061
+
1062
+ #: wp-members-sidebar.php:118
1063
+ msgid "You are not logged in."
1064
+ msgstr "Du er ikke logget ind."
1065
+
1066
+ #: wp-members-sidebar.php:169
1067
+ msgid "log in"
1068
+ msgstr "logge ind"
1069
+
1070
+ #: wp-members-sidebar.php:180
1071
+ msgid "Forgot?"
1072
+ msgstr "Glemt?"
1073
+
1074
+ #: wp-members-sidebar.php:247
1075
+ msgid "click here to log out"
1076
+ msgstr "Klik her for at logge ud"
1077
+
1078
+ #: wp-members-sidebar.php:279
1079
+ msgid "Displays the WP-Members sidebar login."
1080
+ msgstr ""
1081
+
1082
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1083
+ msgid "Login Status"
1084
+ msgstr "Log Status"
1085
+
1086
+ #: wp-members-sidebar.php:299
1087
+ msgid "Title:"
1088
+ msgstr "Titel:"
1089
+
1090
+ #: wp-members-tos.php:24
1091
+ msgid "Terms of Service"
1092
+ msgstr "Vilkår for Deltagelse"
1093
+
1094
+ #: wp-members-tos.php:36
1095
+ #, php-format
1096
+ msgid "%sclose%s"
1097
+ msgstr "%sluk%s"
1098
+
1099
+ #: wp-members-tos.php:38
1100
+ #, php-format
1101
+ msgid "%sprint%s"
1102
+ msgstr "%sudskriv%s"
1103
+
1104
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1105
+ #: Strings wp-members-install.php:49
1106
+ msgid "First Name"
1107
+ msgstr "Fornavn"
1108
+
1109
+ #: wp-members-install.php:50
1110
+ msgid "Last Name"
1111
+ msgstr "Efternavn"
1112
+
1113
+ #: wp-members-install.php:51
1114
+ msgid "Address 1"
1115
+ msgstr "Adresse1"
1116
+
1117
+ #: wp-members-install.php:52
1118
+ msgid "Address 2"
1119
+ msgstr "Adresse2"
1120
+
1121
+ #: wp-members-install.php:53
1122
+ msgid "City"
1123
+ msgstr "By"
1124
+
1125
+ #: wp-members-install.php:54
1126
+ msgid "State"
1127
+ msgstr "Region"
1128
+
1129
+ #: wp-members-install.php:55
1130
+ msgid "Zip"
1131
+ msgstr "Postnr"
1132
+
1133
+ #: wp-members-install.php:56
1134
+ msgid "Country"
1135
+ msgstr "Land"
1136
+
1137
+ #: wp-members-install.php:57
1138
+ msgid "Day Phone"
1139
+ msgstr "Telefon"
1140
+
1141
+ #: wp-members-install.php:59
1142
+ msgid "Website"
1143
+ msgstr "Website"
1144
+
1145
+ #: wp-members-install.php:60
1146
+ msgid "AIM"
1147
+ msgstr "AIM"
1148
+
1149
+ #: wp-members-install.php:61
1150
+ msgid "Yahoo IM"
1151
+ msgstr "Yahoo IM"
1152
+
1153
+ #: wp-members-install.php:62
1154
+ msgid "Jabber/Google Talk"
1155
+ msgstr "Jabber/Google Talk"
1156
+
1157
+ #: wp-members-install.php:63
1158
+ msgid "Biographical Info"
1159
+ msgstr "Biographical Info"
1160
+
1161
+ #: wp-members-install.php:64 wp-members-install.php:211
1162
+ msgid "TOS"
1163
+ msgstr "VfD"
1164
+
1165
+ #: Error message dialog strings wp-members-install.php:96
1166
+ msgid ""
1167
+ "This content is restricted to site members. If you are an existing user, "
1168
+ "please log in. New users may register below."
1169
+ msgstr ""
1170
+ "Dette er en lukket Brugerside. Hvis du er registreret bruger kan du logge på "
1171
+ "ellers må du lade dig registrere."
1172
+
1173
+ #: wp-members-install.php:97
1174
+ msgid "Sorry, that username is taken, please try another."
1175
+ msgstr "Dette Brugernavn er taget. Prøv et andet."
1176
+
1177
+ #: wp-members-install.php:98
1178
+ msgid ""
1179
+ "Sorry, that email address already has an account.<br />Please try another."
1180
+ msgstr ""
1181
+ "Denne Email-adresse er allerede tilknyttet en bruger. <br />Prøv en anden."
1182
+
1183
+ #: wp-members-install.php:99
1184
+ msgid ""
1185
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1186
+ "log in using the password that was emailed to you."
1187
+ msgstr ""
1188
+ "Tillykke din registrering er gennemført.<br /><br />Du kan nu logge på ved "
1189
+ "hjælp af det Kodeord som er blevet sendt til dig."
1190
+
1191
+ #: wp-members-install.php:100
1192
+ msgid "Your information was updated!"
1193
+ msgstr "Dine Oplysninger er blevet opdateret!"
1194
+
1195
+ #: wp-members-install.php:101
1196
+ msgid "Passwords did not match.<br /><br />Please try again."
1197
+ msgstr "Kodeordene er ikke ens.<br /><br />Prøv igen."
1198
+
1199
+ #: wp-members-install.php:102
1200
+ msgid ""
1201
+ "Password successfully changed!<br /><br />You will need to re-login with "
1202
+ "your new password."
1203
+ msgstr ""
1204
+ "Kodeordet er nu ændret!<br /><br />Du bliver nød til at logge på igen med "
1205
+ "dit nye Kodeord."
1206
+
1207
+ #: wp-members-install.php:103
1208
+ msgid "Either the username or email address do not exist in our records."
1209
+ msgstr "Brugernavn eller Email-adresse eksisterer ikke i databasen."
1210
+
1211
+ #: wp-members-install.php:104
1212
+ msgid ""
1213
+ "Password successfully reset!<br /><br />An email containing a new password "
1214
+ "has been sent to the email address on file for your account. You may change "
1215
+ "this random password then re-login with your new password."
1216
+ msgstr ""
1217
+ "Kodeord er nulstillet!<br /><br />En Email med nyt kodeord er blevet sendt "
1218
+ "til din Email-adresse. Du kan skifte det tilfældige kodeord med et nyt efter "
1219
+ "at du har logget dig på."
1220
+
1221
+ #~ msgid "Yes"
1222
+ #~ msgstr "Ja"
1223
+
1224
+ #~ msgid "WP-Members"
1225
+ #~ msgstr "WP-Members"
1226
+
1227
+ #~ msgid "Custom"
1228
+ #~ msgstr "Custom"
1229
+
1230
+ #~ msgid "edit"
1231
+ #~ msgstr "redigere"
1232
+
1233
+ #~ msgid "Edit"
1234
+ #~ msgstr "Redigere"
1235
+
1236
+ #~ msgid "Use reCAPTCHA"
1237
+ #~ msgstr "Brug reCAPTCHA"
1238
+
1239
+ #~ msgid "Pages"
1240
+ #~ msgstr "Sider"
1241
+
1242
+ #~ msgid "No"
1243
+ #~ msgstr "Nej"
1244
+
1245
+ #~ msgid "Activate"
1246
+ #~ msgstr "Aktiver"
1247
+
1248
+ #~ msgid "Username"
1249
+ #~ msgstr "Brugernavn"
1250
+
1251
+ #~ msgid "Password"
1252
+ #~ msgstr "Kodeord"
1253
+
1254
+ #~ msgid "Log In"
1255
+ #~ msgstr "Logge ind"
1256
+
1257
+ #~ msgid "New Password"
1258
+ #~ msgstr "Nyt Kodeord"
1259
+
1260
+ #~ msgid "Repeat Password"
1261
+ #~ msgstr "Gentag Kodeord"
1262
+
1263
+ #~ msgid "Email"
1264
+ #~ msgstr "Email"
1265
+
1266
+ #~ msgid "Reset Password"
1267
+ #~ msgstr "Nulstil Kodeord"
1268
+
1269
+ #~ msgid "Remember me"
1270
+ #~ msgstr "Husk mig"
1271
+
1272
+ #~ msgid "Register"
1273
+ #~ msgstr "Registrer"
1274
+
1275
+ #~ msgid "(more&hellip;)"
1276
+ #~ msgstr "(mere&hellip;)"
1277
+
1278
+ #~ msgid "Turn off registration"
1279
+ #~ msgstr "Afbryd registrering"
1280
+
1281
+ #~ msgid "Turns off the registration process, only allows login"
1282
+ #~ msgstr "Afbryder registreringsprocessen, tillader kun log på"
1283
+
1284
+ #~ msgid "Legacy forms"
1285
+ #~ msgstr "Legacy forms"
1286
+
1287
+ #~ msgid ""
1288
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1289
+ #~ "forms)"
1290
+ #~ msgstr ""
1291
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1292
+ #~ "forms)"
1293
+
1294
+ #~ msgid "Members Area URL:"
1295
+ #~ msgstr "Members Area URL:"
1296
+
1297
+ #~ msgid "Add"
1298
+ #~ msgstr "Tilføj"
1299
+
1300
+ #~ msgid "WP-Members expiration periods were updated"
1301
+ #~ msgstr "WP-Members prøveperiode er opdateret"
1302
+
1303
+ #~ msgid ""
1304
+ #~ "Settings were saved, but you have required fields that are not set to "
1305
+ #~ "display!"
1306
+ #~ msgstr ""
1307
+ #~ "Indstillingerne er gemt, men der er obligatoriske felter, som ikke er "
1308
+ #~ "indstillet til at blive vist!"
1309
+
1310
+ #~ msgid ""
1311
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1312
+ #~ "fields are validated. However, you should still check that your "
1313
+ #~ "displayed and required fields match up. Mismatched fields are "
1314
+ #~ "highlighted below."
1315
+ #~ msgstr ""
1316
+ #~ "Bemærk: Dette vil ikke medføre en fejl for slutbrugeren, da kun viste "
1317
+ #~ "felter er valideret. Du bør dog stadig kontrollere, at dine viste, og "
1318
+ #~ "krævede felter passer sammen. Forkerte felter er fremhævet nedenfor."
1319
+
1320
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1321
+ #~ msgstr "If you find this plugin useful, please consider making a donation"
1322
+
1323
+ #~ msgid "Subscriptions"
1324
+ #~ msgstr "Abonnement"
1325
+
1326
+ #~ msgid "PayPal Settings"
1327
+ #~ msgstr "PayPal Settings"
1328
+
1329
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1330
+ #~ msgstr "If you find this plugin useful, please consider a %s donation %s"
1331
+
1332
+ #~ msgid "%d users were activated."
1333
+ #~ msgstr "%d brugere er aktiverede."
1334
+
1335
+ #~ msgid ""
1336
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1337
+ #~ msgstr ""
1338
+ #~ "Brugere klar til export %s Klik her %s for at generere og downloade en "
1339
+ #~ "CSV."
1340
+
1341
+ #~ msgid "WP-Members Users"
1342
+ #~ msgstr "WP-Members Brugere"
1343
+
1344
+ #~ msgid "Add New"
1345
+ #~ msgstr "Tilføj Ny"
1346
+
1347
+ #~ msgid "No users matched your criteria"
1348
+ #~ msgstr "Ingen brugere matchede dine kriterier"
1349
+
1350
+ #~ msgid "Bulk Actions"
1351
+ #~ msgstr "Gruppe handling"
1352
+
1353
+ #~ msgid "Apply"
1354
+ #~ msgstr "Ansøge"
1355
+
1356
+ #~ msgid "Indicates a required field"
1357
+ #~ msgstr "Et obligatorisk felt"
1358
+
1359
+ #~ msgid "Login"
1360
+ #~ msgstr "Log på"
1361
+
1362
+ #~ msgid "Clear Form"
1363
+ #~ msgstr "Ryd indhold"
1364
+
1365
+ #~ msgid "Submit"
1366
+ #~ msgstr "Indsend"
1367
+
1368
+ #~ msgid "Cheatin&#8217; uh?"
1369
+ #~ msgstr "Snyder du?"
1370
+
1371
+ #~ msgid "there was an error and no users were exported"
1372
+ #~ msgstr "der opstod en fejl og ingen Brugere blev eksporteret"
1373
+
1374
+ #~ msgid "login"
1375
+ #~ msgstr "log på"
1376
+
1377
+ #~ msgid ""
1378
+ #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
1379
+ #~ msgstr "Marker at du har læst og accepteret %sVilkår for Deltagelse %s"
1380
+
1381
+ #~ msgid "You may change your password here: %s"
1382
+ #~ msgstr "Du kan skifte Kodeord her: %s"
1383
+
1384
+ #~ msgid "Your registration info for %s"
1385
+ #~ msgstr "Dine registrerings info for %s"
1386
+
1387
+ #~ msgid "Thank you for registering for %s"
1388
+ #~ msgstr "Tak for din registrering på %s"
1389
+
1390
+ #~ msgid "Your registration information is below."
1391
+ #~ msgstr "Dine oplysninger er listet nedenfor."
1392
+
1393
+ #~ msgid "You may wish to retain a copy for your records."
1394
+ #~ msgstr "Gem dine oplysninger."
1395
+
1396
+ #~ msgid "username: %s"
1397
+ #~ msgstr "Brugernavn: %s"
1398
+
1399
+ #~ msgid "password: %s"
1400
+ #~ msgstr "Kodeord: %s"
1401
+
1402
+ #~ msgid "You may login here:"
1403
+ #~ msgstr "Log på her:"
1404
+
1405
+ #~ msgid ""
1406
+ #~ "Thank you for registering for %s. Your registration has been received and "
1407
+ #~ "is pending approval."
1408
+ #~ msgstr ""
1409
+ #~ "Tak for din registrering på %s. Din registreing er modtaget og afventer "
1410
+ #~ "godkendelse."
1411
+
1412
+ #~ msgid "You will receive login instructions upon approval of your account"
1413
+ #~ msgstr ""
1414
+ #~ "Du vil modtage instruks om Log på proceduren når din registrering er "
1415
+ #~ "godkendt."
1416
+
1417
+ #~ msgid "Your registration for %s has been approved."
1418
+ #~ msgstr "Din registrering på %s er godkendt."
1419
+
1420
+ #~ msgid "You may login at: %s"
1421
+ #~ msgstr "Du kan nu logge på %s"
1422
+
1423
+ #~ msgid "You originally registered at:"
1424
+ #~ msgstr "Du er oprindeligt registreret på:"
1425
+
1426
+ #~ msgid "Password reset for %s"
1427
+ #~ msgstr "Kodeordet er nulstillet for %s"
1428
+
1429
+ #~ msgid "Your password for %s has been reset"
1430
+ #~ msgstr "Dit Kodeord for %s er nulstillet"
1431
+
1432
+ #~ msgid ""
1433
+ #~ "Your new password is included below. You may wish to retain a copy for "
1434
+ #~ "your records."
1435
+ #~ msgstr "Dit nye Kodeord står nedenfor. Gem dine oplysninger."
1436
+
1437
+ #~ msgid "This is an automated message from %s"
1438
+ #~ msgstr "Dette er en automatisk besked fra %s"
1439
+
1440
+ #~ msgid "Please do not reply to this address"
1441
+ #~ msgstr "Undlad venligst at svare på denne Email"
1442
+
1443
+ #~ msgid "New user registration for %s"
1444
+ #~ msgstr "Ny bruger registrering for %s"
1445
+
1446
+ #~ msgid "The following user registered for %s"
1447
+ #~ msgstr "Følgende bruger er registreret på %s"
1448
+
1449
+ #~ msgid "and is pending admin approval"
1450
+ #~ msgstr "og afventer Admins godkendelse"
lang/wp-members-de_DE.mo ADDED
Binary file
lang/wp-members-de_DE.po ADDED
@@ -0,0 +1,1331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP-Members
2
+ # This file is distributed under the same license as the WP-Members package.
3
+ # Dieter <dieter.menne@menne-biomed.de>, 2014.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP-Members 2.9.5\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
8
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
9
+ "PO-Revision-Date: 2014-07-21 22:56-0600\n"
10
+ "Last-Translator: Chad Butler <plugins@butlerblog.com>\n"
11
+ "Language-Team: Menne Biomed Consulting\n"
12
+ "Language: de\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.6.4\n"
18
+
19
+ #: admin/admin.php:60 admin/admin.php:129
20
+ msgid "Settings"
21
+ msgstr "Einstellungen"
22
+
23
+ #: admin/admin.php:187
24
+ msgid "Options"
25
+ msgstr "Optionen"
26
+
27
+ #: admin/admin.php:188
28
+ msgid "Fields"
29
+ msgstr "Felder"
30
+
31
+ #: admin/admin.php:189
32
+ msgid "Dialogs"
33
+ msgstr "Dialoge"
34
+
35
+ #: admin/admin.php:190
36
+ msgid "Emails"
37
+ msgstr "E-Mails"
38
+
39
+ #: admin/dialogs.php:109
40
+ msgid ""
41
+ "Your WP settings allow anyone to register - this is not the recommended "
42
+ "setting."
43
+ msgstr ""
44
+ "Deine WP-Einstellungen erlauben es jedem, sich anzumelden - das ist nicht "
45
+ "empfehlenswert."
46
+
47
+ #: admin/dialogs.php:110
48
+ #, php-format
49
+ msgid ""
50
+ "You can %s change this here %s making sure the box next to \"Anyone can "
51
+ "register\" is unchecked."
52
+ msgstr ""
53
+ "Du kannst die Einstellung %s hier ändern %s. Stelle sicher, dass \"Jeder "
54
+ "kann sich anmelden\" nicht ausgewählt wurde."
55
+
56
+ #: admin/dialogs.php:111
57
+ msgid ""
58
+ "This setting allows a link on the /wp-login.php page to register using the "
59
+ "WP native registration process thus circumventing any registration you are "
60
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
61
+ "but most users should uncheck this option. If you do not change this "
62
+ "setting, you can choose to ignore these warning messages under WP-Members "
63
+ "Settings."
64
+ msgstr ""
65
+ "Diese Einstellung erlaubt einen Link auf die /wp-login.php Seite, mit dem "
66
+ "der standardmäßige WP-Registrierungsprozess gestartet wird, was die "
67
+ "Registrierung mit WP-Members verhindert. In einigen Fällen mag dies dem "
68
+ "entsprechen, was der Administrator will/braucht, aber die meisten "
69
+ "Administratoren sollten diese Option deaktivieren. Wenn du diese Einstellung "
70
+ "nicht änderst, dann kannst du diese Warnung bei den WP-Members Einstellungen "
71
+ "unterdrücken."
72
+
73
+ #: admin/dialogs.php:117
74
+ msgid ""
75
+ "Your WP settings allow anyone to comment - this is not the recommended "
76
+ "setting."
77
+ msgstr ""
78
+ "Deine WP Einstellungen erlauben jedem zu kommentieren - diese Einstellung "
79
+ "wird nicht empfohlen."
80
+
81
+ #: admin/dialogs.php:118
82
+ #, php-format
83
+ msgid ""
84
+ "You can %s change this here %s by checking the box next to \"Users must be "
85
+ "registered and logged in to comment.\""
86
+ msgstr ""
87
+
88
+ #: admin/dialogs.php:119
89
+ msgid ""
90
+ "This setting allows any users to comment, whether or not they are "
91
+ "registered. Depending on how you are using WP-Members will determine whether "
92
+ "you should change this setting or not. If you do not change this setting, "
93
+ "you can choose to ignore these warning messages under WP-Members Settings."
94
+ msgstr ""
95
+ "Diese Einstellung erlaubt jedem, Kommentare zu schreiben, egal ob er "
96
+ "Mitglied ist oder nicht. Je nachdem, wie du WP-Members verwenden willst, "
97
+ "solltest du diese Einstellung ändern oder nicht. Wenn du diese Einstellung "
98
+ "nicht änderst, dann kannst du diese Warnung bei den WP-Members Einstellungen "
99
+ "unterdrücken."
100
+
101
+ #: admin/dialogs.php:125
102
+ msgid ""
103
+ "Your WP settings allow full text rss feeds - this is not the recommended "
104
+ "setting."
105
+ msgstr ""
106
+ "Deine WP Einstellungen erlauben RSS Newsfeeds mit dem vollen Text - das ist "
107
+ "nicht die empfohlene Einstellung."
108
+
109
+ #: admin/dialogs.php:126
110
+ #, php-format
111
+ msgid ""
112
+ "You can %s change this here %s by changing \"For each article in a feed, show"
113
+ "\" to \"Summary.\""
114
+ msgstr ""
115
+ "Du kannst das %s hier ändern %s. Bei \"Jeden Artikel in einem Feed zeigen\" "
116
+ "sollte \"Kurzfassung\" gewählt werden."
117
+
118
+ #: admin/dialogs.php:127
119
+ msgid ""
120
+ "Leaving this set to full text allows anyone to read your protected content "
121
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
122
+ "only show summary text."
123
+ msgstr ""
124
+ "Wenn du diese Einstellung bei Voll-Text belässt, dann kann jeder deine "
125
+ "geschützten Inhalte mit einem RSS-Reader lesen. Die Einstellung \"Kurzfassung"
126
+ "\" verhindert dies und deine Textfeeds sind sicher."
127
+
128
+ #: admin/dialogs.php:133
129
+ msgid "You have set WP-Members to hold registrations for approval"
130
+ msgstr ""
131
+ "Du hast WP-Members so konfiguriert, dass Registrierungen zur Bestätigung "
132
+ "zurückgehalten werden."
133
+
134
+ #: admin/dialogs.php:134
135
+ msgid ""
136
+ "but you have not changed the default message for \"Registration Completed\" "
137
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
138
+ "message to let users know they are pending approval."
139
+ msgstr ""
140
+ "aber du hast die Standard-Nachricht für \"Registrierung vollständig\" unter "
141
+ "\"WP-Members Dialoge und Fehlermeldungen\" nicht geändert. Du solltest diese "
142
+ "Nachricht ändern, um die Nutzer wissen zu lassen, dass noch die Bestätigung "
143
+ "abgewartet werden muss."
144
+
145
+ #: admin/dialogs.php:140
146
+ msgid "You have set WP-Members to turn off the registration process"
147
+ msgstr ""
148
+ "Du hast WP-Members so konfiguriert, dass der Registrierungsprozess "
149
+ "ausgeschaltet ist."
150
+
151
+ #: admin/dialogs.php:141
152
+ msgid ""
153
+ "but you also set to moderate and/or email admin new registrations. You will "
154
+ "need to set up a registration page for users to register."
155
+ msgstr ""
156
+ "aber du hast auch die Einstellung \"Überprüfung und/oder E-Mail senden an "
157
+ "Administrator bei Neu-Registrierungen\" gewählt. Du wirst eine "
158
+ "Registrierungsseite für die Nutzer einrichten müssen."
159
+
160
+ #: admin/dialogs.php:147
161
+ msgid "You have turned on reCAPTCHA"
162
+ msgstr "Du hast reCAPTCHA eingeschaltet."
163
+
164
+ #: admin/dialogs.php:148
165
+ msgid ""
166
+ "but you have not entered API keys. You will need both a public and private "
167
+ "key. The CAPTCHA will not display unless a valid API key is included."
168
+ msgstr ""
169
+ "aber du hast keine API-Keys eingegeben. Du brauchst sowohl einen "
170
+ "öffentlichen (public)- als auch einen privaten Schlüssel (key). CAPTCHA wird "
171
+ "solange nicht angezeigt, bis du gültige Keys eingetragen hast."
172
+
173
+ #: admin/dialogs.php:171
174
+ msgid "Version:"
175
+ msgstr "Version:"
176
+
177
+ #: admin/dialogs.php:172
178
+ msgid "Quick Start Guide"
179
+ msgstr "Schnellanleitung"
180
+
181
+ #: admin/dialogs.php:173
182
+ msgid "Online User Guide"
183
+ msgstr "Online-Anleitung"
184
+
185
+ #: admin/dialogs.php:174
186
+ msgid "FAQs"
187
+ msgstr "FAQs"
188
+
189
+ #: admin/dialogs.php:181
190
+ msgid "Thank you for using WP-Members"
191
+ msgstr "Danke, dass du WP-Members verwendest"
192
+
193
+ #: admin/dialogs.php:182
194
+ msgid "A plugin developed by"
195
+ msgstr "Ein Plugin von"
196
+
197
+ #: admin/dialogs.php:183
198
+ msgid "Follow"
199
+ msgstr "Folgen"
200
+
201
+ #: admin/dialogs.php:200 admin/dialogs.php:204
202
+ msgid "Latest from RocketGeek"
203
+ msgstr "Neuigkeiten von RocketGeek"
204
+
205
+ #: admin/dialogs.php:221 admin/dialogs.php:234
206
+ msgid "Latest from ButlerBlog"
207
+ msgstr "Neuigkeiten vom ButtlersBlog"
208
+
209
+ #: admin/post.php:36 admin/post.php:38
210
+ msgid "Block"
211
+ msgstr "Blockiert?"
212
+
213
+ #: admin/post.php:37 admin/post.php:39
214
+ msgid "Unblock"
215
+ msgstr "Freigegeben?"
216
+
217
+ #: admin/post.php:120
218
+ #, php-format
219
+ msgid "%s posts %sed."
220
+ msgstr ""
221
+
222
+ #: admin/post.php:138
223
+ msgid "Post Restriction"
224
+ msgstr "Beiträge blockieren"
225
+
226
+ #: admin/post.php:145
227
+ msgid "Page Restriction"
228
+ msgstr "Seiten blockieren"
229
+
230
+ #: admin/post.php:263 admin/post.php:295
231
+ msgid "Unblocked?"
232
+ msgstr "Freigegeben?"
233
+
234
+ #: admin/post.php:263 admin/post.php:295
235
+ msgid "Blocked?"
236
+ msgstr "Blockiert?"
237
+
238
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
239
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
240
+ msgid "Need help?"
241
+ msgstr "Brauchst du Hilfe?"
242
+
243
+ #: admin/tab-captcha.php:46
244
+ msgid "Manage reCAPTCHA Options"
245
+ msgstr "reCAPTCHA Einstellungen verwalten"
246
+
247
+ #: admin/tab-captcha.php:60
248
+ msgid ""
249
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
250
+ "while blocking spam on your blog."
251
+ msgstr ""
252
+ "reCAPTCHA ist ein frei zugänglicher CAPTCHA Service, der hilft, Bücher zu "
253
+ "digitalisieren, während Spam auf deinem Blog verhindert wird."
254
+
255
+ #: admin/tab-captcha.php:61
256
+ #, php-format
257
+ msgid ""
258
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
259
+ "that they are a human. This verifies that they are not a spambot while also "
260
+ "correcting the automatic scans of old books. So you get less spam, and the "
261
+ "world gets accurately digitized books. Everybody wins! For details, visit "
262
+ "the %s reCAPTCHA website%s"
263
+ msgstr ""
264
+ "reCAPTCHA fordert den Benutzer auf, zwei Wörter abzutippen, die von einem "
265
+ "Buch gescannt wurden, um zu überprüfen, dass es sich um einen Menschen und "
266
+ "nicht um einen SPAMbot handelt und korrigiert dabei automatisch Scans von "
267
+ "alten Büchern. So hast du weniger SPAM und die Welt bekommt sauber "
268
+ "digitalisierte Bücher. Alle gewinnen! Für mehr Infos besuche die %s "
269
+ "reCAPTCHA Webseite%s"
270
+
271
+ #: admin/tab-captcha.php:66
272
+ msgid "reCAPTCHA Keys"
273
+ msgstr "reCAPTCHA Keys"
274
+
275
+ #: admin/tab-captcha.php:68
276
+ #, php-format
277
+ msgid ""
278
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
279
+ "key. You can sign up for a %s free reCAPTCHA key%s"
280
+ msgstr ""
281
+ "reCAPTCHA erfordert einen API-Schlüssel, bestehend aus einem \"public\" und "
282
+ "einem \"private\" Teil. Du kannst dich für einen kostenlosen %s reCAPTCHA key"
283
+ "%s anmelden"
284
+
285
+ #: admin/tab-captcha.php:69
286
+ msgid "Public Key"
287
+ msgstr "Public Key"
288
+
289
+ #: admin/tab-captcha.php:70
290
+ msgid "Private Key"
291
+ msgstr "privater Schlüssel"
292
+
293
+ #: admin/tab-captcha.php:74
294
+ msgid "Choose Theme"
295
+ msgstr "Wähle ein Thema"
296
+
297
+ #: admin/tab-captcha.php:77
298
+ msgid "Red"
299
+ msgstr "Rot"
300
+
301
+ #: admin/tab-captcha.php:78
302
+ msgid "White"
303
+ msgstr "Weiß"
304
+
305
+ #: admin/tab-captcha.php:79
306
+ msgid "Black Glass"
307
+ msgstr "Schwarz"
308
+
309
+ #: admin/tab-captcha.php:80
310
+ msgid "Clean"
311
+ msgstr "Säubern"
312
+
313
+ #: admin/tab-captcha.php:112
314
+ msgid "Characters for image"
315
+ msgstr ""
316
+
317
+ #: admin/tab-captcha.php:116
318
+ msgid "Number of characters"
319
+ msgstr ""
320
+
321
+ #: admin/tab-captcha.php:120
322
+ msgid "Image dimensions"
323
+ msgstr ""
324
+
325
+ #: admin/tab-captcha.php:124
326
+ msgid "Font color of characters"
327
+ msgstr ""
328
+
329
+ #: admin/tab-captcha.php:128
330
+ msgid "Background color of image"
331
+ msgstr ""
332
+
333
+ #: admin/tab-captcha.php:132
334
+ msgid "Font size"
335
+ msgstr ""
336
+
337
+ #: admin/tab-captcha.php:136
338
+ msgid "Width between characters"
339
+ msgstr ""
340
+
341
+ #: admin/tab-captcha.php:140
342
+ msgid "Image type"
343
+ msgstr ""
344
+
345
+ #: admin/tab-captcha.php:154
346
+ msgid ""
347
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
348
+ "installed and activated."
349
+ msgstr ""
350
+
351
+ #: admin/tab-captcha.php:166
352
+ msgid "Update CAPTCHA Settings"
353
+ msgstr "CAPTCHA-Einstellungen aktualisieren"
354
+
355
+ #: admin/tab-captcha.php:230
356
+ msgid "CAPTCHA was updated for WP-Members"
357
+ msgstr "CAPTCHA wurde für WP-Members aktualisiert"
358
+
359
+ #: admin/tab-dialogs.php:29
360
+ msgid "Restricted post (or page), displays above the login/registration form"
361
+ msgstr ""
362
+ "Eingeschränkt zugelassener Artikel (oder Seite), wird oberhalb des Login-/"
363
+ "Registrierungsformulars angezeigt"
364
+
365
+ #: admin/tab-dialogs.php:30
366
+ msgid "Username is taken"
367
+ msgstr "Mitgliedername ist vergeben"
368
+
369
+ #: admin/tab-dialogs.php:31
370
+ msgid "Email is registered"
371
+ msgstr "E-Mail ist registriert"
372
+
373
+ #: admin/tab-dialogs.php:32
374
+ msgid "Registration completed"
375
+ msgstr "Registrierung vollständig"
376
+
377
+ #: admin/tab-dialogs.php:33
378
+ msgid "User update"
379
+ msgstr "Mitglied aktualisieren"
380
+
381
+ #: admin/tab-dialogs.php:34
382
+ msgid "Passwords did not match"
383
+ msgstr "Passwort stimmt nicht überein"
384
+
385
+ #: admin/tab-dialogs.php:35
386
+ msgid "Password changes"
387
+ msgstr "Passwort geändert"
388
+
389
+ #: admin/tab-dialogs.php:36
390
+ msgid "Username or email do not exist when trying to reset forgotten password"
391
+ msgstr ""
392
+ "Vergessenes Passwort kann nicht zurückgesetzt werden, da Mitgliedername oder "
393
+ "E-Mail nicht existieren."
394
+
395
+ #: admin/tab-dialogs.php:37
396
+ msgid "Password reset"
397
+ msgstr "Passwort zurücksetzen"
398
+
399
+ #: admin/tab-dialogs.php:54
400
+ msgid "Dialogs and Error Messages"
401
+ msgstr "Dialoge und Fehlermeldungen"
402
+
403
+ #: admin/tab-dialogs.php:56
404
+ #, php-format
405
+ msgid ""
406
+ "You can customize the text for dialogs and error messages. Simple HTML is "
407
+ "allowed %s etc."
408
+ msgstr ""
409
+ "Du kannst den Text der Dialoge und Fehlermeldungen hier anpassen. Einfaches "
410
+ "HTML ist erlaubt %s etc."
411
+
412
+ #: admin/tab-dialogs.php:69
413
+ msgid "Terms of Service (TOS)"
414
+ msgstr "Allgemeine Geschäftsbedingungen AGB"
415
+
416
+ #: admin/tab-dialogs.php:76
417
+ msgid "Update Dialogs"
418
+ msgstr "Dialoge speichern"
419
+
420
+ #: admin/tab-dialogs.php:115
421
+ msgid "WP-Members dialogs were updated"
422
+ msgstr "WP-Members Einstellungen wurden aktualisiert"
423
+
424
+ #: admin/tab-emails.php:30
425
+ msgid "New Registration"
426
+ msgstr "Neue Registrierung"
427
+
428
+ #: admin/tab-emails.php:34
429
+ msgid "Registration is Moderated"
430
+ msgstr "Die Registrierung wird bearbeitet"
431
+
432
+ #: admin/tab-emails.php:35
433
+ msgid "Registration is Moderated, User is Approved"
434
+ msgstr "Registrierung bearbeitet; Nutzer wurde bestätigt"
435
+
436
+ #: admin/tab-emails.php:40
437
+ msgid "Password Reset"
438
+ msgstr "Passwort zurücksetzen"
439
+
440
+ #: admin/tab-emails.php:45
441
+ msgid "Admin Notification"
442
+ msgstr "Admin Benachrichtigungen"
443
+
444
+ #: admin/tab-emails.php:50
445
+ msgid "Email Signature"
446
+ msgstr "E-Mail Signatur"
447
+
448
+ #: admin/tab-emails.php:57
449
+ msgid "Email Messages"
450
+ msgstr "E-Mail Nachrichten"
451
+
452
+ #: admin/tab-emails.php:60
453
+ msgid "You can customize the content of the emails sent by the plugin."
454
+ msgstr ""
455
+ "Du kannst den Inhalt der E-Mails, die durch das Plugin gesendet werden, "
456
+ "individuell anpassen."
457
+
458
+ #: admin/tab-emails.php:62
459
+ msgid "A list of shortcodes is available here."
460
+ msgstr "Eine Shortcode-Liste ist hier verfügbar."
461
+
462
+ #: admin/tab-emails.php:69
463
+ msgid "Set a custom email address"
464
+ msgstr "Festlegen einer benutzerdefinierten E-Mail-Adresse"
465
+
466
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
467
+ msgid "(optional)"
468
+ msgstr "(optional)"
469
+
470
+ #: admin/tab-emails.php:73
471
+ msgid "Set a custom email name"
472
+ msgstr "Festlegen eines angepassten E-Mail-Namens"
473
+
474
+ #: admin/tab-emails.php:84
475
+ msgid "Subject"
476
+ msgstr "Betreff"
477
+
478
+ #: admin/tab-emails.php:88
479
+ msgid "Body"
480
+ msgstr "Text"
481
+
482
+ #: admin/tab-emails.php:105
483
+ msgid "Update Emails"
484
+ msgstr "E-Mails speichern"
485
+
486
+ #: admin/tab-emails.php:161
487
+ msgid "WP-Members emails were updated"
488
+ msgstr "WP-Members E-Mails wurden aktualisiert"
489
+
490
+ #: admin/tab-fields.php:166
491
+ msgid "WP-Members fields were updated"
492
+ msgstr "WP-Members Felder wurden aktualisiert"
493
+
494
+ #: admin/tab-fields.php:176
495
+ msgid "Field Label is required for adding a new field. Nothing was updated."
496
+ msgstr ""
497
+ "Eine Feld-Bezeichnung ist für ein neues Feld erforderlich. Es wurde nichts "
498
+ "gespeichert."
499
+
500
+ #: admin/tab-fields.php:177
501
+ msgid "Option Name is required for adding a new field. Nothing was updated."
502
+ msgstr ""
503
+ "Eine Optionen-Bezeichnung ist für ein neues Feld erforderlich. Es wurde "
504
+ "nichts gespeichert."
505
+
506
+ #: admin/tab-fields.php:184
507
+ msgid "A field with that option name already exists"
508
+ msgstr ""
509
+
510
+ #: admin/tab-fields.php:201
511
+ msgid "Checked value is required for checkboxes. Nothing was updated."
512
+ msgstr ""
513
+ "Eine Optionen-Bezeichnung ist für ein neues Feld erforderlich. Es wurde "
514
+ "nichts gespeichert."
515
+
516
+ #: admin/tab-fields.php:223
517
+ msgid "field was added"
518
+ msgstr "Feld wurde hinzugefügt"
519
+
520
+ #: admin/tab-fields.php:241
521
+ msgid "field was updated"
522
+ msgstr "Felder wurden aktualisiert"
523
+
524
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
525
+ msgid "Edit Field"
526
+ msgstr "Feld bearbeiten"
527
+
528
+ #: admin/tab-fields.php:289
529
+ msgid "Add a Field"
530
+ msgstr "Ein Feld hinzufügen"
531
+
532
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
533
+ msgid "Field Label"
534
+ msgstr "Feld Titel"
535
+
536
+ #: admin/tab-fields.php:297
537
+ msgid "The name of the field as it will be displayed to the user."
538
+ msgstr "Der Name des Feldes, wie es dem Nutzer angezeigt werden soll."
539
+
540
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
541
+ msgid "Option Name"
542
+ msgstr "Options-Name"
543
+
544
+ #: admin/tab-fields.php:306
545
+ msgid ""
546
+ "The database meta value for the field. It must be unique and contain no "
547
+ "spaces (underscores are ok)."
548
+ msgstr ""
549
+ "Der Feldname in der Datenbank. Bitte einen individuellen Wert vergeben. "
550
+ "Erlaubt sind nur Unterstriche, keine Leerzeichen. "
551
+
552
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
553
+ msgid "Field Type"
554
+ msgstr "Feldtyp"
555
+
556
+ #: admin/tab-fields.php:316
557
+ msgid "text"
558
+ msgstr "Text"
559
+
560
+ #: admin/tab-fields.php:317
561
+ msgid "textarea"
562
+ msgstr "Textbereich"
563
+
564
+ #: admin/tab-fields.php:318
565
+ msgid "checkbox"
566
+ msgstr "Kontrollkästchen"
567
+
568
+ #: admin/tab-fields.php:319
569
+ msgid "dropdown"
570
+ msgstr "Dropdown"
571
+
572
+ #: admin/tab-fields.php:320
573
+ msgid "password"
574
+ msgstr "Passwort"
575
+
576
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
577
+ msgid "Display?"
578
+ msgstr "Anzeigen?"
579
+
580
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
581
+ msgid "Required?"
582
+ msgstr "Erforderlich?"
583
+
584
+ #: admin/tab-fields.php:334
585
+ msgid "Additional information for checkbox fields"
586
+ msgstr "Zusätzliche Informationen für die Auswahlfelder"
587
+
588
+ #: admin/tab-fields.php:337
589
+ msgid "Checked by default?"
590
+ msgstr "Auswahlschalter als Standard?"
591
+
592
+ #: admin/tab-fields.php:341
593
+ msgid "Stored value if checked:"
594
+ msgstr "Für Kontrollkästchen gespeicherter Inhalt, falls ausgewählt"
595
+
596
+ #: admin/tab-fields.php:347
597
+ msgid "Additional information for dropdown fields"
598
+ msgstr "Zusätzliche Informationen für das Dropdown-Feld"
599
+
600
+ #: admin/tab-fields.php:350
601
+ msgid "For dropdown, array of values:"
602
+ msgstr "Für Dropdown-Liste, Inhaltsbereiche"
603
+
604
+ #: admin/tab-fields.php:375
605
+ msgid "Options should be Option Name|option_value,"
606
+ msgstr "Optionen sollten sein: Option Name|option_wert"
607
+
608
+ #: admin/tab-fields.php:379
609
+ msgid "Visit plugin site for more information"
610
+ msgstr "Besuche die Plugin-Seite für weitere Informationen"
611
+
612
+ #: admin/tab-fields.php:385
613
+ msgid "Add Field"
614
+ msgstr "Feld Hinzufügen"
615
+
616
+ #: admin/tab-fields.php:407
617
+ msgid "Manage Fields"
618
+ msgstr "Felder managen"
619
+
620
+ #: admin/tab-fields.php:409
621
+ msgid ""
622
+ "Determine which fields will display and which are required. This includes "
623
+ "all fields, both native WP fields and WP-Members custom fields."
624
+ msgstr ""
625
+ "Bestimme, welche Felder angezeigt und welche erforderlich sein sollen. Das "
626
+ "betrifft sowohl Standard-WP-Felder als auch WP-Members benutzerdefinierte "
627
+ "Felder."
628
+
629
+ #: admin/tab-fields.php:410
630
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
631
+ msgstr ""
632
+ "(Hinweis: E-Mail ist immer erforderlich. Das kann nicht geändert werden.)"
633
+
634
+ #: admin/tab-fields.php:415
635
+ msgid "Add/Delete"
636
+ msgstr "Hinzufügen/Löschen"
637
+
638
+ #: admin/tab-fields.php:421
639
+ msgid "Checked?"
640
+ msgstr "Angekreuzt?"
641
+
642
+ #: admin/tab-fields.php:423
643
+ msgid "Users Screen"
644
+ msgstr "Nutzerschirm"
645
+
646
+ #: admin/tab-fields.php:435
647
+ msgid "Delete"
648
+ msgstr "Löschen"
649
+
650
+ #: admin/tab-fields.php:447
651
+ msgid "(Email cannot be removed)"
652
+ msgstr "(E-Mail kann nicht entfernt werden)"
653
+
654
+ #: admin/tab-fields.php:467
655
+ msgid "Registration Date"
656
+ msgstr "Datum der Registrierung"
657
+
658
+ #: admin/tab-fields.php:470
659
+ msgid "native"
660
+ msgstr "nativ"
661
+
662
+ #: admin/tab-fields.php:480
663
+ msgid "Active"
664
+ msgstr "Aktiv"
665
+
666
+ #: admin/tab-fields.php:492
667
+ msgid "Registration IP"
668
+ msgstr "Registrierte IP"
669
+
670
+ #: admin/tab-fields.php:527
671
+ msgid "Update Fields"
672
+ msgstr "Felder aktualisieren"
673
+
674
+ #: admin/tab-options.php:48
675
+ msgid "Manage Options"
676
+ msgstr "Optionen verwalten"
677
+
678
+ #: admin/tab-options.php:54
679
+ msgid "Block Posts by default"
680
+ msgstr "Artikel standardmäßig blockieren"
681
+
682
+ #: admin/tab-options.php:54
683
+ msgid ""
684
+ "Note: Posts can still be individually blocked or unblocked at the article "
685
+ "level"
686
+ msgstr ""
687
+ "Hinweis: Artikel können auf der Artikelseite nach wie vor einzeln blockiert "
688
+ "oder freigegeben werden"
689
+
690
+ #: admin/tab-options.php:55
691
+ msgid "Block Pages by default"
692
+ msgstr "Seiten standardmäßig blockieren"
693
+
694
+ #: admin/tab-options.php:55
695
+ msgid ""
696
+ "Note: Pages can still be individually blocked or unblocked at the article "
697
+ "level"
698
+ msgstr ""
699
+ "Hinweis: Seiten können auf der Artikelseite nach wie vor einzeln blockiert "
700
+ "oder freigegeben werden"
701
+
702
+ #: admin/tab-options.php:56
703
+ msgid "Show excerpts"
704
+ msgstr "Zeige Kurzfassung"
705
+
706
+ #: admin/tab-options.php:56
707
+ msgid ""
708
+ "Shows excerpted content above the login/registration on both Posts and Pages"
709
+ msgstr ""
710
+ "Zeige Kurzfassung des Inhaltes oberhalb des Login-/Registrierungsformulars "
711
+ "auf Seiten und in Artikeln"
712
+
713
+ #: admin/tab-options.php:57
714
+ msgid "Notify admin"
715
+ msgstr "Admin benachrichtigen"
716
+
717
+ #: admin/tab-options.php:57
718
+ #, php-format
719
+ msgid "Notify %s for each new registration? %s"
720
+ msgstr " %s benachrichtigen für jede Registrierung? %s"
721
+
722
+ #: admin/tab-options.php:58
723
+ msgid "Moderate registration"
724
+ msgstr "Registrierungen prüfen"
725
+
726
+ #: admin/tab-options.php:58
727
+ msgid "Holds new registrations for admin approval"
728
+ msgstr "Neue Registrierungen müssen durch den Administrator bestätigt werden"
729
+
730
+ #: admin/tab-options.php:91
731
+ msgid "Enable CAPTCHA"
732
+ msgstr "CAPTCHA verwenden"
733
+
734
+ #: admin/tab-options.php:59
735
+ msgid "Turns on CAPTCHA for registration"
736
+ msgstr "Schaltet CAPTCHA für die Registrierung ein"
737
+
738
+ #: admin/tab-options.php:60
739
+ msgid "Hide registration"
740
+ msgstr "Registrierung ausschalten"
741
+
742
+ #: admin/tab-options.php:60
743
+ msgid "Removes the registration form from blocked content"
744
+ msgstr "Entfernt das Registrierungs-Formular von blockierten Elementen"
745
+
746
+ #: admin/tab-options.php:62
747
+ msgid "Time-based expiration"
748
+ msgstr "Mitgliedschaft zeitbasiert beenden"
749
+
750
+ #: admin/tab-options.php:62
751
+ msgid "Allows for access to expire"
752
+ msgstr "Erlaube auslaufende Mitgliedschaft"
753
+
754
+ #: admin/tab-options.php:63
755
+ msgid "Trial period"
756
+ msgstr "Testperiode"
757
+
758
+ #: admin/tab-options.php:63
759
+ msgid "Allows for a trial period"
760
+ msgstr "Ermöglicht einen Probezeitraum"
761
+
762
+ #: admin/tab-options.php:64
763
+ msgid "Ignore warning messages"
764
+ msgstr "Warnhinweise ignorieren"
765
+
766
+ #: admin/tab-options.php:64
767
+ msgid "Ignores WP-Members warning messages in the admin panel"
768
+ msgstr "Warnhinweise von WP-Members im Adminbereich unterdrücken"
769
+
770
+ #: admin/tab-options.php:81
771
+ msgid "Attribution"
772
+ msgstr "Auszeichnung"
773
+
774
+ #: admin/tab-options.php:83
775
+ msgid ""
776
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
777
+ msgstr ""
778
+ "Auszeichnung ist erforderlich, zeige \"powered by\" link auf dem "
779
+ "Registrierungs-Formular?"
780
+
781
+ #: admin/tab-options.php:87
782
+ msgid "Auto Excerpt:"
783
+ msgstr "Auto Auszug:"
784
+
785
+ #: admin/tab-options.php:88
786
+ msgid "Number of words in excerpt:"
787
+ msgstr "Anzahl der Wörter im Auszug:"
788
+
789
+ #: admin/tab-options.php:88 admin/tab-options.php:108
790
+ #: admin/tab-options.php:118 admin/tab-options.php:132
791
+ msgid "Optional"
792
+ msgstr "Option"
793
+
794
+ #: admin/tab-options.php:88
795
+ msgid "Automatically creates an excerpt"
796
+ msgstr "Automatischen Auszug erzeugen"
797
+
798
+ #: admin/tab-options.php:103
799
+ msgid "User Profile Page:"
800
+ msgstr "Nutzerprofil-Seite"
801
+
802
+ #: admin/tab-options.php:106
803
+ msgid "For creating a forgot password link in the login form"
804
+ msgstr "Erzeugt einen \"Passwort vergessen\"-Link auf dem Anmeldeformular "
805
+
806
+ #: admin/tab-options.php:113
807
+ msgid "Register Page:"
808
+ msgstr "Registrierungsseite"
809
+
810
+ #: admin/tab-options.php:116
811
+ msgid "For creating a register link in the login form"
812
+ msgstr "Erzeugt einen \"Registrieren\"-Link auf dem Anmeldeformular "
813
+
814
+ #: admin/tab-options.php:126
815
+ msgid "Select a stylesheet or specify a custom stylesheet below"
816
+ msgstr "Stylesheet auswählen"
817
+
818
+ #: admin/tab-options.php:131
819
+ msgid "Custom Stylesheet:"
820
+ msgstr "Eigenes Stylesheet:"
821
+
822
+ #: admin/tab-options.php:136
823
+ msgid "Update Settings"
824
+ msgstr "Einstellungen aktualisieren"
825
+
826
+ #: admin/tab-options.php:246
827
+ msgid "WP-Members settings were updated"
828
+ msgstr "WP-Members wurden aktualisiert"
829
+
830
+ #: admin/tab-options.php:296
831
+ msgid "Select a page"
832
+ msgstr "Seite auswählen"
833
+
834
+ #: admin/tab-options.php:304
835
+ msgid "USE CUSTOM URL BELOW"
836
+ msgstr "NUTZE DIE UNTERE URL"
837
+
838
+ #: admin/user-export.php:57 admin/user-export.php:172
839
+ msgid "Activated?"
840
+ msgstr "Aktiviert?"
841
+
842
+ #: admin/user-export.php:61 admin/user-export.php:175
843
+ msgid "Subscription"
844
+ msgstr "Anmeldung"
845
+
846
+ #: admin/user-export.php:61 admin/user-export.php:175
847
+ msgid "Expires"
848
+ msgstr "läuft ab"
849
+
850
+ #: admin/user-export.php:64 admin/user-export.php:178
851
+ msgid "Registered"
852
+ msgstr "Registriert"
853
+
854
+ #: admin/user-export.php:65 admin/user-export.php:179
855
+ msgid "IP"
856
+ msgstr "IP"
857
+
858
+ #: admin/user-profile.php:46
859
+ msgid "WP-Members Additional Fields"
860
+ msgstr "WP-Members zusätzliche Felder"
861
+
862
+ #: admin/user-profile.php:66 native-registration.php:36
863
+ #: native-registration.php:159 users.php:62
864
+ msgid "(required)"
865
+ msgstr "(benötigt)"
866
+
867
+ #: admin/user-profile.php:98
868
+ msgid "Activate this user?"
869
+ msgstr "Nutzer aktivieren?"
870
+
871
+ #: admin/user-profile.php:103
872
+ msgid "Reactivate this user?"
873
+ msgstr "Nutzer Reaktivieren?"
874
+
875
+ #: admin/user-profile.php:108
876
+ msgid "Deactivate this user?"
877
+ msgstr "Diesen Nutzer deaktivieren?"
878
+
879
+ #: admin/user-profile.php:129
880
+ msgid "IP @ registration"
881
+ msgstr "IP Adresse bei der Registrierung"
882
+
883
+ #: admin/users.php:45 admin/users.php:49
884
+ msgid "Export"
885
+ msgstr "Exportieren"
886
+
887
+ #: admin/users.php:50 admin/users.php:91
888
+ msgid "Export All Users"
889
+ msgstr "Alle Nutzer exportieren"
890
+
891
+ #: forms.php:95
892
+ msgid "Existing Users Log In"
893
+ msgstr "Registrierte Benutzer hier anmelden"
894
+
895
+ #: forms.php:161 wp-members-dialogs.php:192
896
+ msgid "Change Password"
897
+ msgstr "Passwort "
898
+
899
+ #: forms.php:163
900
+ msgid "Update Password"
901
+ msgstr "Passwort aktualisieren"
902
+
903
+ #: forms.php:227
904
+ msgid "Reset Forgotten Password"
905
+ msgstr "vergessenes Passwort zurücksetzen"
906
+
907
+ #: forms.php:403
908
+ msgid "Forgot password?"
909
+ msgstr "Passwort vergessen?"
910
+
911
+ #: forms.php:403
912
+ msgid "Click here to reset"
913
+ msgstr "Zum Zurücksetzen hier klicken"
914
+
915
+ #: forms.php:418
916
+ msgid "New User?"
917
+ msgstr "Neuer Nutzer?"
918
+
919
+ #: forms.php:418
920
+ msgid "Click here to register"
921
+ msgstr "Hier anmelden"
922
+
923
+ #: forms.php:515
924
+ msgid "Required field"
925
+ msgstr "Benötigtes Feld"
926
+
927
+ #: forms.php:521
928
+ msgid "Reset Form"
929
+ msgstr "Formular zurücksetzen"
930
+
931
+ #: forms.php:523
932
+ msgid "Update Profile"
933
+ msgstr "Profil aktualisieren"
934
+
935
+ #: forms.php:561
936
+ msgid "Choose a Username"
937
+ msgstr "Einen Namen auswählen"
938
+
939
+ #: forms.php:683 native-registration.php:65
940
+ #, php-format
941
+ msgid "Please indicate that you agree to the %s TOS %s"
942
+ msgstr "Bitte bestätigen Sie unsere %s AGB %s"
943
+
944
+ #: forms.php:852
945
+ msgid "New User Registration"
946
+ msgstr "Nutzerregistrierung"
947
+
948
+ #: forms.php:1018
949
+ msgid "Input the code:"
950
+ msgstr ""
951
+
952
+ #: users.php:38
953
+ msgid "Additional Information"
954
+ msgstr "Zusätzliche Informationen"
955
+
956
+ #: wp-members-core.php:118 wp-members-core.php:245
957
+ msgid "There was an error with the CAPTCHA form."
958
+ msgstr "Es gab einen Fehler mit dem CAPTCHA."
959
+
960
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
961
+ msgid "Edit Your Information"
962
+ msgstr "Bearbeiten Sie ihre Benutzerinformationen"
963
+
964
+ #: wp-members-core.php:544
965
+ msgid "<strong>ERROR</strong>: User has not been activated."
966
+ msgstr "<strong>FEHLER</strong>: Nutzer wurde nicht aktiviert."
967
+
968
+ #: wp-members-core.php:903 wp-members-register.php:93
969
+ #, php-format
970
+ msgid "Sorry, %s is a required field."
971
+ msgstr "Entschuldigung, %s ist ein benötigtes Feld."
972
+
973
+ #: wp-members-dialogs.php:42
974
+ msgid "Login Failed!"
975
+ msgstr "Login fehlgeschlagen!"
976
+
977
+ #: wp-members-dialogs.php:45
978
+ msgid "You entered an invalid username or password."
979
+ msgstr "Sie verwenden einen ungültigen Namen oder ein falsches Passwort."
980
+
981
+ #: wp-members-dialogs.php:47
982
+ msgid "Click here to continue."
983
+ msgstr "Weitermachen"
984
+
985
+ #: wp-members-dialogs.php:191
986
+ msgid "Edit My Information"
987
+ msgstr "Meine Informationen bearbeiten"
988
+
989
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
990
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
991
+ #: wp-members-sidebar.php:246
992
+ #, php-format
993
+ msgid "You are logged in as %s"
994
+ msgstr "Angemeldet als %s"
995
+
996
+ #: wp-members-dialogs.php:208
997
+ msgid "Click to log out."
998
+ msgstr "Hier klicken zum abmelden"
999
+
1000
+ #: wp-members-dialogs.php:209
1001
+ msgid "Begin using the site."
1002
+ msgstr "Jetzt die Seite ansehen"
1003
+
1004
+ #: wp-members-dialogs.php:225
1005
+ msgid "Click to log out"
1006
+ msgstr "Hier klicken zum abmelden"
1007
+
1008
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1009
+ msgid "click to log out"
1010
+ msgstr "Hier Klicken zum abmelden"
1011
+
1012
+ #: wp-members-dialogs.php:271
1013
+ msgid "Password fields cannot be empty"
1014
+ msgstr "Das Feld \"Passwort\" muss ausgefüllt werden"
1015
+
1016
+ #: wp-members-register.php:51
1017
+ msgid "There was an error processing the form."
1018
+ msgstr "Es gab einen Fehler beim Verarbeiten des Formulars."
1019
+
1020
+ #: wp-members-register.php:110
1021
+ msgid "Sorry, username is a required field"
1022
+ msgstr "Der Mitgliedername ist erforderlich"
1023
+
1024
+ #: wp-members-register.php:111
1025
+ msgid "The username cannot include non-alphanumeric characters."
1026
+ msgstr "Der Mitgliedername darf nur alphanumerische Zeichen enthalten."
1027
+
1028
+ #: wp-members-register.php:112 wp-members-register.php:282
1029
+ msgid "You must enter a valid email address."
1030
+ msgstr "Verwenden Sie bitte eine gültige E-Mail Adresse."
1031
+
1032
+ #: wp-members-register.php:119
1033
+ msgid "Passwords did not match."
1034
+ msgstr "Passwort stimmt nicht überein"
1035
+
1036
+ #: wp-members-register.php:120 wp-members-register.php:286
1037
+ msgid "Emails did not match."
1038
+ msgstr "E-Mails nicht überein"
1039
+
1040
+ #: wp-members-register.php:127
1041
+ msgid "You must complete the CAPTCHA form."
1042
+ msgstr "Du musst das CAPTCHA Feld ausfüllen."
1043
+
1044
+ #: wp-members-register.php:377
1045
+ msgid "We were unable to validate the public key."
1046
+ msgstr "Wir sind nicht in der Lage den öffentlichen Schlüssel zu überprüfen."
1047
+
1048
+ #: wp-members-register.php:381
1049
+ msgid "We were unable to validate the private key."
1050
+ msgstr "Wir sind nicht in der Lage den privaten Schlüssel zu überprüfen."
1051
+
1052
+ #: wp-members-register.php:385
1053
+ msgid "The challenge parameter of the verify script was incorrect."
1054
+ msgstr "Parameterfehler"
1055
+
1056
+ #: wp-members-register.php:389
1057
+ msgid "The CAPTCHA solution was incorrect."
1058
+ msgstr "Die CAPTCHA Eingabe war falsch"
1059
+
1060
+ #: wp-members-register.php:393
1061
+ msgid "The parameters to verify were incorrect"
1062
+ msgstr "Die zu überprüfenden Parameter waren falsch"
1063
+
1064
+ #: wp-members-register.php:397
1065
+ msgid ""
1066
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1067
+ msgstr ""
1068
+ "Die reCAPTCHA API keys sind aus Sicherheitsgründen an eine bestimmte Domain "
1069
+ "gebunden."
1070
+
1071
+ #: wp-members-register.php:401
1072
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1073
+ msgstr ""
1074
+ "Der reCAPTCHA Server konnte nicht erreicht werden. Bitte versuche es "
1075
+ "nochmal."
1076
+
1077
+ #: wp-members-register.php:405
1078
+ msgid "You have entered an incorrect code value. Please try again."
1079
+ msgstr ""
1080
+
1081
+ #: wp-members-sidebar.php:117
1082
+ msgid "Login Failed!<br />You entered an invalid username or password."
1083
+ msgstr ""
1084
+ "Login fehlgeschlagen! <br /> Sie haben einen falschen Nutzernamen oder E-"
1085
+ "Mail verwendet."
1086
+
1087
+ #: wp-members-sidebar.php:118
1088
+ msgid "You are not logged in."
1089
+ msgstr "Sie sind nicht angemeldet."
1090
+
1091
+ #: wp-members-sidebar.php:169
1092
+ msgid "log in"
1093
+ msgstr "Anmelden"
1094
+
1095
+ #: wp-members-sidebar.php:180
1096
+ msgid "Forgot?"
1097
+ msgstr "Vergessen?"
1098
+
1099
+ #: wp-members-sidebar.php:247
1100
+ msgid "click here to log out"
1101
+ msgstr "Zum Abmelden hier klicken"
1102
+
1103
+ #: wp-members-sidebar.php:279
1104
+ msgid "Displays the WP-Members sidebar login."
1105
+ msgstr ""
1106
+
1107
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1108
+ msgid "Login Status"
1109
+ msgstr "Anmeldestatus"
1110
+
1111
+ #: wp-members-sidebar.php:299
1112
+ msgid "Title:"
1113
+ msgstr "Titel:"
1114
+
1115
+ #: wp-members-tos.php:24
1116
+ msgid "Terms of Service"
1117
+ msgstr "Allgemeine Geschäftsbedingungen"
1118
+
1119
+ #: wp-members-tos.php:36
1120
+ #, php-format
1121
+ msgid "%sclose%s"
1122
+ msgstr "%sschließen%s"
1123
+
1124
+ #: wp-members-tos.php:38
1125
+ #, php-format
1126
+ msgid "%sprint%s"
1127
+ msgstr "%sdrucken%s"
1128
+
1129
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1130
+ #: Strings wp-members-install.php:49
1131
+ msgid "First Name"
1132
+ msgstr "Vorname"
1133
+
1134
+ #: wp-members-install.php:50
1135
+ msgid "Last Name"
1136
+ msgstr "Nachname"
1137
+
1138
+ #: wp-members-install.php:51
1139
+ msgid "Address 1"
1140
+ msgstr "Adresszeile 1"
1141
+
1142
+ #: wp-members-install.php:52
1143
+ msgid "Address 2"
1144
+ msgstr "Adressezeile 2"
1145
+
1146
+ #: wp-members-install.php:53
1147
+ msgid "City"
1148
+ msgstr "Ort"
1149
+
1150
+ #: wp-members-install.php:54
1151
+ msgid "State"
1152
+ msgstr "Bundesland"
1153
+
1154
+ #: wp-members-install.php:55
1155
+ msgid "Zip"
1156
+ msgstr "PLZ"
1157
+
1158
+ #: wp-members-install.php:56
1159
+ msgid "Country"
1160
+ msgstr "Land"
1161
+
1162
+ #: wp-members-install.php:57
1163
+ msgid "Day Phone"
1164
+ msgstr "Telefon tagsüber"
1165
+
1166
+ #: wp-members-install.php:59
1167
+ msgid "Website"
1168
+ msgstr "Webseite"
1169
+
1170
+ #: wp-members-install.php:60
1171
+ msgid "AIM"
1172
+ msgstr "AIM"
1173
+
1174
+ #: wp-members-install.php:61
1175
+ msgid "Yahoo IM"
1176
+ msgstr "Yahoo IM"
1177
+
1178
+ #: wp-members-install.php:62
1179
+ msgid "Jabber/Google Talk"
1180
+ msgstr "Jabber/Google Talk"
1181
+
1182
+ #: wp-members-install.php:63
1183
+ msgid "Biographical Info"
1184
+ msgstr "Biografische Info"
1185
+
1186
+ #: wp-members-install.php:64 wp-members-install.php:211
1187
+ msgid "TOS"
1188
+ msgstr "AGB"
1189
+
1190
+ #: Error message dialog strings wp-members-install.php:96
1191
+ msgid ""
1192
+ "This content is restricted to site members. If you are an existing user, "
1193
+ "please log in. New users may register below."
1194
+ msgstr ""
1195
+ "Dieser Inhalt ist nur für Mitglieder zugänglich. Wenn du bereits registriert "
1196
+ "bist, dann logge dich ein. Neue Mitglieder können sich unten registrieren."
1197
+
1198
+ #: wp-members-install.php:97
1199
+ msgid "Sorry, that username is taken, please try another."
1200
+ msgstr ""
1201
+ "Schade, dieser Mitgliedername ist bereits vergeben. Bitte versuche es mit "
1202
+ "einem anderen."
1203
+
1204
+ #: wp-members-install.php:98
1205
+ msgid ""
1206
+ "Sorry, that email address already has an account.<br />Please try another."
1207
+ msgstr ""
1208
+ "Schade, diese E-Mail Adresse ist bereits einem Mitgliederkonto zugewiesen."
1209
+ "<br />Bitte wähle eine andere E-Mail-Adresse."
1210
+
1211
+ #: wp-members-install.php:99
1212
+ msgid ""
1213
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1214
+ "log in using the password that was emailed to you."
1215
+ msgstr ""
1216
+ "Glückwunsch! Deine Registrierung war erfolgreich.<br /><br />Du kannst dich "
1217
+ "nun mit dem Passwort, dass du per E-Mail bekommen wirst, einloggen."
1218
+
1219
+ #: wp-members-install.php:100
1220
+ msgid "Your information was updated!"
1221
+ msgstr "Deine Angaben wurden aktualisiert!"
1222
+
1223
+ #: wp-members-install.php:101
1224
+ msgid "Passwords did not match.<br /><br />Please try again."
1225
+ msgstr "Passwort stimmt nicht überein"
1226
+
1227
+ #: wp-members-install.php:102
1228
+ msgid ""
1229
+ "Password successfully changed!<br /><br />You will need to re-login with "
1230
+ "your new password."
1231
+ msgstr ""
1232
+ "Das Passwort wurde erfolgreich geändert!<br /><br />Du musst dich mit dem "
1233
+ "neuen Passwort erneut anmelden."
1234
+
1235
+ #: wp-members-install.php:103
1236
+ msgid "Either the username or email address do not exist in our records."
1237
+ msgstr ""
1238
+ "Vergessenes Passwort kann nicht zurückgesetzt werden, da Mitgliedername oder "
1239
+ "E-Mail nicht existieren."
1240
+
1241
+ #: wp-members-install.php:104
1242
+ msgid ""
1243
+ "Password successfully reset!<br /><br />An email containing a new password "
1244
+ "has been sent to the email address on file for your account. You may change "
1245
+ "this random password then re-login with your new password."
1246
+ msgstr ""
1247
+ "Passwort erfolgreich zurückgesetzt! <br /><br /> Eine E-Mail, die ein neues "
1248
+ "Passwort enthält, wurde an die in deinem Account hinterlegte E-Mail-Adresse "
1249
+ "versendet. Du kannst dieses zufällige Passwort wieder ändern."
1250
+
1251
+ #~ msgid "Yes"
1252
+ #~ msgstr "Ja"
1253
+
1254
+ #~ msgid "WP-Members"
1255
+ #~ msgstr "WP-Members"
1256
+
1257
+ #~ msgid "Custom"
1258
+ #~ msgstr "Benutzerdefiniert"
1259
+
1260
+ #~ msgid "edit"
1261
+ #~ msgstr "bearbeiten"
1262
+
1263
+ #~ msgid "Edit"
1264
+ #~ msgstr "Bearbeiten"
1265
+
1266
+ #~ msgid "Pages"
1267
+ #~ msgstr "Seiten"
1268
+
1269
+ #~ msgid "Stylesheet"
1270
+ #~ msgstr "Stylesheet"
1271
+
1272
+ #~ msgid "Stylesheet:"
1273
+ #~ msgstr "Stylesheet:"
1274
+
1275
+ #~ msgid "No"
1276
+ #~ msgstr "Nr"
1277
+
1278
+ #~ msgid "Activate"
1279
+ #~ msgstr "Aktivieren"
1280
+
1281
+ #~ msgid "Username"
1282
+ #~ msgstr "Nutzername"
1283
+
1284
+ #~ msgid "Password"
1285
+ #~ msgstr "Passwort"
1286
+
1287
+ #~ msgid "Log In"
1288
+ #~ msgstr "Anmelden"
1289
+
1290
+ #~ msgid "New Password"
1291
+ #~ msgstr "Neues Passwort"
1292
+
1293
+ #~ msgid "Repeat Password"
1294
+ #~ msgstr "Passwort wiederholen"
1295
+
1296
+ #~ msgid "Email"
1297
+ #~ msgstr "E-Mail"
1298
+
1299
+ #~ msgid "Reset Password"
1300
+ #~ msgstr "Passwort zurücksetzen"
1301
+
1302
+ #~ msgid "Remember me"
1303
+ #~ msgstr "Erinnere dich an mich"
1304
+
1305
+ #~ msgid "Register"
1306
+ #~ msgstr "Registrieren"
1307
+
1308
+ #~ msgid "(more&hellip;)"
1309
+ #~ msgstr "(mehr&hellip;)"
1310
+
1311
+ #~ msgid ""
1312
+ #~ "WP access restriction and user registration. For more information on "
1313
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1314
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1315
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1316
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1317
+ #~ msgstr ""
1318
+ #~ "Mehr Informationen erhalten Sie unter <a href=\"http://rocketgeek.com/"
1319
+ #~ "plugins/wp-members/users-guide/\">Der online Users Guide</a>. Der <a href="
1320
+ #~ "\"http://rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick "
1321
+ #~ "Start Guide</a> steht hier auch bereit. WP-Members(tm) ist ein "
1322
+ #~ "eingetragenes Warenzeichen von butlerblog.com."
1323
+
1324
+ #~ msgid "http://rocketgeek.com"
1325
+ #~ msgstr "http://rocketgeek.com"
1326
+
1327
+ #~ msgid "Chad Butler"
1328
+ #~ msgstr "Chad Butler"
1329
+
1330
+ #~ msgid "http://butlerblog.com/"
1331
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-es_ES.mo ADDED
Binary file
lang/wp-members-es_ES.po ADDED
@@ -0,0 +1,1459 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.9.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-21 23:15-0600\n"
9
+ "Last-Translator: Chad Butler <plugins@butlerblog.com>\n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "Language: es_ES\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 1.6.4\n"
18
+ "X-Poedit-SearchPath-0: /home/aure/raid/www/wordpress_31RC2_coitcv/wp-content/"
19
+ "plugins/wp-members\n"
20
+
21
+ #: admin/admin.php:60 admin/admin.php:129
22
+ msgid "Settings"
23
+ msgstr "Configuración"
24
+
25
+ #: admin/admin.php:187
26
+ msgid "Options"
27
+ msgstr "Opciones"
28
+
29
+ #: admin/admin.php:188
30
+ msgid "Fields"
31
+ msgstr "Campos"
32
+
33
+ #: admin/admin.php:189
34
+ msgid "Dialogs"
35
+ msgstr "Diálogos"
36
+
37
+ #: admin/admin.php:190
38
+ msgid "Emails"
39
+ msgstr ""
40
+
41
+ #: admin/dialogs.php:109
42
+ msgid ""
43
+ "Your WP settings allow anyone to register - this is not the recommended "
44
+ "setting."
45
+ msgstr ""
46
+ "Su configuración de WordPress permite a cualquiera registrarse, no es lo más "
47
+ "recomendado."
48
+
49
+ #: admin/dialogs.php:110
50
+ #, php-format
51
+ msgid ""
52
+ "You can %s change this here %s making sure the box next to \"Anyone can "
53
+ "register\" is unchecked."
54
+ msgstr ""
55
+ "Puede %s cambiar %s esto revisando que la casilla \"Cualquiera puede "
56
+ "registrarse\" está desmarcada."
57
+
58
+ #: admin/dialogs.php:111
59
+ msgid ""
60
+ "This setting allows a link on the /wp-login.php page to register using the "
61
+ "WP native registration process thus circumventing any registration you are "
62
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
63
+ "but most users should uncheck this option. If you do not change this "
64
+ "setting, you can choose to ignore these warning messages under WP-Members "
65
+ "Settings."
66
+ msgstr ""
67
+ "La configuración permite un enlace a la página /wp-login.php para "
68
+ "registrarse usando el proceso nativo de WordPress. Esto permite circunvalar "
69
+ "el proceso de registro con control de acceso. En algunos casos puede ser "
70
+ "útil, pero la mayoría de veces debería desactivarse esta opción. Si decide "
71
+ "dejar la configuración así, puede marcar \"ignorar los mensajes de alerta en "
72
+ "el panel de administrador de WordPress\" en la configuración para eliminar "
73
+ "este mensaje."
74
+
75
+ #: admin/dialogs.php:117
76
+ msgid ""
77
+ "Your WP settings allow anyone to comment - this is not the recommended "
78
+ "setting."
79
+ msgstr ""
80
+ "Su configuración de WordPress permite a cualquiera hacer comentarios, no es "
81
+ "lo más recomendado."
82
+
83
+ #: admin/dialogs.php:118
84
+ #, php-format
85
+ msgid ""
86
+ "You can %s change this here %s by checking the box next to \"Users must be "
87
+ "registered and logged in to comment.\""
88
+ msgstr ""
89
+ "Puede %s cambiar %s esto revisando que la casilla \"Cualquiera puede "
90
+ "registrarse\" está desmarcada."
91
+
92
+ #: admin/dialogs.php:119
93
+ msgid ""
94
+ "This setting allows any users to comment, whether or not they are "
95
+ "registered. Depending on how you are using WP-Members will determine whether "
96
+ "you should change this setting or not. If you do not change this setting, "
97
+ "you can choose to ignore these warning messages under WP-Members Settings."
98
+ msgstr ""
99
+ "Esta condición permite a cualquier usuario comentar, esté o no registrado. "
100
+ "Dependiendo de como esté usando el sistema de control de acceso, debería "
101
+ "cambiar la opción. Si decide dejar la configuración así, puede marcar "
102
+ "\"ignorar los mensajes de alerta en el panel de administrador de WordPress\" "
103
+ "en la configuración para eliminar este mensaje."
104
+
105
+ #: admin/dialogs.php:125
106
+ msgid ""
107
+ "Your WP settings allow full text rss feeds - this is not the recommended "
108
+ "setting."
109
+ msgstr ""
110
+ "Su configuración de WordPress permite textos completos en el canal RSS, esto "
111
+ "no es lo recomendado."
112
+
113
+ #: admin/dialogs.php:126
114
+ #, php-format
115
+ msgid ""
116
+ "You can %s change this here %s by changing \"For each article in a feed, show"
117
+ "\" to \"Summary.\""
118
+ msgstr ""
119
+
120
+ #: admin/dialogs.php:127
121
+ msgid ""
122
+ "Leaving this set to full text allows anyone to read your protected content "
123
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
124
+ "only show summary text."
125
+ msgstr ""
126
+ "Dejando la opción a texto completo permite a cualquiera leer el texto de su "
127
+ "contenido protegido con un lector de RSS. Cambiar esto previene dicha "
128
+ "posibilidad."
129
+
130
+ #: admin/dialogs.php:133
131
+ msgid "You have set WP-Members to hold registrations for approval"
132
+ msgstr ""
133
+ "Ha configurado el sistema para retener los registros hasta su aprobación"
134
+
135
+ #: admin/dialogs.php:134
136
+ msgid ""
137
+ "but you have not changed the default message for \"Registration Completed\" "
138
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
139
+ "message to let users know they are pending approval."
140
+ msgstr ""
141
+
142
+ #: admin/dialogs.php:140
143
+ msgid "You have set WP-Members to turn off the registration process"
144
+ msgstr "Ha configurado el sistema para desactivar la posibilidad de registro."
145
+
146
+ #: admin/dialogs.php:141
147
+ msgid ""
148
+ "but you also set to moderate and/or email admin new registrations. You will "
149
+ "need to set up a registration page for users to register."
150
+ msgstr ""
151
+
152
+ #: admin/dialogs.php:147
153
+ msgid "You have turned on reCAPTCHA"
154
+ msgstr "Ha activado reCAPTCHA, el sistema para prevenir registros falsos."
155
+
156
+ #: admin/dialogs.php:148
157
+ msgid ""
158
+ "but you have not entered API keys. You will need both a public and private "
159
+ "key. The CAPTCHA will not display unless a valid API key is included."
160
+ msgstr ""
161
+
162
+ #: admin/dialogs.php:171
163
+ msgid "Version:"
164
+ msgstr "Versión:"
165
+
166
+ #: admin/dialogs.php:172
167
+ msgid "Quick Start Guide"
168
+ msgstr ""
169
+
170
+ #: admin/dialogs.php:173
171
+ msgid "Online User Guide"
172
+ msgstr ""
173
+
174
+ #: admin/dialogs.php:174
175
+ msgid "FAQs"
176
+ msgstr ""
177
+
178
+ #: admin/dialogs.php:181
179
+ msgid "Thank you for using WP-Members"
180
+ msgstr "Gracias por usar WP-Members"
181
+
182
+ #: admin/dialogs.php:182
183
+ msgid "A plugin developed by"
184
+ msgstr ""
185
+
186
+ #: admin/dialogs.php:183
187
+ msgid "Follow"
188
+ msgstr "Continuar:"
189
+
190
+ #: admin/dialogs.php:200 admin/dialogs.php:204
191
+ msgid "Latest from RocketGeek"
192
+ msgstr ""
193
+
194
+ #: admin/dialogs.php:221 admin/dialogs.php:234
195
+ msgid "Latest from ButlerBlog"
196
+ msgstr ""
197
+
198
+ #: admin/post.php:36 admin/post.php:38
199
+ msgid "Block"
200
+ msgstr ""
201
+
202
+ #: admin/post.php:37 admin/post.php:39
203
+ msgid "Unblock"
204
+ msgstr ""
205
+
206
+ #: admin/post.php:120
207
+ #, php-format
208
+ msgid "%s posts %sed."
209
+ msgstr ""
210
+
211
+ #: admin/post.php:138
212
+ msgid "Post Restriction"
213
+ msgstr ""
214
+
215
+ #: admin/post.php:145
216
+ msgid "Page Restriction"
217
+ msgstr ""
218
+
219
+ #: admin/post.php:263 admin/post.php:295
220
+ msgid "Unblocked?"
221
+ msgstr ""
222
+
223
+ #: admin/post.php:263 admin/post.php:295
224
+ msgid "Blocked?"
225
+ msgstr ""
226
+
227
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
228
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
229
+ msgid "Need help?"
230
+ msgstr ""
231
+
232
+ #: admin/tab-captcha.php:46
233
+ msgid "Manage reCAPTCHA Options"
234
+ msgstr "Gestionar las opciones de reCAPTCHA"
235
+
236
+ #: admin/tab-captcha.php:60
237
+ msgid ""
238
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
239
+ "while blocking spam on your blog."
240
+ msgstr ""
241
+ "reCAPTCHA es un servicio gratuito y accesible que ayuda a recibir datos de "
242
+ "formularios eliminando el SPAM."
243
+
244
+ #: admin/tab-captcha.php:61
245
+ #, php-format
246
+ msgid ""
247
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
248
+ "that they are a human. This verifies that they are not a spambot while also "
249
+ "correcting the automatic scans of old books. So you get less spam, and the "
250
+ "world gets accurately digitized books. Everybody wins! For details, visit "
251
+ "the %s reCAPTCHA website%s"
252
+ msgstr ""
253
+ "reCAPTCHA pregunta a los usuarios una clave de dos palabras mostradas en una "
254
+ "imagen como prueba de que son humanos. Esto verifica que no son robots de "
255
+ "spam inscribiéndose automáticamente. Así conseguirá menos spam y más "
256
+ "exactitud en los registros. Todo el mundo gana. Para más información visitar "
257
+ "el %s sitio web de reCAPTCHA %s"
258
+
259
+ #: admin/tab-captcha.php:66
260
+ msgid "reCAPTCHA Keys"
261
+ msgstr "Claves de reCAPTCHA"
262
+
263
+ #: admin/tab-captcha.php:68
264
+ #, php-format
265
+ msgid ""
266
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
267
+ "key. You can sign up for a %s free reCAPTCHA key%s"
268
+ msgstr ""
269
+ "reCAPTCHA requiere una clave de encriptación pública y privada. Puede "
270
+ "apuntarse para %s conseguir las claves gratuitas %s."
271
+
272
+ #: admin/tab-captcha.php:69
273
+ msgid "Public Key"
274
+ msgstr "Clave pública"
275
+
276
+ #: admin/tab-captcha.php:70
277
+ msgid "Private Key"
278
+ msgstr "Clave Privada"
279
+
280
+ #: admin/tab-captcha.php:74
281
+ msgid "Choose Theme"
282
+ msgstr "Escoger colores"
283
+
284
+ #: admin/tab-captcha.php:77
285
+ msgid "Red"
286
+ msgstr "Rojo"
287
+
288
+ #: admin/tab-captcha.php:78
289
+ msgid "White"
290
+ msgstr "Blanco"
291
+
292
+ #: admin/tab-captcha.php:79
293
+ msgid "Black Glass"
294
+ msgstr "Oscuro"
295
+
296
+ #: admin/tab-captcha.php:80
297
+ msgid "Clean"
298
+ msgstr "Claro"
299
+
300
+ #: admin/tab-captcha.php:112
301
+ msgid "Characters for image"
302
+ msgstr ""
303
+
304
+ #: admin/tab-captcha.php:116
305
+ msgid "Number of characters"
306
+ msgstr ""
307
+
308
+ #: admin/tab-captcha.php:120
309
+ msgid "Image dimensions"
310
+ msgstr ""
311
+
312
+ #: admin/tab-captcha.php:124
313
+ msgid "Font color of characters"
314
+ msgstr ""
315
+
316
+ #: admin/tab-captcha.php:128
317
+ msgid "Background color of image"
318
+ msgstr ""
319
+
320
+ #: admin/tab-captcha.php:132
321
+ msgid "Font size"
322
+ msgstr ""
323
+
324
+ #: admin/tab-captcha.php:136
325
+ msgid "Width between characters"
326
+ msgstr ""
327
+
328
+ #: admin/tab-captcha.php:140
329
+ msgid "Image type"
330
+ msgstr ""
331
+
332
+ #: admin/tab-captcha.php:154
333
+ msgid ""
334
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
335
+ "installed and activated."
336
+ msgstr ""
337
+
338
+ #: admin/tab-captcha.php:166
339
+ msgid "Update CAPTCHA Settings"
340
+ msgstr "Actualizar configuración de CAPTCHA"
341
+
342
+ #: admin/tab-captcha.php:230
343
+ msgid "CAPTCHA was updated for WP-Members"
344
+ msgstr ""
345
+
346
+ #: admin/tab-dialogs.php:29
347
+ msgid "Restricted post (or page), displays above the login/registration form"
348
+ msgstr ""
349
+ "Las páginas o entradas bloqueadas muestran el formulario de identificación y "
350
+ "registro"
351
+
352
+ #: admin/tab-dialogs.php:30
353
+ msgid "Username is taken"
354
+ msgstr "El Nombre de Usuario ya está reservado."
355
+
356
+ #: admin/tab-dialogs.php:31
357
+ msgid "Email is registered"
358
+ msgstr "El Email ya está reservado"
359
+
360
+ #: admin/tab-dialogs.php:32
361
+ msgid "Registration completed"
362
+ msgstr "Registro Completo"
363
+
364
+ #: admin/tab-dialogs.php:33
365
+ msgid "User update"
366
+ msgstr "Actualizar Usuario"
367
+
368
+ #: admin/tab-dialogs.php:34
369
+ msgid "Passwords did not match"
370
+ msgstr "La clave no concuerda"
371
+
372
+ #: admin/tab-dialogs.php:35
373
+ msgid "Password changes"
374
+ msgstr "Cambiar clave"
375
+
376
+ #: admin/tab-dialogs.php:36
377
+ msgid "Username or email do not exist when trying to reset forgotten password"
378
+ msgstr "El Usuario o Email no existen cuando intentamos crear una nueva clave"
379
+
380
+ #: admin/tab-dialogs.php:37
381
+ msgid "Password reset"
382
+ msgstr "Reiniciar clave"
383
+
384
+ #: admin/tab-dialogs.php:54
385
+ msgid "Dialogs and Error Messages"
386
+ msgstr "Diálogos y mensajes de error"
387
+
388
+ #: admin/tab-dialogs.php:56
389
+ #, php-format
390
+ msgid ""
391
+ "You can customize the text for dialogs and error messages. Simple HTML is "
392
+ "allowed %s etc."
393
+ msgstr ""
394
+ "Puede configurar los textos para los diáloos y mensajes de error, se permite "
395
+ "HTML y tags %s."
396
+
397
+ #: admin/tab-dialogs.php:69
398
+ msgid "Terms of Service (TOS)"
399
+ msgstr "Condiciones de Uso"
400
+
401
+ #: admin/tab-dialogs.php:76
402
+ msgid "Update Dialogs"
403
+ msgstr "Actualizar Diálogos"
404
+
405
+ #: admin/tab-dialogs.php:115
406
+ msgid "WP-Members dialogs were updated"
407
+ msgstr ""
408
+
409
+ #: admin/tab-emails.php:30
410
+ msgid "New Registration"
411
+ msgstr ""
412
+
413
+ #: admin/tab-emails.php:34
414
+ msgid "Registration is Moderated"
415
+ msgstr ""
416
+
417
+ #: admin/tab-emails.php:35
418
+ msgid "Registration is Moderated, User is Approved"
419
+ msgstr ""
420
+
421
+ #: admin/tab-emails.php:40
422
+ msgid "Password Reset"
423
+ msgstr ""
424
+
425
+ #: admin/tab-emails.php:45
426
+ msgid "Admin Notification"
427
+ msgstr "Avisar al administrador"
428
+
429
+ #: admin/tab-emails.php:50
430
+ msgid "Email Signature"
431
+ msgstr ""
432
+
433
+ #: admin/tab-emails.php:57
434
+ msgid "Email Messages"
435
+ msgstr ""
436
+
437
+ #: admin/tab-emails.php:60
438
+ msgid "You can customize the content of the emails sent by the plugin."
439
+ msgstr ""
440
+
441
+ #: admin/tab-emails.php:62
442
+ msgid "A list of shortcodes is available here."
443
+ msgstr ""
444
+
445
+ #: admin/tab-emails.php:69
446
+ msgid "Set a custom email address"
447
+ msgstr ""
448
+
449
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
450
+ msgid "(optional)"
451
+ msgstr "(opcional)"
452
+
453
+ #: admin/tab-emails.php:73
454
+ msgid "Set a custom email name"
455
+ msgstr ""
456
+
457
+ #: admin/tab-emails.php:84
458
+ msgid "Subject"
459
+ msgstr ""
460
+
461
+ #: admin/tab-emails.php:88
462
+ msgid "Body"
463
+ msgstr "Cuerpo"
464
+
465
+ #: admin/tab-emails.php:105
466
+ msgid "Update Emails"
467
+ msgstr ""
468
+
469
+ #: admin/tab-emails.php:161
470
+ msgid "WP-Members emails were updated"
471
+ msgstr ""
472
+
473
+ #: admin/tab-fields.php:166
474
+ msgid "WP-Members fields were updated"
475
+ msgstr ""
476
+
477
+ #: admin/tab-fields.php:176
478
+ msgid "Field Label is required for adding a new field. Nothing was updated."
479
+ msgstr ""
480
+
481
+ #: admin/tab-fields.php:177
482
+ msgid "Option Name is required for adding a new field. Nothing was updated."
483
+ msgstr ""
484
+
485
+ #: admin/tab-fields.php:184
486
+ msgid "A field with that option name already exists"
487
+ msgstr ""
488
+
489
+ #: admin/tab-fields.php:201
490
+ msgid "Checked value is required for checkboxes. Nothing was updated."
491
+ msgstr ""
492
+
493
+ #: admin/tab-fields.php:223
494
+ msgid "field was added"
495
+ msgstr ""
496
+
497
+ #: admin/tab-fields.php:241
498
+ msgid "field was updated"
499
+ msgstr ""
500
+
501
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
502
+ msgid "Edit Field"
503
+ msgstr ""
504
+
505
+ #: admin/tab-fields.php:289
506
+ msgid "Add a Field"
507
+ msgstr ""
508
+
509
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
510
+ msgid "Field Label"
511
+ msgstr "Nombre del Campo"
512
+
513
+ #: admin/tab-fields.php:297
514
+ msgid "The name of the field as it will be displayed to the user."
515
+ msgstr ""
516
+
517
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
518
+ msgid "Option Name"
519
+ msgstr ""
520
+
521
+ #: admin/tab-fields.php:306
522
+ msgid ""
523
+ "The database meta value for the field. It must be unique and contain no "
524
+ "spaces (underscores are ok)."
525
+ msgstr ""
526
+
527
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
528
+ msgid "Field Type"
529
+ msgstr ""
530
+
531
+ #: admin/tab-fields.php:316
532
+ msgid "text"
533
+ msgstr ""
534
+
535
+ #: admin/tab-fields.php:317
536
+ msgid "textarea"
537
+ msgstr ""
538
+
539
+ #: admin/tab-fields.php:318
540
+ msgid "checkbox"
541
+ msgstr ""
542
+
543
+ #: admin/tab-fields.php:319
544
+ msgid "dropdown"
545
+ msgstr "desplegable"
546
+
547
+ #: admin/tab-fields.php:320
548
+ msgid "password"
549
+ msgstr ""
550
+
551
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
552
+ msgid "Display?"
553
+ msgstr "Visible"
554
+
555
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
556
+ msgid "Required?"
557
+ msgstr "Obligatorio"
558
+
559
+ #: admin/tab-fields.php:334
560
+ msgid "Additional information for checkbox fields"
561
+ msgstr ""
562
+
563
+ #: admin/tab-fields.php:337
564
+ msgid "Checked by default?"
565
+ msgstr ""
566
+
567
+ #: admin/tab-fields.php:341
568
+ msgid "Stored value if checked:"
569
+ msgstr ""
570
+
571
+ #: admin/tab-fields.php:347
572
+ msgid "Additional information for dropdown fields"
573
+ msgstr ""
574
+
575
+ #: admin/tab-fields.php:350
576
+ msgid "For dropdown, array of values:"
577
+ msgstr "para desplegable, matriz de valores:"
578
+
579
+ #: admin/tab-fields.php:375
580
+ msgid "Options should be Option Name|option_value,"
581
+ msgstr ""
582
+
583
+ #: admin/tab-fields.php:379
584
+ msgid "Visit plugin site for more information"
585
+ msgstr ""
586
+
587
+ #: admin/tab-fields.php:385
588
+ msgid "Add Field"
589
+ msgstr ""
590
+
591
+ #: admin/tab-fields.php:407
592
+ msgid "Manage Fields"
593
+ msgstr "Gestionar Campos"
594
+
595
+ #: admin/tab-fields.php:409
596
+ msgid ""
597
+ "Determine which fields will display and which are required. This includes "
598
+ "all fields, both native WP fields and WP-Members custom fields."
599
+ msgstr ""
600
+ "Determinar que campos se mostrarán y cuales son obligatorios. Esto incluye "
601
+ "todos los campos, tanto los de WordPress como los campos extra creados aquí."
602
+
603
+ #: admin/tab-fields.php:410
604
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
605
+ msgstr "(Nota: el campo Email es obligatorio, no puede cambiarse.)"
606
+
607
+ #: admin/tab-fields.php:415
608
+ msgid "Add/Delete"
609
+ msgstr "Añadir/Eliminar"
610
+
611
+ #: admin/tab-fields.php:421
612
+ msgid "Checked?"
613
+ msgstr ""
614
+
615
+ #: admin/tab-fields.php:423
616
+ msgid "Users Screen"
617
+ msgstr ""
618
+
619
+ #: admin/tab-fields.php:435
620
+ msgid "Delete"
621
+ msgstr "Eliminar"
622
+
623
+ #: admin/tab-fields.php:447
624
+ msgid "(Email cannot be removed)"
625
+ msgstr "(Nota: el campo Email es obligatorio, no puede cambiarse.)"
626
+
627
+ #: admin/tab-fields.php:467
628
+ msgid "Registration Date"
629
+ msgstr ""
630
+
631
+ #: admin/tab-fields.php:470
632
+ msgid "native"
633
+ msgstr ""
634
+
635
+ #: admin/tab-fields.php:480
636
+ msgid "Active"
637
+ msgstr "Activar"
638
+
639
+ #: admin/tab-fields.php:492
640
+ msgid "Registration IP"
641
+ msgstr "Dirección IP"
642
+
643
+ #: admin/tab-fields.php:527
644
+ msgid "Update Fields"
645
+ msgstr "Actualizar Campos"
646
+
647
+ #: admin/tab-options.php:48
648
+ msgid "Manage Options"
649
+ msgstr "Configurar Opciones"
650
+
651
+ #: admin/tab-options.php:54
652
+ msgid "Block Posts by default"
653
+ msgstr "Bloquear Entradas por defecto"
654
+
655
+ #: admin/tab-options.php:54
656
+ msgid ""
657
+ "Note: Posts can still be individually blocked or unblocked at the article "
658
+ "level"
659
+ msgstr ""
660
+ "Puede cambiar una entrada individual. Para desbloquear, crear en la entrada "
661
+ "seleccionada un campo \"unblock=true\", o para bloquear \"block=true\"."
662
+
663
+ #: admin/tab-options.php:55
664
+ msgid "Block Pages by default"
665
+ msgstr "Bloquear Páginas por defecto"
666
+
667
+ #: admin/tab-options.php:55
668
+ msgid ""
669
+ "Note: Pages can still be individually blocked or unblocked at the article "
670
+ "level"
671
+ msgstr ""
672
+ "Puede cambiar una página individual. Para desbloquear, crear en la entrada "
673
+ "seleccionada un campo \"unblock=true\", o para bloquear \"block=true\"."
674
+
675
+ #: admin/tab-options.php:56
676
+ msgid "Show excerpts"
677
+ msgstr "Mostrar extractos (resúmenes)"
678
+
679
+ #: admin/tab-options.php:56
680
+ msgid ""
681
+ "Shows excerpted content above the login/registration on both Posts and Pages"
682
+ msgstr ""
683
+ "Mostrar extractos sobre el formulario de acceso tanto en entradas como "
684
+ "páginas"
685
+
686
+ #: admin/tab-options.php:57
687
+ msgid "Notify admin"
688
+ msgstr "Avisar al administrador"
689
+
690
+ #: admin/tab-options.php:57
691
+ #, php-format
692
+ msgid "Notify %s for each new registration? %s"
693
+ msgstr "¿Enviar un email al %s para cada nuevo registro? %s"
694
+
695
+ #: admin/tab-options.php:58
696
+ msgid "Moderate registration"
697
+ msgstr "Confirmar registros"
698
+
699
+ #: admin/tab-options.php:58
700
+ msgid "Holds new registrations for admin approval"
701
+ msgstr "Los nuevos registros serán aprobados por el administrador"
702
+
703
+ #: admin/tab-options.php:91
704
+ msgid "Enable CAPTCHA"
705
+ msgstr ""
706
+
707
+ #: admin/tab-options.php:59
708
+ msgid "Turns on CAPTCHA for registration"
709
+ msgstr "Activa un sistema de CAPTCHA para el registro"
710
+
711
+ #: admin/tab-options.php:60
712
+ msgid "Hide registration"
713
+ msgstr ""
714
+
715
+ #: admin/tab-options.php:60
716
+ msgid "Removes the registration form from blocked content"
717
+ msgstr ""
718
+
719
+ #: admin/tab-options.php:62
720
+ msgid "Time-based expiration"
721
+ msgstr "Expiración por fecha"
722
+
723
+ #: admin/tab-options.php:62
724
+ msgid "Allows for access to expire"
725
+ msgstr "Permite el acceso hasta que el permiso expire"
726
+
727
+ #: admin/tab-options.php:63
728
+ msgid "Trial period"
729
+ msgstr "Periodo de prueba"
730
+
731
+ #: admin/tab-options.php:63
732
+ msgid "Allows for a trial period"
733
+ msgstr "Permite un periodo de acceso de prueba"
734
+
735
+ #: admin/tab-options.php:64
736
+ msgid "Ignore warning messages"
737
+ msgstr "Ignorar mensajes de advertencia"
738
+
739
+ #: admin/tab-options.php:64
740
+ msgid "Ignores WP-Members warning messages in the admin panel"
741
+ msgstr "Ignorar mensajes del plugin en el panel de control de Wordpress"
742
+
743
+ #: admin/tab-options.php:81
744
+ msgid "Attribution"
745
+ msgstr ""
746
+
747
+ #: admin/tab-options.php:83
748
+ msgid ""
749
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
750
+ msgstr ""
751
+
752
+ #: admin/tab-options.php:87
753
+ msgid "Auto Excerpt:"
754
+ msgstr ""
755
+
756
+ #: admin/tab-options.php:88
757
+ msgid "Number of words in excerpt:"
758
+ msgstr ""
759
+
760
+ #: admin/tab-options.php:88 admin/tab-options.php:108
761
+ #: admin/tab-options.php:118 admin/tab-options.php:132
762
+ msgid "Optional"
763
+ msgstr "(opcional)"
764
+
765
+ #: admin/tab-options.php:88
766
+ msgid "Automatically creates an excerpt"
767
+ msgstr ""
768
+
769
+ #: admin/tab-options.php:103
770
+ msgid "User Profile Page:"
771
+ msgstr ""
772
+
773
+ #: admin/tab-options.php:106
774
+ msgid "For creating a forgot password link in the login form"
775
+ msgstr ""
776
+
777
+ #: admin/tab-options.php:113
778
+ msgid "Register Page:"
779
+ msgstr "Registrarse Página"
780
+
781
+ #: admin/tab-options.php:116
782
+ msgid "For creating a register link in the login form"
783
+ msgstr ""
784
+
785
+ #: admin/tab-options.php:126
786
+ msgid "Select a stylesheet or specify a custom stylesheet below"
787
+ msgstr ""
788
+
789
+ #: admin/tab-options.php:131
790
+ msgid "Custom Stylesheet:"
791
+ msgstr "Hoja de estilo"
792
+
793
+ #: admin/tab-options.php:136
794
+ msgid "Update Settings"
795
+ msgstr "Actualizar Configuración"
796
+
797
+ #: admin/tab-options.php:246
798
+ msgid "WP-Members settings were updated"
799
+ msgstr ""
800
+
801
+ #: admin/tab-options.php:296
802
+ msgid "Select a page"
803
+ msgstr ""
804
+
805
+ #: admin/tab-options.php:304
806
+ msgid "USE CUSTOM URL BELOW"
807
+ msgstr ""
808
+
809
+ #: admin/user-export.php:57 admin/user-export.php:172
810
+ msgid "Activated?"
811
+ msgstr "Activado"
812
+
813
+ #: admin/user-export.php:61 admin/user-export.php:175
814
+ msgid "Subscription"
815
+ msgstr "Suscripción"
816
+
817
+ #: admin/user-export.php:61 admin/user-export.php:175
818
+ msgid "Expires"
819
+ msgstr "Expira"
820
+
821
+ #: admin/user-export.php:64 admin/user-export.php:178
822
+ msgid "Registered"
823
+ msgstr "Registrado"
824
+
825
+ #: admin/user-export.php:65 admin/user-export.php:179
826
+ msgid "IP"
827
+ msgstr "IP"
828
+
829
+ #: admin/user-profile.php:46
830
+ msgid "WP-Members Additional Fields"
831
+ msgstr "Campos Adicionales"
832
+
833
+ #: admin/user-profile.php:66 native-registration.php:36
834
+ #: native-registration.php:159 users.php:62
835
+ msgid "(required)"
836
+ msgstr "(obligatorio)"
837
+
838
+ #: admin/user-profile.php:98
839
+ msgid "Activate this user?"
840
+ msgstr "¿Activar este usuario?"
841
+
842
+ #: admin/user-profile.php:103
843
+ msgid "Reactivate this user?"
844
+ msgstr "Activar este usuario?"
845
+
846
+ #: admin/user-profile.php:108
847
+ msgid "Deactivate this user?"
848
+ msgstr "Desactive este usuario?"
849
+
850
+ #: admin/user-profile.php:129
851
+ msgid "IP @ registration"
852
+ msgstr "Dirección IP"
853
+
854
+ #: admin/users.php:45 admin/users.php:49
855
+ msgid "Export"
856
+ msgstr "Exportar"
857
+
858
+ #: admin/users.php:50 admin/users.php:91
859
+ msgid "Export All Users"
860
+ msgstr "Exportar todos los usuarios"
861
+
862
+ #: forms.php:95
863
+ msgid "Existing Users Log In"
864
+ msgstr "Usuarios Existentes Entrar"
865
+
866
+ #: forms.php:161 wp-members-dialogs.php:192
867
+ msgid "Change Password"
868
+ msgstr "Cambiar clave"
869
+
870
+ #: forms.php:163
871
+ msgid "Update Password"
872
+ msgstr "Actualizar Clave"
873
+
874
+ #: forms.php:227
875
+ msgid "Reset Forgotten Password"
876
+ msgstr "Reiniciar clave olvidada"
877
+
878
+ #: forms.php:403
879
+ msgid "Forgot password?"
880
+ msgstr "¿Olvidó su clave?"
881
+
882
+ #: forms.php:403
883
+ msgid "Click here to reset"
884
+ msgstr "Pulse para reiniciar"
885
+
886
+ #: forms.php:418
887
+ msgid "New User?"
888
+ msgstr "¿Nuevo usuario?"
889
+
890
+ #: forms.php:418
891
+ msgid "Click here to register"
892
+ msgstr "Haga clic aquí para registrarse"
893
+
894
+ #: forms.php:515
895
+ msgid "Required field"
896
+ msgstr "Campo Obligatorio"
897
+
898
+ #: forms.php:521
899
+ msgid "Reset Form"
900
+ msgstr "Reiniciar clave"
901
+
902
+ #: forms.php:523
903
+ msgid "Update Profile"
904
+ msgstr "Perfil del Usuario"
905
+
906
+ #: forms.php:561
907
+ msgid "Choose a Username"
908
+ msgstr "Escoja un Nombre de Usuario"
909
+
910
+ #: forms.php:683 native-registration.php:65
911
+ #, php-format
912
+ msgid "Please indicate that you agree to the %s TOS %s"
913
+ msgstr ""
914
+ "Por favor indique que ha leido y está de acuerdo con las %s Condiciones de "
915
+ "Uso %s"
916
+
917
+ #: forms.php:852
918
+ msgid "New User Registration"
919
+ msgstr "Registro de Nuevo Usuario"
920
+
921
+ #: forms.php:1018
922
+ msgid "Input the code:"
923
+ msgstr ""
924
+
925
+ #: users.php:38
926
+ msgid "Additional Information"
927
+ msgstr "Campos Adicionales"
928
+
929
+ #: wp-members-core.php:118 wp-members-core.php:245
930
+ msgid "There was an error with the CAPTCHA form."
931
+ msgstr "Hubo un error con el formulario de CAPTCHA."
932
+
933
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
934
+ msgid "Edit Your Information"
935
+ msgstr "Edite su información"
936
+
937
+ #: wp-members-core.php:544
938
+ msgid "<strong>ERROR</strong>: User has not been activated."
939
+ msgstr ""
940
+
941
+ #: wp-members-core.php:903 wp-members-register.php:93
942
+ #, php-format
943
+ msgid "Sorry, %s is a required field."
944
+ msgstr "Lo sentimos,%s es un campo obligatorio."
945
+
946
+ #: wp-members-dialogs.php:42
947
+ msgid "Login Failed!"
948
+ msgstr "¡Error de Identificación!"
949
+
950
+ #: wp-members-dialogs.php:45
951
+ msgid "You entered an invalid username or password."
952
+ msgstr "Introdujo un usuario o clave inválidos"
953
+
954
+ #: wp-members-dialogs.php:47
955
+ msgid "Click here to continue."
956
+ msgstr "Pulse para continuar"
957
+
958
+ #: wp-members-dialogs.php:191
959
+ msgid "Edit My Information"
960
+ msgstr "Editar mi Información"
961
+
962
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
963
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
964
+ #: wp-members-sidebar.php:246
965
+ #, php-format
966
+ msgid "You are logged in as %s"
967
+ msgstr "Se ha identificado como %s"
968
+
969
+ #: wp-members-dialogs.php:208
970
+ msgid "Click to log out."
971
+ msgstr "Haga clic para cerrar la sesión."
972
+
973
+ #: wp-members-dialogs.php:209
974
+ msgid "Begin using the site."
975
+ msgstr "Comience a utilizar el sitio."
976
+
977
+ #: wp-members-dialogs.php:225
978
+ msgid "Click to log out"
979
+ msgstr "Haga clic para cerrar la sesión"
980
+
981
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
982
+ msgid "click to log out"
983
+ msgstr "haga clic para cerrar la sesión"
984
+
985
+ #: wp-members-dialogs.php:271
986
+ msgid "Password fields cannot be empty"
987
+ msgstr "Campos de contraseña no puede estar vacía"
988
+
989
+ #: wp-members-register.php:51
990
+ msgid "There was an error processing the form."
991
+ msgstr "Diálogos y mensajes de error"
992
+
993
+ #: wp-members-register.php:110
994
+ msgid "Sorry, username is a required field"
995
+ msgstr "debe introducir una dirección de correo electrónico válida"
996
+
997
+ #: wp-members-register.php:111
998
+ msgid "The username cannot include non-alphanumeric characters."
999
+ msgstr ""
1000
+
1001
+ #: wp-members-register.php:112 wp-members-register.php:282
1002
+ msgid "You must enter a valid email address."
1003
+ msgstr "Debe introducir una dirección de correo electrónico válida"
1004
+
1005
+ #: wp-members-register.php:119
1006
+ msgid "Passwords did not match."
1007
+ msgstr "Las contraseñas no coinciden."
1008
+
1009
+ #: wp-members-register.php:120 wp-members-register.php:286
1010
+ msgid "Emails did not match."
1011
+ msgstr "Los correos electrónicos no coinciden."
1012
+
1013
+ #: wp-members-register.php:127
1014
+ msgid "You must complete the CAPTCHA form."
1015
+ msgstr "Usted no ha entrado en"
1016
+
1017
+ #: wp-members-register.php:377
1018
+ msgid "We were unable to validate the public key."
1019
+ msgstr "No se pudo validar la clave pública de CAPTCHA."
1020
+
1021
+ #: wp-members-register.php:381
1022
+ msgid "We were unable to validate the private key."
1023
+ msgstr "No se pudo validar la clave privada de CAPTCHA."
1024
+
1025
+ #: wp-members-register.php:385
1026
+ msgid "The challenge parameter of the verify script was incorrect."
1027
+ msgstr "El parámetro de verificación del script es incorrecto."
1028
+
1029
+ #: wp-members-register.php:389
1030
+ msgid "The CAPTCHA solution was incorrect."
1031
+ msgstr "La resolución del CAPTCHA es incorrecta."
1032
+
1033
+ #: wp-members-register.php:393
1034
+ msgid "The parameters to verify were incorrect"
1035
+ msgstr "Los parámetros a verificar son incorrectos"
1036
+
1037
+ #: wp-members-register.php:397
1038
+ msgid ""
1039
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1040
+ msgstr ""
1041
+ "las claves de reCAPTCHA van asociadas a un dominio específico por razones de "
1042
+ "seguridad"
1043
+
1044
+ #: wp-members-register.php:401
1045
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1046
+ msgstr "El servidor de reCAPTCHA no responde, por favor reinténtelo."
1047
+
1048
+ #: wp-members-register.php:405
1049
+ msgid "You have entered an incorrect code value. Please try again."
1050
+ msgstr ""
1051
+
1052
+ #: wp-members-sidebar.php:117
1053
+ msgid "Login Failed!<br />You entered an invalid username or password."
1054
+ msgstr "¡Identificación fallida! Introdujo un usuario o clave incorrectas."
1055
+
1056
+ #: wp-members-sidebar.php:118
1057
+ msgid "You are not logged in."
1058
+ msgstr "Usted no ha entrado en"
1059
+
1060
+ #: wp-members-sidebar.php:169
1061
+ msgid "log in"
1062
+ msgstr "iniciar sesión"
1063
+
1064
+ #: wp-members-sidebar.php:180
1065
+ msgid "Forgot?"
1066
+ msgstr "¿Olvidó su clave?"
1067
+
1068
+ #: wp-members-sidebar.php:247
1069
+ msgid "click here to log out"
1070
+ msgstr "Pulse para desconectar"
1071
+
1072
+ #: wp-members-sidebar.php:279
1073
+ msgid "Displays the WP-Members sidebar login."
1074
+ msgstr ""
1075
+
1076
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1077
+ msgid "Login Status"
1078
+ msgstr "Estado de Identificación"
1079
+
1080
+ #: wp-members-sidebar.php:299
1081
+ msgid "Title:"
1082
+ msgstr "Título:"
1083
+
1084
+ #: wp-members-tos.php:24
1085
+ msgid "Terms of Service"
1086
+ msgstr "Condiciones de Uso"
1087
+
1088
+ #: wp-members-tos.php:36
1089
+ #, php-format
1090
+ msgid "%sclose%s"
1091
+ msgstr "%scerrar%s"
1092
+
1093
+ #: wp-members-tos.php:38
1094
+ #, php-format
1095
+ msgid "%sprint%s"
1096
+ msgstr "%simprimir%s"
1097
+
1098
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1099
+ #: Strings wp-members-install.php:49
1100
+ msgid "First Name"
1101
+ msgstr "Nombre"
1102
+
1103
+ #: wp-members-install.php:50
1104
+ msgid "Last Name"
1105
+ msgstr "Apellidos"
1106
+
1107
+ #: wp-members-install.php:51
1108
+ msgid "Address 1"
1109
+ msgstr "Dirección (línea 1)"
1110
+
1111
+ #: wp-members-install.php:52
1112
+ msgid "Address 2"
1113
+ msgstr "Dirección (línea 2)"
1114
+
1115
+ #: wp-members-install.php:53
1116
+ msgid "City"
1117
+ msgstr "Ciudad"
1118
+
1119
+ #: wp-members-install.php:54
1120
+ msgid "State"
1121
+ msgstr "Provincia"
1122
+
1123
+ #: wp-members-install.php:55
1124
+ msgid "Zip"
1125
+ msgstr "CP"
1126
+
1127
+ #: wp-members-install.php:56
1128
+ msgid "Country"
1129
+ msgstr "País"
1130
+
1131
+ #: wp-members-install.php:57
1132
+ msgid "Day Phone"
1133
+ msgstr "Teléfono"
1134
+
1135
+ #: wp-members-install.php:59
1136
+ msgid "Website"
1137
+ msgstr "Sitio web"
1138
+
1139
+ #: wp-members-install.php:60
1140
+ msgid "AIM"
1141
+ msgstr "AIM"
1142
+
1143
+ #: wp-members-install.php:61
1144
+ msgid "Yahoo IM"
1145
+ msgstr "Yahoo IM"
1146
+
1147
+ #: wp-members-install.php:62
1148
+ msgid "Jabber/Google Talk"
1149
+ msgstr "Jabber/Google Talk"
1150
+
1151
+ #: wp-members-install.php:63
1152
+ msgid "Biographical Info"
1153
+ msgstr "Información biográfica"
1154
+
1155
+ #: wp-members-install.php:64 wp-members-install.php:211
1156
+ msgid "TOS"
1157
+ msgstr "Condiciones de Uso"
1158
+
1159
+ #: Error message dialog strings wp-members-install.php:96
1160
+ msgid ""
1161
+ "This content is restricted to site members. If you are an existing user, "
1162
+ "please log in. New users may register below."
1163
+ msgstr ""
1164
+ "Este contenido está reservado a los miembros del sitio web. Si usted es "
1165
+ "miembro, por favor identifíquese. Si usted no es miembro, regístrese."
1166
+
1167
+ #: wp-members-install.php:97
1168
+ msgid "Sorry, that username is taken, please try another."
1169
+ msgstr ""
1170
+ "Lo sentimos, ese nombre de usuario está reservado, por favor intente uno "
1171
+ "distinto."
1172
+
1173
+ #: wp-members-install.php:98
1174
+ msgid ""
1175
+ "Sorry, that email address already has an account.<br />Please try another."
1176
+ msgstr ""
1177
+ "Lo sentimos, ese Email está ya en uso, por favor intente con uno distinto."
1178
+
1179
+ #: wp-members-install.php:99
1180
+ msgid ""
1181
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1182
+ "log in using the password that was emailed to you."
1183
+ msgstr ""
1184
+ "Correcto. El proceso de registro se completó. <br /><br />Ahora puede "
1185
+ "identificarse y acceder usando la clave que ha sido enviada a su email."
1186
+
1187
+ #: wp-members-install.php:100
1188
+ msgid "Your information was updated!"
1189
+ msgstr "Su información fue actualizada."
1190
+
1191
+ #: wp-members-install.php:101
1192
+ msgid "Passwords did not match.<br /><br />Please try again."
1193
+ msgstr "Las claves no concuerdan.<br /><br />Por favor, inténtelo de nuevo."
1194
+
1195
+ #: wp-members-install.php:102
1196
+ msgid ""
1197
+ "Password successfully changed!<br /><br />You will need to re-login with "
1198
+ "your new password."
1199
+ msgstr ""
1200
+ "La clave se cambió correctamente. <br/><br/> Deberá identificarse de nuevo "
1201
+ "con su nueva clave."
1202
+
1203
+ #: wp-members-install.php:103
1204
+ msgid "Either the username or email address do not exist in our records."
1205
+ msgstr ""
1206
+ "El nombre de usuario o el email indicados no existen en nuestra base de "
1207
+ "datos."
1208
+
1209
+ #: wp-members-install.php:104
1210
+ msgid ""
1211
+ "Password successfully reset!<br /><br />An email containing a new password "
1212
+ "has been sent to the email address on file for your account. You may change "
1213
+ "this random password then re-login with your new password."
1214
+ msgstr ""
1215
+ "Clave reseteada. <br /><br /> Se le enviará por mail a su cuenta de correo. "
1216
+ "Puede cambiar la clave cuando quiera una vez se haya identificado."
1217
+
1218
+ #~ msgid "Yes"
1219
+ #~ msgstr "Sí"
1220
+
1221
+ #~ msgid "WP-Members"
1222
+ #~ msgstr "WP-Members"
1223
+
1224
+ #~ msgid "Custom"
1225
+ #~ msgstr "Personalizado"
1226
+
1227
+ #, fuzzy
1228
+ #~ msgid "edit"
1229
+ #~ msgstr "Edite su información"
1230
+
1231
+ #, fuzzy
1232
+ #~ msgid "Edit"
1233
+ #~ msgstr "Edite su información"
1234
+
1235
+ #~ msgid "Use reCAPTCHA"
1236
+ #~ msgstr "Usar reCAPTCHA"
1237
+
1238
+ #, fuzzy
1239
+ #~ msgid "Pages"
1240
+ #~ msgstr "Bloquear Páginas por defecto"
1241
+
1242
+ #~ msgid "Stylesheet"
1243
+ #~ msgstr "Hoja de estilo"
1244
+
1245
+ #~ msgid "Stylesheet:"
1246
+ #~ msgstr "Hoja de estilo:"
1247
+
1248
+ #~ msgid "No"
1249
+ #~ msgstr "No"
1250
+
1251
+ #~ msgid "Activate"
1252
+ #~ msgstr "Activar"
1253
+
1254
+ #~ msgid "Username"
1255
+ #~ msgstr "Usuario"
1256
+
1257
+ #~ msgid "Password"
1258
+ #~ msgstr "Clave"
1259
+
1260
+ #, fuzzy
1261
+ #~ msgid "Log In"
1262
+ #~ msgstr "identificarse"
1263
+
1264
+ #~ msgid "New Password"
1265
+ #~ msgstr "Nueva Clave"
1266
+
1267
+ #~ msgid "Repeat Password"
1268
+ #~ msgstr "Repetir Clave"
1269
+
1270
+ #~ msgid "Email"
1271
+ #~ msgstr "Email"
1272
+
1273
+ #~ msgid "Reset Password"
1274
+ #~ msgstr "Reiniciar clave"
1275
+
1276
+ #~ msgid "Remember me"
1277
+ #~ msgstr "Recordar"
1278
+
1279
+ #, fuzzy
1280
+ #~ msgid "Register"
1281
+ #~ msgstr ""
1282
+ #~ "Su configuración de WordPress permite a cualquiera registrarse, no es lo "
1283
+ #~ "más recomendado."
1284
+
1285
+ #~ msgid "(more&hellip;)"
1286
+ #~ msgstr "(más&hellip;)"
1287
+
1288
+ #, fuzzy
1289
+ #~ msgid ""
1290
+ #~ "WP access restriction and user registration. For more information on "
1291
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1292
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1293
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1294
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1295
+ #~ msgstr ""
1296
+ #~ "Restricción de acceso a WordPress y registro extendido de usuarios. Para "
1297
+ #~ "más información, puede descargar la guía de usuario en <a href=\"http://"
1298
+ #~ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. Vea una "
1299
+ #~ "demostración en <a href=\"http://butlerblog.com/wpmembers\">http://"
1300
+ #~ "butlerblog.com/wpmembers</a>. WP-Members(tm) es marca registrada de "
1301
+ #~ "butlerblog.com."
1302
+
1303
+ #, fuzzy
1304
+ #~ msgid "http://rocketgeek.com"
1305
+ #~ msgstr "http://butlerblog.com/"
1306
+
1307
+ #~ msgid "Chad Butler"
1308
+ #~ msgstr "Chad Butler"
1309
+
1310
+ #~ msgid "http://butlerblog.com/"
1311
+ #~ msgstr "http://butlerblog.com/"
1312
+
1313
+ #~ msgid "Turn off registration"
1314
+ #~ msgstr "Desactivar posibilidad de registrarse "
1315
+
1316
+ #~ msgid "Turns off the registration process, only allows login"
1317
+ #~ msgstr "Sólo permite identificación, pero no registro"
1318
+
1319
+ #, fuzzy
1320
+ #~ msgid "Add"
1321
+ #~ msgstr "Nuevo Usuario"
1322
+
1323
+ #~ msgid ""
1324
+ #~ "Settings were saved, but you have required fields that are not set to "
1325
+ #~ "display!"
1326
+ #~ msgstr ""
1327
+ #~ "La configuración se guardó, pero tiene campos obligatorios marcados como "
1328
+ #~ "no visibles, no tiene sentido!"
1329
+
1330
+ #, fuzzy
1331
+ #~ msgid ""
1332
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1333
+ #~ "fields are validated. However, you should still check that your "
1334
+ #~ "displayed and required fields match up. Mismatched fields are "
1335
+ #~ "highlighted below."
1336
+ #~ msgstr ""
1337
+ #~ "Nota: Esto no causará un error al usuario final, ya que sólo son "
1338
+ #~ "validados los campos visibles, sin embarho debería comprobarlo. Arriba "
1339
+ #~ "aparecen resaltados los campos con problemas."
1340
+
1341
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1342
+ #~ msgstr ""
1343
+ #~ "Si encuentra útil este plugin, por favor considere hacer una aportación "
1344
+ #~ "económica"
1345
+
1346
+ #~ msgid "Subscriptions"
1347
+ #~ msgstr "Suscripciones"
1348
+
1349
+ #, fuzzy
1350
+ #~ msgid "PayPal Settings"
1351
+ #~ msgstr "Configuración"
1352
+
1353
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1354
+ #~ msgstr ""
1355
+ #~ "Si encuentra este plugin util, por favor considere realizar una %s "
1356
+ #~ "aportación económica %s"
1357
+
1358
+ #~ msgid "%d users were activated."
1359
+ #~ msgstr "%d usuarios activos."
1360
+
1361
+ #~ msgid ""
1362
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1363
+ #~ msgstr ""
1364
+ #~ "Usuarios listos para exportar, pulse para %s descargar .CSV %s (fichero "
1365
+ #~ "compatible con Microsoft Excel)."
1366
+
1367
+ #~ msgid "WP-Members Users"
1368
+ #~ msgstr "Usuarios"
1369
+
1370
+ #~ msgid "Add New"
1371
+ #~ msgstr "Nuevo Usuario"
1372
+
1373
+ #~ msgid "No users matched your criteria"
1374
+ #~ msgstr "Ningún usuario cuadra con el criterio"
1375
+
1376
+ #~ msgid "Bulk Actions"
1377
+ #~ msgstr "Acciones en bloque"
1378
+
1379
+ #~ msgid "Apply"
1380
+ #~ msgstr "Aplicar"
1381
+
1382
+ #, fuzzy
1383
+ #~ msgid "Indicates a required field"
1384
+ #~ msgstr "Es un campo obligatorio"
1385
+
1386
+ #~ msgid "Login"
1387
+ #~ msgstr "Identificarse"
1388
+
1389
+ #~ msgid "Cheatin&#8217; uh?"
1390
+ #~ msgstr "Cheatin&#8217; uh?"
1391
+
1392
+ #~ msgid "there was an error and no users were exported"
1393
+ #~ msgstr "Hubo un error y los usuarios no se pudieron exportar"
1394
+
1395
+ #~ msgid "You are not currently logged in."
1396
+ #~ msgstr "No está identificado."
1397
+
1398
+ #~ msgid "login"
1399
+ #~ msgstr "Identificarse"
1400
+
1401
+ #~ msgid "Bio"
1402
+ #~ msgstr "Semblanza"
1403
+
1404
+ #~ msgid "Your registration info for %s"
1405
+ #~ msgstr "Su información de registro en %s"
1406
+
1407
+ #~ msgid "Thank you for registering for %s"
1408
+ #~ msgstr "Gracias por registrarse en %s"
1409
+
1410
+ #~ msgid "Your registration information is below."
1411
+ #~ msgstr "Su información de registro está abajo."
1412
+
1413
+ #~ msgid "You may wish to retain a copy for your records."
1414
+ #~ msgstr "Puede guardar una copia de su información."
1415
+
1416
+ #~ msgid "username: %s"
1417
+ #~ msgstr "usuario: %s"
1418
+
1419
+ #~ msgid "password: %s"
1420
+ #~ msgstr "clave: %s"
1421
+
1422
+ #~ msgid "You may login here:"
1423
+ #~ msgstr "Puede identificarse en:"
1424
+
1425
+ #~ msgid "You may login at: %s"
1426
+ #~ msgstr "Puede acceder en: %s"
1427
+
1428
+ #~ msgid "You originally registered at:"
1429
+ #~ msgstr "Originalmente se registro en:"
1430
+
1431
+ #~ msgid "Password reset for %s"
1432
+ #~ msgstr "Reiniciada clave para %s"
1433
+
1434
+ #~ msgid "New user registration for %s"
1435
+ #~ msgstr "Nuevo registro en %s"
1436
+
1437
+ #~ msgid "The following user registered for %s"
1438
+ #~ msgstr "El siguiente usuario se registró en %s"
1439
+
1440
+ #~ msgid "and is pending admin approval"
1441
+ #~ msgstr "y está pendiente confirmar su permiso de acceso"
1442
+
1443
+ #~ msgid "expires"
1444
+ #~ msgstr "Caduca"
1445
+
1446
+ #~ msgid "Extend user:"
1447
+ #~ msgstr "Extender Usuario:"
1448
+
1449
+ #~ msgid "Settings saved."
1450
+ #~ msgstr "Configuración Guardada"
1451
+
1452
+ #~ msgid "Sorry,"
1453
+ #~ msgstr "Lo lamentamos,"
1454
+
1455
+ #~ msgid "Agree to %s Terms%s"
1456
+ #~ msgstr "De acuerdo con las %s condiciones de uso %s"
1457
+
1458
+ #~ msgid "http://butlerblog.com/wp-members/"
1459
+ #~ msgstr "http://butlerblog.com/wp-members/"
lang/wp-members-fi.mo ADDED
Binary file
lang/wp-members-fi.po ADDED
@@ -0,0 +1,1470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.9.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 11:02-0600\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 1.6.4\n"
16
+
17
+ #: admin/admin.php:60 admin/admin.php:129
18
+ msgid "Settings"
19
+ msgstr "Asetukset"
20
+
21
+ #: admin/admin.php:187
22
+ msgid "Options"
23
+ msgstr "Asetukset"
24
+
25
+ #: admin/admin.php:188
26
+ msgid "Fields"
27
+ msgstr "Kentät"
28
+
29
+ #: admin/admin.php:189
30
+ msgid "Dialogs"
31
+ msgstr "Dialogit"
32
+
33
+ #: admin/admin.php:190
34
+ msgid "Emails"
35
+ msgstr ""
36
+
37
+ #: admin/dialogs.php:109
38
+ msgid ""
39
+ "Your WP settings allow anyone to register - this is not the recommended "
40
+ "setting."
41
+ msgstr ""
42
+ "WP asetuksesi sallivat kenen tahansa rekisteröityä. Tämä ei ole suositeltava "
43
+ "asetus."
44
+
45
+ #: admin/dialogs.php:110
46
+ #, php-format
47
+ msgid ""
48
+ "You can %s change this here %s making sure the box next to \"Anyone can "
49
+ "register\" is unchecked."
50
+ msgstr ""
51
+ "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
52
+
53
+ #: admin/dialogs.php:111
54
+ msgid ""
55
+ "This setting allows a link on the /wp-login.php page to register using the "
56
+ "WP native registration process thus circumventing any registration you are "
57
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
58
+ "but most users should uncheck this option. If you do not change this "
59
+ "setting, you can choose to ignore these warning messages under WP-Members "
60
+ "Settings."
61
+ msgstr ""
62
+ "Tämä asetus sallii /wp-login.php sivulla olevan linkin käyttää Wordpressin "
63
+ "omaa rekisteröintiprosessia, joka näin mahdollistaa WP-Members "
64
+ "rekisteröintiprosessin kiertämisen. Yleensä tätä ei suositella, mutta jos et "
65
+ "muuta tätä asetusta, voit valita varoitusten hylkäämisen WP-Members "
66
+ "asetuspaneelista."
67
+
68
+ #: admin/dialogs.php:117
69
+ msgid ""
70
+ "Your WP settings allow anyone to comment - this is not the recommended "
71
+ "setting."
72
+ msgstr ""
73
+ "WP asetuksesi sallivat kenen tahansa kommentoida. Tämä ei ole suositeltava "
74
+ "asetus."
75
+
76
+ #: admin/dialogs.php:118
77
+ #, php-format
78
+ msgid ""
79
+ "You can %s change this here %s by checking the box next to \"Users must be "
80
+ "registered and logged in to comment.\""
81
+ msgstr ""
82
+ "Voit %s muuttaa tästä %s \"Kuka tahansa voi rekisteröityä\" asetuksen."
83
+
84
+ #: admin/dialogs.php:119
85
+ msgid ""
86
+ "This setting allows any users to comment, whether or not they are "
87
+ "registered. Depending on how you are using WP-Members will determine whether "
88
+ "you should change this setting or not. If you do not change this setting, "
89
+ "you can choose to ignore these warning messages under WP-Members Settings."
90
+ msgstr ""
91
+ "WP asetuksesi sallivat kenen tahansa kommentoida, riippumatta siitä olivatko "
92
+ "he rekisteröityneitä tai ei. Riippuen käyttötavastasi tämä saattaa olla "
93
+ "järkevää tai sitten ei. Jos et muuta tätä asetusta, voit valita varoitusten "
94
+ "hylkäämisen WP-Members asetuspaneelista."
95
+
96
+ #: admin/dialogs.php:125
97
+ msgid ""
98
+ "Your WP settings allow full text rss feeds - this is not the recommended "
99
+ "setting."
100
+ msgstr ""
101
+ "WP asetukset sallivat RSS syötteet täydellä tekstillä. Tätä ei suositella."
102
+
103
+ #: admin/dialogs.php:126
104
+ #, php-format
105
+ msgid ""
106
+ "You can %s change this here %s by changing \"For each article in a feed, show"
107
+ "\" to \"Summary.\""
108
+ msgstr ""
109
+
110
+ #: admin/dialogs.php:127
111
+ msgid ""
112
+ "Leaving this set to full text allows anyone to read your protected content "
113
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
114
+ "only show summary text."
115
+ msgstr ""
116
+ "Jos jätät tämän asetuksen päälle, kuka tahansa voi lukea kaiken suojatun "
117
+ "sisällön RSS lukijalla. Voit sen sijaan valita että vain lyhyt yhteenveto "
118
+ "näytetään."
119
+
120
+ #: admin/dialogs.php:133
121
+ msgid "You have set WP-Members to hold registrations for approval"
122
+ msgstr "WP-Members säilöö rekisteröinnit hyväksyntää varten"
123
+
124
+ #: admin/dialogs.php:134
125
+ msgid ""
126
+ "but you have not changed the default message for \"Registration Completed\" "
127
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
128
+ "message to let users know they are pending approval."
129
+ msgstr ""
130
+
131
+ #: admin/dialogs.php:140
132
+ msgid "You have set WP-Members to turn off the registration process"
133
+ msgstr "WP-Members on nyt estänyt rekisteröintiprosessin"
134
+
135
+ #: admin/dialogs.php:141
136
+ msgid ""
137
+ "but you also set to moderate and/or email admin new registrations. You will "
138
+ "need to set up a registration page for users to register."
139
+ msgstr ""
140
+
141
+ #: admin/dialogs.php:147
142
+ msgid "You have turned on reCAPTCHA"
143
+ msgstr "Olet ottanut käyttöön reCAPTCHA:n"
144
+
145
+ #: admin/dialogs.php:148
146
+ msgid ""
147
+ "but you have not entered API keys. You will need both a public and private "
148
+ "key. The CAPTCHA will not display unless a valid API key is included."
149
+ msgstr ""
150
+
151
+ #: admin/dialogs.php:171
152
+ msgid "Version:"
153
+ msgstr "Versio:"
154
+
155
+ #: admin/dialogs.php:172
156
+ msgid "Quick Start Guide"
157
+ msgstr ""
158
+
159
+ #: admin/dialogs.php:173
160
+ msgid "Online User Guide"
161
+ msgstr ""
162
+
163
+ #: admin/dialogs.php:174
164
+ msgid "FAQs"
165
+ msgstr ""
166
+
167
+ #: admin/dialogs.php:181
168
+ msgid "Thank you for using WP-Members"
169
+ msgstr "Kiitos kun käytät WP-Members lisäosaa!"
170
+
171
+ #: admin/dialogs.php:182
172
+ msgid "A plugin developed by"
173
+ msgstr ""
174
+
175
+ #: admin/dialogs.php:183
176
+ msgid "Follow"
177
+ msgstr "Seuraa"
178
+
179
+ #: admin/dialogs.php:200 admin/dialogs.php:204
180
+ msgid "Latest from RocketGeek"
181
+ msgstr ""
182
+
183
+ #: admin/dialogs.php:221 admin/dialogs.php:234
184
+ msgid "Latest from ButlerBlog"
185
+ msgstr ""
186
+
187
+ #: admin/post.php:36 admin/post.php:38
188
+ msgid "Block"
189
+ msgstr ""
190
+
191
+ #: admin/post.php:37 admin/post.php:39
192
+ msgid "Unblock"
193
+ msgstr ""
194
+
195
+ #: admin/post.php:120
196
+ #, php-format
197
+ msgid "%s posts %sed."
198
+ msgstr ""
199
+
200
+ #: admin/post.php:138
201
+ msgid "Post Restriction"
202
+ msgstr ""
203
+
204
+ #: admin/post.php:145
205
+ msgid "Page Restriction"
206
+ msgstr "Uuden käyttäjän rekisteröinti"
207
+
208
+ #: admin/post.php:263 admin/post.php:295
209
+ msgid "Unblocked?"
210
+ msgstr ""
211
+
212
+ #: admin/post.php:263 admin/post.php:295
213
+ msgid "Blocked?"
214
+ msgstr ""
215
+
216
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
217
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
218
+ msgid "Need help?"
219
+ msgstr ""
220
+
221
+ #: admin/tab-captcha.php:46
222
+ msgid "Manage reCAPTCHA Options"
223
+ msgstr "Hallitse reCAPTCHA asetuksia"
224
+
225
+ #: admin/tab-captcha.php:60
226
+ msgid ""
227
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
228
+ "while blocking spam on your blog."
229
+ msgstr ""
230
+ "reCAPTCHA on ilmainen CAPTCHA sovellus, joka auttaa kirjojen digitoinnissa "
231
+ "samalla kun se estää roskapostitusten pääsyn blogiisi"
232
+
233
+ #: admin/tab-captcha.php:61
234
+ #, php-format
235
+ msgid ""
236
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
237
+ "that they are a human. This verifies that they are not a spambot while also "
238
+ "correcting the automatic scans of old books. So you get less spam, and the "
239
+ "world gets accurately digitized books. Everybody wins! For details, visit "
240
+ "the %s reCAPTCHA website%s"
241
+ msgstr ""
242
+ "reCAPTCHA pyytää kommentoijia kirjoittamaan kaksi sanaa, jotka on skannattu "
243
+ "kirjasta todistaakseen että kysessä on ihminen. Tällä varmistetaan että "
244
+ "roskapostitusohjelmat eivät pääse kommentoimaan ja samalla vanhojen kirjojen "
245
+ "skannauksia voidaan automatisoida. Lue enemmän %s reCAPTCHA kotisivulta %s"
246
+
247
+ #: admin/tab-captcha.php:66
248
+ msgid "reCAPTCHA Keys"
249
+ msgstr "reCAPTCHA avaimet"
250
+
251
+ #: admin/tab-captcha.php:68
252
+ #, php-format
253
+ msgid ""
254
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
255
+ "key. You can sign up for a %s free reCAPTCHA key%s"
256
+ msgstr ""
257
+ "reCAPTCHA vaatii API-avaimen, joka koostuu \"julkisesta\" ja \"yksityisestä"
258
+ "\" avaimesta. Voit tilata itsellesi ilmaisen %s reCAPTCHA avaimen %s"
259
+
260
+ #: admin/tab-captcha.php:69
261
+ msgid "Public Key"
262
+ msgstr "Julkinen avain"
263
+
264
+ #: admin/tab-captcha.php:70
265
+ msgid "Private Key"
266
+ msgstr "Yksityinen avain"
267
+
268
+ #: admin/tab-captcha.php:74
269
+ msgid "Choose Theme"
270
+ msgstr "Valitse teema"
271
+
272
+ #: admin/tab-captcha.php:77
273
+ msgid "Red"
274
+ msgstr "Punainen"
275
+
276
+ #: admin/tab-captcha.php:78
277
+ msgid "White"
278
+ msgstr "Valkoinen"
279
+
280
+ #: admin/tab-captcha.php:79
281
+ msgid "Black Glass"
282
+ msgstr "Musta lasi"
283
+
284
+ #: admin/tab-captcha.php:80
285
+ msgid "Clean"
286
+ msgstr "Puhdista"
287
+
288
+ #: admin/tab-captcha.php:112
289
+ msgid "Characters for image"
290
+ msgstr ""
291
+
292
+ #: admin/tab-captcha.php:116
293
+ msgid "Number of characters"
294
+ msgstr ""
295
+
296
+ #: admin/tab-captcha.php:120
297
+ msgid "Image dimensions"
298
+ msgstr ""
299
+
300
+ #: admin/tab-captcha.php:124
301
+ msgid "Font color of characters"
302
+ msgstr ""
303
+
304
+ #: admin/tab-captcha.php:128
305
+ msgid "Background color of image"
306
+ msgstr ""
307
+
308
+ #: admin/tab-captcha.php:132
309
+ msgid "Font size"
310
+ msgstr ""
311
+
312
+ #: admin/tab-captcha.php:136
313
+ msgid "Width between characters"
314
+ msgstr ""
315
+
316
+ #: admin/tab-captcha.php:140
317
+ msgid "Image type"
318
+ msgstr ""
319
+
320
+ #: admin/tab-captcha.php:154
321
+ msgid ""
322
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
323
+ "installed and activated."
324
+ msgstr ""
325
+
326
+ #: admin/tab-captcha.php:166
327
+ msgid "Update CAPTCHA Settings"
328
+ msgstr "Päivitä CAPTCHA asetukset"
329
+
330
+ #: admin/tab-captcha.php:230
331
+ msgid "CAPTCHA was updated for WP-Members"
332
+ msgstr "CAPTCHA on päivitetty WP-Members:iä varten"
333
+
334
+ #: admin/tab-dialogs.php:29
335
+ msgid "Restricted post (or page), displays above the login/registration form"
336
+ msgstr ""
337
+ "Suojattu sisältö (artikkeli tai sivu), näkyy sisäänkirjautumis ja "
338
+ "rekisteröitymislomakkeen yläpuolella."
339
+
340
+ #: admin/tab-dialogs.php:30
341
+ msgid "Username is taken"
342
+ msgstr "Käyttäjätunnus on jo varattu"
343
+
344
+ #: admin/tab-dialogs.php:31
345
+ msgid "Email is registered"
346
+ msgstr "Sähköpostiosoite on jo käytössä"
347
+
348
+ #: admin/tab-dialogs.php:32
349
+ msgid "Registration completed"
350
+ msgstr "Rekisteröinti on valmis"
351
+
352
+ #: admin/tab-dialogs.php:33
353
+ msgid "User update"
354
+ msgstr "Käyttäjän päivitys"
355
+
356
+ #: admin/tab-dialogs.php:34
357
+ msgid "Passwords did not match"
358
+ msgstr "Salasanat eivät täsmää"
359
+
360
+ #: admin/tab-dialogs.php:35
361
+ msgid "Password changes"
362
+ msgstr "Salasana vaihtuu"
363
+
364
+ #: admin/tab-dialogs.php:36
365
+ msgid "Username or email do not exist when trying to reset forgotten password"
366
+ msgstr ""
367
+ "Unohtunutta salasanaa yritettiin nollata väärällä käyttäjätunnuksella tai "
368
+ "sähköpostilla"
369
+
370
+ #: admin/tab-dialogs.php:37
371
+ msgid "Password reset"
372
+ msgstr "Salasanan nollaus"
373
+
374
+ #: admin/tab-dialogs.php:54
375
+ msgid "Dialogs and Error Messages"
376
+ msgstr "Dialogit ja virheilmoitukset"
377
+
378
+ #: admin/tab-dialogs.php:56
379
+ #, php-format
380
+ msgid ""
381
+ "You can customize the text for dialogs and error messages. Simple HTML is "
382
+ "allowed %s etc."
383
+ msgstr ""
384
+ "Voit mukauttaa dialogien ja virheilmoitusten tekstejä. Yksinkertainen HTML "
385
+ "on sallittua: %s jne."
386
+
387
+ #: admin/tab-dialogs.php:69
388
+ msgid "Terms of Service (TOS)"
389
+ msgstr "Käyttöehdot"
390
+
391
+ #: admin/tab-dialogs.php:76
392
+ msgid "Update Dialogs"
393
+ msgstr "Päivitä dialogit"
394
+
395
+ #: admin/tab-dialogs.php:115
396
+ msgid "WP-Members dialogs were updated"
397
+ msgstr "WP-Members dialogit on päivitetty"
398
+
399
+ #: admin/tab-emails.php:30
400
+ msgid "New Registration"
401
+ msgstr "Uusi rekisteröinti"
402
+
403
+ #: admin/tab-emails.php:34
404
+ msgid "Registration is Moderated"
405
+ msgstr ""
406
+
407
+ #: admin/tab-emails.php:35
408
+ msgid "Registration is Moderated, User is Approved"
409
+ msgstr ""
410
+
411
+ #: admin/tab-emails.php:40
412
+ msgid "Password Reset"
413
+ msgstr "Salasanan nollaus"
414
+
415
+ #: admin/tab-emails.php:45
416
+ msgid "Admin Notification"
417
+ msgstr "Ilmoita pääkäyttäjälle"
418
+
419
+ #: admin/tab-emails.php:50
420
+ msgid "Email Signature"
421
+ msgstr ""
422
+
423
+ #: admin/tab-emails.php:57
424
+ msgid "Email Messages"
425
+ msgstr ""
426
+
427
+ #: admin/tab-emails.php:60
428
+ msgid "You can customize the content of the emails sent by the plugin."
429
+ msgstr ""
430
+
431
+ #: admin/tab-emails.php:62
432
+ msgid "A list of shortcodes is available here."
433
+ msgstr ""
434
+
435
+ #: admin/tab-emails.php:69
436
+ msgid "Set a custom email address"
437
+ msgstr ""
438
+
439
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
440
+ msgid "(optional)"
441
+ msgstr "(valinnainen)"
442
+
443
+ #: admin/tab-emails.php:73
444
+ msgid "Set a custom email name"
445
+ msgstr ""
446
+
447
+ #: admin/tab-emails.php:84
448
+ msgid "Subject"
449
+ msgstr ""
450
+
451
+ #: admin/tab-emails.php:88
452
+ msgid "Body"
453
+ msgstr ""
454
+
455
+ #: admin/tab-emails.php:105
456
+ msgid "Update Emails"
457
+ msgstr ""
458
+
459
+ #: admin/tab-emails.php:161
460
+ msgid "WP-Members emails were updated"
461
+ msgstr "WP-Members sähköpostit on päivitetty"
462
+
463
+ #: admin/tab-fields.php:166
464
+ msgid "WP-Members fields were updated"
465
+ msgstr "WP-Members kentät on päivitetty"
466
+
467
+ #: admin/tab-fields.php:176
468
+ msgid "Field Label is required for adding a new field. Nothing was updated."
469
+ msgstr ""
470
+ "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
471
+ "päivitetty."
472
+
473
+ #: admin/tab-fields.php:177
474
+ msgid "Option Name is required for adding a new field. Nothing was updated."
475
+ msgstr ""
476
+ "Option nimi vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt päivitetty."
477
+
478
+ #: admin/tab-fields.php:184
479
+ msgid "A field with that option name already exists"
480
+ msgstr ""
481
+
482
+ #: admin/tab-fields.php:201
483
+ msgid "Checked value is required for checkboxes. Nothing was updated."
484
+ msgstr ""
485
+ "Kentän otsikko vaaditaan uuden kentän lisäämiseksi. Mitään ei nyt "
486
+ "päivitetty."
487
+
488
+ #: admin/tab-fields.php:223
489
+ msgid "field was added"
490
+ msgstr ""
491
+
492
+ #: admin/tab-fields.php:241
493
+ msgid "field was updated"
494
+ msgstr ""
495
+
496
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
497
+ msgid "Edit Field"
498
+ msgstr ""
499
+
500
+ #: admin/tab-fields.php:289
501
+ msgid "Add a Field"
502
+ msgstr "Lisätä Kentän"
503
+
504
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
505
+ msgid "Field Label"
506
+ msgstr "Kentän otsikko"
507
+
508
+ #: admin/tab-fields.php:297
509
+ msgid "The name of the field as it will be displayed to the user."
510
+ msgstr ""
511
+
512
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
513
+ msgid "Option Name"
514
+ msgstr "Option nimi"
515
+
516
+ #: admin/tab-fields.php:306
517
+ msgid ""
518
+ "The database meta value for the field. It must be unique and contain no "
519
+ "spaces (underscores are ok)."
520
+ msgstr ""
521
+
522
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
523
+ msgid "Field Type"
524
+ msgstr "Kentän tyyppi"
525
+
526
+ #: admin/tab-fields.php:316
527
+ msgid "text"
528
+ msgstr "teksti"
529
+
530
+ #: admin/tab-fields.php:317
531
+ msgid "textarea"
532
+ msgstr "Tekstialue"
533
+
534
+ #: admin/tab-fields.php:318
535
+ msgid "checkbox"
536
+ msgstr "rastitus"
537
+
538
+ #: admin/tab-fields.php:319
539
+ msgid "dropdown"
540
+ msgstr ""
541
+
542
+ #: admin/tab-fields.php:320
543
+ msgid "password"
544
+ msgstr "Salasana"
545
+
546
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
547
+ msgid "Display?"
548
+ msgstr "Näkyvissä?"
549
+
550
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
551
+ msgid "Required?"
552
+ msgstr "Pakollinen?"
553
+
554
+ #: admin/tab-fields.php:334
555
+ msgid "Additional information for checkbox fields"
556
+ msgstr ""
557
+
558
+ #: admin/tab-fields.php:337
559
+ msgid "Checked by default?"
560
+ msgstr ""
561
+
562
+ #: admin/tab-fields.php:341
563
+ msgid "Stored value if checked:"
564
+ msgstr ""
565
+
566
+ #: admin/tab-fields.php:347
567
+ msgid "Additional information for dropdown fields"
568
+ msgstr ""
569
+
570
+ #: admin/tab-fields.php:350
571
+ msgid "For dropdown, array of values:"
572
+ msgstr ""
573
+
574
+ #: admin/tab-fields.php:375
575
+ msgid "Options should be Option Name|option_value,"
576
+ msgstr ""
577
+
578
+ #: admin/tab-fields.php:379
579
+ msgid "Visit plugin site for more information"
580
+ msgstr ""
581
+
582
+ #: admin/tab-fields.php:385
583
+ msgid "Add Field"
584
+ msgstr "Lisätä Kentän"
585
+
586
+ #: admin/tab-fields.php:407
587
+ msgid "Manage Fields"
588
+ msgstr "Hallitse kenttiä"
589
+
590
+ #: admin/tab-fields.php:409
591
+ msgid ""
592
+ "Determine which fields will display and which are required. This includes "
593
+ "all fields, both native WP fields and WP-Members custom fields."
594
+ msgstr ""
595
+ "Määrittele mitkä kentät näytetään ja mitkä ovat pakollisia. Tähän kuuluvat "
596
+ "kaikki kentät, sekä WP:n alkuperäiset että WP-Members lisäosan omat."
597
+
598
+ #: admin/tab-fields.php:410
599
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
600
+ msgstr "(Huomaa: sähköposti on aina pakollinen, eikä tätä voi muuttaa.)"
601
+
602
+ #: admin/tab-fields.php:415
603
+ msgid "Add/Delete"
604
+ msgstr "Lisää/Poista"
605
+
606
+ #: admin/tab-fields.php:421
607
+ msgid "Checked?"
608
+ msgstr "Rastitettu?"
609
+
610
+ #: admin/tab-fields.php:423
611
+ msgid "Users Screen"
612
+ msgstr ""
613
+
614
+ #: admin/tab-fields.php:435
615
+ msgid "Delete"
616
+ msgstr "Poista"
617
+
618
+ #: admin/tab-fields.php:447
619
+ msgid "(Email cannot be removed)"
620
+ msgstr "(sähköpostiosoitetta ei voi poistaa)"
621
+
622
+ #: admin/tab-fields.php:467
623
+ msgid "Registration Date"
624
+ msgstr ""
625
+
626
+ #: admin/tab-fields.php:470
627
+ msgid "native"
628
+ msgstr ""
629
+
630
+ #: admin/tab-fields.php:480
631
+ msgid "Active"
632
+ msgstr "Aktivoitu"
633
+
634
+ #: admin/tab-fields.php:492
635
+ msgid "Registration IP"
636
+ msgstr "IP @ rekisteröinnissä"
637
+
638
+ #: admin/tab-fields.php:527
639
+ msgid "Update Fields"
640
+ msgstr "Päivitä kentät"
641
+
642
+ #: admin/tab-options.php:48
643
+ msgid "Manage Options"
644
+ msgstr "Hallitse optioita"
645
+
646
+ #: admin/tab-options.php:54
647
+ msgid "Block Posts by default"
648
+ msgstr "Estä artikkeleiden näkyvyys oletusarvoisesti"
649
+
650
+ #: admin/tab-options.php:54
651
+ msgid ""
652
+ "Note: Posts can still be individually blocked or unblocked at the article "
653
+ "level"
654
+ msgstr "Huomaa: artikkeleiden näkyvyys voidaan sallia tai estää yksitellen"
655
+
656
+ #: admin/tab-options.php:55
657
+ msgid "Block Pages by default"
658
+ msgstr "Estä sivujen näkyvyys oletusarvoisesti"
659
+
660
+ #: admin/tab-options.php:55
661
+ msgid ""
662
+ "Note: Pages can still be individually blocked or unblocked at the article "
663
+ "level"
664
+ msgstr "Huomaa: sivujen näkyvyys voidaan sallia tai estää yksitellen"
665
+
666
+ #: admin/tab-options.php:56
667
+ msgid "Show excerpts"
668
+ msgstr "Näytä yhteenvedot"
669
+
670
+ #: admin/tab-options.php:56
671
+ msgid ""
672
+ "Shows excerpted content above the login/registration on both Posts and Pages"
673
+ msgstr ""
674
+ "Näyttää yhteenvedon sisällöstä sisäänkirjautumisen ja rekisteröitymisen "
675
+ "yläpuolella sekä artikkeleissa ja sivuissa."
676
+
677
+ #: admin/tab-options.php:57
678
+ msgid "Notify admin"
679
+ msgstr "Ilmoita pääkäyttäjälle"
680
+
681
+ #: admin/tab-options.php:57
682
+ #, php-format
683
+ msgid "Notify %s for each new registration? %s"
684
+ msgstr "Lähetä sähköposti %s jokaisen rekisteröitymisen yhteydessä? %s"
685
+
686
+ #: admin/tab-options.php:58
687
+ msgid "Moderate registration"
688
+ msgstr "Moderoi rekisteröitymiset"
689
+
690
+ #: admin/tab-options.php:58
691
+ msgid "Holds new registrations for admin approval"
692
+ msgstr "Pääkäyttäjän hyväksyntä vaaditaan"
693
+
694
+ #: admin/tab-options.php:91
695
+ msgid "Enable CAPTCHA"
696
+ msgstr "Ota käyttöön CAPTCHA"
697
+
698
+ #: admin/tab-options.php:59
699
+ msgid "Turns on CAPTCHA for registration"
700
+ msgstr "CAPTCHA käytössä rekisteröinnissä"
701
+
702
+ #: admin/tab-options.php:60
703
+ msgid "Hide registration"
704
+ msgstr ""
705
+
706
+ #: admin/tab-options.php:60
707
+ msgid "Removes the registration form from blocked content"
708
+ msgstr ""
709
+
710
+ #: admin/tab-options.php:62
711
+ msgid "Time-based expiration"
712
+ msgstr "Ajastettu vanhentuminen"
713
+
714
+ #: admin/tab-options.php:62
715
+ msgid "Allows for access to expire"
716
+ msgstr "Sisäänpääsyn sallitaan vanhentua"
717
+
718
+ #: admin/tab-options.php:63
719
+ msgid "Trial period"
720
+ msgstr "Koeaika"
721
+
722
+ #: admin/tab-options.php:63
723
+ msgid "Allows for a trial period"
724
+ msgstr "Sallii koeajan käytön"
725
+
726
+ #: admin/tab-options.php:64
727
+ msgid "Ignore warning messages"
728
+ msgstr "Varoitukset jätetään huomioimatta"
729
+
730
+ #: admin/tab-options.php:64
731
+ msgid "Ignores WP-Members warning messages in the admin panel"
732
+ msgstr "WP-Members hallintapaneelin varoitusten hylkääminen"
733
+
734
+ #: admin/tab-options.php:81
735
+ msgid "Attribution"
736
+ msgstr ""
737
+
738
+ #: admin/tab-options.php:83
739
+ msgid ""
740
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
741
+ msgstr ""
742
+
743
+ #: admin/tab-options.php:87
744
+ msgid "Auto Excerpt:"
745
+ msgstr "Näytä yhteenvedot"
746
+
747
+ #: admin/tab-options.php:88
748
+ msgid "Number of words in excerpt:"
749
+ msgstr ""
750
+
751
+ #: admin/tab-options.php:88 admin/tab-options.php:108
752
+ #: admin/tab-options.php:118 admin/tab-options.php:132
753
+ msgid "Optional"
754
+ msgstr "Valinnainen"
755
+
756
+ #: admin/tab-options.php:88
757
+ msgid "Automatically creates an excerpt"
758
+ msgstr "Näytä yhteenvedot"
759
+
760
+ #: admin/tab-options.php:103
761
+ msgid "User Profile Page:"
762
+ msgstr ""
763
+
764
+ #: admin/tab-options.php:106
765
+ msgid "For creating a forgot password link in the login form"
766
+ msgstr ""
767
+
768
+ #: admin/tab-options.php:113
769
+ msgid "Register Page:"
770
+ msgstr ""
771
+
772
+ #: admin/tab-options.php:116
773
+ msgid "For creating a register link in the login form"
774
+ msgstr ""
775
+
776
+ #: admin/tab-options.php:126
777
+ msgid "Select a stylesheet or specify a custom stylesheet below"
778
+ msgstr ""
779
+
780
+ #: admin/tab-options.php:131
781
+ msgid "Custom Stylesheet:"
782
+ msgstr ""
783
+
784
+ #: admin/tab-options.php:136
785
+ msgid "Update Settings"
786
+ msgstr "Päivitä asetukset"
787
+
788
+ #: admin/tab-options.php:246
789
+ msgid "WP-Members settings were updated"
790
+ msgstr "WP-Members asetukset on päivitetty"
791
+
792
+ #: admin/tab-options.php:296
793
+ msgid "Select a page"
794
+ msgstr ""
795
+
796
+ #: admin/tab-options.php:304
797
+ msgid "USE CUSTOM URL BELOW"
798
+ msgstr ""
799
+
800
+ #: admin/user-export.php:57 admin/user-export.php:172
801
+ msgid "Activated?"
802
+ msgstr "Aktivoitu?"
803
+
804
+ #: admin/user-export.php:61 admin/user-export.php:175
805
+ msgid "Subscription"
806
+ msgstr "Tilaus"
807
+
808
+ #: admin/user-export.php:61 admin/user-export.php:175
809
+ msgid "Expires"
810
+ msgstr "Vanhenee"
811
+
812
+ #: admin/user-export.php:64 admin/user-export.php:178
813
+ msgid "Registered"
814
+ msgstr "Rekisteröity"
815
+
816
+ #: admin/user-export.php:65 admin/user-export.php:179
817
+ msgid "IP"
818
+ msgstr "IP"
819
+
820
+ #: admin/user-profile.php:46
821
+ msgid "WP-Members Additional Fields"
822
+ msgstr "WP-Members lisäkentät"
823
+
824
+ #: admin/user-profile.php:66 native-registration.php:36
825
+ #: native-registration.php:159 users.php:62
826
+ msgid "(required)"
827
+ msgstr "(rakollinen)"
828
+
829
+ #: admin/user-profile.php:98
830
+ msgid "Activate this user?"
831
+ msgstr "Aktivoi tämä käyttäjä?"
832
+
833
+ #: admin/user-profile.php:103
834
+ msgid "Reactivate this user?"
835
+ msgstr ""
836
+
837
+ #: admin/user-profile.php:108
838
+ msgid "Deactivate this user?"
839
+ msgstr "Poistaa tämän käyttäjän?"
840
+
841
+ #: admin/user-profile.php:129
842
+ msgid "IP @ registration"
843
+ msgstr "IP @ rekisteröinnissä"
844
+
845
+ #: admin/users.php:45 admin/users.php:49
846
+ msgid "Export"
847
+ msgstr "Vie"
848
+
849
+ #: admin/users.php:50 admin/users.php:91
850
+ msgid "Export All Users"
851
+ msgstr "viedä kaikki käyttäjät"
852
+
853
+ #: forms.php:95
854
+ msgid "Existing Users Log In"
855
+ msgstr "Kirjaudu sisään"
856
+
857
+ #: forms.php:161 wp-members-dialogs.php:192
858
+ msgid "Change Password"
859
+ msgstr "Vaihda salasanaa"
860
+
861
+ #: forms.php:163
862
+ msgid "Update Password"
863
+ msgstr "Päivitä salasana"
864
+
865
+ #: forms.php:227
866
+ msgid "Reset Forgotten Password"
867
+ msgstr "Unohtuneen salasanan nollaus"
868
+
869
+ #: forms.php:403
870
+ msgid "Forgot password?"
871
+ msgstr "Unohditko salasanasi?"
872
+
873
+ #: forms.php:403
874
+ msgid "Click here to reset"
875
+ msgstr "Klikkaa tästä nollataksesi"
876
+
877
+ #: forms.php:418
878
+ msgid "New User?"
879
+ msgstr "Uusi käyttäjä?"
880
+
881
+ #: forms.php:418
882
+ msgid "Click here to register"
883
+ msgstr "Klikkaa tästä rekisteröityäksesi"
884
+
885
+ #: forms.php:515
886
+ msgid "Required field"
887
+ msgstr "Pakollinen tieto"
888
+
889
+ #: forms.php:521
890
+ msgid "Reset Form"
891
+ msgstr ""
892
+
893
+ #: forms.php:523
894
+ msgid "Update Profile"
895
+ msgstr ""
896
+
897
+ #: forms.php:561
898
+ msgid "Choose a Username"
899
+ msgstr "Valitse käyttäjätunnus"
900
+
901
+ #: forms.php:683 native-registration.php:65
902
+ #, php-format
903
+ msgid "Please indicate that you agree to the %s TOS %s"
904
+ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
905
+
906
+ #: forms.php:852
907
+ msgid "New User Registration"
908
+ msgstr "Uuden käyttäjän rekisteröinti"
909
+
910
+ #: forms.php:1018
911
+ msgid "Input the code:"
912
+ msgstr ""
913
+
914
+ #: users.php:38
915
+ msgid "Additional Information"
916
+ msgstr "Lisätiedot"
917
+
918
+ #: wp-members-core.php:118 wp-members-core.php:245
919
+ msgid "There was an error with the CAPTCHA form."
920
+ msgstr "CAPTCHA lomakkeessa oli virhe."
921
+
922
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
923
+ msgid "Edit Your Information"
924
+ msgstr "Täytä omat tietosi"
925
+
926
+ #: wp-members-core.php:544
927
+ msgid "<strong>ERROR</strong>: User has not been activated."
928
+ msgstr ""
929
+
930
+ #: wp-members-core.php:903 wp-members-register.php:93
931
+ #, php-format
932
+ msgid "Sorry, %s is a required field."
933
+ msgstr "Valitettavasti %s on pakollinen tieto."
934
+
935
+ #: wp-members-dialogs.php:42
936
+ msgid "Login Failed!"
937
+ msgstr "Sisäänkirjautuminen epäonnistui!"
938
+
939
+ #: wp-members-dialogs.php:45
940
+ msgid "You entered an invalid username or password."
941
+ msgstr "Annoit väärän käyttäjätunnuksen tai salasanan."
942
+
943
+ #: wp-members-dialogs.php:47
944
+ msgid "Click here to continue."
945
+ msgstr "Klikkaa tähän jatkaaksesi."
946
+
947
+ #: wp-members-dialogs.php:191
948
+ msgid "Edit My Information"
949
+ msgstr "Muuta omia tietojani"
950
+
951
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
952
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
953
+ #: wp-members-sidebar.php:246
954
+ #, php-format
955
+ msgid "You are logged in as %s"
956
+ msgstr "Olet kirjautunut sisään tunnuksella %s"
957
+
958
+ #: wp-members-dialogs.php:208
959
+ msgid "Click to log out."
960
+ msgstr "Ilmoittaa lähtevänsä."
961
+
962
+ #: wp-members-dialogs.php:209
963
+ msgid "Begin using the site."
964
+ msgstr "Aloita sivuston käyttö."
965
+
966
+ #: wp-members-dialogs.php:225
967
+ msgid "Click to log out"
968
+ msgstr "Ilmoittaa lähtevänsä"
969
+
970
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
971
+ msgid "click to log out"
972
+ msgstr "ilmoittaa lähtevänsä"
973
+
974
+ #: wp-members-dialogs.php:271
975
+ msgid "Password fields cannot be empty"
976
+ msgstr "Salasanakentät eivät saa olla tyhjiä"
977
+
978
+ #: wp-members-register.php:51
979
+ msgid "There was an error processing the form."
980
+ msgstr ""
981
+
982
+ #: wp-members-register.php:110
983
+ msgid "Sorry, username is a required field"
984
+ msgstr "Käyttäjätunnus on pakollinen tieto."
985
+
986
+ #: wp-members-register.php:111
987
+ msgid "The username cannot include non-alphanumeric characters."
988
+ msgstr "Käyttäjätunnus voi sisältää ainoastaan kirjaimia ja numeroita."
989
+
990
+ #: wp-members-register.php:112 wp-members-register.php:282
991
+ msgid "You must enter a valid email address."
992
+ msgstr "Annoit väärän käyttäjätunnuksen tai salasanan. "
993
+
994
+ #: wp-members-register.php:119
995
+ msgid "Passwords did not match."
996
+ msgstr "Salasanat eivät täsmää"
997
+
998
+ #: wp-members-register.php:120 wp-members-register.php:286
999
+ msgid "Emails did not match."
1000
+ msgstr "Sähköpostit eivät täsmää"
1001
+
1002
+ #: wp-members-register.php:127
1003
+ msgid "You must complete the CAPTCHA form."
1004
+ msgstr "CAPTCHA lomake on täytettävä oikein."
1005
+
1006
+ #: wp-members-register.php:377
1007
+ msgid "We were unable to validate the public key."
1008
+ msgstr "Julkisen avaimen varmennus epäonnistui."
1009
+
1010
+ #: wp-members-register.php:381
1011
+ msgid "We were unable to validate the private key."
1012
+ msgstr "Yksityisen avaimen varmennus epäonnistui."
1013
+
1014
+ #: wp-members-register.php:385
1015
+ msgid "The challenge parameter of the verify script was incorrect."
1016
+ msgstr "Haasteen parametri varmenneskriptissä oli väärä."
1017
+
1018
+ #: wp-members-register.php:389
1019
+ msgid "The CAPTCHA solution was incorrect."
1020
+ msgstr "CAPTCHA ratkaisu oli väärin"
1021
+
1022
+ #: wp-members-register.php:393
1023
+ msgid "The parameters to verify were incorrect"
1024
+ msgstr "Varmennusparametrit olivat väärin"
1025
+
1026
+ #: wp-members-register.php:397
1027
+ msgid ""
1028
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1029
+ msgstr "reCAPTCHA API-avaimet on sidottu tiettyyn domainiin tietoturvasyistä."
1030
+
1031
+ #: wp-members-register.php:401
1032
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1033
+ msgstr "reCAPTCHA palvelin ei vastaa, yritä uudestaan."
1034
+
1035
+ #: wp-members-register.php:405
1036
+ msgid "You have entered an incorrect code value. Please try again."
1037
+ msgstr ""
1038
+
1039
+ #: wp-members-sidebar.php:117
1040
+ msgid "Login Failed!<br />You entered an invalid username or password."
1041
+ msgstr ""
1042
+ "Sisäänkirjautuminen epäonnistui<br />Käyttäjätunnus tai salasana väärin."
1043
+
1044
+ #: wp-members-sidebar.php:118
1045
+ msgid "You are not logged in."
1046
+ msgstr ""
1047
+
1048
+ #: wp-members-sidebar.php:169
1049
+ msgid "log in"
1050
+ msgstr "Kirjaudu"
1051
+
1052
+ #: wp-members-sidebar.php:180
1053
+ msgid "Forgot?"
1054
+ msgstr "Unohdit?"
1055
+
1056
+ #: wp-members-sidebar.php:247
1057
+ msgid "click here to log out"
1058
+ msgstr "Klikkaa tästä kirjautuaksesi ulos"
1059
+
1060
+ #: wp-members-sidebar.php:279
1061
+ msgid "Displays the WP-Members sidebar login."
1062
+ msgstr ""
1063
+
1064
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1065
+ msgid "Login Status"
1066
+ msgstr "Kirjautumisen tila"
1067
+
1068
+ #: wp-members-sidebar.php:299
1069
+ msgid "Title:"
1070
+ msgstr "Otsikko:"
1071
+
1072
+ #: wp-members-tos.php:24
1073
+ msgid "Terms of Service"
1074
+ msgstr ""
1075
+
1076
+ #: wp-members-tos.php:36
1077
+ #, php-format
1078
+ msgid "%sclose%s"
1079
+ msgstr ""
1080
+
1081
+ #: wp-members-tos.php:38
1082
+ #, php-format
1083
+ msgid "%sprint%s"
1084
+ msgstr ""
1085
+
1086
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1087
+ #: Strings wp-members-install.php:49
1088
+ msgid "First Name"
1089
+ msgstr "Etunimi"
1090
+
1091
+ #: wp-members-install.php:50
1092
+ msgid "Last Name"
1093
+ msgstr "Sukunimi"
1094
+
1095
+ #: wp-members-install.php:51
1096
+ msgid "Address 1"
1097
+ msgstr "Katuosoite"
1098
+
1099
+ #: wp-members-install.php:52
1100
+ msgid "Address 2"
1101
+ msgstr "Osoiterivi 2"
1102
+
1103
+ #: wp-members-install.php:53
1104
+ msgid "City"
1105
+ msgstr "Paikkakunta"
1106
+
1107
+ #: wp-members-install.php:54
1108
+ msgid "State"
1109
+ msgstr "Maakunta/osavaltio"
1110
+
1111
+ #: wp-members-install.php:55
1112
+ msgid "Zip"
1113
+ msgstr "Postinumero"
1114
+
1115
+ #: wp-members-install.php:56
1116
+ msgid "Country"
1117
+ msgstr "Maa"
1118
+
1119
+ #: wp-members-install.php:57
1120
+ msgid "Day Phone"
1121
+ msgstr "Puhelin"
1122
+
1123
+ #: wp-members-install.php:59
1124
+ msgid "Website"
1125
+ msgstr "Omat nettisivusi"
1126
+
1127
+ #: wp-members-install.php:60
1128
+ msgid "AIM"
1129
+ msgstr "AIM"
1130
+
1131
+ #: wp-members-install.php:61
1132
+ msgid "Yahoo IM"
1133
+ msgstr "Yahoo IM"
1134
+
1135
+ #: wp-members-install.php:62
1136
+ msgid "Jabber/Google Talk"
1137
+ msgstr "Jabber/Google Talk"
1138
+
1139
+ #: wp-members-install.php:63
1140
+ msgid "Biographical Info"
1141
+ msgstr "Kuvaus sinusta"
1142
+
1143
+ #: wp-members-install.php:64 wp-members-install.php:211
1144
+ msgid "TOS"
1145
+ msgstr "Käyttöehdot"
1146
+
1147
+ #: Error message dialog strings wp-members-install.php:96
1148
+ msgid ""
1149
+ "This content is restricted to site members. If you are an existing user, "
1150
+ "please log in. New users may register below."
1151
+ msgstr ""
1152
+ "Tämä sisältö on rajattu vain rekisteröityneille käyttäjille. Jos sinulla on "
1153
+ "tänne käyttäjätunnus, ole hyvä ja kirjaudu sisään. Uudet käyttäjät voivat "
1154
+ "rekisteröityä alla olevan lomakkeen avulla."
1155
+
1156
+ #: wp-members-install.php:97
1157
+ msgid "Sorry, that username is taken, please try another."
1158
+ msgstr "Antamasi käyttäjätunnus on jo varattu, kokeile jotain toista."
1159
+
1160
+ #: wp-members-install.php:98
1161
+ msgid ""
1162
+ "Sorry, that email address already has an account.<br />Please try another."
1163
+ msgstr ""
1164
+ "Antamasi sähköpostiosoite on jo käytössä. <br /> Anna jokin toinen osoite."
1165
+
1166
+ #: wp-members-install.php:99
1167
+ msgid ""
1168
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1169
+ "log in using the password that was emailed to you."
1170
+ msgstr ""
1171
+ "Onnittelut! Rekisteröintisi onnistui. <br /> <br /> Voit nyt kirjautua "
1172
+ "sisään salasanalla, joka lähetetään sinulle antamaasi sähköpostiosoitteeseen."
1173
+
1174
+ #: wp-members-install.php:100
1175
+ msgid "Your information was updated!"
1176
+ msgstr "Tietosi on päivitetty!"
1177
+
1178
+ #: wp-members-install.php:101
1179
+ msgid "Passwords did not match.<br /><br />Please try again."
1180
+ msgstr "Salasanat eivät täsmää.<br /><br />Yritä uudestaan."
1181
+
1182
+ #: wp-members-install.php:102
1183
+ msgid ""
1184
+ "Password successfully changed!<br /><br />You will need to re-login with "
1185
+ "your new password."
1186
+ msgstr ""
1187
+ "Salasana on vaihdettu!<br /><br />Sinun on kirjauduttava uudestaan sisään "
1188
+ "uudella salasanallasi."
1189
+
1190
+ #: wp-members-install.php:103
1191
+ msgid "Either the username or email address do not exist in our records."
1192
+ msgstr "Käyttäjätunnusta tai sähköpostiosoitetta ei löydy."
1193
+
1194
+ #: wp-members-install.php:104
1195
+ msgid ""
1196
+ "Password successfully reset!<br /><br />An email containing a new password "
1197
+ "has been sent to the email address on file for your account. You may change "
1198
+ "this random password then re-login with your new password."
1199
+ msgstr ""
1200
+ "Salasana onnistuneesti vaihdettu!<br /><br />Sinulle on lähetetty "
1201
+ "sähköposti, joka sisältää uuden satunnaisesti tuotetun salasanan tilillesi. "
1202
+ "Voit vaihtaa salasanan haluamaasi kuin kirjaudut seuraavan kerran sisään."
1203
+
1204
+ #~ msgid "Yes"
1205
+ #~ msgstr "Kyllä"
1206
+
1207
+ #~ msgid "WP-Members"
1208
+ #~ msgstr "WP-Members"
1209
+
1210
+ #~ msgid "Custom"
1211
+ #~ msgstr "Mukautettu"
1212
+
1213
+ #, fuzzy
1214
+ #~ msgid "edit"
1215
+ #~ msgstr "Täytä omat tietosi"
1216
+
1217
+ #, fuzzy
1218
+ #~ msgid "Edit"
1219
+ #~ msgstr "Täytä omat tietosi"
1220
+
1221
+ #~ msgid "Use reCAPTCHA"
1222
+ #~ msgstr "Ota käyttöön reCAPTCHA"
1223
+
1224
+ #, fuzzy
1225
+ #~ msgid "Pages"
1226
+ #~ msgstr "Estä sivujen näkyvyys oletusarvoisesti"
1227
+
1228
+ #~ msgid "No"
1229
+ #~ msgstr "Ei"
1230
+
1231
+ #~ msgid "Activate"
1232
+ #~ msgstr "Aktivoi"
1233
+
1234
+ #~ msgid "Username"
1235
+ #~ msgstr "Käyttäjätunnus"
1236
+
1237
+ #~ msgid "Password"
1238
+ #~ msgstr "Salasana"
1239
+
1240
+ #~ msgid "Log In"
1241
+ #~ msgstr "Kirjaudu sisään"
1242
+
1243
+ #~ msgid "New Password"
1244
+ #~ msgstr "Uusi salasana"
1245
+
1246
+ #~ msgid "Repeat Password"
1247
+ #~ msgstr "Toista salasana"
1248
+
1249
+ #~ msgid "Email"
1250
+ #~ msgstr "sähköpostiosoite"
1251
+
1252
+ #~ msgid "Reset Password"
1253
+ #~ msgstr "Nollaa salasana"
1254
+
1255
+ #~ msgid "Remember me"
1256
+ #~ msgstr "Muista minut"
1257
+
1258
+ #~ msgid "Register"
1259
+ #~ msgstr "Rekisteröidy"
1260
+
1261
+ #, fuzzy
1262
+ #~ msgid ""
1263
+ #~ "WP access restriction and user registration. For more information on "
1264
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1265
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1266
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1267
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1268
+ #~ msgstr ""
1269
+ #~ "WP käytön rajaaminen ja käyttäjien rekisteröinti. Lisätiedot ja "
1270
+ #~ "käyttöohjeet (englanninkielellä) <a href=\"http://butlerblog.com/wp-"
1271
+ #~ "members\"> http://butlerblog.com/wp-members </ a>. Toimiva demo "
1272
+ #~ "osoitteessa <a href=\"http://butlerblog.com/wpmembers\"> http://"
1273
+ #~ "butlerblog.com/wpmembers </ a>. WP-Members (tm) on tavaramerkki, jonka "
1274
+ #~ "omistaa butlerblog.com."
1275
+
1276
+ #~ msgid "Turn off registration"
1277
+ #~ msgstr "Estä rekisteröinnit"
1278
+
1279
+ #~ msgid "Turns off the registration process, only allows login"
1280
+ #~ msgstr ""
1281
+ #~ "Uusien käyttäjien rekisteröinti estetty, vain sisäänkirjautuminen sallittu"
1282
+
1283
+ #~ msgid "Legacy forms"
1284
+ #~ msgstr "Aiemmat lomakkeet"
1285
+
1286
+ #~ msgid ""
1287
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1288
+ #~ "forms)"
1289
+ #~ msgstr ""
1290
+ #~ "Käytä versiota 2.5.1 edeltäviä taulukkolomakkeita (älä valitse tätä, jos "
1291
+ #~ "haluat CSS lomakkeet ilman taulukoita)"
1292
+
1293
+ #~ msgid "Members Area URL:"
1294
+ #~ msgstr "Jäsensivun URL:"
1295
+
1296
+ #~ msgid "Add"
1297
+ #~ msgstr "Lisää"
1298
+
1299
+ #~ msgid "WP-Members expiration periods were updated"
1300
+ #~ msgstr "WP-Members vanhentumisajat on päivitetty"
1301
+
1302
+ #~ msgid ""
1303
+ #~ "Settings were saved, but you have required fields that are not set to "
1304
+ #~ "display!"
1305
+ #~ msgstr ""
1306
+ #~ "Asetukset päivitettiin, mutta pakollisia kenttiä eli ole asetettu "
1307
+ #~ "näkymään!"
1308
+
1309
+ #, fuzzy
1310
+ #~ msgid ""
1311
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1312
+ #~ "fields are validated. However, you should still check that your "
1313
+ #~ "displayed and required fields match up. Mismatched fields are "
1314
+ #~ "highlighted below."
1315
+ #~ msgstr ""
1316
+ #~ "HUOMAA: Tämä ei aiheuta virhettäloppukäyttäjän näkyviin, koska vain "
1317
+ #~ "näkyvät kentät validoidaan. On kuitenkin suositeltavaa että tarkistat "
1318
+ #~ "että \r\n"
1319
+ #~ "\t\t\t\tnäytetyt ja vaaditut kentät täsmäävät. Kentät jotka eivät täsmää "
1320
+ #~ "on korostettu alla."
1321
+
1322
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1323
+ #~ msgstr ""
1324
+ #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan lahjoitusta "
1325
+ #~ "tekijälle"
1326
+
1327
+ #~ msgid "Subscriptions"
1328
+ #~ msgstr "Tilaukset"
1329
+
1330
+ #~ msgid "PayPal Settings"
1331
+ #~ msgstr "Paypal asetukset"
1332
+
1333
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1334
+ #~ msgstr ""
1335
+ #~ "Jos tämä lisäosa on sinusta hyödyllinen, harkitsethan tekijälle %s "
1336
+ #~ "lahjoitusta %s"
1337
+
1338
+ #~ msgid "%d users were activated."
1339
+ #~ msgstr "%d käyttäjää aktivoitu."
1340
+
1341
+ #~ msgid ""
1342
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1343
+ #~ msgstr ""
1344
+ #~ "Käyttäjät valmiina vientiin, %s klikkaa tästä %s luodaksesi ja "
1345
+ #~ "ladataksesi CSV tiedoston."
1346
+
1347
+ #~ msgid "WP-Members Users"
1348
+ #~ msgstr "WP-Members Käyttäjät"
1349
+
1350
+ #~ msgid "Add New"
1351
+ #~ msgstr "Luo uusi"
1352
+
1353
+ #~ msgid "No users matched your criteria"
1354
+ #~ msgstr "Yksikään käyttäjä ei vastannut ehtojasi"
1355
+
1356
+ #~ msgid "Bulk Actions"
1357
+ #~ msgstr "Massatoiminnot"
1358
+
1359
+ #~ msgid "Apply"
1360
+ #~ msgstr "Käytä"
1361
+
1362
+ #, fuzzy
1363
+ #~ msgid "Indicates a required field"
1364
+ #~ msgstr "Käyttäjätunnus on pakollinen tieto."
1365
+
1366
+ #~ msgid "Login"
1367
+ #~ msgstr "Kirjaudu sisään"
1368
+
1369
+ #~ msgid "Clear Form"
1370
+ #~ msgstr "Tyhjennä lomake"
1371
+
1372
+ #~ msgid "Submit"
1373
+ #~ msgstr "Valmis"
1374
+
1375
+ #~ msgid "Cheatin&#8217; uh?"
1376
+ #~ msgstr "Kusetusta&#8217; vai?"
1377
+
1378
+ #~ msgid "there was an error and no users were exported"
1379
+ #~ msgstr "tapahtui virhe, eikä yhtään käyttäjää voitu viedä"
1380
+
1381
+ #~ msgid "You are not currently logged in."
1382
+ #~ msgstr "Et ole kirjautuneena sisään"
1383
+
1384
+ #~ msgid "login"
1385
+ #~ msgstr "Kirjaudu"
1386
+
1387
+ #~ msgid "You may change your password here: %s"
1388
+ #~ msgstr "Voit vaihtaa salasanasi täällä: %s"
1389
+
1390
+ #~ msgid "Your registration info for %s"
1391
+ #~ msgstr "Rekisteröintitiedot käyttäjälle %s"
1392
+
1393
+ #~ msgid "Thank you for registering for %s"
1394
+ #~ msgstr "Kiitos kun rekisteröidyit %s"
1395
+
1396
+ #~ msgid "Your registration information is below."
1397
+ #~ msgstr "Rekisteröintitietosi ovat seuraavat."
1398
+
1399
+ #~ msgid "You may wish to retain a copy for your records."
1400
+ #~ msgstr ""
1401
+ #~ "On suositeltavaa että säilytät nämä tiedot itselläsi varmassa paikassa."
1402
+
1403
+ #~ msgid "username: %s"
1404
+ #~ msgstr "Käyttäjätunnus: %s"
1405
+
1406
+ #~ msgid "password: %s"
1407
+ #~ msgstr "Salasana: %s"
1408
+
1409
+ #~ msgid "You may login here:"
1410
+ #~ msgstr "Voit kirjautua sisään täältä:"
1411
+
1412
+ #~ msgid ""
1413
+ #~ "Thank you for registering for %s. Your registration has been received and "
1414
+ #~ "is pending approval."
1415
+ #~ msgstr ""
1416
+ #~ "Kiitos kun rekisteröidyit sivustolle %s. Rekisteröintitiedot on "
1417
+ #~ "vastaanotettu ja odottavat pääkäyttäjän hyväksyntää."
1418
+
1419
+ #~ msgid "You will receive login instructions upon approval of your account"
1420
+ #~ msgstr ""
1421
+ #~ "Kun tilisi ja käyttäjätunnuksesi on hyväksytty, saat sähköpostilla "
1422
+ #~ "yksityiskohtaiset tiedot sisäänkirjautumista varten."
1423
+
1424
+ #~ msgid "Your registration for %s has been approved."
1425
+ #~ msgstr "Rekisteröitymisesti sivulle %s on nyt hyväksytty."
1426
+
1427
+ #~ msgid "You may login at: %s"
1428
+ #~ msgstr "Voit kirjautua sisään täällä: %s"
1429
+
1430
+ #~ msgid "You originally registered at:"
1431
+ #~ msgstr "Olet alunperin rekisteröitynyt: "
1432
+
1433
+ #~ msgid "Password reset for %s"
1434
+ #~ msgstr "Salasanan nollaus tunnukselle %s"
1435
+
1436
+ #~ msgid "Your password for %s has been reset"
1437
+ #~ msgstr "Salasanasi tunnuksella %s on nollattu"
1438
+
1439
+ #~ msgid ""
1440
+ #~ "Your new password is included below. You may wish to retain a copy for "
1441
+ #~ "your records."
1442
+ #~ msgstr "Uusi salasanasi näkyy alla. Säilytä tästä kopio itselläsi."
1443
+
1444
+ #~ msgid "This is an automated message from %s"
1445
+ #~ msgstr "Tämä viesti on lähetetty automaattisesti osoitteesta %s"
1446
+
1447
+ #~ msgid "Please do not reply to this address"
1448
+ #~ msgstr "Älä vastaa tähän osoitteeseen"
1449
+
1450
+ #~ msgid "New user registration for %s"
1451
+ #~ msgstr "Uuden käyttäjän rekisteröinti nimellä %s"
1452
+
1453
+ #~ msgid "The following user registered for %s"
1454
+ #~ msgstr "Seuraava käyttäjä on rekisteröitynyt nimellä %s"
1455
+
1456
+ #~ msgid "and is pending admin approval"
1457
+ #~ msgstr "ja odottaa pääkäyttäjän hyväksyntää"
1458
+
1459
+ #~ msgid ""
1460
+ #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
1461
+ #~ msgstr "Ole hyvä ja vahvista lukeneesi ja ymmärtäneesi %s käyttöehdot %s"
1462
+
1463
+ #~ msgid "http://butlerblog.com/wp-members/"
1464
+ #~ msgstr "http://butlerblog.com/wp-members/"
1465
+
1466
+ #~ msgid "Chad Butler"
1467
+ #~ msgstr "Chad Butler"
1468
+
1469
+ #~ msgid "http://butlerblog.com/"
1470
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-fr_FR.mo ADDED
Binary file
lang/wp-members-fr_FR.po ADDED
@@ -0,0 +1,1263 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.5\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: 2014-07-22 22:09-0600\n"
7
+ "Last-Translator: Chad Butler <plugins@butlerblog.com>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "Language: fr_FR\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;"
16
+ "_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"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: admin/admin.php:60 admin/admin.php:129
23
+ msgid "Settings"
24
+ msgstr "Réglages"
25
+
26
+ #: admin/admin.php:187
27
+ msgid "Options"
28
+ msgstr "Options"
29
+
30
+ #: admin/admin.php:188
31
+ msgid "Fields"
32
+ msgstr "Champs"
33
+
34
+ #: admin/admin.php:189
35
+ msgid "Dialogs"
36
+ msgstr "Dialogues"
37
+
38
+ #: admin/admin.php:190
39
+ msgid "Emails"
40
+ msgstr "Emails"
41
+
42
+ #: admin/dialogs.php:109
43
+ msgid ""
44
+ "Your WP settings allow anyone to register - this is not the recommended "
45
+ "setting."
46
+ msgstr ""
47
+ "Vos réglages WP permettent à n'importe qui de s'enregistrer - ce n'est pas "
48
+ "le réglage recommandé."
49
+
50
+ #: admin/dialogs.php:110
51
+ #, php-format
52
+ msgid ""
53
+ "You can %s change this here %s making sure the box next to \"Anyone can "
54
+ "register\" is unchecked."
55
+ msgstr ""
56
+ "Vous pouvez %s changer ce paramètre ici %s en prenant soin de décocher la "
57
+ "case \"N'importe qui peut s'enregistrer\"."
58
+
59
+ #: admin/dialogs.php:111
60
+ msgid ""
61
+ "This setting allows a link on the /wp-login.php page to register using the "
62
+ "WP native registration process thus circumventing any registration you are "
63
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
64
+ "but most users should uncheck this option. If you do not change this "
65
+ "setting, you can choose to ignore these warning messages under WP-Members "
66
+ "Settings."
67
+ msgstr ""
68
+ "Ce réglage permet à la page /wp-login.php de procéder aux enregistrement par "
69
+ "le processus natif de WP, empêchant l'enregistrement par le biais de WP-"
70
+ "Members. Dans certains cas, ce réglage est conforme aux besoins ou à la "
71
+ "volonté de certains utilisateurs, mais la plupart ne devraient pas y avoir "
72
+ "recours. Si vous ne souhaitez pas changer ce réglage, vous pouvez ignorer "
73
+ "les messages d'avertissement de WP-Members."
74
+
75
+ #: admin/dialogs.php:117
76
+ msgid ""
77
+ "Your WP settings allow anyone to comment - this is not the recommended "
78
+ "setting."
79
+ msgstr ""
80
+ "Vos réglages WP permettent à n'importe qui de commenter - ce n'est pas le "
81
+ "réglage recommandé."
82
+
83
+ #: admin/dialogs.php:118
84
+ #, php-format
85
+ msgid ""
86
+ "You can %s change this here %s by checking the box next to \"Users must be "
87
+ "registered and logged in to comment.\""
88
+ msgstr ""
89
+ "Vous pouvez %s changer ce paramètre ici %s en prenant soin de décocher la "
90
+ "case \"N'importe qui peut s'enregistrer\"."
91
+
92
+ #: admin/dialogs.php:119
93
+ msgid ""
94
+ "This setting allows any users to comment, whether or not they are "
95
+ "registered. Depending on how you are using WP-Members will determine whether "
96
+ "you should change this setting or not. If you do not change this setting, "
97
+ "you can choose to ignore these warning messages under WP-Members Settings."
98
+ msgstr ""
99
+ "Ce réglage permet à n'importe qui de commenter, qu'il soit enregistré ou "
100
+ "pas. En fonction de la façon dont vous utilisez WP-Members, vous devez ou "
101
+ "non changer ce réglage. Si vous ne le changez pas, vous pouvez ignorer les "
102
+ "messages d'avertissement de WP-Members."
103
+
104
+ #: admin/dialogs.php:125
105
+ msgid ""
106
+ "Your WP settings allow full text rss feeds - this is not the recommended "
107
+ "setting."
108
+ msgstr ""
109
+ "Vos réglages WP permettent de lire l'intégralité des textes dans les flux "
110
+ "RSS - ce n'est pas le réglage recommandé."
111
+
112
+ #: admin/dialogs.php:126
113
+ #, php-format
114
+ msgid ""
115
+ "You can %s change this here %s by changing \"For each article in a feed, show"
116
+ "\" to \"Summary.\""
117
+ msgstr ""
118
+ "Vous pouvez %s changer ceci %s en modifiant \"For each article in a feed, "
119
+ "show\" en \"Summary.\""
120
+
121
+ #: admin/dialogs.php:127
122
+ msgid ""
123
+ "Leaving this set to full text allows anyone to read your protected content "
124
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
125
+ "only show summary text."
126
+ msgstr ""
127
+ "Laisser la possibilité de lire l'intégralité du texte via les flux RSS "
128
+ "permet à n'importe qui de lire votre contenu protegé. Regler le paramètre "
129
+ "sur \\\"Extraits\\\" si vous souhaitez mieux protéger votre contenu."
130
+
131
+ #: admin/dialogs.php:133
132
+ msgid "You have set WP-Members to hold registrations for approval"
133
+ msgstr ""
134
+ "Vous avez reglé WP-Members de façon à soumettre les inscriptions à "
135
+ "approbation préalable"
136
+
137
+ #: admin/dialogs.php:134
138
+ msgid ""
139
+ "but you have not changed the default message for \"Registration Completed\" "
140
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
141
+ "message to let users know they are pending approval."
142
+ msgstr ""
143
+ "mais vous n'avez pas modifié le message par défaut pour \"Registration "
144
+ "Completed\" dans \"WP-Members Dialogs and Error Messages.\" Vous devriez "
145
+ "modifier ce message pour informer l'utilisateur qu'ils sont en attente "
146
+ "d'approbation."
147
+
148
+ #: admin/dialogs.php:140
149
+ msgid "You have set WP-Members to turn off the registration process"
150
+ msgstr "Vous avez reglé WP-Members pour interdire les inscriptions futures"
151
+
152
+ #: admin/dialogs.php:141
153
+ msgid ""
154
+ "but you also set to moderate and/or email admin new registrations. You will "
155
+ "need to set up a registration page for users to register."
156
+ msgstr ""
157
+ "mais vous avez également activé la modération et/ou email à l'admin pour les "
158
+ "nouvelles créations de compte. Vous devrez mettre en place un page de "
159
+ "création de compte où les utilisateurs pourront s'enregistrer."
160
+
161
+ #: admin/dialogs.php:147
162
+ msgid "You have turned on reCAPTCHA"
163
+ msgstr "Vous avez mis en route reCAPTCHA"
164
+
165
+ #: admin/dialogs.php:148
166
+ msgid ""
167
+ "but you have not entered API keys. You will need both a public and private "
168
+ "key. The CAPTCHA will not display unless a valid API key is included."
169
+ msgstr ""
170
+ "mais vous n'avez pas saisi de clé API. Vous aurez besoins à la fois d'une "
171
+ "clé publique et privée. Le CAPTCHA ne sera pas affiché tant qu'une clé "
172
+ "valide n'aura pas été saisie."
173
+
174
+ #: admin/dialogs.php:171
175
+ msgid "Version:"
176
+ msgstr "Version:"
177
+
178
+ #: admin/dialogs.php:172
179
+ msgid "Quick Start Guide"
180
+ msgstr ""
181
+
182
+ #: admin/dialogs.php:173
183
+ msgid "Online User Guide"
184
+ msgstr ""
185
+
186
+ #: admin/dialogs.php:174
187
+ msgid "FAQs"
188
+ msgstr ""
189
+
190
+ #: admin/dialogs.php:181
191
+ msgid "Thank you for using WP-Members"
192
+ msgstr "Merci d'utiliser WP-Members !"
193
+
194
+ #: admin/dialogs.php:182
195
+ msgid "A plugin developed by"
196
+ msgstr ""
197
+
198
+ #: admin/dialogs.php:183
199
+ msgid "Follow"
200
+ msgstr "Suivre"
201
+
202
+ #: admin/dialogs.php:200 admin/dialogs.php:204
203
+ msgid "Latest from RocketGeek"
204
+ msgstr ""
205
+
206
+ #: admin/dialogs.php:221 admin/dialogs.php:234
207
+ msgid "Latest from ButlerBlog"
208
+ msgstr ""
209
+
210
+ #: admin/post.php:36 admin/post.php:38
211
+ msgid "Block"
212
+ msgstr ""
213
+
214
+ #: admin/post.php:37 admin/post.php:39
215
+ msgid "Unblock"
216
+ msgstr ""
217
+
218
+ #: admin/post.php:120
219
+ #, php-format
220
+ msgid "%s posts %sed."
221
+ msgstr ""
222
+
223
+ #: admin/post.php:138
224
+ msgid "Post Restriction"
225
+ msgstr ""
226
+
227
+ #: admin/post.php:145
228
+ msgid "Page Restriction"
229
+ msgstr ""
230
+
231
+ #: admin/post.php:263 admin/post.php:295
232
+ msgid "Unblocked?"
233
+ msgstr ""
234
+
235
+ #: admin/post.php:263 admin/post.php:295
236
+ msgid "Blocked?"
237
+ msgstr ""
238
+
239
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
240
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
241
+ msgid "Need help?"
242
+ msgstr ""
243
+
244
+ #: admin/tab-captcha.php:46
245
+ msgid "Manage reCAPTCHA Options"
246
+ msgstr "Editer les options reCAPTCHA"
247
+
248
+ #: admin/tab-captcha.php:60
249
+ msgid ""
250
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
251
+ "while blocking spam on your blog."
252
+ msgstr ""
253
+ "reCAPTCHA est un service CAPTCHA accessible et gratuit, qui aide à éditer "
254
+ "des livres numériques mais qui bloque aussi les spam de vos sites internet "
255
+ "et blogs."
256
+
257
+ #: admin/tab-captcha.php:61
258
+ #, php-format
259
+ msgid ""
260
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
261
+ "that they are a human. This verifies that they are not a spambot while also "
262
+ "correcting the automatic scans of old books. So you get less spam, and the "
263
+ "world gets accurately digitized books. Everybody wins! For details, visit "
264
+ "the %s reCAPTCHA website%s"
265
+ msgstr ""
266
+ "reCAPTCHA demande aux utilisateurs de taper deux mots scannés d'un livre, "
267
+ "pour prouver qu'ils sont humains et non des robots automatisés de SPAM. En "
268
+ "même temps, cela aide à corriger d'anciens scans endommagés de livres. Vous "
269
+ "recevez moins de SPAM, et le monde reçoit des livres scannés de manière "
270
+ "correcte, tout le monde gagne! pour plus de détail, visitez le site %s "
271
+ "reCAPTCHA%s"
272
+
273
+ #: admin/tab-captcha.php:66
274
+ msgid "reCAPTCHA Keys"
275
+ msgstr "Clés reCAPTCHA"
276
+
277
+ #: admin/tab-captcha.php:68
278
+ #, php-format
279
+ msgid ""
280
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
281
+ "key. You can sign up for a %s free reCAPTCHA key%s"
282
+ msgstr ""
283
+ "reCAPTCHA requiert une clé API, qui consiste en une \"public\" et une "
284
+ "\"private\" clé. Vous pouvez vous enregistrer et recevoir vos %s clés "
285
+ "reCAPTCHA gratuites %s"
286
+
287
+ #: admin/tab-captcha.php:69
288
+ msgid "Public Key"
289
+ msgstr "Clé \\\"Public\\\""
290
+
291
+ #: admin/tab-captcha.php:70
292
+ msgid "Private Key"
293
+ msgstr "Clé \\\"Private\\\""
294
+
295
+ #: admin/tab-captcha.php:74
296
+ msgid "Choose Theme"
297
+ msgstr "Choisissez un modèle"
298
+
299
+ #: admin/tab-captcha.php:77
300
+ msgid "Red"
301
+ msgstr "Rouge"
302
+
303
+ #: admin/tab-captcha.php:78
304
+ msgid "White"
305
+ msgstr "Blanc"
306
+
307
+ #: admin/tab-captcha.php:79
308
+ msgid "Black Glass"
309
+ msgstr "Verre noir"
310
+
311
+ #: admin/tab-captcha.php:80
312
+ msgid "Clean"
313
+ msgstr "Clair"
314
+
315
+ #: admin/tab-captcha.php:112
316
+ msgid "Characters for image"
317
+ msgstr ""
318
+
319
+ #: admin/tab-captcha.php:116
320
+ msgid "Number of characters"
321
+ msgstr ""
322
+
323
+ #: admin/tab-captcha.php:120
324
+ msgid "Image dimensions"
325
+ msgstr ""
326
+
327
+ #: admin/tab-captcha.php:124
328
+ msgid "Font color of characters"
329
+ msgstr ""
330
+
331
+ #: admin/tab-captcha.php:128
332
+ msgid "Background color of image"
333
+ msgstr ""
334
+
335
+ #: admin/tab-captcha.php:132
336
+ msgid "Font size"
337
+ msgstr ""
338
+
339
+ #: admin/tab-captcha.php:136
340
+ msgid "Width between characters"
341
+ msgstr ""
342
+
343
+ #: admin/tab-captcha.php:140
344
+ msgid "Image type"
345
+ msgstr ""
346
+
347
+ #: admin/tab-captcha.php:154
348
+ msgid ""
349
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
350
+ "installed and activated."
351
+ msgstr ""
352
+
353
+ #: admin/tab-captcha.php:166
354
+ msgid "Update CAPTCHA Settings"
355
+ msgstr "Mettre à jour les réglages CAPTCHA"
356
+
357
+ #: admin/tab-captcha.php:230
358
+ msgid "CAPTCHA was updated for WP-Members"
359
+ msgstr "CAPTCHA a été mis à jour pour WP-Members"
360
+
361
+ #: admin/tab-dialogs.php:29
362
+ msgid "Restricted post (or page), displays above the login/registration form"
363
+ msgstr "Limiter l'article ou la page, afficher la demande de connexion"
364
+
365
+ #: admin/tab-dialogs.php:30
366
+ msgid "Username is taken"
367
+ msgstr "Le nom d'utilisateur est déjà pris"
368
+
369
+ #: admin/tab-dialogs.php:31
370
+ msgid "Email is registered"
371
+ msgstr "Cet email est déjà enregistré"
372
+
373
+ #: admin/tab-dialogs.php:32
374
+ msgid "Registration completed"
375
+ msgstr "L'enregistrement est pris en compte"
376
+
377
+ #: admin/tab-dialogs.php:33
378
+ msgid "User update"
379
+ msgstr "Mise à jour de l'utilisateur"
380
+
381
+ #: admin/tab-dialogs.php:34
382
+ msgid "Passwords did not match"
383
+ msgstr "Les mots de passe ne concordent pas"
384
+
385
+ #: admin/tab-dialogs.php:35
386
+ msgid "Password changes"
387
+ msgstr "Le mot de passe change"
388
+
389
+ #: admin/tab-dialogs.php:36
390
+ msgid "Username or email do not exist when trying to reset forgotten password"
391
+ msgstr ""
392
+ "Vous cherchez à rééditer un mot de passe oublié, mais le nom d'utilisateur "
393
+ "ou l'email n'existe pas"
394
+
395
+ #: admin/tab-dialogs.php:37
396
+ msgid "Password reset"
397
+ msgstr "Rééditer le Mot de Passe"
398
+
399
+ #: admin/tab-dialogs.php:54
400
+ msgid "Dialogs and Error Messages"
401
+ msgstr "Messages d'erreur et zones de dialogue"
402
+
403
+ #: admin/tab-dialogs.php:56
404
+ #, php-format
405
+ msgid ""
406
+ "You can customize the text for dialogs and error messages. Simple HTML is "
407
+ "allowed %s etc."
408
+ msgstr ""
409
+ "Vous pouvez personnaliser le texte des dialogues et messages d'erreur. Le "
410
+ "HTML simple est autorisé, %s, etc..."
411
+
412
+ #: admin/tab-dialogs.php:69
413
+ msgid "Terms of Service (TOS)"
414
+ msgstr "Conditions d'utilisation (CU)"
415
+
416
+ #: admin/tab-dialogs.php:76
417
+ msgid "Update Dialogs"
418
+ msgstr "Mettre à jour les zones de dialogue"
419
+
420
+ #: admin/tab-dialogs.php:115
421
+ msgid "WP-Members dialogs were updated"
422
+ msgstr "Les zones de dialogue de WP-Members ont été mis à jour"
423
+
424
+ #: admin/tab-emails.php:30
425
+ msgid "New Registration"
426
+ msgstr "Nouvel Enregistrement"
427
+
428
+ #: admin/tab-emails.php:34
429
+ msgid "Registration is Moderated"
430
+ msgstr "L'enregistrement est Modéré"
431
+
432
+ #: admin/tab-emails.php:35
433
+ msgid "Registration is Moderated, User is Approved"
434
+ msgstr "L'inscription est modérée, l'utilisateur est approuvé"
435
+
436
+ #: admin/tab-emails.php:40
437
+ msgid "Password Reset"
438
+ msgstr "Réinitialiser le Mot de Passe"
439
+
440
+ #: admin/tab-emails.php:45
441
+ msgid "Admin Notification"
442
+ msgstr "Notification Admin"
443
+
444
+ #: admin/tab-emails.php:50
445
+ msgid "Email Signature"
446
+ msgstr "Signature email"
447
+
448
+ #: admin/tab-emails.php:57
449
+ msgid "Email Messages"
450
+ msgstr "Messages email"
451
+
452
+ #: admin/tab-emails.php:60
453
+ msgid "You can customize the content of the emails sent by the plugin."
454
+ msgstr "Vous pouvez personnaliser le contenu des emails envoyés par le plugin."
455
+
456
+ #: admin/tab-emails.php:62
457
+ msgid "A list of shortcodes is available here."
458
+ msgstr "Une liste de shortcodes est disponible ici."
459
+
460
+ #: admin/tab-emails.php:69
461
+ msgid "Set a custom email address"
462
+ msgstr "Définir un adresse email personnalisée."
463
+
464
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
465
+ msgid "(optional)"
466
+ msgstr "(optionnel)"
467
+
468
+ #: admin/tab-emails.php:73
469
+ msgid "Set a custom email name"
470
+ msgstr "Définir un nom personnalisé pour l'email"
471
+
472
+ #: admin/tab-emails.php:84
473
+ msgid "Subject"
474
+ msgstr "Sujet"
475
+
476
+ #: admin/tab-emails.php:88
477
+ msgid "Body"
478
+ msgstr "Contenu"
479
+
480
+ #: admin/tab-emails.php:105
481
+ msgid "Update Emails"
482
+ msgstr "Mises à jour d'Emails"
483
+
484
+ #: admin/tab-emails.php:161
485
+ msgid "WP-Members emails were updated"
486
+ msgstr "Les emails de WP-Members ont été mis à jour"
487
+
488
+ #: admin/tab-fields.php:166
489
+ msgid "WP-Members fields were updated"
490
+ msgstr "Les champs de WP-Members ont été mis à jour"
491
+
492
+ #: admin/tab-fields.php:176
493
+ msgid "Field Label is required for adding a new field. Nothing was updated."
494
+ msgstr ""
495
+ "Le libellé du champ est requis pour l'ajout d'un nouveau champ. Rien n'a été "
496
+ "mis à jour."
497
+
498
+ #: admin/tab-fields.php:177
499
+ msgid "Option Name is required for adding a new field. Nothing was updated."
500
+ msgstr ""
501
+ "Le nom de l'option est requis pour l'ajout d'un nouveau champ. Rien n'a été "
502
+ "mis à jour."
503
+
504
+ #: admin/tab-fields.php:184
505
+ msgid "A field with that option name already exists"
506
+ msgstr ""
507
+
508
+ #: admin/tab-fields.php:201
509
+ msgid "Checked value is required for checkboxes. Nothing was updated."
510
+ msgstr ""
511
+
512
+ #: admin/tab-fields.php:223
513
+ msgid "field was added"
514
+ msgstr ""
515
+
516
+ #: admin/tab-fields.php:241
517
+ msgid "field was updated"
518
+ msgstr ""
519
+
520
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
521
+ msgid "Edit Field"
522
+ msgstr ""
523
+
524
+ #: admin/tab-fields.php:289
525
+ msgid "Add a Field"
526
+ msgstr "Ajouter"
527
+
528
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
529
+ msgid "Field Label"
530
+ msgstr "Nom du champ"
531
+
532
+ #: admin/tab-fields.php:297
533
+ msgid "The name of the field as it will be displayed to the user."
534
+ msgstr ""
535
+
536
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
537
+ msgid "Option Name"
538
+ msgstr "Nom de l'Option"
539
+
540
+ #: admin/tab-fields.php:306
541
+ msgid ""
542
+ "The database meta value for the field. It must be unique and contain no "
543
+ "spaces (underscores are ok)."
544
+ msgstr ""
545
+
546
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
547
+ msgid "Field Type"
548
+ msgstr "Type de champ"
549
+
550
+ #: admin/tab-fields.php:316
551
+ msgid "text"
552
+ msgstr "texte"
553
+
554
+ #: admin/tab-fields.php:317
555
+ msgid "textarea"
556
+ msgstr "textarea"
557
+
558
+ #: admin/tab-fields.php:318
559
+ msgid "checkbox"
560
+ msgstr "checkbox"
561
+
562
+ #: admin/tab-fields.php:319
563
+ msgid "dropdown"
564
+ msgstr "dropdown"
565
+
566
+ #: admin/tab-fields.php:320
567
+ msgid "password"
568
+ msgstr "mot de passe"
569
+
570
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
571
+ msgid "Display?"
572
+ msgstr "Montrer?"
573
+
574
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
575
+ msgid "Required?"
576
+ msgstr "Requis?"
577
+
578
+ #: admin/tab-fields.php:334
579
+ msgid "Additional information for checkbox fields"
580
+ msgstr ""
581
+
582
+ #: admin/tab-fields.php:337
583
+ msgid "Checked by default?"
584
+ msgstr "Coché ?"
585
+
586
+ #: admin/tab-fields.php:341
587
+ msgid "Stored value if checked:"
588
+ msgstr "Pour une checkbox, valeur stockée si cochée :"
589
+
590
+ #: admin/tab-fields.php:347
591
+ msgid "Additional information for dropdown fields"
592
+ msgstr ""
593
+
594
+ #: admin/tab-fields.php:350
595
+ msgid "For dropdown, array of values:"
596
+ msgstr "Pour une dropdown, liste de valeurs :"
597
+
598
+ #: admin/tab-fields.php:375
599
+ msgid "Options should be Option Name|option_value,"
600
+ msgstr "Les options doivent être de la forme Nom|valeur,"
601
+
602
+ #: admin/tab-fields.php:379
603
+ msgid "Visit plugin site for more information"
604
+ msgstr "Visitez le site du plugin pour plus d'informations"
605
+
606
+ #: admin/tab-fields.php:385
607
+ msgid "Add Field"
608
+ msgstr "Ajouter"
609
+
610
+ #: admin/tab-fields.php:407
611
+ msgid "Manage Fields"
612
+ msgstr "Modifier les champs"
613
+
614
+ #: admin/tab-fields.php:409
615
+ msgid ""
616
+ "Determine which fields will display and which are required. This includes "
617
+ "all fields, both native WP fields and WP-Members custom fields."
618
+ msgstr ""
619
+ "Déterminer quels champs seront montrés et lesquels seront requis. Ceci "
620
+ "inclus tous les champs, ceux natifs de WP et les champs spécifiques de WP-"
621
+ "members."
622
+
623
+ #: admin/tab-fields.php:410
624
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
625
+ msgstr ""
626
+ "(Note: l'adresse Email est toujours obligatoire, et ne peut être changée "
627
+ "après inscription)"
628
+
629
+ #: admin/tab-fields.php:415
630
+ msgid "Add/Delete"
631
+ msgstr "Ajouter / Supprimer"
632
+
633
+ #: admin/tab-fields.php:421
634
+ msgid "Checked?"
635
+ msgstr "Coché ?"
636
+
637
+ #: admin/tab-fields.php:423
638
+ msgid "Users Screen"
639
+ msgstr ""
640
+
641
+ #: admin/tab-fields.php:435
642
+ msgid "Delete"
643
+ msgstr "Supprimer"
644
+
645
+ #: admin/tab-fields.php:447
646
+ msgid "(Email cannot be removed)"
647
+ msgstr "(L'Email ne peut être enlevé)"
648
+
649
+ #: admin/tab-fields.php:467
650
+ msgid "Registration Date"
651
+ msgstr ""
652
+
653
+ #: admin/tab-fields.php:470
654
+ msgid "native"
655
+ msgstr "Natif WP?"
656
+
657
+ #: admin/tab-fields.php:480
658
+ msgid "Active"
659
+ msgstr "Activer"
660
+
661
+ #: admin/tab-fields.php:492
662
+ msgid "Registration IP"
663
+ msgstr "IP de l'inscription"
664
+
665
+ #: admin/tab-fields.php:527
666
+ msgid "Update Fields"
667
+ msgstr "Mettre à jour les champs"
668
+
669
+ #: admin/tab-options.php:48
670
+ msgid "Manage Options"
671
+ msgstr "Modifier les options"
672
+
673
+ #: admin/tab-options.php:54
674
+ msgid "Block Posts by default"
675
+ msgstr "Bloquer les articles par défaut"
676
+
677
+ #: admin/tab-options.php:54
678
+ msgid ""
679
+ "Note: Posts can still be individually blocked or unblocked at the article "
680
+ "level"
681
+ msgstr ""
682
+ "Note: Les articles peuvent être bloqués ou débloqués individuellement sur la "
683
+ "page de l'article"
684
+
685
+ #: admin/tab-options.php:55
686
+ msgid "Block Pages by default"
687
+ msgstr "Bloquer les Pages par défaut"
688
+
689
+ #: admin/tab-options.php:55
690
+ msgid ""
691
+ "Note: Pages can still be individually blocked or unblocked at the article "
692
+ "level"
693
+ msgstr ""
694
+ "Note: Les Pages peuvent être bloquées ou débloquées individuellement sur "
695
+ "chaque page"
696
+
697
+ #: admin/tab-options.php:56
698
+ msgid "Show excerpts"
699
+ msgstr "Montrer des extraits"
700
+
701
+ #: admin/tab-options.php:56
702
+ msgid ""
703
+ "Shows excerpted content above the login/registration on both Posts and Pages"
704
+ msgstr ""
705
+ "Montrer des extraits des pages et des Articles avant l'enregistrement ou la "
706
+ "connexion"
707
+
708
+ #: admin/tab-options.php:57
709
+ msgid "Notify admin"
710
+ msgstr "Notifier l'administrateur"
711
+
712
+ #: admin/tab-options.php:57
713
+ #, php-format
714
+ msgid "Notify %s for each new registration? %s"
715
+ msgstr "Envoyer un mail à %s à chaque inscription? %s"
716
+
717
+ #: admin/tab-options.php:58
718
+ msgid "Moderate registration"
719
+ msgstr "Modérer l'inscription"
720
+
721
+ #: admin/tab-options.php:58
722
+ msgid "Holds new registrations for admin approval"
723
+ msgstr ""
724
+ "Attendre l'assentiment de l'administrateur pour les nouvelles inscriptions "
725
+
726
+ #: admin/tab-options.php:91
727
+ msgid "Enable CAPTCHA"
728
+ msgstr "Utiliser CAPTCHA"
729
+
730
+ #: admin/tab-options.php:59
731
+ msgid "Turns on CAPTCHA for registration"
732
+ msgstr "Activer les CAPTCHA pour les enregistrements"
733
+
734
+ #: admin/tab-options.php:60
735
+ msgid "Hide registration"
736
+ msgstr ""
737
+
738
+ #: admin/tab-options.php:60
739
+ msgid "Removes the registration form from blocked content"
740
+ msgstr ""
741
+
742
+ #: admin/tab-options.php:62
743
+ msgid "Time-based expiration"
744
+ msgstr "Expiration du délai"
745
+
746
+ #: admin/tab-options.php:62
747
+ msgid "Allows for access to expire"
748
+ msgstr "Autoriser l'expiration de la session"
749
+
750
+ #: admin/tab-options.php:63
751
+ msgid "Trial period"
752
+ msgstr "Période d'essai"
753
+
754
+ #: admin/tab-options.php:63
755
+ msgid "Allows for a trial period"
756
+ msgstr "Autoriser une période d'essai"
757
+
758
+ #: admin/tab-options.php:64
759
+ msgid "Ignore warning messages"
760
+ msgstr "Ignorer les messages d'avertissement"
761
+
762
+ #: admin/tab-options.php:64
763
+ msgid "Ignores WP-Members warning messages in the admin panel"
764
+ msgstr ""
765
+ "Ignorer les messages d'avertissement de WP-Members dans le panneau d'admin"
766
+
767
+ #: admin/tab-options.php:81
768
+ msgid "Attribution"
769
+ msgstr ""
770
+
771
+ #: admin/tab-options.php:83
772
+ msgid ""
773
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
774
+ msgstr ""
775
+
776
+ #: admin/tab-options.php:87
777
+ msgid "Auto Excerpt:"
778
+ msgstr "Montrer des extraits"
779
+
780
+ #: admin/tab-options.php:88
781
+ msgid "Number of words in excerpt:"
782
+ msgstr ""
783
+
784
+ #: admin/tab-options.php:88 admin/tab-options.php:108
785
+ #: admin/tab-options.php:118 admin/tab-options.php:132
786
+ msgid "Optional"
787
+ msgstr "Optionnel"
788
+
789
+ #: admin/tab-options.php:88
790
+ msgid "Automatically creates an excerpt"
791
+ msgstr "Montrer des extraits"
792
+
793
+ #: admin/tab-options.php:103
794
+ msgid "User Profile Page:"
795
+ msgstr ""
796
+
797
+ #: admin/tab-options.php:106
798
+ msgid "For creating a forgot password link in the login form"
799
+ msgstr ""
800
+
801
+ #: admin/tab-options.php:113
802
+ msgid "Register Page:"
803
+ msgstr "page de création de compte:"
804
+
805
+ #: admin/tab-options.php:116
806
+ msgid "For creating a register link in the login form"
807
+ msgstr ""
808
+
809
+ #: admin/tab-options.php:126
810
+ msgid "Select a stylesheet or specify a custom stylesheet below"
811
+ msgstr ""
812
+
813
+ #: admin/tab-options.php:131
814
+ msgid "Custom Stylesheet:"
815
+ msgstr ""
816
+
817
+ #: admin/tab-options.php:136
818
+ msgid "Update Settings"
819
+ msgstr "Mettre à jour les réglages"
820
+
821
+ #: admin/tab-options.php:246
822
+ msgid "WP-Members settings were updated"
823
+ msgstr "Les réglages de WP-Members ont été mis à jour"
824
+
825
+ #: admin/tab-options.php:296
826
+ msgid "Select a page"
827
+ msgstr ""
828
+
829
+ #: admin/tab-options.php:304
830
+ msgid "USE CUSTOM URL BELOW"
831
+ msgstr ""
832
+
833
+ #: admin/user-export.php:57 admin/user-export.php:172
834
+ msgid "Activated?"
835
+ msgstr "Activé?"
836
+
837
+ #: admin/user-export.php:61 admin/user-export.php:175
838
+ msgid "Subscription"
839
+ msgstr "Inscription"
840
+
841
+ #: admin/user-export.php:61 admin/user-export.php:175
842
+ msgid "Expires"
843
+ msgstr "Expire"
844
+
845
+ #: admin/user-export.php:64 admin/user-export.php:178
846
+ msgid "Registered"
847
+ msgstr "Enregistré"
848
+
849
+ #: admin/user-export.php:65 admin/user-export.php:179
850
+ msgid "IP"
851
+ msgstr "IP"
852
+
853
+ #: admin/user-profile.php:46
854
+ msgid "WP-Members Additional Fields"
855
+ msgstr "WP-Members Champs supplémentaires"
856
+
857
+ #: admin/user-profile.php:66 native-registration.php:36
858
+ #: native-registration.php:159 users.php:62
859
+ msgid "(required)"
860
+ msgstr "Requis?"
861
+
862
+ #: admin/user-profile.php:98
863
+ msgid "Activate this user?"
864
+ msgstr "Activer cet utilisateur?"
865
+
866
+ #: admin/user-profile.php:103
867
+ msgid "Reactivate this user?"
868
+ msgstr "Réactiver cet utilisateur ?"
869
+
870
+ #: admin/user-profile.php:108
871
+ msgid "Deactivate this user?"
872
+ msgstr "Désactiver cet utilisateur ?"
873
+
874
+ #: admin/user-profile.php:129
875
+ msgid "IP @ registration"
876
+ msgstr "IP de l'inscription"
877
+
878
+ #: admin/users.php:45 admin/users.php:49
879
+ msgid "Export"
880
+ msgstr "Exporter"
881
+
882
+ #: admin/users.php:50 admin/users.php:91
883
+ msgid "Export All Users"
884
+ msgstr "Exporter tous les utilisateurs"
885
+
886
+ #: forms.php:95
887
+ msgid "Existing Users Log In"
888
+ msgstr "Connexion pour les Utilisateurs enregistrés"
889
+
890
+ #: forms.php:161 wp-members-dialogs.php:192
891
+ msgid "Change Password"
892
+ msgstr "Changer le Mot de Passe"
893
+
894
+ #: forms.php:163
895
+ msgid "Update Password"
896
+ msgstr "Mettre à jour le mot de passe"
897
+
898
+ #: forms.php:227
899
+ msgid "Reset Forgotten Password"
900
+ msgstr "Réinitialiser le Mot de Passe"
901
+
902
+ #: forms.php:403
903
+ msgid "Forgot password?"
904
+ msgstr "Mot de Passe oublié?"
905
+
906
+ #: forms.php:403
907
+ msgid "Click here to reset"
908
+ msgstr "Cliquez ici pour réinitialiser"
909
+
910
+ #: forms.php:418
911
+ msgid "New User?"
912
+ msgstr "Nouvel Utilisateur ?"
913
+
914
+ #: forms.php:418
915
+ msgid "Click here to register"
916
+ msgstr "Cliquez ici pour vous inscrire"
917
+
918
+ #: forms.php:515
919
+ msgid "Required field"
920
+ msgstr "Champ requis"
921
+
922
+ #: forms.php:521
923
+ msgid "Reset Form"
924
+ msgstr "Réinitialiser le formulaire"
925
+
926
+ #: forms.php:523
927
+ msgid "Update Profile"
928
+ msgstr ""
929
+
930
+ #: forms.php:561
931
+ msgid "Choose a Username"
932
+ msgstr "Choisissez un Nom d'utilisateur"
933
+
934
+ #: forms.php:683 native-registration.php:65
935
+ #, php-format
936
+ msgid "Please indicate that you agree to the %s TOS %s"
937
+ msgstr "Veuillez indiquer que vous acceptez les %s Conditions d'Utilisation %s"
938
+
939
+ #: forms.php:852
940
+ msgid "New User Registration"
941
+ msgstr "Nouvel Utilisateur?"
942
+
943
+ #: forms.php:1018
944
+ msgid "Input the code:"
945
+ msgstr ""
946
+
947
+ #: users.php:38
948
+ msgid "Additional Information"
949
+ msgstr "Informations additionnelles"
950
+
951
+ #: wp-members-core.php:118 wp-members-core.php:245
952
+ msgid "There was an error with the CAPTCHA form."
953
+ msgstr "Une erreur s'est produite avec le formulaire CAPTCHA"
954
+
955
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
956
+ msgid "Edit Your Information"
957
+ msgstr "Editer vos informations"
958
+
959
+ #: wp-members-core.php:544
960
+ msgid "<strong>ERROR</strong>: User has not been activated."
961
+ msgstr "<strong>ERREUR</strong> : l'Utilisateur n'a pas été activé."
962
+
963
+ #: wp-members-core.php:903 wp-members-register.php:93
964
+ #, php-format
965
+ msgid "Sorry, %s is a required field."
966
+ msgstr "Désolé, %s est un champ requis."
967
+
968
+ #: wp-members-dialogs.php:42
969
+ msgid "Login Failed!"
970
+ msgstr "L'identification a échoué!"
971
+
972
+ #: wp-members-dialogs.php:45
973
+ msgid "You entered an invalid username or password."
974
+ msgstr "Vous avez entré un identifiant ou un mot de passe invalide."
975
+
976
+ #: wp-members-dialogs.php:47
977
+ msgid "Click here to continue."
978
+ msgstr "Cliquez ici pour continuer."
979
+
980
+ #: wp-members-dialogs.php:191
981
+ msgid "Edit My Information"
982
+ msgstr "Editer mes informations"
983
+
984
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
985
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
986
+ #: wp-members-sidebar.php:246
987
+ #, php-format
988
+ msgid "You are logged in as %s"
989
+ msgstr "Vous êtes connecté(e), %s"
990
+
991
+ #: wp-members-dialogs.php:208
992
+ msgid "Click to log out."
993
+ msgstr "Déconnexion"
994
+
995
+ #: wp-members-dialogs.php:209
996
+ msgid "Begin using the site."
997
+ msgstr "Commencer à utiliser le site"
998
+
999
+ #: wp-members-dialogs.php:225
1000
+ msgid "Click to log out"
1001
+ msgstr "Déconnexion"
1002
+
1003
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1004
+ msgid "click to log out"
1005
+ msgstr "déconnexion"
1006
+
1007
+ #: wp-members-dialogs.php:271
1008
+ msgid "Password fields cannot be empty"
1009
+ msgstr "Les mots de passe ne peuvent pas être vides"
1010
+
1011
+ #: wp-members-register.php:51
1012
+ msgid "There was an error processing the form."
1013
+ msgstr ""
1014
+
1015
+ #: wp-members-register.php:110
1016
+ msgid "Sorry, username is a required field"
1017
+ msgstr "Désolé, le nom d'utilisateur est un champ requis"
1018
+
1019
+ #: wp-members-register.php:111
1020
+ msgid "The username cannot include non-alphanumeric characters."
1021
+ msgstr ""
1022
+ "Le nom d'utilisateur ne peut pas contenir des caractères non alphanumériques."
1023
+
1024
+ #: wp-members-register.php:112 wp-members-register.php:282
1025
+ msgid "You must enter a valid email address."
1026
+ msgstr "Vous devez saisir une adresse email valide."
1027
+
1028
+ #: wp-members-register.php:119
1029
+ msgid "Passwords did not match."
1030
+ msgstr "Les mots de passe ne concordent pas"
1031
+
1032
+ #: wp-members-register.php:120 wp-members-register.php:286
1033
+ msgid "Emails did not match."
1034
+ msgstr "Les e-mails ne correspondent pas."
1035
+
1036
+ #: wp-members-register.php:127
1037
+ msgid "You must complete the CAPTCHA form."
1038
+ msgstr "Vous devez compléter le formulaire de cryptage CAPTCHA."
1039
+
1040
+ #: wp-members-register.php:377
1041
+ msgid "We were unable to validate the public key."
1042
+ msgstr "La clé \\\"Public\\\" n'a pas été validée."
1043
+
1044
+ #: wp-members-register.php:381
1045
+ msgid "We were unable to validate the private key."
1046
+ msgstr "La clé \\\"Private\\\" n'a pas été validée."
1047
+
1048
+ #: wp-members-register.php:385
1049
+ msgid "The challenge parameter of the verify script was incorrect."
1050
+ msgstr "Le paramètre de vérification est incorrect."
1051
+
1052
+ #: wp-members-register.php:389
1053
+ msgid "The CAPTCHA solution was incorrect."
1054
+ msgstr "Le cryptage CAPTCHA n'a pas été correctement copié."
1055
+
1056
+ #: wp-members-register.php:393
1057
+ msgid "The parameters to verify were incorrect"
1058
+ msgstr "Le paramètre à vérifier est incorrect"
1059
+
1060
+ #: wp-members-register.php:397
1061
+ msgid ""
1062
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1063
+ msgstr ""
1064
+ "Les clés API de reCAPTCHA sont liées à un nom de domaine spécifique, par "
1065
+ "raison de sécurité."
1066
+
1067
+ #: wp-members-register.php:401
1068
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1069
+ msgstr "Le serveur reCAPTCHA n'a pas répondu. Essayez de nouveau."
1070
+
1071
+ #: wp-members-register.php:405
1072
+ msgid "You have entered an incorrect code value. Please try again."
1073
+ msgstr ""
1074
+
1075
+ #: wp-members-sidebar.php:117
1076
+ msgid "Login Failed!<br />You entered an invalid username or password."
1077
+ msgstr ""
1078
+ "La connexion a échoué!<br/>Vous avez entré un mot de passe ou un nom "
1079
+ "d'utilisateur invalide."
1080
+
1081
+ #: wp-members-sidebar.php:118
1082
+ msgid "You are not logged in."
1083
+ msgstr ""
1084
+
1085
+ #: wp-members-sidebar.php:169
1086
+ msgid "log in"
1087
+ msgstr "identifiant"
1088
+
1089
+ #: wp-members-sidebar.php:180
1090
+ msgid "Forgot?"
1091
+ msgstr "Mot de Passe oublié ?"
1092
+
1093
+ #: wp-members-sidebar.php:247
1094
+ msgid "click here to log out"
1095
+ msgstr "Se déconnecter"
1096
+
1097
+ #: wp-members-sidebar.php:279
1098
+ msgid "Displays the WP-Members sidebar login."
1099
+ msgstr ""
1100
+
1101
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1102
+ msgid "Login Status"
1103
+ msgstr "Statut"
1104
+
1105
+ #: wp-members-sidebar.php:299
1106
+ msgid "Title:"
1107
+ msgstr "Titre:"
1108
+
1109
+ #: wp-members-tos.php:24
1110
+ msgid "Terms of Service"
1111
+ msgstr "Conditions d'utilisation (CU)"
1112
+
1113
+ #: wp-members-tos.php:36
1114
+ #, php-format
1115
+ msgid "%sclose%s"
1116
+ msgstr "%sfermer%s"
1117
+
1118
+ #: wp-members-tos.php:38
1119
+ #, php-format
1120
+ msgid "%sprint%s"
1121
+ msgstr "%simprimer%s"
1122
+
1123
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1124
+ #: Strings wp-members-install.php:49
1125
+ msgid "First Name"
1126
+ msgstr "Prénom"
1127
+
1128
+ #: wp-members-install.php:50
1129
+ msgid "Last Name"
1130
+ msgstr "Nom de Famille"
1131
+
1132
+ #: wp-members-install.php:51
1133
+ msgid "Address 1"
1134
+ msgstr "Adresse"
1135
+
1136
+ #: wp-members-install.php:52
1137
+ msgid "Address 2"
1138
+ msgstr "Complément d'adresse"
1139
+
1140
+ #: wp-members-install.php:53
1141
+ msgid "City"
1142
+ msgstr "Ville"
1143
+
1144
+ #: wp-members-install.php:54
1145
+ msgid "State"
1146
+ msgstr "Région/Province"
1147
+
1148
+ #: wp-members-install.php:55
1149
+ msgid "Zip"
1150
+ msgstr "Code Postal"
1151
+
1152
+ #: wp-members-install.php:56
1153
+ msgid "Country"
1154
+ msgstr "Pays"
1155
+
1156
+ #: wp-members-install.php:57
1157
+ msgid "Day Phone"
1158
+ msgstr "Téléphone (journée)"
1159
+
1160
+ #: wp-members-install.php:59
1161
+ msgid "Website"
1162
+ msgstr "Site Internet"
1163
+
1164
+ #: wp-members-install.php:60
1165
+ msgid "AIM"
1166
+ msgstr "AIM"
1167
+
1168
+ #: wp-members-install.php:61
1169
+ msgid "Yahoo IM"
1170
+ msgstr "Yahoo IM"
1171
+
1172
+ #: wp-members-install.php:62
1173
+ msgid "Jabber/Google Talk"
1174
+ msgstr "Jabber/Google Talk"
1175
+
1176
+ #: wp-members-install.php:63
1177
+ msgid "Biographical Info"
1178
+ msgstr "Informations biographiques"
1179
+
1180
+ #: wp-members-install.php:64 wp-members-install.php:211
1181
+ msgid "TOS"
1182
+ msgstr "Conditions d'Utilisation"
1183
+
1184
+ #: Error message dialog strings wp-members-install.php:96
1185
+ msgid ""
1186
+ "This content is restricted to site members. If you are an existing user, "
1187
+ "please log in. New users may register below."
1188
+ msgstr ""
1189
+ "Ce contenu est restreint aux membres. Si vous êtes un utilisateur "
1190
+ "enregistré, connectez vous. Les nouveaux utilisateurs peuvent s'enregistrer "
1191
+ "ci-dessous."
1192
+
1193
+ #: wp-members-install.php:97
1194
+ msgid "Sorry, that username is taken, please try another."
1195
+ msgstr "Désolé, ce nom d'utilisateur est pris, veuillez en saisir un autre."
1196
+
1197
+ #: wp-members-install.php:98
1198
+ msgid ""
1199
+ "Sorry, that email address already has an account.<br />Please try another."
1200
+ msgstr ""
1201
+ "Désolé, cette adrese email fait déjà l'objet d'un compte.<br />Veuillez en "
1202
+ "saisir une autre"
1203
+
1204
+ #: wp-members-install.php:99
1205
+ msgid ""
1206
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1207
+ "log in using the password that was emailed to you."
1208
+ msgstr ""
1209
+ "Félicitations! Votre inscription est complétée. <br /><br />Vous pouvez "
1210
+ "maintenant vous identifier en utilisant le mot de passe que nous vous avons "
1211
+ "envoyé par email."
1212
+
1213
+ #: wp-members-install.php:100
1214
+ msgid "Your information was updated!"
1215
+ msgstr "Vos informations ont été mises à jour."
1216
+
1217
+ #: wp-members-install.php:101
1218
+ msgid "Passwords did not match.<br /><br />Please try again."
1219
+ msgstr "Les mots de passe ne concordent pas<br /><br />Veuillez réessayer."
1220
+
1221
+ #: wp-members-install.php:102
1222
+ msgid ""
1223
+ "Password successfully changed!<br /><br />You will need to re-login with "
1224
+ "your new password."
1225
+ msgstr ""
1226
+ "Le mot de passe a été correctement changé! <br /><br /> Vous allez devoir "
1227
+ "vous identifier de nouveau avec votre nouveau mot de passe."
1228
+
1229
+ #: wp-members-install.php:103
1230
+ msgid "Either the username or email address do not exist in our records."
1231
+ msgstr ""
1232
+ "Le nom d'utilisateur ou le mot de passe n'existent pas dans nos registres."
1233
+
1234
+ #: wp-members-install.php:104
1235
+ msgid ""
1236
+ "Password successfully reset!<br /><br />An email containing a new password "
1237
+ "has been sent to the email address on file for your account. You may change "
1238
+ "this random password then re-login with your new password."
1239
+ msgstr ""
1240
+ "Le mot de passe a été réinitialisé avec succès !<br /><br />Un email "
1241
+ "contenant un nouveau mot de passe vous a été envoyé. Vous pourrez changer ce "
1242
+ "mot de passe aléatoire quand vous vous identifierez de nouveau sur le site."
1243
+
1244
+ #~ msgid "Yes"
1245
+ #~ msgstr "Oui"
1246
+
1247
+ #~ msgid "WP-Members"
1248
+ #~ msgstr "WP-Members"
1249
+
1250
+ #~ msgid "Custom"
1251
+ #~ msgstr "Personnalisé"
1252
+
1253
+ #, fuzzy
1254
+ #~ msgid "edit"
1255
+ #~ msgstr "Editer vos informations"
1256
+
1257
+ #, fuzzy
1258
+ #~ msgid "Edit"
1259
+ #~ msgstr "Editer vos informations"
1260
+
1261
+ #, fuzzy
1262
+ #~ msgid "Pages"
1263
+ #~ msgstr "Bloquer les Pages par défaut"
lang/wp-members-hi_IN.mo ADDED
Binary file
lang/wp-members-hi_IN.po ADDED
@@ -0,0 +1,1502 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.3\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: 2014-07-22 12:01-0600\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;"
16
+ "_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"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Generator: Poedit 1.6.4\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ default
23
+ # @ wp-members
24
+ #: admin/admin.php:60 admin/admin.php:129
25
+ msgid "Settings"
26
+ msgstr "सेटिंग्स"
27
+
28
+ # @ wp-members
29
+ #: admin/admin.php:187
30
+ msgid "Options"
31
+ msgstr "विकल्प"
32
+
33
+ # @ wp-members
34
+ #: admin/admin.php:188
35
+ msgid "Fields"
36
+ msgstr "फ़ील्ड"
37
+
38
+ # @ wp-members
39
+ #: admin/admin.php:189
40
+ msgid "Dialogs"
41
+ msgstr "संवाद"
42
+
43
+ # @ wp-members
44
+ #: admin/admin.php:190
45
+ msgid "Emails"
46
+ msgstr "ईमेल"
47
+
48
+ # @ wp-members
49
+ #: admin/dialogs.php:109
50
+ msgid ""
51
+ "Your WP settings allow anyone to register - this is not the recommended "
52
+ "setting."
53
+ msgstr ""
54
+ "आपके WP सेटिंग्स किसी को भी रजिस्टर करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं "
55
+ "है."
56
+
57
+ # @ wp-members
58
+ #: admin/dialogs.php:110
59
+ #, php-format
60
+ msgid ""
61
+ "You can %s change this here %s making sure the box next to \"Anyone can "
62
+ "register\" is unchecked."
63
+ msgstr ""
64
+ "आप%s में परिवर्तन के यहां%s बनाने यकीन है कि अगले करने के लिए बॉक्स \"कोई भी रजिस्टर कर "
65
+ "सकते हैं \" अनियंत्रित है"
66
+
67
+ # @ wp-members
68
+ #: admin/dialogs.php:111
69
+ msgid ""
70
+ "This setting allows a link on the /wp-login.php page to register using the "
71
+ "WP native registration process thus circumventing any registration you are "
72
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
73
+ "but most users should uncheck this option. If you do not change this "
74
+ "setting, you can choose to ignore these warning messages under WP-Members "
75
+ "Settings."
76
+ msgstr ""
77
+ "यह सेटिंग / wp-login.php पृष्ठ पर एक लिंक WP देशी पंजीकरण प्रक्रिया इस प्रकार का उपयोग "
78
+ "कर आप किसी भी पंजीकरण WP-सदस्य के साथ प्रयोग कर रहे हैं धोखा रजिस्टर करने के लिए अनुमति "
79
+ "देता है. कुछ मामलों में, यह उपयोगकर्ताओं को सूट / की जरूरत है चाहता है, हो सकता है, लेकिन "
80
+ "अधिकांश उपयोगकर्ताओं को इस विकल्प को अनचेक करना चाहिए. यदि आप इस सेटिंग को बदल नहीं "
81
+ "है, तुम WP-सदस्य सेटिंग्स के तहत इन चेतावनी संदेशों को अनदेखा करने के लिए चुन सकते हैं."
82
+
83
+ # @ wp-members
84
+ #: admin/dialogs.php:117
85
+ msgid ""
86
+ "Your WP settings allow anyone to comment - this is not the recommended "
87
+ "setting."
88
+ msgstr ""
89
+ "आपके WP सेटिंग्स किसी को भी टिप्पणी करने के लिए अनुमति देते हैं - यह सिफारिश की सेटिंग नहीं "
90
+ "है."
91
+
92
+ # @ wp-members
93
+ #: admin/dialogs.php:118
94
+ #, php-format
95
+ msgid ""
96
+ "You can %s change this here %s by checking the box next to \"Users must be "
97
+ "registered and logged in to comment.\""
98
+ msgstr ""
99
+ "आप%s में परिवर्तन के इस%s अगले बॉक्स की जाँच करके यहाँ कर सकते हैं \"उपयोगकर्ताओं को पंजीकृत "
100
+ "होना चाहिए और में लॉग इन टिप्पणी करने के लिए \""
101
+
102
+ # @ wp-members
103
+ #: admin/dialogs.php:119
104
+ msgid ""
105
+ "This setting allows any users to comment, whether or not they are "
106
+ "registered. Depending on how you are using WP-Members will determine whether "
107
+ "you should change this setting or not. If you do not change this setting, "
108
+ "you can choose to ignore these warning messages under WP-Members Settings."
109
+ msgstr ""
110
+ "यह सेटिंग किसी भी उपयोगकर्ताओं को टिप्पणी करने के लिए, चाहे या नहीं वे पंजीकृत हैं अनुमति "
111
+ "देता है. कैसे आप WP-सदस्यों का उपयोग कर रहे हैं के आधार पर निर्धारित होगा कि क्या आप इस "
112
+ "सेटिंग को बदलने चाहिए या नहीं. यदि आप इस सेटिंग को बदल नहीं है, तुम WP-सदस्य सेटिंग्स के "
113
+ "तहत इन चेतावनी संदेशों को अनदेखा करने के लिए चुन सकते हैं."
114
+
115
+ # @ wp-members
116
+ #: admin/dialogs.php:125
117
+ msgid ""
118
+ "Your WP settings allow full text rss feeds - this is not the recommended "
119
+ "setting."
120
+ msgstr "आपका WP सेटिंग्स पूर्ण पाठ आरएसएस फ़ीड की अनुमति यह सिफारिश की सेटिंग नहीं है."
121
+
122
+ # @ wp-members
123
+ #: admin/dialogs.php:126
124
+ #, php-format
125
+ msgid ""
126
+ "You can %s change this here %s by changing \"For each article in a feed, show"
127
+ "\" to \"Summary.\""
128
+ msgstr ""
129
+ "आप बदल रहा है \"प्रत्येक लेख के लिए एक फ़ीड दिखाने के लिए, \" \"सारांश \"%s परिवर्तन यह "
130
+ "है यहां%s कर सकते हैं"
131
+
132
+ # @ wp-members
133
+ #: admin/dialogs.php:127
134
+ msgid ""
135
+ "Leaving this set to full text allows anyone to read your protected content "
136
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
137
+ "only show summary text."
138
+ msgstr ""
139
+ "पूर्ण पाठ करने के लिए इस सेट को छोड़कर किसी को भी एक आरएसएस रीडर में संरक्षित सामग्री "
140
+ "को पढ़ने के लिए अनुमति देता है. यह करने के लिए सारांश बदलने से अपने फ़ीड के रूप में इस रोकता "
141
+ "केवल सारांश पाठ दि"
142
+
143
+ # @ wp-members
144
+ #: admin/dialogs.php:133
145
+ msgid "You have set WP-Members to hold registrations for approval"
146
+ msgstr "आप WP-सदस्य सेट करने के लिए अनुमोदन के लिए पंजीकरण पकड़ है"
147
+
148
+ # @ wp-members
149
+ #: admin/dialogs.php:134
150
+ msgid ""
151
+ "but you have not changed the default message for \"Registration Completed\" "
152
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
153
+ "message to let users know they are pending approval."
154
+ msgstr ""
155
+ "लेकिन आप के लिए डिफ़ॉल्ट संदेश नहीं बदल गया है \"पंजीकरण पूर्ण \" के अंतर्गत \"WP-सदस्य "
156
+ "संवाद और त्रुटि संदेश \" आप इस संदेश को बदलने के लिए उपयोगकर्ताओं को पता है कि वे अनुमोदन "
157
+ "के लिए लंबित कर रहे हैं "
158
+
159
+ # @ wp-members
160
+ #: admin/dialogs.php:140
161
+ msgid "You have set WP-Members to turn off the registration process"
162
+ msgstr "WP-सदस्य पंजीकरण प्रक्रिया को बारी के लिए निर्धारित किया है"
163
+
164
+ # @ wp-members
165
+ #: admin/dialogs.php:141
166
+ msgid ""
167
+ "but you also set to moderate and/or email admin new registrations. You will "
168
+ "need to set up a registration page for users to register."
169
+ msgstr ""
170
+ "लेकिन आप भी और / या मध्यम ईमेल व्यवस्थापक नए पंजीकरण के लिए निर्धारित किया है. आप के "
171
+ "लिए एक पंजीकरण पृष्ठ सेट के लिए उपयोगकर्ताओं को रजिस्टर करने के लिए की आवश्यकता होगी.."
172
+
173
+ # @ wp-members
174
+ #: admin/dialogs.php:147
175
+ msgid "You have turned on reCAPTCHA"
176
+ msgstr "आप reCAPTCHA पर बदल गया है"
177
+
178
+ # @ wp-members
179
+ #: admin/dialogs.php:148
180
+ msgid ""
181
+ "but you have not entered API keys. You will need both a public and private "
182
+ "key. The CAPTCHA will not display unless a valid API key is included."
183
+ msgstr ""
184
+ "लेकिन आप एपीआई कुंजी दर्ज नहीं की है. तुम दोनों सार्वजनिक और निजी कुंजी की आवश्यकता "
185
+ "होगी. कॅप्चा है जब तक एक मान्य API कुंजी शामिल है प्रदर्शित नहीं होगा."
186
+
187
+ # @ wp-members
188
+ #: admin/dialogs.php:171
189
+ msgid "Version:"
190
+ msgstr "संस्करण:"
191
+
192
+ #: admin/dialogs.php:172
193
+ #, fuzzy
194
+ msgid "Quick Start Guide"
195
+ msgstr "नवीनीकरण उपयोगकर्ता"
196
+
197
+ #: admin/dialogs.php:173
198
+ #, fuzzy
199
+ msgid "Online User Guide"
200
+ msgstr "नवीनीकरण उपयोगकर्ता"
201
+
202
+ #: admin/dialogs.php:174
203
+ msgid "FAQs"
204
+ msgstr ""
205
+
206
+ # @ wp-members
207
+ #: admin/dialogs.php:181
208
+ #, fuzzy
209
+ msgid "Thank you for using WP-Members"
210
+ msgstr "WP-सदस्य का उपयोग करने के लिए धन्यवाद! संस्मरण%s का उपयोग कर रहे हैं"
211
+
212
+ #: admin/dialogs.php:182
213
+ msgid "A plugin developed by"
214
+ msgstr ""
215
+
216
+ # @ wp-members
217
+ #: admin/dialogs.php:183
218
+ msgid "Follow"
219
+ msgstr "पालन करें"
220
+
221
+ #: admin/dialogs.php:200 admin/dialogs.php:204
222
+ msgid "Latest from RocketGeek"
223
+ msgstr ""
224
+
225
+ #: admin/dialogs.php:221 admin/dialogs.php:234
226
+ msgid "Latest from ButlerBlog"
227
+ msgstr ""
228
+
229
+ #: admin/post.php:36 admin/post.php:38
230
+ #, fuzzy
231
+ msgid "Block"
232
+ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
233
+
234
+ #: admin/post.php:37 admin/post.php:39
235
+ msgid "Unblock"
236
+ msgstr ""
237
+
238
+ #: admin/post.php:120
239
+ #, php-format
240
+ msgid "%s posts %sed."
241
+ msgstr ""
242
+
243
+ # @ wp-members
244
+ #: admin/post.php:138
245
+ #, fuzzy
246
+ msgid "Post Restriction"
247
+ msgstr "नया पंजीकरण"
248
+
249
+ # @ wp-members
250
+ #: admin/post.php:145
251
+ #, fuzzy
252
+ msgid "Page Restriction"
253
+ msgstr "रजिस्टर पृष्ठ URL:"
254
+
255
+ #: admin/post.php:263 admin/post.php:295
256
+ #, fuzzy
257
+ msgid "Unblocked?"
258
+ msgstr ""
259
+ "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
260
+
261
+ # @ wp-members
262
+ #: admin/post.php:263 admin/post.php:295
263
+ #, fuzzy
264
+ msgid "Blocked?"
265
+ msgstr ""
266
+ "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
267
+
268
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
269
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
270
+ msgid "Need help?"
271
+ msgstr ""
272
+
273
+ # @ wp-members
274
+ #: admin/tab-captcha.php:46
275
+ msgid "Manage reCAPTCHA Options"
276
+ msgstr "ReCAPTCHA विकल्प प्रबंधित करें"
277
+
278
+ # @ wp-members
279
+ #: admin/tab-captcha.php:60
280
+ msgid ""
281
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
282
+ "while blocking spam on your blog."
283
+ msgstr ""
284
+ "reCAPTCHA एक मुक्त, सुलभ कॅप्चा सेवा है कि पुस्तकों को डिजिटाइज़ करने में मदद करता है जबकि "
285
+ "अपने ब्लॉग पर स्पैम अवरुद्ध है."
286
+
287
+ # @ wp-members
288
+ #: admin/tab-captcha.php:61
289
+ #, php-format
290
+ msgid ""
291
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
292
+ "that they are a human. This verifies that they are not a spambot while also "
293
+ "correcting the automatic scans of old books. So you get less spam, and the "
294
+ "world gets accurately digitized books. Everybody wins! For details, visit "
295
+ "the %s reCAPTCHA website%s"
296
+ msgstr ""
297
+ "reCAPTCHA commenters करने के लिए पूछता है दो पुस्तक से साबित होता है कि वे मानव हैं स्कैन "
298
+ "शब्दों को पुन: लिखें. यह पुष्टि करता है कि वे एक spambot जबकि स्वचालित पुरानी पुस्तकों का "
299
+ "स्कैन भी सही नहीं हैं. तो तुम कम स्पैम मिलता है, और दुनिया सही डिजीटल किताबें हो जाता है. "
300
+ "हर कोई जीतता है! जानकारी के लिए,%s reCAPTCHA वेबसाइट%s की यात्रा"
301
+
302
+ # @ wp-members
303
+ #: admin/tab-captcha.php:66
304
+ msgid "reCAPTCHA Keys"
305
+ msgstr "reCAPTCHA कुंजी"
306
+
307
+ # @ wp-members
308
+ #: admin/tab-captcha.php:68
309
+ #, php-format
310
+ msgid ""
311
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
312
+ "key. You can sign up for a %s free reCAPTCHA key%s"
313
+ msgstr ""
314
+ "reCAPTCHA एक एपीआई कुंजी की आवश्यकता है, \"सार्वजनिक \" और \"निजी \" कुंजी शामिल है. "
315
+ "आप%s मुक्त reCAPTCHA कुंजी%s के लिए साइन अप कर सकते हैं"
316
+
317
+ # @ wp-members
318
+ #: admin/tab-captcha.php:69
319
+ msgid "Public Key"
320
+ msgstr "सार्वजनिक कुंजी"
321
+
322
+ # @ wp-members
323
+ #: admin/tab-captcha.php:70
324
+ msgid "Private Key"
325
+ msgstr "निजी कुंजी"
326
+
327
+ # @ wp-members
328
+ #: admin/tab-captcha.php:74
329
+ msgid "Choose Theme"
330
+ msgstr "थीम चुनें"
331
+
332
+ # @ wp-members
333
+ #: admin/tab-captcha.php:77
334
+ msgid "Red"
335
+ msgstr "लाल"
336
+
337
+ # @ wp-members
338
+ #: admin/tab-captcha.php:78
339
+ msgid "White"
340
+ msgstr "सफ़ेद"
341
+
342
+ # @ wp-members
343
+ #: admin/tab-captcha.php:79
344
+ msgid "Black Glass"
345
+ msgstr "काले ग्लास"
346
+
347
+ # @ wp-members
348
+ #: admin/tab-captcha.php:80
349
+ msgid "Clean"
350
+ msgstr "स्वच्छ"
351
+
352
+ #: admin/tab-captcha.php:112
353
+ #, fuzzy
354
+ msgid "Characters for image"
355
+ msgstr "फ़ील्ड प्रकार"
356
+
357
+ #: admin/tab-captcha.php:116
358
+ #, fuzzy
359
+ msgid "Number of characters"
360
+ msgstr "कुछ अंशः दिखाएँ"
361
+
362
+ #: admin/tab-captcha.php:120
363
+ #, fuzzy
364
+ msgid "Image dimensions"
365
+ msgstr "फ़ील्ड प्रकार"
366
+
367
+ #: admin/tab-captcha.php:124
368
+ msgid "Font color of characters"
369
+ msgstr ""
370
+
371
+ #: admin/tab-captcha.php:128
372
+ #, fuzzy
373
+ msgid "Background color of image"
374
+ msgstr "फ़ील्ड प्रकार"
375
+
376
+ #: admin/tab-captcha.php:132
377
+ msgid "Font size"
378
+ msgstr ""
379
+
380
+ #: admin/tab-captcha.php:136
381
+ msgid "Width between characters"
382
+ msgstr ""
383
+
384
+ #: admin/tab-captcha.php:140
385
+ #, fuzzy
386
+ msgid "Image type"
387
+ msgstr "फ़ील्ड प्रकार"
388
+
389
+ #: admin/tab-captcha.php:154
390
+ msgid ""
391
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
392
+ "installed and activated."
393
+ msgstr ""
394
+
395
+ # @ wp-members
396
+ #: admin/tab-captcha.php:166
397
+ msgid "Update CAPTCHA Settings"
398
+ msgstr "अपडेट करें CAPTCHA सेटिंग्स"
399
+
400
+ # @ wp-members
401
+ #: admin/tab-captcha.php:230
402
+ msgid "CAPTCHA was updated for WP-Members"
403
+ msgstr "CAPTCHA WP-सदस्य के लिए अपडेट किया गया था"
404
+
405
+ # @ wp-members
406
+ #: admin/tab-dialogs.php:29
407
+ msgid "Restricted post (or page), displays above the login/registration form"
408
+ msgstr "रतिबंधित पोस्ट, (या पृष्ठ) प्रपत्र लॉग इन / पंजीकरण ऊपर प्रदर्शित करता है"
409
+
410
+ # @ wp-members
411
+ #: admin/tab-dialogs.php:30
412
+ msgid "Username is taken"
413
+ msgstr "उपयोगकर्ता नाम लिया है"
414
+
415
+ # @ wp-members
416
+ #: admin/tab-dialogs.php:31
417
+ msgid "Email is registered"
418
+ msgstr "ईमेल पंजीकृत है"
419
+
420
+ # @ wp-members
421
+ #: admin/tab-dialogs.php:32
422
+ msgid "Registration completed"
423
+ msgstr "पंजीकरण पूरा किया"
424
+
425
+ # @ wp-members
426
+ #: admin/tab-dialogs.php:33
427
+ msgid "User update"
428
+ msgstr "नवीनीकरण उपयोगकर्ता"
429
+
430
+ # @ wp-members
431
+ #: admin/tab-dialogs.php:34
432
+ msgid "Passwords did not match"
433
+ msgstr "कूटशब्द मेल नहीं खाता"
434
+
435
+ # @ wp-members
436
+ #: admin/tab-dialogs.php:35
437
+ msgid "Password changes"
438
+ msgstr "पासवर्ड परिवर्तन"
439
+
440
+ # @ wp-members
441
+ #: admin/tab-dialogs.php:36
442
+ msgid "Username or email do not exist when trying to reset forgotten password"
443
+ msgstr "उपयोगकर्ता नाम या ईमेल जब भूल पासवर्ड रीसेट करने की कोशिश मौजूद नहीं है"
444
+
445
+ # @ wp-members
446
+ #: admin/tab-dialogs.php:37
447
+ msgid "Password reset"
448
+ msgstr "पासवर्ड रीसेट"
449
+
450
+ # @ wp-members
451
+ #: admin/tab-dialogs.php:54
452
+ msgid "Dialogs and Error Messages"
453
+ msgstr "संवाद और त्रुटि संदेश"
454
+
455
+ # @ wp-members
456
+ #: admin/tab-dialogs.php:56
457
+ #, php-format
458
+ msgid ""
459
+ "You can customize the text for dialogs and error messages. Simple HTML is "
460
+ "allowed %s etc."
461
+ msgstr ""
462
+ "आप संवाद और त्रुटि संदेश के लिए पाठ को अनुकूलित कर सकते हैं. सरल HTML%s आदि की अनुमति दी "
463
+ "है"
464
+
465
+ # @ wp-members
466
+ #: admin/tab-dialogs.php:69
467
+ msgid "Terms of Service (TOS)"
468
+ msgstr "सेवा की शर्तें (TOS)"
469
+
470
+ # @ wp-members
471
+ #: admin/tab-dialogs.php:76
472
+ msgid "Update Dialogs"
473
+ msgstr "संवाद अपडेट करें"
474
+
475
+ # @ wp-members
476
+ #: admin/tab-dialogs.php:115
477
+ msgid "WP-Members dialogs were updated"
478
+ msgstr "WP-सदस्य संवाद अपडेट की गई थीं"
479
+
480
+ # @ wp-members
481
+ #: admin/tab-emails.php:30
482
+ msgid "New Registration"
483
+ msgstr "नया पंजीकरण"
484
+
485
+ # @ wp-members
486
+ #: admin/tab-emails.php:34
487
+ msgid "Registration is Moderated"
488
+ msgstr "पंजीकरण संचालित है"
489
+
490
+ # @ wp-members
491
+ #: admin/tab-emails.php:35
492
+ msgid "Registration is Moderated, User is Approved"
493
+ msgstr "पंजीकरण संचालित है, उपयोगकर्ता स्वीकृत"
494
+
495
+ # @ wp-members
496
+ #: admin/tab-emails.php:40
497
+ msgid "Password Reset"
498
+ msgstr "पासवर्ड रीसेट"
499
+
500
+ # @ wp-members
501
+ #: admin/tab-emails.php:45
502
+ msgid "Admin Notification"
503
+ msgstr "व्यवस्थापक अधिसूचना"
504
+
505
+ # @ wp-members
506
+ #: admin/tab-emails.php:50
507
+ msgid "Email Signature"
508
+ msgstr "ईमेल हस्ताक्षर"
509
+
510
+ # @ wp-members
511
+ #: admin/tab-emails.php:57
512
+ msgid "Email Messages"
513
+ msgstr "ईमेल संदेश"
514
+
515
+ # @ wp-members
516
+ #: admin/tab-emails.php:60
517
+ msgid "You can customize the content of the emails sent by the plugin."
518
+ msgstr "आप प्लगइन द्वारा भेजे गए ईमेल की सामग्री को अनुकूलित कर सकते हैं."
519
+
520
+ # @ wp-members
521
+ #: admin/tab-emails.php:62
522
+ msgid "A list of shortcodes is available here."
523
+ msgstr "शॉर्टकोड की एक सूची यहाँ उपलब्ध है."
524
+
525
+ # @ wp-members
526
+ #: admin/tab-emails.php:69
527
+ msgid "Set a custom email address"
528
+ msgstr "एक कस्टम ईमेल पता सेट करें"
529
+
530
+ # @ wp-members
531
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
532
+ msgid "(optional)"
533
+ msgstr "(वैकल्पिक)"
534
+
535
+ # @ wp-members
536
+ #: admin/tab-emails.php:73
537
+ msgid "Set a custom email name"
538
+ msgstr "एक कस्टम ईमेल का नाम सेट करें"
539
+
540
+ # @ wp-members
541
+ #: admin/tab-emails.php:84
542
+ msgid "Subject"
543
+ msgstr "विषय"
544
+
545
+ # @ wp-members
546
+ #: admin/tab-emails.php:88
547
+ msgid "Body"
548
+ msgstr "शरीर"
549
+
550
+ # @ wp-members
551
+ #: admin/tab-emails.php:105
552
+ msgid "Update Emails"
553
+ msgstr "ईमेल अपडेट करें"
554
+
555
+ # @ wp-members
556
+ #: admin/tab-emails.php:161
557
+ msgid "WP-Members emails were updated"
558
+ msgstr "WP-सदस्य ईमेल अपडेट की गई थीं"
559
+
560
+ # @ wp-members
561
+ #: admin/tab-fields.php:166
562
+ msgid "WP-Members fields were updated"
563
+ msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
564
+
565
+ # @ wp-members
566
+ #: admin/tab-fields.php:176
567
+ msgid "Field Label is required for adding a new field. Nothing was updated."
568
+ msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
569
+
570
+ # @ wp-members
571
+ #: admin/tab-fields.php:177
572
+ msgid "Option Name is required for adding a new field. Nothing was updated."
573
+ msgstr "विकल्प नाम के एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
574
+
575
+ #: admin/tab-fields.php:184
576
+ msgid "A field with that option name already exists"
577
+ msgstr ""
578
+
579
+ # @ wp-members
580
+ #: admin/tab-fields.php:201
581
+ #, fuzzy
582
+ msgid "Checked value is required for checkboxes. Nothing was updated."
583
+ msgstr "क्षेत्र लेबल एक नए क्षेत्र जोड़ने के लिए आवश्यक है.कुछ भी नहीं अपडेट किया गया था."
584
+
585
+ #: admin/tab-fields.php:223
586
+ #, fuzzy
587
+ msgid "field was added"
588
+ msgstr "क्षेत्र लेबल"
589
+
590
+ # @ wp-members
591
+ #: admin/tab-fields.php:241
592
+ #, fuzzy
593
+ msgid "field was updated"
594
+ msgstr "WP-सदस्य फ़ील्ड्स अपडेट की गई थीं"
595
+
596
+ # @ wp-members
597
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
598
+ #, fuzzy
599
+ msgid "Edit Field"
600
+ msgstr "जानकारी संपादित करें"
601
+
602
+ # @ wp-members
603
+ #: admin/tab-fields.php:289
604
+ #, fuzzy
605
+ msgid "Add a Field"
606
+ msgstr "जोड़ना"
607
+
608
+ # @ wp-members
609
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
610
+ msgid "Field Label"
611
+ msgstr "क्षेत्र लेबल"
612
+
613
+ #: admin/tab-fields.php:297
614
+ msgid "The name of the field as it will be displayed to the user."
615
+ msgstr ""
616
+
617
+ # @ wp-members
618
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
619
+ msgid "Option Name"
620
+ msgstr "विकल्प नाम"
621
+
622
+ #: admin/tab-fields.php:306
623
+ msgid ""
624
+ "The database meta value for the field. It must be unique and contain no "
625
+ "spaces (underscores are ok)."
626
+ msgstr ""
627
+
628
+ # @ wp-members
629
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
630
+ msgid "Field Type"
631
+ msgstr "फ़ील्ड प्रकार"
632
+
633
+ # @ wp-members
634
+ #: admin/tab-fields.php:316
635
+ msgid "text"
636
+ msgstr "पाठ"
637
+
638
+ # @ wp-members
639
+ #: admin/tab-fields.php:317
640
+ msgid "textarea"
641
+ msgstr "textarea"
642
+
643
+ # @ wp-members
644
+ #: admin/tab-fields.php:318
645
+ msgid "checkbox"
646
+ msgstr "चेकबॉक्स"
647
+
648
+ # @ wp-members
649
+ #: admin/tab-fields.php:319
650
+ msgid "dropdown"
651
+ msgstr "ड्रॉपडाउन"
652
+
653
+ # @ wp-members
654
+ #: admin/tab-fields.php:320
655
+ msgid "password"
656
+ msgstr "पासवर्ड"
657
+
658
+ # @ wp-members
659
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
660
+ msgid "Display?"
661
+ msgstr "प्रदर्शित करते हैं?"
662
+
663
+ # @ wp-members
664
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
665
+ msgid "Required?"
666
+ msgstr "आवश्यकता है?"
667
+
668
+ #: admin/tab-fields.php:334
669
+ #, fuzzy
670
+ msgid "Additional information for checkbox fields"
671
+ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
672
+
673
+ # @ wp-members
674
+ #: admin/tab-fields.php:337
675
+ #, fuzzy
676
+ msgid "Checked by default?"
677
+ msgstr "जाँच की?"
678
+
679
+ # @ wp-members
680
+ #: admin/tab-fields.php:341
681
+ #, fuzzy
682
+ msgid "Stored value if checked:"
683
+ msgstr "चेकबॉक्स के लिए, मान संग्रहीत यदि जांचा जाता है:"
684
+
685
+ #: admin/tab-fields.php:347
686
+ #, fuzzy
687
+ msgid "Additional information for dropdown fields"
688
+ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
689
+
690
+ # @ wp-members
691
+ #: admin/tab-fields.php:350
692
+ msgid "For dropdown, array of values:"
693
+ msgstr "मूल्यों की ड्रॉपडाउन सरणी, "
694
+
695
+ # @ wp-members
696
+ #: admin/tab-fields.php:375
697
+ msgid "Options should be Option Name|option_value,"
698
+ msgstr "विकल्प का नाम होना चाहिए, option_value"
699
+
700
+ # @ wp-members
701
+ #: admin/tab-fields.php:379
702
+ msgid "Visit plugin site for more information"
703
+ msgstr "अधिक जानकारी के लिए प्लगइन साइट पर जाएँ"
704
+
705
+ # @ wp-members
706
+ #: admin/tab-fields.php:385
707
+ #, fuzzy
708
+ msgid "Add Field"
709
+ msgstr "जोड़ना"
710
+
711
+ # @ wp-members
712
+ #: admin/tab-fields.php:407
713
+ msgid "Manage Fields"
714
+ msgstr "फील्ड्स प्रबंधित"
715
+
716
+ # @ wp-members
717
+ #: admin/tab-fields.php:409
718
+ msgid ""
719
+ "Determine which fields will display and which are required. This includes "
720
+ "all fields, both native WP fields and WP-Members custom fields."
721
+ msgstr ""
722
+ "निर्धारित जो फ़ील्ड प्रदर्शित करने के लिए और जो आवश्यक हैं. यह सभी क्षेत्रों, दोनों देशी WP "
723
+ "क्षेत्र और WP-सदस्य कस्टम फ़ील्ड्स शामिल हैं."
724
+
725
+ # @ wp-members
726
+ #: admin/tab-fields.php:410
727
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
728
+ msgstr "(नोट: ईमेल हमेशा अनिवार्य है और बदला नहीं जा सकता.)"
729
+
730
+ # @ wp-members
731
+ #: admin/tab-fields.php:415
732
+ msgid "Add/Delete"
733
+ msgstr "जोड़ें /हटाएँ"
734
+
735
+ # @ wp-members
736
+ #: admin/tab-fields.php:421
737
+ msgid "Checked?"
738
+ msgstr "जाँच की?"
739
+
740
+ #: admin/tab-fields.php:423
741
+ #, fuzzy
742
+ msgid "Users Screen"
743
+ msgstr "%d उपयोगकर्ताओं में सक्रिय थे."
744
+
745
+ # @ wp-members
746
+ #: admin/tab-fields.php:435
747
+ msgid "Delete"
748
+ msgstr "हटाना"
749
+
750
+ # @ wp-members
751
+ #: admin/tab-fields.php:447
752
+ msgid "(Email cannot be removed)"
753
+ msgstr "(ईमेल हटाया नहीं जा सकता है)"
754
+
755
+ # @ wp-members
756
+ #: admin/tab-fields.php:467
757
+ #, fuzzy
758
+ msgid "Registration Date"
759
+ msgstr "पंजीकरण पूरा किया"
760
+
761
+ # @ wp-members
762
+ #: admin/tab-fields.php:470
763
+ #, fuzzy
764
+ msgid "native"
765
+ msgstr "WP के मूल निवासी हैं?"
766
+
767
+ # @ wp-members
768
+ #: admin/tab-fields.php:480
769
+ #, fuzzy
770
+ msgid "Active"
771
+ msgstr "सक्रिय"
772
+
773
+ # @ wp-members
774
+ #: admin/tab-fields.php:492
775
+ #, fuzzy
776
+ msgid "Registration IP"
777
+ msgstr "आईपी ​​@ पंजीकरण"
778
+
779
+ # @ wp-members
780
+ #: admin/tab-fields.php:527
781
+ msgid "Update Fields"
782
+ msgstr "फ़ील्ड अपडेट करें"
783
+
784
+ # @ wp-members
785
+ #: admin/tab-options.php:48
786
+ msgid "Manage Options"
787
+ msgstr "विकल्प प्रबंधित"
788
+
789
+ # @ wp-members
790
+ #: admin/tab-options.php:54
791
+ msgid "Block Posts by default"
792
+ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पोस्ट"
793
+
794
+ # @ wp-members
795
+ #: admin/tab-options.php:54
796
+ msgid ""
797
+ "Note: Posts can still be individually blocked or unblocked at the article "
798
+ "level"
799
+ msgstr ""
800
+ "नोट: पोस्ट अभी भी व्यक्तिगत रूप से अवरुद्ध या लेख के स्तर पर अनवरोधित कर हो सकता है"
801
+
802
+ # @ wp-members
803
+ #: admin/tab-options.php:55
804
+ msgid "Block Pages by default"
805
+ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
806
+
807
+ # @ wp-members
808
+ #: admin/tab-options.php:55
809
+ msgid ""
810
+ "Note: Pages can still be individually blocked or unblocked at the article "
811
+ "level"
812
+ msgstr "नोट: अभी भी पन्ने व्यक्तिगत अवरुद्ध किया जा सकता है या लेख के स्तर पर अनवरोधित"
813
+
814
+ # @ wp-members
815
+ #: admin/tab-options.php:56
816
+ msgid "Show excerpts"
817
+ msgstr "कुछ अंशः दिखाएँ"
818
+
819
+ # @ wp-members
820
+ #: admin/tab-options.php:56
821
+ msgid ""
822
+ "Shows excerpted content above the login/registration on both Posts and Pages"
823
+ msgstr " दोनों पोस्ट और पृष्ठों पर लॉगिन और पंजीकरण के ऊपर सामग्री का कुछ अंश दिखाता है"
824
+
825
+ # @ wp-members
826
+ #: admin/tab-options.php:57
827
+ msgid "Notify admin"
828
+ msgstr "व्यवस्थापक को सूचित करें"
829
+
830
+ # @ wp-members
831
+ #: admin/tab-options.php:57
832
+ #, fuzzy, php-format
833
+ msgid "Notify %s for each new registration? %s"
834
+ msgstr "व्यवस्थापक करने के लिए प्रत्येक नए पंजीकरण के लिए ईमेल भेजता है?"
835
+
836
+ # @ wp-members
837
+ #: admin/tab-options.php:58
838
+ msgid "Moderate registration"
839
+ msgstr "मध्यम पंजीकरण"
840
+
841
+ # @ wp-members
842
+ #: admin/tab-options.php:58
843
+ msgid "Holds new registrations for admin approval"
844
+ msgstr "व्यवस्थापक अनुमोदन के लिए नए पंजीकरण धारण"
845
+
846
+ # @ wp-members
847
+ #: admin/tab-options.php:91
848
+ #, fuzzy
849
+ msgid "Enable CAPTCHA"
850
+ msgstr "CAPTCHA का प्रयोग करें"
851
+
852
+ # @ wp-members
853
+ #: admin/tab-options.php:59
854
+ msgid "Turns on CAPTCHA for registration"
855
+ msgstr "कॅप्चा पर पंजीकरण के लिए बदल जाता है"
856
+
857
+ # @ wp-members
858
+ #: admin/tab-options.php:60
859
+ #, fuzzy
860
+ msgid "Hide registration"
861
+ msgstr "पंजीकरण पूरा किया"
862
+
863
+ #: admin/tab-options.php:60
864
+ msgid "Removes the registration form from blocked content"
865
+ msgstr ""
866
+
867
+ # @ wp-members
868
+ #: admin/tab-options.php:62
869
+ msgid "Time-based expiration"
870
+ msgstr "समय - आधारित समाप्ति"
871
+
872
+ # @ wp-members
873
+ #: admin/tab-options.php:62
874
+ msgid "Allows for access to expire"
875
+ msgstr "उपयोग के लिए समाप्त करने के लिए"
876
+
877
+ # @ wp-members
878
+ #: admin/tab-options.php:63
879
+ msgid "Trial period"
880
+ msgstr "परीक्षण अवधि"
881
+
882
+ # @ wp-members
883
+ #: admin/tab-options.php:63
884
+ msgid "Allows for a trial period"
885
+ msgstr "एक परीक्षण अवधि के लिए अनुमति देता"
886
+
887
+ # @ wp-members
888
+ #: admin/tab-options.php:64
889
+ msgid "Ignore warning messages"
890
+ msgstr "चेतावनी संदेश पर ध्यान न दें"
891
+
892
+ # @ wp-members
893
+ #: admin/tab-options.php:64
894
+ msgid "Ignores WP-Members warning messages in the admin panel"
895
+ msgstr "व्यवस्थापक पैनल में WP-सदस्य चेतावनी संदेश ध्यान नहीं देता है"
896
+
897
+ #: admin/tab-options.php:81
898
+ msgid "Attribution"
899
+ msgstr ""
900
+
901
+ #: admin/tab-options.php:83
902
+ msgid ""
903
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
904
+ msgstr ""
905
+
906
+ # @ wp-members
907
+ #: admin/tab-options.php:87
908
+ #, fuzzy
909
+ msgid "Auto Excerpt:"
910
+ msgstr "कुछ अंशः दिखाएँ"
911
+
912
+ #: admin/tab-options.php:88
913
+ #, fuzzy
914
+ msgid "Number of words in excerpt:"
915
+ msgstr "कुछ अंशः दिखाएँ"
916
+
917
+ # @ wp-members
918
+ #: admin/tab-options.php:88 admin/tab-options.php:108
919
+ #: admin/tab-options.php:118 admin/tab-options.php:132
920
+ msgid "Optional"
921
+ msgstr "वैकल्पिक"
922
+
923
+ #: admin/tab-options.php:88
924
+ #, fuzzy
925
+ msgid "Automatically creates an excerpt"
926
+ msgstr "कुछ अंशः दिखाएँ"
927
+
928
+ #: admin/tab-options.php:103
929
+ #, fuzzy
930
+ msgid "User Profile Page:"
931
+ msgstr "रजिस्टर पृष्ठ URL:"
932
+
933
+ #: admin/tab-options.php:106
934
+ msgid "For creating a forgot password link in the login form"
935
+ msgstr ""
936
+
937
+ # @ wp-members
938
+ #: admin/tab-options.php:113
939
+ #, fuzzy
940
+ msgid "Register Page:"
941
+ msgstr "रजिस्टर पृष्ठ URL:"
942
+
943
+ #: admin/tab-options.php:116
944
+ msgid "For creating a register link in the login form"
945
+ msgstr ""
946
+
947
+ #: admin/tab-options.php:126
948
+ msgid "Select a stylesheet or specify a custom stylesheet below"
949
+ msgstr ""
950
+
951
+ # @ wp-members
952
+ #: admin/tab-options.php:131
953
+ #, fuzzy
954
+ msgid "Custom Stylesheet:"
955
+ msgstr "रिवाज"
956
+
957
+ # @ wp-members
958
+ #: admin/tab-options.php:136
959
+ msgid "Update Settings"
960
+ msgstr "सेटिंग्स अपडेट करें"
961
+
962
+ # @ wp-members
963
+ #: admin/tab-options.php:246
964
+ msgid "WP-Members settings were updated"
965
+ msgstr "WP-सदस्य सेटिंग्स अपडेट की गई थीं"
966
+
967
+ #: admin/tab-options.php:296
968
+ #, fuzzy
969
+ msgid "Select a page"
970
+ msgstr "रजिस्टर पृष्ठ URL:"
971
+
972
+ #: admin/tab-options.php:304
973
+ msgid "USE CUSTOM URL BELOW"
974
+ msgstr ""
975
+
976
+ # @ wp-members
977
+ #: admin/user-export.php:57 admin/user-export.php:172
978
+ msgid "Activated?"
979
+ msgstr "सक्रिय?"
980
+
981
+ # @ wp-members
982
+ #: admin/user-export.php:61 admin/user-export.php:175
983
+ msgid "Subscription"
984
+ msgstr "सदस्यता"
985
+
986
+ # @ wp-members
987
+ #: admin/user-export.php:61 admin/user-export.php:175
988
+ msgid "Expires"
989
+ msgstr "समाप्त हो"
990
+
991
+ # @ wp-members
992
+ #: admin/user-export.php:64 admin/user-export.php:178
993
+ msgid "Registered"
994
+ msgstr "पंजीकृत"
995
+
996
+ # @ wp-members
997
+ #: admin/user-export.php:65 admin/user-export.php:179
998
+ msgid "IP"
999
+ msgstr "IP"
1000
+
1001
+ # @ wp-members
1002
+ #: admin/user-profile.php:46
1003
+ msgid "WP-Members Additional Fields"
1004
+ msgstr "WP-सदस्य अतिरिक्त फ़ील्ड"
1005
+
1006
+ # @ wp-members
1007
+ #: admin/user-profile.php:66 native-registration.php:36
1008
+ #: native-registration.php:159 users.php:62
1009
+ msgid "(required)"
1010
+ msgstr "आवश्यकता है?"
1011
+
1012
+ # @ wp-members
1013
+ #: admin/user-profile.php:98
1014
+ msgid "Activate this user?"
1015
+ msgstr "इस उपयोगकर्ता को सक्रिय करें?"
1016
+
1017
+ # @ wp-members
1018
+ #: admin/user-profile.php:103
1019
+ msgid "Reactivate this user?"
1020
+ msgstr "इस उपयोगकर्ता को पुन: सक्रिय?"
1021
+
1022
+ # @ wp-members
1023
+ #: admin/user-profile.php:108
1024
+ msgid "Deactivate this user?"
1025
+ msgstr "इस उपयोगकर्ता को निष्क्रिय करें?"
1026
+
1027
+ # @ wp-members
1028
+ #: admin/user-profile.php:129
1029
+ msgid "IP @ registration"
1030
+ msgstr "आईपी ​​@ पंजीकरण"
1031
+
1032
+ # @ wp-members
1033
+ #: admin/users.php:45 admin/users.php:49
1034
+ msgid "Export"
1035
+ msgstr "निर्यात"
1036
+
1037
+ #: admin/users.php:50 admin/users.php:91
1038
+ #, fuzzy
1039
+ msgid "Export All Users"
1040
+ msgstr "निर्यात"
1041
+
1042
+ # @ wp-members
1043
+ #: forms.php:95
1044
+ #, fuzzy
1045
+ msgid "Existing Users Log In"
1046
+ msgstr "मौजूदा प्रयोक्ता लॉगिन"
1047
+
1048
+ # @ wp-members
1049
+ #: forms.php:161 wp-members-dialogs.php:192
1050
+ msgid "Change Password"
1051
+ msgstr "पासवर्ड बदलें"
1052
+
1053
+ # @ wp-members
1054
+ #: forms.php:163
1055
+ msgid "Update Password"
1056
+ msgstr "पासवर्ड अद्यतन करें"
1057
+
1058
+ # @ wp-members
1059
+ #: forms.php:227
1060
+ msgid "Reset Forgotten Password"
1061
+ msgstr "भूल गया पासवर्ड रीसेट करें"
1062
+
1063
+ # @ wp-members
1064
+ #: forms.php:403
1065
+ msgid "Forgot password?"
1066
+ msgstr "पासवर्ड भूल गए?"
1067
+
1068
+ # @ wp-members
1069
+ #: forms.php:403
1070
+ msgid "Click here to reset"
1071
+ msgstr "रीसेट करने के लिए यहाँ पर क्लिक करें"
1072
+
1073
+ # @ wp-members
1074
+ #: forms.php:418
1075
+ msgid "New User?"
1076
+ msgstr "नये उपयोगकर्ता"
1077
+
1078
+ # @ wp-members
1079
+ #: forms.php:418
1080
+ msgid "Click here to register"
1081
+ msgstr "पंजीकरण केलिए क्लिक करें"
1082
+
1083
+ # @ wp-members
1084
+ #: forms.php:515
1085
+ msgid "Required field"
1086
+ msgstr "आवश्यक फ़ील्ड"
1087
+
1088
+ # @ wp-members
1089
+ #: forms.php:521
1090
+ #, fuzzy
1091
+ msgid "Reset Form"
1092
+ msgstr "स्पष्ट फार्म"
1093
+
1094
+ # @ wp-members
1095
+ #: forms.php:523
1096
+ #, fuzzy
1097
+ msgid "Update Profile"
1098
+ msgstr "नवीनीकरण उपयोगकर्ता"
1099
+
1100
+ # @ wp-members
1101
+ #: forms.php:561
1102
+ msgid "Choose a Username"
1103
+ msgstr "एक उपयोगकर्ता नाम चुनें"
1104
+
1105
+ # @ wp-members
1106
+ #: forms.php:683 native-registration.php:65
1107
+ #, php-format
1108
+ msgid "Please indicate that you agree to the %s TOS %s"
1109
+ msgstr "संकेत मिलता है कि आप%s के TOS %s करने के लिए सहमत"
1110
+
1111
+ # @ wp-members
1112
+ #: forms.php:852
1113
+ #, fuzzy
1114
+ msgid "New User Registration"
1115
+ msgstr "नये उपयोगकर्ता"
1116
+
1117
+ #: forms.php:1018
1118
+ msgid "Input the code:"
1119
+ msgstr ""
1120
+
1121
+ # @ wp-members
1122
+ #: users.php:38
1123
+ #, fuzzy
1124
+ msgid "Additional Information"
1125
+ msgstr "अतिरिक्त जानकारी"
1126
+
1127
+ # @ default
1128
+ #: wp-members-core.php:118 wp-members-core.php:245
1129
+ msgid "There was an error with the CAPTCHA form."
1130
+ msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1131
+
1132
+ # @ wp-members
1133
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1134
+ msgid "Edit Your Information"
1135
+ msgstr "जानकारी संपादित करें"
1136
+
1137
+ # @ wp-members
1138
+ #: wp-members-core.php:544
1139
+ msgid "<strong>ERROR</strong>: User has not been activated."
1140
+ msgstr "<strong>ERROR</strong>: उपयोगकर्ता सक्रिय नहीं किया गया है."
1141
+
1142
+ # @ wp-members
1143
+ #: wp-members-core.php:903 wp-members-register.php:93
1144
+ #, php-format
1145
+ msgid "Sorry, %s is a required field."
1146
+ msgstr "क्षमा करें,%s एक आवश्यक फ़ील्ड है."
1147
+
1148
+ # @ wp-members
1149
+ #: wp-members-dialogs.php:42
1150
+ msgid "Login Failed!"
1151
+ msgstr "असफल लॉगिन!"
1152
+
1153
+ # @ wp-members
1154
+ #: wp-members-dialogs.php:45
1155
+ msgid "You entered an invalid username or password."
1156
+ msgstr "आप एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया."
1157
+
1158
+ # @ wp-members
1159
+ #: wp-members-dialogs.php:47
1160
+ msgid "Click here to continue."
1161
+ msgstr "यहाँ क्लिक करें"
1162
+
1163
+ # @ wp-members
1164
+ #: wp-members-dialogs.php:191
1165
+ msgid "Edit My Information"
1166
+ msgstr "मेरी जानकारी संपादित करें"
1167
+
1168
+ # @ wp-members
1169
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1170
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1171
+ #: wp-members-sidebar.php:246
1172
+ #, php-format
1173
+ msgid "You are logged in as %s"
1174
+ msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
1175
+
1176
+ # @ wp-members
1177
+ #: wp-members-dialogs.php:208
1178
+ #, fuzzy
1179
+ msgid "Click to log out."
1180
+ msgstr "लॉग इन"
1181
+
1182
+ # @ wp-members
1183
+ #: wp-members-dialogs.php:209
1184
+ msgid "Begin using the site."
1185
+ msgstr "साइट का उपयोग शुरू करते हैं."
1186
+
1187
+ # @ wp-members
1188
+ #: wp-members-dialogs.php:225
1189
+ #, fuzzy
1190
+ msgid "Click to log out"
1191
+ msgstr "लॉग इन"
1192
+
1193
+ # @ wp-members
1194
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1195
+ #, fuzzy
1196
+ msgid "click to log out"
1197
+ msgstr "लॉग इन"
1198
+
1199
+ # @ wp-members
1200
+ #: wp-members-dialogs.php:271
1201
+ msgid "Password fields cannot be empty"
1202
+ msgstr "पासवर्ड फ़ील्ड रिक्त नहीं हो सकता"
1203
+
1204
+ # @ default
1205
+ #: wp-members-register.php:51
1206
+ #, fuzzy
1207
+ msgid "There was an error processing the form."
1208
+ msgstr "कॅप्चा फार्म के साथ एक त्रुटि थी."
1209
+
1210
+ # @ wp-members
1211
+ #: wp-members-register.php:110
1212
+ msgid "Sorry, username is a required field"
1213
+ msgstr "क्षमा करें, प्रयोक्ता नाम क्षेत्र जरूरी है"
1214
+
1215
+ # @ wp-members
1216
+ #: wp-members-register.php:111
1217
+ msgid "The username cannot include non-alphanumeric characters."
1218
+ msgstr "उपयोक्तानाम गैर अल्फ़ान्यूमेरिक वर्णों को शामिल नहीं कर सकते."
1219
+
1220
+ # @ wp-members
1221
+ #: wp-members-register.php:112 wp-members-register.php:282
1222
+ msgid "You must enter a valid email address."
1223
+ msgstr "आपको एक मान्य ईमेल पता दर्ज करना होगा."
1224
+
1225
+ # @ wp-members
1226
+ #: wp-members-register.php:119
1227
+ #, fuzzy
1228
+ msgid "Passwords did not match."
1229
+ msgstr "कूटशब्द मेल नहीं खाता"
1230
+
1231
+ # @ wp-members
1232
+ #: wp-members-register.php:120 wp-members-register.php:286
1233
+ #, fuzzy
1234
+ msgid "Emails did not match."
1235
+ msgstr "कूटशब्द मेल नहीं खाता"
1236
+
1237
+ # @ default
1238
+ #: wp-members-register.php:127
1239
+ msgid "You must complete the CAPTCHA form."
1240
+ msgstr "कॅप्चा प्रपत्र को पूरा करना होगा."
1241
+
1242
+ # @ wp-members
1243
+ #: wp-members-register.php:377
1244
+ msgid "We were unable to validate the public key."
1245
+ msgstr "हम सार्वजनिक कुंजी को मान्य करने में असमर्थ थे."
1246
+
1247
+ # @ wp-members
1248
+ #: wp-members-register.php:381
1249
+ msgid "We were unable to validate the private key."
1250
+ msgstr "हम निजी कुंजी को मान्य करने में असमर्थ थे."
1251
+
1252
+ # @ wp-members
1253
+ #: wp-members-register.php:385
1254
+ msgid "The challenge parameter of the verify script was incorrect."
1255
+ msgstr "सत्यापित स्क्रिप्ट की चुनौती पैरामीटर गलत थी."
1256
+
1257
+ # @ wp-members
1258
+ #: wp-members-register.php:389
1259
+ msgid "The CAPTCHA solution was incorrect."
1260
+ msgstr "कॅप्चा समाधान गलत था"
1261
+
1262
+ # @ wp-members
1263
+ #: wp-members-register.php:393
1264
+ msgid "The parameters to verify were incorrect"
1265
+ msgstr "सत्यापित करने के लिए पैरामीटर गलत थे"
1266
+
1267
+ # @ wp-members
1268
+ #: wp-members-register.php:397
1269
+ msgid ""
1270
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1271
+ msgstr "reCAPTCHA एपीआई कुंजी सुरक्षा कारणों के लिए एक विशिष्ट डोमेन नाम के लिए बंधे हैं."
1272
+
1273
+ # @ wp-members
1274
+ #: wp-members-register.php:401
1275
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1276
+ msgstr "ReCAPTCHA सर्वर तक पहुँच नहीं किया गया था. पुनः भेजने के लिये प्रयास करें"
1277
+
1278
+ #: wp-members-register.php:405
1279
+ msgid "You have entered an incorrect code value. Please try again."
1280
+ msgstr ""
1281
+
1282
+ # @ wp-members
1283
+ #: wp-members-sidebar.php:117
1284
+ msgid "Login Failed!<br />You entered an invalid username or password."
1285
+ msgstr "विफल लॉगिन !<br /> तुम एक अवैध उपयोगकर्ता नाम या पासवर्ड में प्रवेश किया"
1286
+
1287
+ # @ wp-members
1288
+ #: wp-members-sidebar.php:118
1289
+ #, fuzzy
1290
+ msgid "You are not logged in."
1291
+ msgstr "आप%s के रूप में लॉग इन कर रहे हैं"
1292
+
1293
+ #: wp-members-sidebar.php:169
1294
+ msgid "log in"
1295
+ msgstr "लॉग इन"
1296
+
1297
+ # @ wp-members
1298
+ #: wp-members-sidebar.php:180
1299
+ msgid "Forgot?"
1300
+ msgstr "भूल गए?"
1301
+
1302
+ # @ wp-members
1303
+ #: wp-members-sidebar.php:247
1304
+ msgid "click here to log out"
1305
+ msgstr "यहाँ क्लिक करने के लिए लॉग आउट करें"
1306
+
1307
+ #: wp-members-sidebar.php:279
1308
+ msgid "Displays the WP-Members sidebar login."
1309
+ msgstr ""
1310
+
1311
+ # @ wp-members
1312
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1313
+ msgid "Login Status"
1314
+ msgstr "स्थिति लॉगिन"
1315
+
1316
+ # @ wp-members
1317
+ #: wp-members-sidebar.php:299
1318
+ msgid "Title:"
1319
+ msgstr "शीर्षक:"
1320
+
1321
+ # @ wp-members
1322
+ #: wp-members-tos.php:24
1323
+ msgid "Terms of Service"
1324
+ msgstr "सेवा की शर्तें"
1325
+
1326
+ # @ wp-members
1327
+ #: wp-members-tos.php:36
1328
+ #, php-format
1329
+ msgid "%sclose%s"
1330
+ msgstr "%sclose%s"
1331
+
1332
+ # @ wp-members
1333
+ #: wp-members-tos.php:38
1334
+ #, php-format
1335
+ msgid "%sprint%s"
1336
+ msgstr "%sprint%s"
1337
+
1338
+ # @ wp-members
1339
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1340
+ #: Strings wp-members-install.php:49
1341
+ msgid "First Name"
1342
+ msgstr "प्रथम नाम"
1343
+
1344
+ # @ wp-members
1345
+ #: wp-members-install.php:50
1346
+ msgid "Last Name"
1347
+ msgstr "अंतिम नाम"
1348
+
1349
+ # @ wp-members
1350
+ #: wp-members-install.php:51
1351
+ msgid "Address 1"
1352
+ msgstr "पता 1"
1353
+
1354
+ # @ wp-members
1355
+ #: wp-members-install.php:52
1356
+ msgid "Address 2"
1357
+ msgstr "पता 2"
1358
+
1359
+ # @ wp-members
1360
+ #: wp-members-install.php:53
1361
+ msgid "City"
1362
+ msgstr "शहर"
1363
+
1364
+ # @ wp-members
1365
+ #: wp-members-install.php:54
1366
+ msgid "State"
1367
+ msgstr "राज्य"
1368
+
1369
+ # @ wp-members
1370
+ #: wp-members-install.php:55
1371
+ msgid "Zip"
1372
+ msgstr "ज़िप"
1373
+
1374
+ # @ wp-members
1375
+ #: wp-members-install.php:56
1376
+ msgid "Country"
1377
+ msgstr "देश"
1378
+
1379
+ # @ wp-members
1380
+ #: wp-members-install.php:57
1381
+ msgid "Day Phone"
1382
+ msgstr "दिन फोन"
1383
+
1384
+ # @ wp-members
1385
+ #: wp-members-install.php:59
1386
+ msgid "Website"
1387
+ msgstr "वेबसाइट"
1388
+
1389
+ # @ wp-members
1390
+ #: wp-members-install.php:60
1391
+ msgid "AIM"
1392
+ msgstr "उद्देश्य"
1393
+
1394
+ # @ wp-members
1395
+ #: wp-members-install.php:61
1396
+ msgid "Yahoo IM"
1397
+ msgstr "याहू आईएम"
1398
+
1399
+ # @ wp-members
1400
+ #: wp-members-install.php:62
1401
+ msgid "Jabber/Google Talk"
1402
+ msgstr "अस्पष्ट / गूगल टॉक"
1403
+
1404
+ # @ wp-members
1405
+ #: wp-members-install.php:63
1406
+ msgid "Biographical Info"
1407
+ msgstr "जीवनी जानकारी"
1408
+
1409
+ # @ wp-members
1410
+ #: wp-members-install.php:64 wp-members-install.php:211
1411
+ msgid "TOS"
1412
+ msgstr "टीओएस"
1413
+
1414
+ # @ wp-members
1415
+ #: Error message dialog strings wp-members-install.php:96
1416
+ #, fuzzy
1417
+ msgid ""
1418
+ "This content is restricted to site members. If you are an existing user, "
1419
+ "please log in. New users may register below."
1420
+ msgstr ""
1421
+ "यह सामग्री साइट के सदस्यों के लिए प्रतिबंधित है. यदि आप एक मौजूदा उपयोगकर्ता हैं, तो "
1422
+ "प्रवेश करें. नए उपयोगकर्ताओं को नीचे पंजीकृत कर सकते हैं."
1423
+
1424
+ # @ wp-members
1425
+ #: wp-members-install.php:97
1426
+ msgid "Sorry, that username is taken, please try another."
1427
+ msgstr "क्षमा करें, कि उपयोगकर्ता नाम लिया जाता है, एक और प्रयास करें."
1428
+
1429
+ # @ wp-members
1430
+ #: wp-members-install.php:98
1431
+ msgid ""
1432
+ "Sorry, that email address already has an account.<br />Please try another."
1433
+ msgstr "क्षमा करें, उस ईमेल पते पहले से ही एक खाता है <br /> कृपया एक और प्रयास करें."
1434
+
1435
+ # @ wp-members
1436
+ #: wp-members-install.php:99
1437
+ #, fuzzy
1438
+ msgid ""
1439
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1440
+ "log in using the password that was emailed to you."
1441
+ msgstr ""
1442
+ "बधाई हो!आपके पंजीकरण सफल रहा था. <br /> अब आप पासवर्ड है कि आप के लिए ईमेल का "
1443
+ "उपयोग कर प्रवेश कर सकते हैं."
1444
+
1445
+ # @ wp-members
1446
+ #: wp-members-install.php:100
1447
+ msgid "Your information was updated!"
1448
+ msgstr "आपकी जानकारी को अपडेट किया गया था!"
1449
+
1450
+ # @ wp-members
1451
+ #: wp-members-install.php:101
1452
+ msgid "Passwords did not match.<br /><br />Please try again."
1453
+ msgstr "पासवर्डों से मेल नहीं खाती. <br /> <br /> कृपया पुन: प्रयास करें."
1454
+
1455
+ # @ wp-members
1456
+ #: wp-members-install.php:102
1457
+ msgid ""
1458
+ "Password successfully changed!<br /><br />You will need to re-login with "
1459
+ "your new password."
1460
+ msgstr ""
1461
+ "कूटशब्द सफलतापूर्वक बदला <br /> <br आप फिर से अपने नए पासवर्ड के साथ लॉगिन की "
1462
+ "आवश्यकता होगी."
1463
+
1464
+ # @ wp-members
1465
+ #: wp-members-install.php:103
1466
+ msgid "Either the username or email address do not exist in our records."
1467
+ msgstr "या तो उपयोगकर्ता नाम या ईमेल पता हमारे रिकॉर्ड में मौजूद नहीं है"
1468
+
1469
+ # @ wp-members
1470
+ #: wp-members-install.php:104
1471
+ msgid ""
1472
+ "Password successfully reset!<br /><br />An email containing a new password "
1473
+ "has been sent to the email address on file for your account. You may change "
1474
+ "this random password then re-login with your new password."
1475
+ msgstr ""
1476
+ "पासवर्ड सफलतापूर्वक रीसेट!, /> <br /> एक युक्त ईमेल फ़ाइल पर अपने खाते के लिए ईमेल पते के "
1477
+ "लिए एक नया पासवर्ड भेज दिया गया है. आप अपने नए पासवर्ड के साथ इस यादृच्छिक तो फिर से "
1478
+ "लॉगिन पासवर्ड को बदल सकते हैं."
1479
+
1480
+ # @ wp-members
1481
+ #~ msgid "Yes"
1482
+ #~ msgstr "हां"
1483
+
1484
+ # @ wp-members
1485
+ #~ msgid "WP-Members"
1486
+ #~ msgstr "WP-सदस्य"
1487
+
1488
+ # @ wp-members
1489
+ #~ msgid "Custom"
1490
+ #~ msgstr "रिवाज"
1491
+
1492
+ #, fuzzy
1493
+ #~ msgid "edit"
1494
+ #~ msgstr "जानकारी संपादित करें"
1495
+
1496
+ #, fuzzy
1497
+ #~ msgid "Edit"
1498
+ #~ msgstr "जानकारी संपादित करें"
1499
+
1500
+ #, fuzzy
1501
+ #~ msgid "Pages"
1502
+ #~ msgstr "डिफ़ॉल्ट रूप से ब्लॉक पन्ने"
lang/wp-members-it_IT.mo ADDED
Binary file
lang/wp-members-it_IT.po ADDED
@@ -0,0 +1,1480 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:01-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "Language: it_IT\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 1.6.4\n"
16
+
17
+ #: admin/admin.php:60 admin/admin.php:129
18
+ msgid "Settings"
19
+ msgstr "Impostazioni"
20
+
21
+ #: admin/admin.php:187
22
+ msgid "Options"
23
+ msgstr "Opzioni"
24
+
25
+ #: admin/admin.php:188
26
+ msgid "Fields"
27
+ msgstr "Campi"
28
+
29
+ #: admin/admin.php:189
30
+ msgid "Dialogs"
31
+ msgstr "Dialoghi"
32
+
33
+ #: admin/admin.php:190
34
+ msgid "Emails"
35
+ msgstr "Emails"
36
+
37
+ #: admin/dialogs.php:109
38
+ msgid ""
39
+ "Your WP settings allow anyone to register - this is not the recommended "
40
+ "setting."
41
+ msgstr ""
42
+ "Le importazioni di WP permettono a chiunque di registrarsi, non è una "
43
+ "impostazione consigliata."
44
+
45
+ #: admin/dialogs.php:110
46
+ #, fuzzy, php-format
47
+ msgid ""
48
+ "You can %s change this here %s making sure the box next to \"Anyone can "
49
+ "register\" is unchecked."
50
+ msgstr ""
51
+ "Si può modificare questa impostazione %s da qui % accertandosi che la "
52
+ "casella \" chiunque può registrarsi \" non sia barrata"
53
+
54
+ #: admin/dialogs.php:111
55
+ msgid ""
56
+ "This setting allows a link on the /wp-login.php page to register using the "
57
+ "WP native registration process thus circumventing any registration you are "
58
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
59
+ "but most users should uncheck this option. If you do not change this "
60
+ "setting, you can choose to ignore these warning messages under WP-Members "
61
+ "Settings."
62
+ msgstr ""
63
+ "Questa impostazione permette il collegamento alla pagina /wp-login.php per "
64
+ "effettuare la registrazione utilizzando il processo nativo di WP scavalcando "
65
+ "tutte le registrazioni effettuate con WP-Members. In qualche caso questo va "
66
+ "incontro alle necessità dell'utilizzatore, ma molti preferiscono non usare "
67
+ "questa opzione. Se questa impostazione non viene modificata si può scegliere "
68
+ "di ignorare questo messaggio di allerta nelle impostazioni di WP-Members."
69
+
70
+ #: admin/dialogs.php:117
71
+ msgid ""
72
+ "Your WP settings allow anyone to comment - this is not the recommended "
73
+ "setting."
74
+ msgstr ""
75
+ "Le importazioni di WP permettono i commenti a tutti. Questa impostazione non "
76
+ "è consigliata."
77
+
78
+ #: admin/dialogs.php:118
79
+ #, php-format
80
+ msgid ""
81
+ "You can %s change this here %s by checking the box next to \"Users must be "
82
+ "registered and logged in to comment.\""
83
+ msgstr ""
84
+ "Si può modificare %s da qui %s barrando la casella \" gli utenti devono "
85
+ "essere registrati per poter lasciare commenti \""
86
+
87
+ #: admin/dialogs.php:119
88
+ msgid ""
89
+ "This setting allows any users to comment, whether or not they are "
90
+ "registered. Depending on how you are using WP-Members will determine whether "
91
+ "you should change this setting or not. If you do not change this setting, "
92
+ "you can choose to ignore these warning messages under WP-Members Settings."
93
+ msgstr ""
94
+ "Questa impostazione permette a tutti gli utenti di lasciare commenti anche "
95
+ "se non sono registrati. A seconda di come stai utilizzandoWP-Members puoi "
96
+ "cambiare queste importazioni o no. Se decidi di non modificare questa "
97
+ "impostazione puoi scegliere di ignorare questo messaggio di allerta nelle "
98
+ "impostazioni di WP-Members."
99
+
100
+ #: admin/dialogs.php:125
101
+ msgid ""
102
+ "Your WP settings allow full text rss feeds - this is not the recommended "
103
+ "setting."
104
+ msgstr ""
105
+ "Le impostazioni di WP permettono l'inserimento di tutto il testo nei feed "
106
+ "rss. Questa impostazione non è consigliata."
107
+
108
+ #: admin/dialogs.php:126
109
+ #, php-format
110
+ msgid ""
111
+ "You can %s change this here %s by changing \"For each article in a feed, show"
112
+ "\" to \"Summary.\""
113
+ msgstr ""
114
+ "Puoi modificarlo %s da qui %s cambiando \" per ogni articolo in un feed "
115
+ "mostra \" in \" Sommario\""
116
+
117
+ #: admin/dialogs.php:127
118
+ msgid ""
119
+ "Leaving this set to full text allows anyone to read your protected content "
120
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
121
+ "only show summary text."
122
+ msgstr ""
123
+ "Lasciando questa impostazione su full text dunque potrà leggere il contenuto "
124
+ "protetto con un lettore di RSS. Cambiando l'impostazione in \"sommario\" si "
125
+ "fa in modo di mostrare solamente un sommario"
126
+
127
+ #: admin/dialogs.php:133
128
+ msgid "You have set WP-Members to hold registrations for approval"
129
+ msgstr ""
130
+ "È stato impostato WP-Members per bloccare le registrazioni sino ad "
131
+ "approvazione."
132
+
133
+ #: admin/dialogs.php:134
134
+ msgid ""
135
+ "but you have not changed the default message for \"Registration Completed\" "
136
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
137
+ "message to let users know they are pending approval."
138
+ msgstr ""
139
+ "Ma non hai cambiato il messaggio iniziale \" registrazione completata\" nei "
140
+ "dialoghi e messaggi di errore di WP-Members . Si deve cambiare questo "
141
+ "messaggio in modo da far sapere agli utenti che sono in attesa di "
142
+ "approvazione."
143
+
144
+ #: admin/dialogs.php:140
145
+ msgid "You have set WP-Members to turn off the registration process"
146
+ msgstr "Hai impostato WP-Members per bloccare il processo di registrazione."
147
+
148
+ #: admin/dialogs.php:141
149
+ msgid ""
150
+ "but you also set to moderate and/or email admin new registrations. You will "
151
+ "need to set up a registration page for users to register."
152
+ msgstr ""
153
+ "Ma è stato anche scelto di moderare le nuove registrazioni. È necessario "
154
+ "impostare una pagina di registrazione affinché gli utenti possano registrarsi"
155
+
156
+ #: admin/dialogs.php:147
157
+ msgid "You have turned on reCAPTCHA"
158
+ msgstr "È stato attivato reCAPTCHA"
159
+
160
+ #: admin/dialogs.php:148
161
+ msgid ""
162
+ "but you have not entered API keys. You will need both a public and private "
163
+ "key. The CAPTCHA will not display unless a valid API key is included."
164
+ msgstr ""
165
+ "Ma non sono state immesse le chiavi API sono necessarie ambedue le chiavi "
166
+ "pubblica e privata.Il CAPTCHA non sarà mostrato che non saranno state "
167
+ "inserite delle chiavi API valide."
168
+
169
+ #: admin/dialogs.php:171
170
+ msgid "Version:"
171
+ msgstr "Versione"
172
+
173
+ #: admin/dialogs.php:172
174
+ #, fuzzy
175
+ msgid "Quick Start Guide"
176
+ msgstr ""
177
+ "WP restrizioni di accesso le registrazione utente. Per maggiori informazioni "
178
+ "e per scaricare la guida utente, visitare <a href=\"http://butlerblog.com/wp-"
179
+ "members\">http://butlerblog.com/wp-members</a>. È presente anche Una <a href="
180
+ "\"http://butlerblog.com/wp-members/wp-members-quick-start-guide/\"> Guida "
181
+ "Rapida </a> .WP-Members(tm) is a trademark of butlerblog.com."
182
+
183
+ #: admin/dialogs.php:173
184
+ #, fuzzy
185
+ msgid "Online User Guide"
186
+ msgstr "Aggiorna Utente"
187
+
188
+ #: admin/dialogs.php:174
189
+ msgid "FAQs"
190
+ msgstr ""
191
+
192
+ #: admin/dialogs.php:181
193
+ #, fuzzy
194
+ msgid "Thank you for using WP-Members"
195
+ msgstr "Grazie per utilizzare WP-Members! Si sta usando la versione %s"
196
+
197
+ #: admin/dialogs.php:182
198
+ msgid "A plugin developed by"
199
+ msgstr ""
200
+
201
+ #: admin/dialogs.php:183
202
+ msgid "Follow"
203
+ msgstr "Segui"
204
+
205
+ #: admin/dialogs.php:200 admin/dialogs.php:204
206
+ msgid "Latest from RocketGeek"
207
+ msgstr ""
208
+
209
+ #: admin/dialogs.php:221 admin/dialogs.php:234
210
+ msgid "Latest from ButlerBlog"
211
+ msgstr ""
212
+
213
+ #: admin/post.php:36 admin/post.php:38
214
+ #, fuzzy
215
+ msgid "Block"
216
+ msgstr "Preimposta Blocco Articoli "
217
+
218
+ #: admin/post.php:37 admin/post.php:39
219
+ msgid "Unblock"
220
+ msgstr ""
221
+
222
+ #: admin/post.php:120
223
+ #, fuzzy, php-format
224
+ msgid "%s posts %sed."
225
+ msgstr "Preimposta Blocco Articoli "
226
+
227
+ #: admin/post.php:138
228
+ #, fuzzy
229
+ msgid "Post Restriction"
230
+ msgstr "Nuova Registrazione"
231
+
232
+ #: admin/post.php:145
233
+ #, fuzzy
234
+ msgid "Page Restriction"
235
+ msgstr "Nuova Registrazione"
236
+
237
+ #: admin/post.php:263 admin/post.php:295
238
+ #, fuzzy
239
+ msgid "Unblocked?"
240
+ msgstr ""
241
+ "Nota: Gli Articoli possono essere bloccati o sbloccati individualmente "
242
+ "durante la composizione."
243
+
244
+ #: admin/post.php:263 admin/post.php:295
245
+ #, fuzzy
246
+ msgid "Blocked?"
247
+ msgstr ""
248
+ "Nota: Gli Articoli possono essere bloccati o sbloccati individualmente "
249
+ "durante la composizione."
250
+
251
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
252
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
253
+ msgid "Need help?"
254
+ msgstr ""
255
+
256
+ #: admin/tab-captcha.php:46
257
+ msgid "Manage reCAPTCHA Options"
258
+ msgstr "Gestisci le opzioni reCAPTCHA"
259
+
260
+ #: admin/tab-captcha.php:60
261
+ msgid ""
262
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
263
+ "while blocking spam on your blog."
264
+ msgstr "reCAPTCHA "
265
+
266
+ #: admin/tab-captcha.php:61
267
+ #, fuzzy, php-format
268
+ msgid ""
269
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
270
+ "that they are a human. This verifies that they are not a spambot while also "
271
+ "correcting the automatic scans of old books. So you get less spam, and the "
272
+ "world gets accurately digitized books. Everybody wins! For details, visit "
273
+ "the %s reCAPTCHA website%s"
274
+ msgstr ""
275
+ "reCAPTCHA chiede all'utente di riscriveredue parole precedemente "
276
+ "digitalizate da libri e altri scritti, per poter dimostrare la reale "
277
+ "presenza di un utente. Questo permette non solo di evitare lo SPAM eseguito "
278
+ "da programmi automatici, ma anche di migliorare la digitalizzazione di libri "
279
+ "e antichi scritti. Per maggiori dettagli visitate il sito %s reCAPTCHA %"
280
+
281
+ #: admin/tab-captcha.php:66
282
+ msgid "reCAPTCHA Keys"
283
+ msgstr "Chiavi reCAPTCHA"
284
+
285
+ #: admin/tab-captcha.php:68
286
+ #, php-format
287
+ msgid ""
288
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
289
+ "key. You can sign up for a %s free reCAPTCHA key%s"
290
+ msgstr ""
291
+ "reCAPTCHA richiede delle chiavi API che sono due: \"chiave pubblica\" e \" "
292
+ "chiave privata\". Per ottenerle ci si può registrare al sito reCAPTCHA per "
293
+ "ottenre le %s free reCAPTCHA key%s"
294
+
295
+ #: admin/tab-captcha.php:69
296
+ msgid "Public Key"
297
+ msgstr "Chiave Pubblica"
298
+
299
+ #: admin/tab-captcha.php:70
300
+ msgid "Private Key"
301
+ msgstr "Chiave Privata"
302
+
303
+ #: admin/tab-captcha.php:74
304
+ msgid "Choose Theme"
305
+ msgstr "Scegli Tema"
306
+
307
+ #: admin/tab-captcha.php:77
308
+ msgid "Red"
309
+ msgstr "Rosso"
310
+
311
+ #: admin/tab-captcha.php:78
312
+ msgid "White"
313
+ msgstr "Bianco"
314
+
315
+ #: admin/tab-captcha.php:79
316
+ msgid "Black Glass"
317
+ msgstr "Vetro"
318
+
319
+ #: admin/tab-captcha.php:80
320
+ msgid "Clean"
321
+ msgstr "Chiaro"
322
+
323
+ #: admin/tab-captcha.php:112
324
+ #, fuzzy
325
+ msgid "Characters for image"
326
+ msgstr "Tipo di Campo"
327
+
328
+ #: admin/tab-captcha.php:116
329
+ #, fuzzy
330
+ msgid "Number of characters"
331
+ msgstr "Mostra Estratto"
332
+
333
+ #: admin/tab-captcha.php:120
334
+ #, fuzzy
335
+ msgid "Image dimensions"
336
+ msgstr "Tipo di Campo"
337
+
338
+ #: admin/tab-captcha.php:124
339
+ msgid "Font color of characters"
340
+ msgstr ""
341
+
342
+ #: admin/tab-captcha.php:128
343
+ #, fuzzy
344
+ msgid "Background color of image"
345
+ msgstr "Tipo di Campo"
346
+
347
+ #: admin/tab-captcha.php:132
348
+ msgid "Font size"
349
+ msgstr ""
350
+
351
+ #: admin/tab-captcha.php:136
352
+ msgid "Width between characters"
353
+ msgstr ""
354
+
355
+ #: admin/tab-captcha.php:140
356
+ #, fuzzy
357
+ msgid "Image type"
358
+ msgstr "Tipo di Campo"
359
+
360
+ #: admin/tab-captcha.php:154
361
+ msgid ""
362
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
363
+ "installed and activated."
364
+ msgstr ""
365
+
366
+ #: admin/tab-captcha.php:166
367
+ #, fuzzy
368
+ msgid "Update CAPTCHA Settings"
369
+ msgstr "Aggiorna impostazioni reCAPTCHA"
370
+
371
+ #: admin/tab-captcha.php:230
372
+ #, fuzzy
373
+ msgid "CAPTCHA was updated for WP-Members"
374
+ msgstr "reCAPTCHA é stato aggiornato per WP_Members"
375
+
376
+ #: admin/tab-dialogs.php:29
377
+ msgid "Restricted post (or page), displays above the login/registration form"
378
+ msgstr ""
379
+ "Articolo Riservato ( o Pagina), mostra sopra i campi di accesso/"
380
+ "registrazione."
381
+
382
+ #: admin/tab-dialogs.php:30
383
+ msgid "Username is taken"
384
+ msgstr "Il nome é già presente"
385
+
386
+ #: admin/tab-dialogs.php:31
387
+ msgid "Email is registered"
388
+ msgstr "Questa email é già presente"
389
+
390
+ #: admin/tab-dialogs.php:32
391
+ msgid "Registration completed"
392
+ msgstr "Registrazione comletata."
393
+
394
+ #: admin/tab-dialogs.php:33
395
+ msgid "User update"
396
+ msgstr "Aggiorna Utente"
397
+
398
+ #: admin/tab-dialogs.php:34
399
+ msgid "Passwords did not match"
400
+ msgstr "La Password non corrisponde."
401
+
402
+ #: admin/tab-dialogs.php:35
403
+ msgid "Password changes"
404
+ msgstr "Cambio Password"
405
+
406
+ #: admin/tab-dialogs.php:36
407
+ msgid "Username or email do not exist when trying to reset forgotten password"
408
+ msgstr ""
409
+ "Cercando di cambiare la ppassword dimenticata, non esiste il nome utente o "
410
+ "la passord."
411
+
412
+ #: admin/tab-dialogs.php:37
413
+ msgid "Password reset"
414
+ msgstr "Azzera la password"
415
+
416
+ #: admin/tab-dialogs.php:54
417
+ msgid "Dialogs and Error Messages"
418
+ msgstr "Dialoghi e Messaggi di Errore"
419
+
420
+ #: admin/tab-dialogs.php:56
421
+ #, php-format
422
+ msgid ""
423
+ "You can customize the text for dialogs and error messages. Simple HTML is "
424
+ "allowed %s etc."
425
+ msgstr ""
426
+ "Puoi personalizzare il testo dei dialoghi e dei messaggi di errore.\n"
427
+ "Si può usare codice HTML %s etc."
428
+
429
+ #: admin/tab-dialogs.php:69
430
+ msgid "Terms of Service (TOS)"
431
+ msgstr "Condizioni di Servizio (TOS)"
432
+
433
+ #: admin/tab-dialogs.php:76
434
+ msgid "Update Dialogs"
435
+ msgstr "Aggiorna Dialoghi"
436
+
437
+ #: admin/tab-dialogs.php:115
438
+ msgid "WP-Members dialogs were updated"
439
+ msgstr "I Dialloghi WP-Members sono stati aggiornati"
440
+
441
+ #: admin/tab-emails.php:30
442
+ msgid "New Registration"
443
+ msgstr "Nuova Registrazione"
444
+
445
+ #: admin/tab-emails.php:34
446
+ msgid "Registration is Moderated"
447
+ msgstr "La registrazione é Moderata"
448
+
449
+ #: admin/tab-emails.php:35
450
+ msgid "Registration is Moderated, User is Approved"
451
+ msgstr "La registrazione é Moderata. L'Utente é Approvato."
452
+
453
+ #: admin/tab-emails.php:40
454
+ msgid "Password Reset"
455
+ msgstr "Azzera la Password"
456
+
457
+ #: admin/tab-emails.php:45
458
+ msgid "Admin Notification"
459
+ msgstr "Notica Amministratore"
460
+
461
+ #: admin/tab-emails.php:50
462
+ msgid "Email Signature"
463
+ msgstr "Firma Email"
464
+
465
+ #: admin/tab-emails.php:57
466
+ msgid "Email Messages"
467
+ msgstr "Messaggi Email"
468
+
469
+ #: admin/tab-emails.php:60
470
+ msgid "You can customize the content of the emails sent by the plugin."
471
+ msgstr "Si può personalizzare il contenuto delle emails mandate dal Plugin."
472
+
473
+ #: admin/tab-emails.php:62
474
+ msgid "A list of shortcodes is available here."
475
+ msgstr "Una lista di scorciatoie da tastiera è presente qui."
476
+
477
+ #: admin/tab-emails.php:69
478
+ msgid "Set a custom email address"
479
+ msgstr "Imposta un indirizzo email personale."
480
+
481
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
482
+ msgid "(optional)"
483
+ msgstr "(opzionale)"
484
+
485
+ #: admin/tab-emails.php:73
486
+ msgid "Set a custom email name"
487
+ msgstr "Imposta una email personalizzata"
488
+
489
+ #: admin/tab-emails.php:84
490
+ msgid "Subject"
491
+ msgstr "Oggetto"
492
+
493
+ #: admin/tab-emails.php:88
494
+ msgid "Body"
495
+ msgstr "Corpo"
496
+
497
+ #: admin/tab-emails.php:105
498
+ msgid "Update Emails"
499
+ msgstr "Aggiorna Emails"
500
+
501
+ #: admin/tab-emails.php:161
502
+ msgid "WP-Members emails were updated"
503
+ msgstr "Le email di WP_Members sono state aggiornate"
504
+
505
+ #: admin/tab-fields.php:166
506
+ msgid "WP-Members fields were updated"
507
+ msgstr "I Campi WP-Members sono stati aggiornati"
508
+
509
+ #: admin/tab-fields.php:176
510
+ msgid "Field Label is required for adding a new field. Nothing was updated."
511
+ msgstr ""
512
+ "Il nome del Campo é obbligatorio per poterne aggiungere uno nuovo. Nessun "
513
+ "aggiornamento eseguito."
514
+
515
+ #: admin/tab-fields.php:177
516
+ msgid "Option Name is required for adding a new field. Nothing was updated."
517
+ msgstr ""
518
+ "Il nome della Opzione é obbligatorio per poterne aggiungere uno nuovo. "
519
+ "Nessun aggiornamento eseguito."
520
+
521
+ #: admin/tab-fields.php:184
522
+ msgid "A field with that option name already exists"
523
+ msgstr ""
524
+
525
+ #: admin/tab-fields.php:201
526
+ #, fuzzy
527
+ msgid "Checked value is required for checkboxes. Nothing was updated."
528
+ msgstr ""
529
+ "Il nome del Campo é obbligatorio per poterne aggiungere uno nuovo. Nessun "
530
+ "aggiornamento eseguito."
531
+
532
+ #: admin/tab-fields.php:223
533
+ #, fuzzy
534
+ msgid "field was added"
535
+ msgstr "ENome del campo"
536
+
537
+ #: admin/tab-fields.php:241
538
+ #, fuzzy
539
+ msgid "field was updated"
540
+ msgstr "I Campi WP-Members sono stati aggiornati"
541
+
542
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
543
+ #, fuzzy
544
+ msgid "Edit Field"
545
+ msgstr "Modifica le tue informazioni"
546
+
547
+ #: admin/tab-fields.php:289
548
+ #, fuzzy
549
+ msgid "Add a Field"
550
+ msgstr "Aggiungi/Rimuovi"
551
+
552
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
553
+ msgid "Field Label"
554
+ msgstr "ENome del campo"
555
+
556
+ #: admin/tab-fields.php:297
557
+ msgid "The name of the field as it will be displayed to the user."
558
+ msgstr ""
559
+
560
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
561
+ msgid "Option Name"
562
+ msgstr "Nome Opzione"
563
+
564
+ #: admin/tab-fields.php:306
565
+ msgid ""
566
+ "The database meta value for the field. It must be unique and contain no "
567
+ "spaces (underscores are ok)."
568
+ msgstr ""
569
+
570
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
571
+ msgid "Field Type"
572
+ msgstr "Tipo di Campo"
573
+
574
+ #: admin/tab-fields.php:316
575
+ msgid "text"
576
+ msgstr "testo"
577
+
578
+ #: admin/tab-fields.php:317
579
+ msgid "textarea"
580
+ msgstr "area di testo"
581
+
582
+ #: admin/tab-fields.php:318
583
+ msgid "checkbox"
584
+ msgstr "casella"
585
+
586
+ #: admin/tab-fields.php:319
587
+ msgid "dropdown"
588
+ msgstr "menù a tendina"
589
+
590
+ #: admin/tab-fields.php:320
591
+ msgid "password"
592
+ msgstr "password"
593
+
594
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
595
+ msgid "Display?"
596
+ msgstr "Mostrare?"
597
+
598
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
599
+ msgid "Required?"
600
+ msgstr "Obbligatorio?"
601
+
602
+ #: admin/tab-fields.php:334
603
+ #, fuzzy
604
+ msgid "Additional information for checkbox fields"
605
+ msgstr "Campi Aggiuntivi WP-Members"
606
+
607
+ #: admin/tab-fields.php:337
608
+ #, fuzzy
609
+ msgid "Checked by default?"
610
+ msgstr "Preimpostato?"
611
+
612
+ #: admin/tab-fields.php:341
613
+ #, fuzzy
614
+ msgid "Stored value if checked:"
615
+ msgstr "Preimpostato?"
616
+
617
+ #: admin/tab-fields.php:347
618
+ #, fuzzy
619
+ msgid "Additional information for dropdown fields"
620
+ msgstr "Campi Aggiuntivi WP-Members"
621
+
622
+ #: admin/tab-fields.php:350
623
+ msgid "For dropdown, array of values:"
624
+ msgstr "Per menù a tendina, serie di valori:"
625
+
626
+ #: admin/tab-fields.php:375
627
+ msgid "Options should be Option Name|option_value,"
628
+ msgstr "Opzioni deve essere: Nome Opzione/valore_opzione"
629
+
630
+ #: admin/tab-fields.php:379
631
+ msgid "Visit plugin site for more information"
632
+ msgstr "Visita il sito del Plugin per maggiori informazioni"
633
+
634
+ #: admin/tab-fields.php:385
635
+ #, fuzzy
636
+ msgid "Add Field"
637
+ msgstr "Aggiungi/Rimuovi"
638
+
639
+ #: admin/tab-fields.php:407
640
+ msgid "Manage Fields"
641
+ msgstr "Gestisci i Campi"
642
+
643
+ #: admin/tab-fields.php:409
644
+ msgid ""
645
+ "Determine which fields will display and which are required. This includes "
646
+ "all fields, both native WP fields and WP-Members custom fields."
647
+ msgstr ""
648
+ "Decidi quali campi saranno mostrati e quali sono obbligatori.\n"
649
+ "Questo include tutti i campi. Sia quelli nativi di WordPress\n"
650
+ "che quelli personalizzati di WP-Members"
651
+
652
+ #: admin/tab-fields.php:410
653
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
654
+ msgstr ""
655
+ "(Nota: il campo Email é sempre obbligatorio e non può essere modificato)"
656
+
657
+ #: admin/tab-fields.php:415
658
+ msgid "Add/Delete"
659
+ msgstr "Aggiungi/Rimuovi"
660
+
661
+ #: admin/tab-fields.php:421
662
+ msgid "Checked?"
663
+ msgstr "Preimpostato?"
664
+
665
+ #: admin/tab-fields.php:423
666
+ #, fuzzy
667
+ msgid "Users Screen"
668
+ msgstr "Esporta"
669
+
670
+ #: admin/tab-fields.php:435
671
+ msgid "Delete"
672
+ msgstr "Cancella"
673
+
674
+ #: admin/tab-fields.php:447
675
+ msgid "(Email cannot be removed)"
676
+ msgstr "(il Campo email non può essere rimosso)"
677
+
678
+ #: admin/tab-fields.php:467
679
+ #, fuzzy
680
+ msgid "Registration Date"
681
+ msgstr "Registrazione comletata."
682
+
683
+ #: admin/tab-fields.php:470
684
+ #, fuzzy
685
+ msgid "native"
686
+ msgstr ""
687
+ "Decidi quali campi saranno mostrati e quali sono obbligatori.\n"
688
+ "Questo include tutti i campi. Sia quelli nativi di WordPress\n"
689
+ "che quelli personalizzati di WP-Members"
690
+
691
+ #: admin/tab-fields.php:480
692
+ #, fuzzy
693
+ msgid "Active"
694
+ msgstr "Attiva"
695
+
696
+ #: admin/tab-fields.php:492
697
+ #, fuzzy
698
+ msgid "Registration IP"
699
+ msgstr "IP della registrazione"
700
+
701
+ #: admin/tab-fields.php:527
702
+ msgid "Update Fields"
703
+ msgstr "Aggiorna Campi"
704
+
705
+ #: admin/tab-options.php:48
706
+ msgid "Manage Options"
707
+ msgstr "Gestisci Opzioni"
708
+
709
+ #: admin/tab-options.php:54
710
+ msgid "Block Posts by default"
711
+ msgstr "Preimposta Blocco Articoli "
712
+
713
+ #: admin/tab-options.php:54
714
+ msgid ""
715
+ "Note: Posts can still be individually blocked or unblocked at the article "
716
+ "level"
717
+ msgstr ""
718
+ "Nota: Gli Articoli possono essere bloccati o sbloccati individualmente "
719
+ "durante la composizione."
720
+
721
+ #: admin/tab-options.php:55
722
+ msgid "Block Pages by default"
723
+ msgstr "Preimosta Blocco Pagine"
724
+
725
+ #: admin/tab-options.php:55
726
+ msgid ""
727
+ "Note: Pages can still be individually blocked or unblocked at the article "
728
+ "level"
729
+ msgstr ""
730
+ "Nota:le Pagine possono essere bloccate o sbloccate individualmente durante "
731
+ "la composizione."
732
+
733
+ #: admin/tab-options.php:56
734
+ msgid "Show excerpts"
735
+ msgstr "Mostra Estratto"
736
+
737
+ #: admin/tab-options.php:56
738
+ msgid ""
739
+ "Shows excerpted content above the login/registration on both Posts and Pages"
740
+ msgstr ""
741
+ "Mostra un estratto del contenuto sopra i campi di registrazione/accesso sia "
742
+ "su Pagine che Articoli"
743
+
744
+ #: admin/tab-options.php:57
745
+ msgid "Notify admin"
746
+ msgstr "Notifica all'Amministratore"
747
+
748
+ #: admin/tab-options.php:57
749
+ #, fuzzy, php-format
750
+ msgid "Notify %s for each new registration? %s"
751
+ msgstr "Manda una email per ogni nuova registrazione?"
752
+
753
+ #: admin/tab-options.php:58
754
+ msgid "Moderate registration"
755
+ msgstr "Modera la registrazione"
756
+
757
+ #: admin/tab-options.php:58
758
+ msgid "Holds new registrations for admin approval"
759
+ msgstr "Blocca la registrazione sino all'approvazione dell'amministratore"
760
+
761
+ #: admin/tab-options.php:91
762
+ #, fuzzy
763
+ msgid "Enable CAPTCHA"
764
+ msgstr "Usa CAPTCHA"
765
+
766
+ #: admin/tab-options.php:59
767
+ msgid "Turns on CAPTCHA for registration"
768
+ msgstr "Attiva reCAPTCHA per la registrazione"
769
+
770
+ #: admin/tab-options.php:60
771
+ #, fuzzy
772
+ msgid "Hide registration"
773
+ msgstr "Registrazione comletata."
774
+
775
+ #: admin/tab-options.php:60
776
+ msgid "Removes the registration form from blocked content"
777
+ msgstr ""
778
+
779
+ #: admin/tab-options.php:62
780
+ msgid "Time-based expiration"
781
+ msgstr "Scadenza a tempo"
782
+
783
+ #: admin/tab-options.php:62
784
+ msgid "Allows for access to expire"
785
+ msgstr "Consenti scadenza accesso"
786
+
787
+ #: admin/tab-options.php:63
788
+ msgid "Trial period"
789
+ msgstr "Periodo di prova"
790
+
791
+ #: admin/tab-options.php:63
792
+ msgid "Allows for a trial period"
793
+ msgstr "Consenti per un periodo di prova"
794
+
795
+ #: admin/tab-options.php:64
796
+ msgid "Ignore warning messages"
797
+ msgstr "Ignora i messaggi di attenzione"
798
+
799
+ #: admin/tab-options.php:64
800
+ msgid "Ignores WP-Members warning messages in the admin panel"
801
+ msgstr ""
802
+ "Ignora i messaggi di attenzione di WP-Members nel pannello di amministrazione"
803
+
804
+ #: admin/tab-options.php:81
805
+ msgid "Attribution"
806
+ msgstr ""
807
+
808
+ #: admin/tab-options.php:83
809
+ msgid ""
810
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
811
+ msgstr ""
812
+
813
+ #: admin/tab-options.php:87
814
+ #, fuzzy
815
+ msgid "Auto Excerpt:"
816
+ msgstr "Mostra Estratto"
817
+
818
+ #: admin/tab-options.php:88
819
+ #, fuzzy
820
+ msgid "Number of words in excerpt:"
821
+ msgstr "Mostra Estratto"
822
+
823
+ #: admin/tab-options.php:88 admin/tab-options.php:108
824
+ #: admin/tab-options.php:118 admin/tab-options.php:132
825
+ msgid "Optional"
826
+ msgstr "Optionale"
827
+
828
+ #: admin/tab-options.php:88
829
+ #, fuzzy
830
+ msgid "Automatically creates an excerpt"
831
+ msgstr "Mostra Estratto"
832
+
833
+ #: admin/tab-options.php:103
834
+ #, fuzzy
835
+ msgid "User Profile Page:"
836
+ msgstr "Aggiorna Utente"
837
+
838
+ #: admin/tab-options.php:106
839
+ msgid "For creating a forgot password link in the login form"
840
+ msgstr ""
841
+
842
+ #: admin/tab-options.php:113
843
+ #, fuzzy
844
+ msgid "Register Page:"
845
+ msgstr "Indirizzo della pagina di registrazione"
846
+
847
+ #: admin/tab-options.php:116
848
+ msgid "For creating a register link in the login form"
849
+ msgstr ""
850
+
851
+ #: admin/tab-options.php:126
852
+ msgid "Select a stylesheet or specify a custom stylesheet below"
853
+ msgstr ""
854
+
855
+ #: admin/tab-options.php:131
856
+ #, fuzzy
857
+ msgid "Custom Stylesheet:"
858
+ msgstr "Personalizzato"
859
+
860
+ #: admin/tab-options.php:136
861
+ msgid "Update Settings"
862
+ msgstr "Aggiorna Impostazioni"
863
+
864
+ #: admin/tab-options.php:246
865
+ msgid "WP-Members settings were updated"
866
+ msgstr "Le impostazioni di WP-Members sono state aggiornate"
867
+
868
+ #: admin/tab-options.php:296
869
+ #, fuzzy
870
+ msgid "Select a page"
871
+ msgstr "Nuova Registrazione"
872
+
873
+ #: admin/tab-options.php:304
874
+ msgid "USE CUSTOM URL BELOW"
875
+ msgstr ""
876
+
877
+ #: admin/user-export.php:57 admin/user-export.php:172
878
+ msgid "Activated?"
879
+ msgstr "Attivato?"
880
+
881
+ #: admin/user-export.php:61 admin/user-export.php:175
882
+ msgid "Subscription"
883
+ msgstr "Sottoscrizione"
884
+
885
+ #: admin/user-export.php:61 admin/user-export.php:175
886
+ msgid "Expires"
887
+ msgstr "Scadenza"
888
+
889
+ #: admin/user-export.php:64 admin/user-export.php:178
890
+ msgid "Registered"
891
+ msgstr "Registrato"
892
+
893
+ #: admin/user-export.php:65 admin/user-export.php:179
894
+ msgid "IP"
895
+ msgstr "IP"
896
+
897
+ #: admin/user-profile.php:46
898
+ msgid "WP-Members Additional Fields"
899
+ msgstr "Campi Aggiuntivi WP-Members"
900
+
901
+ #: admin/user-profile.php:66 native-registration.php:36
902
+ #: native-registration.php:159 users.php:62
903
+ msgid "(required)"
904
+ msgstr "Obbligatorio?"
905
+
906
+ #: admin/user-profile.php:98
907
+ msgid "Activate this user?"
908
+ msgstr "Attivare questo Utente?"
909
+
910
+ #: admin/user-profile.php:103
911
+ msgid "Reactivate this user?"
912
+ msgstr "Riattivare questo utente?"
913
+
914
+ #: admin/user-profile.php:108
915
+ msgid "Deactivate this user?"
916
+ msgstr "Disattivare questo utente?"
917
+
918
+ #: admin/user-profile.php:129
919
+ msgid "IP @ registration"
920
+ msgstr "IP della registrazione"
921
+
922
+ #: admin/users.php:45 admin/users.php:49
923
+ msgid "Export"
924
+ msgstr "Esporta"
925
+
926
+ #: admin/users.php:50 admin/users.php:91
927
+ #, fuzzy
928
+ msgid "Export All Users"
929
+ msgstr "Esporta"
930
+
931
+ #: forms.php:95
932
+ #, fuzzy
933
+ msgid "Existing Users Log In"
934
+ msgstr "Entra"
935
+
936
+ #: forms.php:161 wp-members-dialogs.php:192
937
+ msgid "Change Password"
938
+ msgstr "Cambia password"
939
+
940
+ #: forms.php:163
941
+ msgid "Update Password"
942
+ msgstr "Aggiorna la password"
943
+
944
+ #: forms.php:227
945
+ msgid "Reset Forgotten Password"
946
+ msgstr "Azzera la password dimenticata"
947
+
948
+ #: forms.php:403
949
+ msgid "Forgot password?"
950
+ msgstr "Dimenticata la password?"
951
+
952
+ #: forms.php:403
953
+ msgid "Click here to reset"
954
+ msgstr "Premi qui per azzerare"
955
+
956
+ #: forms.php:418
957
+ msgid "New User?"
958
+ msgstr "Nuovo utente?"
959
+
960
+ #: forms.php:418
961
+ msgid "Click here to register"
962
+ msgstr "Premi qui per la registrazione"
963
+
964
+ #: forms.php:515
965
+ msgid "Required field"
966
+ msgstr "Campo obbligatorio"
967
+
968
+ #: forms.php:521
969
+ #, fuzzy
970
+ msgid "Reset Form"
971
+ msgstr "Si é verificato un errore nel campo CAPTCHA"
972
+
973
+ #: forms.php:523
974
+ #, fuzzy
975
+ msgid "Update Profile"
976
+ msgstr "Aggiorna Utente"
977
+
978
+ #: forms.php:561
979
+ msgid "Choose a Username"
980
+ msgstr "Scegli un nome"
981
+
982
+ #: forms.php:683 native-registration.php:65
983
+ #, php-format
984
+ msgid "Please indicate that you agree to the %s TOS %s"
985
+ msgstr "Indicare l'accettazione delle condizioni di servizio %s TOS %s"
986
+
987
+ #: forms.php:852
988
+ #, fuzzy
989
+ msgid "New User Registration"
990
+ msgstr "Nuovo utente?"
991
+
992
+ #: forms.php:1018
993
+ msgid "Input the code:"
994
+ msgstr ""
995
+
996
+ #: users.php:38
997
+ #, fuzzy
998
+ msgid "Additional Information"
999
+ msgstr "Campi Aggiuntivi WP-Members"
1000
+
1001
+ #: wp-members-core.php:118 wp-members-core.php:245
1002
+ msgid "There was an error with the CAPTCHA form."
1003
+ msgstr "Si é verificato un errore nel campo CAPTCHA"
1004
+
1005
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1006
+ msgid "Edit Your Information"
1007
+ msgstr "Modifica le tue informazioni"
1008
+
1009
+ #: wp-members-core.php:544
1010
+ msgid "<strong>ERROR</strong>: User has not been activated."
1011
+ msgstr "<strong>ERROR</strong>: L'utente non è stato attivato"
1012
+
1013
+ #: wp-members-core.php:903 wp-members-register.php:93
1014
+ #, php-format
1015
+ msgid "Sorry, %s is a required field."
1016
+ msgstr "Spiacente,%s è un campo obbligatorio."
1017
+
1018
+ #: wp-members-dialogs.php:42
1019
+ msgid "Login Failed!"
1020
+ msgstr "Accesso fallito!"
1021
+
1022
+ #: wp-members-dialogs.php:45
1023
+ msgid "You entered an invalid username or password."
1024
+ msgstr "Nome o password sbagliata"
1025
+
1026
+ #: wp-members-dialogs.php:47
1027
+ msgid "Click here to continue."
1028
+ msgstr "Premi qui per continuare"
1029
+
1030
+ #: wp-members-dialogs.php:191
1031
+ msgid "Edit My Information"
1032
+ msgstr "Modifica le informazioni"
1033
+
1034
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1035
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1036
+ #: wp-members-sidebar.php:246
1037
+ #, php-format
1038
+ msgid "You are logged in as %s"
1039
+ msgstr "Sei connesso come %s"
1040
+
1041
+ #: wp-members-dialogs.php:208
1042
+ #, fuzzy
1043
+ msgid "Click to log out."
1044
+ msgstr "Entra"
1045
+
1046
+ #: wp-members-dialogs.php:209
1047
+ msgid "Begin using the site."
1048
+ msgstr "Inizia a usare il sito"
1049
+
1050
+ #: wp-members-dialogs.php:225
1051
+ #, fuzzy
1052
+ msgid "Click to log out"
1053
+ msgstr "Entra"
1054
+
1055
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1056
+ #, fuzzy
1057
+ msgid "click to log out"
1058
+ msgstr "Entra"
1059
+
1060
+ #: wp-members-dialogs.php:271
1061
+ msgid "Password fields cannot be empty"
1062
+ msgstr "Il campo Password non può essere vuoto"
1063
+
1064
+ #: wp-members-register.php:51
1065
+ #, fuzzy
1066
+ msgid "There was an error processing the form."
1067
+ msgstr "Si é verificato un errore nel campo CAPTCHA"
1068
+
1069
+ #: wp-members-register.php:110
1070
+ msgid "Sorry, username is a required field"
1071
+ msgstr "Spiacente, il nome è un campo obbligatorio."
1072
+
1073
+ #: wp-members-register.php:111
1074
+ msgid "The username cannot include non-alphanumeric characters."
1075
+ msgstr "Il nome non può includere caratteri non alfanumerici."
1076
+
1077
+ #: wp-members-register.php:112 wp-members-register.php:282
1078
+ msgid "You must enter a valid email address."
1079
+ msgstr "Si deve inserire un pezzo email valido."
1080
+
1081
+ #: wp-members-register.php:119
1082
+ #, fuzzy
1083
+ msgid "Passwords did not match."
1084
+ msgstr "La Password non corrisponde."
1085
+
1086
+ #: wp-members-register.php:120 wp-members-register.php:286
1087
+ #, fuzzy
1088
+ msgid "Emails did not match."
1089
+ msgstr "La Password non corrisponde."
1090
+
1091
+ #: wp-members-register.php:127
1092
+ msgid "You must complete the CAPTCHA form."
1093
+ msgstr "Il campo CAPTCHA deve essere completo."
1094
+
1095
+ #: wp-members-register.php:377
1096
+ msgid "We were unable to validate the public key."
1097
+ msgstr "Non abbiamo potuto convalidare la chiave pubblica."
1098
+
1099
+ #: wp-members-register.php:381
1100
+ msgid "We were unable to validate the private key."
1101
+ msgstr "Non abbiamo potuto convalidare la chiave privata."
1102
+
1103
+ #: wp-members-register.php:385
1104
+ msgid "The challenge parameter of the verify script was incorrect."
1105
+ msgstr "Il parametro passato per la verifica dello script è sbagliato."
1106
+
1107
+ #: wp-members-register.php:389
1108
+ msgid "The CAPTCHA solution was incorrect."
1109
+ msgstr "Il CAPTCHA inserito sbagliato."
1110
+
1111
+ #: wp-members-register.php:393
1112
+ msgid "The parameters to verify were incorrect"
1113
+ msgstr "I parametri per la verifica sono sbagliati."
1114
+
1115
+ #: wp-members-register.php:397
1116
+ msgid ""
1117
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1118
+ msgstr ""
1119
+ "Le chiavi API reCAPTCHA sono legate a un dominio specifico per motivi di "
1120
+ "sicurezza."
1121
+
1122
+ #: wp-members-register.php:401
1123
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1124
+ msgstr "Il server reCAPTCHA non risponde. Per favore riprova."
1125
+
1126
+ #: wp-members-register.php:405
1127
+ msgid "You have entered an incorrect code value. Please try again."
1128
+ msgstr ""
1129
+
1130
+ #: wp-members-sidebar.php:117
1131
+ msgid "Login Failed!<br />You entered an invalid username or password."
1132
+ msgstr ""
1133
+ "Accesso fallito!<br /> è stato immesso un nome o una password sbagliata."
1134
+
1135
+ #: wp-members-sidebar.php:118
1136
+ #, fuzzy
1137
+ msgid "You are not logged in."
1138
+ msgstr "Sei connesso come %s"
1139
+
1140
+ #: wp-members-sidebar.php:169
1141
+ msgid "log in"
1142
+ msgstr "Accedi"
1143
+
1144
+ #: wp-members-sidebar.php:180
1145
+ msgid "Forgot?"
1146
+ msgstr "Dimenticato?"
1147
+
1148
+ #: wp-members-sidebar.php:247
1149
+ msgid "click here to log out"
1150
+ msgstr "Premi qui per disconnettere"
1151
+
1152
+ #: wp-members-sidebar.php:279
1153
+ msgid "Displays the WP-Members sidebar login."
1154
+ msgstr ""
1155
+
1156
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1157
+ msgid "Login Status"
1158
+ msgstr "Stato della connessione"
1159
+
1160
+ #: wp-members-sidebar.php:299
1161
+ msgid "Title:"
1162
+ msgstr "Titolo"
1163
+
1164
+ #: wp-members-tos.php:24
1165
+ msgid "Terms of Service"
1166
+ msgstr "Condizioni di Servizio"
1167
+
1168
+ #: wp-members-tos.php:36
1169
+ #, php-format
1170
+ msgid "%sclose%s"
1171
+ msgstr "%schiudi%s"
1172
+
1173
+ #: wp-members-tos.php:38
1174
+ #, php-format
1175
+ msgid "%sprint%s"
1176
+ msgstr "%sstampa%s"
1177
+
1178
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1179
+ #: Strings wp-members-install.php:49
1180
+ msgid "First Name"
1181
+ msgstr "Nome"
1182
+
1183
+ #: wp-members-install.php:50
1184
+ msgid "Last Name"
1185
+ msgstr "Cognome"
1186
+
1187
+ #: wp-members-install.php:51
1188
+ msgid "Address 1"
1189
+ msgstr "Indirizzo 1"
1190
+
1191
+ #: wp-members-install.php:52
1192
+ msgid "Address 2"
1193
+ msgstr "Indirizzo 2"
1194
+
1195
+ #: wp-members-install.php:53
1196
+ msgid "City"
1197
+ msgstr "Città"
1198
+
1199
+ #: wp-members-install.php:54
1200
+ msgid "State"
1201
+ msgstr "Regione"
1202
+
1203
+ #: wp-members-install.php:55
1204
+ msgid "Zip"
1205
+ msgstr "CAP"
1206
+
1207
+ #: wp-members-install.php:56
1208
+ msgid "Country"
1209
+ msgstr "Nazione"
1210
+
1211
+ #: wp-members-install.php:57
1212
+ msgid "Day Phone"
1213
+ msgstr "Telefono"
1214
+
1215
+ #: wp-members-install.php:59
1216
+ msgid "Website"
1217
+ msgstr "Sito WEB"
1218
+
1219
+ #: wp-members-install.php:60
1220
+ msgid "AIM"
1221
+ msgstr "AIM"
1222
+
1223
+ #: wp-members-install.php:61
1224
+ msgid "Yahoo IM"
1225
+ msgstr "Yahoo IM"
1226
+
1227
+ #: wp-members-install.php:62
1228
+ msgid "Jabber/Google Talk"
1229
+ msgstr "Jabber/Google Talk"
1230
+
1231
+ #: wp-members-install.php:63
1232
+ msgid "Biographical Info"
1233
+ msgstr "Biografia"
1234
+
1235
+ #: wp-members-install.php:64 wp-members-install.php:211
1236
+ msgid "TOS"
1237
+ msgstr "TOS ( Condizioni di Servizio)"
1238
+
1239
+ #: Error message dialog strings wp-members-install.php:96
1240
+ #, fuzzy
1241
+ msgid ""
1242
+ "This content is restricted to site members. If you are an existing user, "
1243
+ "please log in. New users may register below."
1244
+ msgstr ""
1245
+ "Questo contenuto é riservato ai soli iscritti. Se sei già registrato esegui "
1246
+ "l'accesso. I nuovi utenti possono registrarsi usando il form sottostante."
1247
+
1248
+ #: wp-members-install.php:97
1249
+ msgid "Sorry, that username is taken, please try another."
1250
+ msgstr "Spiacenti, ma il nome scelto é già in uso. Prova con un altro."
1251
+
1252
+ #: wp-members-install.php:98
1253
+ msgid ""
1254
+ "Sorry, that email address already has an account.<br />Please try another."
1255
+ msgstr ""
1256
+ "Spiacenti, ma l'indirizzo email immesso é già collegato a un account<br/> "
1257
+ "Prova con un altro."
1258
+
1259
+ #: wp-members-install.php:99
1260
+ #, fuzzy
1261
+ msgid ""
1262
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1263
+ "log in using the password that was emailed to you."
1264
+ msgstr ""
1265
+ "Congratulazioni! La registrazione é andata a buon fine.<br /><br /> Si può "
1266
+ "eseguire l'accesso usando la password che é stata inviata all'email."
1267
+
1268
+ #: wp-members-install.php:100
1269
+ msgid "Your information was updated!"
1270
+ msgstr "Le informazioni sono state aggiornate!"
1271
+
1272
+ #: wp-members-install.php:101
1273
+ msgid "Passwords did not match.<br /><br />Please try again."
1274
+ msgstr "le Passwords non coincidono <br /><br /> Riprovare."
1275
+
1276
+ #: wp-members-install.php:102
1277
+ msgid ""
1278
+ "Password successfully changed!<br /><br />You will need to re-login with "
1279
+ "your new password."
1280
+ msgstr ""
1281
+ "La password é stata modificata!<br /><br /> E' necessario rieffettuare "
1282
+ "l'accesso con la nuova password."
1283
+
1284
+ #: wp-members-install.php:103
1285
+ msgid "Either the username or email address do not exist in our records."
1286
+ msgstr "Il nome o l'email non sono presenti nei nostri archivi."
1287
+
1288
+ #: wp-members-install.php:104
1289
+ msgid ""
1290
+ "Password successfully reset!<br /><br />An email containing a new password "
1291
+ "has been sent to the email address on file for your account. You may change "
1292
+ "this random password then re-login with your new password."
1293
+ msgstr ""
1294
+ "La password é stata azzerata!<br /><br /> Una email contenente la nuova "
1295
+ "password é stata inviata all'indirizzo abinato all'account. Si può cambiare "
1296
+ "questa password dopo eseguito l'accesso con la nuova password."
1297
+
1298
+ #~ msgid "Yes"
1299
+ #~ msgstr "Si"
1300
+
1301
+ #~ msgid "WP-Members"
1302
+ #~ msgstr "WP-Members"
1303
+
1304
+ #~ msgid "Custom"
1305
+ #~ msgstr "Personalizzato"
1306
+
1307
+ #, fuzzy
1308
+ #~ msgid "edit"
1309
+ #~ msgstr "Modifica le tue informazioni"
1310
+
1311
+ #, fuzzy
1312
+ #~ msgid "Edit"
1313
+ #~ msgstr "Modifica le tue informazioni"
1314
+
1315
+ #~ msgid "Use reCAPTCHA"
1316
+ #~ msgstr "Usa reCAPTCHA"
1317
+
1318
+ #, fuzzy
1319
+ #~ msgid "Pages"
1320
+ #~ msgstr "Preimosta Blocco Pagine"
1321
+
1322
+ #~ msgid "No"
1323
+ #~ msgstr "No"
1324
+
1325
+ #~ msgid "Activate"
1326
+ #~ msgstr "Attiva"
1327
+
1328
+ #~ msgid "Username"
1329
+ #~ msgstr "Nome Utente"
1330
+
1331
+ #~ msgid "Password"
1332
+ #~ msgstr "Password"
1333
+
1334
+ #~ msgid "Log In"
1335
+ #~ msgstr "Entra"
1336
+
1337
+ #~ msgid "New Password"
1338
+ #~ msgstr "Nuova password"
1339
+
1340
+ #~ msgid "Repeat Password"
1341
+ #~ msgstr "Ripeti la password"
1342
+
1343
+ #~ msgid "Email"
1344
+ #~ msgstr "Email"
1345
+
1346
+ #~ msgid "Reset Password"
1347
+ #~ msgstr "Azzera la password"
1348
+
1349
+ #~ msgid "Remember me"
1350
+ #~ msgstr "Ricordami"
1351
+
1352
+ #~ msgid "Register"
1353
+ #~ msgstr "Registrazione"
1354
+
1355
+ #, fuzzy
1356
+ #~ msgid ""
1357
+ #~ "WP access restriction and user registration. For more information on "
1358
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1359
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1360
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1361
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1362
+ #~ msgstr ""
1363
+ #~ "WP restrizioni di accesso le registrazione utente. Per maggiori "
1364
+ #~ "informazioni e per scaricare la guida utente, visitare <a href=\"http://"
1365
+ #~ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. È "
1366
+ #~ "presente anche Una <a href=\"http://butlerblog.com/wp-members/wp-members-"
1367
+ #~ "quick-start-guide/\"> Guida Rapida </a> .WP-Members(tm) is a trademark of "
1368
+ #~ "butlerblog.com."
1369
+
1370
+ #~ msgid "Turn off registration"
1371
+ #~ msgstr "Blocca le registrazioni"
1372
+
1373
+ #~ msgid "Turns off the registration process, only allows login"
1374
+ #~ msgstr ""
1375
+ #~ "Disattiva le nuove registrazioni e consenti l'accesso solo a utenti "
1376
+ #~ "registrati"
1377
+
1378
+ #~ msgid "Legacy forms"
1379
+ #~ msgstr "Legacy forms"
1380
+
1381
+ #~ msgid ""
1382
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1383
+ #~ "forms)"
1384
+ #~ msgstr "Usa i campi come nelle versioni precedenti alla 2.5"
1385
+
1386
+ #~ msgid "Members Area URL:"
1387
+ #~ msgstr "Indirizzo dell'Area Utenti Registrati"
1388
+
1389
+ #~ msgid "Add"
1390
+ #~ msgstr "Aggiungi"
1391
+
1392
+ #~ msgid "WP-Members expiration periods were updated"
1393
+ #~ msgstr "I periodo di scadenza di WP_Members sono stati aggiornati"
1394
+
1395
+ #~ msgid ""
1396
+ #~ "Settings were saved, but you have required fields that are not set to "
1397
+ #~ "display!"
1398
+ #~ msgstr ""
1399
+ #~ "Impostazioni salvate, ma alcuni campi sono stati impostati per non essere "
1400
+ #~ "mostrati!"
1401
+
1402
+ #~ msgid ""
1403
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1404
+ #~ "fields are validated. However, you should still check that your "
1405
+ #~ "displayed and required fields match up. Mismatched fields are "
1406
+ #~ "highlighted below."
1407
+ #~ msgstr ""
1408
+ #~ "Nota: Questo non provoca alcun errore in quanto solo i campi ostrati "
1409
+ #~ "saranno elaborati. Tuttavia se vuoi rivedere le tue impostazioni, i campi "
1410
+ #~ "obbligatori non mostrati sono in evidenza sotto."
1411
+
1412
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1413
+ #~ msgstr ""
1414
+ #~ "Se trovi utile questo Plugin, considera la possibilità di fare una "
1415
+ #~ "donazione"
1416
+
1417
+ #~ msgid "Subscriptions"
1418
+ #~ msgstr "Sottoscrizioni"
1419
+
1420
+ #~ msgid "PayPal Settings"
1421
+ #~ msgstr "Impostazioni PAYPAL"
1422
+
1423
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1424
+ #~ msgstr ""
1425
+ #~ "Se ritieni utile questo plugin considera la possibilità di fare una %s "
1426
+ #~ "donazione %s"
1427
+
1428
+ #~ msgid "%d users were activated."
1429
+ #~ msgstr "%d utenti sono stati attivati"
1430
+
1431
+ #~ msgid ""
1432
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1433
+ #~ msgstr ""
1434
+ #~ "Utenti pronti per l'esportazione. % premi qui %s per generare e scaricare "
1435
+ #~ "il file in formato CSV."
1436
+
1437
+ #~ msgid "WP-Members Users"
1438
+ #~ msgstr "Utenti WP-Members"
1439
+
1440
+ #~ msgid "Add New"
1441
+ #~ msgstr "Aggiungi Nuovo"
1442
+
1443
+ #~ msgid "No users matched your criteria"
1444
+ #~ msgstr "Nessun corrispondenza"
1445
+
1446
+ #~ msgid "Bulk Actions"
1447
+ #~ msgstr "Azione Massiva"
1448
+
1449
+ #~ msgid "Apply"
1450
+ #~ msgstr "Applica"
1451
+
1452
+ #~ msgid "Indicates a required field"
1453
+ #~ msgstr "Indica un campo obbligatorio"
1454
+
1455
+ #~ msgid "Login"
1456
+ #~ msgstr "Entra"
1457
+
1458
+ #~ msgid "Clear Form"
1459
+ #~ msgstr "Pulisci i campi"
1460
+
1461
+ #~ msgid "Submit"
1462
+ #~ msgstr "Invia"
1463
+
1464
+ #~ msgid "Cheatin&#8217; uh?"
1465
+ #~ msgstr "Trucchi&#8217; uh?"
1466
+
1467
+ #~ msgid "there was an error and no users were exported"
1468
+ #~ msgstr "si é verificato un errore e nessun utente é stato esportato"
1469
+
1470
+ #~ msgid "login"
1471
+ #~ msgstr "Accedi"
1472
+
1473
+ #~ msgid "http://butlerblog.com/wp-members/"
1474
+ #~ msgstr "http://butlerblog.com/wp-members/"
1475
+
1476
+ #~ msgid "Chad Butler"
1477
+ #~ msgstr "Chad Butler"
1478
+
1479
+ #~ msgid "http://butlerblog.com/"
1480
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-ja.mo ADDED
Binary file
lang/wp-members-ja.po ADDED
@@ -0,0 +1,1408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:02-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "Language: ja\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 1.6.4\n"
16
+
17
+ #: admin/admin.php:60 admin/admin.php:129
18
+ msgid "Settings"
19
+ msgstr "設定"
20
+
21
+ #: admin/admin.php:187
22
+ msgid "Options"
23
+ msgstr "オプション"
24
+
25
+ #: admin/admin.php:188
26
+ msgid "Fields"
27
+ msgstr "フィールド"
28
+
29
+ #: admin/admin.php:189
30
+ msgid "Dialogs"
31
+ msgstr "ダイアログ"
32
+
33
+ #: admin/admin.php:190
34
+ msgid "Emails"
35
+ msgstr "メール"
36
+
37
+ #: admin/dialogs.php:109
38
+ msgid ""
39
+ "Your WP settings allow anyone to register - this is not the recommended "
40
+ "setting."
41
+ msgstr ""
42
+ "WordPress設定 - だれでもユーザー登録ができるようになっています。これは推奨さ"
43
+ "れる設定ではありません。"
44
+
45
+ #: admin/dialogs.php:110
46
+ #, php-format
47
+ msgid ""
48
+ "You can %s change this here %s making sure the box next to \"Anyone can "
49
+ "register\" is unchecked."
50
+ msgstr ""
51
+ "%s 一般設定 %s の「だれでもユーザー登録ができるようにする」のチェックを外して"
52
+ "ください。"
53
+
54
+ #: admin/dialogs.php:111
55
+ msgid ""
56
+ "This setting allows a link on the /wp-login.php page to register using the "
57
+ "WP native registration process thus circumventing any registration you are "
58
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
59
+ "but most users should uncheck this option. If you do not change this "
60
+ "setting, you can choose to ignore these warning messages under WP-Members "
61
+ "Settings."
62
+ msgstr ""
63
+ "この設定は、WordPressのディフォルトのログインプロセスへのリンクを許可します。"
64
+ "その場合、WP-Membersによる登録機構は回避されます。このオプションはオフにする"
65
+ "のが普通です。もしこの設定を変更しない場合は、オプションで「警告メッセージを"
66
+ "表示しない」にチェックしてください。"
67
+
68
+ #: admin/dialogs.php:117
69
+ msgid ""
70
+ "Your WP settings allow anyone to comment - this is not the recommended "
71
+ "setting."
72
+ msgstr ""
73
+ "WordPress設定 - だれでもコメントができるようになっています。これは推奨される"
74
+ "設定ではありません。"
75
+
76
+ #: admin/dialogs.php:118
77
+ #, php-format
78
+ msgid ""
79
+ "You can %s change this here %s by checking the box next to \"Users must be "
80
+ "registered and logged in to comment.\""
81
+ msgstr ""
82
+ "%s ディスカッション設定 %s の「ユーザー登録してログインしたユーザーのみコメン"
83
+ "トをつけられるようにする」にチェックしてください。"
84
+
85
+ #: admin/dialogs.php:119
86
+ msgid ""
87
+ "This setting allows any users to comment, whether or not they are "
88
+ "registered. Depending on how you are using WP-Members will determine whether "
89
+ "you should change this setting or not. If you do not change this setting, "
90
+ "you can choose to ignore these warning messages under WP-Members Settings."
91
+ msgstr ""
92
+ "この設定は、すべてのユーザーがコメントすることを許可します。もしこの設定を変"
93
+ "更しない場合は、オプションの「警告メッセージを表示しない」にチェックしてくだ"
94
+ "さい。"
95
+
96
+ #: admin/dialogs.php:125
97
+ msgid ""
98
+ "Your WP settings allow full text rss feeds - this is not the recommended "
99
+ "setting."
100
+ msgstr ""
101
+ "WordPress設定 - RSS/Atomフィードが全文表示になっています。これは推奨される設"
102
+ "定ではありません。"
103
+
104
+ #: admin/dialogs.php:126
105
+ #, php-format
106
+ msgid ""
107
+ "You can %s change this here %s by changing \"For each article in a feed, show"
108
+ "\" to \"Summary.\""
109
+ msgstr ""
110
+ "%s 表示設定 %s の「RSS/Atom フィードでの各投稿の表示」を「抜粋のみ表示」に変"
111
+ "更してください。"
112
+
113
+ #: admin/dialogs.php:127
114
+ msgid ""
115
+ "Leaving this set to full text allows anyone to read your protected content "
116
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
117
+ "only show summary text."
118
+ msgstr ""
119
+ "「全文表示」のままにしておくと、誰でもRSSリーダーで保護されたコンテンツを読み"
120
+ "取ることができます。「抜粋のみ表示」に変更することで、これを防ぐことができま"
121
+ "す。"
122
+
123
+ #: admin/dialogs.php:133
124
+ msgid "You have set WP-Members to hold registrations for approval"
125
+ msgstr "承認登録を設定しました。"
126
+
127
+ #: admin/dialogs.php:134
128
+ msgid ""
129
+ "but you have not changed the default message for \"Registration Completed\" "
130
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
131
+ "message to let users know they are pending approval."
132
+ msgstr "ダイアログ設定から登録完了のメッセージを変更してください。"
133
+
134
+ #: admin/dialogs.php:140
135
+ msgid "You have set WP-Members to turn off the registration process"
136
+ msgstr "新規ユーザー登録機能をオフにしました。"
137
+
138
+ #: admin/dialogs.php:141
139
+ msgid ""
140
+ "but you also set to moderate and/or email admin new registrations. You will "
141
+ "need to set up a registration page for users to register."
142
+ msgstr ""
143
+ "新規ユーザー登録時のメール設定、および新規ユーザー登録ページの設定を行ってく"
144
+ "ださい。"
145
+
146
+ #: admin/dialogs.php:147
147
+ msgid "You have turned on reCAPTCHA"
148
+ msgstr "reCAPTCHAを設定しました。"
149
+
150
+ #: admin/dialogs.php:148
151
+ msgid ""
152
+ "but you have not entered API keys. You will need both a public and private "
153
+ "key. The CAPTCHA will not display unless a valid API key is included."
154
+ msgstr ""
155
+ "APIキーが入力されていません。有効なAPIキーを設定しないとCAPTCHAは表示されませ"
156
+ "ん。"
157
+
158
+ #: admin/dialogs.php:171
159
+ msgid "Version:"
160
+ msgstr "Version:"
161
+
162
+ #: admin/dialogs.php:172
163
+ #, fuzzy
164
+ msgid "Quick Start Guide"
165
+ msgstr "登録情報の更新"
166
+
167
+ #: admin/dialogs.php:173
168
+ #, fuzzy
169
+ msgid "Online User Guide"
170
+ msgstr "登録情報の更新"
171
+
172
+ #: admin/dialogs.php:174
173
+ msgid "FAQs"
174
+ msgstr ""
175
+
176
+ #: admin/dialogs.php:181
177
+ #, fuzzy
178
+ msgid "Thank you for using WP-Members"
179
+ msgstr "WP-Members のご利用ありがとうございます。プラグインのバージョン %s"
180
+
181
+ #: admin/dialogs.php:182
182
+ msgid "A plugin developed by"
183
+ msgstr ""
184
+
185
+ #: admin/dialogs.php:183
186
+ msgid "Follow"
187
+ msgstr "Follow"
188
+
189
+ #: admin/dialogs.php:200 admin/dialogs.php:204
190
+ msgid "Latest from RocketGeek"
191
+ msgstr ""
192
+
193
+ #: admin/dialogs.php:221 admin/dialogs.php:234
194
+ msgid "Latest from ButlerBlog"
195
+ msgstr ""
196
+
197
+ #: admin/post.php:36 admin/post.php:38
198
+ #, fuzzy
199
+ msgid "Block"
200
+ msgstr "投稿記事をブロック"
201
+
202
+ #: admin/post.php:37 admin/post.php:39
203
+ msgid "Unblock"
204
+ msgstr ""
205
+
206
+ #: admin/post.php:120
207
+ #, php-format
208
+ msgid "%s posts %sed."
209
+ msgstr ""
210
+
211
+ #: admin/post.php:138
212
+ #, fuzzy
213
+ msgid "Post Restriction"
214
+ msgstr "新規ユーザー登録"
215
+
216
+ #: admin/post.php:145
217
+ #, fuzzy
218
+ msgid "Page Restriction"
219
+ msgstr "新規ユーザー登録"
220
+
221
+ #: admin/post.php:263 admin/post.php:295
222
+ #, fuzzy
223
+ msgid "Unblocked?"
224
+ msgstr "投稿記事は個別にブロックまたはブロック解除することができます。"
225
+
226
+ #: admin/post.php:263 admin/post.php:295
227
+ #, fuzzy
228
+ msgid "Blocked?"
229
+ msgstr "投稿記事は個別にブロックまたはブロック解除することができます。"
230
+
231
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
232
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
233
+ msgid "Need help?"
234
+ msgstr ""
235
+
236
+ #: admin/tab-captcha.php:46
237
+ msgid "Manage reCAPTCHA Options"
238
+ msgstr "reCAPTCHA 設定"
239
+
240
+ #: admin/tab-captcha.php:60
241
+ msgid ""
242
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
243
+ "while blocking spam on your blog."
244
+ msgstr ""
245
+ "reCAPTCHAは、投稿されたデータが実際に人間の手によるものなかスパムボットによる"
246
+ "ものなのかを画像を使って判別するシステムです。"
247
+
248
+ #: admin/tab-captcha.php:61
249
+ #, php-format
250
+ msgid ""
251
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
252
+ "that they are a human. This verifies that they are not a spambot while also "
253
+ "correcting the automatic scans of old books. So you get less spam, and the "
254
+ "world gets accurately digitized books. Everybody wins! For details, visit "
255
+ "the %s reCAPTCHA website%s"
256
+ msgstr "詳細については %s reCAPTCHAのWebサイト %s を参照してください。"
257
+
258
+ #: admin/tab-captcha.php:66
259
+ msgid "reCAPTCHA Keys"
260
+ msgstr "reCAPTCHA キー"
261
+
262
+ #: admin/tab-captcha.php:68
263
+ #, php-format
264
+ msgid ""
265
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
266
+ "key. You can sign up for a %s free reCAPTCHA key%s"
267
+ msgstr ""
268
+ "reCAPTCHA は public key と private key で構成されているAPIキーが必要です。%s "
269
+ "free reCAPTCHA key%s にサインアップしてください。"
270
+
271
+ #: admin/tab-captcha.php:69
272
+ msgid "Public Key"
273
+ msgstr "Public Key"
274
+
275
+ #: admin/tab-captcha.php:70
276
+ msgid "Private Key"
277
+ msgstr "Private Key"
278
+
279
+ #: admin/tab-captcha.php:74
280
+ msgid "Choose Theme"
281
+ msgstr "テーマ選択"
282
+
283
+ #: admin/tab-captcha.php:77
284
+ msgid "Red"
285
+ msgstr "Red"
286
+
287
+ #: admin/tab-captcha.php:78
288
+ msgid "White"
289
+ msgstr "White"
290
+
291
+ #: admin/tab-captcha.php:79
292
+ msgid "Black Glass"
293
+ msgstr "Black Glass"
294
+
295
+ #: admin/tab-captcha.php:80
296
+ msgid "Clean"
297
+ msgstr "Clean"
298
+
299
+ #: admin/tab-captcha.php:112
300
+ #, fuzzy
301
+ msgid "Characters for image"
302
+ msgstr "タイプ"
303
+
304
+ #: admin/tab-captcha.php:116
305
+ #, fuzzy
306
+ msgid "Number of characters"
307
+ msgstr "抜粋を表示"
308
+
309
+ #: admin/tab-captcha.php:120
310
+ #, fuzzy
311
+ msgid "Image dimensions"
312
+ msgstr "タイプ"
313
+
314
+ #: admin/tab-captcha.php:124
315
+ msgid "Font color of characters"
316
+ msgstr ""
317
+
318
+ #: admin/tab-captcha.php:128
319
+ #, fuzzy
320
+ msgid "Background color of image"
321
+ msgstr "タイプ"
322
+
323
+ #: admin/tab-captcha.php:132
324
+ msgid "Font size"
325
+ msgstr ""
326
+
327
+ #: admin/tab-captcha.php:136
328
+ msgid "Width between characters"
329
+ msgstr ""
330
+
331
+ #: admin/tab-captcha.php:140
332
+ #, fuzzy
333
+ msgid "Image type"
334
+ msgstr "タイプ"
335
+
336
+ #: admin/tab-captcha.php:154
337
+ msgid ""
338
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
339
+ "installed and activated."
340
+ msgstr ""
341
+
342
+ #: admin/tab-captcha.php:166
343
+ #, fuzzy
344
+ msgid "Update CAPTCHA Settings"
345
+ msgstr "reCAPTCHA設定を保存"
346
+
347
+ #: admin/tab-captcha.php:230
348
+ #, fuzzy
349
+ msgid "CAPTCHA was updated for WP-Members"
350
+ msgstr "WP-Members reCAPTCHA を更新しました"
351
+
352
+ #: admin/tab-dialogs.php:29
353
+ msgid "Restricted post (or page), displays above the login/registration form"
354
+ msgstr ""
355
+ "アクセス制限された投稿記事および固定ページ、ログインおよび登録フォームの上に"
356
+ "表示"
357
+
358
+ #: admin/tab-dialogs.php:30
359
+ msgid "Username is taken"
360
+ msgstr "ユーザー名使用済み"
361
+
362
+ #: admin/tab-dialogs.php:31
363
+ msgid "Email is registered"
364
+ msgstr "メールアドレス登録済み"
365
+
366
+ #: admin/tab-dialogs.php:32
367
+ msgid "Registration completed"
368
+ msgstr "登録完了"
369
+
370
+ #: admin/tab-dialogs.php:33
371
+ msgid "User update"
372
+ msgstr "登録情報の更新"
373
+
374
+ #: admin/tab-dialogs.php:34
375
+ msgid "Passwords did not match"
376
+ msgstr "パスワードの相違"
377
+
378
+ #: admin/tab-dialogs.php:35
379
+ msgid "Password changes"
380
+ msgstr "パスワードの変更"
381
+
382
+ #: admin/tab-dialogs.php:36
383
+ msgid "Username or email do not exist when trying to reset forgotten password"
384
+ msgstr ""
385
+ "パスワードリセットを実行時、ユーザー名もしくはメールアドレスが存在しない場合"
386
+
387
+ #: admin/tab-dialogs.php:37
388
+ msgid "Password reset"
389
+ msgstr "パスワードリセット"
390
+
391
+ #: admin/tab-dialogs.php:54
392
+ msgid "Dialogs and Error Messages"
393
+ msgstr "ダイアログ/エラーメッセージ設定"
394
+
395
+ #: admin/tab-dialogs.php:56
396
+ #, fuzzy, php-format
397
+ msgid ""
398
+ "You can customize the text for dialogs and error messages. Simple HTML is "
399
+ "allowed %s etc."
400
+ msgstr ""
401
+ "ダイアログやエラーメッセージのテキストをカスタマイズすることができます。HTML"
402
+ "タグも使用できます (%s) 。"
403
+
404
+ #: admin/tab-dialogs.php:69
405
+ msgid "Terms of Service (TOS)"
406
+ msgstr "利用規約(TOS)"
407
+
408
+ #: admin/tab-dialogs.php:76
409
+ msgid "Update Dialogs"
410
+ msgstr "変更を保存"
411
+
412
+ #: admin/tab-dialogs.php:115
413
+ msgid "WP-Members dialogs were updated"
414
+ msgstr "WP-Members ダイアログ設定 を更新しました。"
415
+
416
+ #: admin/tab-emails.php:30
417
+ msgid "New Registration"
418
+ msgstr "新規ユーザー登録"
419
+
420
+ #: admin/tab-emails.php:34
421
+ msgid "Registration is Moderated"
422
+ msgstr "新規ユーザー登録時"
423
+
424
+ #: admin/tab-emails.php:35
425
+ msgid "Registration is Moderated, User is Approved"
426
+ msgstr "新規ユーザー登録時(承認時)"
427
+
428
+ #: admin/tab-emails.php:40
429
+ msgid "Password Reset"
430
+ msgstr "パスワードリセット"
431
+
432
+ #: admin/tab-emails.php:45
433
+ msgid "Admin Notification"
434
+ msgstr "管理者への通知"
435
+
436
+ #: admin/tab-emails.php:50
437
+ msgid "Email Signature"
438
+ msgstr "署名"
439
+
440
+ #: admin/tab-emails.php:57
441
+ msgid "Email Messages"
442
+ msgstr "メール設定"
443
+
444
+ #: admin/tab-emails.php:60
445
+ msgid "You can customize the content of the emails sent by the plugin."
446
+ msgstr ""
447
+ "プラグインによって送信されるメールの内容をカスタマイズすることができます。"
448
+
449
+ #: admin/tab-emails.php:62
450
+ msgid "A list of shortcodes is available here."
451
+ msgstr "利用可能なショートコードのリスト"
452
+
453
+ #: admin/tab-emails.php:69
454
+ msgid "Set a custom email address"
455
+ msgstr "カスタムメールアドレス"
456
+
457
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
458
+ msgid "(optional)"
459
+ msgstr "(オプション)"
460
+
461
+ #: admin/tab-emails.php:73
462
+ msgid "Set a custom email name"
463
+ msgstr "送信者の名前(カスタム)"
464
+
465
+ #: admin/tab-emails.php:84
466
+ msgid "Subject"
467
+ msgstr "件名"
468
+
469
+ #: admin/tab-emails.php:88
470
+ msgid "Body"
471
+ msgstr "本文"
472
+
473
+ #: admin/tab-emails.php:105
474
+ msgid "Update Emails"
475
+ msgstr "変更を保存"
476
+
477
+ #: admin/tab-emails.php:161
478
+ msgid "WP-Members emails were updated"
479
+ msgstr "WP-Members メール設定 を更新しました。"
480
+
481
+ #: admin/tab-fields.php:166
482
+ msgid "WP-Members fields were updated"
483
+ msgstr "WP-Members フィールド設定 を更新しました。"
484
+
485
+ #: admin/tab-fields.php:176
486
+ msgid "Field Label is required for adding a new field. Nothing was updated."
487
+ msgstr "フィールドのラベルを入力してください。"
488
+
489
+ #: admin/tab-fields.php:177
490
+ msgid "Option Name is required for adding a new field. Nothing was updated."
491
+ msgstr "オプション名は必須です。"
492
+
493
+ #: admin/tab-fields.php:184
494
+ msgid "A field with that option name already exists"
495
+ msgstr ""
496
+
497
+ #: admin/tab-fields.php:201
498
+ #, fuzzy
499
+ msgid "Checked value is required for checkboxes. Nothing was updated."
500
+ msgstr "フィールドのラベルを入力してください。"
501
+
502
+ #: admin/tab-fields.php:223
503
+ #, fuzzy
504
+ msgid "field was added"
505
+ msgstr "ラベル"
506
+
507
+ #: admin/tab-fields.php:241
508
+ #, fuzzy
509
+ msgid "field was updated"
510
+ msgstr "WP-Members フィールド設定 を更新しました。"
511
+
512
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
513
+ #, fuzzy
514
+ msgid "Edit Field"
515
+ msgstr "登録情報の編集"
516
+
517
+ #: admin/tab-fields.php:289
518
+ #, fuzzy
519
+ msgid "Add a Field"
520
+ msgstr "追加/削除"
521
+
522
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
523
+ msgid "Field Label"
524
+ msgstr "ラベル"
525
+
526
+ #: admin/tab-fields.php:297
527
+ msgid "The name of the field as it will be displayed to the user."
528
+ msgstr ""
529
+
530
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
531
+ msgid "Option Name"
532
+ msgstr "オプション名"
533
+
534
+ #: admin/tab-fields.php:306
535
+ msgid ""
536
+ "The database meta value for the field. It must be unique and contain no "
537
+ "spaces (underscores are ok)."
538
+ msgstr ""
539
+
540
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
541
+ msgid "Field Type"
542
+ msgstr "タイプ"
543
+
544
+ #: admin/tab-fields.php:316
545
+ msgid "text"
546
+ msgstr "テキスト"
547
+
548
+ #: admin/tab-fields.php:317
549
+ msgid "textarea"
550
+ msgstr "テキストエリア"
551
+
552
+ #: admin/tab-fields.php:318
553
+ msgid "checkbox"
554
+ msgstr "チェックボックス"
555
+
556
+ #: admin/tab-fields.php:319
557
+ msgid "dropdown"
558
+ msgstr "ドロップダウン"
559
+
560
+ #: admin/tab-fields.php:320
561
+ msgid "password"
562
+ msgstr "パスワード"
563
+
564
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
565
+ msgid "Display?"
566
+ msgstr "表示"
567
+
568
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
569
+ msgid "Required?"
570
+ msgstr "必須"
571
+
572
+ #: admin/tab-fields.php:334
573
+ #, fuzzy
574
+ msgid "Additional information for checkbox fields"
575
+ msgstr "WP-Members 追加フィールド"
576
+
577
+ #: admin/tab-fields.php:337
578
+ #, fuzzy
579
+ msgid "Checked by default?"
580
+ msgstr "初期チェック"
581
+
582
+ #: admin/tab-fields.php:341
583
+ #, fuzzy
584
+ msgid "Stored value if checked:"
585
+ msgstr "初期チェック"
586
+
587
+ #: admin/tab-fields.php:347
588
+ #, fuzzy
589
+ msgid "Additional information for dropdown fields"
590
+ msgstr "WP-Members 追加フィールド"
591
+
592
+ #: admin/tab-fields.php:350
593
+ msgid "For dropdown, array of values:"
594
+ msgstr "ドロップダウンの値の配列"
595
+
596
+ #: admin/tab-fields.php:375
597
+ msgid "Options should be Option Name|option_value,"
598
+ msgstr "オプションの記述方法(オプション名|値,)"
599
+
600
+ #: admin/tab-fields.php:379
601
+ msgid "Visit plugin site for more information"
602
+ msgstr "詳細はプラグインのサイトを参照してください。"
603
+
604
+ #: admin/tab-fields.php:385
605
+ #, fuzzy
606
+ msgid "Add Field"
607
+ msgstr "追加/削除"
608
+
609
+ #: admin/tab-fields.php:407
610
+ msgid "Manage Fields"
611
+ msgstr "フィールド設定"
612
+
613
+ #: admin/tab-fields.php:409
614
+ msgid ""
615
+ "Determine which fields will display and which are required. This includes "
616
+ "all fields, both native WP fields and WP-Members custom fields."
617
+ msgstr ""
618
+ "フィールドの設定を行います。WPネイティブフィールドとWP-Membersカスタムフィー"
619
+ "ルドの両方が含まれます。"
620
+
621
+ #: admin/tab-fields.php:410
622
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
623
+ msgstr "(メールアドレスは常に必須です。変更することはできません。)"
624
+
625
+ #: admin/tab-fields.php:415
626
+ msgid "Add/Delete"
627
+ msgstr "追加/削除"
628
+
629
+ #: admin/tab-fields.php:421
630
+ msgid "Checked?"
631
+ msgstr "初期チェック"
632
+
633
+ #: admin/tab-fields.php:423
634
+ #, fuzzy
635
+ msgid "Users Screen"
636
+ msgstr "エクスポート"
637
+
638
+ #: admin/tab-fields.php:435
639
+ msgid "Delete"
640
+ msgstr "削除"
641
+
642
+ #: admin/tab-fields.php:447
643
+ msgid "(Email cannot be removed)"
644
+ msgstr "(メールアドレスは削除できません)"
645
+
646
+ #: admin/tab-fields.php:467
647
+ #, fuzzy
648
+ msgid "Registration Date"
649
+ msgstr "登録完了"
650
+
651
+ #: admin/tab-fields.php:470
652
+ #, fuzzy
653
+ msgid "native"
654
+ msgstr ""
655
+ "フィールドの設定を行います。WPネイティブフィールドとWP-Membersカスタムフィー"
656
+ "ルドの両方が含まれます。"
657
+
658
+ #: admin/tab-fields.php:480
659
+ #, fuzzy
660
+ msgid "Active"
661
+ msgstr "承認"
662
+
663
+ #: admin/tab-fields.php:492
664
+ #, fuzzy
665
+ msgid "Registration IP"
666
+ msgstr "IP @ registration"
667
+
668
+ #: admin/tab-fields.php:527
669
+ msgid "Update Fields"
670
+ msgstr "変更を保存"
671
+
672
+ #: admin/tab-options.php:48
673
+ msgid "Manage Options"
674
+ msgstr "オプション設定"
675
+
676
+ #: admin/tab-options.php:54
677
+ msgid "Block Posts by default"
678
+ msgstr "投稿記事をブロック"
679
+
680
+ #: admin/tab-options.php:54
681
+ msgid ""
682
+ "Note: Posts can still be individually blocked or unblocked at the article "
683
+ "level"
684
+ msgstr "投稿記事は個別にブロックまたはブロック解除することができます。"
685
+
686
+ #: admin/tab-options.php:55
687
+ msgid "Block Pages by default"
688
+ msgstr "固定ページをブロック"
689
+
690
+ #: admin/tab-options.php:55
691
+ msgid ""
692
+ "Note: Pages can still be individually blocked or unblocked at the article "
693
+ "level"
694
+ msgstr "固定ページは個別にブロックまたはブロック解除することができます。"
695
+
696
+ #: admin/tab-options.php:56
697
+ msgid "Show excerpts"
698
+ msgstr "抜粋を表示"
699
+
700
+ #: admin/tab-options.php:56
701
+ msgid ""
702
+ "Shows excerpted content above the login/registration on both Posts and Pages"
703
+ msgstr "ログインおよび新規ユーザー登録フォームの上に、抜粋の内容を表示します。"
704
+
705
+ #: admin/tab-options.php:57
706
+ msgid "Notify admin"
707
+ msgstr "管理者に通知"
708
+
709
+ #: admin/tab-options.php:57
710
+ #, fuzzy, php-format
711
+ msgid "Notify %s for each new registration? %s"
712
+ msgstr "新規ユーザー登録の際、管理者にメールで通知します。"
713
+
714
+ #: admin/tab-options.php:58
715
+ msgid "Moderate registration"
716
+ msgstr "承認登録"
717
+
718
+ #: admin/tab-options.php:58
719
+ msgid "Holds new registrations for admin approval"
720
+ msgstr "新規ユーザー登録の際、管理者の承認を必要とします。"
721
+
722
+ #: admin/tab-options.php:91
723
+ #, fuzzy
724
+ msgid "Enable CAPTCHA"
725
+ msgstr "CAPTCHAの使用"
726
+
727
+ #: admin/tab-options.php:59
728
+ msgid "Turns on CAPTCHA for registration"
729
+ msgstr "新規ユーザー登録の際、CAPTCHAを使用します。"
730
+
731
+ #: admin/tab-options.php:60
732
+ #, fuzzy
733
+ msgid "Hide registration"
734
+ msgstr "登録完了"
735
+
736
+ #: admin/tab-options.php:60
737
+ msgid "Removes the registration form from blocked content"
738
+ msgstr ""
739
+
740
+ #: admin/tab-options.php:62
741
+ msgid "Time-based expiration"
742
+ msgstr "期限切れ"
743
+
744
+ #: admin/tab-options.php:62
745
+ msgid "Allows for access to expire"
746
+ msgstr "Allows for access to expire"
747
+
748
+ #: admin/tab-options.php:63
749
+ msgid "Trial period"
750
+ msgstr "試用期間"
751
+
752
+ #: admin/tab-options.php:63
753
+ msgid "Allows for a trial period"
754
+ msgstr "Allows for a trial period"
755
+
756
+ #: admin/tab-options.php:64
757
+ msgid "Ignore warning messages"
758
+ msgstr "警告メッセージを表示しない"
759
+
760
+ #: admin/tab-options.php:64
761
+ msgid "Ignores WP-Members warning messages in the admin panel"
762
+ msgstr "管理画面でWP-Membersの警告メッセージを表示しません。"
763
+
764
+ #: admin/tab-options.php:81
765
+ msgid "Attribution"
766
+ msgstr ""
767
+
768
+ #: admin/tab-options.php:83
769
+ msgid ""
770
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
771
+ msgstr ""
772
+
773
+ #: admin/tab-options.php:87
774
+ #, fuzzy
775
+ msgid "Auto Excerpt:"
776
+ msgstr "抜粋を表示"
777
+
778
+ #: admin/tab-options.php:88
779
+ #, fuzzy
780
+ msgid "Number of words in excerpt:"
781
+ msgstr "抜粋を表示"
782
+
783
+ #: admin/tab-options.php:88 admin/tab-options.php:108
784
+ #: admin/tab-options.php:118 admin/tab-options.php:132
785
+ msgid "Optional"
786
+ msgstr "(オプション)"
787
+
788
+ #: admin/tab-options.php:88
789
+ #, fuzzy
790
+ msgid "Automatically creates an excerpt"
791
+ msgstr "抜粋を表示"
792
+
793
+ #: admin/tab-options.php:103
794
+ #, fuzzy
795
+ msgid "User Profile Page:"
796
+ msgstr "登録情報の更新"
797
+
798
+ #: admin/tab-options.php:106
799
+ msgid "For creating a forgot password link in the login form"
800
+ msgstr ""
801
+
802
+ #: admin/tab-options.php:113
803
+ #, fuzzy
804
+ msgid "Register Page:"
805
+ msgstr "新規ユーザー登録ページのURL"
806
+
807
+ #: admin/tab-options.php:116
808
+ msgid "For creating a register link in the login form"
809
+ msgstr ""
810
+
811
+ #: admin/tab-options.php:126
812
+ msgid "Select a stylesheet or specify a custom stylesheet below"
813
+ msgstr ""
814
+
815
+ #: admin/tab-options.php:131
816
+ #, fuzzy
817
+ msgid "Custom Stylesheet:"
818
+ msgstr "カスタム"
819
+
820
+ #: admin/tab-options.php:136
821
+ msgid "Update Settings"
822
+ msgstr "変更を保存"
823
+
824
+ #: admin/tab-options.php:246
825
+ msgid "WP-Members settings were updated"
826
+ msgstr "WP-Members オプション設定 を更新しました。"
827
+
828
+ #: admin/tab-options.php:296
829
+ #, fuzzy
830
+ msgid "Select a page"
831
+ msgstr "新規ユーザー登録"
832
+
833
+ #: admin/tab-options.php:304
834
+ msgid "USE CUSTOM URL BELOW"
835
+ msgstr ""
836
+
837
+ #: admin/user-export.php:57 admin/user-export.php:172
838
+ msgid "Activated?"
839
+ msgstr "承認"
840
+
841
+ #: admin/user-export.php:61 admin/user-export.php:175
842
+ msgid "Subscription"
843
+ msgstr "申し込み"
844
+
845
+ #: admin/user-export.php:61 admin/user-export.php:175
846
+ msgid "Expires"
847
+ msgstr "有効期限切れ"
848
+
849
+ #: admin/user-export.php:64 admin/user-export.php:178
850
+ msgid "Registered"
851
+ msgstr "登録済み"
852
+
853
+ #: admin/user-export.php:65 admin/user-export.php:179
854
+ msgid "IP"
855
+ msgstr "IP"
856
+
857
+ #: admin/user-profile.php:46
858
+ msgid "WP-Members Additional Fields"
859
+ msgstr "WP-Members 追加フィールド"
860
+
861
+ #: admin/user-profile.php:66 native-registration.php:36
862
+ #: native-registration.php:159 users.php:62
863
+ msgid "(required)"
864
+ msgstr "必須"
865
+
866
+ #: admin/user-profile.php:98
867
+ msgid "Activate this user?"
868
+ msgstr "このユーザーを承認しますか?"
869
+
870
+ #: admin/user-profile.php:103
871
+ msgid "Reactivate this user?"
872
+ msgstr "このユーザーを再承認にしますか?"
873
+
874
+ #: admin/user-profile.php:108
875
+ msgid "Deactivate this user?"
876
+ msgstr "このユーザーの承認を却下しますか?"
877
+
878
+ #: admin/user-profile.php:129
879
+ msgid "IP @ registration"
880
+ msgstr "IP @ registration"
881
+
882
+ #: admin/users.php:45 admin/users.php:49
883
+ msgid "Export"
884
+ msgstr "エクスポート"
885
+
886
+ #: admin/users.php:50 admin/users.php:91
887
+ #, fuzzy
888
+ msgid "Export All Users"
889
+ msgstr "エクスポート"
890
+
891
+ #: forms.php:95
892
+ #, fuzzy
893
+ msgid "Existing Users Log In"
894
+ msgstr "ログイン"
895
+
896
+ #: forms.php:161 wp-members-dialogs.php:192
897
+ msgid "Change Password"
898
+ msgstr "パスワード変更"
899
+
900
+ #: forms.php:163
901
+ msgid "Update Password"
902
+ msgstr "パスワードの変更"
903
+
904
+ #: forms.php:227
905
+ msgid "Reset Forgotten Password"
906
+ msgstr "パスワードリセット"
907
+
908
+ #: forms.php:403
909
+ msgid "Forgot password?"
910
+ msgstr "パスワードをお忘れですか?"
911
+
912
+ #: forms.php:403
913
+ msgid "Click here to reset"
914
+ msgstr "パスワードリセット"
915
+
916
+ #: forms.php:418
917
+ msgid "New User?"
918
+ msgstr "はじめての方はこちら"
919
+
920
+ #: forms.php:418
921
+ msgid "Click here to register"
922
+ msgstr "新規ユーザー登録"
923
+
924
+ #: forms.php:515
925
+ msgid "Required field"
926
+ msgstr "必須項目"
927
+
928
+ #: forms.php:521
929
+ #, fuzzy
930
+ msgid "Reset Form"
931
+ msgstr "CAPTCHAフォームでエラーが発生しました。"
932
+
933
+ #: forms.php:523
934
+ #, fuzzy
935
+ msgid "Update Profile"
936
+ msgstr "登録情報の更新"
937
+
938
+ #: forms.php:561
939
+ msgid "Choose a Username"
940
+ msgstr "ユーザー名"
941
+
942
+ #: forms.php:683 native-registration.php:65
943
+ #, php-format
944
+ msgid "Please indicate that you agree to the %s TOS %s"
945
+ msgstr "%s 利用規約 %s に同意する。"
946
+
947
+ #: forms.php:852
948
+ #, fuzzy
949
+ msgid "New User Registration"
950
+ msgstr "はじめての方はこちら"
951
+
952
+ #: forms.php:1018
953
+ msgid "Input the code:"
954
+ msgstr ""
955
+
956
+ #: users.php:38
957
+ #, fuzzy
958
+ msgid "Additional Information"
959
+ msgstr "WP-Members 追加フィールド"
960
+
961
+ #: wp-members-core.php:118 wp-members-core.php:245
962
+ msgid "There was an error with the CAPTCHA form."
963
+ msgstr "CAPTCHAフォームでエラーが発生しました。"
964
+
965
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
966
+ msgid "Edit Your Information"
967
+ msgstr "登録情報の編集"
968
+
969
+ #: wp-members-core.php:544
970
+ msgid "<strong>ERROR</strong>: User has not been activated."
971
+ msgstr "<strong>ERROR</strong>: User has not been activated."
972
+
973
+ #: wp-members-core.php:903 wp-members-register.php:93
974
+ #, php-format
975
+ msgid "Sorry, %s is a required field."
976
+ msgstr "%s は必須項目です。"
977
+
978
+ #: wp-members-dialogs.php:42
979
+ msgid "Login Failed!"
980
+ msgstr "ログインに失敗しました。"
981
+
982
+ #: wp-members-dialogs.php:45
983
+ msgid "You entered an invalid username or password."
984
+ msgstr "ユーザー名またはメールアドレスが無効です。"
985
+
986
+ #: wp-members-dialogs.php:47
987
+ msgid "Click here to continue."
988
+ msgstr "続行するにはここをクリックしてください。"
989
+
990
+ #: wp-members-dialogs.php:191
991
+ msgid "Edit My Information"
992
+ msgstr "登録情報の編集"
993
+
994
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
995
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
996
+ #: wp-members-sidebar.php:246
997
+ #, php-format
998
+ msgid "You are logged in as %s"
999
+ msgstr "こんにちは %s さん"
1000
+
1001
+ #: wp-members-dialogs.php:208
1002
+ #, fuzzy
1003
+ msgid "Click to log out."
1004
+ msgstr "ログイン"
1005
+
1006
+ #: wp-members-dialogs.php:209
1007
+ msgid "Begin using the site."
1008
+ msgstr "サイトを表示"
1009
+
1010
+ #: wp-members-dialogs.php:225
1011
+ #, fuzzy
1012
+ msgid "Click to log out"
1013
+ msgstr "ログイン"
1014
+
1015
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1016
+ #, fuzzy
1017
+ msgid "click to log out"
1018
+ msgstr "ログイン"
1019
+
1020
+ #: wp-members-dialogs.php:271
1021
+ msgid "Password fields cannot be empty"
1022
+ msgstr "パスワードを入力してください。"
1023
+
1024
+ #: wp-members-register.php:51
1025
+ #, fuzzy
1026
+ msgid "There was an error processing the form."
1027
+ msgstr "CAPTCHAフォームでエラーが発生しました。"
1028
+
1029
+ #: wp-members-register.php:110
1030
+ msgid "Sorry, username is a required field"
1031
+ msgstr "このユーザー名はすでに使用済みです。"
1032
+
1033
+ #: wp-members-register.php:111
1034
+ msgid "The username cannot include non-alphanumeric characters."
1035
+ msgstr "ユーザー名は英数字以外の文字を含めることはできません。"
1036
+
1037
+ #: wp-members-register.php:112 wp-members-register.php:282
1038
+ msgid "You must enter a valid email address."
1039
+ msgstr "有効なメールアドレスを入力してください。"
1040
+
1041
+ #: wp-members-register.php:119
1042
+ #, fuzzy
1043
+ msgid "Passwords did not match."
1044
+ msgstr "パスワードの相違"
1045
+
1046
+ #: wp-members-register.php:120 wp-members-register.php:286
1047
+ #, fuzzy
1048
+ msgid "Emails did not match."
1049
+ msgstr "パスワードの相違"
1050
+
1051
+ #: wp-members-register.php:127
1052
+ msgid "You must complete the CAPTCHA form."
1053
+ msgstr "CAPTCHAフォームを入力してください。"
1054
+
1055
+ #: wp-members-register.php:377
1056
+ msgid "We were unable to validate the public key."
1057
+ msgstr "public key を検証することができません。"
1058
+
1059
+ #: wp-members-register.php:381
1060
+ msgid "We were unable to validate the private key."
1061
+ msgstr "private key を検証することができません。"
1062
+
1063
+ #: wp-members-register.php:385
1064
+ msgid "The challenge parameter of the verify script was incorrect."
1065
+ msgstr "検証スクリプトが正しくありません。"
1066
+
1067
+ #: wp-members-register.php:389
1068
+ msgid "The CAPTCHA solution was incorrect."
1069
+ msgstr "CAPTCHAソリューションが正しくありません。"
1070
+
1071
+ #: wp-members-register.php:393
1072
+ msgid "The parameters to verify were incorrect"
1073
+ msgstr "パラメーターが正しくありません。"
1074
+
1075
+ #: wp-members-register.php:397
1076
+ msgid ""
1077
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1078
+ msgstr ""
1079
+ "reCAPTCHAのAPIキーは、セキュリティ上の理由から、特定のドメイン名に関連付けら"
1080
+ "れています。"
1081
+
1082
+ #: wp-members-register.php:401
1083
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1084
+ msgstr "reCAPTCHA サーバエラーです。再送信してみてください。"
1085
+
1086
+ #: wp-members-register.php:405
1087
+ msgid "You have entered an incorrect code value. Please try again."
1088
+ msgstr ""
1089
+
1090
+ #: wp-members-sidebar.php:117
1091
+ msgid "Login Failed!<br />You entered an invalid username or password."
1092
+ msgstr "ログインに失敗しました。<br />無効なユーザー名またはパスワードです。"
1093
+
1094
+ #: wp-members-sidebar.php:118
1095
+ #, fuzzy
1096
+ msgid "You are not logged in."
1097
+ msgstr "こんにちは %s さん"
1098
+
1099
+ #: wp-members-sidebar.php:169
1100
+ msgid "log in"
1101
+ msgstr "ログイン"
1102
+
1103
+ #: wp-members-sidebar.php:180
1104
+ msgid "Forgot?"
1105
+ msgstr "パスワードをお忘れですか?"
1106
+
1107
+ #: wp-members-sidebar.php:247
1108
+ msgid "click here to log out"
1109
+ msgstr "ログアウト"
1110
+
1111
+ #: wp-members-sidebar.php:279
1112
+ msgid "Displays the WP-Members sidebar login."
1113
+ msgstr ""
1114
+
1115
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1116
+ msgid "Login Status"
1117
+ msgstr "ログインステータス"
1118
+
1119
+ #: wp-members-sidebar.php:299
1120
+ msgid "Title:"
1121
+ msgstr "タイトル:"
1122
+
1123
+ #: wp-members-tos.php:24
1124
+ msgid "Terms of Service"
1125
+ msgstr "利用規約"
1126
+
1127
+ #: wp-members-tos.php:36
1128
+ #, php-format
1129
+ msgid "%sclose%s"
1130
+ msgstr "%s閉じる%s"
1131
+
1132
+ #: wp-members-tos.php:38
1133
+ #, php-format
1134
+ msgid "%sprint%s"
1135
+ msgstr "%s印刷%s"
1136
+
1137
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1138
+ #: Strings wp-members-install.php:49
1139
+ msgid "First Name"
1140
+ msgstr "名"
1141
+
1142
+ #: wp-members-install.php:50
1143
+ msgid "Last Name"
1144
+ msgstr "姓"
1145
+
1146
+ #: wp-members-install.php:51
1147
+ msgid "Address 1"
1148
+ msgstr "住所 1"
1149
+
1150
+ #: wp-members-install.php:52
1151
+ msgid "Address 2"
1152
+ msgstr "住所 2"
1153
+
1154
+ #: wp-members-install.php:53
1155
+ msgid "City"
1156
+ msgstr "市"
1157
+
1158
+ #: wp-members-install.php:54
1159
+ msgid "State"
1160
+ msgstr "州"
1161
+
1162
+ #: wp-members-install.php:55
1163
+ msgid "Zip"
1164
+ msgstr "郵便番号"
1165
+
1166
+ #: wp-members-install.php:56
1167
+ msgid "Country"
1168
+ msgstr "国"
1169
+
1170
+ #: wp-members-install.php:57
1171
+ msgid "Day Phone"
1172
+ msgstr "電話番号"
1173
+
1174
+ #: wp-members-install.php:59
1175
+ msgid "Website"
1176
+ msgstr "ウェブサイト"
1177
+
1178
+ #: wp-members-install.php:60
1179
+ msgid "AIM"
1180
+ msgstr "AIM"
1181
+
1182
+ #: wp-members-install.php:61
1183
+ msgid "Yahoo IM"
1184
+ msgstr "Yahoo IM"
1185
+
1186
+ #: wp-members-install.php:62
1187
+ msgid "Jabber/Google Talk"
1188
+ msgstr "Jabber/Google Talk"
1189
+
1190
+ #: wp-members-install.php:63
1191
+ msgid "Biographical Info"
1192
+ msgstr "プロフィール情報"
1193
+
1194
+ #: wp-members-install.php:64 wp-members-install.php:211
1195
+ msgid "TOS"
1196
+ msgstr "利用規約"
1197
+
1198
+ #: Error message dialog strings wp-members-install.php:96
1199
+ #, fuzzy
1200
+ msgid ""
1201
+ "This content is restricted to site members. If you are an existing user, "
1202
+ "please log in. New users may register below."
1203
+ msgstr ""
1204
+ "このコンテンツはアクセス制限されています。ユーザーの方はログインしてくださ"
1205
+ "い。新規ユーザーの方は以下のフォームから登録を行ってください。"
1206
+
1207
+ #: wp-members-install.php:97
1208
+ msgid "Sorry, that username is taken, please try another."
1209
+ msgstr "このユーザー名はすでに使用済みです。他のユーザー名で試してください。"
1210
+
1211
+ #: wp-members-install.php:98
1212
+ msgid ""
1213
+ "Sorry, that email address already has an account.<br />Please try another."
1214
+ msgstr ""
1215
+ "このメールアドレスはすでに登録済みです。<br />他のメールアドレスで試してくだ"
1216
+ "さい。"
1217
+
1218
+ #: wp-members-install.php:99
1219
+ #, fuzzy
1220
+ msgid ""
1221
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1222
+ "log in using the password that was emailed to you."
1223
+ msgstr ""
1224
+ "登録に成功しました。<br /><br />メールで送信されたパスワードでログインしてく"
1225
+ "ださい。"
1226
+
1227
+ #: wp-members-install.php:100
1228
+ msgid "Your information was updated!"
1229
+ msgstr "登録情報を更新しました。"
1230
+
1231
+ #: wp-members-install.php:101
1232
+ msgid "Passwords did not match.<br /><br />Please try again."
1233
+ msgstr "パスワードが違います。<br />もう一度試しください。"
1234
+
1235
+ #: wp-members-install.php:102
1236
+ msgid ""
1237
+ "Password successfully changed!<br /><br />You will need to re-login with "
1238
+ "your new password."
1239
+ msgstr ""
1240
+ "パスワードを変更しました。<br /><br />新しいパスワードで再度ログインしてくだ"
1241
+ "さい。"
1242
+
1243
+ #: wp-members-install.php:103
1244
+ msgid "Either the username or email address do not exist in our records."
1245
+ msgstr "ユーザー名またはメールアドレスが存在しません。"
1246
+
1247
+ #: wp-members-install.php:104
1248
+ msgid ""
1249
+ "Password successfully reset!<br /><br />An email containing a new password "
1250
+ "has been sent to the email address on file for your account. You may change "
1251
+ "this random password then re-login with your new password."
1252
+ msgstr ""
1253
+ "パスワードをリセットしました。<br /><br />新しいパスワードを登録されている"
1254
+ "メールアドレスに送信しました。"
1255
+
1256
+ #~ msgid "Yes"
1257
+ #~ msgstr "Yes"
1258
+
1259
+ #~ msgid "WP-Members"
1260
+ #~ msgstr "WP-Members"
1261
+
1262
+ #~ msgid "Custom"
1263
+ #~ msgstr "カスタム"
1264
+
1265
+ #, fuzzy
1266
+ #~ msgid "edit"
1267
+ #~ msgstr "登録情報の編集"
1268
+
1269
+ #, fuzzy
1270
+ #~ msgid "Edit"
1271
+ #~ msgstr "登録情報の編集"
1272
+
1273
+ #~ msgid "Use reCAPTCHA"
1274
+ #~ msgstr "reCAPTCHAの使用"
1275
+
1276
+ #, fuzzy
1277
+ #~ msgid "Pages"
1278
+ #~ msgstr "固定ページをブロック"
1279
+
1280
+ #~ msgid "No"
1281
+ #~ msgstr "No"
1282
+
1283
+ #~ msgid "Activate"
1284
+ #~ msgstr "承認"
1285
+
1286
+ #~ msgid "Username"
1287
+ #~ msgstr "ユーザー名"
1288
+
1289
+ #~ msgid "Password"
1290
+ #~ msgstr "パスワード"
1291
+
1292
+ #~ msgid "Log In"
1293
+ #~ msgstr "ログイン"
1294
+
1295
+ #~ msgid "New Password"
1296
+ #~ msgstr "新しいパスワード"
1297
+
1298
+ #~ msgid "Repeat Password"
1299
+ #~ msgstr "パスワード(再入力)"
1300
+
1301
+ #~ msgid "Email"
1302
+ #~ msgstr "メールアドレス"
1303
+
1304
+ #~ msgid "Reset Password"
1305
+ #~ msgstr "パスワードリセット"
1306
+
1307
+ #~ msgid "Remember me"
1308
+ #~ msgstr "ログイン状態を保持する"
1309
+
1310
+ #~ msgid "Register"
1311
+ #~ msgstr "新規ユーザー登録"
1312
+
1313
+ #~ msgid "Turn off registration"
1314
+ #~ msgstr "新規ユーザー登録のオフ"
1315
+
1316
+ #~ msgid "Turns off the registration process, only allows login"
1317
+ #~ msgstr "新規ユーザー登録はできません。"
1318
+
1319
+ #~ msgid "Legacy forms"
1320
+ #~ msgstr "従来のフォーム"
1321
+
1322
+ #~ msgid ""
1323
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1324
+ #~ "forms)"
1325
+ #~ msgstr "ver. 2.5.1 のフォームを使用します(CSSレスのフォーム)"
1326
+
1327
+ #~ msgid "Members Area URL:"
1328
+ #~ msgstr "メンバーズページのURL"
1329
+
1330
+ #~ msgid "Add"
1331
+ #~ msgstr "追加"
1332
+
1333
+ #~ msgid "WP-Members expiration periods were updated"
1334
+ #~ msgstr "WP-Members 有効期限 を更新しました。"
1335
+
1336
+ #~ msgid ""
1337
+ #~ "Settings were saved, but you have required fields that are not set to "
1338
+ #~ "display!"
1339
+ #~ msgstr "設定を保存しましたが、必須項目が非表示になっています。"
1340
+
1341
+ #~ msgid ""
1342
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1343
+ #~ "fields are validated. However, you should still check that your "
1344
+ #~ "displayed and required fields match up. Mismatched fields are "
1345
+ #~ "highlighted below."
1346
+ #~ msgstr ""
1347
+ #~ "ユーザー向けのエラーは発生しませんが、必須項目が表示になっているか確認して"
1348
+ #~ "ください。"
1349
+
1350
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1351
+ #~ msgstr ""
1352
+ #~ "このプラグインがお気に召しましたら、ご寄付をよろしくお願いいたします。"
1353
+
1354
+ #~ msgid "Subscriptions"
1355
+ #~ msgstr "申し込み"
1356
+
1357
+ #~ msgid "PayPal Settings"
1358
+ #~ msgstr "PayPal設定"
1359
+
1360
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1361
+ #~ msgstr ""
1362
+ #~ "このプラグインがお気に召しましたら、%s ご寄付 %s をよろしくお願いいたしま"
1363
+ #~ "す。"
1364
+
1365
+ #~ msgid "%d users were activated."
1366
+ #~ msgstr "%d を承認しました。"
1367
+
1368
+ #~ msgid ""
1369
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1370
+ #~ msgstr ""
1371
+ #~ "エスクポートする準備ができたら、%s ここをクリックして %s CSVファイルダウン"
1372
+ #~ "ロードしてください。"
1373
+
1374
+ #~ msgid "WP-Members Users"
1375
+ #~ msgstr "WP-Members ユーザー"
1376
+
1377
+ #~ msgid "Add New"
1378
+ #~ msgstr "新規追加"
1379
+
1380
+ #~ msgid "No users matched your criteria"
1381
+ #~ msgstr "条件に一致するユーザーはいません。"
1382
+
1383
+ #~ msgid "Bulk Actions"
1384
+ #~ msgstr "一括操作"
1385
+
1386
+ #~ msgid "Apply"
1387
+ #~ msgstr "適用"
1388
+
1389
+ #~ msgid "Indicates a required field"
1390
+ #~ msgstr "必須項目を表示"
1391
+
1392
+ #~ msgid "Login"
1393
+ #~ msgstr "ログイン"
1394
+
1395
+ #~ msgid "Clear Form"
1396
+ #~ msgstr "フォームリセット"
1397
+
1398
+ #~ msgid "Submit"
1399
+ #~ msgstr "登録"
1400
+
1401
+ #~ msgid "Cheatin&#8217; uh?"
1402
+ #~ msgstr "Cheatin&#8217; uh?"
1403
+
1404
+ #~ msgid "there was an error and no users were exported"
1405
+ #~ msgstr "エラーが発生しました。"
1406
+
1407
+ #~ msgid "login"
1408
+ #~ msgstr "ログイン"
lang/wp-members-ko_KR.mo ADDED
Binary file
lang/wp-members-ko_KR.po ADDED
@@ -0,0 +1,1427 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members v2.9.5\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: 2014-08-01 16:25-0600\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 1.6.4\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
+ # @ default
23
+ # @ wp-members
24
+ #: admin/admin.php:60 admin/admin.php:129
25
+ msgid "Settings"
26
+ msgstr "설정"
27
+
28
+ # @ wp-members
29
+ #: admin/admin.php:187
30
+ msgid "Options"
31
+ msgstr "옵션"
32
+
33
+ # @ wp-members
34
+ #: admin/admin.php:188
35
+ msgid "Fields"
36
+ msgstr "필드"
37
+
38
+ # @ wp-members
39
+ #: admin/admin.php:189
40
+ msgid "Dialogs"
41
+ msgstr "대화"
42
+
43
+ # @ wp-members
44
+ #: admin/admin.php:190
45
+ msgid "Emails"
46
+ msgstr "이메일"
47
+
48
+ # @ wp-members
49
+ #: admin/dialogs.php:109
50
+ msgid ""
51
+ "Your WP settings allow anyone to register - this is not the recommended "
52
+ "setting."
53
+ msgstr ""
54
+ "워드프레스 설정이 누구나 가입할 수 있도록 돼있습니다. 이 설정은 권장하지 않습"
55
+ "니다."
56
+
57
+ # @ wp-members
58
+ #: admin/dialogs.php:110
59
+ #, php-format
60
+ msgid ""
61
+ "You can %s change this here %s making sure the box next to \"Anyone can "
62
+ "register\" is unchecked."
63
+ msgstr ""
64
+ "%s 이것을 여기서 변경%s 할 수 있습니다. \"누구나 가입할 수 있습니다\"의 체크"
65
+ "박스를 체크해제 하세요."
66
+
67
+ # @ wp-members
68
+ #: admin/dialogs.php:111
69
+ msgid ""
70
+ "This setting allows a link on the /wp-login.php page to register using the "
71
+ "WP native registration process thus circumventing any registration you are "
72
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
73
+ "but most users should uncheck this option. If you do not change this "
74
+ "setting, you can choose to ignore these warning messages under WP-Members "
75
+ "Settings."
76
+ msgstr ""
77
+ "이 설정은 /wp-login.php에서 워드프레스 기본 회원가입을 사용해서 등록할 수 있"
78
+ "는 링크를 허용합니다. 그러면 WP-Members를 사용하는 회원가입을 무시하게 됩니"
79
+ "다. 어떤 경우는 이것이 사용자에게 어울리지만 대부분의 사용자는 이 옵션을 체크"
80
+ "해제 해야 합니다. 이 설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 "
81
+ "메시지 무시하기를 선택할 수 있습니다."
82
+
83
+ # @ wp-members
84
+ #: admin/dialogs.php:117
85
+ msgid ""
86
+ "Your WP settings allow anyone to comment - this is not the recommended "
87
+ "setting."
88
+ msgstr ""
89
+ "워드프레스 설정이 누구나 댓글을 달 수 있도록 돼있습니다 - 이 설정은 권장하지 "
90
+ "않습니다."
91
+
92
+ # @ wp-members
93
+ #: admin/dialogs.php:118
94
+ #, php-format
95
+ msgid ""
96
+ "You can %s change this here %s by checking the box next to \"Users must be "
97
+ "registered and logged in to comment.\""
98
+ msgstr ""
99
+ "%s 여기서 설정을 변경할 수 있고 %s \"가입하여 로그인한 사용자만 댓글을 남길 "
100
+ "수 있습니다.\" 의 체크박스에 체크하세요."
101
+
102
+ # @ wp-members
103
+ #: admin/dialogs.php:119
104
+ msgid ""
105
+ "This setting allows any users to comment, whether or not they are "
106
+ "registered. Depending on how you are using WP-Members will determine whether "
107
+ "you should change this setting or not. If you do not change this setting, "
108
+ "you can choose to ignore these warning messages under WP-Members Settings."
109
+ msgstr ""
110
+ "이 설정은 가입하거나 가입하지 않은 누구든 댓글을 달 수 있도록 허용합니다. WP-"
111
+ "Members를 사용하는 방법에 따라서 이 설정을 변경할 것인지 결정해야 합니다.이 "
112
+ "설정을 변경하지 않으려면 WP-Members 설정 탭에서 이 경고 메시지 무시하기를 선"
113
+ "택할 수 있습니다."
114
+
115
+ # @ wp-members
116
+ #: admin/dialogs.php:125
117
+ msgid ""
118
+ "Your WP settings allow full text rss feeds - this is not the recommended "
119
+ "setting."
120
+ msgstr ""
121
+ "워드프레스 설정이 전체 글 RSS 피드를 허용합니다 - 이 설정은 권장하지 않습니"
122
+ "다."
123
+
124
+ # @ wp-members
125
+ #: admin/dialogs.php:126
126
+ #, php-format
127
+ msgid ""
128
+ "You can %s change this here %s by changing \"For each article in a feed, show"
129
+ "\" to \"Summary.\""
130
+ msgstr ""
131
+ "%s 여기서 변경할 수 %s있으며 \"피드 글의 보기 옵션\"에서 \"요약\"으로 변경하"
132
+ "세요."
133
+
134
+ # @ wp-members
135
+ #: admin/dialogs.php:127
136
+ msgid ""
137
+ "Leaving this set to full text allows anyone to read your protected content "
138
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
139
+ "only show summary text."
140
+ msgstr ""
141
+ "이 설정을 전체 글로 설정해두면 누구든 RSS 리더에서 보호된 콘텐츠를 읽을 수 있"
142
+ "습니다. 이것을 요약으로 변경하면 이를 방지할 수 있으며 피드는 요약 텍스트만 "
143
+ "보여줄 것입니다."
144
+
145
+ # @ wp-members
146
+ #: admin/dialogs.php:133
147
+ msgid "You have set WP-Members to hold registrations for approval"
148
+ msgstr "WP-Members 설정을 회원가입은 승인이 필요한 것으로 했습니다."
149
+
150
+ # @ wp-members
151
+ #: admin/dialogs.php:134
152
+ msgid ""
153
+ "but you have not changed the default message for \"Registration Completed\" "
154
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
155
+ "message to let users know they are pending approval."
156
+ msgstr ""
157
+ "하지만 \"WP-Members 대화 및 에러 메시지\"에서 \"회원가입 완료됨\"의 기본 메"
158
+ "시지를 변경하지 않았습니다. 사용자가 승인이 대기 중이라는 것을 알 수 있도록 "
159
+ "메시지를 변경해야 합니다."
160
+
161
+ # @ wp-members
162
+ #: admin/dialogs.php:140
163
+ msgid "You have set WP-Members to turn off the registration process"
164
+ msgstr "WP-Members 설정을 회원가입 과정을 끄도록 했습니다."
165
+
166
+ # @ wp-members
167
+ #: admin/dialogs.php:141
168
+ msgid ""
169
+ "but you also set to moderate and/or email admin new registrations. You will "
170
+ "need to set up a registration page for users to register."
171
+ msgstr ""
172
+ "또한 새 회원가입을 검토하거나 관리자에게 이메일을 보내도록 설정했습니다. 사용"
173
+ "자가 등록할 수 있도록 회원가입 페이지를 설정해야 합니다."
174
+
175
+ # @ wp-members
176
+ #: admin/dialogs.php:147
177
+ msgid "You have turned on reCAPTCHA"
178
+ msgstr "리캡챠를 켜놓았습니다"
179
+
180
+ # @ wp-members
181
+ #: admin/dialogs.php:148
182
+ msgid ""
183
+ "but you have not entered API keys. You will need both a public and private "
184
+ "key. The CAPTCHA will not display unless a valid API key is included."
185
+ msgstr ""
186
+ "하지만 API 키를 입력하지 않았습니다. public 키와 private 키가 필요합니다. 유"
187
+ "효한 API 키가 포함되지 않으면 캡챠는 표시되지 않습니다."
188
+
189
+ # @ wp-members
190
+ #: admin/dialogs.php:171
191
+ msgid "Version:"
192
+ msgstr "버전:"
193
+
194
+ # @ wp-members
195
+ #: admin/dialogs.php:172
196
+ msgid "Quick Start Guide"
197
+ msgstr "빠른 시작 가이드"
198
+
199
+ # @ wp-members
200
+ #: admin/dialogs.php:173
201
+ msgid "Online User Guide"
202
+ msgstr "온라인 사용자 가이드"
203
+
204
+ # @ wp-members
205
+ #: admin/dialogs.php:174
206
+ msgid "FAQs"
207
+ msgstr "FAQ"
208
+
209
+ # @ wp-members
210
+ #: admin/dialogs.php:181
211
+ msgid "Thank you for using WP-Members"
212
+ msgstr "WP-Members를 사용해주셔서 감사합니다"
213
+
214
+ # @ wp-members
215
+ #: admin/dialogs.php:182
216
+ msgid "A plugin developed by"
217
+ msgstr "플러그인 개발자"
218
+
219
+ # @ wp-members
220
+ #: admin/dialogs.php:183
221
+ msgid "Follow"
222
+ msgstr "팔로우"
223
+
224
+ #: admin/dialogs.php:200 admin/dialogs.php:204
225
+ msgid "Latest from RocketGeek"
226
+ msgstr "최근 RocketGeek"
227
+
228
+ #: admin/dialogs.php:221 admin/dialogs.php:234
229
+ msgid "Latest from ButlerBlog"
230
+ msgstr "최근 ButlerBlog"
231
+
232
+ #: admin/post.php:36 admin/post.php:38
233
+ msgid "Block"
234
+ msgstr "차단"
235
+
236
+ #: admin/post.php:37 admin/post.php:39
237
+ msgid "Unblock"
238
+ msgstr "차단 해제"
239
+
240
+ #: admin/post.php:120
241
+ #, php-format
242
+ msgid "%s posts %sed."
243
+ msgstr "%s 글 %s 됨."
244
+
245
+ # @ wp-members
246
+ #: admin/post.php:138
247
+ msgid "Post Restriction"
248
+ msgstr "글 제한"
249
+
250
+ # @ wp-members
251
+ #: admin/post.php:145
252
+ msgid "Page Restriction"
253
+ msgstr "페이지 제한"
254
+
255
+ #: admin/post.php:263 admin/post.php:295
256
+ msgid "Unblocked?"
257
+ msgstr "차단 해제?"
258
+
259
+ # @ wp-members
260
+ #: admin/post.php:263 admin/post.php:295
261
+ msgid "Blocked?"
262
+ msgstr "차단?"
263
+
264
+ # @ wp-members
265
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
266
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
267
+ msgid "Need help?"
268
+ msgstr "도움이 필요하세요?"
269
+
270
+ # @ wp-members
271
+ #: admin/tab-captcha.php:46
272
+ msgid "Manage reCAPTCHA Options"
273
+ msgstr "reCAPTCHA 옵션 관리"
274
+
275
+ # @ wp-members
276
+ #: admin/tab-captcha.php:60
277
+ msgid ""
278
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
279
+ "while blocking spam on your blog."
280
+ msgstr ""
281
+ "reCAPTCHA는 무료이며 접근 가능한 CAPTCHA 서비스로 블로그에서 스팸을 방지하는"
282
+ "데 도움이 됩니다."
283
+
284
+ # @ wp-members
285
+ #: admin/tab-captcha.php:61
286
+ #, php-format
287
+ msgid ""
288
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
289
+ "that they are a human. This verifies that they are not a spambot while also "
290
+ "correcting the automatic scans of old books. So you get less spam, and the "
291
+ "world gets accurately digitized books. Everybody wins! For details, visit "
292
+ "the %s reCAPTCHA website%s"
293
+ msgstr ""
294
+ "reCAPTCHA는 댓글자가 사람인지 증명하기 위해 책에서 스캔해 두 개의단어를 입력"
295
+ "하도록 요구합니다. 이것은 스팸로봇이 아닌지 확인하며 많은 스팸을 방지합니다. "
296
+ "상세한 내용은 %s reCAPTCHA 웹사이트%s를 방문하세요."
297
+
298
+ # @ wp-members
299
+ #: admin/tab-captcha.php:66
300
+ msgid "reCAPTCHA Keys"
301
+ msgstr "reCAPTCHA 키"
302
+
303
+ # @ wp-members
304
+ #: admin/tab-captcha.php:68
305
+ #, php-format
306
+ msgid ""
307
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
308
+ "key. You can sign up for a %s free reCAPTCHA key%s"
309
+ msgstr ""
310
+ "reCAPTCHA는 API 키가 필요합니다. \"public\" 및 \"private\" 키로 구성됩니다. "
311
+ "%s 무료 reCAPTCHA 키%s를 위해 가입하세요."
312
+
313
+ # @ wp-members
314
+ #: admin/tab-captcha.php:69
315
+ msgid "Public Key"
316
+ msgstr "Public 키"
317
+
318
+ # @ wp-members
319
+ #: admin/tab-captcha.php:70
320
+ msgid "Private Key"
321
+ msgstr "Private 키"
322
+
323
+ # @ wp-members
324
+ #: admin/tab-captcha.php:74
325
+ msgid "Choose Theme"
326
+ msgstr "테마 선택"
327
+
328
+ # @ wp-members
329
+ #: admin/tab-captcha.php:77
330
+ msgid "Red"
331
+ msgstr "Red"
332
+
333
+ # @ wp-members
334
+ #: admin/tab-captcha.php:78
335
+ msgid "White"
336
+ msgstr "White"
337
+
338
+ # @ wp-members
339
+ #: admin/tab-captcha.php:79
340
+ msgid "Black Glass"
341
+ msgstr "Black Glass"
342
+
343
+ # @ wp-members
344
+ #: admin/tab-captcha.php:80
345
+ msgid "Clean"
346
+ msgstr "Clean"
347
+
348
+ #: admin/tab-captcha.php:112
349
+ msgid "Characters for image"
350
+ msgstr "이미지에 대한 글자"
351
+
352
+ #: admin/tab-captcha.php:116
353
+ msgid "Number of characters"
354
+ msgstr "글자 수"
355
+
356
+ #: admin/tab-captcha.php:120
357
+ msgid "Image dimensions"
358
+ msgstr "이미지 크기"
359
+
360
+ #: admin/tab-captcha.php:124
361
+ msgid "Font color of characters"
362
+ msgstr "글자 폰트 색상"
363
+
364
+ #: admin/tab-captcha.php:128
365
+ msgid "Background color of image"
366
+ msgstr "이미지 배경 색상"
367
+
368
+ #: admin/tab-captcha.php:132
369
+ msgid "Font size"
370
+ msgstr "폰트 사이즈"
371
+
372
+ #: admin/tab-captcha.php:136
373
+ msgid "Width between characters"
374
+ msgstr "글자간 폭"
375
+
376
+ #: admin/tab-captcha.php:140
377
+ msgid "Image type"
378
+ msgstr "이미지 타입"
379
+
380
+ #: admin/tab-captcha.php:154
381
+ msgid ""
382
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
383
+ "installed and activated."
384
+ msgstr ""
385
+ "Really Simple CAPTCHA를 사용하려면, Really Simple CAPTCHA 플러그인을 설치하"
386
+ "고 활성화 해야 합니다."
387
+
388
+ # @ wp-members
389
+ #: admin/tab-captcha.php:166
390
+ msgid "Update CAPTCHA Settings"
391
+ msgstr "CAPTCHA 설정 업데이트"
392
+
393
+ # @ wp-members
394
+ #: admin/tab-captcha.php:230
395
+ msgid "CAPTCHA was updated for WP-Members"
396
+ msgstr "CAPTCHA가 WP-Members를 위해 업데이트 됐습니다"
397
+
398
+ # @ wp-members
399
+ #: admin/tab-dialogs.php:29
400
+ msgid "Restricted post (or page), displays above the login/registration form"
401
+ msgstr "제한된 글 (또는 페이지), 로그인/회원가입 폼 위에 표시됨"
402
+
403
+ # @ wp-members
404
+ #: admin/tab-dialogs.php:30
405
+ msgid "Username is taken"
406
+ msgstr "아이디가 사용 중입니다."
407
+
408
+ # @ wp-members
409
+ #: admin/tab-dialogs.php:31
410
+ msgid "Email is registered"
411
+ msgstr "이메일이 등록됐습니다"
412
+
413
+ # @ wp-members
414
+ #: admin/tab-dialogs.php:32
415
+ msgid "Registration completed"
416
+ msgstr "회원가입 완료"
417
+
418
+ # @ wp-members
419
+ #: admin/tab-dialogs.php:33
420
+ msgid "User update"
421
+ msgstr "사용자 업데이트"
422
+
423
+ # @ wp-members
424
+ #: admin/tab-dialogs.php:34
425
+ msgid "Passwords did not match"
426
+ msgstr "비밀번호가 일치하지 않습니다"
427
+
428
+ # @ wp-members
429
+ #: admin/tab-dialogs.php:35
430
+ msgid "Password changes"
431
+ msgstr "비밀번호 변경"
432
+
433
+ # @ wp-members
434
+ #: admin/tab-dialogs.php:36
435
+ msgid "Username or email do not exist when trying to reset forgotten password"
436
+ msgstr "분실 비밀번호 초기화 시 아이디 또는 이메일이 존재하지 않습니다"
437
+
438
+ # @ wp-members
439
+ #: admin/tab-dialogs.php:37
440
+ msgid "Password reset"
441
+ msgstr "비밀번호 초기화"
442
+
443
+ # @ wp-members
444
+ #: admin/tab-dialogs.php:54
445
+ msgid "Dialogs and Error Messages"
446
+ msgstr "대화 및 에러 메시지"
447
+
448
+ # @ wp-members
449
+ #: admin/tab-dialogs.php:56
450
+ #, php-format
451
+ msgid ""
452
+ "You can customize the text for dialogs and error messages. Simple HTML is "
453
+ "allowed %s etc."
454
+ msgstr ""
455
+ "대화 및 에러 메시지 텍스트를 사용자 정의 할 수 있습니다. 간단한 HTML은 허용 "
456
+ "됩니다 %s 등."
457
+
458
+ # @ wp-members
459
+ #: admin/tab-dialogs.php:69
460
+ msgid "Terms of Service (TOS)"
461
+ msgstr "이용약관"
462
+
463
+ # @ wp-members
464
+ #: admin/tab-dialogs.php:76
465
+ msgid "Update Dialogs"
466
+ msgstr "대화 업데이트"
467
+
468
+ # @ wp-members
469
+ #: admin/tab-dialogs.php:115
470
+ msgid "WP-Members dialogs were updated"
471
+ msgstr "WP-Members 대화가 업데이트 됐습니다"
472
+
473
+ # @ wp-members
474
+ #: admin/tab-emails.php:30
475
+ msgid "New Registration"
476
+ msgstr "새 회원가입"
477
+
478
+ # @ wp-members
479
+ #: admin/tab-emails.php:34
480
+ msgid "Registration is Moderated"
481
+ msgstr "회원가입이 검토됐습니다"
482
+
483
+ # @ wp-members
484
+ #: admin/tab-emails.php:35
485
+ msgid "Registration is Moderated, User is Approved"
486
+ msgstr "회원가입이 검토됐으며 사용자 승인됐습니다"
487
+
488
+ # @ wp-members
489
+ #: admin/tab-emails.php:40
490
+ msgid "Password Reset"
491
+ msgstr "비밀번호 초기화"
492
+
493
+ # @ wp-members
494
+ #: admin/tab-emails.php:45
495
+ msgid "Admin Notification"
496
+ msgstr "관리자 알림"
497
+
498
+ # @ wp-members
499
+ #: admin/tab-emails.php:50
500
+ msgid "Email Signature"
501
+ msgstr "이메일 서명"
502
+
503
+ # @ wp-members
504
+ #: admin/tab-emails.php:57
505
+ msgid "Email Messages"
506
+ msgstr "이메일 메시지"
507
+
508
+ # @ wp-members
509
+ #: admin/tab-emails.php:60
510
+ msgid "You can customize the content of the emails sent by the plugin."
511
+ msgstr "플러그인에 의해 보내지는 이메일 콘텐츠를 사용자 정의 할 수 있습니다."
512
+
513
+ # @ wp-members
514
+ #: admin/tab-emails.php:62
515
+ msgid "A list of shortcodes is available here."
516
+ msgstr "단축코드 목록은 여기서 가능합니다."
517
+
518
+ # @ wp-members
519
+ #: admin/tab-emails.php:69
520
+ msgid "Set a custom email address"
521
+ msgstr "사용자 정의 이메일 주소 설정"
522
+
523
+ # @ wp-members
524
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
525
+ msgid "(optional)"
526
+ msgstr "(선택적)"
527
+
528
+ # @ wp-members
529
+ #: admin/tab-emails.php:73
530
+ msgid "Set a custom email name"
531
+ msgstr "사용자 정의 이메일 이름 설정"
532
+
533
+ # @ wp-members
534
+ #: admin/tab-emails.php:84
535
+ msgid "Subject"
536
+ msgstr "제목"
537
+
538
+ # @ wp-members
539
+ #: admin/tab-emails.php:88
540
+ msgid "Body"
541
+ msgstr "바디"
542
+
543
+ # @ wp-members
544
+ #: admin/tab-emails.php:105
545
+ msgid "Update Emails"
546
+ msgstr "이메일 업데이트"
547
+
548
+ # @ wp-members
549
+ #: admin/tab-emails.php:161
550
+ msgid "WP-Members emails were updated"
551
+ msgstr "WP-Members 이메일이 업데이트 됐습니다"
552
+
553
+ # @ wp-members
554
+ #: admin/tab-fields.php:166
555
+ msgid "WP-Members fields were updated"
556
+ msgstr "WP-Members 필드가 업데이트 됐습니다"
557
+
558
+ # @ wp-members
559
+ #: admin/tab-fields.php:176
560
+ msgid "Field Label is required for adding a new field. Nothing was updated."
561
+ msgstr ""
562
+ "새 필드를 추가하려면 필드 레이블은 필수입니다. 아무것도 업데이트 되지 않았습"
563
+ "니다."
564
+
565
+ # @ wp-members
566
+ #: admin/tab-fields.php:177
567
+ msgid "Option Name is required for adding a new field. Nothing was updated."
568
+ msgstr ""
569
+ "옵션 이름은 새 필드를 추가하는데 필수입니다. 아무것도 업데이트 되지 않았습니"
570
+ "다."
571
+
572
+ #: admin/tab-fields.php:184
573
+ msgid "A field with that option name already exists"
574
+ msgstr "해당 옵션 이름의 필드는 이미 존재합니다"
575
+
576
+ # @ wp-members
577
+ #: admin/tab-fields.php:201
578
+ msgid "Checked value is required for checkboxes. Nothing was updated."
579
+ msgstr "Checked 값은 체크박스에 필수입니다. 아무것도 업데이트 되지 않았습니다."
580
+
581
+ # @ wp-members
582
+ #: admin/tab-fields.php:223
583
+ msgid "field was added"
584
+ msgstr "필드가 추가됐습니다"
585
+
586
+ # @ wp-members
587
+ #: admin/tab-fields.php:241
588
+ msgid "field was updated"
589
+ msgstr "필드가 업데이트 됐습니다"
590
+
591
+ # @ wp-members
592
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
593
+ msgid "Edit Field"
594
+ msgstr "필드 편집"
595
+
596
+ # @ wp-members
597
+ #: admin/tab-fields.php:289
598
+ msgid "Add a Field"
599
+ msgstr "필드 추가"
600
+
601
+ # @ wp-members
602
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
603
+ msgid "Field Label"
604
+ msgstr "필드 레이블"
605
+
606
+ # @ wp-members
607
+ #: admin/tab-fields.php:297
608
+ msgid "The name of the field as it will be displayed to the user."
609
+ msgstr "사용자에게 표시되는 필드 이름"
610
+
611
+ # @ wp-members
612
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
613
+ msgid "Option Name"
614
+ msgstr "옵션 이름"
615
+
616
+ # @ wp-members
617
+ #: admin/tab-fields.php:306
618
+ msgid ""
619
+ "The database meta value for the field. It must be unique and contain no "
620
+ "spaces (underscores are ok)."
621
+ msgstr ""
622
+ "필드의 데이터베이스 메타 값. 독특해야 하며 스페이스가 없어야 합니다 (밑줄은 "
623
+ "가능)"
624
+
625
+ # @ wp-members
626
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
627
+ msgid "Field Type"
628
+ msgstr "필드 타입"
629
+
630
+ # @ wp-members
631
+ #: admin/tab-fields.php:316
632
+ msgid "text"
633
+ msgstr "텍스트"
634
+
635
+ # @ wp-members
636
+ #: admin/tab-fields.php:317
637
+ msgid "textarea"
638
+ msgstr "textarea"
639
+
640
+ # @ wp-members
641
+ #: admin/tab-fields.php:318
642
+ msgid "checkbox"
643
+ msgstr "checkbox"
644
+
645
+ # @ wp-members
646
+ #: admin/tab-fields.php:319
647
+ msgid "dropdown"
648
+ msgstr "드롭다운"
649
+
650
+ # @ wp-members
651
+ #: admin/tab-fields.php:320
652
+ msgid "password"
653
+ msgstr "비밀번호"
654
+
655
+ # @ wp-members
656
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
657
+ msgid "Display?"
658
+ msgstr "표시?"
659
+
660
+ # @ wp-members
661
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
662
+ msgid "Required?"
663
+ msgstr "필수?"
664
+
665
+ # @ wp-members
666
+ #: admin/tab-fields.php:334
667
+ msgid "Additional information for checkbox fields"
668
+ msgstr "체크박스 추가 정보"
669
+
670
+ # @ wp-members
671
+ #: admin/tab-fields.php:337
672
+ msgid "Checked by default?"
673
+ msgstr "기본으로 체크?"
674
+
675
+ # @ wp-members
676
+ #: admin/tab-fields.php:341
677
+ msgid "Stored value if checked:"
678
+ msgstr "체크된 경우 저장된 값:"
679
+
680
+ # @ wp-members
681
+ #: admin/tab-fields.php:347
682
+ msgid "Additional information for dropdown fields"
683
+ msgstr "드롭다운 필드 추가 정보"
684
+
685
+ # @ wp-members
686
+ #: admin/tab-fields.php:350
687
+ msgid "For dropdown, array of values:"
688
+ msgstr "드롭다운의 경우 값 배열(array):"
689
+
690
+ # @ wp-members
691
+ #: admin/tab-fields.php:375
692
+ msgid "Options should be Option Name|option_value,"
693
+ msgstr "옵션은 Option Name|option_value이어야 합니다,"
694
+
695
+ # @ wp-members
696
+ #: admin/tab-fields.php:379
697
+ msgid "Visit plugin site for more information"
698
+ msgstr "더 많은 정보는 플러그인 사이트를 방문하세요"
699
+
700
+ # @ wp-members
701
+ #: admin/tab-fields.php:385
702
+ msgid "Add Field"
703
+ msgstr "필드 추가"
704
+
705
+ # @ wp-members
706
+ #: admin/tab-fields.php:407
707
+ msgid "Manage Fields"
708
+ msgstr "필드 관리"
709
+
710
+ # @ wp-members
711
+ #: admin/tab-fields.php:409
712
+ msgid ""
713
+ "Determine which fields will display and which are required. This includes "
714
+ "all fields, both native WP fields and WP-Members custom fields."
715
+ msgstr ""
716
+ "표시할 필드와 필수를 결정하세요. 이것은 모든 필드를 포함하며 워드프레스 기본 "
717
+ "필드와 WP-Members 사용자 정의 필드입니다."
718
+
719
+ # @ wp-members
720
+ #: admin/tab-fields.php:410
721
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
722
+ msgstr "(주의: 이메일은 항상 필수이며 변경할 수 없습니다.)"
723
+
724
+ # @ wp-members
725
+ #: admin/tab-fields.php:415
726
+ msgid "Add/Delete"
727
+ msgstr "추가/삭제"
728
+
729
+ # @ wp-members
730
+ #: admin/tab-fields.php:421
731
+ msgid "Checked?"
732
+ msgstr "Checked?"
733
+
734
+ #: admin/tab-fields.php:423
735
+ msgid "Users Screen"
736
+ msgstr "사용자 화면"
737
+
738
+ # @ wp-members
739
+ #: admin/tab-fields.php:435
740
+ msgid "Delete"
741
+ msgstr "삭제"
742
+
743
+ # @ wp-members
744
+ #: admin/tab-fields.php:447
745
+ msgid "(Email cannot be removed)"
746
+ msgstr "(이메일은 제거될 수 없습니다)"
747
+
748
+ # @ wp-members
749
+ #: admin/tab-fields.php:467
750
+ msgid "Registration Date"
751
+ msgstr "회원가입 일자"
752
+
753
+ # @ wp-members
754
+ #: admin/tab-fields.php:470
755
+ msgid "native"
756
+ msgstr "워드프레스 기본"
757
+
758
+ # @ default
759
+ #: admin/tab-fields.php:480
760
+ msgid "Active"
761
+ msgstr "활성"
762
+
763
+ # @ wp-members
764
+ #: admin/tab-fields.php:492
765
+ msgid "Registration IP"
766
+ msgstr "회원가입 IP"
767
+
768
+ # @ wp-members
769
+ #: admin/tab-fields.php:527
770
+ msgid "Update Fields"
771
+ msgstr "필드 업데이트"
772
+
773
+ # @ wp-members
774
+ #: admin/tab-options.php:48
775
+ msgid "Manage Options"
776
+ msgstr "옵션 관리"
777
+
778
+ # @ wp-members
779
+ #: admin/tab-options.php:54
780
+ msgid "Block Posts by default"
781
+ msgstr "기본으로 글 차단"
782
+
783
+ # @ wp-members
784
+ #: admin/tab-options.php:54
785
+ msgid ""
786
+ "Note: Posts can still be individually blocked or unblocked at the article "
787
+ "level"
788
+ msgstr "주의: 글은 개별 글에서 차단하거나 차단해제 될 수 있습니다"
789
+
790
+ # @ wp-members
791
+ #: admin/tab-options.php:55
792
+ msgid "Block Pages by default"
793
+ msgstr "기본으로 페이지 차단"
794
+
795
+ # @ wp-members
796
+ #: admin/tab-options.php:55
797
+ msgid ""
798
+ "Note: Pages can still be individually blocked or unblocked at the article "
799
+ "level"
800
+ msgstr "주의: 페이지는 개별 페이지에서 차단하거나 차단해제 될 수 있습니다"
801
+
802
+ # @ wp-members
803
+ #: admin/tab-options.php:56
804
+ msgid "Show excerpts"
805
+ msgstr "요약 보이기"
806
+
807
+ # @ wp-members
808
+ #: admin/tab-options.php:56
809
+ msgid ""
810
+ "Shows excerpted content above the login/registration on both Posts and Pages"
811
+ msgstr "글 및 페이지에서 로그인/회원가입 위에 요약 콘텐츠 보이기"
812
+
813
+ # @ wp-members
814
+ #: admin/tab-options.php:57
815
+ msgid "Notify admin"
816
+ msgstr "관리자에게 알림"
817
+
818
+ # @ wp-members
819
+ #: admin/tab-options.php:57
820
+ #, php-format
821
+ msgid "Notify %s for each new registration? %s"
822
+ msgstr "새로운 새로운 회원가입을 %s에 알림? %s"
823
+
824
+ # @ wp-members
825
+ #: admin/tab-options.php:58
826
+ msgid "Moderate registration"
827
+ msgstr "회원가입 검토"
828
+
829
+ # @ wp-members
830
+ #: admin/tab-options.php:58
831
+ msgid "Holds new registrations for admin approval"
832
+ msgstr "새 회원가입은 관리자 승인 필요"
833
+
834
+ # @ wp-members
835
+ #: admin/tab-options.php:91
836
+ msgid "Enable CAPTCHA"
837
+ msgstr "CAPTCHA 활성화"
838
+
839
+ # @ wp-members
840
+ #: admin/tab-options.php:59
841
+ msgid "Turns on CAPTCHA for registration"
842
+ msgstr "회원가입에 CAPTCHA 켜기"
843
+
844
+ # @ wp-members
845
+ #: admin/tab-options.php:60
846
+ msgid "Hide registration"
847
+ msgstr "회원가입 감추기"
848
+
849
+ #: admin/tab-options.php:60
850
+ msgid "Removes the registration form from blocked content"
851
+ msgstr "차단된 콘텐츠로부터 회원가입 폼 제거"
852
+
853
+ # @ wp-members
854
+ #: admin/tab-options.php:62
855
+ msgid "Time-based expiration"
856
+ msgstr "시간 기준 만료"
857
+
858
+ # @ wp-members
859
+ #: admin/tab-options.php:62
860
+ msgid "Allows for access to expire"
861
+ msgstr "만료에 접근 허용"
862
+
863
+ # @ wp-members
864
+ #: admin/tab-options.php:63
865
+ msgid "Trial period"
866
+ msgstr "시험 사용 기간"
867
+
868
+ # @ wp-members
869
+ #: admin/tab-options.php:63
870
+ msgid "Allows for a trial period"
871
+ msgstr "시험사용 기간 허요"
872
+
873
+ # @ wp-members
874
+ #: admin/tab-options.php:64
875
+ msgid "Ignore warning messages"
876
+ msgstr "경고 메시지 무시하기"
877
+
878
+ # @ wp-members
879
+ #: admin/tab-options.php:64
880
+ msgid "Ignores WP-Members warning messages in the admin panel"
881
+ msgstr "관리자 화면에서 WP-Members 경고 메시지 무시하기"
882
+
883
+ #: admin/tab-options.php:81
884
+ msgid "Attribution"
885
+ msgstr "기여"
886
+
887
+ #: admin/tab-options.php:83
888
+ msgid ""
889
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
890
+ msgstr ""
891
+ "기여에 대해 감사드립니다! 회원가입 폼에 \"powered by\" 링크를 표시해주세요."
892
+
893
+ # @ wp-members
894
+ #: admin/tab-options.php:87
895
+ msgid "Auto Excerpt:"
896
+ msgstr "자동 요약:"
897
+
898
+ # @ wp-members
899
+ #: admin/tab-options.php:88
900
+ msgid "Number of words in excerpt:"
901
+ msgstr "요약에서 단어 수:"
902
+
903
+ # @ wp-members
904
+ #: admin/tab-options.php:88 admin/tab-options.php:108
905
+ #: admin/tab-options.php:118 admin/tab-options.php:132
906
+ msgid "Optional"
907
+ msgstr "선택적"
908
+
909
+ # @ wp-members
910
+ #: admin/tab-options.php:88
911
+ msgid "Automatically creates an excerpt"
912
+ msgstr "자동으로 요약 만들기"
913
+
914
+ #: admin/tab-options.php:103
915
+ msgid "User Profile Page:"
916
+ msgstr "사용자 프로필 페이지:"
917
+
918
+ #: admin/tab-options.php:106
919
+ msgid "For creating a forgot password link in the login form"
920
+ msgstr "로그인 폼에서 분실 비밀번호 링크 생성"
921
+
922
+ # @ wp-members
923
+ #: admin/tab-options.php:113
924
+ msgid "Register Page:"
925
+ msgstr "회원가입 페이지:"
926
+
927
+ #: admin/tab-options.php:116
928
+ msgid "For creating a register link in the login form"
929
+ msgstr "로그인 폼에 회원가입 링크 생성"
930
+
931
+ # @ wp-members
932
+ #: admin/tab-options.php:126
933
+ msgid "Select a stylesheet or specify a custom stylesheet below"
934
+ msgstr "스타일시트를 선택하거나 아래에서 사용자 정의 스타일시트를 특정하세요"
935
+
936
+ # @ wp-members
937
+ #: admin/tab-options.php:131
938
+ msgid "Custom Stylesheet:"
939
+ msgstr "사용자 정의 스타일시트:"
940
+
941
+ # @ wp-members
942
+ #: admin/tab-options.php:136
943
+ msgid "Update Settings"
944
+ msgstr "설정 업데이트"
945
+
946
+ # @ wp-members
947
+ #: admin/tab-options.php:246
948
+ msgid "WP-Members settings were updated"
949
+ msgstr "WP-Members 설정이 업데이트 됐습니다"
950
+
951
+ #: admin/tab-options.php:296
952
+ msgid "Select a page"
953
+ msgstr "페이지 선택"
954
+
955
+ #: admin/tab-options.php:304
956
+ msgid "USE CUSTOM URL BELOW"
957
+ msgstr "아래에서 사용자 정의 URL 사용"
958
+
959
+ # @ wp-members
960
+ #: admin/user-export.php:57 admin/user-export.php:172
961
+ msgid "Activated?"
962
+ msgstr "활성화?"
963
+
964
+ # @ wp-members
965
+ #: admin/user-export.php:61 admin/user-export.php:175
966
+ msgid "Subscription"
967
+ msgstr "구독"
968
+
969
+ # @ wp-members
970
+ #: admin/user-export.php:61 admin/user-export.php:175
971
+ msgid "Expires"
972
+ msgstr "만료"
973
+
974
+ # @ wp-members
975
+ #: admin/user-export.php:64 admin/user-export.php:178
976
+ msgid "Registered"
977
+ msgstr "등록됨"
978
+
979
+ # @ wp-members
980
+ #: admin/user-export.php:65 admin/user-export.php:179
981
+ msgid "IP"
982
+ msgstr "IP"
983
+
984
+ # @ wp-members
985
+ #: admin/user-profile.php:46
986
+ msgid "WP-Members Additional Fields"
987
+ msgstr "WP-Members 추가 필드"
988
+
989
+ # @ wp-members
990
+ #: admin/user-profile.php:66 native-registration.php:36
991
+ #: native-registration.php:159 users.php:62
992
+ msgid "(required)"
993
+ msgstr "(필수)"
994
+
995
+ # @ wp-members
996
+ #: admin/user-profile.php:98
997
+ msgid "Activate this user?"
998
+ msgstr "이 사용자 활성화?"
999
+
1000
+ # @ wp-members
1001
+ #: admin/user-profile.php:103
1002
+ msgid "Reactivate this user?"
1003
+ msgstr "이 사용자 재활성화?"
1004
+
1005
+ # @ wp-members
1006
+ #: admin/user-profile.php:108
1007
+ msgid "Deactivate this user?"
1008
+ msgstr "이 사용자 비활성화?"
1009
+
1010
+ # @ wp-members
1011
+ #: admin/user-profile.php:129
1012
+ msgid "IP @ registration"
1013
+ msgstr "IP @ registration"
1014
+
1015
+ # @ default
1016
+ #: admin/users.php:45 admin/users.php:49
1017
+ msgid "Export"
1018
+ msgstr "내보내기"
1019
+
1020
+ #: admin/users.php:50 admin/users.php:91
1021
+ msgid "Export All Users"
1022
+ msgstr "모든 사용자 내보내기"
1023
+
1024
+ # @ wp-members
1025
+ #: forms.php:95
1026
+ msgid "Existing Users Log In"
1027
+ msgstr "기존 사용자 로그인"
1028
+
1029
+ # @ wp-members
1030
+ #: forms.php:161 wp-members-dialogs.php:192
1031
+ msgid "Change Password"
1032
+ msgstr "비밀번호 변경"
1033
+
1034
+ # @ wp-members
1035
+ #: forms.php:163
1036
+ msgid "Update Password"
1037
+ msgstr "비밀번호 업데이트"
1038
+
1039
+ # @ wp-members
1040
+ #: forms.php:227
1041
+ msgid "Reset Forgotten Password"
1042
+ msgstr "분실 비밀번호 초기화"
1043
+
1044
+ # @ wp-members
1045
+ #: forms.php:403
1046
+ msgid "Forgot password?"
1047
+ msgstr "비밀번호 분실"
1048
+
1049
+ # @ wp-members
1050
+ #: forms.php:403
1051
+ msgid "Click here to reset"
1052
+ msgstr "초기화"
1053
+
1054
+ # @ wp-members
1055
+ #: forms.php:418
1056
+ msgid "New User?"
1057
+ msgstr "신규 가입"
1058
+
1059
+ # @ wp-members
1060
+ #: forms.php:418
1061
+ msgid "Click here to register"
1062
+ msgstr "회원가입"
1063
+
1064
+ # @ wp-members
1065
+ #: forms.php:515
1066
+ msgid "Required field"
1067
+ msgstr "필수란"
1068
+
1069
+ # @ wp-members
1070
+ #: forms.php:521
1071
+ msgid "Reset Form"
1072
+ msgstr "폼 초기화"
1073
+
1074
+ # @ wp-members
1075
+ #: forms.php:523
1076
+ msgid "Update Profile"
1077
+ msgstr "프로필 업데이트"
1078
+
1079
+ # @ wp-members
1080
+ #: forms.php:561
1081
+ msgid "Choose a Username"
1082
+ msgstr "아이디"
1083
+
1084
+ # @ wp-members
1085
+ #: forms.php:683 native-registration.php:65
1086
+ #, php-format
1087
+ msgid "Please indicate that you agree to the %s TOS %s"
1088
+ msgstr "%s 이용약관 %s에 동의해주세요"
1089
+
1090
+ # @ wp-members
1091
+ #: forms.php:852
1092
+ msgid "New User Registration"
1093
+ msgstr "새로운 사용자 등록"
1094
+
1095
+ #: forms.php:1018
1096
+ msgid "Input the code:"
1097
+ msgstr "코드 삽입:"
1098
+
1099
+ # @ wp-members
1100
+ #: users.php:38
1101
+ msgid "Additional Information"
1102
+ msgstr "추가 정보"
1103
+
1104
+ # @ default
1105
+ #: wp-members-core.php:118 wp-members-core.php:245
1106
+ msgid "There was an error with the CAPTCHA form."
1107
+ msgstr "CAPTCHA 폼에 에러가 있습니다."
1108
+
1109
+ # @ wp-members
1110
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1111
+ msgid "Edit Your Information"
1112
+ msgstr "정보 변경하기"
1113
+
1114
+ # @ wp-members
1115
+ #: wp-members-core.php:544
1116
+ msgid "<strong>ERROR</strong>: User has not been activated."
1117
+ msgstr "<strong>에러</strong>: 사용자가 활성화 되지 않았습니다."
1118
+
1119
+ # @ wp-members
1120
+ #: wp-members-core.php:903 wp-members-register.php:93
1121
+ #, php-format
1122
+ msgid "Sorry, %s is a required field."
1123
+ msgstr "죄송합니다. %s는 필수란입니다."
1124
+
1125
+ # @ wp-members
1126
+ #: wp-members-dialogs.php:42
1127
+ msgid "Login Failed!"
1128
+ msgstr "로그인 실패"
1129
+
1130
+ # @ wp-members
1131
+ #: wp-members-dialogs.php:45
1132
+ msgid "You entered an invalid username or password."
1133
+ msgstr "유효하지 않은 아이디 또는 비밀번호입니다."
1134
+
1135
+ # @ wp-members
1136
+ #: wp-members-dialogs.php:47
1137
+ msgid "Click here to continue."
1138
+ msgstr "계속하기"
1139
+
1140
+ # @ wp-members
1141
+ #: wp-members-dialogs.php:191
1142
+ msgid "Edit My Information"
1143
+ msgstr "내 정보 수정"
1144
+
1145
+ # @ wp-members
1146
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1147
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1148
+ #: wp-members-sidebar.php:246
1149
+ #, php-format
1150
+ msgid "You are logged in as %s"
1151
+ msgstr "%s으로 로그인 됨"
1152
+
1153
+ # @ wp-members
1154
+ #: wp-members-dialogs.php:208
1155
+ msgid "Click to log out."
1156
+ msgstr "로그아웃 하려면 클릭"
1157
+
1158
+ # @ wp-members
1159
+ #: wp-members-dialogs.php:209
1160
+ msgid "Begin using the site."
1161
+ msgstr "사이트 사용하기"
1162
+
1163
+ # @ wp-members
1164
+ #: wp-members-dialogs.php:225
1165
+ msgid "Click to log out"
1166
+ msgstr "로그아웃 하려면 클릭"
1167
+
1168
+ # @ wp-members
1169
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1170
+ msgid "click to log out"
1171
+ msgstr "로그아웃 하려면 클릭"
1172
+
1173
+ # @ wp-members
1174
+ #: wp-members-dialogs.php:271
1175
+ msgid "Password fields cannot be empty"
1176
+ msgstr "비밀번호는 필수입니다."
1177
+
1178
+ # @ default
1179
+ #: wp-members-register.php:51
1180
+ msgid "There was an error processing the form."
1181
+ msgstr "폼 처리 중 에러가 있습니다."
1182
+
1183
+ # @ wp-members
1184
+ #: wp-members-register.php:110
1185
+ msgid "Sorry, username is a required field"
1186
+ msgstr "죄송합니다. 아이디는 필수란입니다."
1187
+
1188
+ # @ wp-members
1189
+ #: wp-members-register.php:111
1190
+ msgid "The username cannot include non-alphanumeric characters."
1191
+ msgstr "아이디는 알파벳이나 숫자만 사용합니다."
1192
+
1193
+ # @ wp-members
1194
+ #: wp-members-register.php:112 wp-members-register.php:282
1195
+ msgid "You must enter a valid email address."
1196
+ msgstr "유효한 이메일 주소를 입력해야 합니다."
1197
+
1198
+ # @ wp-members
1199
+ #: wp-members-register.php:119
1200
+ msgid "Passwords did not match."
1201
+ msgstr "비밀번호가 일치하지 않습니다"
1202
+
1203
+ # @ wp-members
1204
+ #: wp-members-register.php:120 wp-members-register.php:286
1205
+ msgid "Emails did not match."
1206
+ msgstr "이메일이 일치하지 않습니다"
1207
+
1208
+ # @ wp-members
1209
+ #: wp-members-register.php:127
1210
+ msgid "You must complete the CAPTCHA form."
1211
+ msgstr "캡챠 폼을 완성해야 합니다."
1212
+
1213
+ # @ wp-members
1214
+ #: wp-members-register.php:377
1215
+ msgid "We were unable to validate the public key."
1216
+ msgstr "공개 키를 인증할 수 없습니다."
1217
+
1218
+ # @ wp-members
1219
+ #: wp-members-register.php:381
1220
+ msgid "We were unable to validate the private key."
1221
+ msgstr "비공개 키를 인증할 수 없습니다."
1222
+
1223
+ # @ wp-members
1224
+ #: wp-members-register.php:385
1225
+ msgid "The challenge parameter of the verify script was incorrect."
1226
+ msgstr "인증 스크립트 매개변수가 올바르지 않습니다."
1227
+
1228
+ # @ wp-members
1229
+ #: wp-members-register.php:389
1230
+ msgid "The CAPTCHA solution was incorrect."
1231
+ msgstr "CAPTCHA 솔루션이 올바르지 않습니다."
1232
+
1233
+ # @ wp-members
1234
+ #: wp-members-register.php:393
1235
+ msgid "The parameters to verify were incorrect"
1236
+ msgstr "인증할 매개변수가 올바르지 않습니다"
1237
+
1238
+ # @ wp-members
1239
+ #: wp-members-register.php:397
1240
+ msgid ""
1241
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1242
+ msgstr "reCAPTCHA API 키가 보안을 이유로 특정 도메인 이름에 귀속돼있습니다."
1243
+
1244
+ # @ wp-members
1245
+ #: wp-members-register.php:401
1246
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1247
+ msgstr "reCAPTCHA 서버가 응답하지 않습니다. 다시 제출해보세요."
1248
+
1249
+ #: wp-members-register.php:405
1250
+ msgid "You have entered an incorrect code value. Please try again."
1251
+ msgstr "올바른 코드 값을 입력하지 않았습니다. 다시 해주세요."
1252
+
1253
+ # @ wp-members
1254
+ #: wp-members-sidebar.php:117
1255
+ msgid "Login Failed!<br />You entered an invalid username or password."
1256
+ msgstr "로그인 실패!<br />유효하지 않은 아이디 또는 비밀번호를 입력했습니다."
1257
+
1258
+ # @ wp-members
1259
+ #: wp-members-sidebar.php:118
1260
+ msgid "You are not logged in."
1261
+ msgstr "로그인하지 않았습니다."
1262
+
1263
+ #: wp-members-sidebar.php:169
1264
+ msgid "log in"
1265
+ msgstr "로그인"
1266
+
1267
+ # @ wp-members
1268
+ #: wp-members-sidebar.php:180
1269
+ msgid "Forgot?"
1270
+ msgstr "비밀번호 분실"
1271
+
1272
+ # @ wp-members
1273
+ #: wp-members-sidebar.php:247
1274
+ msgid "click here to log out"
1275
+ msgstr "로그아웃 하려면 클릭"
1276
+
1277
+ #: wp-members-sidebar.php:279
1278
+ msgid "Displays the WP-Members sidebar login."
1279
+ msgstr "WP-Members 사이드바 로그인 표시하기."
1280
+
1281
+ # @ wp-members
1282
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1283
+ msgid "Login Status"
1284
+ msgstr "로그인 상태"
1285
+
1286
+ # @ wp-members
1287
+ #: wp-members-sidebar.php:299
1288
+ msgid "Title:"
1289
+ msgstr "제목:"
1290
+
1291
+ # @ wp-members
1292
+ #: wp-members-tos.php:24
1293
+ msgid "Terms of Service"
1294
+ msgstr "이용약관"
1295
+
1296
+ # @ wp-members
1297
+ #: wp-members-tos.php:36
1298
+ #, php-format
1299
+ msgid "%sclose%s"
1300
+ msgstr "%s닫기%s"
1301
+
1302
+ # @ wp-members
1303
+ #: wp-members-tos.php:38
1304
+ #, php-format
1305
+ msgid "%sprint%s"
1306
+ msgstr "%s인쇄%s"
1307
+
1308
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1309
+ #: Strings wp-members-install.php:49
1310
+ msgid "First Name"
1311
+ msgstr "이름"
1312
+
1313
+ # @ wp-members
1314
+ #: wp-members-install.php:50
1315
+ msgid "Last Name"
1316
+ msgstr "성"
1317
+
1318
+ #: wp-members-install.php:51
1319
+ msgid "Address 1"
1320
+ msgstr "주소1"
1321
+
1322
+ #: wp-members-install.php:52
1323
+ msgid "Address 2"
1324
+ msgstr "주소2"
1325
+
1326
+ #: wp-members-install.php:53
1327
+ msgid "City"
1328
+ msgstr "시"
1329
+
1330
+ #: wp-members-install.php:54
1331
+ msgid "State"
1332
+ msgstr "주"
1333
+
1334
+ #: wp-members-install.php:55
1335
+ msgid "Zip"
1336
+ msgstr "우편번호"
1337
+
1338
+ #: wp-members-install.php:56
1339
+ msgid "Country"
1340
+ msgstr "국가"
1341
+
1342
+ #: wp-members-install.php:57
1343
+ msgid "Day Phone"
1344
+ msgstr "전화번호"
1345
+
1346
+ #: wp-members-install.php:59
1347
+ msgid "Website"
1348
+ msgstr "웹사이트"
1349
+
1350
+ #: wp-members-install.php:60
1351
+ msgid "AIM"
1352
+ msgstr "AIM"
1353
+
1354
+ #: wp-members-install.php:61
1355
+ msgid "Yahoo IM"
1356
+ msgstr "Yahoo IM"
1357
+
1358
+ #: wp-members-install.php:62
1359
+ msgid "Jabber/Google Talk"
1360
+ msgstr "Jabber / 구글 토크"
1361
+
1362
+ #: wp-members-install.php:63
1363
+ msgid "Biographical Info"
1364
+ msgstr "자기 소개"
1365
+
1366
+ #: wp-members-install.php:64 wp-members-install.php:211
1367
+ msgid "TOS"
1368
+ msgstr "이용약관"
1369
+
1370
+ #: Error message dialog strings wp-members-install.php:96
1371
+ msgid ""
1372
+ "This content is restricted to site members. If you are an existing user, "
1373
+ "please log in. New users may register below."
1374
+ msgstr ""
1375
+ "이 콘텐츠는 사이트 회원 전용입니다. 기존의 사용자라면 로그인 하세요. 새 사용"
1376
+ "자는 아래에서 회원가입 할 수 있습니다."
1377
+
1378
+ #: wp-members-install.php:97
1379
+ msgid "Sorry, that username is taken, please try another."
1380
+ msgstr "죄송합니다. 해당 아이디는 사용 중입니다. 다른 것으로 해주세요."
1381
+
1382
+ #: wp-members-install.php:98
1383
+ msgid ""
1384
+ "Sorry, that email address already has an account.<br />Please try another."
1385
+ msgstr ""
1386
+ "죄송합니다. 해당 이메일 주소는 이미 사용 중입니다. <br />다른 것으로 해주세"
1387
+ "요."
1388
+
1389
+ #: wp-members-install.php:99
1390
+ msgid ""
1391
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1392
+ "log in using the password that was emailed to you."
1393
+ msgstr ""
1394
+ "축하합니다! 회원가입이 성공했습니다.<br /><br />이메일로 보낸 비밀번호를 사용"
1395
+ "해서 로그인 할 수 있습니다."
1396
+
1397
+ # @ wp-members
1398
+ #: wp-members-install.php:100
1399
+ msgid "Your information was updated!"
1400
+ msgstr "회원 정보가 업데이트 됐습니다!"
1401
+
1402
+ # @ wp-members
1403
+ #: wp-members-install.php:101
1404
+ msgid "Passwords did not match.<br /><br />Please try again."
1405
+ msgstr "비밀번호가 일치하지 않습니다. <br /><br />다시 해주세요."
1406
+
1407
+ #: wp-members-install.php:102
1408
+ msgid ""
1409
+ "Password successfully changed!<br /><br />You will need to re-login with "
1410
+ "your new password."
1411
+ msgstr ""
1412
+ "비밀번호 변경이 성공했습니다!<br /><br />새 비밀번호로 재로그인 해야 합니다."
1413
+
1414
+ # @ wp-members
1415
+ #: wp-members-install.php:103
1416
+ msgid "Either the username or email address do not exist in our records."
1417
+ msgstr "사용자명 또는 이메일 주소가 데이터베이스에 존재하지 않습니다."
1418
+
1419
+ #: wp-members-install.php:104
1420
+ msgid ""
1421
+ "Password successfully reset!<br /><br />An email containing a new password "
1422
+ "has been sent to the email address on file for your account. You may change "
1423
+ "this random password then re-login with your new password."
1424
+ msgstr ""
1425
+ "비밀번호 초기화가 성공했습니다!<br /><br />새 비밀번호가 포함된 이메일을 계"
1426
+ "정 이메일 주소로 보냈습니다. 이 랜덤 비밀번호를 변경할 수 있으며 새로운 비밀"
1427
+ "번호로 재 로그인 하세요."
lang/wp-members-nb_NO.mo ADDED
Binary file
lang/wp-members-nb_NO.po ADDED
@@ -0,0 +1,1234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.6.4\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2012-02-05 09:32+0100\n"
8
+ "PO-Revision-Date: 2014-08-29 13:57-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: <mikael.boldt@mail.dk>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_c\n"
16
+ "X-Poedit-Basepath: D:\\downloads\\wp-members\\\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "Language: nb_NO\n"
19
+ "X-Generator: Poedit 1.6.4\n"
20
+ "X-Poedit-SearchPath-0: D:\\downloads\\wp-members\n"
21
+
22
+ #: D:\downloads\wp-members/wp-members-admin.php:35
23
+ #: D:\downloads\wp-members/wp-members-admin.php:676
24
+ msgid "Settings"
25
+ msgstr "Innstillinger"
26
+
27
+ #: D:\downloads\wp-members/wp-members-admin.php:72
28
+ msgid "WP-Members Additional Fields"
29
+ msgstr "WP-Members Ekstra Felter"
30
+
31
+ #: D:\downloads\wp-members/wp-members-admin.php:102
32
+ msgid "Activate this user?"
33
+ msgstr "Aktiver bruker?"
34
+
35
+ #: D:\downloads\wp-members/wp-members-admin.php:117
36
+ msgid "IP @ registration"
37
+ msgstr "IP @ registrering"
38
+
39
+ #: D:\downloads\wp-members/wp-members-admin.php:164
40
+ msgid "Manage Options"
41
+ msgstr "Administrer valg"
42
+
43
+ #: D:\downloads\wp-members/wp-members-admin.php:169
44
+ msgid "Block Posts by default"
45
+ msgstr "Bloker Innlegg som standard"
46
+
47
+ #: D:\downloads\wp-members/wp-members-admin.php:169
48
+ msgid ""
49
+ "Note: Posts can still be individually blocked or unblocked at the article "
50
+ "level"
51
+ msgstr ""
52
+ "NB: Innlegg kan fortsatt blokeres eller åpnes individuelt under redigering"
53
+
54
+ #: D:\downloads\wp-members/wp-members-admin.php:170
55
+ msgid "Block Pages by default"
56
+ msgstr "Bloker Sider som standard"
57
+
58
+ #: D:\downloads\wp-members/wp-members-admin.php:170
59
+ msgid ""
60
+ "Note: Pages can still be individually blocked or unblocked at the article "
61
+ "level"
62
+ msgstr ""
63
+ "NB: Sider kan forsatt blokeres eller åpnes individuelt under redigering"
64
+
65
+ #: D:\downloads\wp-members/wp-members-admin.php:171
66
+ msgid "Show excerpts"
67
+ msgstr "Vis Utdrag"
68
+
69
+ #: D:\downloads\wp-members/wp-members-admin.php:171
70
+ msgid ""
71
+ "Shows excerpted content above the login/registration on both Posts and Pages"
72
+ msgstr "Vis utdrag før pålogging / registrering på innlegg og sider"
73
+
74
+ #: D:\downloads\wp-members/wp-members-admin.php:172
75
+ msgid "Notify admin"
76
+ msgstr "Gi beskjed til admin"
77
+
78
+ #: D:\downloads\wp-members/wp-members-admin.php:172
79
+ msgid "Sends email to admin for each new registration?"
80
+ msgstr "Send e-post til admin for hver ny registrering?"
81
+
82
+ #: D:\downloads\wp-members/wp-members-admin.php:173
83
+ msgid "Moderate registration"
84
+ msgstr "Redigere registrering"
85
+
86
+ #: D:\downloads\wp-members/wp-members-admin.php:173
87
+ msgid "Holds new registrations for admin approval"
88
+ msgstr "Nye registreringer krever godkjennelse fra admin"
89
+
90
+ #: D:\downloads\wp-members/wp-members-admin.php:174
91
+ msgid "Use reCAPTCHA"
92
+ msgstr "Bruk reCAPTCHA"
93
+
94
+ #: D:\downloads\wp-members/wp-members-admin.php:174
95
+ msgid "Turns on CAPTCHA for registration"
96
+ msgstr "Slår på CAPTCHA under registrering"
97
+
98
+ #: D:\downloads\wp-members/wp-members-admin.php:175
99
+ msgid "Turn off registration"
100
+ msgstr "Avbryt registrering"
101
+
102
+ #: D:\downloads\wp-members/wp-members-admin.php:175
103
+ msgid "Turns off the registration process, only allows login"
104
+ msgstr "Avbryt registrering, tilat kun login"
105
+
106
+ #: D:\downloads\wp-members/wp-members-admin.php:177
107
+ msgid "Legacy forms"
108
+ msgstr "Legacy forms"
109
+
110
+ #: D:\downloads\wp-members/wp-members-admin.php:177
111
+ msgid ""
112
+ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less forms)"
113
+ msgstr ""
114
+ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less forms)"
115
+
116
+ #: D:\downloads\wp-members/wp-members-admin.php:178
117
+ msgid "Time-based expiration"
118
+ msgstr "Time-based expiration"
119
+
120
+ #: D:\downloads\wp-members/wp-members-admin.php:178
121
+ msgid "Allows for access to expire"
122
+ msgstr "Allows for access to expire"
123
+
124
+ #: D:\downloads\wp-members/wp-members-admin.php:179
125
+ msgid "Trial period"
126
+ msgstr "Prøveperiode"
127
+
128
+ #: D:\downloads\wp-members/wp-members-admin.php:179
129
+ msgid "Allows for a trial period"
130
+ msgstr "tillater en prøveperiode"
131
+
132
+ #: D:\downloads\wp-members/wp-members-admin.php:180
133
+ msgid "Ignore warning messages"
134
+ msgstr "Ignorer advarsels-meldinger"
135
+
136
+ #: D:\downloads\wp-members/wp-members-admin.php:180
137
+ msgid "Ignores WP-Members warning messages in the admin panel"
138
+ msgstr "Ignorer WP-Members advarsel-meldinger i admin"
139
+
140
+ #: D:\downloads\wp-members/wp-members-admin.php:198
141
+ msgid "Members Area URL:"
142
+ msgstr "Members Area URL:"
143
+
144
+ #: D:\downloads\wp-members/wp-members-admin.php:199
145
+ #: D:\downloads\wp-members/wp-members-admin.php:205
146
+ #: D:\downloads\wp-members/wp-members-admin.php:211
147
+ #: D:\downloads\wp-members/wp-members-admin.php:877
148
+ msgid "Optional"
149
+ msgstr "Valgfrit"
150
+
151
+ #: D:\downloads\wp-members/wp-members-admin.php:204
152
+ msgid "Register Page URL:"
153
+ msgstr "Register Page URL:"
154
+
155
+ #: D:\downloads\wp-members/wp-members-admin.php:210
156
+ msgid "Custom CSS:"
157
+ msgstr "Custom CSS:"
158
+
159
+ #: D:\downloads\wp-members/wp-members-admin.php:216
160
+ msgid "Update Settings"
161
+ msgstr "Oppdater innstillinger"
162
+
163
+ #: D:\downloads\wp-members/wp-members-admin.php:230
164
+ msgid "Manage Fields"
165
+ msgstr "Administrer Felter"
166
+
167
+ #: D:\downloads\wp-members/wp-members-admin.php:231
168
+ msgid ""
169
+ "Determine which fields will display and which are required. This includes "
170
+ "all fields, both native WP fields and WP-Members custom fields."
171
+ msgstr ""
172
+ "Velg hvilke felter som skal vises og hvilke som er obligatoriske. Dette "
173
+ "inkluderer både vanlige WP felter og WP-Member felter"
174
+
175
+ #: D:\downloads\wp-members/wp-members-admin.php:232
176
+ msgid "(Note: Email is always mandatory. and cannot be changed.)"
177
+ msgstr "(Merk: E-post er alltid obligatorisk - og kan ikke endres.)"
178
+
179
+ #: D:\downloads\wp-members/wp-members-admin.php:237
180
+ msgid "Add/Delete"
181
+ msgstr "Legg til/Slett"
182
+
183
+ #: D:\downloads\wp-members/wp-members-admin.php:238
184
+ msgid "Field Label"
185
+ msgstr "Felt Etikett"
186
+
187
+ #: D:\downloads\wp-members/wp-members-admin.php:239
188
+ msgid "Option Name"
189
+ msgstr "Valgt Navn"
190
+
191
+ #: D:\downloads\wp-members/wp-members-admin.php:240
192
+ msgid "Field Type"
193
+ msgstr "Felt Type"
194
+
195
+ #: D:\downloads\wp-members/wp-members-admin.php:241
196
+ msgid "Display?"
197
+ msgstr "Vis?"
198
+
199
+ #: D:\downloads\wp-members/wp-members-admin.php:242
200
+ msgid "Required?"
201
+ msgstr "Obligatorisk?"
202
+
203
+ #: D:\downloads\wp-members/wp-members-admin.php:243
204
+ msgid "Checked?"
205
+ msgstr "Markering?"
206
+
207
+ #: D:\downloads\wp-members/wp-members-admin.php:244
208
+ msgid "WP Native?"
209
+ msgstr "WP Felt?"
210
+
211
+ #: forms.php:95
212
+ msgid "Existing Users Log In"
213
+ msgstr "Innlogging for eksisterende brukere"
214
+
215
+ #: D:\downloads\wp-members/wp-members-admin.php:257
216
+ msgid "Delete"
217
+ msgstr "Slett"
218
+
219
+ #: D:\downloads\wp-members/wp-members-admin.php:269
220
+ msgid "(Email cannot be removed)"
221
+ msgstr "(E-post kan ikke slettes)"
222
+
223
+ #: D:\downloads\wp-members/wp-members-admin.php:280
224
+ msgid "Add"
225
+ msgstr "Legg til"
226
+
227
+ #: D:\downloads\wp-members/wp-members-admin.php:285
228
+ msgid "text"
229
+ msgstr "Tekst"
230
+
231
+ #: D:\downloads\wp-members/wp-members-admin.php:286
232
+ msgid "textarea"
233
+ msgstr "Tekstfelt"
234
+
235
+ #: D:\downloads\wp-members/wp-members-admin.php:287
236
+ msgid "checkbox"
237
+ msgstr "Avkryssningsboks"
238
+
239
+ #: D:\downloads\wp-members/wp-members-admin.php:288
240
+ msgid "dropdown"
241
+ msgstr "Nedtrekksliste"
242
+
243
+ #: D:\downloads\wp-members/wp-members-admin.php:289
244
+ msgid "password"
245
+ msgstr "passord"
246
+
247
+ #: D:\downloads\wp-members/wp-members-admin.php:298
248
+ msgid "For checkbox, stored value if checked:"
249
+ msgstr "Hvilken verdi lagres, når markerings-boksen avkrysses:"
250
+
251
+ #: D:\downloads\wp-members/wp-members-admin.php:305
252
+ msgid "For dropdown, array of values:"
253
+ msgstr "Til Dropdown, liste med valg:"
254
+
255
+ #: D:\downloads\wp-members/wp-members-admin.php:306
256
+ msgid "Options should be Option Name|option_value,"
257
+ msgstr "Valg skal skrives Valg Navn|valg_værdi,"
258
+
259
+ #: D:\downloads\wp-members/wp-members-admin.php:307
260
+ msgid "Visit plugin site for more information"
261
+ msgstr "Besøk Plugin side for mer informasjon"
262
+
263
+ #: D:\downloads\wp-members/wp-members-admin.php:319
264
+ msgid "Update Fields"
265
+ msgstr "Oppdater Felter"
266
+
267
+ #: D:\downloads\wp-members/wp-members-admin.php:331
268
+ msgid "Restricted post (or page), displays above the login/registration form"
269
+ msgstr ""
270
+ "Vises over Logg på / Registrering på Innlegg eller Side med begrenset adgang"
271
+
272
+ #: D:\downloads\wp-members/wp-members-admin.php:332
273
+ msgid "Username is taken"
274
+ msgstr "Brukernavnet er oppdatt"
275
+
276
+ #: D:\downloads\wp-members/wp-members-admin.php:333
277
+ msgid "Email is registered"
278
+ msgstr "E-post er registreret"
279
+
280
+ #: D:\downloads\wp-members/wp-members-admin.php:334
281
+ msgid "Registration completed"
282
+ msgstr "Registrering fullført - avventer godkjennelse"
283
+
284
+ #: D:\downloads\wp-members/wp-members-admin.php:335
285
+ msgid "User update"
286
+ msgstr "Bruker oppdatering"
287
+
288
+ #: D:\downloads\wp-members/wp-members-admin.php:336
289
+ msgid "Passwords did not match"
290
+ msgstr "Passordene er ulike"
291
+
292
+ #: D:\downloads\wp-members/wp-members-admin.php:337
293
+ msgid "Password changes"
294
+ msgstr "Endret passord"
295
+
296
+ #: D:\downloads\wp-members/wp-members-admin.php:338
297
+ msgid "Username or email do not exist when trying to reset forgotten password"
298
+ msgstr ""
299
+ "Brukernavn eller e-post eksisterer ikke når glemt passord forsøkes nullstilt"
300
+
301
+ #: D:\downloads\wp-members/wp-members-admin.php:339
302
+ msgid "Password reset"
303
+ msgstr "Nullstill passord"
304
+
305
+ #: D:\downloads\wp-members/wp-members-admin.php:341
306
+ msgid "Dialogs and Error Messages"
307
+ msgstr "Dialoger og feilmeldinger"
308
+
309
+ #: D:\downloads\wp-members/wp-members-admin.php:342
310
+ #, php-format
311
+ msgid ""
312
+ "You can customize the text for dialogs and error messages. Simple HTML is "
313
+ "allowed %s etc."
314
+ msgstr ""
315
+ "Du kan tilpasse tekster til dialog og feilmeldinger. Enkel HTML er tillat %s "
316
+ "osv."
317
+
318
+ #: D:\downloads\wp-members/wp-members-admin.php:355
319
+ msgid "Terms of Service (TOS)"
320
+ msgstr "Nettsidens vilkår"
321
+
322
+ #: D:\downloads\wp-members/wp-members-admin.php:362
323
+ msgid "Update Dialogs"
324
+ msgstr "Oppdater Dialoger"
325
+
326
+ #: D:\downloads\wp-members/wp-members-admin.php:459
327
+ msgid "WP-Members settings were updated"
328
+ msgstr "WP-Member innstillinger er oppdatert"
329
+
330
+ #: D:\downloads\wp-members/wp-members-admin.php:519
331
+ msgid "Field Label is required for adding a new field. Nothing was updated."
332
+ msgstr ""
333
+ "Felt-etikett er nødvendig for å legge til et nytt felt. Ingenting ble "
334
+ "oppdatert."
335
+
336
+ #: D:\downloads\wp-members/wp-members-admin.php:520
337
+ msgid "Option Name is required for adding a new field. Nothing was updated."
338
+ msgstr ""
339
+ "Valget Navn er nødvendigt for at for å legge til et nytt felt. Ingenting ble "
340
+ "oppdatert."
341
+
342
+ #: D:\downloads\wp-members/wp-members-admin.php:555
343
+ msgid "WP-Members fields were updated"
344
+ msgstr "WP-Members felter er oppdatert"
345
+
346
+ #: D:\downloads\wp-members/wp-members-admin.php:581
347
+ msgid "WP-Members dialogs were updated"
348
+ msgstr "WP-Members dialoger er oppdatert"
349
+
350
+ #: D:\downloads\wp-members/wp-members-admin.php:600
351
+ msgid "reCAPTCHA was updated for WP-Members"
352
+ msgstr "reCAPTCHA er oppdatert for WP-Members"
353
+
354
+ #: D:\downloads\wp-members/wp-members-admin.php:616
355
+ msgid "WP-Members expiration periods were updated"
356
+ msgstr "WP-Members prøveperiode er oppdatert"
357
+
358
+ #: D:\downloads\wp-members/wp-members-admin.php:665
359
+ msgid "WP-Members emails were updated"
360
+ msgstr "WP-Members e-poster er oppdatert"
361
+
362
+ #: D:\downloads\wp-members/wp-members-admin.php:682
363
+ msgid ""
364
+ "Settings were saved, but you have required fields that are not set to "
365
+ "display!"
366
+ msgstr ""
367
+ "innstillingene er lagret, men der er obligatoriske felter, som ikke er satt "
368
+ "til å bli vist!"
369
+
370
+ #: D:\downloads\wp-members/wp-members-admin.php:683
371
+ msgid ""
372
+ "Note: This will not cause an error for the end user, as only displayed "
373
+ "fields are validated. However, you should still check that your displayed "
374
+ "and required fields match up. Mismatched fields are highlighted below."
375
+ msgstr ""
376
+ "NB: Dette vil ikke medføre en feil for slutbrukeren, da kun viste felter er "
377
+ "valideret. Du bør sjekke, at dine viste, og påkrevde felter passer sammen. "
378
+ "Feil felter er fremhevet nedenfor."
379
+
380
+ #: D:\downloads\wp-members/wp-members-admin.php:743
381
+ msgid "Version:"
382
+ msgstr "Versjon:"
383
+
384
+ #: D:\downloads\wp-members/wp-members-admin.php:744
385
+ msgid "Follow"
386
+ msgstr "Følg"
387
+
388
+ #: D:\downloads\wp-members/wp-members-admin.php:747
389
+ msgid "If you find this plugin useful, please consider making a donation"
390
+ msgstr "If you find this plugin useful, please consider making a donation"
391
+
392
+ #: D:\downloads\wp-members/wp-members-admin.php:766
393
+ msgid "Options"
394
+ msgstr "Valg"
395
+
396
+ #: D:\downloads\wp-members/wp-members-admin.php:767
397
+ msgid "Fields"
398
+ msgstr "Felter"
399
+
400
+ #: D:\downloads\wp-members/wp-members-admin.php:768
401
+ msgid "Dialogs"
402
+ msgstr "Dialog"
403
+
404
+ #: D:\downloads\wp-members/wp-members-admin.php:769
405
+ msgid "Emails"
406
+ msgstr "E-poster"
407
+
408
+ #: D:\downloads\wp-members/wp-members-admin.php:771
409
+ msgid "reCAPTCHA"
410
+ msgstr "reCAPTCHA"
411
+
412
+ #: D:\downloads\wp-members/wp-members-admin.php:774
413
+ msgid "Subscriptions"
414
+ msgstr "Abonnement"
415
+
416
+ #: D:\downloads\wp-members/wp-members-admin.php:777
417
+ msgid "PayPal Settings"
418
+ msgstr "PayPal innstillinger"
419
+
420
+ #: D:\downloads\wp-members/wp-members-admin.php:820
421
+ #, php-format
422
+ msgid "Thank you for using WP-Members! You are using version %s"
423
+ msgstr "Thank you for using WP-Members! You are using version %s"
424
+
425
+ #: D:\downloads\wp-members/wp-members-admin.php:822
426
+ #, php-format
427
+ msgid "If you find this plugin useful, please consider a %s donation %s"
428
+ msgstr "If you find this plugin useful, please consider a %s donation %s"
429
+
430
+ #: D:\downloads\wp-members/wp-members-admin.php:843
431
+ msgid "Manage reCAPTCHA Options"
432
+ msgstr "Administrer reCAPTCHA Valg"
433
+
434
+ #: D:\downloads\wp-members/wp-members-admin.php:849
435
+ msgid ""
436
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
437
+ "while blocking spam on your blog."
438
+ msgstr ""
439
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
440
+ "while blocking spam on your blog."
441
+
442
+ #: D:\downloads\wp-members/wp-members-admin.php:850
443
+ #, php-format
444
+ msgid ""
445
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
446
+ "that they are a human. This verifies that they are not a spambot while also "
447
+ "correcting the automatic scans of old books. So you get less spam, and the "
448
+ "world gets accurately digitized books. Everybody wins! For details, visit "
449
+ "the %s reCAPTCHA website%s"
450
+ msgstr ""
451
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
452
+ "that they are a human. This verifies that they are not a spambot while also "
453
+ "correcting the automatic scans of old books. So you get less spam, and the "
454
+ "world gets accurately digitized books. Everybody wins! For details, visit "
455
+ "the %s reCAPTCHA website%s"
456
+
457
+ #: D:\downloads\wp-members/wp-members-admin.php:855
458
+ msgid "reCAPTCHA Keys"
459
+ msgstr "reCAPTCHA Keys"
460
+
461
+ #: D:\downloads\wp-members/wp-members-admin.php:857
462
+ #, php-format
463
+ msgid ""
464
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
465
+ "key. You can segn up for a %s free reCAPTCHA key%s"
466
+ msgstr ""
467
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
468
+ "key. You can segn up for a %s free reCAPTCHA key%s"
469
+
470
+ #: D:\downloads\wp-members/wp-members-admin.php:858
471
+ msgid "Public Key"
472
+ msgstr "Offentlig nøkkel"
473
+
474
+ #: D:\downloads\wp-members/wp-members-admin.php:859
475
+ msgid "Private Key"
476
+ msgstr "Privat nøkkel"
477
+
478
+ #: D:\downloads\wp-members/wp-members-admin.php:863
479
+ msgid "Choose Theme"
480
+ msgstr "Velg tema"
481
+
482
+ #: D:\downloads\wp-members/wp-members-admin.php:866
483
+ msgid "WP-Members"
484
+ msgstr "WP-Members"
485
+
486
+ #: D:\downloads\wp-members/wp-members-admin.php:867
487
+ msgid "Red"
488
+ msgstr "Rød"
489
+
490
+ #: D:\downloads\wp-members/wp-members-admin.php:868
491
+ msgid "White"
492
+ msgstr "Hvit"
493
+
494
+ #: D:\downloads\wp-members/wp-members-admin.php:869
495
+ msgid "Black Glass"
496
+ msgstr "Sort Glass"
497
+
498
+ #: D:\downloads\wp-members/wp-members-admin.php:870
499
+ msgid "Clean"
500
+ msgstr "Ren"
501
+
502
+ #: D:\downloads\wp-members/wp-members-admin.php:871
503
+ msgid "Custom"
504
+ msgstr "Custom"
505
+
506
+ #: D:\downloads\wp-members/wp-members-admin.php:883
507
+ msgid "Update reCAPTCHA Settings"
508
+ msgstr "Oppdater reCAPTCHA innstillinger"
509
+
510
+ #: D:\downloads\wp-members/wp-members-admin.php:944
511
+ #, php-format
512
+ msgid "%d users were activated."
513
+ msgstr "%d brukerre er aktivert."
514
+
515
+ #: D:\downloads\wp-members/wp-members-admin.php:949
516
+ #, php-format
517
+ msgid "Users ready to export, %s click here %s to generate and download a CSV."
518
+ msgstr ""
519
+ "Brukere er klar til eksport %s Klikk her %s for at generere og laste ned CSV."
520
+
521
+ #: D:\downloads\wp-members/wp-members-admin.php:959
522
+ msgid "WP-Members Users"
523
+ msgstr "WP-Members brukere"
524
+
525
+ #: D:\downloads\wp-members/wp-members-admin.php:959
526
+ msgid "Add New"
527
+ msgstr "Opprett ny"
528
+
529
+ #: D:\downloads\wp-members/wp-members-admin.php:1141
530
+ #: D:\downloads\wp-members/wp-members-export.php:84
531
+ msgid "No"
532
+ msgstr "Nei"
533
+
534
+ #: D:\downloads\wp-members/wp-members-admin.php:1155
535
+ msgid "No users matched your criteria"
536
+ msgstr "Ingen brugere matchede dine kriterier"
537
+
538
+ #: D:\downloads\wp-members/wp-members-admin.php:1204
539
+ msgid "Bulk Actions"
540
+ msgstr "Gruppe handling"
541
+
542
+ #: D:\downloads\wp-members/wp-members-admin.php:1206
543
+ msgid "Activate"
544
+ msgstr "Aktiver"
545
+
546
+ #: D:\downloads\wp-members/wp-members-admin.php:1208
547
+ msgid "Export"
548
+ msgstr "Eksporter"
549
+
550
+ #: D:\downloads\wp-members/wp-members-admin.php:1210
551
+ msgid "Apply"
552
+ msgstr "Søke"
553
+
554
+ #: D:\downloads\wp-members/wp-members-admin.php:1349
555
+ msgid "New Registration"
556
+ msgstr "Ny Registrering"
557
+
558
+ #: D:\downloads\wp-members/wp-members-admin.php:1353
559
+ msgid "Registration is Moderated"
560
+ msgstr "Registrering fullført"
561
+
562
+ #: D:\downloads\wp-members/wp-members-admin.php:1354
563
+ msgid "Registration is Moderated, User is Approved"
564
+ msgstr "Din registrering er godkjent"
565
+
566
+ #: D:\downloads\wp-members/wp-members-admin.php:1359
567
+ msgid "Password Reset"
568
+ msgstr "Kodeord nullstilt"
569
+
570
+ #: D:\downloads\wp-members/wp-members-admin.php:1364
571
+ msgid "Admin Notification"
572
+ msgstr "Admin melding"
573
+
574
+ #: D:\downloads\wp-members/wp-members-admin.php:1369
575
+ msgid "Email segnature"
576
+ msgstr "E-post underskrift"
577
+
578
+ #: D:\downloads\wp-members/wp-members-admin.php:1372
579
+ msgid "Email Messages"
580
+ msgstr "E-post melding"
581
+
582
+ #: D:\downloads\wp-members/wp-members-admin.php:1374
583
+ msgid "You can customize the content of the emails sent by the plugin."
584
+ msgstr "Du kan tilpasse innholdet av e-poster sendt fra denne plugin"
585
+
586
+ #: D:\downloads\wp-members/wp-members-admin.php:1376
587
+ msgid "A list of shortcodes is available here."
588
+ msgstr "liste med shortcodes kan ses her."
589
+
590
+ #: D:\downloads\wp-members/wp-members-admin.php:1383
591
+ msgid "Set a custom email address"
592
+ msgstr "Skriv inn en gyldig epost-adresse"
593
+
594
+ #: D:\downloads\wp-members/wp-members-admin.php:1384
595
+ #: D:\downloads\wp-members/wp-members-admin.php:1388
596
+ #: D:\downloads\wp-members/wp-members-admin.php:1411
597
+ msgid "(optional)"
598
+ msgstr "(obligatorisk)"
599
+
600
+ #: D:\downloads\wp-members/wp-members-admin.php:1387
601
+ msgid "Set a custom email name"
602
+ msgstr "Skriv din e-post her"
603
+
604
+ #: D:\downloads\wp-members/wp-members-admin.php:1398
605
+ msgid "Subject"
606
+ msgstr "Emne"
607
+
608
+ #: D:\downloads\wp-members/wp-members-admin.php:1402
609
+ msgid "Body"
610
+ msgstr "Brødtekst"
611
+
612
+ #: D:\downloads\wp-members/wp-members-admin.php:1419
613
+ msgid "Update Emails"
614
+ msgstr "Oppdater e-poster"
615
+
616
+ #: D:\downloads\wp-members/wp-members-core.php:112
617
+ msgid "There was an error with the CAPTCHA form."
618
+ msgstr "Der oppstod en feil i CAPTCHA skjemaet."
619
+
620
+ #: D:\downloads\wp-members/wp-members-core.php:237
621
+ #: D:\downloads\wp-members/wp-members-core.php:875
622
+ msgid "Edit Your Information"
623
+ msgstr "Rediger dine Opplysninger"
624
+
625
+ #: D:\downloads\wp-members/wp-members-core.php:268
626
+ #: D:\downloads\wp-members/wp-members-core.php:906
627
+ msgid "Password fields cannot be empty"
628
+ msgstr "Kodeordsfelt kan ikke være tomt"
629
+
630
+ #: D:\downloads\wp-members/wp-members-core.php:1028
631
+ msgid "Additional Info"
632
+ msgstr "Ekstra Opplysninger"
633
+
634
+ #: D:\downloads\wp-members/wp-members-core.php:1070
635
+ msgid "Indicates a required field"
636
+ msgstr "Et obligatorisk felt"
637
+
638
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:31
639
+ msgid ""
640
+ "Your WP settings allow anyone to register - this is not the recommended "
641
+ "setting."
642
+ msgstr ""
643
+ "Dine WP innstillinger tillater alle å registrere seg - dette kan ikke "
644
+ "anbefales."
645
+
646
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:32
647
+ #, php-format
648
+ msgid ""
649
+ "You can %s change this here %s making sure the box next to \"Anyone can "
650
+ "register\" is unchecked."
651
+ msgstr ""
652
+ "Du kan %s endre dette her %s ved at sørge for boksen ved siden av \"Alle kan "
653
+ "registrere \" er u-markert."
654
+
655
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:33
656
+ msgid ""
657
+ "This setting allows a link on the /wp-login.php page to register using the "
658
+ "WP native registration process thus circumventing any registration you are "
659
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
660
+ "but most users should uncheck this option. If you do not change this "
661
+ "setting, you can choose to ignore these warning messages under WP-Members "
662
+ "Settings."
663
+ msgstr ""
664
+ "Denne innstillingen tillater at en link på /wp-login.php siden for å la seg "
665
+ "registrere ved hjelp av WP opprinnelige registreringsprossess slik at det "
666
+ "omgår WP-Members registrering. I noen tilfeller passer dette til brukerenes "
667
+ "ønsker/behov, men de fleste brukere bør fjerne markeringen av denne "
668
+ "muligheten. Hvis du ikke endrer denne indstilling, kan du velge at ignorere "
669
+ "disse advarsler i henhold til WP-medlemmer innstillinger."
670
+
671
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:39
672
+ msgid ""
673
+ "Your WP settings allow anyone to comment - this is not the recommended "
674
+ "setting."
675
+ msgstr ""
676
+ "Dine WP innstillinger tillater alle at skrive kommentarer - denne "
677
+ "innstillingen er ikke anbefalt."
678
+
679
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:40
680
+ #, php-format
681
+ msgid ""
682
+ "You can %s change this here %s by checking the box next to \"Users must be "
683
+ "registered and logged in to comment.\""
684
+ msgstr ""
685
+ "Du kan %s endre dette her %s ved at sørge for boksen ved siden av \"Brukere "
686
+ "skal være registrerede og logget inn for at kommentere \" er markert."
687
+
688
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:41
689
+ msgid ""
690
+ "This setting allows any users to comment, whether or not they are "
691
+ "registered. Depending on how you are using WP-Members will determine whether "
692
+ "you should change this setting or not. If you do not change this setting, "
693
+ "you can choose to ignore these warning messages under WP-Members Settings."
694
+ msgstr ""
695
+ "Denne innstillingen gjør det mulig for brukere å kommentere selv om de ikke "
696
+ "er innlogget. Hvis du ikke endrer denne innstillingen, kan du velge å "
697
+ "ignorere disse advarsler i henhold til WP-Members innstillinger."
698
+
699
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:47
700
+ msgid ""
701
+ "Your WP settings allow full text rss feeds - this is not the recommended "
702
+ "setting."
703
+ msgstr ""
704
+ "Din WP innstillinger tillater full RSS strøm - denne innstillingen er ikke å "
705
+ "anbefale."
706
+
707
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:48
708
+ #, php-format
709
+ msgid ""
710
+ "You can %s change this here %s by changing \"For each article in a feed, show"
711
+ "\" to \"Summary.\""
712
+ msgstr ""
713
+ "Du kan %s endre dette %s ved å endre \"For hvert innlegg, vis \" to \"Utdrag."
714
+ "\""
715
+
716
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:49
717
+ msgid ""
718
+ "Leaving this set to full text allows anyone to read your protected content "
719
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
720
+ "only show summary text."
721
+ msgstr ""
722
+ "Ved å sette RSS til full tekst gir du alle mulighet for å lese ditt "
723
+ "beskyttede innhold i en rss-leser. Endre RSS til utdrag for å forhindre "
724
+ "dette."
725
+
726
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:55
727
+ msgid "You have set WP-Members to hold registrations for approval"
728
+ msgstr "Du har satt WP-Members til at registreringer må godkjennes"
729
+
730
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:56
731
+ msgid ""
732
+ "but you have not changed the default message for \"Registration Completed\" "
733
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
734
+ "message to let users know they are pending approval."
735
+ msgstr ""
736
+ "men du har ikke endret standard melding for \"Registrering fullført\" under "
737
+ "\"WP-Members Dialoger og feilmeldinger.\" Du bør endre denne meldingen så "
738
+ "brukerene vet at deres registrering er må godkjennes."
739
+
740
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:62
741
+ msgid "You have set WP-Members to turn off the registration process"
742
+ msgstr "Du har satt WP-Members til å slå av brukerregistrering"
743
+
744
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:63
745
+ msgid ""
746
+ "but you also set to moderate and/or email admin new registrations. You will "
747
+ "need to set up a registration page for users to register."
748
+ msgstr ""
749
+ "men du er også satt til å moderere og / eller e-post admin for nye "
750
+ "registreringer. Du må opprette en registreringsside for brukere."
751
+
752
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:69
753
+ msgid "You have turned on reCAPTCHA"
754
+ msgstr "Du har slått på reCAPTCHA"
755
+
756
+ #: D:\downloads\wp-members/wp-members-dialogs-admin.php:70
757
+ msgid ""
758
+ "but you have not entered API keys. You will need both a public and private "
759
+ "key. The CAPTCHA will not display unless a valid API key is included."
760
+ msgstr ""
761
+ "men du ikke har skrevet inn API nøkkel. Du skal bruke både en offentlig og "
762
+ "privat nøkkel. Den CAPTCHA vises ikke, hvis ikke en gyldig API-nøkkel er "
763
+ "fylt inn."
764
+
765
+ #: D:\downloads\wp-members/wp-members-dialogs.php:48
766
+ msgid "Existing users Login"
767
+ msgstr "Login for eksistrerende brukere"
768
+
769
+ #: D:\downloads\wp-members/wp-members-dialogs.php:48
770
+ #: D:\downloads\wp-members/wp-members-dialogs.php:92
771
+ #: D:\downloads\wp-members/wp-members-dialogs.php:224
772
+ #: D:\downloads\wp-members/wp-members-dialogs.php:596
773
+ #: D:\downloads\wp-members/wp-members-sidebar.php:100
774
+ #: D:\downloads\wp-members/wp-members-sidebar.php:128
775
+ msgid "Username"
776
+ msgstr "Brukernavn"
777
+
778
+ #: D:\downloads\wp-members/wp-members-dialogs.php:48
779
+ #: D:\downloads\wp-members/wp-members-sidebar.php:102
780
+ #: D:\downloads\wp-members/wp-members-sidebar.php:130
781
+ msgid "Password"
782
+ msgstr "Passord"
783
+
784
+ #: D:\downloads\wp-members/wp-members-dialogs.php:48
785
+ msgid "Login"
786
+ msgstr "Log på"
787
+
788
+ #: D:\downloads\wp-members/wp-members-dialogs.php:71
789
+ #: D:\downloads\wp-members/wp-members-dialogs.php:419
790
+ msgid "Change Password"
791
+ msgstr "Endre passord"
792
+
793
+ #: D:\downloads\wp-members/wp-members-dialogs.php:71
794
+ msgid "New Password"
795
+ msgstr "Nytt passord"
796
+
797
+ #: D:\downloads\wp-members/wp-members-dialogs.php:71
798
+ msgid "Repeat Password"
799
+ msgstr "Gjenta passord"
800
+
801
+ #: D:\downloads\wp-members/wp-members-dialogs.php:71
802
+ msgid "Update Password"
803
+ msgstr "Oppdater passord"
804
+
805
+ #: D:\downloads\wp-members/wp-members-dialogs.php:92
806
+ msgid "Reset Forgotten Password"
807
+ msgstr "Nullstill glemt passord"
808
+
809
+ #: D:\downloads\wp-members/wp-members-dialogs.php:92
810
+ #: D:\downloads\wp-members/wp-members-install.php:58
811
+ msgid "Email"
812
+ msgstr "E-post"
813
+
814
+ #: D:\downloads\wp-members/wp-members-dialogs.php:92
815
+ msgid "Reset Password"
816
+ msgstr "Nullstill passord"
817
+
818
+ #: D:\downloads\wp-members/wp-members-dialogs.php:130
819
+ #: D:\downloads\wp-members/wp-members-dialogs.php:802
820
+ msgid "Remember me"
821
+ msgstr "Husk meg"
822
+
823
+ #: D:\downloads\wp-members/wp-members-dialogs.php:150
824
+ #: D:\downloads\wp-members/wp-members-dialogs.php:815
825
+ msgid "Forgot password?"
826
+ msgstr "Glemt passord?"
827
+
828
+ #: D:\downloads\wp-members/wp-members-dialogs.php:150
829
+ #: D:\downloads\wp-members/wp-members-dialogs.php:815
830
+ msgid "Click here to reset"
831
+ msgstr "Klikk her for å nullstille"
832
+
833
+ #: D:\downloads\wp-members/wp-members-dialogs.php:158
834
+ #: D:\downloads\wp-members/wp-members-dialogs.php:824
835
+ msgid "New User?"
836
+ msgstr "Ny bruker"
837
+
838
+ #: D:\downloads\wp-members/wp-members-dialogs.php:158
839
+ #: D:\downloads\wp-members/wp-members-dialogs.php:824
840
+ msgid "Click here to register"
841
+ msgstr "Klikk her for å registrere"
842
+
843
+ #: D:\downloads\wp-members/wp-members-dialogs.php:184
844
+ msgid "Login Failed!"
845
+ msgstr "Login feilet!"
846
+
847
+ #: D:\downloads\wp-members/wp-members-dialogs.php:185
848
+ msgid "You entered an invalid username or password."
849
+ msgstr "Ditt brukernavn eller passord ble ikke godtatt."
850
+
851
+ #: D:\downloads\wp-members/wp-members-dialogs.php:186
852
+ msgid "Click here to continue."
853
+ msgstr "Klikk her for å fortsette."
854
+
855
+ #: D:\downloads\wp-members/wp-members-dialogs.php:212
856
+ #: D:\downloads\wp-members/wp-members-dialogs.php:587
857
+ msgid "New Users Registration"
858
+ msgstr "Ny bruker registrering"
859
+
860
+ #: D:\downloads\wp-members/wp-members-dialogs.php:229
861
+ #: D:\downloads\wp-members/wp-members-dialogs.php:603
862
+ msgid "Choose a Username"
863
+ msgstr "Velg et brukernavn"
864
+
865
+ #: D:\downloads\wp-members/wp-members-dialogs.php:323
866
+ #: D:\downloads\wp-members/wp-members-dialogs.php:696
867
+ #, php-format
868
+ msgid "Please indicate that you agree to the %s TOS %s"
869
+ msgstr "Kryss av for at du godtar %snettsidens vilkår %s"
870
+
871
+ #: D:\downloads\wp-members/wp-members-dialogs.php:375
872
+ #: D:\downloads\wp-members/wp-members-dialogs.php:744
873
+ msgid "Submit"
874
+ msgstr "Send inn"
875
+
876
+ #: D:\downloads\wp-members/wp-members-dialogs.php:377
877
+ #: D:\downloads\wp-members/wp-members-dialogs.php:743
878
+ msgid "Clear Form"
879
+ msgstr "Tøm skjema"
880
+
881
+ #: D:\downloads\wp-members/wp-members-dialogs.php:382
882
+ #: D:\downloads\wp-members/wp-members-dialogs.php:748
883
+ msgid "Required field"
884
+ msgstr "Påkrevede felt"
885
+
886
+ #: D:\downloads\wp-members/wp-members-dialogs.php:418
887
+ msgid "Edit My Information"
888
+ msgstr "Rediger min profil"
889
+
890
+ #: D:\downloads\wp-members/wp-members-dialogs.php:423
891
+ #: D:\downloads\wp-members/wp-members-dialogs.php:433
892
+ #: D:\downloads\wp-members/wp-members-dialogs.php:440
893
+ #: D:\downloads\wp-members/wp-members-sidebar.php:44
894
+ #: D:\downloads\wp-members/wp-members-sidebar.php:157
895
+ #, php-format
896
+ msgid "You are logged in as %s"
897
+ msgstr "Du er logget på som %s"
898
+
899
+ #: D:\downloads\wp-members/wp-members-dialogs.php:425
900
+ msgid "Click here to logout."
901
+ msgstr "Klikk her for å logge ut."
902
+
903
+ #: D:\downloads\wp-members/wp-members-dialogs.php:426
904
+ msgid "Begin using the site."
905
+ msgstr "Begynd å bruke siden"
906
+
907
+ #: D:\downloads\wp-members/wp-members-dialogs.php:434
908
+ #: D:\downloads\wp-members/wp-members-dialogs.php:441
909
+ #: D:\downloads\wp-members/wp-members-sidebar.php:44
910
+ #: D:\downloads\wp-members/wp-members-sidebar.php:158
911
+ msgid "click here to logout"
912
+ msgstr "Klikk her for å logge ut"
913
+
914
+ #: D:\downloads\wp-members/wp-members-export.php:26
915
+ msgid "Cheatin&#8217; uh?"
916
+ msgstr "Jukser du?"
917
+
918
+ #: D:\downloads\wp-members/wp-members-export.php:29
919
+ msgid "there was an error and no users were exported"
920
+ msgstr "der oppstod en feil og ingen brukere ble eksportert"
921
+
922
+ #: D:\downloads\wp-members/wp-members-export.php:52
923
+ msgid "Activated?"
924
+ msgstr "Aktivert?"
925
+
926
+ #: D:\downloads\wp-members/wp-members-export.php:55
927
+ msgid "Subscription"
928
+ msgstr "Abonnement"
929
+
930
+ #: D:\downloads\wp-members/wp-members-export.php:55
931
+ msgid "Expires"
932
+ msgstr "Utløper"
933
+
934
+ #: D:\downloads\wp-members/wp-members-export.php:58
935
+ msgid "Registered"
936
+ msgstr "Registrert"
937
+
938
+ #: D:\downloads\wp-members/wp-members-export.php:59
939
+ msgid "IP"
940
+ msgstr "IP"
941
+
942
+ #: D:\downloads\wp-members/wp-members-export.php:82
943
+ msgid "Yes"
944
+ msgstr "Ja"
945
+
946
+ #: D:\downloads\wp-members/wp-members-install.php:49
947
+ msgid "First Name"
948
+ msgstr "Fornavn"
949
+
950
+ #: D:\downloads\wp-members/wp-members-install.php:50
951
+ msgid "Last Name"
952
+ msgstr "Etternavn"
953
+
954
+ #: D:\downloads\wp-members/wp-members-install.php:51
955
+ msgid "Address 1"
956
+ msgstr "Adresse1"
957
+
958
+ #: D:\downloads\wp-members/wp-members-install.php:52
959
+ msgid "Address 2"
960
+ msgstr "Adresse2"
961
+
962
+ #: D:\downloads\wp-members/wp-members-install.php:53
963
+ msgid "City"
964
+ msgstr "By"
965
+
966
+ #: D:\downloads\wp-members/wp-members-install.php:54
967
+ msgid "State"
968
+ msgstr "Region"
969
+
970
+ #: D:\downloads\wp-members/wp-members-install.php:55
971
+ msgid "Zip"
972
+ msgstr "Postnr"
973
+
974
+ #: D:\downloads\wp-members/wp-members-install.php:56
975
+ msgid "Country"
976
+ msgstr "Land"
977
+
978
+ #: D:\downloads\wp-members/wp-members-install.php:57
979
+ msgid "Day Phone"
980
+ msgstr "Telefon"
981
+
982
+ #: D:\downloads\wp-members/wp-members-install.php:59
983
+ msgid "Website"
984
+ msgstr "Nettside"
985
+
986
+ #: D:\downloads\wp-members/wp-members-install.php:60
987
+ msgid "AIM"
988
+ msgstr "AIM"
989
+
990
+ #: D:\downloads\wp-members/wp-members-install.php:61
991
+ msgid "Yahoo IM"
992
+ msgstr "Yahoo IM"
993
+
994
+ #: D:\downloads\wp-members/wp-members-install.php:62
995
+ msgid "Jabber/Google Talk"
996
+ msgstr "Jabber/Google Talk"
997
+
998
+ #: D:\downloads\wp-members/wp-members-install.php:63
999
+ msgid "Biographical Info"
1000
+ msgstr "Biogravisk informasjon"
1001
+
1002
+ #: D:\downloads\wp-members/wp-members-install.php:64
1003
+ #: D:\downloads\wp-members/wp-members-install.php:209
1004
+ msgid "TOS"
1005
+ msgstr "VfD"
1006
+
1007
+ #: D:\downloads\wp-members/wp-members-install.php:96
1008
+ msgid ""
1009
+ "This content is restricted to site members. If you are an existing user, "
1010
+ "please login. New users may register below."
1011
+ msgstr ""
1012
+ "Dette er en lukket brukerside. Hvis du er registreret bruker må du logge på "
1013
+ "eller registrere deg."
1014
+
1015
+ #: D:\downloads\wp-members/wp-members-install.php:97
1016
+ msgid "Sorry, that username is taken, please try another."
1017
+ msgstr "Dette brukernavnet er opptatt. Prøv et annet."
1018
+
1019
+ #: D:\downloads\wp-members/wp-members-install.php:98
1020
+ msgid ""
1021
+ "Sorry, that email address already has an account.<br />Please try another."
1022
+ msgstr "Denne e-post adressen finnes allerede i systemet. <br />Prøv en annen."
1023
+
1024
+ #: D:\downloads\wp-members/wp-members-install.php:99
1025
+ msgid ""
1026
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1027
+ "login using the password that was emailed to you."
1028
+ msgstr ""
1029
+ "Din registrering ble godkjent.<br /><br />Du kan nå logge på med det "
1030
+ "passordet som har blitt sendt til deg."
1031
+
1032
+ #: D:\downloads\wp-members/wp-members-install.php:100
1033
+ msgid "Your information was updated!"
1034
+ msgstr "Din profil har blitt oppdatert!"
1035
+
1036
+ #: D:\downloads\wp-members/wp-members-install.php:101
1037
+ msgid "Passwords did not match.<br /><br />Please try again."
1038
+ msgstr "Passordene er ulike.<br /><br />Prøv igjen."
1039
+
1040
+ #: D:\downloads\wp-members/wp-members-install.php:102
1041
+ msgid ""
1042
+ "Password successfully changed!<br /><br />You will need to re-login with "
1043
+ "your new password."
1044
+ msgstr "Passordet er endret!<br /><br />Du må logge på med ditt nye passord."
1045
+
1046
+ #: D:\downloads\wp-members/wp-members-install.php:103
1047
+ msgid "Either the username or email address do not exist in our records."
1048
+ msgstr "Brukernavn eller e-post finnes ikke i databasen."
1049
+
1050
+ #: D:\downloads\wp-members/wp-members-install.php:104
1051
+ msgid ""
1052
+ "Password successfully reset!<br /><br />An email containing a new password "
1053
+ "has been sent to the email address on file for your account. You may change "
1054
+ "this random password then re-login with your new password."
1055
+ msgstr ""
1056
+ "Passordet er nullstilt!<br /><br />En e-post med nytt passord har blitt "
1057
+ "sendt til deg. Du kan endre det til et personlig passord når du har logget "
1058
+ "deg på."
1059
+
1060
+ #: D:\downloads\wp-members/wp-members-register.php:45
1061
+ #, php-format
1062
+ msgid "Sorry, %s is a required field."
1063
+ msgstr "%s er påkrevet."
1064
+
1065
+ #: D:\downloads\wp-members/wp-members-register.php:53
1066
+ msgid "Sorry, username is a required field"
1067
+ msgstr "Brukernavn er påkrevet"
1068
+
1069
+ #: D:\downloads\wp-members/wp-members-register.php:54
1070
+ msgid "The username cannot include non-alphanumeric characters."
1071
+ msgstr "Brukernavn må kun innholde vanlige bokstaver."
1072
+
1073
+ #: D:\downloads\wp-members/wp-members-register.php:55
1074
+ msgid "You must enter a valid email address."
1075
+ msgstr "Du må fylle inn en gyldig e-post. "
1076
+
1077
+ #: D:\downloads\wp-members/wp-members-register.php:65
1078
+ msgid "You must complete the CAPTCHA form."
1079
+ msgstr "Du må fylle inn CAPTCHA skjemaet."
1080
+
1081
+ #: D:\downloads\wp-members/wp-members-register.php:218
1082
+ msgid "We were unable to validate the public key."
1083
+ msgstr "Det var ikke mulig å validere den offentlige nøkkelen."
1084
+
1085
+ #: D:\downloads\wp-members/wp-members-register.php:222
1086
+ msgid "We were unable to validate the private key."
1087
+ msgstr "Det var ikke mulig å validere den private nøkkelen."
1088
+
1089
+ #: D:\downloads\wp-members/wp-members-register.php:226
1090
+ msgid "The challenge parameter of the verify script was incorrect."
1091
+ msgstr "The challenge parameter of the verify script was incorrect."
1092
+
1093
+ #: D:\downloads\wp-members/wp-members-register.php:230
1094
+ msgid "The CAPTCHA solution was incorrect."
1095
+ msgstr "CAPTCHA løsningen er ikke fullstendig."
1096
+
1097
+ #: D:\downloads\wp-members/wp-members-register.php:234
1098
+ msgid "The parameters to verify were incorrect"
1099
+ msgstr "Parameterene var ugyldige"
1100
+
1101
+ #: D:\downloads\wp-members/wp-members-register.php:238
1102
+ msgid ""
1103
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1104
+ msgstr ""
1105
+ "På grunn av sikkerhet er reCAPTCHA API nøkkelen er knyttet til et domene-"
1106
+ "navn."
1107
+
1108
+ #: D:\downloads\wp-members/wp-members-register.php:242
1109
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1110
+ msgstr "reCAPTCHA serveren kunne ikke kontaktes. Prøv igjen."
1111
+
1112
+ #: D:\downloads\wp-members/wp-members-sidebar.php:97
1113
+ #: D:\downloads\wp-members/wp-members-sidebar.php:123
1114
+ msgid "Login Failed!<br />You entered an invalid username or password."
1115
+ msgstr "Login feilet! <br />Ugylding brukernavn eller passord."
1116
+
1117
+ #: D:\downloads\wp-members/wp-members-sidebar.php:98
1118
+ #: D:\downloads\wp-members/wp-members-sidebar.php:124
1119
+ msgid "You are not currently logged in."
1120
+ msgstr "Du er ikke logget på."
1121
+
1122
+ #: D:\downloads\wp-members/wp-members-sidebar.php:108
1123
+ #: D:\downloads\wp-members/wp-members-sidebar.php:136
1124
+ msgid "login"
1125
+ msgstr "logg på"
1126
+
1127
+ #: D:\downloads\wp-members/wp-members-sidebar.php:112
1128
+ #: D:\downloads\wp-members/wp-members-sidebar.php:140
1129
+ msgid "Forgot?"
1130
+ msgstr "Glemt?"
1131
+
1132
+ #: D:\downloads\wp-members/wp-members-sidebar.php:115
1133
+ #: D:\downloads\wp-members/wp-members-sidebar.php:143
1134
+ msgid "Register"
1135
+ msgstr "Registrer"
1136
+
1137
+ #: D:\downloads\wp-members/wp-members-sidebar.php:203
1138
+ msgid "Login Status"
1139
+ msgstr "Loginstatus"
1140
+
1141
+ #: D:\downloads\wp-members/wp-members-tos.php:24
1142
+ msgid "Terms of Service"
1143
+ msgstr "Nettsidens vilkår"
1144
+
1145
+ #: D:\downloads\wp-members/wp-members-tos.php:36
1146
+ #, php-format
1147
+ msgid "%sclose%s"
1148
+ msgstr "%slukk%s"
1149
+
1150
+ #: D:\downloads\wp-members/wp-members-tos.php:38
1151
+ #, php-format
1152
+ msgid "%sprint%s"
1153
+ msgstr "%sskriv ut%s"
1154
+
1155
+ #: forms.php:523
1156
+ msgid "Update Profile"
1157
+ msgstr "Oppdater profil"
1158
+
1159
+ #~ msgid ""
1160
+ #~ "Please indicate that you have read and agree to the %s Terms of Service %s"
1161
+ #~ msgstr "Vennligs bekreft at du godtar %s nettsidens vilkår %s"
1162
+
1163
+ #~ msgid "You may change your password here: %s"
1164
+ #~ msgstr "Du kan endre passord her: %s"
1165
+
1166
+ #~ msgid "Your registration info for %s"
1167
+ #~ msgstr "Dine registreringsinformasjon for %s"
1168
+
1169
+ #~ msgid "Thank you for registering for %s"
1170
+ #~ msgstr "Takk for din registrering på %s"
1171
+
1172
+ #~ msgid "Your registration information is below."
1173
+ #~ msgstr "Dine Opplysninger er vist nedenfor."
1174
+
1175
+ #~ msgid "You may wish to retain a copy for your records."
1176
+ #~ msgstr "Ta vare på opplysningene."
1177
+
1178
+ #~ msgid "username: %s"
1179
+ #~ msgstr "Brukernavn: %s"
1180
+
1181
+ #~ msgid "password: %s"
1182
+ #~ msgstr "Passord: %s"
1183
+
1184
+ #~ msgid "You may login here:"
1185
+ #~ msgstr "Logg på her:"
1186
+
1187
+ #~ msgid ""
1188
+ #~ "Thank you for registering for %s. Your registration has been received and "
1189
+ #~ "is pending approval."
1190
+ #~ msgstr ""
1191
+ #~ "Takk for din registrering på %s. Din registreing er mottatt og avventer "
1192
+ #~ "godkjennelse."
1193
+
1194
+ #~ msgid "You will receive login instructions upon approval of your account"
1195
+ #~ msgstr ""
1196
+ #~ "Du vil motta instruksjon om pålogging når din registrering er godkjent."
1197
+
1198
+ #~ msgid "Your registration for %s has been approved."
1199
+ #~ msgstr "Din registrering på %s er godkjent."
1200
+
1201
+ #~ msgid "You may login at: %s"
1202
+ #~ msgstr "Du kan nå logge på %s"
1203
+
1204
+ #~ msgid "You originally registered at:"
1205
+ #~ msgstr "Du er opprinnelig registreret på:"
1206
+
1207
+ #~ msgid "Password reset for %s"
1208
+ #~ msgstr "Passordet er nullstilt for %s"
1209
+
1210
+ #~ msgid "Your password for %s has been reset"
1211
+ #~ msgstr "Ditt passord for %s er nullstilt"
1212
+
1213
+ #~ msgid ""
1214
+ #~ "Your new password is included below. You may wish to retain a copy for "
1215
+ #~ "your records."
1216
+ #~ msgstr "Ditt nye passord står nedenfor. Ta vare på opplysningene."
1217
+
1218
+ #~ msgid "This is an automated message from %s"
1219
+ #~ msgstr "Dette er en automatisk beskjed fra %s"
1220
+
1221
+ #~ msgid "Please do not reply to this address"
1222
+ #~ msgstr "Ikke svar på denne e-posten"
1223
+
1224
+ #~ msgid "New user registration for %s"
1225
+ #~ msgstr "Ny bruker registrering for %s"
1226
+
1227
+ #~ msgid "The following user registered for %s"
1228
+ #~ msgstr "Følgende bruker er registreret på %s"
1229
+
1230
+ #~ msgid "and is pending admin approval"
1231
+ #~ msgstr "og må godkjennes av admin"
1232
+
1233
+ #~ msgid "Title:"
1234
+ #~ msgstr "Tittel:"
lang/wp-members-nl_NL.mo ADDED
Binary file
lang/wp-members-nl_NL.po ADDED
@@ -0,0 +1,1541 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.3\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: 2014-07-22 12:02-0600\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "Language: nl_NL\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;"
16
+ "_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"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Generator: Poedit 1.6.4\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ default
23
+ # @ wp-members
24
+ #: admin/admin.php:60 admin/admin.php:129
25
+ msgid "Settings"
26
+ msgstr "Instellingen"
27
+
28
+ # @ wp-members
29
+ #: admin/admin.php:187
30
+ msgid "Options"
31
+ msgstr "Instellingen"
32
+
33
+ # @ wp-members
34
+ #: admin/admin.php:188
35
+ msgid "Fields"
36
+ msgstr "Formulier velden"
37
+
38
+ # @ wp-members
39
+ #: admin/admin.php:189
40
+ msgid "Dialogs"
41
+ msgstr "Meldings teksten"
42
+
43
+ # @ wp-members
44
+ #: admin/admin.php:190
45
+ msgid "Emails"
46
+ msgstr "E-mail instellingen"
47
+
48
+ # @ wp-members
49
+ #: admin/dialogs.php:109
50
+ msgid ""
51
+ "Your WP settings allow anyone to register - this is not the recommended "
52
+ "setting."
53
+ msgstr ""
54
+ "Je WP instellingen staan toe dat iedereen kan registreren - dit is niet een "
55
+ "geadviseerde instelling."
56
+
57
+ # @ wp-members
58
+ #: admin/dialogs.php:110
59
+ #, php-format
60
+ msgid ""
61
+ "You can %s change this here %s making sure the box next to \"Anyone can "
62
+ "register\" is unchecked."
63
+ msgstr ""
64
+ "Je kan dit %s hier %s wijzigen om de checkbox bij \"Iedereen kan registreren"
65
+ "\" uit te schakelen."
66
+
67
+ # @ wp-members
68
+ #: admin/dialogs.php:111
69
+ msgid ""
70
+ "This setting allows a link on the /wp-login.php page to register using the "
71
+ "WP native registration process thus circumventing any registration you are "
72
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
73
+ "but most users should uncheck this option. If you do not change this "
74
+ "setting, you can choose to ignore these warning messages under WP-Members "
75
+ "Settings."
76
+ msgstr ""
77
+ "Deze instelling staat toe dat de registratie link op de /wp-login.php pagina "
78
+ "gebruikt kan worden om via het normale WP proces te registreren. Dit omzeilt "
79
+ "het registratie proces die je met WP-Members gebruikt. In sommige gevallen "
80
+ "kan dit nodig of wenselijk zijn, maar de meeste gebruikers worden "
81
+ "geadviseerd om deze instelling uit te schakelen. Als je deze instelling niet "
82
+ "wilt wijzigen, kan je kiezen om dit waarschuwing bericht uit te schakelen "
83
+ "bij WP-Members Instellingen."
84
+
85
+ # @ wp-members
86
+ #: admin/dialogs.php:117
87
+ msgid ""
88
+ "Your WP settings allow anyone to comment - this is not the recommended "
89
+ "setting."
90
+ msgstr ""
91
+ "Je WP instellingen staan toe dat iedereen kan reageren - dit is niet een "
92
+ "geadviseerde instelling."
93
+
94
+ # @ wp-members
95
+ #: admin/dialogs.php:118
96
+ #, php-format
97
+ msgid ""
98
+ "You can %s change this here %s by checking the box next to \"Users must be "
99
+ "registered and logged in to comment.\""
100
+ msgstr ""
101
+ "Aanpassen kun je %s hier doen %s door het vakje aan te kruisen \" Gebruikers "
102
+ "moeten geregistreerd en aangemeld zijn om een reactie te geven.\""
103
+
104
+ # @ wp-members
105
+ #: admin/dialogs.php:119
106
+ msgid ""
107
+ "This setting allows any users to comment, whether or not they are "
108
+ "registered. Depending on how you are using WP-Members will determine whether "
109
+ "you should change this setting or not. If you do not change this setting, "
110
+ "you can choose to ignore these warning messages under WP-Members Settings."
111
+ msgstr ""
112
+ "Deze instelling staat toe dat de registratie link op de /wp-login.php pagina "
113
+ "gebruikt kan worden om via het normale WP proces te registreren. Dit omzeilt "
114
+ "het registratie proces die je met WP-Members gebruikt. In sommige gevallen "
115
+ "kan dit nodig of wenselijk zijn, maar de meeste gebruikers worden "
116
+ "geadviseerd om deze instelling uit te schakelen. Als je deze instelling niet "
117
+ "wilt wijzigen, kan je kiezen om dit waarschuwing bericht uit te schakelen "
118
+ "bij WP-Members Instellingen."
119
+
120
+ # @ wp-members
121
+ #: admin/dialogs.php:125
122
+ msgid ""
123
+ "Your WP settings allow full text rss feeds - this is not the recommended "
124
+ "setting."
125
+ msgstr ""
126
+ "Je WP instellingen staan volledige tekst RSS feeds toe - dit is niet een "
127
+ "geadviseerde instelling."
128
+
129
+ # @ wp-members
130
+ #: admin/dialogs.php:126
131
+ #, php-format
132
+ msgid ""
133
+ "You can %s change this here %s by changing \"For each article in a feed, show"
134
+ "\" to \"Summary.\""
135
+ msgstr ""
136
+ "Je kunt %s verander dit hier %s door te veranderen \"Voor elk artikel in een "
137
+ "feed, laat zien\" to \"Samenvatting\""
138
+
139
+ # @ wp-members
140
+ #: admin/dialogs.php:127
141
+ msgid ""
142
+ "Leaving this set to full text allows anyone to read your protected content "
143
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
144
+ "only show summary text."
145
+ msgstr ""
146
+ "Als je deze optie op volledige tekst laat staan, kan iedereen je beschermde "
147
+ "inhoud zien in een RSS lezer. Als je dit wijzigd naar Summary voorkom je "
148
+ "dit, aangezien RSS feeds alleen de samenvatting tekst tonen."
149
+
150
+ # @ wp-members
151
+ #: admin/dialogs.php:133
152
+ msgid "You have set WP-Members to hold registrations for approval"
153
+ msgstr ""
154
+ "Je hebt WP-Members gewijzigd zodat nieuwe registraties pas geactiveerd "
155
+ "worden na goedkeuring"
156
+
157
+ # @ wp-members
158
+ #: admin/dialogs.php:134
159
+ msgid ""
160
+ "but you have not changed the default message for \"Registration Completed\" "
161
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
162
+ "message to let users know they are pending approval."
163
+ msgstr ""
164
+ "Maar je hebt niet het standaard bericht aangepast voor \"Registratie Kompleet"
165
+ "\" onder \"WP-Members Meldings teksten.\" Je moet deze tekst aanpassen om de "
166
+ "gebruiker te laten weten dat zijn aanmelding op goedkeuring wacht."
167
+
168
+ # @ wp-members
169
+ #: admin/dialogs.php:140
170
+ msgid "You have set WP-Members to turn off the registration process"
171
+ msgstr "Je hebt ingesteld dat er geen nieuwe registratie gedaan kan worden"
172
+
173
+ # @ wp-members
174
+ #: admin/dialogs.php:141
175
+ msgid ""
176
+ "but you also set to moderate and/or email admin new registrations. You will "
177
+ "need to set up a registration page for users to register."
178
+ msgstr ""
179
+ "Je hebt ook aangegeven om te bewerken en/of dat je de beheerder nieuwe "
180
+ "registratie Emaild. Je moet een pagina aanmaken zodat gebruikers zich kunnen "
181
+ "registreren."
182
+
183
+ # @ wp-members
184
+ #: admin/dialogs.php:147
185
+ msgid "You have turned on reCAPTCHA"
186
+ msgstr "Je hebt reCAPTCHA aangezet"
187
+
188
+ # @ wp-members
189
+ #: admin/dialogs.php:148
190
+ msgid ""
191
+ "but you have not entered API keys. You will need both a public and private "
192
+ "key. The CAPTCHA will not display unless a valid API key is included."
193
+ msgstr ""
194
+ "Maar je hebt geen API sleutels ingevoegd. Je hebt zowel een prive als "
195
+ "publieke sleutel nodig. De CAPTCHA zal niet zichtbaar zijn zolang er geen "
196
+ "geldige sleutel is ingevoegd."
197
+
198
+ # @ wp-members
199
+ #: admin/dialogs.php:171
200
+ msgid "Version:"
201
+ msgstr "Versie:"
202
+
203
+ #: admin/dialogs.php:172
204
+ #, fuzzy
205
+ msgid "Quick Start Guide"
206
+ msgstr "Gebruiker updaten"
207
+
208
+ #: admin/dialogs.php:173
209
+ #, fuzzy
210
+ msgid "Online User Guide"
211
+ msgstr "Gebruiker updaten"
212
+
213
+ #: admin/dialogs.php:174
214
+ msgid "FAQs"
215
+ msgstr ""
216
+
217
+ # @ wp-members
218
+ #: admin/dialogs.php:181
219
+ #, fuzzy
220
+ msgid "Thank you for using WP-Members"
221
+ msgstr "Bedankt voor het gebruiken van WP-Members! u gebruikt versie %s"
222
+
223
+ #: admin/dialogs.php:182
224
+ msgid "A plugin developed by"
225
+ msgstr ""
226
+
227
+ # @ wp-members
228
+ #: admin/dialogs.php:183
229
+ msgid "Follow"
230
+ msgstr "Volg"
231
+
232
+ #: admin/dialogs.php:200 admin/dialogs.php:204
233
+ msgid "Latest from RocketGeek"
234
+ msgstr ""
235
+
236
+ #: admin/dialogs.php:221 admin/dialogs.php:234
237
+ msgid "Latest from ButlerBlog"
238
+ msgstr ""
239
+
240
+ # @ wp-members
241
+ #: admin/post.php:36 admin/post.php:38
242
+ #, fuzzy
243
+ msgid "Block"
244
+ msgstr "Blokkeer berichten standaard"
245
+
246
+ #: admin/post.php:37 admin/post.php:39
247
+ #, fuzzy
248
+ msgid "Unblock"
249
+ msgstr ""
250
+ "Opmerking: Berichten kunnen geblokeerd of vrijgegeven worden bij "
251
+ "paginabewerking"
252
+
253
+ #: admin/post.php:120
254
+ #, fuzzy, php-format
255
+ msgid "%s posts %sed."
256
+ msgstr "Blokkeer berichten standaard"
257
+
258
+ # @ wp-members
259
+ #: admin/post.php:138
260
+ #, fuzzy
261
+ msgid "Post Restriction"
262
+ msgstr "Nieuwe Registratie"
263
+
264
+ # @ wp-members
265
+ #: admin/post.php:145
266
+ #, fuzzy
267
+ msgid "Page Restriction"
268
+ msgstr "Registratie pagina link:"
269
+
270
+ #: admin/post.php:263 admin/post.php:295
271
+ #, fuzzy
272
+ msgid "Unblocked?"
273
+ msgstr ""
274
+ "Opmerking: Berichten kunnen geblokeerd of vrijgegeven worden bij "
275
+ "paginabewerking"
276
+
277
+ # @ wp-members
278
+ #: admin/post.php:263 admin/post.php:295
279
+ #, fuzzy
280
+ msgid "Blocked?"
281
+ msgstr ""
282
+ "Opmerking: Berichten kunnen geblokeerd of vrijgegeven worden bij "
283
+ "paginabewerking"
284
+
285
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
286
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
287
+ msgid "Need help?"
288
+ msgstr ""
289
+
290
+ # @ wp-members
291
+ #: admin/tab-captcha.php:46
292
+ msgid "Manage reCAPTCHA Options"
293
+ msgstr "Beheer reCAPTCHA instellingen"
294
+
295
+ # @ wp-members
296
+ #: admin/tab-captcha.php:60
297
+ msgid ""
298
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
299
+ "while blocking spam on your blog."
300
+ msgstr ""
301
+ "reCAPTCHA is een gratis, makkelijk bruikbare CAPTCHA service welke helpt om "
302
+ "boeken te digitaliseren terwijl je spam kan blokkeren op je blog/site."
303
+
304
+ # @ wp-members
305
+ #: admin/tab-captcha.php:61
306
+ #, php-format
307
+ msgid ""
308
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
309
+ "that they are a human. This verifies that they are not a spambot while also "
310
+ "correcting the automatic scans of old books. So you get less spam, and the "
311
+ "world gets accurately digitized books. Everybody wins! For details, visit "
312
+ "the %s reCAPTCHA website%s"
313
+ msgstr ""
314
+ "reCAPTCHA vraagt je om twee woorden, die uit een boek zijn gescand, in te "
315
+ "vullen om te bewijzen dat je een mens bent. Dit verzekerd ervan dat je geen "
316
+ "spambot bent, terwijl je ook helpt met het automatisch corrigeren van "
317
+ "ingescande oude boeken. Op deze manier krijg je minder spam op je site, en "
318
+ "de wereld betere gedigitaliseerde boeken. Iedereen wint! Voor meer details, "
319
+ "ga naar de %s reCAPTCHA website %s."
320
+
321
+ # @ wp-members
322
+ #: admin/tab-captcha.php:66
323
+ msgid "reCAPTCHA Keys"
324
+ msgstr "reCAPTCHA Sleutels"
325
+
326
+ # @ wp-members
327
+ #: admin/tab-captcha.php:68
328
+ #, php-format
329
+ msgid ""
330
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
331
+ "key. You can sign up for a %s free reCAPTCHA key%s"
332
+ msgstr ""
333
+ "reCAPTCHA heeft een API sleutel nodig, welke bestaat uit een \"publieke\" en "
334
+ "een \"prive\" sleutel. Je kan jezelf aanmelden voor een %s gratis reCAPTCHA "
335
+ "key %s"
336
+
337
+ # @ wp-members
338
+ #: admin/tab-captcha.php:69
339
+ msgid "Public Key"
340
+ msgstr "Publieke Sleutel"
341
+
342
+ # @ wp-members
343
+ #: admin/tab-captcha.php:70
344
+ msgid "Private Key"
345
+ msgstr "Privé Sleutel"
346
+
347
+ # @ wp-members
348
+ #: admin/tab-captcha.php:74
349
+ msgid "Choose Theme"
350
+ msgstr "Kies Thema"
351
+
352
+ # @ wp-members
353
+ #: admin/tab-captcha.php:77
354
+ msgid "Red"
355
+ msgstr "Rood"
356
+
357
+ # @ wp-members
358
+ #: admin/tab-captcha.php:78
359
+ msgid "White"
360
+ msgstr "Wit"
361
+
362
+ # @ wp-members
363
+ #: admin/tab-captcha.php:79
364
+ msgid "Black Glass"
365
+ msgstr "Zwart glans"
366
+
367
+ # @ wp-members
368
+ #: admin/tab-captcha.php:80
369
+ msgid "Clean"
370
+ msgstr "Minimaal"
371
+
372
+ #: admin/tab-captcha.php:112
373
+ #, fuzzy
374
+ msgid "Characters for image"
375
+ msgstr "Veld Type"
376
+
377
+ #: admin/tab-captcha.php:116
378
+ #, fuzzy
379
+ msgid "Number of characters"
380
+ msgstr "Bekijk fragmenten"
381
+
382
+ #: admin/tab-captcha.php:120
383
+ #, fuzzy
384
+ msgid "Image dimensions"
385
+ msgstr "Veld Type"
386
+
387
+ #: admin/tab-captcha.php:124
388
+ msgid "Font color of characters"
389
+ msgstr ""
390
+
391
+ #: admin/tab-captcha.php:128
392
+ #, fuzzy
393
+ msgid "Background color of image"
394
+ msgstr "Veld Type"
395
+
396
+ #: admin/tab-captcha.php:132
397
+ msgid "Font size"
398
+ msgstr ""
399
+
400
+ #: admin/tab-captcha.php:136
401
+ msgid "Width between characters"
402
+ msgstr ""
403
+
404
+ #: admin/tab-captcha.php:140
405
+ #, fuzzy
406
+ msgid "Image type"
407
+ msgstr "Veld Type"
408
+
409
+ #: admin/tab-captcha.php:154
410
+ msgid ""
411
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
412
+ "installed and activated."
413
+ msgstr ""
414
+
415
+ # @ wp-members
416
+ #: admin/tab-captcha.php:166
417
+ #, fuzzy
418
+ msgid "Update CAPTCHA Settings"
419
+ msgstr "Wijzig reCAPTCHA Instellingen"
420
+
421
+ # @ wp-members
422
+ #: admin/tab-captcha.php:230
423
+ #, fuzzy
424
+ msgid "CAPTCHA was updated for WP-Members"
425
+ msgstr "reCAPTCHA is bijgewerkt voor WP-Members"
426
+
427
+ # @ wp-members
428
+ #: admin/tab-dialogs.php:29
429
+ msgid "Restricted post (or page), displays above the login/registration form"
430
+ msgstr ""
431
+ "Beperkte posts (of pagina's), worden weer gegeven boven het inlog/"
432
+ "registratie formulier "
433
+
434
+ # @ wp-members
435
+ #: admin/tab-dialogs.php:30
436
+ msgid "Username is taken"
437
+ msgstr "Gebruikersnaam is al in gebruik"
438
+
439
+ # @ wp-members
440
+ #: admin/tab-dialogs.php:31
441
+ msgid "Email is registered"
442
+ msgstr "E-Mail is al geregistreerd"
443
+
444
+ # @ wp-members
445
+ #: admin/tab-dialogs.php:32
446
+ msgid "Registration completed"
447
+ msgstr "Registratie voltooid"
448
+
449
+ # @ wp-members
450
+ #: admin/tab-dialogs.php:33
451
+ msgid "User update"
452
+ msgstr "Gebruiker updaten"
453
+
454
+ # @ wp-members
455
+ #: admin/tab-dialogs.php:34
456
+ msgid "Passwords did not match"
457
+ msgstr "Wachtwoord is niet correct"
458
+
459
+ # @ wp-members
460
+ #: admin/tab-dialogs.php:35
461
+ msgid "Password changes"
462
+ msgstr "Wachtwoord aanpassen"
463
+
464
+ # @ wp-members
465
+ #: admin/tab-dialogs.php:36
466
+ msgid "Username or email do not exist when trying to reset forgotten password"
467
+ msgstr ""
468
+ "Gebruikers naam of wachtwoord komt niet overeen bij de poging het vergeten "
469
+ "wachtwoord te resetten"
470
+
471
+ # @ wp-members
472
+ #: admin/tab-dialogs.php:37
473
+ msgid "Password reset"
474
+ msgstr "Wachtwoord resetten"
475
+
476
+ # @ wp-members
477
+ #: admin/tab-dialogs.php:54
478
+ msgid "Dialogs and Error Messages"
479
+ msgstr "Berichten en foutmeldingen"
480
+
481
+ # @ wp-members
482
+ #: admin/tab-dialogs.php:56
483
+ #, php-format
484
+ msgid ""
485
+ "You can customize the text for dialogs and error messages. Simple HTML is "
486
+ "allowed %s etc."
487
+ msgstr ""
488
+ "Je kunt de tekst voor berichten en foutmeldingen aanpassen. Simpel HTML is "
489
+ "toegestaan %s etc."
490
+
491
+ # @ wp-members
492
+ #: admin/tab-dialogs.php:69
493
+ msgid "Terms of Service (TOS)"
494
+ msgstr "Algemene voorwaarden"
495
+
496
+ # @ wp-members
497
+ #: admin/tab-dialogs.php:76
498
+ msgid "Update Dialogs"
499
+ msgstr "Berichten bijwerken"
500
+
501
+ # @ wp-members
502
+ #: admin/tab-dialogs.php:115
503
+ msgid "WP-Members dialogs were updated"
504
+ msgstr "WP-Members mededelingen zijn aangepast"
505
+
506
+ # @ wp-members
507
+ #: admin/tab-emails.php:30
508
+ msgid "New Registration"
509
+ msgstr "Nieuwe Registratie"
510
+
511
+ # @ wp-members
512
+ #: admin/tab-emails.php:34
513
+ msgid "Registration is Moderated"
514
+ msgstr "Registratie in behandeling"
515
+
516
+ # @ wp-members
517
+ #: admin/tab-emails.php:35
518
+ msgid "Registration is Moderated, User is Approved"
519
+ msgstr "Registratie is Bijgewerkt, gebruiker is goedgekeurd"
520
+
521
+ # @ wp-members
522
+ #: admin/tab-emails.php:40
523
+ msgid "Password Reset"
524
+ msgstr "Wachtwoord Reset"
525
+
526
+ # @ wp-members
527
+ #: admin/tab-emails.php:45
528
+ msgid "Admin Notification"
529
+ msgstr "Beheerder mededeling"
530
+
531
+ # @ wp-members
532
+ #: admin/tab-emails.php:50
533
+ msgid "Email Signature"
534
+ msgstr "Email Handtekening"
535
+
536
+ # @ wp-members
537
+ #: admin/tab-emails.php:57
538
+ msgid "Email Messages"
539
+ msgstr "Email Berichten"
540
+
541
+ # @ wp-members
542
+ #: admin/tab-emails.php:60
543
+ msgid "You can customize the content of the emails sent by the plugin."
544
+ msgstr "Je kunt de inhoud aanpassen van de Emails die de plugin verstuurd."
545
+
546
+ # @ wp-members
547
+ #: admin/tab-emails.php:62
548
+ msgid "A list of shortcodes is available here."
549
+ msgstr "Een lijst van afkortingen zijn hier beschikbaar."
550
+
551
+ # @ wp-members
552
+ #: admin/tab-emails.php:69
553
+ msgid "Set a custom email address"
554
+ msgstr "Stel een aangepast Email adres in"
555
+
556
+ # @ wp-members
557
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
558
+ msgid "(optional)"
559
+ msgstr "(niet verplicht)"
560
+
561
+ # @ wp-members
562
+ #: admin/tab-emails.php:73
563
+ msgid "Set a custom email name"
564
+ msgstr "Stel een aangepaste Email naam in"
565
+
566
+ # @ wp-members
567
+ #: admin/tab-emails.php:84
568
+ msgid "Subject"
569
+ msgstr "Onderwerp"
570
+
571
+ # @ wp-members
572
+ #: admin/tab-emails.php:88
573
+ msgid "Body"
574
+ msgstr "Inhoud"
575
+
576
+ # @ wp-members
577
+ #: admin/tab-emails.php:105
578
+ msgid "Update Emails"
579
+ msgstr "Wijzig Emails"
580
+
581
+ # @ wp-members
582
+ #: admin/tab-emails.php:161
583
+ msgid "WP-Members emails were updated"
584
+ msgstr "WP-Members E-mails zijn bijgewerkt"
585
+
586
+ # @ wp-members
587
+ #: admin/tab-fields.php:166
588
+ msgid "WP-Members fields were updated"
589
+ msgstr "WP-Members velden zijn aangepast"
590
+
591
+ # @ wp-members
592
+ #: admin/tab-fields.php:176
593
+ msgid "Field Label is required for adding a new field. Nothing was updated."
594
+ msgstr ""
595
+ "Veld label is verplicht voor het toevoegen van een veld. Niets is aangepast."
596
+
597
+ # @ wp-members
598
+ #: admin/tab-fields.php:177
599
+ msgid "Option Name is required for adding a new field. Nothing was updated."
600
+ msgstr "Naam is verplicht om een nieuw veld toe te voegen. Niets is aangepast."
601
+
602
+ #: admin/tab-fields.php:184
603
+ msgid "A field with that option name already exists"
604
+ msgstr ""
605
+
606
+ # @ wp-members
607
+ #: admin/tab-fields.php:201
608
+ #, fuzzy
609
+ msgid "Checked value is required for checkboxes. Nothing was updated."
610
+ msgstr ""
611
+ "Veld label is verplicht voor het toevoegen van een veld. Niets is aangepast."
612
+
613
+ #: admin/tab-fields.php:223
614
+ #, fuzzy
615
+ msgid "field was added"
616
+ msgstr "Veld label (zichtbaar)"
617
+
618
+ # @ wp-members
619
+ #: admin/tab-fields.php:241
620
+ #, fuzzy
621
+ msgid "field was updated"
622
+ msgstr "WP-Members velden zijn aangepast"
623
+
624
+ # @ wp-members
625
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
626
+ #, fuzzy
627
+ msgid "Edit Field"
628
+ msgstr "Bewerk je gegevens"
629
+
630
+ # @ wp-members
631
+ #: admin/tab-fields.php:289
632
+ #, fuzzy
633
+ msgid "Add a Field"
634
+ msgstr "Toevoegen"
635
+
636
+ # @ wp-members
637
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
638
+ msgid "Field Label"
639
+ msgstr "Veld label (zichtbaar)"
640
+
641
+ #: admin/tab-fields.php:297
642
+ msgid "The name of the field as it will be displayed to the user."
643
+ msgstr ""
644
+
645
+ # @ wp-members
646
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
647
+ msgid "Option Name"
648
+ msgstr "Naam (niet zichtbaar)"
649
+
650
+ #: admin/tab-fields.php:306
651
+ msgid ""
652
+ "The database meta value for the field. It must be unique and contain no "
653
+ "spaces (underscores are ok)."
654
+ msgstr ""
655
+
656
+ # @ wp-members
657
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
658
+ msgid "Field Type"
659
+ msgstr "Veld Type"
660
+
661
+ # @ wp-members
662
+ #: admin/tab-fields.php:316
663
+ msgid "text"
664
+ msgstr "Tekst"
665
+
666
+ # @ wp-members
667
+ #: admin/tab-fields.php:317
668
+ msgid "textarea"
669
+ msgstr "Tekstveld"
670
+
671
+ # @ wp-members
672
+ #: admin/tab-fields.php:318
673
+ msgid "checkbox"
674
+ msgstr "Selectiebox"
675
+
676
+ # @ wp-members
677
+ #: admin/tab-fields.php:319
678
+ msgid "dropdown"
679
+ msgstr "Dropdown"
680
+
681
+ # @ wp-members
682
+ #: admin/tab-fields.php:320
683
+ msgid "password"
684
+ msgstr "Wachtwoord"
685
+
686
+ # @ wp-members
687
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
688
+ msgid "Display?"
689
+ msgstr "Weergeven?"
690
+
691
+ # @ wp-members
692
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
693
+ msgid "Required?"
694
+ msgstr "Verplicht?"
695
+
696
+ #: admin/tab-fields.php:334
697
+ #, fuzzy
698
+ msgid "Additional information for checkbox fields"
699
+ msgstr "WP-Members Extra velden"
700
+
701
+ # @ wp-members
702
+ #: admin/tab-fields.php:337
703
+ #, fuzzy
704
+ msgid "Checked by default?"
705
+ msgstr "Geselecteerd?"
706
+
707
+ # @ wp-members
708
+ #: admin/tab-fields.php:341
709
+ #, fuzzy
710
+ msgid "Stored value if checked:"
711
+ msgstr "Voor selectiebox, opgeslagen waarde indien geselecteerd:"
712
+
713
+ #: admin/tab-fields.php:347
714
+ #, fuzzy
715
+ msgid "Additional information for dropdown fields"
716
+ msgstr "WP-Members Extra velden"
717
+
718
+ # @ wp-members
719
+ #: admin/tab-fields.php:350
720
+ msgid "For dropdown, array of values:"
721
+ msgstr "Voor dropdown, mogelijkheden van waardes:"
722
+
723
+ # @ wp-members
724
+ #: admin/tab-fields.php:375
725
+ msgid "Options should be Option Name|option_value,"
726
+ msgstr "Opties moeten zijn optie naam|optie_waarde,"
727
+
728
+ # @ wp-members
729
+ #: admin/tab-fields.php:379
730
+ msgid "Visit plugin site for more information"
731
+ msgstr "Bezoek de plugin website voor meer informatie"
732
+
733
+ # @ wp-members
734
+ #: admin/tab-fields.php:385
735
+ #, fuzzy
736
+ msgid "Add Field"
737
+ msgstr "Toevoegen"
738
+
739
+ # @ wp-members
740
+ #: admin/tab-fields.php:407
741
+ msgid "Manage Fields"
742
+ msgstr "Bewerk formulier velden"
743
+
744
+ # @ wp-members
745
+ #: admin/tab-fields.php:409
746
+ msgid ""
747
+ "Determine which fields will display and which are required. This includes "
748
+ "all fields, both native WP fields and WP-Members custom fields."
749
+ msgstr ""
750
+ "Bepaal welke velden zichtbaar zijn en welke verplicht. Dit betreft alle "
751
+ "velden, zowel de standaard WordPress als WP-Members aangepaste velden."
752
+
753
+ # @ wp-members
754
+ #: admin/tab-fields.php:410
755
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
756
+ msgstr "(Opmerking: Email is altijd verplicht en kan niet worden aangepast)"
757
+
758
+ # @ wp-members
759
+ #: admin/tab-fields.php:415
760
+ msgid "Add/Delete"
761
+ msgstr "Toevoegen/Verwijderen"
762
+
763
+ # @ wp-members
764
+ #: admin/tab-fields.php:421
765
+ msgid "Checked?"
766
+ msgstr "Geselecteerd?"
767
+
768
+ #: admin/tab-fields.php:423
769
+ #, fuzzy
770
+ msgid "Users Screen"
771
+ msgstr "%d Gebruikers zijn geactiveerd."
772
+
773
+ # @ wp-members
774
+ #: admin/tab-fields.php:435
775
+ msgid "Delete"
776
+ msgstr "Verwijderen"
777
+
778
+ # @ wp-members
779
+ #: admin/tab-fields.php:447
780
+ msgid "(Email cannot be removed)"
781
+ msgstr "(E-Mail kan niet gewist worden)"
782
+
783
+ # @ wp-members
784
+ #: admin/tab-fields.php:467
785
+ #, fuzzy
786
+ msgid "Registration Date"
787
+ msgstr "Registratie voltooid"
788
+
789
+ # @ wp-members
790
+ #: admin/tab-fields.php:470
791
+ #, fuzzy
792
+ msgid "native"
793
+ msgstr "WP standaard?"
794
+
795
+ # @ wp-members
796
+ #: admin/tab-fields.php:480
797
+ #, fuzzy
798
+ msgid "Active"
799
+ msgstr "Activeer"
800
+
801
+ # @ wp-members
802
+ #: admin/tab-fields.php:492
803
+ msgid "Registration IP"
804
+ msgstr "IP @ Registratie"
805
+
806
+ # @ wp-members
807
+ #: admin/tab-fields.php:527
808
+ msgid "Update Fields"
809
+ msgstr "Velden bijwerken"
810
+
811
+ # @ wp-members
812
+ #: admin/tab-options.php:48
813
+ msgid "Manage Options"
814
+ msgstr "Bewerk instellingen"
815
+
816
+ # @ wp-members
817
+ #: admin/tab-options.php:54
818
+ msgid "Block Posts by default"
819
+ msgstr "Blokkeer berichten standaard"
820
+
821
+ # @ wp-members
822
+ #: admin/tab-options.php:54
823
+ msgid ""
824
+ "Note: Posts can still be individually blocked or unblocked at the article "
825
+ "level"
826
+ msgstr ""
827
+ "Opmerking: Berichten kunnen geblokeerd of vrijgegeven worden bij "
828
+ "paginabewerking"
829
+
830
+ # @ wp-members
831
+ #: admin/tab-options.php:55
832
+ msgid "Block Pages by default"
833
+ msgstr "Block pagina's standaard"
834
+
835
+ # @ wp-members
836
+ #: admin/tab-options.php:55
837
+ msgid ""
838
+ "Note: Pages can still be individually blocked or unblocked at the article "
839
+ "level"
840
+ msgstr ""
841
+ "Opmerking: Pagina's kunnen geblokeerd of vrijgegeven worden bij "
842
+ "paginabewerking"
843
+
844
+ # @ wp-members
845
+ #: admin/tab-options.php:56
846
+ msgid "Show excerpts"
847
+ msgstr "Bekijk fragmenten"
848
+
849
+ # @ wp-members
850
+ #: admin/tab-options.php:56
851
+ msgid ""
852
+ "Shows excerpted content above the login/registration on both Posts and Pages"
853
+ msgstr ""
854
+ "Laat een fragment van de inhoud zien boven de login/registratie pagina. bij "
855
+ "zowel berichten als pagina's"
856
+
857
+ # @ wp-members
858
+ #: admin/tab-options.php:57
859
+ msgid "Notify admin"
860
+ msgstr "Bericht beheerder"
861
+
862
+ # @ wp-members
863
+ #: admin/tab-options.php:57
864
+ #, fuzzy, php-format
865
+ msgid "Notify %s for each new registration? %s"
866
+ msgstr "Stuur bericht naar beheerder bij nieuwe registratie?"
867
+
868
+ # @ wp-members
869
+ #: admin/tab-options.php:58
870
+ msgid "Moderate registration"
871
+ msgstr "Bewerk registratie"
872
+
873
+ # @ wp-members
874
+ #: admin/tab-options.php:58
875
+ msgid "Holds new registrations for admin approval"
876
+ msgstr "Niewe registratie moet goedgekeurd worden door beheerder"
877
+
878
+ # @ wp-members
879
+ #: admin/tab-options.php:91
880
+ #, fuzzy
881
+ msgid "Enable CAPTCHA"
882
+ msgstr "Gebruik CAPTCHA"
883
+
884
+ # @ wp-members
885
+ #: admin/tab-options.php:59
886
+ msgid "Turns on CAPTCHA for registration"
887
+ msgstr "Zet CAPTCHA aan voor registratie"
888
+
889
+ # @ wp-members
890
+ #: admin/tab-options.php:60
891
+ #, fuzzy
892
+ msgid "Hide registration"
893
+ msgstr "Registratie voltooid"
894
+
895
+ #: admin/tab-options.php:60
896
+ msgid "Removes the registration form from blocked content"
897
+ msgstr ""
898
+
899
+ # @ wp-members
900
+ #: admin/tab-options.php:62
901
+ msgid "Time-based expiration"
902
+ msgstr "Verloopt op tijd gebaseerd"
903
+
904
+ # @ wp-members
905
+ #: admin/tab-options.php:62
906
+ msgid "Allows for access to expire"
907
+ msgstr "Sta toe dat het inloggen verloopt"
908
+
909
+ # @ wp-members
910
+ #: admin/tab-options.php:63
911
+ msgid "Trial period"
912
+ msgstr "Proef periode"
913
+
914
+ # @ wp-members
915
+ #: admin/tab-options.php:63
916
+ msgid "Allows for a trial period"
917
+ msgstr "Sta proef periode toe"
918
+
919
+ # @ wp-members
920
+ #: admin/tab-options.php:64
921
+ msgid "Ignore warning messages"
922
+ msgstr "Negeer waarschuwings berichten"
923
+
924
+ # @ wp-members
925
+ #: admin/tab-options.php:64
926
+ msgid "Ignores WP-Members warning messages in the admin panel"
927
+ msgstr "Verberg WP-Members waarschuwings berichten in het beheerders menu"
928
+
929
+ #: admin/tab-options.php:81
930
+ msgid "Attribution"
931
+ msgstr ""
932
+
933
+ #: admin/tab-options.php:83
934
+ msgid ""
935
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
936
+ msgstr ""
937
+
938
+ # @ wp-members
939
+ #: admin/tab-options.php:87
940
+ #, fuzzy
941
+ msgid "Auto Excerpt:"
942
+ msgstr "Bekijk fragmenten"
943
+
944
+ #: admin/tab-options.php:88
945
+ #, fuzzy
946
+ msgid "Number of words in excerpt:"
947
+ msgstr "Bekijk fragmenten"
948
+
949
+ # @ wp-members
950
+ #: admin/tab-options.php:88 admin/tab-options.php:108
951
+ #: admin/tab-options.php:118 admin/tab-options.php:132
952
+ msgid "Optional"
953
+ msgstr "Optie"
954
+
955
+ #: admin/tab-options.php:88
956
+ #, fuzzy
957
+ msgid "Automatically creates an excerpt"
958
+ msgstr "Bekijk fragmenten"
959
+
960
+ #: admin/tab-options.php:103
961
+ #, fuzzy
962
+ msgid "User Profile Page:"
963
+ msgstr "Registratie pagina link:"
964
+
965
+ #: admin/tab-options.php:106
966
+ msgid "For creating a forgot password link in the login form"
967
+ msgstr ""
968
+
969
+ # @ wp-members
970
+ #: admin/tab-options.php:113
971
+ #, fuzzy
972
+ msgid "Register Page:"
973
+ msgstr "Registratie pagina link:"
974
+
975
+ #: admin/tab-options.php:116
976
+ msgid "For creating a register link in the login form"
977
+ msgstr ""
978
+
979
+ #: admin/tab-options.php:126
980
+ msgid "Select a stylesheet or specify a custom stylesheet below"
981
+ msgstr ""
982
+
983
+ # @ wp-members
984
+ #: admin/tab-options.php:131
985
+ #, fuzzy
986
+ msgid "Custom Stylesheet:"
987
+ msgstr "Aangepast"
988
+
989
+ # @ wp-members
990
+ #: admin/tab-options.php:136
991
+ msgid "Update Settings"
992
+ msgstr "Instellingen bijwerken"
993
+
994
+ # @ wp-members
995
+ #: admin/tab-options.php:246
996
+ msgid "WP-Members settings were updated"
997
+ msgstr "WP-Members instellingen zijn bijgewerkt"
998
+
999
+ #: admin/tab-options.php:296
1000
+ #, fuzzy
1001
+ msgid "Select a page"
1002
+ msgstr "Registratie pagina link:"
1003
+
1004
+ #: admin/tab-options.php:304
1005
+ msgid "USE CUSTOM URL BELOW"
1006
+ msgstr ""
1007
+
1008
+ # @ wp-members
1009
+ #: admin/user-export.php:57 admin/user-export.php:172
1010
+ msgid "Activated?"
1011
+ msgstr "Geactiveerd?"
1012
+
1013
+ # @ wp-members
1014
+ #: admin/user-export.php:61 admin/user-export.php:175
1015
+ msgid "Subscription"
1016
+ msgstr "Inschrijving"
1017
+
1018
+ # @ wp-members
1019
+ #: admin/user-export.php:61 admin/user-export.php:175
1020
+ msgid "Expires"
1021
+ msgstr "Verloopt"
1022
+
1023
+ # @ wp-members
1024
+ #: admin/user-export.php:64 admin/user-export.php:178
1025
+ msgid "Registered"
1026
+ msgstr "Geregistreerd"
1027
+
1028
+ # @ wp-members
1029
+ #: admin/user-export.php:65 admin/user-export.php:179
1030
+ msgid "IP"
1031
+ msgstr "IP"
1032
+
1033
+ # @ wp-members
1034
+ #: admin/user-profile.php:46
1035
+ msgid "WP-Members Additional Fields"
1036
+ msgstr "WP-Members Extra velden"
1037
+
1038
+ # @ wp-members
1039
+ #: admin/user-profile.php:66 native-registration.php:36
1040
+ #: native-registration.php:159 users.php:62
1041
+ msgid "(required)"
1042
+ msgstr "Verplicht?"
1043
+
1044
+ # @ wp-members
1045
+ #: admin/user-profile.php:98
1046
+ msgid "Activate this user?"
1047
+ msgstr "Gebruiker activeren?"
1048
+
1049
+ # @ wp-members
1050
+ #: admin/user-profile.php:103
1051
+ msgid "Reactivate this user?"
1052
+ msgstr "Heractiveer deze gebruiker?"
1053
+
1054
+ # @ wp-members
1055
+ #: admin/user-profile.php:108
1056
+ msgid "Deactivate this user?"
1057
+ msgstr "Deactiveer deze gebruiker?"
1058
+
1059
+ # @ wp-members
1060
+ #: admin/user-profile.php:129
1061
+ msgid "IP @ registration"
1062
+ msgstr "IP @ Registratie"
1063
+
1064
+ # @ wp-members
1065
+ #: admin/users.php:45 admin/users.php:49
1066
+ msgid "Export"
1067
+ msgstr "Exporteer"
1068
+
1069
+ #: admin/users.php:50 admin/users.php:91
1070
+ #, fuzzy
1071
+ msgid "Export All Users"
1072
+ msgstr "Exporteer"
1073
+
1074
+ # @ wp-members
1075
+ #: forms.php:95
1076
+ #, fuzzy
1077
+ msgid "Existing Users Log In"
1078
+ msgstr "Inloggen bestaande gebruiker"
1079
+
1080
+ # @ wp-members
1081
+ #: forms.php:161 wp-members-dialogs.php:192
1082
+ msgid "Change Password"
1083
+ msgstr "Wijzig Wachtwoord"
1084
+
1085
+ # @ wp-members
1086
+ #: forms.php:163
1087
+ msgid "Update Password"
1088
+ msgstr "Vernieuw Wachtwoord"
1089
+
1090
+ # @ wp-members
1091
+ #: forms.php:227
1092
+ msgid "Reset Forgotten Password"
1093
+ msgstr "Herstel Vergeten Wachtwoord"
1094
+
1095
+ # @ wp-members
1096
+ #: forms.php:403
1097
+ msgid "Forgot password?"
1098
+ msgstr "Wachtwoord vergeten?"
1099
+
1100
+ # @ wp-members
1101
+ #: forms.php:403
1102
+ msgid "Click here to reset"
1103
+ msgstr "Klik hier om te resetten"
1104
+
1105
+ # @ wp-members
1106
+ #: forms.php:418
1107
+ msgid "New User?"
1108
+ msgstr "Nieuwe Gebruiker?"
1109
+
1110
+ # @ wp-members
1111
+ #: forms.php:418
1112
+ msgid "Click here to register"
1113
+ msgstr "Klik hier om te registreren"
1114
+
1115
+ # @ wp-members
1116
+ #: forms.php:515
1117
+ msgid "Required field"
1118
+ msgstr "Verplicht veld"
1119
+
1120
+ # @ wp-members
1121
+ #: forms.php:521
1122
+ #, fuzzy
1123
+ msgid "Reset Form"
1124
+ msgstr "Leeg formulier"
1125
+
1126
+ # @ wp-members
1127
+ #: forms.php:523
1128
+ #, fuzzy
1129
+ msgid "Update Profile"
1130
+ msgstr "Gebruiker updaten"
1131
+
1132
+ # @ wp-members
1133
+ #: forms.php:561
1134
+ msgid "Choose a Username"
1135
+ msgstr "Kies Gebruikersnaam"
1136
+
1137
+ # @ wp-members
1138
+ #: forms.php:683 native-registration.php:65
1139
+ #, php-format
1140
+ msgid "Please indicate that you agree to the %s TOS %s"
1141
+ msgstr "Selecteer dat u akkoord gaat met de %s algemene voorwaarden %s"
1142
+
1143
+ # @ wp-members
1144
+ #: forms.php:852
1145
+ #, fuzzy
1146
+ msgid "New User Registration"
1147
+ msgstr "Nieuwe Gebruiker?"
1148
+
1149
+ #: forms.php:1018
1150
+ msgid "Input the code:"
1151
+ msgstr ""
1152
+
1153
+ # @ wp-members
1154
+ #: users.php:38
1155
+ #, fuzzy
1156
+ msgid "Additional Information"
1157
+ msgstr "Extra informatie"
1158
+
1159
+ # @ default
1160
+ #: wp-members-core.php:118 wp-members-core.php:245
1161
+ msgid "There was an error with the CAPTCHA form."
1162
+ msgstr "Er is een fout met het CAPTCHA formulier"
1163
+
1164
+ # @ wp-members
1165
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1166
+ msgid "Edit Your Information"
1167
+ msgstr "Bewerk je gegevens"
1168
+
1169
+ #: wp-members-core.php:544
1170
+ msgid "<strong>ERROR</strong>: User has not been activated."
1171
+ msgstr "<strong>FOUT</strong>: Gebruiker is niet geactiveerd"
1172
+
1173
+ # @ wp-members
1174
+ #: wp-members-core.php:903 wp-members-register.php:93
1175
+ #, php-format
1176
+ msgid "Sorry, %s is a required field."
1177
+ msgstr "Sorry, %s is een verplicht veld."
1178
+
1179
+ # @ wp-members
1180
+ #: wp-members-dialogs.php:42
1181
+ msgid "Login Failed!"
1182
+ msgstr "Aanmelden Mislukt!"
1183
+
1184
+ # @ wp-members
1185
+ #: wp-members-dialogs.php:45
1186
+ msgid "You entered an invalid username or password."
1187
+ msgstr "Je hebt een ongeldige naam of wachtwoord gebruikt."
1188
+
1189
+ # @ wp-members
1190
+ #: wp-members-dialogs.php:47
1191
+ msgid "Click here to continue."
1192
+ msgstr "Klik hier om door te gaan."
1193
+
1194
+ # @ wp-members
1195
+ #: wp-members-dialogs.php:191
1196
+ msgid "Edit My Information"
1197
+ msgstr "Bewerk mijn gegevens"
1198
+
1199
+ # @ wp-members
1200
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1201
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1202
+ #: wp-members-sidebar.php:246
1203
+ #, php-format
1204
+ msgid "You are logged in as %s"
1205
+ msgstr "Je bent aangemeld als %s"
1206
+
1207
+ # @ wp-members
1208
+ #: wp-members-dialogs.php:208
1209
+ #, fuzzy
1210
+ msgid "Click to log out."
1211
+ msgstr "Aanmelden"
1212
+
1213
+ # @ wp-members
1214
+ #: wp-members-dialogs.php:209
1215
+ msgid "Begin using the site."
1216
+ msgstr "Begin de webpagina te gebruiken."
1217
+
1218
+ # @ wp-members
1219
+ #: wp-members-dialogs.php:225
1220
+ #, fuzzy
1221
+ msgid "Click to log out"
1222
+ msgstr "Aanmelden"
1223
+
1224
+ # @ wp-members
1225
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1226
+ #, fuzzy
1227
+ msgid "click to log out"
1228
+ msgstr "Aanmelden"
1229
+
1230
+ # @ wp-members
1231
+ #: wp-members-dialogs.php:271
1232
+ msgid "Password fields cannot be empty"
1233
+ msgstr "Wachtwoord veld mag niet leeg zijn"
1234
+
1235
+ # @ default
1236
+ #: wp-members-register.php:51
1237
+ #, fuzzy
1238
+ msgid "There was an error processing the form."
1239
+ msgstr "Er is een fout met het CAPTCHA formulier"
1240
+
1241
+ # @ wp-members
1242
+ #: wp-members-register.php:110
1243
+ msgid "Sorry, username is a required field"
1244
+ msgstr "Sorry, gebruikersnaam is een verplicht veld"
1245
+
1246
+ # @ wp-members
1247
+ #: wp-members-register.php:111
1248
+ msgid "The username cannot include non-alphanumeric characters."
1249
+ msgstr "De gebruikersnaam kan geen niet alfanumerieke karakters bevatten."
1250
+
1251
+ # @ wp-members
1252
+ #: wp-members-register.php:112 wp-members-register.php:282
1253
+ msgid "You must enter a valid email address."
1254
+ msgstr "Je moet een geldig mail adres invoeren."
1255
+
1256
+ # @ wp-members
1257
+ #: wp-members-register.php:119
1258
+ #, fuzzy
1259
+ msgid "Passwords did not match."
1260
+ msgstr "Wachtwoord is niet correct"
1261
+
1262
+ # @ wp-members
1263
+ #: wp-members-register.php:120 wp-members-register.php:286
1264
+ #, fuzzy
1265
+ msgid "Emails did not match."
1266
+ msgstr "Wachtwoord is niet correct"
1267
+
1268
+ # @ default
1269
+ #: wp-members-register.php:127
1270
+ msgid "You must complete the CAPTCHA form."
1271
+ msgstr "Je moet het CAPTCHA formulier invullen."
1272
+
1273
+ # @ wp-members
1274
+ #: wp-members-register.php:377
1275
+ msgid "We were unable to validate the public key."
1276
+ msgstr "Het is niet gelukt de publieke sleutel te valideren."
1277
+
1278
+ # @ wp-members
1279
+ #: wp-members-register.php:381
1280
+ msgid "We were unable to validate the private key."
1281
+ msgstr "Het is niet gelukt de prive sleutel te valideren."
1282
+
1283
+ # @ wp-members
1284
+ #: wp-members-register.php:385
1285
+ msgid "The challenge parameter of the verify script was incorrect."
1286
+ msgstr "De response waarde van het verifieer script is niet correct."
1287
+
1288
+ # @ wp-members
1289
+ #: wp-members-register.php:389
1290
+ msgid "The CAPTCHA solution was incorrect."
1291
+ msgstr "De CAPTCHA oplossing was niet juist."
1292
+
1293
+ # @ wp-members
1294
+ #: wp-members-register.php:393
1295
+ msgid "The parameters to verify were incorrect"
1296
+ msgstr "De parameters om te valideren zijn niet juist"
1297
+
1298
+ # @ wp-members
1299
+ #: wp-members-register.php:397
1300
+ msgid ""
1301
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1302
+ msgstr ""
1303
+ "De reCAPTCHA sleutels zijn aan een specifiek domein gebonden om beveiligings "
1304
+ "redenen."
1305
+
1306
+ # @ wp-members
1307
+ #: wp-members-register.php:401
1308
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1309
+ msgstr "De reCAPTCHA server was niet gevonden. Probeer het nog een keer."
1310
+
1311
+ #: wp-members-register.php:405
1312
+ msgid "You have entered an incorrect code value. Please try again."
1313
+ msgstr ""
1314
+
1315
+ # @ wp-members
1316
+ #: wp-members-sidebar.php:117
1317
+ msgid "Login Failed!<br />You entered an invalid username or password."
1318
+ msgstr ""
1319
+ "Aanmelden Mislukt!<br />Je hebt een verkeerd wachtwoord of gebuikersnaam "
1320
+ "gebruikt."
1321
+
1322
+ # @ wp-members
1323
+ #: wp-members-sidebar.php:118
1324
+ #, fuzzy
1325
+ msgid "You are not logged in."
1326
+ msgstr "Je bent aangemeld als %s"
1327
+
1328
+ #: wp-members-sidebar.php:169
1329
+ msgid "log in"
1330
+ msgstr "Aanmelden"
1331
+
1332
+ # @ wp-members
1333
+ #: wp-members-sidebar.php:180
1334
+ msgid "Forgot?"
1335
+ msgstr "Vergeten?"
1336
+
1337
+ # @ wp-members
1338
+ #: wp-members-sidebar.php:247
1339
+ msgid "click here to log out"
1340
+ msgstr "Klik hier om je af te melden"
1341
+
1342
+ #: wp-members-sidebar.php:279
1343
+ msgid "Displays the WP-Members sidebar login."
1344
+ msgstr ""
1345
+
1346
+ # @ wp-members
1347
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1348
+ msgid "Login Status"
1349
+ msgstr "Login Status"
1350
+
1351
+ #: wp-members-sidebar.php:299
1352
+ msgid "Title:"
1353
+ msgstr "Titel:"
1354
+
1355
+ # @ wp-members
1356
+ #: wp-members-tos.php:24
1357
+ msgid "Terms of Service"
1358
+ msgstr "Algemene Voorwaarden"
1359
+
1360
+ # @ wp-members
1361
+ #: wp-members-tos.php:36
1362
+ #, php-format
1363
+ msgid "%sclose%s"
1364
+ msgstr "%s sluiten %s"
1365
+
1366
+ # @ wp-members
1367
+ #: wp-members-tos.php:38
1368
+ #, php-format
1369
+ msgid "%sprint%s"
1370
+ msgstr "%sprint%s"
1371
+
1372
+ # @ wp-members
1373
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1374
+ #: Strings wp-members-install.php:49
1375
+ msgid "First Name"
1376
+ msgstr "Voornaam"
1377
+
1378
+ # @ wp-members
1379
+ #: wp-members-install.php:50
1380
+ msgid "Last Name"
1381
+ msgstr "Achternaam"
1382
+
1383
+ # @ wp-members
1384
+ #: wp-members-install.php:51
1385
+ msgid "Address 1"
1386
+ msgstr "Address 1"
1387
+
1388
+ # @ wp-members
1389
+ #: wp-members-install.php:52
1390
+ msgid "Address 2"
1391
+ msgstr "Address 2"
1392
+
1393
+ # @ wp-members
1394
+ #: wp-members-install.php:53
1395
+ msgid "City"
1396
+ msgstr "Woonplaats"
1397
+
1398
+ # @ wp-members
1399
+ #: wp-members-install.php:54
1400
+ msgid "State"
1401
+ msgstr "Provincie"
1402
+
1403
+ # @ wp-members
1404
+ #: wp-members-install.php:55
1405
+ msgid "Zip"
1406
+ msgstr "Postcode"
1407
+
1408
+ # @ wp-members
1409
+ #: wp-members-install.php:56
1410
+ msgid "Country"
1411
+ msgstr "Land"
1412
+
1413
+ # @ wp-members
1414
+ #: wp-members-install.php:57
1415
+ msgid "Day Phone"
1416
+ msgstr "Telefoon"
1417
+
1418
+ # @ wp-members
1419
+ #: wp-members-install.php:59
1420
+ msgid "Website"
1421
+ msgstr "Webpagina"
1422
+
1423
+ # @ wp-members
1424
+ #: wp-members-install.php:60
1425
+ msgid "AIM"
1426
+ msgstr "AIM"
1427
+
1428
+ # @ wp-members
1429
+ #: wp-members-install.php:61
1430
+ msgid "Yahoo IM"
1431
+ msgstr "Yahoo IM"
1432
+
1433
+ # @ wp-members
1434
+ #: wp-members-install.php:62
1435
+ msgid "Jabber/Google Talk"
1436
+ msgstr "Jabber/Google Talk"
1437
+
1438
+ # @ wp-members
1439
+ #: wp-members-install.php:63
1440
+ msgid "Biographical Info"
1441
+ msgstr "Persoonlijke info."
1442
+
1443
+ # @ wp-members
1444
+ #: wp-members-install.php:64 wp-members-install.php:211
1445
+ msgid "TOS"
1446
+ msgstr "A.V."
1447
+
1448
+ # @ wp-members
1449
+ #: Error message dialog strings wp-members-install.php:96
1450
+ #, fuzzy
1451
+ msgid ""
1452
+ "This content is restricted to site members. If you are an existing user, "
1453
+ "please log in. New users may register below."
1454
+ msgstr ""
1455
+ "Deze inhoud is beschermd voor alleen site leden. Log in indien je een "
1456
+ "bestaande gebruiker bent. Nieuwe gebruikers kunnen hieronder registreren."
1457
+
1458
+ # @ wp-members
1459
+ #: wp-members-install.php:97
1460
+ msgid "Sorry, that username is taken, please try another."
1461
+ msgstr "Sorry, deze gebruikersnaam is al in gebruik. Probeer een andere."
1462
+
1463
+ # @ wp-members
1464
+ #: wp-members-install.php:98
1465
+ msgid ""
1466
+ "Sorry, that email address already has an account.<br />Please try another."
1467
+ msgstr ""
1468
+ "Sorry, maar dat e-mailadres heeft al een gebruikersnaam.<br />Probeer een "
1469
+ "ander e-mailadres of gebruik de Wachtwoord Vergeten optie."
1470
+
1471
+ # @ wp-members
1472
+ #: wp-members-install.php:99
1473
+ #, fuzzy
1474
+ msgid ""
1475
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1476
+ "log in using the password that was emailed to you."
1477
+ msgstr ""
1478
+ "Gefeliciteerd! Je registratie is succesvol.<br /><br />Je mag nu inloggen "
1479
+ "met het wachtwoord dat naar je is verstuurd per e-mail."
1480
+
1481
+ # @ wp-members
1482
+ #: wp-members-install.php:100
1483
+ msgid "Your information was updated!"
1484
+ msgstr "Je informatie is gewijzigd!"
1485
+
1486
+ # @ wp-members
1487
+ #: wp-members-install.php:101
1488
+ msgid "Passwords did not match.<br /><br />Please try again."
1489
+ msgstr ""
1490
+ "De ingevoerde wachtwoorden komen niet overeen.<br /><br />Probeer het nog "
1491
+ "eens."
1492
+
1493
+ # @ wp-members
1494
+ #: wp-members-install.php:102
1495
+ msgid ""
1496
+ "Password successfully changed!<br /><br />You will need to re-login with "
1497
+ "your new password."
1498
+ msgstr ""
1499
+ "Wachtwoord succesvol gewijzigd!<br /><br />Je moet opnieuw inloggen met je "
1500
+ "nieuwe wachtwoord."
1501
+
1502
+ # @ wp-members
1503
+ #: wp-members-install.php:103
1504
+ msgid "Either the username or email address do not exist in our records."
1505
+ msgstr "Deze gebruikersnaam of e-mailadres is niet bekend."
1506
+
1507
+ # @ wp-members
1508
+ #: wp-members-install.php:104
1509
+ msgid ""
1510
+ "Password successfully reset!<br /><br />An email containing a new password "
1511
+ "has been sent to the email address on file for your account. You may change "
1512
+ "this random password then re-login with your new password."
1513
+ msgstr ""
1514
+ "Wachtwoord succesvol opnieuw ingesteld!<br /><br />Een e-mail met je nieuwe "
1515
+ "wachtwoord is verstuurd naar het e-mailadres bekend voor deze "
1516
+ "gebruikersnaam. Je kan dit wachtwoord wijzigen zodra je opnieuw inlogd met "
1517
+ "je nieuwe wachtwoord."
1518
+
1519
+ # @ wp-members
1520
+ #~ msgid "Yes"
1521
+ #~ msgstr "Ja"
1522
+
1523
+ # @ wp-members
1524
+ #~ msgid "WP-Members"
1525
+ #~ msgstr "WP-Members"
1526
+
1527
+ # @ wp-members
1528
+ #~ msgid "Custom"
1529
+ #~ msgstr "Aangepast"
1530
+
1531
+ #, fuzzy
1532
+ #~ msgid "edit"
1533
+ #~ msgstr "Bewerk je gegevens"
1534
+
1535
+ #, fuzzy
1536
+ #~ msgid "Edit"
1537
+ #~ msgstr "Bewerk je gegevens"
1538
+
1539
+ #, fuzzy
1540
+ #~ msgid "Pages"
1541
+ #~ msgstr "Block pagina's standaard"
lang/wp-members-pl_PL.mo ADDED
Binary file
lang/wp-members-pl_PL.po ADDED
@@ -0,0 +1,1542 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:03-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: pl_PL\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 1.6.4\n"
16
+
17
+ #: admin/admin.php:60 admin/admin.php:129
18
+ msgid "Settings"
19
+ msgstr "Ustawienia"
20
+
21
+ #: admin/admin.php:187
22
+ msgid "Options"
23
+ msgstr "Opcje"
24
+
25
+ #: admin/admin.php:188
26
+ msgid "Fields"
27
+ msgstr "Pola"
28
+
29
+ #: admin/admin.php:189
30
+ msgid "Dialogs"
31
+ msgstr "Komunikaty"
32
+
33
+ #: admin/admin.php:190
34
+ #, fuzzy
35
+ msgid "Emails"
36
+ msgstr "Email"
37
+
38
+ #: admin/dialogs.php:109
39
+ msgid ""
40
+ "Your WP settings allow anyone to register - this is not the recommended "
41
+ "setting."
42
+ msgstr ""
43
+ "Twoje ustawienia WP pozwalają się zarejestrować dowolnej osobie - nie jest "
44
+ "to rekomendowane ustawienie."
45
+
46
+ #: admin/dialogs.php:110
47
+ #, php-format
48
+ msgid ""
49
+ "You can %s change this here %s making sure the box next to \"Anyone can "
50
+ "register\" is unchecked."
51
+ msgstr ""
52
+ "Możesz to zmienić %s wchodząc tutaj %s i odznaczając pole \"Każdy może się "
53
+ "zarejestrować\"."
54
+
55
+ #: admin/dialogs.php:111
56
+ msgid ""
57
+ "This setting allows a link on the /wp-login.php page to register using the "
58
+ "WP native registration process thus circumventing any registration you are "
59
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
60
+ "but most users should uncheck this option. If you do not change this "
61
+ "setting, you can choose to ignore these warning messages under WP-Members "
62
+ "Settings."
63
+ msgstr ""
64
+ "To ustawienie pozwala rejestrować się użytkownikom na stronie /wp-login.php "
65
+ "przez natywne procesy rejestracji WP. W niektórych sytuacjach może okazać "
66
+ "się to przydatne, ale w większości wypadków polecamy wyłączenie tej opcji. "
67
+ "Jeśli nie chcesz jej wyłączać, możesz wybrać ignorowanie tego komunikatu w "
68
+ "ustawieniach WP-Members."
69
+
70
+ #: admin/dialogs.php:117
71
+ msgid ""
72
+ "Your WP settings allow anyone to comment - this is not the recommended "
73
+ "setting."
74
+ msgstr ""
75
+ "Twoje ustawienia WP pozwalają dodawać komentarze dowolnej osobie - nie jest "
76
+ "to rekomendowane ustawienie."
77
+
78
+ #: admin/dialogs.php:118
79
+ #, fuzzy, php-format
80
+ msgid ""
81
+ "You can %s change this here %s by checking the box next to \"Users must be "
82
+ "registered and logged in to comment.\""
83
+ msgstr ""
84
+ "Możesz to zmienić %s wchodząc tutaj %s i odznaczając pole \"Każdy może się "
85
+ "zarejestrować\"."
86
+
87
+ #: admin/dialogs.php:119
88
+ msgid ""
89
+ "This setting allows any users to comment, whether or not they are "
90
+ "registered. Depending on how you are using WP-Members will determine whether "
91
+ "you should change this setting or not. If you do not change this setting, "
92
+ "you can choose to ignore these warning messages under WP-Members Settings."
93
+ msgstr ""
94
+ "To ustawienie pozwala dodawać komentarze nawet niezarejestrowanym "
95
+ "użytkownikom. Ustawienie to powinno się dostosować do tego jaki masz zamiar "
96
+ "wykorzystywania wtyczki WP-Members. Jeśli nie chcesz tego zmieniać, możesz "
97
+ "wybrać ignorowanie tego komunikatu w ustawieniach WP-Members."
98
+
99
+ #: admin/dialogs.php:125
100
+ msgid ""
101
+ "Your WP settings allow full text rss feeds - this is not the recommended "
102
+ "setting."
103
+ msgstr ""
104
+ "Twoje ustawienia WP umożliwiają wyświetlanie pełnych treści wpisów poprzez "
105
+ "RSS - nie jest to rekomendowane ustawienie."
106
+
107
+ #: admin/dialogs.php:126
108
+ #, php-format
109
+ msgid ""
110
+ "You can %s change this here %s by changing \"For each article in a feed, show"
111
+ "\" to \"Summary.\""
112
+ msgstr ""
113
+
114
+ #: admin/dialogs.php:127
115
+ msgid ""
116
+ "Leaving this set to full text allows anyone to read your protected content "
117
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
118
+ "only show summary text."
119
+ msgstr ""
120
+ "Pozostawienie tego ustawienia pozwala komukolwiek na podejrzenie zawartości "
121
+ "chronionych wpisów poprzez kanał RSS. Zmiana tego ustawienia spowoduje "
122
+ "wyświetlenie w kanale RSS tylko krótkiego wstępu."
123
+
124
+ #: admin/dialogs.php:133
125
+ msgid "You have set WP-Members to hold registrations for approval"
126
+ msgstr ""
127
+ "WP-Members jest skonfigurowane tak aby rejestracje użytkowników przechodziły "
128
+ "przez moderację admina."
129
+
130
+ #: admin/dialogs.php:134
131
+ msgid ""
132
+ "but you have not changed the default message for \"Registration Completed\" "
133
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
134
+ "message to let users know they are pending approval."
135
+ msgstr ""
136
+
137
+ #: admin/dialogs.php:140
138
+ msgid "You have set WP-Members to turn off the registration process"
139
+ msgstr "W konfiguracji WP-Members jest wyłączona rejestracja użytkowników."
140
+
141
+ #: admin/dialogs.php:141
142
+ msgid ""
143
+ "but you also set to moderate and/or email admin new registrations. You will "
144
+ "need to set up a registration page for users to register."
145
+ msgstr ""
146
+
147
+ #: admin/dialogs.php:147
148
+ msgid "You have turned on reCAPTCHA"
149
+ msgstr "Jest włączona reCAPTCHA"
150
+
151
+ #: admin/dialogs.php:148
152
+ msgid ""
153
+ "but you have not entered API keys. You will need both a public and private "
154
+ "key. The CAPTCHA will not display unless a valid API key is included."
155
+ msgstr ""
156
+
157
+ #: admin/dialogs.php:171
158
+ msgid "Version:"
159
+ msgstr "Wersja:"
160
+
161
+ #: admin/dialogs.php:172
162
+ #, fuzzy
163
+ msgid "Quick Start Guide"
164
+ msgstr "Aktualizacja użytkownika"
165
+
166
+ #: admin/dialogs.php:173
167
+ #, fuzzy
168
+ msgid "Online User Guide"
169
+ msgstr "Aktualizacja użytkownika"
170
+
171
+ #: admin/dialogs.php:174
172
+ msgid "FAQs"
173
+ msgstr ""
174
+
175
+ #: admin/dialogs.php:181
176
+ #, fuzzy
177
+ msgid "Thank you for using WP-Members"
178
+ msgstr "Dziękujemy za używanie WP-Members! Używasz wersji "
179
+
180
+ #: admin/dialogs.php:182
181
+ msgid "A plugin developed by"
182
+ msgstr ""
183
+
184
+ #: admin/dialogs.php:183
185
+ msgid "Follow"
186
+ msgstr "Obserwuj"
187
+
188
+ #: admin/dialogs.php:200 admin/dialogs.php:204
189
+ msgid "Latest from RocketGeek"
190
+ msgstr ""
191
+
192
+ #: admin/dialogs.php:221 admin/dialogs.php:234
193
+ msgid "Latest from ButlerBlog"
194
+ msgstr ""
195
+
196
+ #: admin/post.php:36 admin/post.php:38
197
+ #, fuzzy
198
+ msgid "Block"
199
+ msgstr "Domyślnie blokuj posty"
200
+
201
+ #: admin/post.php:37 admin/post.php:39
202
+ msgid "Unblock"
203
+ msgstr ""
204
+
205
+ #: admin/post.php:120
206
+ #, fuzzy, php-format
207
+ msgid "%s posts %sed."
208
+ msgstr "Domyślnie blokuj posty"
209
+
210
+ #: admin/post.php:138
211
+ #, fuzzy
212
+ msgid "Post Restriction"
213
+ msgstr "Rejestracja nowego użytkownika"
214
+
215
+ #: admin/post.php:145
216
+ #, fuzzy
217
+ msgid "Page Restriction"
218
+ msgstr "Rejestracja nowego użytkownika"
219
+
220
+ #: admin/post.php:263 admin/post.php:295
221
+ #, fuzzy
222
+ msgid "Unblocked?"
223
+ msgstr ""
224
+ "Info: Będzie można niezależnie dopasować to ustawienie dla indywidualnego "
225
+ "wpisu"
226
+
227
+ #: admin/post.php:263 admin/post.php:295
228
+ #, fuzzy
229
+ msgid "Blocked?"
230
+ msgstr ""
231
+ "Info: Będzie można niezależnie dopasować to ustawienie dla indywidualnego "
232
+ "wpisu"
233
+
234
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
235
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
236
+ msgid "Need help?"
237
+ msgstr ""
238
+
239
+ #: admin/tab-captcha.php:46
240
+ msgid "Manage reCAPTCHA Options"
241
+ msgstr "Ustawienia reCAPTCHA"
242
+
243
+ #: admin/tab-captcha.php:60
244
+ msgid ""
245
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
246
+ "while blocking spam on your blog."
247
+ msgstr ""
248
+ "reCAPTCHA to darmowe usługi CAPTCHA, które pomagają w digitalizacji książek "
249
+ "jednocześnie blokując spam na Twoim blogu."
250
+
251
+ #: admin/tab-captcha.php:61
252
+ #, php-format
253
+ msgid ""
254
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
255
+ "that they are a human. This verifies that they are not a spambot while also "
256
+ "correcting the automatic scans of old books. So you get less spam, and the "
257
+ "world gets accurately digitized books. Everybody wins! For details, visit "
258
+ "the %s reCAPTCHA website%s"
259
+ msgstr ""
260
+ "reCAPTCHA wymaga przepisania dwóch słów zeskanowanych z książki aby "
261
+ "zabezpieczyć formularze przed botami rozsyłającymi spam. Więc masz mniej "
262
+ "spamu, a świat zyskuje coraz więcej książek w wersji cyfrowej. Każdy "
263
+ "wygrywa! Szczegółowe informacje możesz znaleźć na %s stronie reCAPTCHA%s"
264
+
265
+ #: admin/tab-captcha.php:66
266
+ msgid "reCAPTCHA Keys"
267
+ msgstr "Klucze reCAPTCHA"
268
+
269
+ #: admin/tab-captcha.php:68
270
+ #, php-format
271
+ msgid ""
272
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
273
+ "key. You can sign up for a %s free reCAPTCHA key%s"
274
+ msgstr ""
275
+ "reCAPTCHA wymaga kluczy API, publicznego oraz prywatnego. Możesz je uzyskać "
276
+ "za darmo na %s stronie reCAPTCHA%s"
277
+
278
+ #: admin/tab-captcha.php:69
279
+ msgid "Public Key"
280
+ msgstr "Klucz publiczny"
281
+
282
+ #: admin/tab-captcha.php:70
283
+ msgid "Private Key"
284
+ msgstr "Klucz prywatny"
285
+
286
+ #: admin/tab-captcha.php:74
287
+ msgid "Choose Theme"
288
+ msgstr "Wybierz styl"
289
+
290
+ #: admin/tab-captcha.php:77
291
+ msgid "Red"
292
+ msgstr "Czerwony"
293
+
294
+ #: admin/tab-captcha.php:78
295
+ msgid "White"
296
+ msgstr "Biały"
297
+
298
+ #: admin/tab-captcha.php:79
299
+ msgid "Black Glass"
300
+ msgstr "Czarne szkło"
301
+
302
+ #: admin/tab-captcha.php:80
303
+ msgid "Clean"
304
+ msgstr "Minimalistyczny"
305
+
306
+ #: admin/tab-captcha.php:112
307
+ msgid "Characters for image"
308
+ msgstr ""
309
+
310
+ #: admin/tab-captcha.php:116
311
+ msgid "Number of characters"
312
+ msgstr ""
313
+
314
+ #: admin/tab-captcha.php:120
315
+ msgid "Image dimensions"
316
+ msgstr ""
317
+
318
+ #: admin/tab-captcha.php:124
319
+ msgid "Font color of characters"
320
+ msgstr ""
321
+
322
+ #: admin/tab-captcha.php:128
323
+ msgid "Background color of image"
324
+ msgstr ""
325
+
326
+ #: admin/tab-captcha.php:132
327
+ msgid "Font size"
328
+ msgstr ""
329
+
330
+ #: admin/tab-captcha.php:136
331
+ msgid "Width between characters"
332
+ msgstr ""
333
+
334
+ #: admin/tab-captcha.php:140
335
+ #, fuzzy
336
+ msgid "Image type"
337
+ msgstr "Typ pola"
338
+
339
+ #: admin/tab-captcha.php:154
340
+ msgid ""
341
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
342
+ "installed and activated."
343
+ msgstr ""
344
+
345
+ #: admin/tab-captcha.php:166
346
+ #, fuzzy
347
+ msgid "Update CAPTCHA Settings"
348
+ msgstr "Zapisz ustawienia reCAPTCHA"
349
+
350
+ #: admin/tab-captcha.php:230
351
+ #, fuzzy
352
+ msgid "CAPTCHA was updated for WP-Members"
353
+ msgstr "Ustawienia reCAPTCHA zostały zapisane"
354
+
355
+ #: admin/tab-dialogs.php:29
356
+ msgid "Restricted post (or page), displays above the login/registration form"
357
+ msgstr ""
358
+ "Tekst wyświetlany we wpisie lub stronie nad formularzem do logowania / "
359
+ "rejestracji"
360
+
361
+ #: admin/tab-dialogs.php:30
362
+ msgid "Username is taken"
363
+ msgstr "Zajęta nazwa użytkownika"
364
+
365
+ #: admin/tab-dialogs.php:31
366
+ msgid "Email is registered"
367
+ msgstr "Zajęty adres email"
368
+
369
+ #: admin/tab-dialogs.php:32
370
+ msgid "Registration completed"
371
+ msgstr "Zakończona rejestracja"
372
+
373
+ #: admin/tab-dialogs.php:33
374
+ msgid "User update"
375
+ msgstr "Aktualizacja użytkownika"
376
+
377
+ #: admin/tab-dialogs.php:34
378
+ msgid "Passwords did not match"
379
+ msgstr "Niezgadzające się hasła"
380
+
381
+ #: admin/tab-dialogs.php:35
382
+ msgid "Password changes"
383
+ msgstr "Zmiana hasła"
384
+
385
+ #: admin/tab-dialogs.php:36
386
+ msgid "Username or email do not exist when trying to reset forgotten password"
387
+ msgstr ""
388
+ "Nie istniejące w bazie loginy lub emaile podane przy akcji resetowania hasła"
389
+
390
+ #: admin/tab-dialogs.php:37
391
+ msgid "Password reset"
392
+ msgstr "Resetowanie hasła"
393
+
394
+ #: admin/tab-dialogs.php:54
395
+ msgid "Dialogs and Error Messages"
396
+ msgstr "Informacje o błędach i komunikaty"
397
+
398
+ #: admin/tab-dialogs.php:56
399
+ #, php-format
400
+ msgid ""
401
+ "You can customize the text for dialogs and error messages. Simple HTML is "
402
+ "allowed %s etc."
403
+ msgstr ""
404
+ "Możesz zmienić teksty dla informacji i komunikatów. Dozwolone są proste tagi "
405
+ "HTML %s"
406
+
407
+ #: admin/tab-dialogs.php:69
408
+ msgid "Terms of Service (TOS)"
409
+ msgstr "Regulamin serwisu"
410
+
411
+ #: admin/tab-dialogs.php:76
412
+ msgid "Update Dialogs"
413
+ msgstr "Zapisz komunikaty"
414
+
415
+ #: admin/tab-dialogs.php:115
416
+ msgid "WP-Members dialogs were updated"
417
+ msgstr "Komunikaty WP-Members zostały zapisane"
418
+
419
+ #: admin/tab-emails.php:30
420
+ #, fuzzy
421
+ msgid "New Registration"
422
+ msgstr "Nowe hasło"
423
+
424
+ #: admin/tab-emails.php:34
425
+ #, fuzzy
426
+ msgid "Registration is Moderated"
427
+ msgstr "Zakończona rejestracja"
428
+
429
+ #: admin/tab-emails.php:35
430
+ #, fuzzy
431
+ msgid "Registration is Moderated, User is Approved"
432
+ msgstr "Twoje zgłoszenie w %s zostało zaakceptowane"
433
+
434
+ #: admin/tab-emails.php:40
435
+ #, fuzzy
436
+ msgid "Password Reset"
437
+ msgstr "Resetowanie hasła"
438
+
439
+ #: admin/tab-emails.php:45
440
+ #, fuzzy
441
+ msgid "Admin Notification"
442
+ msgstr "Powiadomienia dla admina"
443
+
444
+ #: admin/tab-emails.php:50
445
+ #, fuzzy
446
+ msgid "Email Signature"
447
+ msgstr "Email"
448
+
449
+ #: admin/tab-emails.php:57
450
+ #, fuzzy
451
+ msgid "Email Messages"
452
+ msgstr "Email"
453
+
454
+ #: admin/tab-emails.php:60
455
+ msgid "You can customize the content of the emails sent by the plugin."
456
+ msgstr ""
457
+
458
+ #: admin/tab-emails.php:62
459
+ msgid "A list of shortcodes is available here."
460
+ msgstr ""
461
+
462
+ #: admin/tab-emails.php:69
463
+ #, fuzzy
464
+ msgid "Set a custom email address"
465
+ msgstr "Podano nieprawidłową nazwę użytkownika lub hasło."
466
+
467
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
468
+ msgid "(optional)"
469
+ msgstr "Opcjonalnie"
470
+
471
+ #: admin/tab-emails.php:73
472
+ msgid "Set a custom email name"
473
+ msgstr ""
474
+
475
+ #: admin/tab-emails.php:84
476
+ #, fuzzy
477
+ msgid "Subject"
478
+ msgstr "Wyślij"
479
+
480
+ #: admin/tab-emails.php:88
481
+ msgid "Body"
482
+ msgstr ""
483
+
484
+ #: admin/tab-emails.php:105
485
+ #, fuzzy
486
+ msgid "Update Emails"
487
+ msgstr "Aktualizacja użytkownika"
488
+
489
+ #: admin/tab-emails.php:161
490
+ #, fuzzy
491
+ msgid "WP-Members emails were updated"
492
+ msgstr "Ustawienia pól formularza WP-Members zostały zapisane"
493
+
494
+ #: admin/tab-fields.php:166
495
+ msgid "WP-Members fields were updated"
496
+ msgstr "Ustawienia pól formularza WP-Members zostały zapisane"
497
+
498
+ #: admin/tab-fields.php:176
499
+ msgid "Field Label is required for adding a new field. Nothing was updated."
500
+ msgstr ""
501
+
502
+ #: admin/tab-fields.php:177
503
+ msgid "Option Name is required for adding a new field. Nothing was updated."
504
+ msgstr ""
505
+
506
+ #: admin/tab-fields.php:184
507
+ msgid "A field with that option name already exists"
508
+ msgstr ""
509
+
510
+ #: admin/tab-fields.php:201
511
+ msgid "Checked value is required for checkboxes. Nothing was updated."
512
+ msgstr ""
513
+
514
+ #: admin/tab-fields.php:223
515
+ #, fuzzy
516
+ msgid "field was added"
517
+ msgstr "Opis pola"
518
+
519
+ #: admin/tab-fields.php:241
520
+ #, fuzzy
521
+ msgid "field was updated"
522
+ msgstr "Opis pola"
523
+
524
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
525
+ #, fuzzy
526
+ msgid "Edit Field"
527
+ msgstr "Edytuj swoje dane"
528
+
529
+ #: admin/tab-fields.php:289
530
+ #, fuzzy
531
+ msgid "Add a Field"
532
+ msgstr "Dodaj/Usuń"
533
+
534
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
535
+ msgid "Field Label"
536
+ msgstr "Opis pola"
537
+
538
+ #: admin/tab-fields.php:297
539
+ msgid "The name of the field as it will be displayed to the user."
540
+ msgstr ""
541
+
542
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
543
+ msgid "Option Name"
544
+ msgstr "Nazwa pola"
545
+
546
+ #: admin/tab-fields.php:306
547
+ msgid ""
548
+ "The database meta value for the field. It must be unique and contain no "
549
+ "spaces (underscores are ok)."
550
+ msgstr ""
551
+
552
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
553
+ msgid "Field Type"
554
+ msgstr "Typ pola"
555
+
556
+ #: admin/tab-fields.php:316
557
+ #, fuzzy
558
+ msgid "text"
559
+ msgstr ""
560
+ "Twoje ustawienia WP umożliwiają wyświetlanie pełnych treści wpisów poprzez "
561
+ "RSS - nie jest to rekomendowane ustawienie."
562
+
563
+ #: admin/tab-fields.php:317
564
+ msgid "textarea"
565
+ msgstr ""
566
+
567
+ #: admin/tab-fields.php:318
568
+ #, fuzzy
569
+ msgid "checkbox"
570
+ msgstr "pole wyboru"
571
+
572
+ #: admin/tab-fields.php:319
573
+ #, fuzzy
574
+ msgid "dropdown"
575
+ msgstr "WP-Member ustawienia konta"
576
+
577
+ #: admin/tab-fields.php:320
578
+ #, fuzzy
579
+ msgid "password"
580
+ msgstr "Hasło"
581
+
582
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
583
+ msgid "Display?"
584
+ msgstr "Wyświetl?"
585
+
586
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
587
+ msgid "Required?"
588
+ msgstr "Wymagane?"
589
+
590
+ #: admin/tab-fields.php:334
591
+ #, fuzzy
592
+ msgid "Additional information for checkbox fields"
593
+ msgstr "WP-Member ustawienia konta"
594
+
595
+ #: admin/tab-fields.php:337
596
+ #, fuzzy
597
+ msgid "Checked by default?"
598
+ msgstr "Zaznaczone?"
599
+
600
+ #: admin/tab-fields.php:341
601
+ #, fuzzy
602
+ msgid "Stored value if checked:"
603
+ msgstr "Zaznaczone?"
604
+
605
+ #: admin/tab-fields.php:347
606
+ #, fuzzy
607
+ msgid "Additional information for dropdown fields"
608
+ msgstr "WP-Member ustawienia konta"
609
+
610
+ #: admin/tab-fields.php:350
611
+ #, fuzzy
612
+ msgid "For dropdown, array of values:"
613
+ msgstr "WP-Member ustawienia konta"
614
+
615
+ #: admin/tab-fields.php:375
616
+ msgid "Options should be Option Name|option_value,"
617
+ msgstr ""
618
+
619
+ #: admin/tab-fields.php:379
620
+ msgid "Visit plugin site for more information"
621
+ msgstr ""
622
+
623
+ #: admin/tab-fields.php:385
624
+ #, fuzzy
625
+ msgid "Add Field"
626
+ msgstr "Dodaj/Usuń"
627
+
628
+ #: admin/tab-fields.php:407
629
+ msgid "Manage Fields"
630
+ msgstr "Zarządzaj polami formularza"
631
+
632
+ #: admin/tab-fields.php:409
633
+ msgid ""
634
+ "Determine which fields will display and which are required. This includes "
635
+ "all fields, both native WP fields and WP-Members custom fields."
636
+ msgstr ""
637
+ "Wskaż które pola mają być wyświetlane i które wymagane. Dotyczy wszystkich "
638
+ "pól, natywnych pól WP oraz dodatkowych pól WP-Members."
639
+
640
+ #: admin/tab-fields.php:410
641
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
642
+ msgstr "(Info: Email jest zawsze obowiązkowy i nie może być zmieniany.)"
643
+
644
+ #: admin/tab-fields.php:415
645
+ msgid "Add/Delete"
646
+ msgstr "Dodaj/Usuń"
647
+
648
+ #: admin/tab-fields.php:421
649
+ msgid "Checked?"
650
+ msgstr "Zaznaczone?"
651
+
652
+ #: admin/tab-fields.php:423
653
+ #, fuzzy
654
+ msgid "Users Screen"
655
+ msgstr "Eksportuj"
656
+
657
+ #: admin/tab-fields.php:435
658
+ msgid "Delete"
659
+ msgstr "Usuń"
660
+
661
+ #: admin/tab-fields.php:447
662
+ msgid "(Email cannot be removed)"
663
+ msgstr "(Email nie może być usunięty)"
664
+
665
+ #: admin/tab-fields.php:467
666
+ #, fuzzy
667
+ msgid "Registration Date"
668
+ msgstr "Zakończona rejestracja"
669
+
670
+ #: admin/tab-fields.php:470
671
+ #, fuzzy
672
+ msgid "native"
673
+ msgstr ""
674
+ "Wskaż które pola mają być wyświetlane i które wymagane. Dotyczy wszystkich "
675
+ "pól, natywnych pól WP oraz dodatkowych pól WP-Members."
676
+
677
+ #: admin/tab-fields.php:480
678
+ #, fuzzy
679
+ msgid "Active"
680
+ msgstr "Aktywuj"
681
+
682
+ #: admin/tab-fields.php:492
683
+ msgid "Registration IP"
684
+ msgstr "IP z rejestracji"
685
+
686
+ #: admin/tab-fields.php:527
687
+ msgid "Update Fields"
688
+ msgstr "Zapisz pola"
689
+
690
+ #: admin/tab-options.php:48
691
+ msgid "Manage Options"
692
+ msgstr "Zarządzaj ustawieniami"
693
+
694
+ #: admin/tab-options.php:54
695
+ msgid "Block Posts by default"
696
+ msgstr "Domyślnie blokuj posty"
697
+
698
+ #: admin/tab-options.php:54
699
+ msgid ""
700
+ "Note: Posts can still be individually blocked or unblocked at the article "
701
+ "level"
702
+ msgstr ""
703
+ "Info: Będzie można niezależnie dopasować to ustawienie dla indywidualnego "
704
+ "wpisu"
705
+
706
+ #: admin/tab-options.php:55
707
+ msgid "Block Pages by default"
708
+ msgstr "Domyślnie blokuj strony"
709
+
710
+ #: admin/tab-options.php:55
711
+ msgid ""
712
+ "Note: Pages can still be individually blocked or unblocked at the article "
713
+ "level"
714
+ msgstr ""
715
+ "Info: Będzie można niezależnie dopasować to ustawienie dla indywidualnej "
716
+ "strony"
717
+
718
+ #: admin/tab-options.php:56
719
+ msgid "Show excerpts"
720
+ msgstr "Pokaż fragmenty"
721
+
722
+ #: admin/tab-options.php:56
723
+ msgid ""
724
+ "Shows excerpted content above the login/registration on both Posts and Pages"
725
+ msgstr ""
726
+ "Pokaż fragmenty zawartości powyżej formularza logowania/rejestracji we "
727
+ "wpisach i stronach"
728
+
729
+ #: admin/tab-options.php:57
730
+ msgid "Notify admin"
731
+ msgstr "Powiadomienia dla admina"
732
+
733
+ #: admin/tab-options.php:57
734
+ #, fuzzy, php-format
735
+ msgid "Notify %s for each new registration? %s"
736
+ msgstr "Wysłać email do admina po każdej rejestracji?"
737
+
738
+ #: admin/tab-options.php:58
739
+ msgid "Moderate registration"
740
+ msgstr "Moderowanie rejestracji"
741
+
742
+ #: admin/tab-options.php:58
743
+ msgid "Holds new registrations for admin approval"
744
+ msgstr "Wstrzymaj nowych użytkowników do akceptacji admina"
745
+
746
+ #: admin/tab-options.php:91
747
+ msgid "Enable CAPTCHA"
748
+ msgstr "Użyj CAPTCHA"
749
+
750
+ #: admin/tab-options.php:59
751
+ msgid "Turns on CAPTCHA for registration"
752
+ msgstr "Włącza CAPTCHA przy rejestracji"
753
+
754
+ #: admin/tab-options.php:60
755
+ #, fuzzy
756
+ msgid "Hide registration"
757
+ msgstr "Zakończona rejestracja"
758
+
759
+ #: admin/tab-options.php:60
760
+ msgid "Removes the registration form from blocked content"
761
+ msgstr ""
762
+
763
+ #: admin/tab-options.php:62
764
+ msgid "Time-based expiration"
765
+ msgstr ""
766
+
767
+ #: admin/tab-options.php:62
768
+ msgid "Allows for access to expire"
769
+ msgstr ""
770
+
771
+ #: admin/tab-options.php:63
772
+ msgid "Trial period"
773
+ msgstr ""
774
+
775
+ #: admin/tab-options.php:63
776
+ msgid "Allows for a trial period"
777
+ msgstr ""
778
+
779
+ #: admin/tab-options.php:64
780
+ #, fuzzy
781
+ msgid "Ignore warning messages"
782
+ msgstr ""
783
+ "To ustawienie pozwala dodawać komentarze nawet niezarejestrowanym "
784
+ "użytkownikom. Ustawienie to powinno się dostosować do tego jaki masz zamiar "
785
+ "wykorzystywania wtyczki WP-Members. Jeśli nie chcesz tego zmieniać, możesz "
786
+ "wybrać ignorowanie tego komunikatu w ustawieniach WP-Members."
787
+
788
+ #: admin/tab-options.php:64
789
+ msgid "Ignores WP-Members warning messages in the admin panel"
790
+ msgstr "Ignoruj ostrzeżenia WP-Members w panelu administracyjnym"
791
+
792
+ #: admin/tab-options.php:81
793
+ msgid "Attribution"
794
+ msgstr ""
795
+
796
+ #: admin/tab-options.php:83
797
+ msgid ""
798
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
799
+ msgstr ""
800
+
801
+ #: admin/tab-options.php:87
802
+ #, fuzzy
803
+ msgid "Auto Excerpt:"
804
+ msgstr "Pokaż fragmenty"
805
+
806
+ #: admin/tab-options.php:88
807
+ #, fuzzy
808
+ msgid "Number of words in excerpt:"
809
+ msgstr "Pokaż fragmenty"
810
+
811
+ #: admin/tab-options.php:88 admin/tab-options.php:108
812
+ #: admin/tab-options.php:118 admin/tab-options.php:132
813
+ msgid "Optional"
814
+ msgstr "Opcjonalnie"
815
+
816
+ #: admin/tab-options.php:88
817
+ #, fuzzy
818
+ msgid "Automatically creates an excerpt"
819
+ msgstr "Pokaż fragmenty"
820
+
821
+ #: admin/tab-options.php:103
822
+ #, fuzzy
823
+ msgid "User Profile Page:"
824
+ msgstr "Aktualizacja użytkownika"
825
+
826
+ #: admin/tab-options.php:106
827
+ msgid "For creating a forgot password link in the login form"
828
+ msgstr ""
829
+
830
+ #: admin/tab-options.php:113
831
+ #, fuzzy
832
+ msgid "Register Page:"
833
+ msgstr "Adres formularze rejestracji:"
834
+
835
+ #: admin/tab-options.php:116
836
+ msgid "For creating a register link in the login form"
837
+ msgstr ""
838
+
839
+ #: admin/tab-options.php:126
840
+ msgid "Select a stylesheet or specify a custom stylesheet below"
841
+ msgstr ""
842
+
843
+ #: admin/tab-options.php:131
844
+ #, fuzzy
845
+ msgid "Custom Stylesheet:"
846
+ msgstr "Dostosowany"
847
+
848
+ #: admin/tab-options.php:136
849
+ msgid "Update Settings"
850
+ msgstr "Zapisz ustawienia"
851
+
852
+ #: admin/tab-options.php:246
853
+ msgid "WP-Members settings were updated"
854
+ msgstr "Ustawienia WP-Members zostały zapisane"
855
+
856
+ #: admin/tab-options.php:296
857
+ #, fuzzy
858
+ msgid "Select a page"
859
+ msgstr "Wybierz stronę"
860
+
861
+ #: admin/tab-options.php:304
862
+ msgid "USE CUSTOM URL BELOW"
863
+ msgstr ""
864
+
865
+ #: admin/user-export.php:57 admin/user-export.php:172
866
+ msgid "Activated?"
867
+ msgstr "Aktywowany?"
868
+
869
+ #: admin/user-export.php:61 admin/user-export.php:175
870
+ msgid "Subscription"
871
+ msgstr "Subskrypcja"
872
+
873
+ #: admin/user-export.php:61 admin/user-export.php:175
874
+ msgid "Expires"
875
+ msgstr "Wygasa"
876
+
877
+ #: admin/user-export.php:64 admin/user-export.php:178
878
+ msgid "Registered"
879
+ msgstr "Rejestracja"
880
+
881
+ #: admin/user-export.php:65 admin/user-export.php:179
882
+ msgid "IP"
883
+ msgstr "IP"
884
+
885
+ #: admin/user-profile.php:46
886
+ msgid "WP-Members Additional Fields"
887
+ msgstr "WP-Member ustawienia konta"
888
+
889
+ #: admin/user-profile.php:66 native-registration.php:36
890
+ #: native-registration.php:159 users.php:62
891
+ msgid "(required)"
892
+ msgstr "Wymagane?"
893
+
894
+ #: admin/user-profile.php:98
895
+ msgid "Activate this user?"
896
+ msgstr "Aktywuj użytkownika?"
897
+
898
+ #: admin/user-profile.php:103
899
+ #, fuzzy
900
+ msgid "Reactivate this user?"
901
+ msgstr "Aktualizacja użytkownika"
902
+
903
+ #: admin/user-profile.php:108
904
+ #, fuzzy
905
+ msgid "Deactivate this user?"
906
+ msgstr "Aktualizacja użytkownika"
907
+
908
+ #: admin/user-profile.php:129
909
+ msgid "IP @ registration"
910
+ msgstr "IP z rejestracji"
911
+
912
+ #: admin/users.php:45 admin/users.php:49
913
+ msgid "Export"
914
+ msgstr "Eksportuj"
915
+
916
+ #: admin/users.php:50 admin/users.php:91
917
+ #, fuzzy
918
+ msgid "Export All Users"
919
+ msgstr "Eksportuj"
920
+
921
+ #: forms.php:95
922
+ #, fuzzy
923
+ msgid "Existing Users Log In"
924
+ msgstr "Zaloguj"
925
+
926
+ #: forms.php:161 wp-members-dialogs.php:192
927
+ msgid "Change Password"
928
+ msgstr "Zmień hasło"
929
+
930
+ #: forms.php:163
931
+ msgid "Update Password"
932
+ msgstr "Zmień hasło"
933
+
934
+ #: forms.php:227
935
+ msgid "Reset Forgotten Password"
936
+ msgstr "Przypomnienie hasła"
937
+
938
+ #: forms.php:403
939
+ msgid "Forgot password?"
940
+ msgstr "Zapomniane hasło?"
941
+
942
+ #: forms.php:403
943
+ msgid "Click here to reset"
944
+ msgstr "Kliknij aby zresetować hasło"
945
+
946
+ #: forms.php:418
947
+ #, fuzzy
948
+ msgid "New User?"
949
+ msgstr "Aktualizacja użytkownika"
950
+
951
+ #: forms.php:418
952
+ #, fuzzy
953
+ msgid "Click here to register"
954
+ msgstr "Kliknij aby zresetować hasło"
955
+
956
+ #: forms.php:515
957
+ msgid "Required field"
958
+ msgstr "Pole wymagane"
959
+
960
+ #: forms.php:521
961
+ #, fuzzy
962
+ msgid "Reset Form"
963
+ msgstr "Nieprawidłowy kod CAPTCHA."
964
+
965
+ #: forms.php:523
966
+ #, fuzzy
967
+ msgid "Update Profile"
968
+ msgstr "Aktualizacja użytkownika"
969
+
970
+ #: forms.php:561
971
+ msgid "Choose a Username"
972
+ msgstr "Wybierz nazwę użytkownika"
973
+
974
+ #: forms.php:683 native-registration.php:65
975
+ #, fuzzy, php-format
976
+ msgid "Please indicate that you agree to the %s TOS %s"
977
+ msgstr "Zapoznałem/am się i zgadzam się na %s Warunki użytkowania %s"
978
+
979
+ #: forms.php:852
980
+ #, fuzzy
981
+ msgid "New User Registration"
982
+ msgstr "Aktualizacja użytkownika"
983
+
984
+ #: forms.php:1018
985
+ msgid "Input the code:"
986
+ msgstr ""
987
+
988
+ #: users.php:38
989
+ #, fuzzy
990
+ msgid "Additional Information"
991
+ msgstr "WP-Member ustawienia konta"
992
+
993
+ #: wp-members-core.php:118 wp-members-core.php:245
994
+ msgid "There was an error with the CAPTCHA form."
995
+ msgstr "Nieprawidłowy kod CAPTCHA."
996
+
997
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
998
+ msgid "Edit Your Information"
999
+ msgstr "Edytuj swoje dane"
1000
+
1001
+ #: wp-members-core.php:544
1002
+ msgid "<strong>ERROR</strong>: User has not been activated."
1003
+ msgstr ""
1004
+
1005
+ #: wp-members-core.php:903 wp-members-register.php:93
1006
+ #, php-format
1007
+ msgid "Sorry, %s is a required field."
1008
+ msgstr "Przepraszamy, ale %s jest wymaganym polem."
1009
+
1010
+ #: wp-members-dialogs.php:42
1011
+ msgid "Login Failed!"
1012
+ msgstr "Nieudane logowanie!"
1013
+
1014
+ #: wp-members-dialogs.php:45
1015
+ msgid "You entered an invalid username or password."
1016
+ msgstr "Podano nieprawidłową nazwę użytkownika lub hasło."
1017
+
1018
+ #: wp-members-dialogs.php:47
1019
+ msgid "Click here to continue."
1020
+ msgstr "Kliknij aby kontynuować."
1021
+
1022
+ #: wp-members-dialogs.php:191
1023
+ msgid "Edit My Information"
1024
+ msgstr "Edytuj moje informacje"
1025
+
1026
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1027
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1028
+ #: wp-members-sidebar.php:246
1029
+ #, php-format
1030
+ msgid "You are logged in as %s"
1031
+ msgstr "Jesteś zalogowany jako %s"
1032
+
1033
+ #: wp-members-dialogs.php:208
1034
+ #, fuzzy
1035
+ msgid "Click to log out."
1036
+ msgstr "Zaloguj"
1037
+
1038
+ #: wp-members-dialogs.php:209
1039
+ msgid "Begin using the site."
1040
+ msgstr "Zapraszamy do zapoznanania się ze stroną."
1041
+
1042
+ #: wp-members-dialogs.php:225
1043
+ #, fuzzy
1044
+ msgid "Click to log out"
1045
+ msgstr "Zaloguj"
1046
+
1047
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1048
+ #, fuzzy
1049
+ msgid "click to log out"
1050
+ msgstr "Zaloguj"
1051
+
1052
+ #: wp-members-dialogs.php:271
1053
+ #, fuzzy
1054
+ msgid "Password fields cannot be empty"
1055
+ msgstr "Niezgadzające się hasła"
1056
+
1057
+ #: wp-members-register.php:51
1058
+ #, fuzzy
1059
+ msgid "There was an error processing the form."
1060
+ msgstr "Nieprawidłowy kod CAPTCHA."
1061
+
1062
+ #: wp-members-register.php:110
1063
+ msgid "Sorry, username is a required field"
1064
+ msgstr "Przepraszamy, nazwa użytkownika jest wymagana."
1065
+
1066
+ #: wp-members-register.php:111
1067
+ msgid "The username cannot include non-alphanumeric characters."
1068
+ msgstr ""
1069
+
1070
+ #: wp-members-register.php:112 wp-members-register.php:282
1071
+ #, fuzzy
1072
+ msgid "You must enter a valid email address."
1073
+ msgstr "Podano nieprawidłową nazwę użytkownika lub hasło."
1074
+
1075
+ #: wp-members-register.php:119
1076
+ #, fuzzy
1077
+ msgid "Passwords did not match."
1078
+ msgstr "Niezgadzające się hasła"
1079
+
1080
+ #: wp-members-register.php:120 wp-members-register.php:286
1081
+ #, fuzzy
1082
+ msgid "Emails did not match."
1083
+ msgstr "Niezgadzające się hasła"
1084
+
1085
+ #: wp-members-register.php:127
1086
+ msgid "You must complete the CAPTCHA form."
1087
+ msgstr "Musisz przepisać kod CAPTCHA."
1088
+
1089
+ #: wp-members-register.php:377
1090
+ msgid "We were unable to validate the public key."
1091
+ msgstr "Nie można zweryfikować klucza publicznego."
1092
+
1093
+ #: wp-members-register.php:381
1094
+ msgid "We were unable to validate the private key."
1095
+ msgstr "Nie można zweryfikować klucza prywatnego."
1096
+
1097
+ #: wp-members-register.php:385
1098
+ msgid "The challenge parameter of the verify script was incorrect."
1099
+ msgstr "The challenge parameter of the verify script was incorrect."
1100
+
1101
+ #: wp-members-register.php:389
1102
+ msgid "The CAPTCHA solution was incorrect."
1103
+ msgstr "Wpisany kod CAPTCHA jest nieprawidłowy."
1104
+
1105
+ #: wp-members-register.php:393
1106
+ msgid "The parameters to verify were incorrect"
1107
+ msgstr "Parametry do weryfikacji są niepoprawne"
1108
+
1109
+ #: wp-members-register.php:397
1110
+ msgid ""
1111
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1112
+ msgstr ""
1113
+ "Ze względów bezpieczeństwa klucze API reCAPTCHA są przywiązane do konkretnej "
1114
+ "domeny."
1115
+
1116
+ #: wp-members-register.php:401
1117
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1118
+ msgstr ""
1119
+ "Nie można się połączyć z serwerem reCAPTCHA. Proszę spróbować ponownie za "
1120
+ "chwilę."
1121
+
1122
+ #: wp-members-register.php:405
1123
+ msgid "You have entered an incorrect code value. Please try again."
1124
+ msgstr ""
1125
+
1126
+ #: wp-members-sidebar.php:117
1127
+ msgid "Login Failed!<br />You entered an invalid username or password."
1128
+ msgstr ""
1129
+ "Błąd logowania!<br />Podano nieprawidłową nazwę użytkonwnika lub hasło."
1130
+
1131
+ #: wp-members-sidebar.php:118
1132
+ #, fuzzy
1133
+ msgid "You are not logged in."
1134
+ msgstr "Jesteś zalogowany jako %s"
1135
+
1136
+ #: wp-members-sidebar.php:169
1137
+ msgid "log in"
1138
+ msgstr "zaloguj"
1139
+
1140
+ #: wp-members-sidebar.php:180
1141
+ #, fuzzy
1142
+ msgid "Forgot?"
1143
+ msgstr "Zapomniane hasło?"
1144
+
1145
+ #: wp-members-sidebar.php:247
1146
+ msgid "click here to log out"
1147
+ msgstr "wyloguj się"
1148
+
1149
+ #: wp-members-sidebar.php:279
1150
+ msgid "Displays the WP-Members sidebar login."
1151
+ msgstr ""
1152
+
1153
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1154
+ msgid "Login Status"
1155
+ msgstr "Status"
1156
+
1157
+ #: wp-members-sidebar.php:299
1158
+ msgid "Title:"
1159
+ msgstr "Tytuł:"
1160
+
1161
+ #: wp-members-tos.php:24
1162
+ #, fuzzy
1163
+ msgid "Terms of Service"
1164
+ msgstr "Regulamin serwisu"
1165
+
1166
+ #: wp-members-tos.php:36
1167
+ #, fuzzy, php-format
1168
+ msgid "%sclose%s"
1169
+ msgstr "Przepraszamy, ale %s jest wymaganym polem."
1170
+
1171
+ #: wp-members-tos.php:38
1172
+ #, fuzzy, php-format
1173
+ msgid "%sprint%s"
1174
+ msgstr "Przepraszamy, ale %s jest wymaganym polem."
1175
+
1176
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1177
+ #: Strings wp-members-install.php:49
1178
+ msgid "First Name"
1179
+ msgstr "Imię"
1180
+
1181
+ #: wp-members-install.php:50
1182
+ msgid "Last Name"
1183
+ msgstr "Nazwisko"
1184
+
1185
+ #: wp-members-install.php:51
1186
+ msgid "Address 1"
1187
+ msgstr "Adres"
1188
+
1189
+ #: wp-members-install.php:52
1190
+ msgid "Address 2"
1191
+ msgstr "Adres c.d."
1192
+
1193
+ #: wp-members-install.php:53
1194
+ msgid "City"
1195
+ msgstr "Miasto"
1196
+
1197
+ #: wp-members-install.php:54
1198
+ msgid "State"
1199
+ msgstr "Województwo"
1200
+
1201
+ #: wp-members-install.php:55
1202
+ msgid "Zip"
1203
+ msgstr "Kod pocztowy"
1204
+
1205
+ #: wp-members-install.php:56
1206
+ msgid "Country"
1207
+ msgstr "Państwo"
1208
+
1209
+ #: wp-members-install.php:57
1210
+ msgid "Day Phone"
1211
+ msgstr "Telefon"
1212
+
1213
+ #: wp-members-install.php:59
1214
+ msgid "Website"
1215
+ msgstr "Strona internetowa"
1216
+
1217
+ #: wp-members-install.php:60
1218
+ msgid "AIM"
1219
+ msgstr "AIM"
1220
+
1221
+ #: wp-members-install.php:61
1222
+ msgid "Yahoo IM"
1223
+ msgstr "Yahoo IM"
1224
+
1225
+ #: wp-members-install.php:62
1226
+ msgid "Jabber/Google Talk"
1227
+ msgstr "Jabber/Google Talk"
1228
+
1229
+ #: wp-members-install.php:63
1230
+ msgid "Biographical Info"
1231
+ msgstr ""
1232
+
1233
+ #: wp-members-install.php:64 wp-members-install.php:211
1234
+ msgid "TOS"
1235
+ msgstr "WU"
1236
+
1237
+ #: Error message dialog strings wp-members-install.php:96
1238
+ #, fuzzy
1239
+ msgid ""
1240
+ "This content is restricted to site members. If you are an existing user, "
1241
+ "please log in. New users may register below."
1242
+ msgstr ""
1243
+ "Zawartość jest dostępna tylko dla zarejestrowanych osób. Jeżeli jesteś "
1244
+ "zarejestrowany/a, prosimy o zalogowanie się. Nowi użytkownicy mogą się "
1245
+ "zarejestrować poniżej."
1246
+
1247
+ #: wp-members-install.php:97
1248
+ msgid "Sorry, that username is taken, please try another."
1249
+ msgstr ""
1250
+ "Przepraszamy, wybrana nazwa użytkownika jest już zajęta, spróbuj wybrać inną "
1251
+ "nazwę."
1252
+
1253
+ #: wp-members-install.php:98
1254
+ msgid ""
1255
+ "Sorry, that email address already has an account.<br />Please try another."
1256
+ msgstr ""
1257
+ "Przepraszamy, ten adres email jest już zarejestrowany.<br />Prosimy o "
1258
+ "wpisanie innego."
1259
+
1260
+ #: wp-members-install.php:99
1261
+ #, fuzzy
1262
+ msgid ""
1263
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1264
+ "log in using the password that was emailed to you."
1265
+ msgstr ""
1266
+ "Gratulacje! Rejestracja przebiegła pomyślnie.<br /><br />Możesz teraz się "
1267
+ "zalogować używając hasła które zostało wysłane do Ciebie emailem."
1268
+
1269
+ #: wp-members-install.php:100
1270
+ msgid "Your information was updated!"
1271
+ msgstr "Zmiany w Twoich danych zostały zapisane!"
1272
+
1273
+ #: wp-members-install.php:101
1274
+ msgid "Passwords did not match.<br /><br />Please try again."
1275
+ msgstr "Podane hasła różnią się.<br /><br />Prosimy spróbować ponownie."
1276
+
1277
+ #: wp-members-install.php:102
1278
+ msgid ""
1279
+ "Password successfully changed!<br /><br />You will need to re-login with "
1280
+ "your new password."
1281
+ msgstr ""
1282
+ "Twoje hasło zostało zmienione!<br /><br />Musisz teraz zalogować się "
1283
+ "ponownie używając nowego hasła."
1284
+
1285
+ #: wp-members-install.php:103
1286
+ msgid "Either the username or email address do not exist in our records."
1287
+ msgstr "Nazwa użytkownika lub email nie występuje w naszej bazie danych."
1288
+
1289
+ #: wp-members-install.php:104
1290
+ msgid ""
1291
+ "Password successfully reset!<br /><br />An email containing a new password "
1292
+ "has been sent to the email address on file for your account. You may change "
1293
+ "this random password then re-login with your new password."
1294
+ msgstr ""
1295
+ "Hasło zostało zresetowane.<br /><br />Nowe hasło zostało wysłane na adres "
1296
+ "email podany przy rejestracji. Po zalogowaniu możesz zmienić wygenerowane "
1297
+ "hasło na bardziej przyjazne."
1298
+
1299
+ #~ msgid "Yes"
1300
+ #~ msgstr "Tak"
1301
+
1302
+ #~ msgid "WP-Members"
1303
+ #~ msgstr "WP-Members"
1304
+
1305
+ #~ msgid "Custom"
1306
+ #~ msgstr "Dostosowany"
1307
+
1308
+ #, fuzzy
1309
+ #~ msgid "edit"
1310
+ #~ msgstr "Edytuj swoje dane"
1311
+
1312
+ #, fuzzy
1313
+ #~ msgid "Edit"
1314
+ #~ msgstr "Edytuj swoje dane"
1315
+
1316
+ #~ msgid "Use reCAPTCHA"
1317
+ #~ msgstr "Użyj reCAPTCHA"
1318
+
1319
+ #, fuzzy
1320
+ #~ msgid "Pages"
1321
+ #~ msgstr "Domyślnie blokuj strony"
1322
+
1323
+ #~ msgid "No"
1324
+ #~ msgstr "Nie"
1325
+
1326
+ #~ msgid "Activate"
1327
+ #~ msgstr "Aktywuj"
1328
+
1329
+ #~ msgid "Username"
1330
+ #~ msgstr "Nazwa użytkownika"
1331
+
1332
+ #~ msgid "Password"
1333
+ #~ msgstr "Hasło"
1334
+
1335
+ #~ msgid "Log In"
1336
+ #~ msgstr "Zaloguj"
1337
+
1338
+ #~ msgid "New Password"
1339
+ #~ msgstr "Nowe hasło"
1340
+
1341
+ #~ msgid "Repeat Password"
1342
+ #~ msgstr "Powtórz hasło"
1343
+
1344
+ #~ msgid "Email"
1345
+ #~ msgstr "Email"
1346
+
1347
+ #~ msgid "Reset Password"
1348
+ #~ msgstr "Przypomnienie hasła"
1349
+
1350
+ #~ msgid "Remember me"
1351
+ #~ msgstr "Zapamiętaj mnie"
1352
+
1353
+ #, fuzzy
1354
+ #~ msgid "Register"
1355
+ #~ msgstr ""
1356
+ #~ "Twoje ustawienia WP pozwalają się zarejestrować dowolnej osobie - nie "
1357
+ #~ "jest to rekomendowane ustawienie."
1358
+
1359
+ #~ msgid "Turn off registration"
1360
+ #~ msgstr "Wyłączenie rejestracji"
1361
+
1362
+ #~ msgid "Turns off the registration process, only allows login"
1363
+ #~ msgstr ""
1364
+ #~ "Wyłącz rejestrację, pozwól tylko na logowanie już zarejestrowanym "
1365
+ #~ "użytkownikom."
1366
+
1367
+ #~ msgid "Members Area URL:"
1368
+ #~ msgstr "Adres części serwisu dla zarejestrowanych"
1369
+
1370
+ #~ msgid "Add"
1371
+ #~ msgstr "Dodaj"
1372
+
1373
+ #~ msgid "WP-Members expiration periods were updated"
1374
+ #~ msgstr "Okresy ważności WP-Members zostały zapisane"
1375
+
1376
+ #~ msgid ""
1377
+ #~ "Settings were saved, but you have required fields that are not set to "
1378
+ #~ "display!"
1379
+ #~ msgstr ""
1380
+ #~ "Ustawienia zostały zapisane, ale pozostały niewidoczne pola które są "
1381
+ #~ "zaznaczone jako wymagane!"
1382
+
1383
+ #, fuzzy
1384
+ #~ msgid ""
1385
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1386
+ #~ "fields are validated. However, you should still check that your "
1387
+ #~ "displayed and required fields match up. Mismatched fields are "
1388
+ #~ "highlighted below."
1389
+ #~ msgstr ""
1390
+ #~ "Info: Nie spowoduje to błędu widocznego dla użytkownika, ponieważ "
1391
+ #~ "walidowane są tylko wyświetlone pola - aczkolwiek powinno się sprawdzić "
1392
+ #~ "czy pola określone jako wymagane są wyświetlane. Niepasujące pola są "
1393
+ #~ "poniżej podświetlone."
1394
+
1395
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1396
+ #~ msgstr ""
1397
+ #~ "Jeżeli podoba Ci się tak wtyczka, prosimy o dobrowolne wsparcie finansowe"
1398
+
1399
+ #~ msgid "Subscriptions"
1400
+ #~ msgstr "Subskrypcja"
1401
+
1402
+ #~ msgid "PayPal Settings"
1403
+ #~ msgstr "Ustawienia PayPal"
1404
+
1405
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1406
+ #~ msgstr ""
1407
+ #~ "Jeżeli podoba Ci się tak wtyczka, prosimy o dobrowolne %s wsparcie "
1408
+ #~ "finansowe %s"
1409
+
1410
+ #~ msgid "%d users were activated."
1411
+ #~ msgstr "%d użytkowników zostało aktywowanych."
1412
+
1413
+ #~ msgid ""
1414
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1415
+ #~ msgstr ""
1416
+ #~ "Lista użytkowników jest gotowa do eksportu, %s kliknij tutaj %s abu "
1417
+ #~ "wygenerować i pobrać plik CSV."
1418
+
1419
+ #~ msgid "WP-Members Users"
1420
+ #~ msgstr "Użytkownicy WP-Members"
1421
+
1422
+ #~ msgid "Add New"
1423
+ #~ msgstr "Dodaj"
1424
+
1425
+ #~ msgid "No users matched your criteria"
1426
+ #~ msgstr "Brak użytkowników spełniających wybrane kryteria"
1427
+
1428
+ #~ msgid "Bulk Actions"
1429
+ #~ msgstr "Funkcje dla zaznaczonych rekordów"
1430
+
1431
+ #~ msgid "Apply"
1432
+ #~ msgstr "Zastosuj"
1433
+
1434
+ #, fuzzy
1435
+ #~ msgid "Indicates a required field"
1436
+ #~ msgstr "Przepraszamy, nazwa użytkownika jest wymagana."
1437
+
1438
+ #~ msgid "Login"
1439
+ #~ msgstr "Zaloguj"
1440
+
1441
+ #~ msgid "Clear Form"
1442
+ #~ msgstr "Wyczyść formularz"
1443
+
1444
+ #~ msgid "Submit"
1445
+ #~ msgstr "Wyślij"
1446
+
1447
+ #~ msgid "Cheatin&#8217; uh?"
1448
+ #~ msgstr "Oszukujemy, co?"
1449
+
1450
+ #~ msgid "there was an error and no users were exported"
1451
+ #~ msgstr "wystąpił błąd podczasu eksportu użytkowników"
1452
+
1453
+ #~ msgid "You are not currently logged in."
1454
+ #~ msgstr "Aktualnie nie jesteś zalogowany."
1455
+
1456
+ #~ msgid "login"
1457
+ #~ msgstr "zaloguj"
1458
+
1459
+ #~ msgid "(The email field is mandatory and cannot be removed)"
1460
+ #~ msgstr "(Email jest obowiązkowy i nie może zostać usunięty)"
1461
+
1462
+ #~ msgid "Bio"
1463
+ #~ msgstr "O sobie"
1464
+
1465
+ #~ msgid "You may change your password here: %s"
1466
+ #~ msgstr "Tutaj możesz zmienić hasło: %s"
1467
+
1468
+ #~ msgid "Your registration info for %s"
1469
+ #~ msgstr "Twoje dane rejestracyjne do %s"
1470
+
1471
+ #~ msgid "Thank you for registering for %s"
1472
+ #~ msgstr "Dziękujemy za rejestrację w %s"
1473
+
1474
+ #~ msgid "Your registration information is below."
1475
+ #~ msgstr "Poniżej Twoje dane rejestracyjne."
1476
+
1477
+ #~ msgid "You may wish to retain a copy for your records."
1478
+ #~ msgstr "Proponujemy zrobienie kopii tych danych."
1479
+
1480
+ #~ msgid "username: %s"
1481
+ #~ msgstr "nazwa użytkownika: %s"
1482
+
1483
+ #~ msgid "password: %s"
1484
+ #~ msgstr "hasło: %s"
1485
+
1486
+ #~ msgid "You may login here:"
1487
+ #~ msgstr "Tutaj możesz się zalogować:"
1488
+
1489
+ #~ msgid ""
1490
+ #~ "Thank you for registering for %s. Your registration has been received and "
1491
+ #~ "is pending approval."
1492
+ #~ msgstr ""
1493
+ #~ "Dziękujemy za rejestrację w %s. Twoje zgłoszenie zostało odebrane i jest "
1494
+ #~ "przekazane do akceptacji."
1495
+
1496
+ #~ msgid "You will receive login instructions upon approval of your account"
1497
+ #~ msgstr ""
1498
+ #~ "Dostarczymy dane i instrukcję do logowania po akceptacji zgłoszenia."
1499
+
1500
+ #~ msgid "Your registration for %s has been approved."
1501
+ #~ msgstr "Twoje zgłoszenie w %s zostało zaakceptowane."
1502
+
1503
+ #~ msgid "You may login at: %s"
1504
+ #~ msgstr "Możesz zalogować się w: %s"
1505
+
1506
+ #~ msgid "You originally registered at:"
1507
+ #~ msgstr "Zarejestrowałeś/aś się do tego miejsca:"
1508
+
1509
+ #~ msgid "Password reset for %s"
1510
+ #~ msgstr "Resetowanie hasła dla %s"
1511
+
1512
+ #~ msgid "Your password for %s has been reset"
1513
+ #~ msgstr "Twoje hasło do %s zostało zresetowane"
1514
+
1515
+ #~ msgid ""
1516
+ #~ "Your new password is included below. You may wish to retain a copy for "
1517
+ #~ "your records."
1518
+ #~ msgstr "Twoje nowe hasło jest wyświetlone poniżej."
1519
+
1520
+ #~ msgid "This is an automated message from %s"
1521
+ #~ msgstr "Ta wiadomość jest wygenerowana automatycznie przez %s"
1522
+
1523
+ #~ msgid "Please do not reply to this address"
1524
+ #~ msgstr "Prosimy nie odpisywać na ten adres"
1525
+
1526
+ #~ msgid "New user registration for %s"
1527
+ #~ msgstr "Nowa rejestracja w %s"
1528
+
1529
+ #~ msgid "The following user registered for %s"
1530
+ #~ msgstr "Podany użytkownik zarejestrował się w %s"
1531
+
1532
+ #~ msgid "and is pending admin approval"
1533
+ #~ msgstr "i oczekuje na akceptację zgłoszenia"
1534
+
1535
+ #~ msgid "http://butlerblog.com/wp-members/"
1536
+ #~ msgstr "http://butlerblog.com/wp-members/"
1537
+
1538
+ #~ msgid "Chad Butler"
1539
+ #~ msgstr "Chad Butler"
1540
+
1541
+ #~ msgid "http://butlerblog.com/"
1542
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-pt_BR.mo ADDED
Binary file
lang/wp-members-pt_BR.po ADDED
@@ -0,0 +1,1474 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.3\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Brazilian-portuguese <joelima1310@gmail.com>\n"
9
+ "Language: pt_BR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Generator: Poedit 1.6.4\n"
15
+
16
+ #: admin/admin.php:60 admin/admin.php:129
17
+ msgid "Settings"
18
+ msgstr "Configurações"
19
+
20
+ #: admin/admin.php:187
21
+ #, fuzzy
22
+ msgid "Options"
23
+ msgstr "Opções"
24
+
25
+ #: admin/admin.php:188
26
+ #, fuzzy
27
+ msgid "Fields"
28
+ msgstr "Campos"
29
+
30
+ #: admin/admin.php:189
31
+ #, fuzzy
32
+ msgid "Dialogs"
33
+ msgstr "Notificações de Atualização"
34
+
35
+ #: admin/admin.php:190
36
+ #, fuzzy
37
+ msgid "Emails"
38
+ msgstr "eMail"
39
+
40
+ #: admin/dialogs.php:109
41
+ msgid ""
42
+ "Your WP settings allow anyone to register - this is not the recommended "
43
+ "setting."
44
+ msgstr ""
45
+ "Suas configurações do WordPress permitem que qualquer um se registre. Esta "
46
+ "não é uma configuração recomendada."
47
+
48
+ #: admin/dialogs.php:110
49
+ #, php-format
50
+ msgid ""
51
+ "You can %s change this here %s making sure the box next to \"Anyone can "
52
+ "register\" is unchecked."
53
+ msgstr ""
54
+
55
+ #: admin/dialogs.php:111
56
+ msgid ""
57
+ "This setting allows a link on the /wp-login.php page to register using the "
58
+ "WP native registration process thus circumventing any registration you are "
59
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
60
+ "but most users should uncheck this option. If you do not change this "
61
+ "setting, you can choose to ignore these warning messages under WP-Members "
62
+ "Settings."
63
+ msgstr ""
64
+ "Esta configuração permite o registro de usuários através de um link na "
65
+ "página /wp-login.php usando o processo nativo de registro do WordPress, "
66
+ "contornando assim qualquer registro de usuário que você esteja realizando "
67
+ "através do WP-Members. Em alguns casos, isso pode atender os usuários que "
68
+ "querem/precisam, mas a maioria dos usuários deve desmarcar essa opção. Se "
69
+ "você não quiser mudar esta configuração, pode optar por ignorar esta "
70
+ "mensagem de aviso nas Opções de Gerenciamento do WP-Membros."
71
+
72
+ #: admin/dialogs.php:117
73
+ msgid ""
74
+ "Your WP settings allow anyone to comment - this is not the recommended "
75
+ "setting."
76
+ msgstr ""
77
+ "Suas configurações do WordPress permitem que qualquer possa comentar. Esta "
78
+ "não é uma configuração recomendada."
79
+
80
+ #: admin/dialogs.php:118
81
+ #, php-format
82
+ msgid ""
83
+ "You can %s change this here %s by checking the box next to \"Users must be "
84
+ "registered and logged in to comment.\""
85
+ msgstr ""
86
+
87
+ #: admin/dialogs.php:119
88
+ msgid ""
89
+ "This setting allows any users to comment, whether or not they are "
90
+ "registered. Depending on how you are using WP-Members will determine whether "
91
+ "you should change this setting or not. If you do not change this setting, "
92
+ "you can choose to ignore these warning messages under WP-Members Settings."
93
+ msgstr ""
94
+ "Esta configuração permite a qualquer usuário comentar, independente de estar "
95
+ "registrado ou não. A forma como você está utilizando o WP-Members irá "
96
+ "determinar se você deve ou não alterar esta configuração. Se você não quiser "
97
+ "mudar esta configuração, pode optar por ignorar esta mensagem de aviso nas "
98
+ "Opções de Gerenciamento do WP-Membros."
99
+
100
+ #: admin/dialogs.php:125
101
+ msgid ""
102
+ "Your WP settings allow full text rss feeds - this is not the recommended "
103
+ "setting."
104
+ msgstr ""
105
+ "Suas configurações do WordPress permitem feeds RSS com texto completo. Esta "
106
+ "não é uma configuração recomendada."
107
+
108
+ #: admin/dialogs.php:126
109
+ #, php-format
110
+ msgid ""
111
+ "You can %s change this here %s by changing \"For each article in a feed, show"
112
+ "\" to \"Summary.\""
113
+ msgstr ""
114
+
115
+ #: admin/dialogs.php:127
116
+ msgid ""
117
+ "Leaving this set to full text allows anyone to read your protected content "
118
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
119
+ "only show summary text."
120
+ msgstr ""
121
+ "Deixando esta configuração ajustada para texto completo, permitirá a "
122
+ "qualquer um ler seu conteúdo protegido num leitor RSS. Alterar isto para "
123
+ "\"Sumário\" assegura que seus feeds vão exibir somente um resumo."
124
+
125
+ #: admin/dialogs.php:133
126
+ msgid "You have set WP-Members to hold registrations for approval"
127
+ msgstr ""
128
+ "Você ajustou o WP-Members para interceptar seus registros de usuário para "
129
+ "aprovação."
130
+
131
+ #: admin/dialogs.php:134
132
+ msgid ""
133
+ "but you have not changed the default message for \"Registration Completed\" "
134
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
135
+ "message to let users know they are pending approval."
136
+ msgstr ""
137
+
138
+ #: admin/dialogs.php:140
139
+ msgid "You have set WP-Members to turn off the registration process"
140
+ msgstr ""
141
+ "Você ajustou o WP-Members para desativar o processo de registro de novos "
142
+ "usuários."
143
+
144
+ #: admin/dialogs.php:141
145
+ msgid ""
146
+ "but you also set to moderate and/or email admin new registrations. You will "
147
+ "need to set up a registration page for users to register."
148
+ msgstr ""
149
+
150
+ #: admin/dialogs.php:147
151
+ msgid "You have turned on reCAPTCHA"
152
+ msgstr ""
153
+
154
+ #: admin/dialogs.php:148
155
+ msgid ""
156
+ "but you have not entered API keys. You will need both a public and private "
157
+ "key. The CAPTCHA will not display unless a valid API key is included."
158
+ msgstr ""
159
+
160
+ #: admin/dialogs.php:171
161
+ msgid "Version:"
162
+ msgstr "Versão:"
163
+
164
+ #: admin/dialogs.php:172
165
+ #, fuzzy
166
+ msgid "Quick Start Guide"
167
+ msgstr ""
168
+ "Restrição de acesso e registo no WordPress. Para maiores informações e para "
169
+ "baixar o \"guia de início rápido\" gratuito, visite <a href=\"http://"
170
+ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. Veja uma "
171
+ "demo em <a href=\"http://butlerblog.com/wpmembers\">http://butlerblog.com/"
172
+ "wpmembers</a>. WP-Members(tm) é uma marca registrada de butlerblog.com."
173
+
174
+ #: admin/dialogs.php:173
175
+ #, fuzzy
176
+ msgid "Online User Guide"
177
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
178
+
179
+ #: admin/dialogs.php:174
180
+ msgid "FAQs"
181
+ msgstr ""
182
+
183
+ #: admin/dialogs.php:181
184
+ #, fuzzy
185
+ msgid "Thank you for using WP-Members"
186
+ msgstr "Obrigado por usar o WP-Members! Você está usando a versão"
187
+
188
+ #: admin/dialogs.php:182
189
+ msgid "A plugin developed by"
190
+ msgstr ""
191
+
192
+ #: admin/dialogs.php:183
193
+ msgid "Follow"
194
+ msgstr "Siga"
195
+
196
+ #: admin/dialogs.php:200 admin/dialogs.php:204
197
+ msgid "Latest from RocketGeek"
198
+ msgstr ""
199
+
200
+ #: admin/dialogs.php:221 admin/dialogs.php:234
201
+ msgid "Latest from ButlerBlog"
202
+ msgstr ""
203
+
204
+ #: admin/post.php:36 admin/post.php:38
205
+ #, fuzzy
206
+ msgid "Block"
207
+ msgstr "Bloquear Posts por Padrão:"
208
+
209
+ #: admin/post.php:37 admin/post.php:39
210
+ msgid "Unblock"
211
+ msgstr ""
212
+
213
+ #: admin/post.php:120
214
+ #, fuzzy, php-format
215
+ msgid "%s posts %sed."
216
+ msgstr "Bloquear Posts por Padrão:"
217
+
218
+ #: admin/post.php:138
219
+ #, fuzzy
220
+ msgid "Post Restriction"
221
+ msgstr "Moderar Registro:"
222
+
223
+ #: admin/post.php:145
224
+ #, fuzzy
225
+ msgid "Page Restriction"
226
+ msgstr "Moderar Registro:"
227
+
228
+ #: admin/post.php:263 admin/post.php:295
229
+ #, fuzzy
230
+ msgid "Unblocked?"
231
+ msgstr ""
232
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
233
+
234
+ #: admin/post.php:263 admin/post.php:295
235
+ #, fuzzy
236
+ msgid "Blocked?"
237
+ msgstr ""
238
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
239
+
240
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
241
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
242
+ msgid "Need help?"
243
+ msgstr ""
244
+
245
+ #: admin/tab-captcha.php:46
246
+ msgid "Manage reCAPTCHA Options"
247
+ msgstr "Gerenciar Opções do reCAPTCHA"
248
+
249
+ #: admin/tab-captcha.php:60
250
+ msgid ""
251
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
252
+ "while blocking spam on your blog."
253
+ msgstr ""
254
+ "reCAPTCHA é um serviço de CAPTCHA gratuito e acessível que ajuda a "
255
+ "digitalizar livros enquanto bloqueia spam no seu blog."
256
+
257
+ #: admin/tab-captcha.php:61
258
+ #, fuzzy, php-format
259
+ msgid ""
260
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
261
+ "that they are a human. This verifies that they are not a spambot while also "
262
+ "correcting the automatic scans of old books. So you get less spam, and the "
263
+ "world gets accurately digitized books. Everybody wins! For details, visit "
264
+ "the %s reCAPTCHA website%s"
265
+ msgstr ""
266
+ "reCAPTCHA solicita aos comentaristas que redigitem duas palavras escaneadas "
267
+ "de um livro para provar que eles são humanos. Isto prova que eles não são um "
268
+ "\"spambot\" enquanto corrige os escaneamentos automáticos de velhos livros. "
269
+ "Desda forma, você obtém menos spam e o mundo recebe melhores digitalizações "
270
+ "de livros. Todo mundo ganha! Para detalhes, visite o"
271
+
272
+ #: admin/tab-captcha.php:66
273
+ msgid "reCAPTCHA Keys"
274
+ msgstr "Chaves do reCAPTCHA"
275
+
276
+ #: admin/tab-captcha.php:68
277
+ #, fuzzy, php-format
278
+ msgid ""
279
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
280
+ "key. You can sign up for a %s free reCAPTCHA key%s"
281
+ msgstr ""
282
+ "reCAPTCHA exige uma Chave API (\"API Key\"), que consiste em um par de "
283
+ "chaves \"pública\" e \"privada\". Você pode se registrar para uma"
284
+
285
+ #: admin/tab-captcha.php:69
286
+ msgid "Public Key"
287
+ msgstr "Chave Pública"
288
+
289
+ #: admin/tab-captcha.php:70
290
+ msgid "Private Key"
291
+ msgstr "Chave Privada"
292
+
293
+ #: admin/tab-captcha.php:74
294
+ msgid "Choose Theme"
295
+ msgstr "Selecione o Tema"
296
+
297
+ #: admin/tab-captcha.php:77
298
+ msgid "Red"
299
+ msgstr "Vermelho"
300
+
301
+ #: admin/tab-captcha.php:78
302
+ msgid "White"
303
+ msgstr "Branco"
304
+
305
+ #: admin/tab-captcha.php:79
306
+ msgid "Black Glass"
307
+ msgstr "Vidro Fumê"
308
+
309
+ #: admin/tab-captcha.php:80
310
+ msgid "Clean"
311
+ msgstr "Limpo"
312
+
313
+ #: admin/tab-captcha.php:112
314
+ msgid "Characters for image"
315
+ msgstr ""
316
+
317
+ #: admin/tab-captcha.php:116
318
+ msgid "Number of characters"
319
+ msgstr ""
320
+
321
+ #: admin/tab-captcha.php:120
322
+ msgid "Image dimensions"
323
+ msgstr ""
324
+
325
+ #: admin/tab-captcha.php:124
326
+ msgid "Font color of characters"
327
+ msgstr ""
328
+
329
+ #: admin/tab-captcha.php:128
330
+ msgid "Background color of image"
331
+ msgstr ""
332
+
333
+ #: admin/tab-captcha.php:132
334
+ msgid "Font size"
335
+ msgstr ""
336
+
337
+ #: admin/tab-captcha.php:136
338
+ msgid "Width between characters"
339
+ msgstr ""
340
+
341
+ #: admin/tab-captcha.php:140
342
+ #, fuzzy
343
+ msgid "Image type"
344
+ msgstr "Campo"
345
+
346
+ #: admin/tab-captcha.php:154
347
+ msgid ""
348
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
349
+ "installed and activated."
350
+ msgstr ""
351
+
352
+ #: admin/tab-captcha.php:166
353
+ #, fuzzy
354
+ msgid "Update CAPTCHA Settings"
355
+ msgstr "Atualizar Configuração do reCAPTCHA"
356
+
357
+ #: admin/tab-captcha.php:230
358
+ #, fuzzy
359
+ msgid "CAPTCHA was updated for WP-Members"
360
+ msgstr "WP-Members"
361
+
362
+ #: admin/tab-dialogs.php:29
363
+ msgid "Restricted post (or page), displays above the login/registration form"
364
+ msgstr ""
365
+ "Aviso para posts ou páginas restritos, exibido acima do formulário de login:"
366
+
367
+ #: admin/tab-dialogs.php:30
368
+ msgid "Username is taken"
369
+ msgstr "Aviso para nome de usuário já utilizado:"
370
+
371
+ #: admin/tab-dialogs.php:31
372
+ msgid "Email is registered"
373
+ msgstr "Aviso de email já registrado:"
374
+
375
+ #: admin/tab-dialogs.php:32
376
+ msgid "Registration completed"
377
+ msgstr "Aviso de processo de registro completo:"
378
+
379
+ #: admin/tab-dialogs.php:33
380
+ msgid "User update"
381
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
382
+
383
+ #: admin/tab-dialogs.php:34
384
+ msgid "Passwords did not match"
385
+ msgstr "Aviso de diferença nas senhas digitadas:"
386
+
387
+ #: admin/tab-dialogs.php:35
388
+ msgid "Password changes"
389
+ msgstr "Aviso de confirmação de alteração de senha:"
390
+
391
+ #: admin/tab-dialogs.php:36
392
+ msgid "Username or email do not exist when trying to reset forgotten password"
393
+ msgstr ""
394
+ "Aviso para nome de usuário ou email não encontrado durante tentativa de "
395
+ "reiniciar uma senha esquecida:"
396
+
397
+ #: admin/tab-dialogs.php:37
398
+ msgid "Password reset"
399
+ msgstr "Aviso de confirmação de reinicialização de senha:"
400
+
401
+ #: admin/tab-dialogs.php:54
402
+ msgid "Dialogs and Error Messages"
403
+ msgstr "Notificações e Mensagens de Erro"
404
+
405
+ #: admin/tab-dialogs.php:56
406
+ #, fuzzy, php-format
407
+ msgid ""
408
+ "You can customize the text for dialogs and error messages. Simple HTML is "
409
+ "allowed %s etc."
410
+ msgstr "Você pode customizar os textos a seguir. HTML simples é permitido."
411
+
412
+ #: admin/tab-dialogs.php:69
413
+ msgid "Terms of Service (TOS)"
414
+ msgstr ""
415
+
416
+ #: admin/tab-dialogs.php:76
417
+ msgid "Update Dialogs"
418
+ msgstr "Notificações de Atualização"
419
+
420
+ #: admin/tab-dialogs.php:115
421
+ #, fuzzy
422
+ msgid "WP-Members dialogs were updated"
423
+ msgstr "Campos Adicionais do WP-Members"
424
+
425
+ #: admin/tab-emails.php:30
426
+ #, fuzzy
427
+ msgid "New Registration"
428
+ msgstr "Moderar Registo:"
429
+
430
+ #: admin/tab-emails.php:34
431
+ #, fuzzy
432
+ msgid "Registration is Moderated"
433
+ msgstr "Aviso de processo de registo completo:"
434
+
435
+ #: admin/tab-emails.php:35
436
+ #, fuzzy
437
+ msgid "Registration is Moderated, User is Approved"
438
+ msgstr "Aviso de processo de registo completo:"
439
+
440
+ #: admin/tab-emails.php:40
441
+ #, fuzzy
442
+ msgid "Password Reset"
443
+ msgstr "Redefinição de password"
444
+
445
+ #: admin/tab-emails.php:45
446
+ #, fuzzy
447
+ msgid "Admin Notification"
448
+ msgstr "Notificar Administrador:"
449
+
450
+ #: admin/tab-emails.php:50
451
+ #, fuzzy
452
+ msgid "Email Signature"
453
+ msgstr "Aviso de email já registado:"
454
+
455
+ #: admin/tab-emails.php:57
456
+ #, fuzzy
457
+ msgid "Email Messages"
458
+ msgstr "eMail"
459
+
460
+ #: admin/tab-emails.php:60
461
+ msgid "You can customize the content of the emails sent by the plugin."
462
+ msgstr ""
463
+
464
+ #: admin/tab-emails.php:62
465
+ msgid "A list of shortcodes is available here."
466
+ msgstr ""
467
+
468
+ #: admin/tab-emails.php:69
469
+ #, fuzzy
470
+ msgid "Set a custom email address"
471
+ msgstr "Inseriu um username ou password inválidos."
472
+
473
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
474
+ msgid "(optional)"
475
+ msgstr ""
476
+
477
+ #: admin/tab-emails.php:73
478
+ #, fuzzy
479
+ msgid "Set a custom email name"
480
+ msgstr "Inseriu um username ou password inválidos."
481
+
482
+ #: admin/tab-emails.php:84
483
+ msgid "Subject"
484
+ msgstr ""
485
+
486
+ #: admin/tab-emails.php:88
487
+ msgid "Body"
488
+ msgstr ""
489
+
490
+ #: admin/tab-emails.php:105
491
+ #, fuzzy
492
+ msgid "Update Emails"
493
+ msgstr "Atualizar Senha"
494
+
495
+ #: admin/tab-emails.php:161
496
+ #, fuzzy
497
+ msgid "WP-Members emails were updated"
498
+ msgstr "WP-Members possui direitos autorais"
499
+
500
+ #: admin/tab-fields.php:166
501
+ #, fuzzy
502
+ msgid "WP-Members fields were updated"
503
+ msgstr "Campos Adicionais do WP-Members"
504
+
505
+ #: admin/tab-fields.php:176
506
+ msgid "Field Label is required for adding a new field. Nothing was updated."
507
+ msgstr ""
508
+
509
+ #: admin/tab-fields.php:177
510
+ msgid "Option Name is required for adding a new field. Nothing was updated."
511
+ msgstr ""
512
+
513
+ #: admin/tab-fields.php:184
514
+ msgid "A field with that option name already exists"
515
+ msgstr ""
516
+
517
+ #: admin/tab-fields.php:201
518
+ msgid "Checked value is required for checkboxes. Nothing was updated."
519
+ msgstr ""
520
+
521
+ #: admin/tab-fields.php:223
522
+ #, fuzzy
523
+ msgid "field was added"
524
+ msgstr "Campo"
525
+
526
+ #: admin/tab-fields.php:241
527
+ #, fuzzy
528
+ msgid "field was updated"
529
+ msgstr "Campo"
530
+
531
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
532
+ #, fuzzy
533
+ msgid "Edit Field"
534
+ msgstr "Edite suas Informações"
535
+
536
+ #: admin/tab-fields.php:289
537
+ #, fuzzy
538
+ msgid "Add a Field"
539
+ msgstr "Campo"
540
+
541
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
542
+ msgid "Field Label"
543
+ msgstr "Campo"
544
+
545
+ #: admin/tab-fields.php:297
546
+ msgid "The name of the field as it will be displayed to the user."
547
+ msgstr ""
548
+
549
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
550
+ #, fuzzy
551
+ msgid "Option Name"
552
+ msgstr "Sobrenome"
553
+
554
+ #: admin/tab-fields.php:306
555
+ msgid ""
556
+ "The database meta value for the field. It must be unique and contain no "
557
+ "spaces (underscores are ok)."
558
+ msgstr ""
559
+
560
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
561
+ #, fuzzy
562
+ msgid "Field Type"
563
+ msgstr "Campo"
564
+
565
+ #: admin/tab-fields.php:316
566
+ #, fuzzy
567
+ msgid "text"
568
+ msgstr ""
569
+ "Suas configurações do WordPress permitem feeds RSS com texto completo. Esta "
570
+ "não é uma configuração recomendada."
571
+
572
+ #: admin/tab-fields.php:317
573
+ msgid "textarea"
574
+ msgstr ""
575
+
576
+ #: admin/tab-fields.php:318
577
+ #, fuzzy
578
+ msgid "checkbox"
579
+ msgstr "Campos Adicionais do WP-Members"
580
+
581
+ #: admin/tab-fields.php:319
582
+ #, fuzzy
583
+ msgid "dropdown"
584
+ msgstr "Campos Adicionais do WP-Members"
585
+
586
+ #: admin/tab-fields.php:320
587
+ #, fuzzy
588
+ msgid "password"
589
+ msgstr "Password"
590
+
591
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
592
+ msgid "Display?"
593
+ msgstr "Exibir?"
594
+
595
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
596
+ msgid "Required?"
597
+ msgstr "Requerido?"
598
+
599
+ #: admin/tab-fields.php:334
600
+ #, fuzzy
601
+ msgid "Additional information for checkbox fields"
602
+ msgstr "Campos Adicionais do WP-Members"
603
+
604
+ #: admin/tab-fields.php:337
605
+ #, fuzzy
606
+ msgid "Checked by default?"
607
+ msgstr "Bloquear Posts por Padrão:"
608
+
609
+ #: admin/tab-fields.php:341
610
+ #, fuzzy
611
+ msgid "Stored value if checked:"
612
+ msgstr "Bloquear Posts por Padrão:"
613
+
614
+ #: admin/tab-fields.php:347
615
+ #, fuzzy
616
+ msgid "Additional information for dropdown fields"
617
+ msgstr "Campos Adicionais do WP-Members"
618
+
619
+ #: admin/tab-fields.php:350
620
+ #, fuzzy
621
+ msgid "For dropdown, array of values:"
622
+ msgstr "Campos Adicionais do WP-Members"
623
+
624
+ #: admin/tab-fields.php:375
625
+ msgid "Options should be Option Name|option_value,"
626
+ msgstr ""
627
+
628
+ #: admin/tab-fields.php:379
629
+ msgid "Visit plugin site for more information"
630
+ msgstr ""
631
+
632
+ #: admin/tab-fields.php:385
633
+ #, fuzzy
634
+ msgid "Add Field"
635
+ msgstr "Campo"
636
+
637
+ #: admin/tab-fields.php:407
638
+ msgid "Manage Fields"
639
+ msgstr "Gerenciar Campos"
640
+
641
+ #: admin/tab-fields.php:409
642
+ msgid ""
643
+ "Determine which fields will display and which are required. This includes "
644
+ "all fields, both native WP fields and WP-Members custom fields."
645
+ msgstr ""
646
+ "Determine quais campos serão exibidos e quais são obrigatórios. Isto inclui "
647
+ "todos os campos, tanto os nativos do WordPress quanto os inseridos pelo WP-"
648
+ "Members."
649
+
650
+ #: admin/tab-fields.php:410
651
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
652
+ msgstr "(Nota: Campo de email é sempre obrigatório e não pode ser alterado.)"
653
+
654
+ #: admin/tab-fields.php:415
655
+ #, fuzzy
656
+ msgid "Add/Delete"
657
+ msgstr "Campo"
658
+
659
+ #: admin/tab-fields.php:421
660
+ #, fuzzy
661
+ msgid "Checked?"
662
+ msgstr "Bloquear Posts por Padrão:"
663
+
664
+ #: admin/tab-fields.php:423
665
+ #, fuzzy
666
+ msgid "Users Screen"
667
+ msgstr "Log In"
668
+
669
+ #: admin/tab-fields.php:435
670
+ msgid "Delete"
671
+ msgstr ""
672
+
673
+ #: admin/tab-fields.php:447
674
+ msgid "(Email cannot be removed)"
675
+ msgstr "(O campo de email é obrigatório e não pode ser removido)"
676
+
677
+ #: admin/tab-fields.php:467
678
+ #, fuzzy
679
+ msgid "Registration Date"
680
+ msgstr "Aviso de processo de registro completo:"
681
+
682
+ #: admin/tab-fields.php:470
683
+ #, fuzzy
684
+ msgid "native"
685
+ msgstr ""
686
+ "Determine quais campos serão exibidos e quais são obrigatórios. Isto inclui "
687
+ "todos os campos, tanto os nativos do WordPress quanto os inseridos pelo WP-"
688
+ "Members."
689
+
690
+ #: admin/tab-fields.php:480
691
+ #, fuzzy
692
+ msgid "Active"
693
+ msgstr "Estado"
694
+
695
+ #: admin/tab-fields.php:492
696
+ #, fuzzy
697
+ msgid "Registration IP"
698
+ msgstr "Aviso de processo de registro completo:"
699
+
700
+ #: admin/tab-fields.php:527
701
+ msgid "Update Fields"
702
+ msgstr "Atualizar Campos"
703
+
704
+ #: admin/tab-options.php:48
705
+ msgid "Manage Options"
706
+ msgstr "Opções de Gerenciamento"
707
+
708
+ #: admin/tab-options.php:54
709
+ msgid "Block Posts by default"
710
+ msgstr "Bloquear Posts por Padrão:"
711
+
712
+ #: admin/tab-options.php:54
713
+ msgid ""
714
+ "Note: Posts can still be individually blocked or unblocked at the article "
715
+ "level"
716
+ msgstr ""
717
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
718
+
719
+ #: admin/tab-options.php:55
720
+ msgid "Block Pages by default"
721
+ msgstr "Bloquear Páginas por Padrão:"
722
+
723
+ #: admin/tab-options.php:55
724
+ msgid ""
725
+ "Note: Pages can still be individually blocked or unblocked at the article "
726
+ "level"
727
+ msgstr ""
728
+ "Nota: Páginas ainda podem ser bloqueadas e desbloqueadas individualmente."
729
+
730
+ #: admin/tab-options.php:56
731
+ msgid "Show excerpts"
732
+ msgstr "Exibir Trechos:"
733
+
734
+ #: admin/tab-options.php:56
735
+ msgid ""
736
+ "Shows excerpted content above the login/registration on both Posts and Pages"
737
+ msgstr "Exibir trechos de conteúdo bloqueado em Posts e Páginas."
738
+
739
+ #: admin/tab-options.php:57
740
+ msgid "Notify admin"
741
+ msgstr "Notificar Administrador:"
742
+
743
+ #: admin/tab-options.php:57
744
+ #, fuzzy, php-format
745
+ msgid "Notify %s for each new registration? %s"
746
+ msgstr "Enviar email para administrador para cada novo registro?"
747
+
748
+ #: admin/tab-options.php:58
749
+ msgid "Moderate registration"
750
+ msgstr "Moderar Registro:"
751
+
752
+ #: admin/tab-options.php:58
753
+ msgid "Holds new registrations for admin approval"
754
+ msgstr "Intercepta novos registros para aprovação do administrador."
755
+
756
+ #: admin/tab-options.php:91
757
+ #, fuzzy
758
+ msgid "Enable CAPTCHA"
759
+ msgstr "Ativa a solicitação de CAPTCHA durante o processo de registro."
760
+
761
+ #: admin/tab-options.php:59
762
+ msgid "Turns on CAPTCHA for registration"
763
+ msgstr "Ativa a solicitação de CAPTCHA durante o processo de registro."
764
+
765
+ #: admin/tab-options.php:60
766
+ #, fuzzy
767
+ msgid "Hide registration"
768
+ msgstr "Aviso de processo de registro completo:"
769
+
770
+ #: admin/tab-options.php:60
771
+ msgid "Removes the registration form from blocked content"
772
+ msgstr ""
773
+
774
+ #: admin/tab-options.php:62
775
+ msgid "Time-based expiration"
776
+ msgstr "Expirar Acesso:"
777
+
778
+ #: admin/tab-options.php:62
779
+ msgid "Allows for access to expire"
780
+ msgstr "Permite que o acesso expire por tempo."
781
+
782
+ #: admin/tab-options.php:63
783
+ msgid "Trial period"
784
+ msgstr "Período de Experiência:"
785
+
786
+ #: admin/tab-options.php:63
787
+ msgid "Allows for a trial period"
788
+ msgstr "Permite período de experiência."
789
+
790
+ #: admin/tab-options.php:64
791
+ msgid "Ignore warning messages"
792
+ msgstr "Ignorar Mensagens de Advertência:"
793
+
794
+ #: admin/tab-options.php:64
795
+ msgid "Ignores WP-Members warning messages in the admin panel"
796
+ msgstr ""
797
+ "Ignora as mensagens de advertência do WP-Members no painel administrativo."
798
+
799
+ #: admin/tab-options.php:81
800
+ msgid "Attribution"
801
+ msgstr ""
802
+
803
+ #: admin/tab-options.php:83
804
+ msgid ""
805
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
806
+ msgstr ""
807
+
808
+ #: admin/tab-options.php:87
809
+ #, fuzzy
810
+ msgid "Auto Excerpt:"
811
+ msgstr "Exibir Trechos:"
812
+
813
+ #: admin/tab-options.php:88
814
+ #, fuzzy
815
+ msgid "Number of words in excerpt:"
816
+ msgstr "Exibir Trechos:"
817
+
818
+ #: admin/tab-options.php:88 admin/tab-options.php:108
819
+ #: admin/tab-options.php:118 admin/tab-options.php:132
820
+ msgid "Optional"
821
+ msgstr ""
822
+
823
+ #: admin/tab-options.php:88
824
+ #, fuzzy
825
+ msgid "Automatically creates an excerpt"
826
+ msgstr "Exibir Trechos:"
827
+
828
+ #: admin/tab-options.php:103
829
+ #, fuzzy
830
+ msgid "User Profile Page:"
831
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
832
+
833
+ #: admin/tab-options.php:106
834
+ msgid "For creating a forgot password link in the login form"
835
+ msgstr ""
836
+
837
+ #: admin/tab-options.php:113
838
+ #, fuzzy
839
+ msgid "Register Page:"
840
+ msgstr "Registar-se"
841
+
842
+ #: admin/tab-options.php:116
843
+ msgid "For creating a register link in the login form"
844
+ msgstr ""
845
+
846
+ #: admin/tab-options.php:126
847
+ msgid "Select a stylesheet or specify a custom stylesheet below"
848
+ msgstr ""
849
+
850
+ #: admin/tab-options.php:131
851
+ #, fuzzy
852
+ msgid "Custom Stylesheet:"
853
+ msgstr "Customizado"
854
+
855
+ #: admin/tab-options.php:136
856
+ #, fuzzy
857
+ msgid "Update Settings"
858
+ msgstr "Atualizar Configuração do reCAPTCHA"
859
+
860
+ #: admin/tab-options.php:246
861
+ #, fuzzy
862
+ msgid "WP-Members settings were updated"
863
+ msgstr "Campos Adicionais do WP-Members"
864
+
865
+ #: admin/tab-options.php:296
866
+ #, fuzzy
867
+ msgid "Select a page"
868
+ msgstr "Moderar Registro:"
869
+
870
+ #: admin/tab-options.php:304
871
+ msgid "USE CUSTOM URL BELOW"
872
+ msgstr ""
873
+
874
+ #: admin/user-export.php:57 admin/user-export.php:172
875
+ #, fuzzy
876
+ msgid "Activated?"
877
+ msgstr "Ativo?"
878
+
879
+ #: admin/user-export.php:61 admin/user-export.php:175
880
+ #, fuzzy
881
+ msgid "Subscription"
882
+ msgstr "Subscrição"
883
+
884
+ #: admin/user-export.php:61 admin/user-export.php:175
885
+ msgid "Expires"
886
+ msgstr ""
887
+
888
+ #: admin/user-export.php:64 admin/user-export.php:178
889
+ #, fuzzy
890
+ msgid "Registered"
891
+ msgstr "Registado"
892
+
893
+ #: admin/user-export.php:65 admin/user-export.php:179
894
+ #, fuzzy
895
+ msgid "IP"
896
+ msgstr "Aviso de processo de registro completo:"
897
+
898
+ #: admin/user-profile.php:46
899
+ msgid "WP-Members Additional Fields"
900
+ msgstr "Campos Adicionais do WP-Members"
901
+
902
+ #: admin/user-profile.php:66 native-registration.php:36
903
+ #: native-registration.php:159 users.php:62
904
+ msgid "(required)"
905
+ msgstr "Requerido?"
906
+
907
+ #: admin/user-profile.php:98
908
+ msgid "Activate this user?"
909
+ msgstr "Ativar usuário?"
910
+
911
+ #: admin/user-profile.php:103
912
+ #, fuzzy
913
+ msgid "Reactivate this user?"
914
+ msgstr "Re-ativar este utilizador?"
915
+
916
+ #: admin/user-profile.php:108
917
+ #, fuzzy
918
+ msgid "Deactivate this user?"
919
+ msgstr "Desativar utilizador?"
920
+
921
+ #: admin/user-profile.php:129
922
+ #, fuzzy
923
+ msgid "IP @ registration"
924
+ msgstr "Aviso de processo de registro completo:"
925
+
926
+ #: admin/users.php:45 admin/users.php:49
927
+ msgid "Export"
928
+ msgstr ""
929
+
930
+ #: admin/users.php:50 admin/users.php:91
931
+ #, fuzzy
932
+ msgid "Export All Users"
933
+ msgstr "Log In"
934
+
935
+ #: forms.php:95
936
+ #, fuzzy
937
+ msgid "Existing Users Log In"
938
+ msgstr "Log In"
939
+
940
+ #: forms.php:161 wp-members-dialogs.php:192
941
+ msgid "Change Password"
942
+ msgstr "Alterar Senha"
943
+
944
+ #: forms.php:163
945
+ msgid "Update Password"
946
+ msgstr "Atualizar Senha"
947
+
948
+ #: forms.php:227
949
+ msgid "Reset Forgotten Password"
950
+ msgstr "Reinicializar Senha Esquecida"
951
+
952
+ #: forms.php:403
953
+ msgid "Forgot password?"
954
+ msgstr "Esqueceu a senha?"
955
+
956
+ #: forms.php:403
957
+ msgid "Click here to reset"
958
+ msgstr "Clique aqui para reiniciar"
959
+
960
+ #: forms.php:418
961
+ #, fuzzy
962
+ msgid "New User?"
963
+ msgstr "Novo utilizador?"
964
+
965
+ #: forms.php:418
966
+ #, fuzzy
967
+ msgid "Click here to register"
968
+ msgstr "Clique aqui para registar-se"
969
+
970
+ #: forms.php:515
971
+ msgid "Required field"
972
+ msgstr "Campo obrigatório"
973
+
974
+ #: forms.php:521
975
+ #, fuzzy
976
+ msgid "Reset Form"
977
+ msgstr "Aviso de confirmação de reinicialização de senha:"
978
+
979
+ #: forms.php:523
980
+ #, fuzzy
981
+ msgid "Update Profile"
982
+ msgstr "Atualizar Senha"
983
+
984
+ #: forms.php:561
985
+ msgid "Choose a Username"
986
+ msgstr "Nome de Usuário"
987
+
988
+ #: forms.php:683 native-registration.php:65
989
+ #, php-format
990
+ msgid "Please indicate that you agree to the %s TOS %s"
991
+ msgstr ""
992
+
993
+ #: forms.php:852
994
+ #, fuzzy
995
+ msgid "New User Registration"
996
+ msgstr "Novo utilizador?"
997
+
998
+ #: forms.php:1018
999
+ msgid "Input the code:"
1000
+ msgstr ""
1001
+
1002
+ #: users.php:38
1003
+ #, fuzzy
1004
+ msgid "Additional Information"
1005
+ msgstr "Campos Adicionais do WP-Members"
1006
+
1007
+ #: wp-members-core.php:118 wp-members-core.php:245
1008
+ #, fuzzy
1009
+ msgid "There was an error with the CAPTCHA form."
1010
+ msgstr "Notificações e Mensagens de Erro"
1011
+
1012
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1013
+ msgid "Edit Your Information"
1014
+ msgstr "Edite suas Informações"
1015
+
1016
+ #: wp-members-core.php:544
1017
+ msgid "<strong>ERROR</strong>: User has not been activated."
1018
+ msgstr ""
1019
+
1020
+ #: wp-members-core.php:903 wp-members-register.php:93
1021
+ #, fuzzy, php-format
1022
+ msgid "Sorry, %s is a required field."
1023
+ msgstr "Username é um campo obrigatório"
1024
+
1025
+ #: wp-members-dialogs.php:42
1026
+ msgid "Login Failed!"
1027
+ msgstr "Login falhou!"
1028
+
1029
+ #: wp-members-dialogs.php:45
1030
+ msgid "You entered an invalid username or password."
1031
+ msgstr "Você inseriu um nome de usuário ou senha inválidos."
1032
+
1033
+ #: wp-members-dialogs.php:47
1034
+ msgid "Click here to continue."
1035
+ msgstr "Clique aqui para continuar."
1036
+
1037
+ #: wp-members-dialogs.php:191
1038
+ #, fuzzy
1039
+ msgid "Edit My Information"
1040
+ msgstr "Editar info pessoal"
1041
+
1042
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1043
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1044
+ #: wp-members-sidebar.php:246
1045
+ #, fuzzy, php-format
1046
+ msgid "You are logged in as %s"
1047
+ msgstr "Você inseriu um nome de usuário ou senha inválidos."
1048
+
1049
+ #: wp-members-dialogs.php:208
1050
+ #, fuzzy
1051
+ msgid "Click to log out."
1052
+ msgstr "Log In"
1053
+
1054
+ #: wp-members-dialogs.php:209
1055
+ #, fuzzy
1056
+ msgid "Begin using the site."
1057
+ msgstr "Obrigado por usar o WP-Members! Você está usando a versão"
1058
+
1059
+ #: wp-members-dialogs.php:225
1060
+ #, fuzzy
1061
+ msgid "Click to log out"
1062
+ msgstr "Log In"
1063
+
1064
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1065
+ #, fuzzy
1066
+ msgid "click to log out"
1067
+ msgstr "Log In"
1068
+
1069
+ #: wp-members-dialogs.php:271
1070
+ #, fuzzy
1071
+ msgid "Password fields cannot be empty"
1072
+ msgstr "Aviso de diferença nas senhas digitadas:"
1073
+
1074
+ #: wp-members-register.php:51
1075
+ #, fuzzy
1076
+ msgid "There was an error processing the form."
1077
+ msgstr "Notificações e Mensagens de Erro"
1078
+
1079
+ #: wp-members-register.php:110
1080
+ #, fuzzy
1081
+ msgid "Sorry, username is a required field"
1082
+ msgstr "Username é um campo obrigatório"
1083
+
1084
+ #: wp-members-register.php:111
1085
+ msgid "The username cannot include non-alphanumeric characters."
1086
+ msgstr ""
1087
+
1088
+ #: wp-members-register.php:112 wp-members-register.php:282
1089
+ #, fuzzy
1090
+ msgid "You must enter a valid email address."
1091
+ msgstr "Inseriu um username ou password inválidos."
1092
+
1093
+ #: wp-members-register.php:119
1094
+ #, fuzzy
1095
+ msgid "Passwords did not match."
1096
+ msgstr "As passwords não coincidem"
1097
+
1098
+ #: wp-members-register.php:120 wp-members-register.php:286
1099
+ #, fuzzy
1100
+ msgid "Emails did not match."
1101
+ msgstr "Aviso de diferença nas senhas digitadas:"
1102
+
1103
+ #: wp-members-register.php:127
1104
+ #, fuzzy
1105
+ msgid "You must complete the CAPTCHA form."
1106
+ msgstr "você precisa completar o formulário da CAPTCHA"
1107
+
1108
+ #: wp-members-register.php:377
1109
+ msgid "We were unable to validate the public key."
1110
+ msgstr "Não foi possível validar a Chave Pública"
1111
+
1112
+ #: wp-members-register.php:381
1113
+ msgid "We were unable to validate the private key."
1114
+ msgstr "Não foi possível validar a Chave Privada"
1115
+
1116
+ #: wp-members-register.php:385
1117
+ msgid "The challenge parameter of the verify script was incorrect."
1118
+ msgstr "O parâmetro de desafio do script de verificação estava incorreto."
1119
+
1120
+ #: wp-members-register.php:389
1121
+ msgid "The CAPTCHA solution was incorrect."
1122
+ msgstr "A solução da CAPTCHA estava incorreta."
1123
+
1124
+ #: wp-members-register.php:393
1125
+ msgid "The parameters to verify were incorrect"
1126
+ msgstr "Os parâmetros de verificação estavam incorretos."
1127
+
1128
+ #: wp-members-register.php:397
1129
+ msgid ""
1130
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1131
+ msgstr ""
1132
+ "As chaves API (\"API Keys\") do reCAPTCHA são atreladas a um nome "
1133
+ "específico de domínio por razões de segurança."
1134
+
1135
+ #: wp-members-register.php:401
1136
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1137
+ msgstr "O servidor reCAPTCHA não foi alcançado. Por favor, tente reenviar."
1138
+
1139
+ #: wp-members-register.php:405
1140
+ msgid "You have entered an incorrect code value. Please try again."
1141
+ msgstr ""
1142
+
1143
+ #: wp-members-sidebar.php:117
1144
+ msgid "Login Failed!<br />You entered an invalid username or password."
1145
+ msgstr "Login falhou!<br />Você inseriu um nome de usuário ou senha inválida."
1146
+
1147
+ #: wp-members-sidebar.php:118
1148
+ #, fuzzy
1149
+ msgid "You are not logged in."
1150
+ msgstr "Você inseriu um nome de usuário ou senha inválidos."
1151
+
1152
+ #: wp-members-sidebar.php:169
1153
+ msgid "log in"
1154
+ msgstr "log in"
1155
+
1156
+ #: wp-members-sidebar.php:180
1157
+ #, fuzzy
1158
+ msgid "Forgot?"
1159
+ msgstr "Esqueceu a password?"
1160
+
1161
+ #: wp-members-sidebar.php:247
1162
+ msgid "click here to log out"
1163
+ msgstr "clique aqui para fazer logout"
1164
+
1165
+ #: wp-members-sidebar.php:279
1166
+ msgid "Displays the WP-Members sidebar login."
1167
+ msgstr ""
1168
+
1169
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1170
+ msgid "Login Status"
1171
+ msgstr "Estado do Login"
1172
+
1173
+ #: wp-members-sidebar.php:299
1174
+ msgid "Title:"
1175
+ msgstr "Tratamento:"
1176
+
1177
+ #: wp-members-tos.php:24
1178
+ msgid "Terms of Service"
1179
+ msgstr ""
1180
+
1181
+ #: wp-members-tos.php:36
1182
+ #, php-format
1183
+ msgid "%sclose%s"
1184
+ msgstr ""
1185
+
1186
+ #: wp-members-tos.php:38
1187
+ #, php-format
1188
+ msgid "%sprint%s"
1189
+ msgstr ""
1190
+
1191
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1192
+ #: Strings wp-members-install.php:49
1193
+ msgid "First Name"
1194
+ msgstr "Nome"
1195
+
1196
+ #: wp-members-install.php:50
1197
+ msgid "Last Name"
1198
+ msgstr "Sobrenome"
1199
+
1200
+ #: wp-members-install.php:51
1201
+ msgid "Address 1"
1202
+ msgstr "Endereço"
1203
+
1204
+ #: wp-members-install.php:52
1205
+ msgid "Address 2"
1206
+ msgstr "Complemento"
1207
+
1208
+ #: wp-members-install.php:53
1209
+ msgid "City"
1210
+ msgstr "Cidade"
1211
+
1212
+ #: wp-members-install.php:54
1213
+ msgid "State"
1214
+ msgstr "Estado"
1215
+
1216
+ #: wp-members-install.php:55
1217
+ msgid "Zip"
1218
+ msgstr "CEP"
1219
+
1220
+ #: wp-members-install.php:56
1221
+ msgid "Country"
1222
+ msgstr "País"
1223
+
1224
+ #: wp-members-install.php:57
1225
+ msgid "Day Phone"
1226
+ msgstr "Telefone"
1227
+
1228
+ #: wp-members-install.php:59
1229
+ msgid "Website"
1230
+ msgstr "Website"
1231
+
1232
+ #: wp-members-install.php:60
1233
+ msgid "AIM"
1234
+ msgstr "AIM"
1235
+
1236
+ #: wp-members-install.php:61
1237
+ msgid "Yahoo IM"
1238
+ msgstr "Yahoo IM"
1239
+
1240
+ #: wp-members-install.php:62
1241
+ msgid "Jabber/Google Talk"
1242
+ msgstr "Jabber/Google Talk"
1243
+
1244
+ #: wp-members-install.php:63
1245
+ msgid "Biographical Info"
1246
+ msgstr ""
1247
+
1248
+ #: wp-members-install.php:64 wp-members-install.php:211
1249
+ msgid "TOS"
1250
+ msgstr ""
1251
+
1252
+ #: Error message dialog strings wp-members-install.php:96
1253
+ #, fuzzy
1254
+ msgid ""
1255
+ "This content is restricted to site members. If you are an existing user, "
1256
+ "please log in. New users may register below."
1257
+ msgstr ""
1258
+ "Este conteúdo é restrito a membros do site. Se você é um usuário cadastrado, "
1259
+ "por favor faça login. Novos usuários podem se registrar abaixo."
1260
+
1261
+ #: wp-members-install.php:97
1262
+ msgid "Sorry, that username is taken, please try another."
1263
+ msgstr "Desculpe, este nome de usuário está em uso. Por favor, tente outro."
1264
+
1265
+ #: wp-members-install.php:98
1266
+ msgid ""
1267
+ "Sorry, that email address already has an account.<br />Please try another."
1268
+ msgstr ""
1269
+ "Desculpe, já existe uma conta com este endereço de email.<br />Por favor, "
1270
+ "tente outro."
1271
+
1272
+ #: wp-members-install.php:99
1273
+ #, fuzzy
1274
+ msgid ""
1275
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1276
+ "log in using the password that was emailed to you."
1277
+ msgstr ""
1278
+ "Parabéns! Você foi registrado.<br /><br />Você poderá logar-se usando a "
1279
+ "senha que foi enviada no seu email."
1280
+
1281
+ #: wp-members-install.php:100
1282
+ msgid "Your information was updated!"
1283
+ msgstr "Sua informação foi atualizada!"
1284
+
1285
+ #: wp-members-install.php:101
1286
+ msgid "Passwords did not match.<br /><br />Please try again."
1287
+ msgstr "Senhas não conferem.<br /><br />Por favor, tente novamente."
1288
+
1289
+ #: wp-members-install.php:102
1290
+ msgid ""
1291
+ "Password successfully changed!<br /><br />You will need to re-login with "
1292
+ "your new password."
1293
+ msgstr ""
1294
+ "Senha alterada com sucesso!<br /><br />Você precisará logar-se novamente com "
1295
+ "sua nova senha."
1296
+
1297
+ #: wp-members-install.php:103
1298
+ msgid "Either the username or email address do not exist in our records."
1299
+ msgstr ""
1300
+ "O nome de usuário ou o endereço de email não existe em nossos registros."
1301
+
1302
+ #: wp-members-install.php:104
1303
+ #, fuzzy
1304
+ msgid ""
1305
+ "Password successfully reset!<br /><br />An email containing a new password "
1306
+ "has been sent to the email address on file for your account. You may change "
1307
+ "this random password then re-login with your new password."
1308
+ msgstr ""
1309
+ "Password redefinida com sucesso!<br /><br />Um email com a nova password foi "
1310
+ "enviado para o endereço indicado no registo. "
1311
+
1312
+ #~ msgid "WP-Members"
1313
+ #~ msgstr "WP-Members"
1314
+
1315
+ #~ msgid "Custom"
1316
+ #~ msgstr "Customizado"
1317
+
1318
+ #, fuzzy
1319
+ #~ msgid "edit"
1320
+ #~ msgstr "Edite suas Informações"
1321
+
1322
+ #, fuzzy
1323
+ #~ msgid "Edit"
1324
+ #~ msgstr "Edite suas Informações"
1325
+
1326
+ #~ msgid "Use reCAPTCHA"
1327
+ #~ msgstr "Usar reCAPTCHA"
1328
+
1329
+ #, fuzzy
1330
+ #~ msgid "Pages"
1331
+ #~ msgstr "Bloquear Páginas por Padrão:"
1332
+
1333
+ #, fuzzy
1334
+ #~ msgid "Activate"
1335
+ #~ msgstr "Activar"
1336
+
1337
+ #~ msgid "Username"
1338
+ #~ msgstr "Usuário"
1339
+
1340
+ #~ msgid "Password"
1341
+ #~ msgstr "Senha"
1342
+
1343
+ #~ msgid "Log In"
1344
+ #~ msgstr "Log In"
1345
+
1346
+ #~ msgid "New Password"
1347
+ #~ msgstr "Nova Senha"
1348
+
1349
+ #~ msgid "Repeat Password"
1350
+ #~ msgstr "Repetir Senha"
1351
+
1352
+ #~ msgid "Email"
1353
+ #~ msgstr "eMail"
1354
+
1355
+ #~ msgid "Reset Password"
1356
+ #~ msgstr "Reiniciar Senha"
1357
+
1358
+ #~ msgid "Remember me"
1359
+ #~ msgstr "Lembre-me"
1360
+
1361
+ #, fuzzy
1362
+ #~ msgid "Register"
1363
+ #~ msgstr "Registar-se"
1364
+
1365
+ #, fuzzy
1366
+ #~ msgid ""
1367
+ #~ "WP access restriction and user registration. For more information on "
1368
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1369
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1370
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1371
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1372
+ #~ msgstr ""
1373
+ #~ "Restrição de acesso e registo no WordPress. Para maiores informações e "
1374
+ #~ "para baixar o \"guia de início rápido\" gratuito, visite <a href=\"http://"
1375
+ #~ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. Veja "
1376
+ #~ "uma demo em <a href=\"http://butlerblog.com/wpmembers\">http://butlerblog."
1377
+ #~ "com/wpmembers</a>. WP-Members(tm) é uma marca registrada de butlerblog."
1378
+ #~ "com."
1379
+
1380
+ #~ msgid "Turn off registration"
1381
+ #~ msgstr "Desativar Registro de Usuário:"
1382
+
1383
+ #~ msgid "Turns off the registration process, only allows login"
1384
+ #~ msgstr "Desativa o processo de registro, permite somente logins."
1385
+
1386
+ #, fuzzy
1387
+ #~ msgid ""
1388
+ #~ "Settings were saved, but you have required fields that are not set to "
1389
+ #~ "display!"
1390
+ #~ msgstr ""
1391
+ #~ "Configurações foram salvas, mas existe um campo requerido que não está "
1392
+ #~ "marcado para exibição."
1393
+
1394
+ #, fuzzy
1395
+ #~ msgid ""
1396
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1397
+ #~ "fields are validated. However, you should still check that your "
1398
+ #~ "displayed and required fields match up. Mismatched fields are "
1399
+ #~ "highlighted below."
1400
+ #~ msgstr ""
1401
+ #~ "Nota: Isto não irá causar um erro para o usuário, uma vez que somente "
1402
+ #~ "campos exibidos são validados. Entretanto, você deveria corrigir isto de "
1403
+ #~ "\r\n"
1404
+ #~ "\t\t\t\tforma que haja coerência nos campos marcados para exibição e "
1405
+ #~ "também como obrigatórios. Os campos com problema estão listados abaixo."
1406
+
1407
+ #, fuzzy
1408
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1409
+ #~ msgstr "Se você achou este plugin útil, por favor considere fazer uma"
1410
+
1411
+ #, fuzzy
1412
+ #~ msgid "PayPal Settings"
1413
+ #~ msgstr "Configurações"
1414
+
1415
+ #, fuzzy
1416
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1417
+ #~ msgstr "Se você achou este plugin útil, por favor considere fazer uma"
1418
+
1419
+ #, fuzzy
1420
+ #~ msgid "WP-Members Users"
1421
+ #~ msgstr "WP-Members"
1422
+
1423
+ #, fuzzy
1424
+ #~ msgid "Indicates a required field"
1425
+ #~ msgstr "é um campo obrigatório"
1426
+
1427
+ #~ msgid "Login"
1428
+ #~ msgstr "Login"
1429
+
1430
+ #, fuzzy
1431
+ #~ msgid "login"
1432
+ #~ msgstr "Login"
1433
+
1434
+ #~ msgid "etc."
1435
+ #~ msgstr "etc."
1436
+
1437
+ #~ msgid "Settings saved."
1438
+ #~ msgstr "Configurações salvas."
1439
+
1440
+ #~ msgid "If you find this plugin useful,"
1441
+ #~ msgstr "Se você achou este plugin útil,"
1442
+
1443
+ #~ msgid "please consider making a donation"
1444
+ #~ msgstr "por favor, considere fazer uma doação:"
1445
+
1446
+ #~ msgid "donation"
1447
+ #~ msgstr "doação"
1448
+
1449
+ #~ msgid "WP-Members is a trademark of"
1450
+ #~ msgstr "WP-Members é marca registrada de"
1451
+
1452
+ #~ msgid "reCAPTCHA website"
1453
+ #~ msgstr "site do reCAPTCHA"
1454
+
1455
+ #~ msgid "free reCAPTCHA key"
1456
+ #~ msgstr "chave reCAPTCHA gratuita"
1457
+
1458
+ #~ msgid "Sorry,"
1459
+ #~ msgstr "Desculpe,"
1460
+
1461
+ #~ msgid "Bio"
1462
+ #~ msgstr "Detalhes"
1463
+
1464
+ #~ msgid "WP Members"
1465
+ #~ msgstr "WP Members"
1466
+
1467
+ #~ msgid "http://butlerblog.com/wp-members/"
1468
+ #~ msgstr "http://butlerblog.com/wp-members/"
1469
+
1470
+ #~ msgid "Chad Butler"
1471
+ #~ msgstr "Chad Butler"
1472
+
1473
+ #~ msgid "http://butlerblog.com/"
1474
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-pt_PT.mo ADDED
Binary file
lang/wp-members-pt_PT.po ADDED
@@ -0,0 +1,1460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.3\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Brazilian-portuguese <joelima1310@gmail.com>\n"
9
+ "Language: pt_PT\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-SourceCharset: UTF-8\n"
14
+ "X-Generator: Poedit 1.6.4\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+
17
+ #: admin/admin.php:60 admin/admin.php:129
18
+ msgid "Settings"
19
+ msgstr "Configurações"
20
+
21
+ #: admin/admin.php:187
22
+ msgid "Options"
23
+ msgstr "Opções"
24
+
25
+ #: admin/admin.php:188
26
+ msgid "Fields"
27
+ msgstr "Campos"
28
+
29
+ #: admin/admin.php:189
30
+ #, fuzzy
31
+ msgid "Dialogs"
32
+ msgstr "Notificações de Atualização"
33
+
34
+ #: admin/admin.php:190
35
+ #, fuzzy
36
+ msgid "Emails"
37
+ msgstr "eMail"
38
+
39
+ #: admin/dialogs.php:109
40
+ msgid ""
41
+ "Your WP settings allow anyone to register - this is not the recommended "
42
+ "setting."
43
+ msgstr ""
44
+ "Suas configurações do WordPress permitem que qualquer um se registre. Esta "
45
+ "não é uma configuração recomendada."
46
+
47
+ #: admin/dialogs.php:110
48
+ #, php-format
49
+ msgid ""
50
+ "You can %s change this here %s making sure the box next to \"Anyone can "
51
+ "register\" is unchecked."
52
+ msgstr ""
53
+
54
+ #: admin/dialogs.php:111
55
+ msgid ""
56
+ "This setting allows a link on the /wp-login.php page to register using the "
57
+ "WP native registration process thus circumventing any registration you are "
58
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
59
+ "but most users should uncheck this option. If you do not change this "
60
+ "setting, you can choose to ignore these warning messages under WP-Members "
61
+ "Settings."
62
+ msgstr ""
63
+ "Esta configuração permite o registro de usuários através de um link na "
64
+ "página /wp-login.php usando o processo nativo de registro do WordPress, "
65
+ "contornando assim qualquer registro de usuário que você esteja realizando "
66
+ "através do WP-Members. Em alguns casos, isso pode atender os usuários que "
67
+ "querem/precisam, mas a maioria dos usuários deve desmarcar essa opção. Se "
68
+ "você não quiser mudar esta configuração, pode optar por ignorar esta "
69
+ "mensagem de aviso nas Opções de Gerenciamento do WP-Membros."
70
+
71
+ #: admin/dialogs.php:117
72
+ msgid ""
73
+ "Your WP settings allow anyone to comment - this is not the recommended "
74
+ "setting."
75
+ msgstr ""
76
+ "Suas configurações do WordPress permitem que qualquer possa comentar. Esta "
77
+ "não é uma configuração recomendada."
78
+
79
+ #: admin/dialogs.php:118
80
+ #, php-format
81
+ msgid ""
82
+ "You can %s change this here %s by checking the box next to \"Users must be "
83
+ "registered and logged in to comment.\""
84
+ msgstr ""
85
+
86
+ #: admin/dialogs.php:119
87
+ msgid ""
88
+ "This setting allows any users to comment, whether or not they are "
89
+ "registered. Depending on how you are using WP-Members will determine whether "
90
+ "you should change this setting or not. If you do not change this setting, "
91
+ "you can choose to ignore these warning messages under WP-Members Settings."
92
+ msgstr ""
93
+ "Esta configuração permite a qualquer usuário comentar, independente de estar "
94
+ "registrado ou não. A forma como você está utilizando o WP-Members irá "
95
+ "determinar se você deve ou não alterar esta configuração. Se você não quiser "
96
+ "mudar esta configuração, pode optar por ignorar esta mensagem de aviso nas "
97
+ "Opções de Gerenciamento do WP-Membros."
98
+
99
+ #: admin/dialogs.php:125
100
+ msgid ""
101
+ "Your WP settings allow full text rss feeds - this is not the recommended "
102
+ "setting."
103
+ msgstr ""
104
+ "Suas configurações do WordPress permitem feeds RSS com texto completo. Esta "
105
+ "não é uma configuração recomendada."
106
+
107
+ #: admin/dialogs.php:126
108
+ #, php-format
109
+ msgid ""
110
+ "You can %s change this here %s by changing \"For each article in a feed, show"
111
+ "\" to \"Summary.\""
112
+ msgstr ""
113
+
114
+ #: admin/dialogs.php:127
115
+ msgid ""
116
+ "Leaving this set to full text allows anyone to read your protected content "
117
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
118
+ "only show summary text."
119
+ msgstr ""
120
+ "Deixando esta configuração ajustada para texto completo, permitirá a "
121
+ "qualquer um ler seu conteúdo protegido num leitor RSS. Alterar isto para "
122
+ "\"Sumário\" assegura que seus feeds vão exibir somente um resumo."
123
+
124
+ #: admin/dialogs.php:133
125
+ msgid "You have set WP-Members to hold registrations for approval"
126
+ msgstr ""
127
+ "Você ajustou o WP-Members para interceptar seus registros de usuário para "
128
+ "aprovação."
129
+
130
+ #: admin/dialogs.php:134
131
+ msgid ""
132
+ "but you have not changed the default message for \"Registration Completed\" "
133
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
134
+ "message to let users know they are pending approval."
135
+ msgstr ""
136
+
137
+ #: admin/dialogs.php:140
138
+ msgid "You have set WP-Members to turn off the registration process"
139
+ msgstr ""
140
+ "Você ajustou o WP-Members para desativar o processo de registro de novos "
141
+ "usuários."
142
+
143
+ #: admin/dialogs.php:141
144
+ msgid ""
145
+ "but you also set to moderate and/or email admin new registrations. You will "
146
+ "need to set up a registration page for users to register."
147
+ msgstr ""
148
+
149
+ #: admin/dialogs.php:147
150
+ msgid "You have turned on reCAPTCHA"
151
+ msgstr ""
152
+
153
+ #: admin/dialogs.php:148
154
+ msgid ""
155
+ "but you have not entered API keys. You will need both a public and private "
156
+ "key. The CAPTCHA will not display unless a valid API key is included."
157
+ msgstr ""
158
+
159
+ #: admin/dialogs.php:171
160
+ msgid "Version:"
161
+ msgstr "Versão:"
162
+
163
+ #: admin/dialogs.php:172
164
+ #, fuzzy
165
+ msgid "Quick Start Guide"
166
+ msgstr ""
167
+ "Restrição de acesso e registo no WordPress. Para maiores informações e para "
168
+ "baixar o \"guia de início rápido\" gratuito, visite <a href=\"http://"
169
+ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. Veja uma "
170
+ "demo em <a href=\"http://butlerblog.com/wpmembers\">http://butlerblog.com/"
171
+ "wpmembers</a>. WP-Members(tm) é uma marca registrada de butlerblog.com."
172
+
173
+ #: admin/dialogs.php:173
174
+ #, fuzzy
175
+ msgid "Online User Guide"
176
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
177
+
178
+ #: admin/dialogs.php:174
179
+ msgid "FAQs"
180
+ msgstr ""
181
+
182
+ #: admin/dialogs.php:181
183
+ #, fuzzy
184
+ msgid "Thank you for using WP-Members"
185
+ msgstr "Obrigado por usar o WP-Members! Você está a utilizar a versão"
186
+
187
+ #: admin/dialogs.php:182
188
+ msgid "A plugin developed by"
189
+ msgstr ""
190
+
191
+ #: admin/dialogs.php:183
192
+ msgid "Follow"
193
+ msgstr "Seguir"
194
+
195
+ #: admin/dialogs.php:200 admin/dialogs.php:204
196
+ msgid "Latest from RocketGeek"
197
+ msgstr ""
198
+
199
+ #: admin/dialogs.php:221 admin/dialogs.php:234
200
+ msgid "Latest from ButlerBlog"
201
+ msgstr ""
202
+
203
+ #: admin/post.php:36 admin/post.php:38
204
+ #, fuzzy
205
+ msgid "Block"
206
+ msgstr "Bloquear Posts por Padrão:"
207
+
208
+ #: admin/post.php:37 admin/post.php:39
209
+ msgid "Unblock"
210
+ msgstr ""
211
+
212
+ #: admin/post.php:120
213
+ #, fuzzy, php-format
214
+ msgid "%s posts %sed."
215
+ msgstr "Bloquear Posts por Padrão:"
216
+
217
+ #: admin/post.php:138
218
+ #, fuzzy
219
+ msgid "Post Restriction"
220
+ msgstr "Moderar Registo:"
221
+
222
+ #: admin/post.php:145
223
+ #, fuzzy
224
+ msgid "Page Restriction"
225
+ msgstr "Moderar Registo:"
226
+
227
+ #: admin/post.php:263 admin/post.php:295
228
+ #, fuzzy
229
+ msgid "Unblocked?"
230
+ msgstr ""
231
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
232
+
233
+ #: admin/post.php:263 admin/post.php:295
234
+ #, fuzzy
235
+ msgid "Blocked?"
236
+ msgstr ""
237
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
238
+
239
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
240
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
241
+ msgid "Need help?"
242
+ msgstr ""
243
+
244
+ #: admin/tab-captcha.php:46
245
+ msgid "Manage reCAPTCHA Options"
246
+ msgstr "Gerenciar Opções do reCAPTCHA"
247
+
248
+ #: admin/tab-captcha.php:60
249
+ msgid ""
250
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
251
+ "while blocking spam on your blog."
252
+ msgstr ""
253
+ "reCAPTCHA é um serviço de CAPTCHA gratuito e acessível que ajuda a "
254
+ "digitalizar livros enquanto bloqueia spam no seu blog."
255
+
256
+ #: admin/tab-captcha.php:61
257
+ #, fuzzy, php-format
258
+ msgid ""
259
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
260
+ "that they are a human. This verifies that they are not a spambot while also "
261
+ "correcting the automatic scans of old books. So you get less spam, and the "
262
+ "world gets accurately digitized books. Everybody wins! For details, visit "
263
+ "the %s reCAPTCHA website%s"
264
+ msgstr ""
265
+ "reCAPTCHA solicita aos comentaristas que redigitem duas palavras escaneadas "
266
+ "de um livro para provar que eles são humanos. Isto prova que eles não são um "
267
+ "\"spambot\" enquanto corrige os escaneamentos automáticos de velhos livros. "
268
+ "Desda forma, você obtém menos spam e o mundo recebe melhores digitalizações "
269
+ "de livros. Todo mundo ganha! Para detalhes, visite o"
270
+
271
+ #: admin/tab-captcha.php:66
272
+ msgid "reCAPTCHA Keys"
273
+ msgstr "Chaves do reCAPTCHA"
274
+
275
+ #: admin/tab-captcha.php:68
276
+ #, fuzzy, php-format
277
+ msgid ""
278
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
279
+ "key. You can sign up for a %s free reCAPTCHA key%s"
280
+ msgstr ""
281
+ "reCAPTCHA exige uma Chave API (\"API Key\"), que consiste em um par de "
282
+ "chaves \"pública\" e \"privada\". Você pode se registrar para uma"
283
+
284
+ #: admin/tab-captcha.php:69
285
+ msgid "Public Key"
286
+ msgstr "Chave Pública"
287
+
288
+ #: admin/tab-captcha.php:70
289
+ msgid "Private Key"
290
+ msgstr "Chave Privada"
291
+
292
+ #: admin/tab-captcha.php:74
293
+ msgid "Choose Theme"
294
+ msgstr "Selecione o Tema"
295
+
296
+ #: admin/tab-captcha.php:77
297
+ msgid "Red"
298
+ msgstr "Vermelho"
299
+
300
+ #: admin/tab-captcha.php:78
301
+ msgid "White"
302
+ msgstr "Branco"
303
+
304
+ #: admin/tab-captcha.php:79
305
+ msgid "Black Glass"
306
+ msgstr "Vidro Fumê"
307
+
308
+ #: admin/tab-captcha.php:80
309
+ msgid "Clean"
310
+ msgstr "Limpo"
311
+
312
+ #: admin/tab-captcha.php:112
313
+ msgid "Characters for image"
314
+ msgstr ""
315
+
316
+ #: admin/tab-captcha.php:116
317
+ msgid "Number of characters"
318
+ msgstr ""
319
+
320
+ #: admin/tab-captcha.php:120
321
+ msgid "Image dimensions"
322
+ msgstr ""
323
+
324
+ #: admin/tab-captcha.php:124
325
+ msgid "Font color of characters"
326
+ msgstr ""
327
+
328
+ #: admin/tab-captcha.php:128
329
+ msgid "Background color of image"
330
+ msgstr ""
331
+
332
+ #: admin/tab-captcha.php:132
333
+ msgid "Font size"
334
+ msgstr ""
335
+
336
+ #: admin/tab-captcha.php:136
337
+ msgid "Width between characters"
338
+ msgstr ""
339
+
340
+ #: admin/tab-captcha.php:140
341
+ #, fuzzy
342
+ msgid "Image type"
343
+ msgstr "Campo"
344
+
345
+ #: admin/tab-captcha.php:154
346
+ msgid ""
347
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
348
+ "installed and activated."
349
+ msgstr ""
350
+
351
+ #: admin/tab-captcha.php:166
352
+ #, fuzzy
353
+ msgid "Update CAPTCHA Settings"
354
+ msgstr "Atualizar Configuração do reCAPTCHA"
355
+
356
+ #: admin/tab-captcha.php:230
357
+ #, fuzzy
358
+ msgid "CAPTCHA was updated for WP-Members"
359
+ msgstr "WP-Members"
360
+
361
+ #: admin/tab-dialogs.php:29
362
+ msgid "Restricted post (or page), displays above the login/registration form"
363
+ msgstr ""
364
+ "Aviso para posts ou páginas restritos, exibido acima do formulário de login:"
365
+
366
+ #: admin/tab-dialogs.php:30
367
+ msgid "Username is taken"
368
+ msgstr "Username já registado"
369
+
370
+ #: admin/tab-dialogs.php:31
371
+ msgid "Email is registered"
372
+ msgstr "Email já registado"
373
+
374
+ #: admin/tab-dialogs.php:32
375
+ msgid "Registration completed"
376
+ msgstr "Registo completo"
377
+
378
+ #: admin/tab-dialogs.php:33
379
+ msgid "User update"
380
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
381
+
382
+ #: admin/tab-dialogs.php:34
383
+ msgid "Passwords did not match"
384
+ msgstr "As passwords não coincidem"
385
+
386
+ #: admin/tab-dialogs.php:35
387
+ msgid "Password changes"
388
+ msgstr "Aviso de confirmação de alteração de senha:"
389
+
390
+ #: admin/tab-dialogs.php:36
391
+ msgid "Username or email do not exist when trying to reset forgotten password"
392
+ msgstr ""
393
+ "Aviso para nome de usuário ou email não encontrado durante tentativa de "
394
+ "reiniciar uma senha esquecida:"
395
+
396
+ #: admin/tab-dialogs.php:37
397
+ msgid "Password reset"
398
+ msgstr "Redefinição de password"
399
+
400
+ #: admin/tab-dialogs.php:54
401
+ msgid "Dialogs and Error Messages"
402
+ msgstr "Notificações e Mensagens de Erro"
403
+
404
+ #: admin/tab-dialogs.php:56
405
+ #, fuzzy, php-format
406
+ msgid ""
407
+ "You can customize the text for dialogs and error messages. Simple HTML is "
408
+ "allowed %s etc."
409
+ msgstr "Você pode customizar os textos a seguir. HTML simples é permitido."
410
+
411
+ #: admin/tab-dialogs.php:69
412
+ msgid "Terms of Service (TOS)"
413
+ msgstr ""
414
+
415
+ #: admin/tab-dialogs.php:76
416
+ msgid "Update Dialogs"
417
+ msgstr "Notificações de Atualização"
418
+
419
+ #: admin/tab-dialogs.php:115
420
+ #, fuzzy
421
+ msgid "WP-Members dialogs were updated"
422
+ msgstr "Campos Adicionais do WP-Members"
423
+
424
+ #: admin/tab-emails.php:30
425
+ msgid "New Registration"
426
+ msgstr "Moderar Registo:"
427
+
428
+ #: admin/tab-emails.php:34
429
+ msgid "Registration is Moderated"
430
+ msgstr "Aviso de processo de registo completo:"
431
+
432
+ #: admin/tab-emails.php:35
433
+ #, fuzzy
434
+ msgid "Registration is Moderated, User is Approved"
435
+ msgstr "Aviso de processo de registo completo:"
436
+
437
+ #: admin/tab-emails.php:40
438
+ msgid "Password Reset"
439
+ msgstr "Aviso de confirmação de redefinição de password:"
440
+
441
+ #: admin/tab-emails.php:45
442
+ #, fuzzy
443
+ msgid "Admin Notification"
444
+ msgstr "Notificar Administrador:"
445
+
446
+ #: admin/tab-emails.php:50
447
+ msgid "Email Signature"
448
+ msgstr "Aviso de email já registado:"
449
+
450
+ #: admin/tab-emails.php:57
451
+ #, fuzzy
452
+ msgid "Email Messages"
453
+ msgstr "eMail"
454
+
455
+ #: admin/tab-emails.php:60
456
+ msgid "You can customize the content of the emails sent by the plugin."
457
+ msgstr ""
458
+
459
+ #: admin/tab-emails.php:62
460
+ msgid "A list of shortcodes is available here."
461
+ msgstr ""
462
+
463
+ #: admin/tab-emails.php:69
464
+ #, fuzzy
465
+ msgid "Set a custom email address"
466
+ msgstr "Inseriu um username ou password inválidos."
467
+
468
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
469
+ msgid "(optional)"
470
+ msgstr ""
471
+
472
+ #: admin/tab-emails.php:73
473
+ #, fuzzy
474
+ msgid "Set a custom email name"
475
+ msgstr "Inseriu um username ou password inválidos."
476
+
477
+ #: admin/tab-emails.php:84
478
+ msgid "Subject"
479
+ msgstr ""
480
+
481
+ #: admin/tab-emails.php:88
482
+ msgid "Body"
483
+ msgstr ""
484
+
485
+ #: admin/tab-emails.php:105
486
+ #, fuzzy
487
+ msgid "Update Emails"
488
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
489
+
490
+ #: admin/tab-emails.php:161
491
+ #, fuzzy
492
+ msgid "WP-Members emails were updated"
493
+ msgstr "WP-Members possui direitos autorais"
494
+
495
+ #: admin/tab-fields.php:166
496
+ #, fuzzy
497
+ msgid "WP-Members fields were updated"
498
+ msgstr "Campos Adicionais do WP-Members"
499
+
500
+ #: admin/tab-fields.php:176
501
+ msgid "Field Label is required for adding a new field. Nothing was updated."
502
+ msgstr ""
503
+
504
+ #: admin/tab-fields.php:177
505
+ msgid "Option Name is required for adding a new field. Nothing was updated."
506
+ msgstr ""
507
+
508
+ #: admin/tab-fields.php:184
509
+ msgid "A field with that option name already exists"
510
+ msgstr ""
511
+
512
+ #: admin/tab-fields.php:201
513
+ msgid "Checked value is required for checkboxes. Nothing was updated."
514
+ msgstr ""
515
+
516
+ #: admin/tab-fields.php:223
517
+ #, fuzzy
518
+ msgid "field was added"
519
+ msgstr "Campo"
520
+
521
+ #: admin/tab-fields.php:241
522
+ #, fuzzy
523
+ msgid "field was updated"
524
+ msgstr "Campo"
525
+
526
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
527
+ #, fuzzy
528
+ msgid "Edit Field"
529
+ msgstr "Edite suas Informações"
530
+
531
+ #: admin/tab-fields.php:289
532
+ #, fuzzy
533
+ msgid "Add a Field"
534
+ msgstr "Campo"
535
+
536
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
537
+ msgid "Field Label"
538
+ msgstr "Campo"
539
+
540
+ #: admin/tab-fields.php:297
541
+ msgid "The name of the field as it will be displayed to the user."
542
+ msgstr ""
543
+
544
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
545
+ #, fuzzy
546
+ msgid "Option Name"
547
+ msgstr "Nome"
548
+
549
+ #: admin/tab-fields.php:306
550
+ msgid ""
551
+ "The database meta value for the field. It must be unique and contain no "
552
+ "spaces (underscores are ok)."
553
+ msgstr ""
554
+
555
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
556
+ #, fuzzy
557
+ msgid "Field Type"
558
+ msgstr "Campo"
559
+
560
+ #: admin/tab-fields.php:316
561
+ #, fuzzy
562
+ msgid "text"
563
+ msgstr ""
564
+ "Suas configurações do WordPress permitem feeds RSS com texto completo. Esta "
565
+ "não é uma configuração recomendada."
566
+
567
+ #: admin/tab-fields.php:317
568
+ msgid "textarea"
569
+ msgstr ""
570
+
571
+ #: admin/tab-fields.php:318
572
+ #, fuzzy
573
+ msgid "checkbox"
574
+ msgstr "Campos Adicionais do WP-Members"
575
+
576
+ #: admin/tab-fields.php:319
577
+ #, fuzzy
578
+ msgid "dropdown"
579
+ msgstr "Campos Adicionais do WP-Members"
580
+
581
+ #: admin/tab-fields.php:320
582
+ msgid "password"
583
+ msgstr "Password"
584
+
585
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
586
+ msgid "Display?"
587
+ msgstr "Exibir?"
588
+
589
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
590
+ msgid "Required?"
591
+ msgstr "Requerido?"
592
+
593
+ #: admin/tab-fields.php:334
594
+ #, fuzzy
595
+ msgid "Additional information for checkbox fields"
596
+ msgstr "Campos Adicionais do WP-Members"
597
+
598
+ #: admin/tab-fields.php:337
599
+ #, fuzzy
600
+ msgid "Checked by default?"
601
+ msgstr "Bloquear Posts por Padrão:"
602
+
603
+ #: admin/tab-fields.php:341
604
+ #, fuzzy
605
+ msgid "Stored value if checked:"
606
+ msgstr "Bloquear Posts por Padrão:"
607
+
608
+ #: admin/tab-fields.php:347
609
+ #, fuzzy
610
+ msgid "Additional information for dropdown fields"
611
+ msgstr "Campos Adicionais do WP-Members"
612
+
613
+ #: admin/tab-fields.php:350
614
+ #, fuzzy
615
+ msgid "For dropdown, array of values:"
616
+ msgstr "Campos Adicionais do WP-Members"
617
+
618
+ #: admin/tab-fields.php:375
619
+ msgid "Options should be Option Name|option_value,"
620
+ msgstr ""
621
+
622
+ #: admin/tab-fields.php:379
623
+ msgid "Visit plugin site for more information"
624
+ msgstr ""
625
+
626
+ #: admin/tab-fields.php:385
627
+ #, fuzzy
628
+ msgid "Add Field"
629
+ msgstr "Campo"
630
+
631
+ #: admin/tab-fields.php:407
632
+ msgid "Manage Fields"
633
+ msgstr "Gerenciar Campos"
634
+
635
+ #: admin/tab-fields.php:409
636
+ msgid ""
637
+ "Determine which fields will display and which are required. This includes "
638
+ "all fields, both native WP fields and WP-Members custom fields."
639
+ msgstr ""
640
+ "Determine quais campos serão exibidos e quais são obrigatórios. Isto inclui "
641
+ "todos os campos, tanto os nativos do WordPress quanto os inseridos pelo WP-"
642
+ "Members."
643
+
644
+ #: admin/tab-fields.php:410
645
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
646
+ msgstr "(Nota: Campo de email é sempre obrigatório e não pode ser alterado.)"
647
+
648
+ #: admin/tab-fields.php:415
649
+ #, fuzzy
650
+ msgid "Add/Delete"
651
+ msgstr "Campo"
652
+
653
+ #: admin/tab-fields.php:421
654
+ #, fuzzy
655
+ msgid "Checked?"
656
+ msgstr "Bloquear Posts por Padrão:"
657
+
658
+ #: admin/tab-fields.php:423
659
+ #, fuzzy
660
+ msgid "Users Screen"
661
+ msgstr "Log In"
662
+
663
+ #: admin/tab-fields.php:435
664
+ msgid "Delete"
665
+ msgstr ""
666
+
667
+ #: admin/tab-fields.php:447
668
+ msgid "(Email cannot be removed)"
669
+ msgstr "(O campo de email é obrigatório e não pode ser removido)"
670
+
671
+ #: admin/tab-fields.php:467
672
+ #, fuzzy
673
+ msgid "Registration Date"
674
+ msgstr "Registo completo"
675
+
676
+ #: admin/tab-fields.php:470
677
+ #, fuzzy
678
+ msgid "native"
679
+ msgstr ""
680
+ "Determine quais campos serão exibidos e quais são obrigatórios. Isto inclui "
681
+ "todos os campos, tanto os nativos do WordPress quanto os inseridos pelo WP-"
682
+ "Members."
683
+
684
+ #: admin/tab-fields.php:480
685
+ #, fuzzy
686
+ msgid "Active"
687
+ msgstr "Activar"
688
+
689
+ #: admin/tab-fields.php:492
690
+ #, fuzzy
691
+ msgid "Registration IP"
692
+ msgstr "Registo completo"
693
+
694
+ #: admin/tab-fields.php:527
695
+ msgid "Update Fields"
696
+ msgstr "Atualizar Campos"
697
+
698
+ #: admin/tab-options.php:48
699
+ msgid "Manage Options"
700
+ msgstr "Opções de Gerenciamento"
701
+
702
+ #: admin/tab-options.php:54
703
+ msgid "Block Posts by default"
704
+ msgstr "Bloquear Posts por Padrão:"
705
+
706
+ #: admin/tab-options.php:54
707
+ msgid ""
708
+ "Note: Posts can still be individually blocked or unblocked at the article "
709
+ "level"
710
+ msgstr ""
711
+ "Nota: Posts ainda podem ser bloqueados ou desbloqueados individualmente."
712
+
713
+ #: admin/tab-options.php:55
714
+ msgid "Block Pages by default"
715
+ msgstr "Bloquear Páginas por Padrão:"
716
+
717
+ #: admin/tab-options.php:55
718
+ msgid ""
719
+ "Note: Pages can still be individually blocked or unblocked at the article "
720
+ "level"
721
+ msgstr ""
722
+ "Nota: Páginas ainda podem ser bloqueadas e desbloqueadas individualmente."
723
+
724
+ #: admin/tab-options.php:56
725
+ msgid "Show excerpts"
726
+ msgstr "Exibir Trechos:"
727
+
728
+ #: admin/tab-options.php:56
729
+ msgid ""
730
+ "Shows excerpted content above the login/registration on both Posts and Pages"
731
+ msgstr "Exibir trechos de conteúdo bloqueado em Posts e Páginas."
732
+
733
+ #: admin/tab-options.php:57
734
+ msgid "Notify admin"
735
+ msgstr "Notificar Administrador:"
736
+
737
+ #: admin/tab-options.php:57
738
+ #, fuzzy, php-format
739
+ msgid "Notify %s for each new registration? %s"
740
+ msgstr "Enviar email para administrador para cada novo registro?"
741
+
742
+ #: admin/tab-options.php:58
743
+ msgid "Moderate registration"
744
+ msgstr "Moderar Registro:"
745
+
746
+ #: admin/tab-options.php:58
747
+ msgid "Holds new registrations for admin approval"
748
+ msgstr "Intercepta novos registros para aprovação do administrador."
749
+
750
+ #: admin/tab-options.php:91
751
+ #, fuzzy
752
+ msgid "Enable CAPTCHA"
753
+ msgstr "Ativa a solicitação de CAPTCHA durante o processo de registro."
754
+
755
+ #: admin/tab-options.php:59
756
+ msgid "Turns on CAPTCHA for registration"
757
+ msgstr "Ativa a solicitação de CAPTCHA durante o processo de registro."
758
+
759
+ #: admin/tab-options.php:60
760
+ #, fuzzy
761
+ msgid "Hide registration"
762
+ msgstr "Registo completo"
763
+
764
+ #: admin/tab-options.php:60
765
+ msgid "Removes the registration form from blocked content"
766
+ msgstr ""
767
+
768
+ #: admin/tab-options.php:62
769
+ msgid "Time-based expiration"
770
+ msgstr "Expirar Acesso:"
771
+
772
+ #: admin/tab-options.php:62
773
+ msgid "Allows for access to expire"
774
+ msgstr "Permite que o acesso expire por tempo."
775
+
776
+ #: admin/tab-options.php:63
777
+ msgid "Trial period"
778
+ msgstr "Período de Experiência:"
779
+
780
+ #: admin/tab-options.php:63
781
+ msgid "Allows for a trial period"
782
+ msgstr "Permite período de experiência."
783
+
784
+ #: admin/tab-options.php:64
785
+ msgid "Ignore warning messages"
786
+ msgstr "Ignorar Mensagens de Advertência:"
787
+
788
+ #: admin/tab-options.php:64
789
+ msgid "Ignores WP-Members warning messages in the admin panel"
790
+ msgstr ""
791
+ "Ignora as mensagens de advertência do WP-Members no painel administrativo."
792
+
793
+ #: admin/tab-options.php:81
794
+ msgid "Attribution"
795
+ msgstr ""
796
+
797
+ #: admin/tab-options.php:83
798
+ msgid ""
799
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
800
+ msgstr ""
801
+
802
+ #: admin/tab-options.php:87
803
+ #, fuzzy
804
+ msgid "Auto Excerpt:"
805
+ msgstr "Exibir Trechos:"
806
+
807
+ #: admin/tab-options.php:88
808
+ #, fuzzy
809
+ msgid "Number of words in excerpt:"
810
+ msgstr "Exibir Trechos:"
811
+
812
+ #: admin/tab-options.php:88 admin/tab-options.php:108
813
+ #: admin/tab-options.php:118 admin/tab-options.php:132
814
+ msgid "Optional"
815
+ msgstr ""
816
+
817
+ #: admin/tab-options.php:88
818
+ #, fuzzy
819
+ msgid "Automatically creates an excerpt"
820
+ msgstr "Exibir Trechos:"
821
+
822
+ #: admin/tab-options.php:103
823
+ #, fuzzy
824
+ msgid "User Profile Page:"
825
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
826
+
827
+ #: admin/tab-options.php:106
828
+ msgid "For creating a forgot password link in the login form"
829
+ msgstr ""
830
+
831
+ #: admin/tab-options.php:113
832
+ #, fuzzy
833
+ msgid "Register Page:"
834
+ msgstr "Registar-se"
835
+
836
+ #: admin/tab-options.php:116
837
+ msgid "For creating a register link in the login form"
838
+ msgstr ""
839
+
840
+ #: admin/tab-options.php:126
841
+ msgid "Select a stylesheet or specify a custom stylesheet below"
842
+ msgstr ""
843
+
844
+ #: admin/tab-options.php:131
845
+ #, fuzzy
846
+ msgid "Custom Stylesheet:"
847
+ msgstr "Customizado"
848
+
849
+ #: admin/tab-options.php:136
850
+ #, fuzzy
851
+ msgid "Update Settings"
852
+ msgstr "Atualizar Configuração do reCAPTCHA"
853
+
854
+ #: admin/tab-options.php:246
855
+ #, fuzzy
856
+ msgid "WP-Members settings were updated"
857
+ msgstr "Campos Adicionais do WP-Members"
858
+
859
+ #: admin/tab-options.php:296
860
+ #, fuzzy
861
+ msgid "Select a page"
862
+ msgstr "Moderar Registo:"
863
+
864
+ #: admin/tab-options.php:304
865
+ msgid "USE CUSTOM URL BELOW"
866
+ msgstr ""
867
+
868
+ #: admin/user-export.php:57 admin/user-export.php:172
869
+ msgid "Activated?"
870
+ msgstr "Ativo?"
871
+
872
+ #: admin/user-export.php:61 admin/user-export.php:175
873
+ msgid "Subscription"
874
+ msgstr "Subscrição"
875
+
876
+ #: admin/user-export.php:61 admin/user-export.php:175
877
+ msgid "Expires"
878
+ msgstr ""
879
+
880
+ #: admin/user-export.php:64 admin/user-export.php:178
881
+ msgid "Registered"
882
+ msgstr "Registado"
883
+
884
+ #: admin/user-export.php:65 admin/user-export.php:179
885
+ #, fuzzy
886
+ msgid "IP"
887
+ msgstr "Registo completo"
888
+
889
+ #: admin/user-profile.php:46
890
+ msgid "WP-Members Additional Fields"
891
+ msgstr "Campos Adicionais do WP-Members"
892
+
893
+ #: admin/user-profile.php:66 native-registration.php:36
894
+ #: native-registration.php:159 users.php:62
895
+ msgid "(required)"
896
+ msgstr "Requerido?"
897
+
898
+ #: admin/user-profile.php:98
899
+ msgid "Activate this user?"
900
+ msgstr "Ativar usuário?"
901
+
902
+ #: admin/user-profile.php:103
903
+ msgid "Reactivate this user?"
904
+ msgstr "Re-ativar este utilizador?"
905
+
906
+ #: admin/user-profile.php:108
907
+ msgid "Deactivate this user?"
908
+ msgstr "Desativar utilizador?"
909
+
910
+ #: admin/user-profile.php:129
911
+ #, fuzzy
912
+ msgid "IP @ registration"
913
+ msgstr "Registo completo"
914
+
915
+ #: admin/users.php:45 admin/users.php:49
916
+ msgid "Export"
917
+ msgstr ""
918
+
919
+ #: admin/users.php:50 admin/users.php:91
920
+ #, fuzzy
921
+ msgid "Export All Users"
922
+ msgstr "Log In"
923
+
924
+ #: forms.php:95
925
+ #, fuzzy
926
+ msgid "Existing Users Log In"
927
+ msgstr "Log In"
928
+
929
+ #: forms.php:161 wp-members-dialogs.php:192
930
+ msgid "Change Password"
931
+ msgstr "Alterar password"
932
+
933
+ #: forms.php:163
934
+ msgid "Update Password"
935
+ msgstr "Atualizar password"
936
+
937
+ #: forms.php:227
938
+ msgid "Reset Forgotten Password"
939
+ msgstr "Redefinir password esquecida"
940
+
941
+ #: forms.php:403
942
+ msgid "Forgot password?"
943
+ msgstr "Esqueceu a password?"
944
+
945
+ #: forms.php:403
946
+ msgid "Click here to reset"
947
+ msgstr "Clique aqui para reiniciar"
948
+
949
+ #: forms.php:418
950
+ msgid "New User?"
951
+ msgstr "Novo utilizador?"
952
+
953
+ #: forms.php:418
954
+ msgid "Click here to register"
955
+ msgstr "Clique aqui para registar-se"
956
+
957
+ #: forms.php:515
958
+ msgid "Required field"
959
+ msgstr "Campo obrigatório"
960
+
961
+ #: forms.php:521
962
+ #, fuzzy
963
+ msgid "Reset Form"
964
+ msgstr "Redefinição de password"
965
+
966
+ #: forms.php:523
967
+ #, fuzzy
968
+ msgid "Update Profile"
969
+ msgstr "Aviso de confirmação de atualização de dados do usuário:"
970
+
971
+ #: forms.php:561
972
+ msgid "Choose a Username"
973
+ msgstr "Username"
974
+
975
+ #: forms.php:683 native-registration.php:65
976
+ #, php-format
977
+ msgid "Please indicate that you agree to the %s TOS %s"
978
+ msgstr ""
979
+
980
+ #: forms.php:852
981
+ #, fuzzy
982
+ msgid "New User Registration"
983
+ msgstr "Novo utilizador?"
984
+
985
+ #: forms.php:1018
986
+ msgid "Input the code:"
987
+ msgstr ""
988
+
989
+ #: users.php:38
990
+ #, fuzzy
991
+ msgid "Additional Information"
992
+ msgstr "Campos Adicionais do WP-Members"
993
+
994
+ #: wp-members-core.php:118 wp-members-core.php:245
995
+ #, fuzzy
996
+ msgid "There was an error with the CAPTCHA form."
997
+ msgstr "Notificações e Mensagens de Erro"
998
+
999
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1000
+ msgid "Edit Your Information"
1001
+ msgstr "Edite suas Informações"
1002
+
1003
+ #: wp-members-core.php:544
1004
+ msgid "<strong>ERROR</strong>: User has not been activated."
1005
+ msgstr ""
1006
+
1007
+ #: wp-members-core.php:903 wp-members-register.php:93
1008
+ #, fuzzy, php-format
1009
+ msgid "Sorry, %s is a required field."
1010
+ msgstr "Username é um campo obrigatório"
1011
+
1012
+ #: wp-members-dialogs.php:42
1013
+ msgid "Login Failed!"
1014
+ msgstr "Login falhou!"
1015
+
1016
+ #: wp-members-dialogs.php:45
1017
+ msgid "You entered an invalid username or password."
1018
+ msgstr "Username ou password inválidos."
1019
+
1020
+ #: wp-members-dialogs.php:47
1021
+ msgid "Click here to continue."
1022
+ msgstr "Clique aqui para continuar."
1023
+
1024
+ #: wp-members-dialogs.php:191
1025
+ msgid "Edit My Information"
1026
+ msgstr "Editar info pessoal"
1027
+
1028
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1029
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1030
+ #: wp-members-sidebar.php:246
1031
+ #, fuzzy, php-format
1032
+ msgid "You are logged in as %s"
1033
+ msgstr "Username ou password inválidos."
1034
+
1035
+ #: wp-members-dialogs.php:208
1036
+ #, fuzzy
1037
+ msgid "Click to log out."
1038
+ msgstr "Clique aqui para reiniciar"
1039
+
1040
+ #: wp-members-dialogs.php:209
1041
+ #, fuzzy
1042
+ msgid "Begin using the site."
1043
+ msgstr "Obrigado por usar o WP-Members! Você está a utilizar a versão"
1044
+
1045
+ #: wp-members-dialogs.php:225
1046
+ #, fuzzy
1047
+ msgid "Click to log out"
1048
+ msgstr "Clique aqui para reiniciar"
1049
+
1050
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1051
+ #, fuzzy
1052
+ msgid "click to log out"
1053
+ msgstr "Clique aqui para reiniciar"
1054
+
1055
+ #: wp-members-dialogs.php:271
1056
+ #, fuzzy
1057
+ msgid "Password fields cannot be empty"
1058
+ msgstr "Aviso de diferença nas senhas digitadas:"
1059
+
1060
+ #: wp-members-register.php:51
1061
+ #, fuzzy
1062
+ msgid "There was an error processing the form."
1063
+ msgstr "Notificações e Mensagens de Erro"
1064
+
1065
+ #: wp-members-register.php:110
1066
+ msgid "Sorry, username is a required field"
1067
+ msgstr "Username é um campo obrigatório"
1068
+
1069
+ #: wp-members-register.php:111
1070
+ msgid "The username cannot include non-alphanumeric characters."
1071
+ msgstr ""
1072
+
1073
+ #: wp-members-register.php:112 wp-members-register.php:282
1074
+ msgid "You must enter a valid email address."
1075
+ msgstr "Inseriu um username ou password inválidos."
1076
+
1077
+ #: wp-members-register.php:119
1078
+ #, fuzzy
1079
+ msgid "Passwords did not match."
1080
+ msgstr "As passwords não coincidem"
1081
+
1082
+ #: wp-members-register.php:120 wp-members-register.php:286
1083
+ #, fuzzy
1084
+ msgid "Emails did not match."
1085
+ msgstr "As passwords não coincidem"
1086
+
1087
+ #: wp-members-register.php:127
1088
+ #, fuzzy
1089
+ msgid "You must complete the CAPTCHA form."
1090
+ msgstr "você precisa completar o formulário da CAPTCHA"
1091
+
1092
+ #: wp-members-register.php:377
1093
+ msgid "We were unable to validate the public key."
1094
+ msgstr "Não foi possível validar a Chave Pública"
1095
+
1096
+ #: wp-members-register.php:381
1097
+ msgid "We were unable to validate the private key."
1098
+ msgstr "Não foi possível validar a Chave Privada"
1099
+
1100
+ #: wp-members-register.php:385
1101
+ msgid "The challenge parameter of the verify script was incorrect."
1102
+ msgstr "O parâmetro de desafio do script de verificação estava incorreto."
1103
+
1104
+ #: wp-members-register.php:389
1105
+ msgid "The CAPTCHA solution was incorrect."
1106
+ msgstr "A solução da CAPTCHA estava incorreta."
1107
+
1108
+ #: wp-members-register.php:393
1109
+ msgid "The parameters to verify were incorrect"
1110
+ msgstr "Os parâmetros de verificação estavam incorretos."
1111
+
1112
+ #: wp-members-register.php:397
1113
+ msgid ""
1114
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1115
+ msgstr ""
1116
+ "As chaves API (\"API Keys\") do reCAPTCHA são atreladas a um nome "
1117
+ "específico de domínio por razões de segurança."
1118
+
1119
+ #: wp-members-register.php:401
1120
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1121
+ msgstr "O servidor reCAPTCHA não foi alcançado. Por favor, tente reenviar."
1122
+
1123
+ #: wp-members-register.php:405
1124
+ msgid "You have entered an incorrect code value. Please try again."
1125
+ msgstr ""
1126
+
1127
+ #: wp-members-sidebar.php:117
1128
+ msgid "Login Failed!<br />You entered an invalid username or password."
1129
+ msgstr "Login falhou!<br />Username ou password inválido."
1130
+
1131
+ #: wp-members-sidebar.php:118
1132
+ #, fuzzy
1133
+ msgid "You are not logged in."
1134
+ msgstr "Username ou password inválidos."
1135
+
1136
+ #: wp-members-sidebar.php:169
1137
+ #, fuzzy
1138
+ msgid "log in"
1139
+ msgstr "Log In"
1140
+
1141
+ #: wp-members-sidebar.php:180
1142
+ msgid "Forgot?"
1143
+ msgstr "Esqueceu a password?"
1144
+
1145
+ #: wp-members-sidebar.php:247
1146
+ msgid "click here to log out"
1147
+ msgstr "clique aqui para fazer logout"
1148
+
1149
+ #: wp-members-sidebar.php:279
1150
+ msgid "Displays the WP-Members sidebar login."
1151
+ msgstr ""
1152
+
1153
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1154
+ msgid "Login Status"
1155
+ msgstr "Estado do Login"
1156
+
1157
+ #: wp-members-sidebar.php:299
1158
+ msgid "Title:"
1159
+ msgstr "Título"
1160
+
1161
+ #: wp-members-tos.php:24
1162
+ msgid "Terms of Service"
1163
+ msgstr ""
1164
+
1165
+ #: wp-members-tos.php:36
1166
+ #, php-format
1167
+ msgid "%sclose%s"
1168
+ msgstr ""
1169
+
1170
+ #: wp-members-tos.php:38
1171
+ #, php-format
1172
+ msgid "%sprint%s"
1173
+ msgstr ""
1174
+
1175
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1176
+ #: Strings wp-members-install.php:49
1177
+ msgid "First Name"
1178
+ msgstr "Nome"
1179
+
1180
+ #: wp-members-install.php:50
1181
+ msgid "Last Name"
1182
+ msgstr "Apelido"
1183
+
1184
+ #: wp-members-install.php:51
1185
+ msgid "Address 1"
1186
+ msgstr "Endereço"
1187
+
1188
+ #: wp-members-install.php:52
1189
+ msgid "Address 2"
1190
+ msgstr "Complemento"
1191
+
1192
+ #: wp-members-install.php:53
1193
+ msgid "City"
1194
+ msgstr "Cidade"
1195
+
1196
+ #: wp-members-install.php:54
1197
+ msgid "State"
1198
+ msgstr "Estado"
1199
+
1200
+ #: wp-members-install.php:55
1201
+ msgid "Zip"
1202
+ msgstr "Código-postal"
1203
+
1204
+ #: wp-members-install.php:56
1205
+ msgid "Country"
1206
+ msgstr "País"
1207
+
1208
+ #: wp-members-install.php:57
1209
+ msgid "Day Phone"
1210
+ msgstr "Telefone"
1211
+
1212
+ #: wp-members-install.php:59
1213
+ msgid "Website"
1214
+ msgstr "Website"
1215
+
1216
+ #: wp-members-install.php:60
1217
+ msgid "AIM"
1218
+ msgstr "AIM"
1219
+
1220
+ #: wp-members-install.php:61
1221
+ msgid "Yahoo IM"
1222
+ msgstr "Yahoo IM"
1223
+
1224
+ #: wp-members-install.php:62
1225
+ msgid "Jabber/Google Talk"
1226
+ msgstr "Jabber/Google Talk"
1227
+
1228
+ #: wp-members-install.php:63
1229
+ msgid "Biographical Info"
1230
+ msgstr ""
1231
+
1232
+ #: wp-members-install.php:64 wp-members-install.php:211
1233
+ msgid "TOS"
1234
+ msgstr ""
1235
+
1236
+ #: Error message dialog strings wp-members-install.php:96
1237
+ #, fuzzy
1238
+ msgid ""
1239
+ "This content is restricted to site members. If you are an existing user, "
1240
+ "please log in. New users may register below."
1241
+ msgstr ""
1242
+ "Este conteúdo é restrito. Se é um utilizador registado, por favor faça "
1243
+ "login. "
1244
+
1245
+ #: wp-members-install.php:97
1246
+ msgid "Sorry, that username is taken, please try another."
1247
+ msgstr "Desculpe, este username já está registado. Por favor, tente outro."
1248
+
1249
+ #: wp-members-install.php:98
1250
+ msgid ""
1251
+ "Sorry, that email address already has an account.<br />Please try another."
1252
+ msgstr ""
1253
+ "Desculpe, já existe uma conta com este endereço de email.<br />Por favor, "
1254
+ "tente outro."
1255
+
1256
+ #: wp-members-install.php:99
1257
+ #, fuzzy
1258
+ msgid ""
1259
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1260
+ "log in using the password that was emailed to you."
1261
+ msgstr ""
1262
+ "Parabéns! Registo concluído com sucesso.<br /><br />Faça login com a "
1263
+ "password que foi enviada para o seu email."
1264
+
1265
+ #: wp-members-install.php:100
1266
+ msgid "Your information was updated!"
1267
+ msgstr "Sua informação foi atualizada!"
1268
+
1269
+ #: wp-members-install.php:101
1270
+ msgid "Passwords did not match.<br /><br />Please try again."
1271
+ msgstr "Passwords não coincidem.<br /><br />Por favor, tente novamente."
1272
+
1273
+ #: wp-members-install.php:102
1274
+ msgid ""
1275
+ "Password successfully changed!<br /><br />You will need to re-login with "
1276
+ "your new password."
1277
+ msgstr ""
1278
+ "Senha alterada com sucesso!<br /><br />Você precisará logar-se novamente com "
1279
+ "sua nova senha."
1280
+
1281
+ #: wp-members-install.php:103
1282
+ msgid "Either the username or email address do not exist in our records."
1283
+ msgstr "Username ou password não registado."
1284
+
1285
+ #: wp-members-install.php:104
1286
+ msgid ""
1287
+ "Password successfully reset!<br /><br />An email containing a new password "
1288
+ "has been sent to the email address on file for your account. You may change "
1289
+ "this random password then re-login with your new password."
1290
+ msgstr ""
1291
+ "Password redefinida com sucesso!<br /><br />Um email com a nova password foi "
1292
+ "enviado para o endereço indicado no registo. "
1293
+
1294
+ #~ msgid "WP-Members"
1295
+ #~ msgstr "WP-Members"
1296
+
1297
+ #~ msgid "Custom"
1298
+ #~ msgstr "Customizado"
1299
+
1300
+ #, fuzzy
1301
+ #~ msgid "edit"
1302
+ #~ msgstr "Edite suas Informações"
1303
+
1304
+ #, fuzzy
1305
+ #~ msgid "Edit"
1306
+ #~ msgstr "Edite suas Informações"
1307
+
1308
+ #~ msgid "Use reCAPTCHA"
1309
+ #~ msgstr "Usar reCAPTCHA"
1310
+
1311
+ #, fuzzy
1312
+ #~ msgid "Pages"
1313
+ #~ msgstr "Bloquear Páginas por Padrão:"
1314
+
1315
+ #~ msgid "Activate"
1316
+ #~ msgstr "Activar"
1317
+
1318
+ #~ msgid "Username"
1319
+ #~ msgstr "Utilizador"
1320
+
1321
+ #~ msgid "Password"
1322
+ #~ msgstr "Password"
1323
+
1324
+ #, fuzzy
1325
+ #~ msgid "Log In"
1326
+ #~ msgstr "Log In"
1327
+
1328
+ #~ msgid "New Password"
1329
+ #~ msgstr "Nova password"
1330
+
1331
+ #~ msgid "Repeat Password"
1332
+ #~ msgstr "Repetir password"
1333
+
1334
+ #~ msgid "Email"
1335
+ #~ msgstr "eMail"
1336
+
1337
+ #~ msgid "Reset Password"
1338
+ #~ msgstr "Definir nova senha"
1339
+
1340
+ #~ msgid "Remember me"
1341
+ #~ msgstr "Lembrar-me"
1342
+
1343
+ #~ msgid "Register"
1344
+ #~ msgstr "Registar-se"
1345
+
1346
+ #, fuzzy
1347
+ #~ msgid ""
1348
+ #~ "WP access restriction and user registration. For more information on "
1349
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1350
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1351
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1352
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1353
+ #~ msgstr ""
1354
+ #~ "Restrição de acesso e registo no WordPress. Para maiores informações e "
1355
+ #~ "para baixar o \"guia de início rápido\" gratuito, visite <a href=\"http://"
1356
+ #~ "butlerblog.com/wp-members\">http://butlerblog.com/wp-members</a>. Veja "
1357
+ #~ "uma demo em <a href=\"http://butlerblog.com/wpmembers\">http://butlerblog."
1358
+ #~ "com/wpmembers</a>. WP-Members(tm) é uma marca registrada de butlerblog."
1359
+ #~ "com."
1360
+
1361
+ #~ msgid "Turn off registration"
1362
+ #~ msgstr "Desativar Registro de Usuário:"
1363
+
1364
+ #~ msgid "Turns off the registration process, only allows login"
1365
+ #~ msgstr "Desativa o processo de registro, permite somente logins."
1366
+
1367
+ #, fuzzy
1368
+ #~ msgid ""
1369
+ #~ "Settings were saved, but you have required fields that are not set to "
1370
+ #~ "display!"
1371
+ #~ msgstr ""
1372
+ #~ "Configurações foram salvas, mas existe um campo requerido que não está "
1373
+ #~ "marcado para exibição."
1374
+
1375
+ #, fuzzy
1376
+ #~ msgid ""
1377
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1378
+ #~ "fields are validated. However, you should still check that your "
1379
+ #~ "displayed and required fields match up. Mismatched fields are "
1380
+ #~ "highlighted below."
1381
+ #~ msgstr ""
1382
+ #~ "Nota: Isto não irá causar um erro para o usuário, uma vez que somente "
1383
+ #~ "campos exibidos são validados. Entretanto, você deveria corrigir isto de "
1384
+ #~ "\r\n"
1385
+ #~ "\t\t\t\tforma que haja coerência nos campos marcados para exibição e "
1386
+ #~ "também como obrigatórios. Os campos com problema estão listados abaixo."
1387
+
1388
+ #, fuzzy
1389
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1390
+ #~ msgstr "Se você achou este plugin útil, por favor considere fazer uma"
1391
+
1392
+ #, fuzzy
1393
+ #~ msgid "PayPal Settings"
1394
+ #~ msgstr "Configurações"
1395
+
1396
+ #, fuzzy
1397
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1398
+ #~ msgstr "Se você achou este plugin útil, por favor considere fazer uma"
1399
+
1400
+ #, fuzzy
1401
+ #~ msgid "WP-Members Users"
1402
+ #~ msgstr "WP-Members"
1403
+
1404
+ #~ msgid "Indicates a required field"
1405
+ #~ msgstr "Campo obrigatório"
1406
+
1407
+ #~ msgid "Login"
1408
+ #~ msgstr "Login"
1409
+
1410
+ #~ msgid "Clear Form"
1411
+ #~ msgstr "Apagar"
1412
+
1413
+ #~ msgid "Submit"
1414
+ #~ msgstr "Criar"
1415
+
1416
+ #, fuzzy
1417
+ #~ msgid "login"
1418
+ #~ msgstr "Login"
1419
+
1420
+ #~ msgid "etc."
1421
+ #~ msgstr "etc."
1422
+
1423
+ #~ msgid "Settings saved."
1424
+ #~ msgstr "Configurações salvas."
1425
+
1426
+ #~ msgid "If you find this plugin useful,"
1427
+ #~ msgstr "Se você achou este plugin útil,"
1428
+
1429
+ #~ msgid "please consider making a donation"
1430
+ #~ msgstr "por favor, considere fazer uma doação:"
1431
+
1432
+ #~ msgid "donation"
1433
+ #~ msgstr "doação"
1434
+
1435
+ #~ msgid "WP-Members is a trademark of"
1436
+ #~ msgstr "WP-Members é marca registrada de"
1437
+
1438
+ #~ msgid "reCAPTCHA website"
1439
+ #~ msgstr "site do reCAPTCHA"
1440
+
1441
+ #~ msgid "free reCAPTCHA key"
1442
+ #~ msgstr "chave reCAPTCHA gratuita"
1443
+
1444
+ #~ msgid "Sorry,"
1445
+ #~ msgstr "Desculpe,"
1446
+
1447
+ #~ msgid "Bio"
1448
+ #~ msgstr "Detalhes"
1449
+
1450
+ #~ msgid "WP Members"
1451
+ #~ msgstr "WP Members"
1452
+
1453
+ #~ msgid "http://butlerblog.com/wp-members/"
1454
+ #~ msgstr "http://butlerblog.com/wp-members/"
1455
+
1456
+ #~ msgid "Chad Butler"
1457
+ #~ msgstr "Chad Butler"
1458
+
1459
+ #~ msgid "http://butlerblog.com/"
1460
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-ru_RU.mo ADDED
Binary file
lang/wp-members-ru_RU.po ADDED
@@ -0,0 +1,1442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:05-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: Dmitrii Krasnov <krasnov@findadventure.ru>\n"
11
+ "Language: ru_RU\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-Generator: Poedit 1.6.4\n"
17
+
18
+ #: admin/admin.php:60 admin/admin.php:129
19
+ msgid "Settings"
20
+ msgstr "Настройки"
21
+
22
+ #: admin/admin.php:187
23
+ msgid "Options"
24
+ msgstr "Настройки"
25
+
26
+ #: admin/admin.php:188
27
+ msgid "Fields"
28
+ msgstr "Поля"
29
+
30
+ #: admin/admin.php:189
31
+ msgid "Dialogs"
32
+ msgstr "Диалоги"
33
+
34
+ #: admin/admin.php:190
35
+ msgid "Emails"
36
+ msgstr "Сообщения"
37
+
38
+ #: admin/dialogs.php:109
39
+ msgid ""
40
+ "Your WP settings allow anyone to register - this is not the recommended "
41
+ "setting."
42
+ msgstr ""
43
+ "Ваш WP-Members настроен на разрешение всем зарегистрироваться - это "
44
+ "нерекомендуемая настройка."
45
+
46
+ #: admin/dialogs.php:110
47
+ #, php-format
48
+ msgid ""
49
+ "You can %s change this here %s making sure the box next to \"Anyone can "
50
+ "register\" is unchecked."
51
+ msgstr ""
52
+ "Вы можете %s изменить ее здесь%s, сняв галочку в чекбоксе \"Любой может "
53
+ "зарегистрироваться\"."
54
+
55
+ #: admin/dialogs.php:111
56
+ msgid ""
57
+ "This setting allows a link on the /wp-login.php page to register using the "
58
+ "WP native registration process thus circumventing any registration you are "
59
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
60
+ "but most users should uncheck this option. If you do not change this "
61
+ "setting, you can choose to ignore these warning messages under WP-Members "
62
+ "Settings."
63
+ msgstr ""
64
+ "Эта настройка включает ссылку на /wp-login.php page для регистрации с "
65
+ "использованием стандартного процесса регистрации WP, минуя механизм "
66
+ "регистрации WP-Members. В некоторых случаях это может удовлетворить "
67
+ "потребности пользователя, но большинству пользователей следует отключить эту "
68
+ "опцию. Если вы не будете менять эту настройку, вы можете включить "
69
+ "игнорирование этих предупреждений в настройках WP-Members."
70
+
71
+ #: admin/dialogs.php:117
72
+ msgid ""
73
+ "Your WP settings allow anyone to comment - this is not the recommended "
74
+ "setting."
75
+ msgstr ""
76
+ "Ваш WP-Members настроен на разрешение всем оставлять комментарии - это "
77
+ "нерекомендуемая настройка."
78
+
79
+ #: admin/dialogs.php:118
80
+ #, php-format
81
+ msgid ""
82
+ "You can %s change this here %s by checking the box next to \"Users must be "
83
+ "registered and logged in to comment.\""
84
+ msgstr ""
85
+ "Вы можете %s изменить ее здесь%s, поставив галочку в чекбоксе \"Пользователи "
86
+ "должны быть зарегистрированы и авторизованы для комментирования.\""
87
+
88
+ #: admin/dialogs.php:119
89
+ msgid ""
90
+ "This setting allows any users to comment, whether or not they are "
91
+ "registered. Depending on how you are using WP-Members will determine whether "
92
+ "you should change this setting or not. If you do not change this setting, "
93
+ "you can choose to ignore these warning messages under WP-Members Settings."
94
+ msgstr ""
95
+ "Этот параметр позволяет любому пользователю комментировать, зарегистрированы "
96
+ "они или нет. В зависимости от того, как вы используете WP-Members, следует "
97
+ "определить, изменить эту настройку или нет. Если вы не измените этот "
98
+ "параметр, вы можете игнорировать эти предупреждения в настройках WP-Members."
99
+
100
+ #: admin/dialogs.php:125
101
+ msgid ""
102
+ "Your WP settings allow full text rss feeds - this is not the recommended "
103
+ "setting."
104
+ msgstr ""
105
+ "Ваш WP-Members настроен на разрешение полнотекстовых rss-лент - это "
106
+ "нерекомендуемая настройка."
107
+
108
+ #: admin/dialogs.php:126
109
+ #, php-format
110
+ msgid ""
111
+ "You can %s change this here %s by changing \"For each article in a feed, show"
112
+ "\" to \"Summary.\""
113
+ msgstr ""
114
+ "Вы можете %s изменить ее здесь%s, указав для параметра \"Для каждой статьи в "
115
+ "ленте отображать\" значенин \"Анонс\""
116
+
117
+ #: admin/dialogs.php:127
118
+ msgid ""
119
+ "Leaving this set to full text allows anyone to read your protected content "
120
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
121
+ "only show summary text."
122
+ msgstr ""
123
+ "Оставляя эту настройку со значением \"весь текст\", вы позволяете всем "
124
+ "видеть защищенное вами содержимое в лентах RSS. Изменение настройки на "
125
+ "\"Аннотация\" защитит от этого"
126
+
127
+ #: admin/dialogs.php:133
128
+ msgid "You have set WP-Members to hold registrations for approval"
129
+ msgstr "Вы настроили WP-Members на задержку регистрации до подтверждения"
130
+
131
+ #: admin/dialogs.php:134
132
+ msgid ""
133
+ "but you have not changed the default message for \"Registration Completed\" "
134
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
135
+ "message to let users know they are pending approval."
136
+ msgstr ""
137
+ ", но вы не изменили сообщение по умолчанию \"Регистрация завершена\" в "
138
+ "разделе \"WP-Members Диалоги и сообщения об ошибках.\" Вам следует изменить "
139
+ "это сообщение, чтобы пользователи знали, что они ожидают утверждения "
140
+ "модератором."
141
+
142
+ #: admin/dialogs.php:140
143
+ msgid "You have set WP-Members to turn off the registration process"
144
+ msgstr "Вы отключили регистрацию в WP-Members"
145
+
146
+ #: admin/dialogs.php:141
147
+ msgid ""
148
+ "but you also set to moderate and/or email admin new registrations. You will "
149
+ "need to set up a registration page for users to register."
150
+ msgstr ""
151
+ ", но вы так же включили модерацию и/или отправку сообщений администратору о "
152
+ "новых регистрациях. Вам необходимо настроить страницу регистрации для новых "
153
+ "пользователей."
154
+
155
+ #: admin/dialogs.php:147
156
+ msgid "You have turned on reCAPTCHA"
157
+ msgstr "Вы включили reCAPTHA"
158
+
159
+ #: admin/dialogs.php:148
160
+ msgid ""
161
+ "but you have not entered API keys. You will need both a public and private "
162
+ "key. The CAPTCHA will not display unless a valid API key is included."
163
+ msgstr ""
164
+ ", но вы не ввели API-ключи. Необходимо ввести открытый и закрытый ключи. "
165
+ "CAPTCHA не будет отображаться пока не будет введен корректный API-ключ"
166
+
167
+ #: admin/dialogs.php:171
168
+ msgid "Version:"
169
+ msgstr "Версия:"
170
+
171
+ #: admin/dialogs.php:172
172
+ #, fuzzy
173
+ msgid "Quick Start Guide"
174
+ msgstr "Пользователь обновлен"
175
+
176
+ #: admin/dialogs.php:173
177
+ #, fuzzy
178
+ msgid "Online User Guide"
179
+ msgstr "Пользователь обновлен"
180
+
181
+ #: admin/dialogs.php:174
182
+ msgid "FAQs"
183
+ msgstr ""
184
+
185
+ #: admin/dialogs.php:181
186
+ #, fuzzy
187
+ msgid "Thank you for using WP-Members"
188
+ msgstr "Спасибо за использование WP-Members! Вы пользуетесь версией %s"
189
+
190
+ #: admin/dialogs.php:182
191
+ msgid "A plugin developed by"
192
+ msgstr ""
193
+
194
+ #: admin/dialogs.php:183
195
+ msgid "Follow"
196
+ msgstr "Следите в "
197
+
198
+ #: admin/dialogs.php:200 admin/dialogs.php:204
199
+ msgid "Latest from RocketGeek"
200
+ msgstr ""
201
+
202
+ #: admin/dialogs.php:221 admin/dialogs.php:234
203
+ msgid "Latest from ButlerBlog"
204
+ msgstr ""
205
+
206
+ #: admin/post.php:36 admin/post.php:38
207
+ #, fuzzy
208
+ msgid "Block"
209
+ msgstr "Блокировать записи по умолчанию"
210
+
211
+ #: admin/post.php:37 admin/post.php:39
212
+ msgid "Unblock"
213
+ msgstr ""
214
+
215
+ #: admin/post.php:120
216
+ #, fuzzy, php-format
217
+ msgid "%s posts %sed."
218
+ msgstr "Блокировать записи по умолчанию"
219
+
220
+ #: admin/post.php:138
221
+ #, fuzzy
222
+ msgid "Post Restriction"
223
+ msgstr "Новая регистрация"
224
+
225
+ #: admin/post.php:145
226
+ #, fuzzy
227
+ msgid "Page Restriction"
228
+ msgstr "Новая регистрация"
229
+
230
+ #: admin/post.php:263 admin/post.php:295
231
+ #, fuzzy
232
+ msgid "Unblocked?"
233
+ msgstr ""
234
+ "Примечание: каждая запись может быть заблокирована/разблокирована отдельно "
235
+ "от остальных"
236
+
237
+ #: admin/post.php:263 admin/post.php:295
238
+ #, fuzzy
239
+ msgid "Blocked?"
240
+ msgstr ""
241
+ "Примечание: каждая запись может быть заблокирована/разблокирована отдельно "
242
+ "от остальных"
243
+
244
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
245
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
246
+ msgid "Need help?"
247
+ msgstr ""
248
+
249
+ #: admin/tab-captcha.php:46
250
+ msgid "Manage reCAPTCHA Options"
251
+ msgstr "Изменить настройки reCAPTCHA"
252
+
253
+ #: admin/tab-captcha.php:60
254
+ msgid ""
255
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
256
+ "while blocking spam on your blog."
257
+ msgstr ""
258
+ "reCAPTCHA - это свободный и оступный CAPTCHA-сервис, помогающий блокировать "
259
+ "спам в вашем блоге."
260
+
261
+ #: admin/tab-captcha.php:61
262
+ #, php-format
263
+ msgid ""
264
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
265
+ "that they are a human. This verifies that they are not a spambot while also "
266
+ "correcting the automatic scans of old books. So you get less spam, and the "
267
+ "world gets accurately digitized books. Everybody wins! For details, visit "
268
+ "the %s reCAPTCHA website%s"
269
+ msgstr ""
270
+ "reCAPTCHA просит комментирующего набрать два слова, отсканированных из "
271
+ "книги, чтобы подтвердить, что комментирующий - человек. Это позволяет с "
272
+ "одной стороны проверить, что пишущий не спамбот, а с другой - "
273
+ "откорректировать автоматическое сканирование старых книг. В итоге вы "
274
+ "получаете меньше спама, а мир обретает более точно оцифрованные книги. Все "
275
+ "выигрывают! За подробностями обращайтесть на сайт %s reCAPTCHA%s"
276
+
277
+ #: admin/tab-captcha.php:66
278
+ msgid "reCAPTCHA Keys"
279
+ msgstr "Ключи reCAPTCHA"
280
+
281
+ #: admin/tab-captcha.php:68
282
+ #, php-format
283
+ msgid ""
284
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
285
+ "key. You can sign up for a %s free reCAPTCHA key%s"
286
+ msgstr ""
287
+ "Для reCAPTCHA нужнен API-ключ, состоящий из \"открытого\" и \"закрытого\" "
288
+ "ключа. Вы можете зарегистрироваться для получения %s бесплатного ключа "
289
+ "reCAPTHA%s"
290
+
291
+ #: admin/tab-captcha.php:69
292
+ msgid "Public Key"
293
+ msgstr "Публичный ключ"
294
+
295
+ #: admin/tab-captcha.php:70
296
+ msgid "Private Key"
297
+ msgstr "Закрытый ключ"
298
+
299
+ #: admin/tab-captcha.php:74
300
+ msgid "Choose Theme"
301
+ msgstr "Выберите тему"
302
+
303
+ #: admin/tab-captcha.php:77
304
+ msgid "Red"
305
+ msgstr "Красная"
306
+
307
+ #: admin/tab-captcha.php:78
308
+ msgid "White"
309
+ msgstr "Белая"
310
+
311
+ #: admin/tab-captcha.php:79
312
+ msgid "Black Glass"
313
+ msgstr "Черный глянец"
314
+
315
+ #: admin/tab-captcha.php:80
316
+ msgid "Clean"
317
+ msgstr "Чистая"
318
+
319
+ #: admin/tab-captcha.php:112
320
+ msgid "Characters for image"
321
+ msgstr ""
322
+
323
+ #: admin/tab-captcha.php:116
324
+ msgid "Number of characters"
325
+ msgstr ""
326
+
327
+ #: admin/tab-captcha.php:120
328
+ msgid "Image dimensions"
329
+ msgstr ""
330
+
331
+ #: admin/tab-captcha.php:124
332
+ msgid "Font color of characters"
333
+ msgstr ""
334
+
335
+ #: admin/tab-captcha.php:128
336
+ msgid "Background color of image"
337
+ msgstr ""
338
+
339
+ #: admin/tab-captcha.php:132
340
+ msgid "Font size"
341
+ msgstr ""
342
+
343
+ #: admin/tab-captcha.php:136
344
+ msgid "Width between characters"
345
+ msgstr ""
346
+
347
+ #: admin/tab-captcha.php:140
348
+ #, fuzzy
349
+ msgid "Image type"
350
+ msgstr "Tip polja"
351
+
352
+ #: admin/tab-captcha.php:154
353
+ msgid ""
354
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
355
+ "installed and activated."
356
+ msgstr ""
357
+
358
+ #: admin/tab-captcha.php:166
359
+ #, fuzzy
360
+ msgid "Update CAPTCHA Settings"
361
+ msgstr "Update postavki"
362
+
363
+ #: admin/tab-captcha.php:230
364
+ msgid "CAPTCHA was updated for WP-Members"
365
+ msgstr "CAPTCHA je updatovano za WP-Members"
366
+
367
+ #: admin/tab-dialogs.php:29
368
+ msgid "Restricted post (or page), displays above the login/registration form"
369
+ msgstr ""
370
+ "Запись (или страница) с ограниченным доступом (будет отображаться перед "
371
+ "формами входа/регистрации)"
372
+
373
+ #: admin/tab-dialogs.php:30
374
+ msgid "Username is taken"
375
+ msgstr "Имя уже используется"
376
+
377
+ #: admin/tab-dialogs.php:31
378
+ msgid "Email is registered"
379
+ msgstr "Email зарегистрирован"
380
+
381
+ #: admin/tab-dialogs.php:32
382
+ msgid "Registration completed"
383
+ msgstr "Регистрация завершена"
384
+
385
+ #: admin/tab-dialogs.php:33
386
+ msgid "User update"
387
+ msgstr "Пользователь обновлен"
388
+
389
+ #: admin/tab-dialogs.php:34
390
+ msgid "Passwords did not match"
391
+ msgstr "Пароли не совпадают"
392
+
393
+ #: admin/tab-dialogs.php:35
394
+ msgid "Password changes"
395
+ msgstr "Пароль изменен"
396
+
397
+ #: admin/tab-dialogs.php:36
398
+ msgid "Username or email do not exist when trying to reset forgotten password"
399
+ msgstr ""
400
+ "Имя пользователя или email не найдены при попытке сбросить забытый пароль"
401
+
402
+ #: admin/tab-dialogs.php:37
403
+ msgid "Password reset"
404
+ msgstr "Пароль сброшен"
405
+
406
+ #: admin/tab-dialogs.php:54
407
+ msgid "Dialogs and Error Messages"
408
+ msgstr "Диалоги и Сообщения об ошибках"
409
+
410
+ #: admin/tab-dialogs.php:56
411
+ #, php-format
412
+ msgid ""
413
+ "You can customize the text for dialogs and error messages. Simple HTML is "
414
+ "allowed %s etc."
415
+ msgstr ""
416
+ "Вы можете подстроить тексты диалогов и сообщений об ошибках. Допускается "
417
+ "простой HTML %s и т.д."
418
+
419
+ #: admin/tab-dialogs.php:69
420
+ msgid "Terms of Service (TOS)"
421
+ msgstr "Условия предоставления услуг"
422
+
423
+ #: admin/tab-dialogs.php:76
424
+ msgid "Update Dialogs"
425
+ msgstr "Обновить Диалоги"
426
+
427
+ #: admin/tab-dialogs.php:115
428
+ msgid "WP-Members dialogs were updated"
429
+ msgstr "Диалоги WP-Members были обновлены"
430
+
431
+ #: admin/tab-emails.php:30
432
+ msgid "New Registration"
433
+ msgstr "Новая регистрация"
434
+
435
+ #: admin/tab-emails.php:34
436
+ msgid "Registration is Moderated"
437
+ msgstr "Регистрация прошла модерацию"
438
+
439
+ #: admin/tab-emails.php:35
440
+ msgid "Registration is Moderated, User is Approved"
441
+ msgstr "Регистрация прошла модерацию, пользователь активирован"
442
+
443
+ #: admin/tab-emails.php:40
444
+ msgid "Password Reset"
445
+ msgstr "Сбросить пароль"
446
+
447
+ #: admin/tab-emails.php:45
448
+ msgid "Admin Notification"
449
+ msgstr "Уведомление администратора"
450
+
451
+ #: admin/tab-emails.php:50
452
+ msgid "Email Signature"
453
+ msgstr "Подпись"
454
+
455
+ #: admin/tab-emails.php:57
456
+ msgid "Email Messages"
457
+ msgstr "Сообщения"
458
+
459
+ #: admin/tab-emails.php:60
460
+ msgid "You can customize the content of the emails sent by the plugin."
461
+ msgstr "Вы можете отредактировать содержимое писем, отсылаемых плагином."
462
+
463
+ #: admin/tab-emails.php:62
464
+ msgid "A list of shortcodes is available here."
465
+ msgstr "Список shortcode`ов доступен здесь."
466
+
467
+ #: admin/tab-emails.php:69
468
+ msgid "Set a custom email address"
469
+ msgstr "Указать другой email address"
470
+
471
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
472
+ msgid "(optional)"
473
+ msgstr "(необязательно)"
474
+
475
+ #: admin/tab-emails.php:73
476
+ msgid "Set a custom email name"
477
+ msgstr "Указать другую подпись"
478
+
479
+ #: admin/tab-emails.php:84
480
+ msgid "Subject"
481
+ msgstr "Тема"
482
+
483
+ #: admin/tab-emails.php:88
484
+ msgid "Body"
485
+ msgstr "Сообщение"
486
+
487
+ #: admin/tab-emails.php:105
488
+ msgid "Update Emails"
489
+ msgstr "Обновить сообщения"
490
+
491
+ #: admin/tab-emails.php:161
492
+ msgid "WP-Members emails were updated"
493
+ msgstr "Сообщения WP-Members были обновлены"
494
+
495
+ #: admin/tab-fields.php:166
496
+ msgid "WP-Members fields were updated"
497
+ msgstr "Поля WP-Members были обновлены"
498
+
499
+ #: admin/tab-fields.php:176
500
+ msgid "Field Label is required for adding a new field. Nothing was updated."
501
+ msgstr ""
502
+ "Метку поля необходимо заполнить при создании нового поля. Обновление не "
503
+ "произведено."
504
+
505
+ #: admin/tab-fields.php:177
506
+ msgid "Option Name is required for adding a new field. Nothing was updated."
507
+ msgstr ""
508
+ "Идентификатор поля необходимо заполнить при создании нового поля. Обновление "
509
+ "не произведено."
510
+
511
+ #: admin/tab-fields.php:184
512
+ msgid "A field with that option name already exists"
513
+ msgstr ""
514
+
515
+ #: admin/tab-fields.php:201
516
+ #, fuzzy
517
+ msgid "Checked value is required for checkboxes. Nothing was updated."
518
+ msgstr ""
519
+ "Метку поля необходимо заполнить при создании нового поля. Обновление не "
520
+ "произведено."
521
+
522
+ #: admin/tab-fields.php:223
523
+ #, fuzzy
524
+ msgid "field was added"
525
+ msgstr "Метка поля"
526
+
527
+ #: admin/tab-fields.php:241
528
+ #, fuzzy
529
+ msgid "field was updated"
530
+ msgstr "Поля WP-Members были обновлены"
531
+
532
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
533
+ #, fuzzy
534
+ msgid "Edit Field"
535
+ msgstr "Редактирование ваших данных"
536
+
537
+ #: admin/tab-fields.php:289
538
+ #, fuzzy
539
+ msgid "Add a Field"
540
+ msgstr "Добавить/удалить"
541
+
542
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
543
+ msgid "Field Label"
544
+ msgstr "Метка поля"
545
+
546
+ #: admin/tab-fields.php:297
547
+ msgid "The name of the field as it will be displayed to the user."
548
+ msgstr ""
549
+
550
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
551
+ msgid "Option Name"
552
+ msgstr "Имя поля"
553
+
554
+ #: admin/tab-fields.php:306
555
+ msgid ""
556
+ "The database meta value for the field. It must be unique and contain no "
557
+ "spaces (underscores are ok)."
558
+ msgstr ""
559
+
560
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
561
+ msgid "Field Type"
562
+ msgstr "Тип поля"
563
+
564
+ #: admin/tab-fields.php:316
565
+ msgid "text"
566
+ msgstr "текст"
567
+
568
+ #: admin/tab-fields.php:317
569
+ msgid "textarea"
570
+ msgstr "поле для ввода"
571
+
572
+ #: admin/tab-fields.php:318
573
+ msgid "checkbox"
574
+ msgstr "чекбокс"
575
+
576
+ #: admin/tab-fields.php:319
577
+ msgid "dropdown"
578
+ msgstr "список"
579
+
580
+ #: admin/tab-fields.php:320
581
+ msgid "password"
582
+ msgstr "пароль"
583
+
584
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
585
+ msgid "Display?"
586
+ msgstr "Оботражать?"
587
+
588
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
589
+ msgid "Required?"
590
+ msgstr "Обязательно?"
591
+
592
+ #: admin/tab-fields.php:334
593
+ #, fuzzy
594
+ msgid "Additional information for checkbox fields"
595
+ msgstr "WP-Members Дополнительные поля"
596
+
597
+ #: admin/tab-fields.php:337
598
+ #, fuzzy
599
+ msgid "Checked by default?"
600
+ msgstr "Отмечено?"
601
+
602
+ #: admin/tab-fields.php:341
603
+ #, fuzzy
604
+ msgid "Stored value if checked:"
605
+ msgstr "Отмечено?"
606
+
607
+ #: admin/tab-fields.php:347
608
+ #, fuzzy
609
+ msgid "Additional information for dropdown fields"
610
+ msgstr "WP-Members Дополнительные поля"
611
+
612
+ #: admin/tab-fields.php:350
613
+ msgid "For dropdown, array of values:"
614
+ msgstr "Массив значений для выпадающего списка:"
615
+
616
+ #: admin/tab-fields.php:375
617
+ msgid "Options should be Option Name|option_value,"
618
+ msgstr "Варианты должны быть вида \"Метка\"|\"значение\","
619
+
620
+ #: admin/tab-fields.php:379
621
+ msgid "Visit plugin site for more information"
622
+ msgstr "Посетите сайт плагина для получения большей информации"
623
+
624
+ #: admin/tab-fields.php:385
625
+ #, fuzzy
626
+ msgid "Add Field"
627
+ msgstr "Добавить/удалить"
628
+
629
+ #: admin/tab-fields.php:407
630
+ msgid "Manage Fields"
631
+ msgstr "Изменить поля"
632
+
633
+ #: admin/tab-fields.php:409
634
+ msgid ""
635
+ "Determine which fields will display and which are required. This includes "
636
+ "all fields, both native WP fields and WP-Members custom fields."
637
+ msgstr ""
638
+ "Определите, какие поля следует отображать, и какие должны быть "
639
+ "обязательными. Этот список содержит все поля, как WordPress`а, так и WP-"
640
+ "Members"
641
+
642
+ #: admin/tab-fields.php:410
643
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
644
+ msgstr "(Beleška: Email je uvek obavezan i ne može se promeniti.)"
645
+
646
+ #: admin/tab-fields.php:415
647
+ msgid "Add/Delete"
648
+ msgstr "Добавить/удалить"
649
+
650
+ #: admin/tab-fields.php:421
651
+ msgid "Checked?"
652
+ msgstr "Отмечено?"
653
+
654
+ #: admin/tab-fields.php:423
655
+ #, fuzzy
656
+ msgid "Users Screen"
657
+ msgstr "Выгрузить"
658
+
659
+ #: admin/tab-fields.php:435
660
+ msgid "Delete"
661
+ msgstr "Удалить"
662
+
663
+ #: admin/tab-fields.php:447
664
+ msgid "(Email cannot be removed)"
665
+ msgstr "(Email не может быть удален)"
666
+
667
+ #: admin/tab-fields.php:467
668
+ #, fuzzy
669
+ msgid "Registration Date"
670
+ msgstr "Регистрация завершена"
671
+
672
+ #: admin/tab-fields.php:470
673
+ #, fuzzy
674
+ msgid "native"
675
+ msgstr ""
676
+ "Определите, какие поля следует отображать, и какие должны быть "
677
+ "обязательными. Этот список содержит все поля, как WordPress`а, так и WP-"
678
+ "Members"
679
+
680
+ #: admin/tab-fields.php:480
681
+ #, fuzzy
682
+ msgid "Active"
683
+ msgstr "Активировать"
684
+
685
+ #: admin/tab-fields.php:492
686
+ #, fuzzy
687
+ msgid "Registration IP"
688
+ msgstr "IP при регистрации"
689
+
690
+ #: admin/tab-fields.php:527
691
+ msgid "Update Fields"
692
+ msgstr "Обновить поля"
693
+
694
+ #: admin/tab-options.php:48
695
+ msgid "Manage Options"
696
+ msgstr "Изменить настройки"
697
+
698
+ #: admin/tab-options.php:54
699
+ msgid "Block Posts by default"
700
+ msgstr "Блокировать записи по умолчанию"
701
+
702
+ #: admin/tab-options.php:54
703
+ msgid ""
704
+ "Note: Posts can still be individually blocked or unblocked at the article "
705
+ "level"
706
+ msgstr ""
707
+ "Примечание: каждая запись может быть заблокирована/разблокирована отдельно "
708
+ "от остальных"
709
+
710
+ #: admin/tab-options.php:55
711
+ msgid "Block Pages by default"
712
+ msgstr "Блокировать страницы по умолчанию"
713
+
714
+ #: admin/tab-options.php:55
715
+ msgid ""
716
+ "Note: Pages can still be individually blocked or unblocked at the article "
717
+ "level"
718
+ msgstr ""
719
+ "Примечание: каждая страница может быть заблокирована/разблокирована отдельно "
720
+ "от остальных"
721
+
722
+ #: admin/tab-options.php:56
723
+ msgid "Show excerpts"
724
+ msgstr "Показать анонс"
725
+
726
+ #: admin/tab-options.php:56
727
+ msgid ""
728
+ "Shows excerpted content above the login/registration on both Posts and Pages"
729
+ msgstr ""
730
+ "Отображаение над формой входа в систему содержимого записи/страцницы до тега "
731
+ "\"more\" "
732
+
733
+ #: admin/tab-options.php:57
734
+ msgid "Notify admin"
735
+ msgstr "Уведомить администратора"
736
+
737
+ #: admin/tab-options.php:57
738
+ #, fuzzy, php-format
739
+ msgid "Notify %s for each new registration? %s"
740
+ msgstr "Отсылать email о каждой новой регистрации администратору?"
741
+
742
+ #: admin/tab-options.php:58
743
+ msgid "Moderate registration"
744
+ msgstr "Модерировать регистрацию"
745
+
746
+ #: admin/tab-options.php:58
747
+ msgid "Holds new registrations for admin approval"
748
+ msgstr "Подтверждение регистрации администратором"
749
+
750
+ #: admin/tab-options.php:91
751
+ #, fuzzy
752
+ msgid "Enable CAPTCHA"
753
+ msgstr "Uključi CAPTCHA za registraciju"
754
+
755
+ #: admin/tab-options.php:59
756
+ msgid "Turns on CAPTCHA for registration"
757
+ msgstr "Использовать reCAPTCHA при регистрации"
758
+
759
+ #: admin/tab-options.php:60
760
+ #, fuzzy
761
+ msgid "Hide registration"
762
+ msgstr "Регистрация завершена"
763
+
764
+ #: admin/tab-options.php:60
765
+ msgid "Removes the registration form from blocked content"
766
+ msgstr ""
767
+
768
+ #: admin/tab-options.php:62
769
+ msgid "Time-based expiration"
770
+ msgstr "Срок действия по дате"
771
+
772
+ #: admin/tab-options.php:62
773
+ msgid "Allows for access to expire"
774
+ msgstr "Включение ограничения доступа по сроку"
775
+
776
+ #: admin/tab-options.php:63
777
+ msgid "Trial period"
778
+ msgstr "Ознакомительный период"
779
+
780
+ #: admin/tab-options.php:63
781
+ msgid "Allows for a trial period"
782
+ msgstr "Допускает пробный период"
783
+
784
+ #: admin/tab-options.php:64
785
+ msgid "Ignore warning messages"
786
+ msgstr "Игнорировать предупреждения"
787
+
788
+ #: admin/tab-options.php:64
789
+ msgid "Ignores WP-Members warning messages in the admin panel"
790
+ msgstr "Скрывает предупреждения WP-Members в консоли администратора"
791
+
792
+ #: admin/tab-options.php:81
793
+ msgid "Attribution"
794
+ msgstr ""
795
+
796
+ #: admin/tab-options.php:83
797
+ msgid ""
798
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
799
+ msgstr ""
800
+
801
+ #: admin/tab-options.php:87
802
+ #, fuzzy
803
+ msgid "Auto Excerpt:"
804
+ msgstr "Показать анонс"
805
+
806
+ #: admin/tab-options.php:88
807
+ #, fuzzy
808
+ msgid "Number of words in excerpt:"
809
+ msgstr "Показать анонс"
810
+
811
+ #: admin/tab-options.php:88 admin/tab-options.php:108
812
+ #: admin/tab-options.php:118 admin/tab-options.php:132
813
+ msgid "Optional"
814
+ msgstr "Необязательно"
815
+
816
+ #: admin/tab-options.php:88
817
+ #, fuzzy
818
+ msgid "Automatically creates an excerpt"
819
+ msgstr "Показать анонс"
820
+
821
+ #: admin/tab-options.php:103
822
+ #, fuzzy
823
+ msgid "User Profile Page:"
824
+ msgstr "Пользователь обновлен"
825
+
826
+ #: admin/tab-options.php:106
827
+ msgid "For creating a forgot password link in the login form"
828
+ msgstr ""
829
+
830
+ #: admin/tab-options.php:113
831
+ #, fuzzy
832
+ msgid "Register Page:"
833
+ msgstr "URL страницы регистрации:"
834
+
835
+ #: admin/tab-options.php:116
836
+ msgid "For creating a register link in the login form"
837
+ msgstr ""
838
+
839
+ #: admin/tab-options.php:126
840
+ msgid "Select a stylesheet or specify a custom stylesheet below"
841
+ msgstr ""
842
+
843
+ #: admin/tab-options.php:131
844
+ #, fuzzy
845
+ msgid "Custom Stylesheet:"
846
+ msgstr "Пользовательский"
847
+
848
+ #: admin/tab-options.php:136
849
+ msgid "Update Settings"
850
+ msgstr "Обновить настройки"
851
+
852
+ #: admin/tab-options.php:246
853
+ msgid "WP-Members settings were updated"
854
+ msgstr "Настройки WP_Members были обновлены"
855
+
856
+ #: admin/tab-options.php:296
857
+ #, fuzzy
858
+ msgid "Select a page"
859
+ msgstr "Новая регистрация"
860
+
861
+ #: admin/tab-options.php:304
862
+ msgid "USE CUSTOM URL BELOW"
863
+ msgstr ""
864
+
865
+ #: admin/user-export.php:57 admin/user-export.php:172
866
+ msgid "Activated?"
867
+ msgstr "Активирован?"
868
+
869
+ #: admin/user-export.php:61 admin/user-export.php:175
870
+ msgid "Subscription"
871
+ msgstr "Подписка"
872
+
873
+ #: admin/user-export.php:61 admin/user-export.php:175
874
+ msgid "Expires"
875
+ msgstr "Истекает"
876
+
877
+ #: admin/user-export.php:64 admin/user-export.php:178
878
+ msgid "Registered"
879
+ msgstr "Зарегистрирован"
880
+
881
+ #: admin/user-export.php:65 admin/user-export.php:179
882
+ msgid "IP"
883
+ msgstr "IP"
884
+
885
+ #: admin/user-profile.php:46
886
+ msgid "WP-Members Additional Fields"
887
+ msgstr "WP-Members Дополнительные поля"
888
+
889
+ #: admin/user-profile.php:66 native-registration.php:36
890
+ #: native-registration.php:159 users.php:62
891
+ #, fuzzy
892
+ msgid "(required)"
893
+ msgstr "Potrbno?"
894
+
895
+ #: admin/user-profile.php:98
896
+ msgid "Activate this user?"
897
+ msgstr "Активировать этого пользователя?"
898
+
899
+ #: admin/user-profile.php:103
900
+ msgid "Reactivate this user?"
901
+ msgstr "Активировать пользователя?"
902
+
903
+ #: admin/user-profile.php:108
904
+ msgid "Deactivate this user?"
905
+ msgstr "Заблокировать пользователя?"
906
+
907
+ #: admin/user-profile.php:129
908
+ msgid "IP @ registration"
909
+ msgstr "IP при регистрации"
910
+
911
+ #: admin/users.php:45 admin/users.php:49
912
+ msgid "Export"
913
+ msgstr "Выгрузить"
914
+
915
+ #: admin/users.php:50 admin/users.php:91
916
+ #, fuzzy
917
+ msgid "Export All Users"
918
+ msgstr "Выгрузить"
919
+
920
+ #: forms.php:95
921
+ #, fuzzy
922
+ msgid "Existing Users Log In"
923
+ msgstr "Войти"
924
+
925
+ #: forms.php:161 wp-members-dialogs.php:192
926
+ msgid "Change Password"
927
+ msgstr "Сменить пароль"
928
+
929
+ #: forms.php:163
930
+ msgid "Update Password"
931
+ msgstr "Обновить пароль"
932
+
933
+ #: forms.php:227
934
+ msgid "Reset Forgotten Password"
935
+ msgstr "Сбросить забытый пароль"
936
+
937
+ #: forms.php:403
938
+ msgid "Forgot password?"
939
+ msgstr "Забыли пароль?"
940
+
941
+ #: forms.php:403
942
+ msgid "Click here to reset"
943
+ msgstr "Нажмите для сброса"
944
+
945
+ #: forms.php:418
946
+ msgid "New User?"
947
+ msgstr "Новый пользователь?"
948
+
949
+ #: forms.php:418
950
+ msgid "Click here to register"
951
+ msgstr "Нажмите здесь для регистрации"
952
+
953
+ #: forms.php:515
954
+ msgid "Required field"
955
+ msgstr "Обязательно для заполнения"
956
+
957
+ #: forms.php:521
958
+ #, fuzzy
959
+ msgid "Reset Form"
960
+ msgstr "Произошла ошибка в форма CAPTCHA."
961
+
962
+ #: forms.php:523
963
+ #, fuzzy
964
+ msgid "Update Profile"
965
+ msgstr "Пользователь обновлен"
966
+
967
+ #: forms.php:561
968
+ msgid "Choose a Username"
969
+ msgstr "Введите имя пользоателя"
970
+
971
+ #: forms.php:683 native-registration.php:65
972
+ #, php-format
973
+ msgid "Please indicate that you agree to the %s TOS %s"
974
+ msgstr "Подтвердите свое согласие с %s TOS %s"
975
+
976
+ #: forms.php:852
977
+ #, fuzzy
978
+ msgid "New User Registration"
979
+ msgstr "Новый пользователь?"
980
+
981
+ #: forms.php:1018
982
+ msgid "Input the code:"
983
+ msgstr ""
984
+
985
+ #: users.php:38
986
+ #, fuzzy
987
+ msgid "Additional Information"
988
+ msgstr "WP-Members Дополнительные поля"
989
+
990
+ #: wp-members-core.php:118 wp-members-core.php:245
991
+ msgid "There was an error with the CAPTCHA form."
992
+ msgstr "Произошла ошибка в форма CAPTCHA."
993
+
994
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
995
+ msgid "Edit Your Information"
996
+ msgstr "Редактирование ваших данных"
997
+
998
+ #: wp-members-core.php:544
999
+ msgid "<strong>ERROR</strong>: User has not been activated."
1000
+ msgstr "<strong>ОШИБКА</strong>: Пользователь не был активирован."
1001
+
1002
+ #: wp-members-core.php:903 wp-members-register.php:93
1003
+ #, php-format
1004
+ msgid "Sorry, %s is a required field."
1005
+ msgstr "%s обязательно для ввода."
1006
+
1007
+ #: wp-members-dialogs.php:42
1008
+ msgid "Login Failed!"
1009
+ msgstr "Ошибка входа!"
1010
+
1011
+ #: wp-members-dialogs.php:45
1012
+ msgid "You entered an invalid username or password."
1013
+ msgstr "Неверное имя пользователя или пароль."
1014
+
1015
+ #: wp-members-dialogs.php:47
1016
+ msgid "Click here to continue."
1017
+ msgstr "Нажмите для продолжения."
1018
+
1019
+ #: wp-members-dialogs.php:191
1020
+ msgid "Edit My Information"
1021
+ msgstr "Изменить информацию обо мне"
1022
+
1023
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1024
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1025
+ #: wp-members-sidebar.php:246
1026
+ #, php-format
1027
+ msgid "You are logged in as %s"
1028
+ msgstr "Вы вошли как %s"
1029
+
1030
+ #: wp-members-dialogs.php:208
1031
+ #, fuzzy
1032
+ msgid "Click to log out."
1033
+ msgstr "Войти"
1034
+
1035
+ #: wp-members-dialogs.php:209
1036
+ msgid "Begin using the site."
1037
+ msgstr "Начать пользоваться сайтом."
1038
+
1039
+ #: wp-members-dialogs.php:225
1040
+ #, fuzzy
1041
+ msgid "Click to log out"
1042
+ msgstr "Войти"
1043
+
1044
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1045
+ #, fuzzy
1046
+ msgid "click to log out"
1047
+ msgstr "Войти"
1048
+
1049
+ #: wp-members-dialogs.php:271
1050
+ msgid "Password fields cannot be empty"
1051
+ msgstr "Поля \"Ппроль\" не могут быть пустыми"
1052
+
1053
+ #: wp-members-register.php:51
1054
+ #, fuzzy
1055
+ msgid "There was an error processing the form."
1056
+ msgstr "Произошла ошибка в форма CAPTCHA."
1057
+
1058
+ #: wp-members-register.php:110
1059
+ msgid "Sorry, username is a required field"
1060
+ msgstr "Имя пользователя обязательно для ввода."
1061
+
1062
+ #: wp-members-register.php:111
1063
+ msgid "The username cannot include non-alphanumeric characters."
1064
+ msgstr "Имя пользователя не может содержать несимвольные знаки."
1065
+
1066
+ #: wp-members-register.php:112 wp-members-register.php:282
1067
+ msgid "You must enter a valid email address."
1068
+ msgstr "Введите правильный email"
1069
+
1070
+ #: wp-members-register.php:119
1071
+ #, fuzzy
1072
+ msgid "Passwords did not match."
1073
+ msgstr "Šifra se ne slaže"
1074
+
1075
+ #: wp-members-register.php:120 wp-members-register.php:286
1076
+ #, fuzzy
1077
+ msgid "Emails did not match."
1078
+ msgstr "Пароли не совпадают"
1079
+
1080
+ #: wp-members-register.php:127
1081
+ msgid "You must complete the CAPTCHA form."
1082
+ msgstr "Необходимо заполнить форму CAPTCHA."
1083
+
1084
+ #: wp-members-register.php:377
1085
+ msgid "We were unable to validate the public key."
1086
+ msgstr "Публичный ключ не прошел валидацию."
1087
+
1088
+ #: wp-members-register.php:381
1089
+ msgid "We were unable to validate the private key."
1090
+ msgstr "Закрытый ключ не прошел валидацию."
1091
+
1092
+ #: wp-members-register.php:385
1093
+ #, fuzzy
1094
+ msgid "The challenge parameter of the verify script was incorrect."
1095
+ msgstr "Izazovni parametar verifikovanog skripta nisu tačni."
1096
+
1097
+ #: wp-members-register.php:389
1098
+ msgid "The CAPTCHA solution was incorrect."
1099
+ msgstr "Модуль CAPTCHA некорректен."
1100
+
1101
+ #: wp-members-register.php:393
1102
+ msgid "The parameters to verify were incorrect"
1103
+ msgstr "Параметры для проверки некорректны"
1104
+
1105
+ #: wp-members-register.php:397
1106
+ msgid ""
1107
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1108
+ msgstr ""
1109
+ "reCAPTCHA API-ключи привязаны к доменному имени из соображений безопасности."
1110
+
1111
+ #: wp-members-register.php:401
1112
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1113
+ msgstr "Сервер reCAPTCHA недоступен. Пожалуйста, попробуйте еще раз."
1114
+
1115
+ #: wp-members-register.php:405
1116
+ msgid "You have entered an incorrect code value. Please try again."
1117
+ msgstr ""
1118
+
1119
+ #: wp-members-sidebar.php:117
1120
+ msgid "Login Failed!<br />You entered an invalid username or password."
1121
+ msgstr "Ошибка!<br/>Неверное имя пользователя или пароль"
1122
+
1123
+ #: wp-members-sidebar.php:118
1124
+ #, fuzzy
1125
+ msgid "You are not logged in."
1126
+ msgstr "Ulogovani ste kao %s"
1127
+
1128
+ #: wp-members-sidebar.php:169
1129
+ msgid "log in"
1130
+ msgstr "логин"
1131
+
1132
+ #: wp-members-sidebar.php:180
1133
+ msgid "Forgot?"
1134
+ msgstr "Забыли?"
1135
+
1136
+ #: wp-members-sidebar.php:247
1137
+ msgid "click here to log out"
1138
+ msgstr "выйти"
1139
+
1140
+ #: wp-members-sidebar.php:279
1141
+ msgid "Displays the WP-Members sidebar login."
1142
+ msgstr ""
1143
+
1144
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1145
+ msgid "Login Status"
1146
+ msgstr "Статус логина"
1147
+
1148
+ #: wp-members-sidebar.php:299
1149
+ msgid "Title:"
1150
+ msgstr "Заголовок:"
1151
+
1152
+ #: wp-members-tos.php:24
1153
+ msgid "Terms of Service"
1154
+ msgstr "Условия использования"
1155
+
1156
+ #: wp-members-tos.php:36
1157
+ #, php-format
1158
+ msgid "%sclose%s"
1159
+ msgstr "%sclose%s"
1160
+
1161
+ #: wp-members-tos.php:38
1162
+ #, php-format
1163
+ msgid "%sprint%s"
1164
+ msgstr "%sprint%s"
1165
+
1166
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1167
+ #: Strings wp-members-install.php:49
1168
+ msgid "First Name"
1169
+ msgstr "Имя"
1170
+
1171
+ #: wp-members-install.php:50
1172
+ msgid "Last Name"
1173
+ msgstr "Фамилия"
1174
+
1175
+ #: wp-members-install.php:51
1176
+ msgid "Address 1"
1177
+ msgstr "Адрес 1"
1178
+
1179
+ #: wp-members-install.php:52
1180
+ msgid "Address 2"
1181
+ msgstr "Адрес 2"
1182
+
1183
+ #: wp-members-install.php:53
1184
+ msgid "City"
1185
+ msgstr "Город"
1186
+
1187
+ #: wp-members-install.php:54
1188
+ msgid "State"
1189
+ msgstr "Область"
1190
+
1191
+ #: wp-members-install.php:55
1192
+ msgid "Zip"
1193
+ msgstr "Индекс"
1194
+
1195
+ #: wp-members-install.php:56
1196
+ msgid "Country"
1197
+ msgstr "Страна"
1198
+
1199
+ #: wp-members-install.php:57
1200
+ msgid "Day Phone"
1201
+ msgstr "Рабочий телефон"
1202
+
1203
+ #: wp-members-install.php:59
1204
+ msgid "Website"
1205
+ msgstr "Сайт"
1206
+
1207
+ #: wp-members-install.php:60
1208
+ msgid "AIM"
1209
+ msgstr "AIM"
1210
+
1211
+ #: wp-members-install.php:61
1212
+ msgid "Yahoo IM"
1213
+ msgstr "Yahoo IM"
1214
+
1215
+ #: wp-members-install.php:62
1216
+ msgid "Jabber/Google Talk"
1217
+ msgstr "Jabber/Google Talk"
1218
+
1219
+ #: wp-members-install.php:63
1220
+ msgid "Biographical Info"
1221
+ msgstr "О себе"
1222
+
1223
+ #: wp-members-install.php:64 wp-members-install.php:211
1224
+ msgid "TOS"
1225
+ msgstr "TOS"
1226
+
1227
+ #: Error message dialog strings wp-members-install.php:96
1228
+ #, fuzzy
1229
+ msgid ""
1230
+ "This content is restricted to site members. If you are an existing user, "
1231
+ "please log in. New users may register below."
1232
+ msgstr ""
1233
+ "Эта часть сайта только для зарегистрированных пользователей. Если вы "
1234
+ "зарегистрированы, пожалуйста, войдите. Новые пользователи могут "
1235
+ "зарегистрироваться ниже."
1236
+
1237
+ #: wp-members-install.php:97
1238
+ msgid "Sorry, that username is taken, please try another."
1239
+ msgstr "Извините, имя пользователя уже используется, введите другое."
1240
+
1241
+ #: wp-members-install.php:98
1242
+ msgid ""
1243
+ "Sorry, that email address already has an account.<br />Please try another."
1244
+ msgstr "Извините, этот email уже зарегистрирован.<br />Введите другой email."
1245
+
1246
+ #: wp-members-install.php:99
1247
+ #, fuzzy
1248
+ msgid ""
1249
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1250
+ "log in using the password that was emailed to you."
1251
+ msgstr ""
1252
+ "Поздравляем! Регистрация прошла успешно.<br /><br />Вы можете теперь войти, "
1253
+ "используя высланный на почту пароль."
1254
+
1255
+ #: wp-members-install.php:100
1256
+ msgid "Your information was updated!"
1257
+ msgstr "Информация обновлена!"
1258
+
1259
+ #: wp-members-install.php:101
1260
+ msgid "Passwords did not match.<br /><br />Please try again."
1261
+ msgstr "Неверный пароль.<br /><br />Попробуйте еще раз."
1262
+
1263
+ #: wp-members-install.php:102
1264
+ msgid ""
1265
+ "Password successfully changed!<br /><br />You will need to re-login with "
1266
+ "your new password."
1267
+ msgstr ""
1268
+ "Пароль успешно изменен!<br /><br />Необходимо перезайти с новым паролем."
1269
+
1270
+ #: wp-members-install.php:103
1271
+ msgid "Either the username or email address do not exist in our records."
1272
+ msgstr "Имя пользователя или email не указаны в наших списках."
1273
+
1274
+ #: wp-members-install.php:104
1275
+ msgid ""
1276
+ "Password successfully reset!<br /><br />An email containing a new password "
1277
+ "has been sent to the email address on file for your account. You may change "
1278
+ "this random password then re-login with your new password."
1279
+ msgstr ""
1280
+ "Пароль успешно сброшен!<br /><br />Письмо с новым паролем отправлено на "
1281
+ "почту, указанную при регистрации. Вы можете изменить высланный пароль."
1282
+
1283
+ #~ msgid "Yes"
1284
+ #~ msgstr "Да"
1285
+
1286
+ #~ msgid "WP-Members"
1287
+ #~ msgstr "WP-Members"
1288
+
1289
+ #~ msgid "Custom"
1290
+ #~ msgstr "Пользовательский"
1291
+
1292
+ #, fuzzy
1293
+ #~ msgid "edit"
1294
+ #~ msgstr "Редактирование ваших данных"
1295
+
1296
+ #, fuzzy
1297
+ #~ msgid "Edit"
1298
+ #~ msgstr "Редактирование ваших данных"
1299
+
1300
+ #~ msgid "Use reCAPTCHA"
1301
+ #~ msgstr "Использовать reCAPTCHA"
1302
+
1303
+ #, fuzzy
1304
+ #~ msgid "Pages"
1305
+ #~ msgstr "Блокировать страницы по умолчанию"
1306
+
1307
+ #~ msgid "No"
1308
+ #~ msgstr "Нет"
1309
+
1310
+ #~ msgid "Activate"
1311
+ #~ msgstr "Активировать"
1312
+
1313
+ #~ msgid "Username"
1314
+ #~ msgstr "Имя пользователя"
1315
+
1316
+ #~ msgid "Password"
1317
+ #~ msgstr "Пароль"
1318
+
1319
+ #~ msgid "Log In"
1320
+ #~ msgstr "Войти"
1321
+
1322
+ #~ msgid "New Password"
1323
+ #~ msgstr "Новый пароль"
1324
+
1325
+ #~ msgid "Repeat Password"
1326
+ #~ msgstr "Повторите пароль"
1327
+
1328
+ #~ msgid "Email"
1329
+ #~ msgstr "Email"
1330
+
1331
+ #~ msgid "Reset Password"
1332
+ #~ msgstr "Сбросить пароль"
1333
+
1334
+ #~ msgid "Remember me"
1335
+ #~ msgstr "Запомнить меня"
1336
+
1337
+ #~ msgid "Register"
1338
+ #~ msgstr "Регистрация"
1339
+
1340
+ #~ msgid "Turn off registration"
1341
+ #~ msgstr "Отключить регистрацию"
1342
+
1343
+ #~ msgid "Turns off the registration process, only allows login"
1344
+ #~ msgstr ""
1345
+ #~ "Отключает форму регистрации, разрешен вход только уже зарегистрированным "
1346
+ #~ "пользователям"
1347
+
1348
+ #~ msgid "Legacy forms"
1349
+ #~ msgstr "Старые формы"
1350
+
1351
+ #~ msgid ""
1352
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1353
+ #~ "forms)"
1354
+ #~ msgstr ""
1355
+ #~ "Использование pre-2.5.1 табличных форм (не отмечайте, чтобы использовать "
1356
+ #~ "CSS формы без применения таблиц)"
1357
+
1358
+ #~ msgid "Members Area URL:"
1359
+ #~ msgstr "URL области для зарегистрированных пользователей:"
1360
+
1361
+ #~ msgid "Add"
1362
+ #~ msgstr "Добавить"
1363
+
1364
+ #~ msgid "WP-Members expiration periods were updated"
1365
+ #~ msgstr "Периоды времени доступа WP-Members был обновлены"
1366
+
1367
+ #~ msgid ""
1368
+ #~ "Settings were saved, but you have required fields that are not set to "
1369
+ #~ "display!"
1370
+ #~ msgstr ""
1371
+ #~ "Настройки сохранены, но есть обязательные поля, не настроенные на "
1372
+ #~ "отображение на форме!"
1373
+
1374
+ #~ msgid ""
1375
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1376
+ #~ "fields are validated. However, you should still check that your "
1377
+ #~ "displayed and required fields match up. Mismatched fields are "
1378
+ #~ "highlighted below."
1379
+ #~ msgstr ""
1380
+ #~ "Примечание: Это не приведет к ошибке для конечных пользователей, так как "
1381
+ #~ "проверяются только отображенные поля. Однако вы все же должны проверить, "
1382
+ #~ "что ваши обязательные и отображаемые поля совпадают."
1383
+
1384
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1385
+ #~ msgstr ""
1386
+ #~ "Если вы считаете этот плагин полезным, сделайте, пожалуйста, пожертвование"
1387
+
1388
+ #~ msgid "Subscriptions"
1389
+ #~ msgstr "Подписки"
1390
+
1391
+ #~ msgid "PayPal Settings"
1392
+ #~ msgstr "Настройки PayPal"
1393
+
1394
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1395
+ #~ msgstr ""
1396
+ #~ "Если вы считаете этот плагин полезным, сделайте, пожалуйста, %s "
1397
+ #~ "пожертвование %s"
1398
+
1399
+ #~ msgid "%d users were activated."
1400
+ #~ msgstr "%d пользователь(я/ей) был активирован."
1401
+
1402
+ #~ msgid ""
1403
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1404
+ #~ msgstr ""
1405
+ #~ "Список пользователей готов для выгрузки, %s нажмите сюда %s для выгрузки "
1406
+ #~ "в CSV."
1407
+
1408
+ #~ msgid "WP-Members Users"
1409
+ #~ msgstr "Пользователи WP-Members"
1410
+
1411
+ #~ msgid "Add New"
1412
+ #~ msgstr "Добавить нового"
1413
+
1414
+ #~ msgid "No users matched your criteria"
1415
+ #~ msgstr "Нет пользователей, удовлетворяющих заданному критерию"
1416
+
1417
+ #~ msgid "Bulk Actions"
1418
+ #~ msgstr "Массовые действия"
1419
+
1420
+ #~ msgid "Apply"
1421
+ #~ msgstr "Применить"
1422
+
1423
+ #~ msgid "Indicates a required field"
1424
+ #~ msgstr "Признак обязательного поля"
1425
+
1426
+ #~ msgid "Login"
1427
+ #~ msgstr "Войти"
1428
+
1429
+ #~ msgid "Clear Form"
1430
+ #~ msgstr "Очистить форму"
1431
+
1432
+ #~ msgid "Submit"
1433
+ #~ msgstr "Подтвердить"
1434
+
1435
+ #~ msgid "Cheatin&#8217; uh?"
1436
+ #~ msgstr "Мошенничаете?"
1437
+
1438
+ #~ msgid "there was an error and no users were exported"
1439
+ #~ msgstr "Произошла ошибка при выгрузке пользователей"
1440
+
1441
+ #~ msgid "login"
1442
+ #~ msgstr "логин"
lang/wp-members-sk_SK.mo ADDED
Binary file
lang/wp-members-sk_SK.po ADDED
@@ -0,0 +1,1454 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file is distributed under the same license as the WP-Members package.
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: WP-Members 2.9.3\n"
5
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
6
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
7
+ "PO-Revision-Date: 2014-07-22 12:05-0600\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: Web Geeks\n"
10
+ "Language: sk\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.6.4\n"
15
+
16
+ #: admin/admin.php:60 admin/admin.php:129
17
+ msgid "Settings"
18
+ msgstr "Nastavenia"
19
+
20
+ #: admin/admin.php:187
21
+ msgid "Options"
22
+ msgstr "Možnosti"
23
+
24
+ #: admin/admin.php:188
25
+ msgid "Fields"
26
+ msgstr "Polia"
27
+
28
+ #: admin/admin.php:189
29
+ msgid "Dialogs"
30
+ msgstr "Dialógové okná"
31
+
32
+ #: admin/admin.php:190
33
+ msgid "Emails"
34
+ msgstr "E-mailov"
35
+
36
+ #: admin/dialogs.php:109
37
+ msgid ""
38
+ "Your WP settings allow anyone to register - this is not the recommended "
39
+ "setting."
40
+ msgstr ""
41
+ "Vaša WP nastavenie umožňuje, aby niekto zaregistrovať - to nie je odporúčané "
42
+ "nastavenie."
43
+
44
+ #: admin/dialogs.php:110
45
+ #, php-format
46
+ msgid ""
47
+ "You can %s change this here %s making sure the box next to \"Anyone can "
48
+ "register\" is unchecked."
49
+ msgstr ""
50
+ "Môžete% s to zmeniť tu% s to, aby políčko \"Každý sa môže zaregistrovať\" je "
51
+ "aktívny."
52
+
53
+ #: admin/dialogs.php:111
54
+ msgid ""
55
+ "This setting allows a link on the /wp-login.php page to register using the "
56
+ "WP native registration process thus circumventing any registration you are "
57
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
58
+ "but most users should uncheck this option. If you do not change this "
59
+ "setting, you can choose to ignore these warning messages under WP-Members "
60
+ "Settings."
61
+ msgstr ""
62
+ "Toto nastavenie umožňuje odkaz na / wp-login.php stránke zaregistrovať "
63
+ "pomocou WP natívne proces registrácie a tým obísť žiadny záznam, ktorý "
64
+ "používate s WP-poslancov. V niektorých prípadoch to môže vyhovovať "
65
+ "používateľom wants/potreby, ale väčšina užívateľov by odškrtnite túto voľbu. "
66
+ "Ak nemáte toto nastavenie zmeniť, môžete zvoliť ignorovanie týchto varovných "
67
+ "správ v rámci WP-poslancov nastavenia."
68
+
69
+ #: admin/dialogs.php:117
70
+ msgid ""
71
+ "Your WP settings allow anyone to comment - this is not the recommended "
72
+ "setting."
73
+ msgstr ""
74
+ "Vaša WP nastavenie umožňuje, aby niekto komentár - to nie je odporúčané "
75
+ "nastavenie."
76
+
77
+ #: admin/dialogs.php:118
78
+ #, php-format
79
+ msgid ""
80
+ "You can %s change this here %s by checking the box next to \"Users must be "
81
+ "registered and logged in to comment.\""
82
+ msgstr ""
83
+ "Môžete %s to zmeniť tu %s zaškrtnutím políčka vedľa \"Používatelia musia byť "
84
+ "registrovaný a prihlásený komentovať.\""
85
+
86
+ #: admin/dialogs.php:119
87
+ msgid ""
88
+ "This setting allows any users to comment, whether or not they are "
89
+ "registered. Depending on how you are using WP-Members will determine whether "
90
+ "you should change this setting or not. If you do not change this setting, "
91
+ "you can choose to ignore these warning messages under WP-Members Settings."
92
+ msgstr ""
93
+ "Toto nastavenie umožňuje používateľom akékoľvek pripomienky, či už sú alebo "
94
+ "nie sú zaregistrovaní. V závislosti od spôsobu používania WP-členov určí, či "
95
+ "by ste mali zmeniť toto nastavenie, alebo nie. Ak nemáte toto nastavenie "
96
+ "zmeniť, môžete zvoliť ignorovanie týchto varovných správ v rámci WP-"
97
+ "poslancov nastavenia."
98
+
99
+ #: admin/dialogs.php:125
100
+ msgid ""
101
+ "Your WP settings allow full text rss feeds - this is not the recommended "
102
+ "setting."
103
+ msgstr ""
104
+ "Vaša WP nastavenie umožňuje fulltextové RSS - toto nie je odporúčané "
105
+ "nastavenie."
106
+
107
+ #: admin/dialogs.php:126
108
+ #, php-format
109
+ msgid ""
110
+ "You can %s change this here %s by changing \"For each article in a feed, show"
111
+ "\" to \"Summary.\""
112
+ msgstr ""
113
+ "Môžete %s to zmeniť tu %s tým, že mení \"U každého článku v krmivách, "
114
+ "ukazujú,\" na \"Celková.\""
115
+
116
+ #: admin/dialogs.php:127
117
+ msgid ""
118
+ "Leaving this set to full text allows anyone to read your protected content "
119
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
120
+ "only show summary text."
121
+ msgstr ""
122
+ "Ponechanie tejto sady k úplnému zneniu umožňuje každému si prečítať "
123
+ "chráneného obsahu v RSS čítačke. Zmena na súhrn bráni to ako zdroja sa "
124
+ "zobrazí len súhrnné text."
125
+
126
+ #: admin/dialogs.php:133
127
+ msgid "You have set WP-Members to hold registrations for approval"
128
+ msgstr "Nastavili ste WP-členovia držať zápisov na schválenie"
129
+
130
+ #: admin/dialogs.php:134
131
+ msgid ""
132
+ "but you have not changed the default message for \"Registration Completed\" "
133
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
134
+ "message to let users know they are pending approval."
135
+ msgstr ""
136
+ "ale vy ste nezmenili predvolené správu pre \"Registrácia dokončená\" v \"WP-"
137
+ "Členov dialógy a chybové hlásenia.\" by ste mali zmeniť túto správu dať "
138
+ "používateľom vedieť, že sa čaká na schválenie."
139
+
140
+ #: admin/dialogs.php:140
141
+ msgid "You have set WP-Members to turn off the registration process"
142
+ msgstr "Nastavili ste WP-členovia vypnúť registračný proces"
143
+
144
+ #: admin/dialogs.php:141
145
+ msgid ""
146
+ "but you also set to moderate and/or email admin new registrations. You will "
147
+ "need to set up a registration page for users to register."
148
+ msgstr ""
149
+ "ale tiež nastaviť až stredne závažné a/alebo e-mailovej admin nových "
150
+ "registrácií. Budete musieť nastaviť registračnej stránky pre užívateľa sa "
151
+ "zaregistrovať."
152
+
153
+ #: admin/dialogs.php:147
154
+ msgid "You have turned on reCAPTCHA"
155
+ msgstr "Zapli ste reCAPTCHA"
156
+
157
+ #: admin/dialogs.php:148
158
+ msgid ""
159
+ "but you have not entered API keys. You will need both a public and private "
160
+ "key. The CAPTCHA will not display unless a valid API key is included."
161
+ msgstr ""
162
+ "ale vy ste nezadali API kľúča. Budete potrebovať obaja verejný a súkromný "
163
+ "kľúč. CAPTCHA sa nezobrazí, ak platné API kľúč je súčasťou dodávky."
164
+
165
+ #: admin/dialogs.php:171
166
+ msgid "Version:"
167
+ msgstr "Verzia:"
168
+
169
+ #: admin/dialogs.php:172
170
+ #, fuzzy
171
+ msgid "Quick Start Guide"
172
+ msgstr ""
173
+ "WP obmedzenie prístupu a registračné. Pre viac informácií a na stiahnutie v "
174
+ "užívateľskej príručke, nájdete <a href=\"http://butlerblog.com/wp-members\"> "
175
+ "http://butlerblog.com/wp-members </a>. <a href=\"http://butlerblog.com/wp-"
176
+ "members/wp-members-quick-start-guide/\"> Quick Start Guide </a> je k "
177
+ "dispozícii tiež. WP-členov (TM) je obchodná značka butlerblog.com."
178
+
179
+ #: admin/dialogs.php:173
180
+ #, fuzzy
181
+ msgid "Online User Guide"
182
+ msgstr "Používateľom aktualizácie"
183
+
184
+ #: admin/dialogs.php:174
185
+ msgid "FAQs"
186
+ msgstr ""
187
+
188
+ #: admin/dialogs.php:181
189
+ #, fuzzy
190
+ msgid "Thank you for using WP-Members"
191
+ msgstr "Ďakujeme, že používate WP členov! Používate verziu %s"
192
+
193
+ #: admin/dialogs.php:182
194
+ msgid "A plugin developed by"
195
+ msgstr ""
196
+
197
+ #: admin/dialogs.php:183
198
+ msgid "Follow"
199
+ msgstr "Postupujte"
200
+
201
+ #: admin/dialogs.php:200 admin/dialogs.php:204
202
+ msgid "Latest from RocketGeek"
203
+ msgstr ""
204
+
205
+ #: admin/dialogs.php:221 admin/dialogs.php:234
206
+ msgid "Latest from ButlerBlog"
207
+ msgstr ""
208
+
209
+ #: admin/post.php:36 admin/post.php:38
210
+ #, fuzzy
211
+ msgid "Block"
212
+ msgstr "Blok miest v predvolenom nastavení"
213
+
214
+ #: admin/post.php:37 admin/post.php:39
215
+ msgid "Unblock"
216
+ msgstr ""
217
+
218
+ #: admin/post.php:120
219
+ #, fuzzy, php-format
220
+ msgid "%s posts %sed."
221
+ msgstr "Blok miest v predvolenom nastavení"
222
+
223
+ #: admin/post.php:138
224
+ #, fuzzy
225
+ msgid "Post Restriction"
226
+ msgstr "Nový zápis"
227
+
228
+ #: admin/post.php:145
229
+ #, fuzzy
230
+ msgid "Page Restriction"
231
+ msgstr "Nový zápis"
232
+
233
+ #: admin/post.php:263 admin/post.php:295
234
+ #, fuzzy
235
+ msgid "Unblocked?"
236
+ msgstr ""
237
+ "Poznámka: Príspevky môžu ešte byť individuálne blokovať alebo odblokovať na "
238
+ "článok úrovni"
239
+
240
+ #: admin/post.php:263 admin/post.php:295
241
+ #, fuzzy
242
+ msgid "Blocked?"
243
+ msgstr ""
244
+ "Poznámka: Príspevky môžu ešte byť individuálne blokovať alebo odblokovať na "
245
+ "článok úrovni"
246
+
247
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
248
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
249
+ msgid "Need help?"
250
+ msgstr ""
251
+
252
+ #: admin/tab-captcha.php:46
253
+ msgid "Manage reCAPTCHA Options"
254
+ msgstr "Spravovať reCAPTCHA možnosti"
255
+
256
+ #: admin/tab-captcha.php:60
257
+ msgid ""
258
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
259
+ "while blocking spam on your blog."
260
+ msgstr ""
261
+ "ReCaptcha je zadarmo, prístupný CAPTCHA služba, ktorá pomáha pri "
262
+ "digitalizácii kníh blokovanie nevyžiadanej pošty na svojom blogu."
263
+
264
+ #: admin/tab-captcha.php:61
265
+ #, php-format
266
+ msgid ""
267
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
268
+ "that they are a human. This verifies that they are not a spambot while also "
269
+ "correcting the automatic scans of old books. So you get less spam, and the "
270
+ "world gets accurately digitized books. Everybody wins! For details, visit "
271
+ "the %s reCAPTCHA website%s"
272
+ msgstr ""
273
+ "ReCaptcha žiada commenters znovu zadávať dve slová naskenované z knihy "
274
+ "preukázať, že sú ľudské. To potvrdzuje, že nie sú spambotmi zároveň opravuje "
275
+ "automatické skenovanie starých kníh. Takže ste si menej spamu, a svet sa "
276
+ "dostane presne digitalizované knihy. Všetci víťazí! Podrobnosti nájdete %s "
277
+ "ReCaptcha stránky%s"
278
+
279
+ #: admin/tab-captcha.php:66
280
+ msgid "reCAPTCHA Keys"
281
+ msgstr "reCAPTCHA klávesy"
282
+
283
+ #: admin/tab-captcha.php:68
284
+ #, php-format
285
+ msgid ""
286
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
287
+ "key. You can sign up for a %s free reCAPTCHA key%s"
288
+ msgstr ""
289
+ "ReCaptcha vyžaduje API kľúč, skladajúci sa z \"verejnosť\" a \"súkromný\" "
290
+ "kľúč. Môžete sa zaregistrovať pre %s bez kľúča s ReCaptcha%s"
291
+
292
+ #: admin/tab-captcha.php:69
293
+ msgid "Public Key"
294
+ msgstr "Verejný kľúč"
295
+
296
+ #: admin/tab-captcha.php:70
297
+ msgid "Private Key"
298
+ msgstr "Súkromný kľúč"
299
+
300
+ #: admin/tab-captcha.php:74
301
+ msgid "Choose Theme"
302
+ msgstr "Vybrať tému"
303
+
304
+ #: admin/tab-captcha.php:77
305
+ msgid "Red"
306
+ msgstr "Red"
307
+
308
+ #: admin/tab-captcha.php:78
309
+ msgid "White"
310
+ msgstr "Biela"
311
+
312
+ #: admin/tab-captcha.php:79
313
+ msgid "Black Glass"
314
+ msgstr "Čierneho skla"
315
+
316
+ #: admin/tab-captcha.php:80
317
+ msgid "Clean"
318
+ msgstr "Vyčistite"
319
+
320
+ #: admin/tab-captcha.php:112
321
+ msgid "Characters for image"
322
+ msgstr ""
323
+
324
+ #: admin/tab-captcha.php:116
325
+ msgid "Number of characters"
326
+ msgstr ""
327
+
328
+ #: admin/tab-captcha.php:120
329
+ msgid "Image dimensions"
330
+ msgstr ""
331
+
332
+ #: admin/tab-captcha.php:124
333
+ msgid "Font color of characters"
334
+ msgstr ""
335
+
336
+ #: admin/tab-captcha.php:128
337
+ msgid "Background color of image"
338
+ msgstr ""
339
+
340
+ #: admin/tab-captcha.php:132
341
+ msgid "Font size"
342
+ msgstr ""
343
+
344
+ #: admin/tab-captcha.php:136
345
+ msgid "Width between characters"
346
+ msgstr ""
347
+
348
+ #: admin/tab-captcha.php:140
349
+ #, fuzzy
350
+ msgid "Image type"
351
+ msgstr "Typ poľa"
352
+
353
+ #: admin/tab-captcha.php:154
354
+ msgid ""
355
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
356
+ "installed and activated."
357
+ msgstr ""
358
+
359
+ #: admin/tab-captcha.php:166
360
+ #, fuzzy
361
+ msgid "Update CAPTCHA Settings"
362
+ msgstr "Aktualizovať nastavenia"
363
+
364
+ #: admin/tab-captcha.php:230
365
+ #, fuzzy
366
+ msgid "CAPTCHA was updated for WP-Members"
367
+ msgstr "reCAPTCHA bol aktualizovaný poslancov WP"
368
+
369
+ #: admin/tab-dialogs.php:29
370
+ msgid "Restricted post (or page), displays above the login/registration form"
371
+ msgstr ""
372
+ "Vyhradené miesto (alebo stránky), zobrazí nad prihlasovacie/registračný "
373
+ "formulár"
374
+
375
+ #: admin/tab-dialogs.php:30
376
+ msgid "Username is taken"
377
+ msgstr "Brať meno"
378
+
379
+ #: admin/tab-dialogs.php:31
380
+ msgid "Email is registered"
381
+ msgstr "E-mail je registrovaný"
382
+
383
+ #: admin/tab-dialogs.php:32
384
+ msgid "Registration completed"
385
+ msgstr "Registrácia dokončená"
386
+
387
+ #: admin/tab-dialogs.php:33
388
+ msgid "User update"
389
+ msgstr "Používateľom aktualizácie"
390
+
391
+ #: admin/tab-dialogs.php:34
392
+ msgid "Passwords did not match"
393
+ msgstr "Passwords did not match"
394
+
395
+ #: admin/tab-dialogs.php:35
396
+ msgid "Password changes"
397
+ msgstr "Zmeny hesla"
398
+
399
+ #: admin/tab-dialogs.php:36
400
+ msgid "Username or email do not exist when trying to reset forgotten password"
401
+ msgstr ""
402
+ "Uživateľské meno alebo e-mail neexistujú pri pokuse o obnovenie zabudnutého "
403
+ "hesla"
404
+
405
+ #: admin/tab-dialogs.php:37
406
+ msgid "Password reset"
407
+ msgstr "Vynulovanie hesla"
408
+
409
+ #: admin/tab-dialogs.php:54
410
+ msgid "Dialogs and Error Messages"
411
+ msgstr "Dialógové okná a chybových hlásení"
412
+
413
+ #: admin/tab-dialogs.php:56
414
+ #, php-format
415
+ msgid ""
416
+ "You can customize the text for dialogs and error messages. Simple HTML is "
417
+ "allowed %s etc."
418
+ msgstr ""
419
+ "Môžete upraviť text dialógov a chybové správy. Jednoduché HTML je povolené "
420
+ "%s atď"
421
+
422
+ #: admin/tab-dialogs.php:69
423
+ msgid "Terms of Service (TOS)"
424
+ msgstr "Zmluvné podmienky služby (TOS)"
425
+
426
+ #: admin/tab-dialogs.php:76
427
+ msgid "Update Dialogs"
428
+ msgstr "Aktualizácia Dialogs"
429
+
430
+ #: admin/tab-dialogs.php:115
431
+ msgid "WP-Members dialogs were updated"
432
+ msgstr "WP-členovia dialógy boli aktualizované"
433
+
434
+ #: admin/tab-emails.php:30
435
+ msgid "New Registration"
436
+ msgstr "Nový zápis"
437
+
438
+ #: admin/tab-emails.php:34
439
+ msgid "Registration is Moderated"
440
+ msgstr "Registrácia je moderovaná"
441
+
442
+ #: admin/tab-emails.php:35
443
+ msgid "Registration is Moderated, User is Approved"
444
+ msgstr "Registrácia je moderovaná, schválené používateľom"
445
+
446
+ #: admin/tab-emails.php:40
447
+ msgid "Password Reset"
448
+ msgstr "Vynulovanie hesla"
449
+
450
+ #: admin/tab-emails.php:45
451
+ msgid "Admin Notification"
452
+ msgstr "Admin oznámenia"
453
+
454
+ #: admin/tab-emails.php:50
455
+ msgid "Email Signature"
456
+ msgstr "Podpis e-mailu"
457
+
458
+ #: admin/tab-emails.php:57
459
+ msgid "Email Messages"
460
+ msgstr "E-mailové správy"
461
+
462
+ #: admin/tab-emails.php:60
463
+ msgid "You can customize the content of the emails sent by the plugin."
464
+ msgstr "Môžete prispôsobiť obsah e-mailov odoslané plugin."
465
+
466
+ #: admin/tab-emails.php:62
467
+ msgid "A list of shortcodes is available here."
468
+ msgstr "Tu je k dispozícii zoznam shortcodes."
469
+
470
+ #: admin/tab-emails.php:69
471
+ msgid "Set a custom email address"
472
+ msgstr "Nastaviť vlastnú e-mailovú adresu"
473
+
474
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
475
+ msgid "(optional)"
476
+ msgstr "(voliteľné)"
477
+
478
+ #: admin/tab-emails.php:73
479
+ msgid "Set a custom email name"
480
+ msgstr "Nastaviť názov vlastného e-mailu"
481
+
482
+ #: admin/tab-emails.php:84
483
+ msgid "Subject"
484
+ msgstr "Predmet"
485
+
486
+ #: admin/tab-emails.php:88
487
+ msgid "Body"
488
+ msgstr "Telo"
489
+
490
+ #: admin/tab-emails.php:105
491
+ msgid "Update Emails"
492
+ msgstr "Aktualizácia e-mailov"
493
+
494
+ #: admin/tab-emails.php:161
495
+ msgid "WP-Members emails were updated"
496
+ msgstr "WP-členovia e-maily boli aktualizované"
497
+
498
+ #: admin/tab-fields.php:166
499
+ msgid "WP-Members fields were updated"
500
+ msgstr "WP-členovia polia boli aktualizované"
501
+
502
+ #: admin/tab-fields.php:176
503
+ msgid "Field Label is required for adding a new field. Nothing was updated."
504
+ msgstr "Označenie poľa je potrebné pridať nové pole. Nič bol aktualizovaný."
505
+
506
+ #: admin/tab-fields.php:177
507
+ msgid "Option Name is required for adding a new field. Nothing was updated."
508
+ msgstr "Názov voľby sa vyžaduje pre pridáte nové pole. Nič bol aktualizovaný."
509
+
510
+ #: admin/tab-fields.php:184
511
+ msgid "A field with that option name already exists"
512
+ msgstr ""
513
+
514
+ #: admin/tab-fields.php:201
515
+ #, fuzzy
516
+ msgid "Checked value is required for checkboxes. Nothing was updated."
517
+ msgstr "Označenie poľa je potrebné pridať nové pole. Nič bol aktualizovaný."
518
+
519
+ #: admin/tab-fields.php:223
520
+ #, fuzzy
521
+ msgid "field was added"
522
+ msgstr "Označenie poľa"
523
+
524
+ #: admin/tab-fields.php:241
525
+ #, fuzzy
526
+ msgid "field was updated"
527
+ msgstr "WP-členovia polia boli aktualizované"
528
+
529
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
530
+ #, fuzzy
531
+ msgid "Edit Field"
532
+ msgstr "Upraviť vaše informácie"
533
+
534
+ #: admin/tab-fields.php:289
535
+ #, fuzzy
536
+ msgid "Add a Field"
537
+ msgstr "Pridať a odstrániť"
538
+
539
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
540
+ msgid "Field Label"
541
+ msgstr "Označenie poľa"
542
+
543
+ #: admin/tab-fields.php:297
544
+ msgid "The name of the field as it will be displayed to the user."
545
+ msgstr ""
546
+
547
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
548
+ msgid "Option Name"
549
+ msgstr "Názov voľby"
550
+
551
+ #: admin/tab-fields.php:306
552
+ msgid ""
553
+ "The database meta value for the field. It must be unique and contain no "
554
+ "spaces (underscores are ok)."
555
+ msgstr ""
556
+
557
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
558
+ msgid "Field Type"
559
+ msgstr "Typ poľa"
560
+
561
+ #: admin/tab-fields.php:316
562
+ msgid "text"
563
+ msgstr "textu"
564
+
565
+ #: admin/tab-fields.php:317
566
+ msgid "textarea"
567
+ msgstr "Textarea"
568
+
569
+ #: admin/tab-fields.php:318
570
+ msgid "checkbox"
571
+ msgstr "Checkbox"
572
+
573
+ #: admin/tab-fields.php:319
574
+ msgid "dropdown"
575
+ msgstr "Rozbaľovací zoznam"
576
+
577
+ #: admin/tab-fields.php:320
578
+ msgid "password"
579
+ msgstr "heslo"
580
+
581
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
582
+ msgid "Display?"
583
+ msgstr "Zobraziť?"
584
+
585
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
586
+ msgid "Required?"
587
+ msgstr "Vyžadováno?"
588
+
589
+ #: admin/tab-fields.php:334
590
+ #, fuzzy
591
+ msgid "Additional information for checkbox fields"
592
+ msgstr "WP-členovia ďalšie polia"
593
+
594
+ #: admin/tab-fields.php:337
595
+ #, fuzzy
596
+ msgid "Checked by default?"
597
+ msgstr "Skontrolovať?"
598
+
599
+ #: admin/tab-fields.php:341
600
+ #, fuzzy
601
+ msgid "Stored value if checked:"
602
+ msgstr "Skontrolovať?"
603
+
604
+ #: admin/tab-fields.php:347
605
+ #, fuzzy
606
+ msgid "Additional information for dropdown fields"
607
+ msgstr "WP-členovia ďalšie polia"
608
+
609
+ #: admin/tab-fields.php:350
610
+ msgid "For dropdown, array of values:"
611
+ msgstr "Pre rozbaľovacie pole hodnôt:"
612
+
613
+ #: admin/tab-fields.php:375
614
+ msgid "Options should be Option Name|option_value,"
615
+ msgstr "Možnosti by mala byť možnosť Name|option_value"
616
+
617
+ #: admin/tab-fields.php:379
618
+ msgid "Visit plugin site for more information"
619
+ msgstr "Môžete tiež navštíviť lokalitu plugin pre ďalšie informácie"
620
+
621
+ #: admin/tab-fields.php:385
622
+ #, fuzzy
623
+ msgid "Add Field"
624
+ msgstr "Pridať a odstrániť"
625
+
626
+ #: admin/tab-fields.php:407
627
+ msgid "Manage Fields"
628
+ msgstr "Spravovať polia"
629
+
630
+ #: admin/tab-fields.php:409
631
+ msgid ""
632
+ "Determine which fields will display and which are required. This includes "
633
+ "all fields, both native WP fields and WP-Members custom fields."
634
+ msgstr ""
635
+ "Určiť, ktoré polia budú zobrazovať a ktoré sú povinné. To zahŕňa všetky "
636
+ "odbory, a to ako pôvodné WP oblasti a WP-Members vlastné pole."
637
+
638
+ #: admin/tab-fields.php:410
639
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
640
+ msgstr "(Poznámka: Email je vždy povinné. a nemôžu byť zmenené.)"
641
+
642
+ #: admin/tab-fields.php:415
643
+ msgid "Add/Delete"
644
+ msgstr "Pridať a odstrániť"
645
+
646
+ #: admin/tab-fields.php:421
647
+ msgid "Checked?"
648
+ msgstr "Skontrolovať?"
649
+
650
+ #: admin/tab-fields.php:423
651
+ #, fuzzy
652
+ msgid "Users Screen"
653
+ msgstr "Vývoz"
654
+
655
+ #: admin/tab-fields.php:435
656
+ msgid "Delete"
657
+ msgstr "Odstrániť"
658
+
659
+ #: admin/tab-fields.php:447
660
+ msgid "(Email cannot be removed)"
661
+ msgstr "(E-mailu sa nedá odstrániť)"
662
+
663
+ #: admin/tab-fields.php:467
664
+ #, fuzzy
665
+ msgid "Registration Date"
666
+ msgstr "Registrácia dokončená"
667
+
668
+ #: admin/tab-fields.php:470
669
+ #, fuzzy
670
+ msgid "native"
671
+ msgstr ""
672
+ "Určiť, ktoré polia budú zobrazovať a ktoré sú povinné. To zahŕňa všetky "
673
+ "odbory, a to ako pôvodné WP oblasti a WP-Members vlastné pole."
674
+
675
+ #: admin/tab-fields.php:480
676
+ #, fuzzy
677
+ msgid "Active"
678
+ msgstr "Aktivovať"
679
+
680
+ #: admin/tab-fields.php:492
681
+ msgid "Registration IP"
682
+ msgstr "IP @ registrácie"
683
+
684
+ #: admin/tab-fields.php:527
685
+ msgid "Update Fields"
686
+ msgstr "Aktualizácia polí"
687
+
688
+ #: admin/tab-options.php:48
689
+ msgid "Manage Options"
690
+ msgstr "Spravovať možnosti"
691
+
692
+ #: admin/tab-options.php:54
693
+ msgid "Block Posts by default"
694
+ msgstr "Blok miest v predvolenom nastavení"
695
+
696
+ #: admin/tab-options.php:54
697
+ msgid ""
698
+ "Note: Posts can still be individually blocked or unblocked at the article "
699
+ "level"
700
+ msgstr ""
701
+ "Poznámka: Príspevky môžu ešte byť individuálne blokovať alebo odblokovať na "
702
+ "článok úrovni"
703
+
704
+ #: admin/tab-options.php:55
705
+ msgid "Block Pages by default"
706
+ msgstr "Blokovať stránky v predvolenom nastavení"
707
+
708
+ #: admin/tab-options.php:55
709
+ msgid ""
710
+ "Note: Pages can still be individually blocked or unblocked at the article "
711
+ "level"
712
+ msgstr ""
713
+ "Poznámka: Stránky môžu byť ešte samostatne zablokovať alebo odblokovať na "
714
+ "článok úrovni"
715
+
716
+ #: admin/tab-options.php:56
717
+ msgid "Show excerpts"
718
+ msgstr "Zobrazenie ukážky"
719
+
720
+ #: admin/tab-options.php:56
721
+ msgid ""
722
+ "Shows excerpted content above the login/registration on both Posts and Pages"
723
+ msgstr ""
724
+ "Ukazuje výňatok obsah nad prihlásenie/registráciu na obidvoch pôšt a Pages"
725
+
726
+ #: admin/tab-options.php:57
727
+ msgid "Notify admin"
728
+ msgstr "Oznámiť admin"
729
+
730
+ #: admin/tab-options.php:57
731
+ #, fuzzy, php-format
732
+ msgid "Notify %s for each new registration? %s"
733
+ msgstr "Pošle email admin pre každý nový zápis?"
734
+
735
+ #: admin/tab-options.php:58
736
+ msgid "Moderate registration"
737
+ msgstr "Mierny registrácie"
738
+
739
+ #: admin/tab-options.php:58
740
+ msgid "Holds new registrations for admin approval"
741
+ msgstr "Vlastní nových registrácií schvaľovania admin"
742
+
743
+ #: admin/tab-options.php:91
744
+ #, fuzzy
745
+ msgid "Enable CAPTCHA"
746
+ msgstr "Zapne CAPTCHA, registrácie"
747
+
748
+ #: admin/tab-options.php:59
749
+ msgid "Turns on CAPTCHA for registration"
750
+ msgstr "Zapne CAPTCHA, registrácie"
751
+
752
+ #: admin/tab-options.php:60
753
+ #, fuzzy
754
+ msgid "Hide registration"
755
+ msgstr "Registrácia dokončená"
756
+
757
+ #: admin/tab-options.php:60
758
+ msgid "Removes the registration form from blocked content"
759
+ msgstr ""
760
+
761
+ #: admin/tab-options.php:62
762
+ msgid "Time-based expiration"
763
+ msgstr "Skončenie časového"
764
+
765
+ #: admin/tab-options.php:62
766
+ msgid "Allows for access to expire"
767
+ msgstr "Umožňuje prístup k uplynie"
768
+
769
+ #: admin/tab-options.php:63
770
+ msgid "Trial period"
771
+ msgstr "Skúšobné obdobie"
772
+
773
+ #: admin/tab-options.php:63
774
+ msgid "Allows for a trial period"
775
+ msgstr "Umožňuje skúšobnú dobu"
776
+
777
+ #: admin/tab-options.php:64
778
+ msgid "Ignore warning messages"
779
+ msgstr "Ignorovanie upozornení"
780
+
781
+ #: admin/tab-options.php:64
782
+ msgid "Ignores WP-Members warning messages in the admin panel"
783
+ msgstr "Ignoruje WP-členovia upozorňujúcich hlásení v admin panel"
784
+
785
+ #: admin/tab-options.php:81
786
+ msgid "Attribution"
787
+ msgstr ""
788
+
789
+ #: admin/tab-options.php:83
790
+ msgid ""
791
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
792
+ msgstr ""
793
+
794
+ #: admin/tab-options.php:87
795
+ #, fuzzy
796
+ msgid "Auto Excerpt:"
797
+ msgstr "Zobrazenie ukážky"
798
+
799
+ #: admin/tab-options.php:88
800
+ #, fuzzy
801
+ msgid "Number of words in excerpt:"
802
+ msgstr "Zobrazenie ukážky"
803
+
804
+ #: admin/tab-options.php:88 admin/tab-options.php:108
805
+ #: admin/tab-options.php:118 admin/tab-options.php:132
806
+ msgid "Optional"
807
+ msgstr "Voliteľné"
808
+
809
+ #: admin/tab-options.php:88
810
+ #, fuzzy
811
+ msgid "Automatically creates an excerpt"
812
+ msgstr "Zobrazenie ukážky"
813
+
814
+ #: admin/tab-options.php:103
815
+ #, fuzzy
816
+ msgid "User Profile Page:"
817
+ msgstr "Používateľom aktualizácie"
818
+
819
+ #: admin/tab-options.php:106
820
+ msgid "For creating a forgot password link in the login form"
821
+ msgstr ""
822
+
823
+ #: admin/tab-options.php:113
824
+ #, fuzzy
825
+ msgid "Register Page:"
826
+ msgstr "URL stránky registra:"
827
+
828
+ #: admin/tab-options.php:116
829
+ msgid "For creating a register link in the login form"
830
+ msgstr ""
831
+
832
+ #: admin/tab-options.php:126
833
+ msgid "Select a stylesheet or specify a custom stylesheet below"
834
+ msgstr ""
835
+
836
+ #: admin/tab-options.php:131
837
+ #, fuzzy
838
+ msgid "Custom Stylesheet:"
839
+ msgstr "Vlastné"
840
+
841
+ #: admin/tab-options.php:136
842
+ msgid "Update Settings"
843
+ msgstr "Aktualizovať nastavenia"
844
+
845
+ #: admin/tab-options.php:246
846
+ msgid "WP-Members settings were updated"
847
+ msgstr "WP-členovia nastavenia boli aktualizované"
848
+
849
+ #: admin/tab-options.php:296
850
+ #, fuzzy
851
+ msgid "Select a page"
852
+ msgstr "Nový zápis"
853
+
854
+ #: admin/tab-options.php:304
855
+ msgid "USE CUSTOM URL BELOW"
856
+ msgstr ""
857
+
858
+ #: admin/user-export.php:57 admin/user-export.php:172
859
+ msgid "Activated?"
860
+ msgstr "Aktivovaný?"
861
+
862
+ #: admin/user-export.php:61 admin/user-export.php:175
863
+ msgid "Subscription"
864
+ msgstr "Predplatné"
865
+
866
+ #: admin/user-export.php:61 admin/user-export.php:175
867
+ msgid "Expires"
868
+ msgstr "Uplynie"
869
+
870
+ #: admin/user-export.php:64 admin/user-export.php:178
871
+ msgid "Registered"
872
+ msgstr "Registrované"
873
+
874
+ #: admin/user-export.php:65 admin/user-export.php:179
875
+ msgid "IP"
876
+ msgstr "IP"
877
+
878
+ #: admin/user-profile.php:46
879
+ msgid "WP-Members Additional Fields"
880
+ msgstr "WP-členovia ďalšie polia"
881
+
882
+ #: admin/user-profile.php:66 native-registration.php:36
883
+ #: native-registration.php:159 users.php:62
884
+ msgid "(required)"
885
+ msgstr "Vyžadováno?"
886
+
887
+ #: admin/user-profile.php:98
888
+ msgid "Activate this user?"
889
+ msgstr "Aktivovať tomuto používateľovi?"
890
+
891
+ #: admin/user-profile.php:103
892
+ msgid "Reactivate this user?"
893
+ msgstr "Opätovná aktivácia tomuto používateľovi?"
894
+
895
+ #: admin/user-profile.php:108
896
+ msgid "Deactivate this user?"
897
+ msgstr "Deaktivácia tomuto používateľovi?"
898
+
899
+ #: admin/user-profile.php:129
900
+ msgid "IP @ registration"
901
+ msgstr "IP @ registrácie"
902
+
903
+ #: admin/users.php:45 admin/users.php:49
904
+ msgid "Export"
905
+ msgstr "Vývoz"
906
+
907
+ #: admin/users.php:50 admin/users.php:91
908
+ #, fuzzy
909
+ msgid "Export All Users"
910
+ msgstr "Vývoz"
911
+
912
+ #: forms.php:95
913
+ #, fuzzy
914
+ msgid "Existing Users Log In"
915
+ msgstr "Prihlásenie"
916
+
917
+ #: forms.php:161 wp-members-dialogs.php:192
918
+ msgid "Change Password"
919
+ msgstr "Zmena hesla"
920
+
921
+ #: forms.php:163
922
+ msgid "Update Password"
923
+ msgstr "Aktualizácia hesla"
924
+
925
+ #: forms.php:227
926
+ msgid "Reset Forgotten Password"
927
+ msgstr "Obnovenie zabudnutého hesla"
928
+
929
+ #: forms.php:403
930
+ msgid "Forgot password?"
931
+ msgstr "Zabudli ste heslo?"
932
+
933
+ #: forms.php:403
934
+ msgid "Click here to reset"
935
+ msgstr "Kliknite sem, ak chcete obnoviť"
936
+
937
+ #: forms.php:418
938
+ msgid "New User?"
939
+ msgstr "Nový užívateľ?"
940
+
941
+ #: forms.php:418
942
+ msgid "Click here to register"
943
+ msgstr "Kliknite tu pre registráciu"
944
+
945
+ #: forms.php:515
946
+ msgid "Required field"
947
+ msgstr "Povinné pole"
948
+
949
+ #: forms.php:521
950
+ #, fuzzy
951
+ msgid "Reset Form"
952
+ msgstr "Vyskytla sa chyba s CAPTCHA formou."
953
+
954
+ #: forms.php:523
955
+ #, fuzzy
956
+ msgid "Update Profile"
957
+ msgstr "Používateľom aktualizácie"
958
+
959
+ #: forms.php:561
960
+ msgid "Choose a Username"
961
+ msgstr "Vyberte meno"
962
+
963
+ #: forms.php:683 native-registration.php:65
964
+ #, php-format
965
+ msgid "Please indicate that you agree to the %s TOS %s"
966
+ msgstr "Prosím uveďte, že súhlasíte s %s TOS %s"
967
+
968
+ #: forms.php:852
969
+ #, fuzzy
970
+ msgid "New User Registration"
971
+ msgstr "Nový užívateľ?"
972
+
973
+ #: forms.php:1018
974
+ msgid "Input the code:"
975
+ msgstr ""
976
+
977
+ #: users.php:38
978
+ #, fuzzy
979
+ msgid "Additional Information"
980
+ msgstr "WP-členovia ďalšie polia"
981
+
982
+ #: wp-members-core.php:118 wp-members-core.php:245
983
+ msgid "There was an error with the CAPTCHA form."
984
+ msgstr "Vyskytla sa chyba s CAPTCHA formou."
985
+
986
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
987
+ msgid "Edit Your Information"
988
+ msgstr "Upraviť vaše informácie"
989
+
990
+ #: wp-members-core.php:544
991
+ msgid "<strong>ERROR</strong>: User has not been activated."
992
+ msgstr ""
993
+
994
+ #: wp-members-core.php:903 wp-members-register.php:93
995
+ #, php-format
996
+ msgid "Sorry, %s is a required field."
997
+ msgstr "Je nám ľúto, ale %s je názov požadovaného poľa."
998
+
999
+ #: wp-members-dialogs.php:42
1000
+ msgid "Login Failed!"
1001
+ msgstr "Prihlásenie zlyhalo!"
1002
+
1003
+ #: wp-members-dialogs.php:45
1004
+ msgid "You entered an invalid username or password."
1005
+ msgstr "Zadali ste neplatné meno používateľa alebo heslo."
1006
+
1007
+ #: wp-members-dialogs.php:47
1008
+ msgid "Click here to continue."
1009
+ msgstr "Kliknite tu pre pokračovať."
1010
+
1011
+ #: wp-members-dialogs.php:191
1012
+ msgid "Edit My Information"
1013
+ msgstr "Upraviť moje informácie"
1014
+
1015
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1016
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1017
+ #: wp-members-sidebar.php:246
1018
+ #, php-format
1019
+ msgid "You are logged in as %s"
1020
+ msgstr "Ste prihlásený ako %s"
1021
+
1022
+ #: wp-members-dialogs.php:208
1023
+ #, fuzzy
1024
+ msgid "Click to log out."
1025
+ msgstr "Prihlásenie"
1026
+
1027
+ #: wp-members-dialogs.php:209
1028
+ msgid "Begin using the site."
1029
+ msgstr "Začať pomocou lokality."
1030
+
1031
+ #: wp-members-dialogs.php:225
1032
+ #, fuzzy
1033
+ msgid "Click to log out"
1034
+ msgstr "Prihlásenie"
1035
+
1036
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1037
+ #, fuzzy
1038
+ msgid "click to log out"
1039
+ msgstr "Prihlásenie"
1040
+
1041
+ #: wp-members-dialogs.php:271
1042
+ msgid "Password fields cannot be empty"
1043
+ msgstr "Polia heslo nemôže byť prázdne"
1044
+
1045
+ #: wp-members-register.php:51
1046
+ #, fuzzy
1047
+ msgid "There was an error processing the form."
1048
+ msgstr "Vyskytla sa chyba s CAPTCHA formou."
1049
+
1050
+ #: wp-members-register.php:110
1051
+ msgid "Sorry, username is a required field"
1052
+ msgstr "Je nám ľúto, ale username je názov požadovaného poľa"
1053
+
1054
+ #: wp-members-register.php:111
1055
+ msgid "The username cannot include non-alphanumeric characters."
1056
+ msgstr "Užívateľské meno nemôže obsahovať iné ako alfanumerické znaky."
1057
+
1058
+ #: wp-members-register.php:112 wp-members-register.php:282
1059
+ msgid "You must enter a valid email address."
1060
+ msgstr "Musíte zadať platnú e-mailovú adresu."
1061
+
1062
+ #: wp-members-register.php:119
1063
+ #, fuzzy
1064
+ msgid "Passwords did not match."
1065
+ msgstr "Passwords did not match"
1066
+
1067
+ #: wp-members-register.php:120 wp-members-register.php:286
1068
+ #, fuzzy
1069
+ msgid "Emails did not match."
1070
+ msgstr "Passwords did not match"
1071
+
1072
+ #: wp-members-register.php:127
1073
+ msgid "You must complete the CAPTCHA form."
1074
+ msgstr "Musíte vyplniť formulár CAPTCHA."
1075
+
1076
+ #: wp-members-register.php:377
1077
+ msgid "We were unable to validate the public key."
1078
+ msgstr "Boli sme schopní overiť verejným kľúčom."
1079
+
1080
+ #: wp-members-register.php:381
1081
+ msgid "We were unable to validate the private key."
1082
+ msgstr "Boli sme schopní overiť súkromný kľúč."
1083
+
1084
+ #: wp-members-register.php:385
1085
+ msgid "The challenge parameter of the verify script was incorrect."
1086
+ msgstr "Parameter výzva skriptu overiť bola nesprávna."
1087
+
1088
+ #: wp-members-register.php:389
1089
+ msgid "The CAPTCHA solution was incorrect."
1090
+ msgstr "CAPTCHA riešenie bolo nesprávne."
1091
+
1092
+ #: wp-members-register.php:393
1093
+ msgid "The parameters to verify were incorrect"
1094
+ msgstr "Parametre na overenie boli nesprávne"
1095
+
1096
+ #: wp-members-register.php:397
1097
+ msgid ""
1098
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1099
+ msgstr ""
1100
+ "ReCaptcha API kľúče sú viazané na konkrétne doménové meno z bezpečnostných "
1101
+ "dôvodov."
1102
+
1103
+ #: wp-members-register.php:401
1104
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1105
+ msgstr "ReCAPTCHA servera nebol dosiahnutý. Prosím, skúste znovu."
1106
+
1107
+ #: wp-members-register.php:405
1108
+ msgid "You have entered an incorrect code value. Please try again."
1109
+ msgstr ""
1110
+
1111
+ #: wp-members-sidebar.php:117
1112
+ msgid "Login Failed!<br />You entered an invalid username or password."
1113
+ msgstr ""
1114
+ "Prihlásenie zlyhalo! < br / > zadané neplatné meno používateľa alebo heslo."
1115
+
1116
+ #: wp-members-sidebar.php:118
1117
+ #, fuzzy
1118
+ msgid "You are not logged in."
1119
+ msgstr "Ste prihlásený ako %s"
1120
+
1121
+ #: wp-members-sidebar.php:169
1122
+ msgid "log in"
1123
+ msgstr "prihlásenie"
1124
+
1125
+ #: wp-members-sidebar.php:180
1126
+ msgid "Forgot?"
1127
+ msgstr "Zabudli ste?"
1128
+
1129
+ #: wp-members-sidebar.php:247
1130
+ msgid "click here to log out"
1131
+ msgstr "Kliknite tu pre odhlásenie"
1132
+
1133
+ #: wp-members-sidebar.php:279
1134
+ msgid "Displays the WP-Members sidebar login."
1135
+ msgstr ""
1136
+
1137
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1138
+ msgid "Login Status"
1139
+ msgstr "Stav prihlásenia"
1140
+
1141
+ #: wp-members-sidebar.php:299
1142
+ msgid "Title:"
1143
+ msgstr "Názov:"
1144
+
1145
+ #: wp-members-tos.php:24
1146
+ msgid "Terms of Service"
1147
+ msgstr "Zmluvné podmienky služby"
1148
+
1149
+ #: wp-members-tos.php:36
1150
+ #, php-format
1151
+ msgid "%sclose%s"
1152
+ msgstr "% sclose % s"
1153
+
1154
+ #: wp-members-tos.php:38
1155
+ #, php-format
1156
+ msgid "%sprint%s"
1157
+ msgstr "% sprint %s"
1158
+
1159
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1160
+ #: Strings wp-members-install.php:49
1161
+ msgid "First Name"
1162
+ msgstr "Krstné meno"
1163
+
1164
+ #: wp-members-install.php:50
1165
+ msgid "Last Name"
1166
+ msgstr "Priezvisko"
1167
+
1168
+ #: wp-members-install.php:51
1169
+ msgid "Address 1"
1170
+ msgstr "Adresa 1"
1171
+
1172
+ #: wp-members-install.php:52
1173
+ msgid "Address 2"
1174
+ msgstr "Adresa 2"
1175
+
1176
+ #: wp-members-install.php:53
1177
+ msgid "City"
1178
+ msgstr "Mesto"
1179
+
1180
+ #: wp-members-install.php:54
1181
+ msgid "State"
1182
+ msgstr "Štát"
1183
+
1184
+ #: wp-members-install.php:55
1185
+ msgid "Zip"
1186
+ msgstr "Zip"
1187
+
1188
+ #: wp-members-install.php:56
1189
+ msgid "Country"
1190
+ msgstr "Krajina"
1191
+
1192
+ #: wp-members-install.php:57
1193
+ msgid "Day Phone"
1194
+ msgstr "Deň telefón"
1195
+
1196
+ #: wp-members-install.php:59
1197
+ msgid "Website"
1198
+ msgstr "Webová stránka"
1199
+
1200
+ #: wp-members-install.php:60
1201
+ msgid "AIM"
1202
+ msgstr "CIEĽOM"
1203
+
1204
+ #: wp-members-install.php:61
1205
+ msgid "Yahoo IM"
1206
+ msgstr "Yahoo IM"
1207
+
1208
+ #: wp-members-install.php:62
1209
+ msgid "Jabber/Google Talk"
1210
+ msgstr "Jabber a Google Talk"
1211
+
1212
+ #: wp-members-install.php:63
1213
+ msgid "Biographical Info"
1214
+ msgstr "Biografické Info"
1215
+
1216
+ #: wp-members-install.php:64 wp-members-install.php:211
1217
+ msgid "TOS"
1218
+ msgstr "PREVÁDZKOVATELIA V ODVETVÍ TELEKOMUNIKÁCIÍ"
1219
+
1220
+ #: Error message dialog strings wp-members-install.php:96
1221
+ #, fuzzy
1222
+ msgid ""
1223
+ "This content is restricted to site members. If you are an existing user, "
1224
+ "please log in. New users may register below."
1225
+ msgstr ""
1226
+ "Tento obsah je obmedzená na mieste členov. Ak ste existujúci užívateľ, "
1227
+ "prihláste sa prosím. Noví užívatelia sa môžu zaregistrovať nižšie."
1228
+
1229
+ #: wp-members-install.php:97
1230
+ msgid "Sorry, that username is taken, please try another."
1231
+ msgstr "Je nám ľúto, tak├⌐to pou┼╛├¡vate─╛sk├⌐ meno prijaté, skúste iné."
1232
+
1233
+ #: wp-members-install.php:98
1234
+ msgid ""
1235
+ "Sorry, that email address already has an account.<br />Please try another."
1236
+ msgstr ""
1237
+ "Ospravedlňujeme sa, že e-mailová adresa už účet. <br /> Skúste prosím iný."
1238
+
1239
+ #: wp-members-install.php:99
1240
+ #, fuzzy
1241
+ msgid ""
1242
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1243
+ "log in using the password that was emailed to you."
1244
+ msgstr ""
1245
+ "Gratulujeme! Vaša registrácia bola úspešná. <br /> <br /> Teraz môžete "
1246
+ "prihlásiť pomocou hesla, ktoré bolo zaslané e-mailom na vás."
1247
+
1248
+ #: wp-members-install.php:100
1249
+ msgid "Your information was updated!"
1250
+ msgstr "Vaše informácie bolo aktualizované!"
1251
+
1252
+ #: wp-members-install.php:101
1253
+ msgid "Passwords did not match.<br /><br />Please try again."
1254
+ msgstr "Heslá urobil nie zápas. < br / > < br / > prosím skúste to znova."
1255
+
1256
+ #: wp-members-install.php:102
1257
+ msgid ""
1258
+ "Password successfully changed!<br /><br />You will need to re-login with "
1259
+ "your new password."
1260
+ msgstr ""
1261
+ "Heslo bolo úspešne zmenené! <br /> <br /> Budete musieť znova prihlásiť "
1262
+ "pomocou nového hesla."
1263
+
1264
+ #: wp-members-install.php:103
1265
+ msgid "Either the username or email address do not exist in our records."
1266
+ msgstr "Uživateľské meno alebo e-mail adresa v našich záznamov neexistuje."
1267
+
1268
+ #: wp-members-install.php:104
1269
+ msgid ""
1270
+ "Password successfully reset!<br /><br />An email containing a new password "
1271
+ "has been sent to the email address on file for your account. You may change "
1272
+ "this random password then re-login with your new password."
1273
+ msgstr ""
1274
+ "Heslo bolo úspešne obnoviť! <br /> <br /> E-mail obsahujúci nové heslo bolo "
1275
+ "odoslané na e-mailovú adresu, na súbore vášho účtu. Môžete zmeniť toto "
1276
+ "náhodné heslo, potom re-prihlásenie s novým heslom."
1277
+
1278
+ #~ msgid "Yes"
1279
+ #~ msgstr "áno"
1280
+
1281
+ #~ msgid "WP-Members"
1282
+ #~ msgstr "WP-členovia"
1283
+
1284
+ #~ msgid "Custom"
1285
+ #~ msgstr "Vlastné"
1286
+
1287
+ #, fuzzy
1288
+ #~ msgid "edit"
1289
+ #~ msgstr "Upraviť vaše informácie"
1290
+
1291
+ #, fuzzy
1292
+ #~ msgid "Edit"
1293
+ #~ msgstr "Upraviť vaše informácie"
1294
+
1295
+ #~ msgid "Use reCAPTCHA"
1296
+ #~ msgstr "Použiť reCAPTCHA"
1297
+
1298
+ #, fuzzy
1299
+ #~ msgid "Pages"
1300
+ #~ msgstr "Blokovať stránky v predvolenom nastavení"
1301
+
1302
+ #~ msgid "No"
1303
+ #~ msgstr "nie"
1304
+
1305
+ #~ msgid "Activate"
1306
+ #~ msgstr "Aktivovať"
1307
+
1308
+ #~ msgid "Username"
1309
+ #~ msgstr "Username"
1310
+
1311
+ #~ msgid "Password"
1312
+ #~ msgstr "Heslo"
1313
+
1314
+ #~ msgid "Log In"
1315
+ #~ msgstr "Prihlásenie"
1316
+
1317
+ #~ msgid "New Password"
1318
+ #~ msgstr "Nové heslo"
1319
+
1320
+ #~ msgid "Repeat Password"
1321
+ #~ msgstr "Opakovanie hesla"
1322
+
1323
+ #~ msgid "Email"
1324
+ #~ msgstr "E-mailom"
1325
+
1326
+ #~ msgid "Reset Password"
1327
+ #~ msgstr "Reset hesla"
1328
+
1329
+ #~ msgid "Remember me"
1330
+ #~ msgstr "Zapamätaj si ma"
1331
+
1332
+ #~ msgid "Register"
1333
+ #~ msgstr "Zaregistrovať sa"
1334
+
1335
+ #, fuzzy
1336
+ #~ msgid ""
1337
+ #~ "WP access restriction and user registration. For more information on "
1338
+ #~ "plugin features, refer to <a href=\"http://rocketgeek.com/plugins/wp-"
1339
+ #~ "members/users-guide/\">the online Users Guide</a>. A <a href=\"http://"
1340
+ #~ "rocketgeek.com/plugins/wp-members/quick-start-guide/\">Quick Start Guide</"
1341
+ #~ "a> is also available. WP-Members(tm) is a trademark of butlerblog.com."
1342
+ #~ msgstr ""
1343
+ #~ "WP obmedzenie prístupu a registračné. Pre viac informácií a na stiahnutie "
1344
+ #~ "v užívateľskej príručke, nájdete <a href=\"http://butlerblog.com/wp-"
1345
+ #~ "members\"> http://butlerblog.com/wp-members </a>. <a href=\"http://"
1346
+ #~ "butlerblog.com/wp-members/wp-members-quick-start-guide/\"> Quick Start "
1347
+ #~ "Guide </a> je k dispozícii tiež. WP-členov (TM) je obchodná značka "
1348
+ #~ "butlerblog.com."
1349
+
1350
+ #~ msgid "Cheatin’ uh?"
1351
+ #~ msgstr "Cheatin ’ ehm?"
1352
+
1353
+ #~ msgid "there was an error and no users were exported"
1354
+ #~ msgstr "Vyskytla sa chyba a bol vyvezený žiadni používatelia"
1355
+
1356
+ #~ msgid "Indicates a required field"
1357
+ #~ msgstr "Označuje povinné pole"
1358
+
1359
+ #~ msgid "login"
1360
+ #~ msgstr "prihlásenie"
1361
+
1362
+ #~ msgid "Login"
1363
+ #~ msgstr "Prihlásenie"
1364
+
1365
+ #~ msgid "Submit"
1366
+ #~ msgstr "Predložiť"
1367
+
1368
+ #~ msgid "Clear Form"
1369
+ #~ msgstr "Vymazať formulár"
1370
+
1371
+ #~ msgid "Turn off registration"
1372
+ #~ msgstr "Ak chcete vypnúť registrácie"
1373
+
1374
+ #~ msgid "Turns off the registration process, only allows login"
1375
+ #~ msgstr "Vypne proces registrácie, len umožňuje prihlásenie"
1376
+
1377
+ #~ msgid "Legacy forms"
1378
+ #~ msgstr "Staršie formuláre"
1379
+
1380
+ #~ msgid ""
1381
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1382
+ #~ "forms)"
1383
+ #~ msgstr ""
1384
+ #~ "Používa pre-2.5.1 Tabuľka formuláre založené v prestať používať CSS "
1385
+ #~ "stolný menej formulárov)"
1386
+
1387
+ #~ msgid "Members Area URL:"
1388
+ #~ msgstr "Členovia oblasti URL:"
1389
+
1390
+ #~ msgid "Add"
1391
+ #~ msgstr "Pridať"
1392
+
1393
+ #~ msgid "WP-Members expiration periods were updated"
1394
+ #~ msgstr "WP-členovia uplynutia obdobia boli aktualizované"
1395
+
1396
+ #~ msgid ""
1397
+ #~ "Settings were saved, but you have required fields that are not set to "
1398
+ #~ "display!"
1399
+ #~ msgstr ""
1400
+ #~ "Nastavenie bolo uložené, ale vy ste povinná, ktoré nie sú dané na "
1401
+ #~ "zobrazenie!"
1402
+
1403
+ #~ msgid ""
1404
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1405
+ #~ "fields are validated. However, you should still check that your "
1406
+ #~ "displayed and required fields match up. Mismatched fields are "
1407
+ #~ "highlighted below."
1408
+ #~ msgstr ""
1409
+ #~ "Poznámka: Táto nespôsobí chybu pre koncového užívateľa, pretože len "
1410
+ #~ "zobrazené položky sú overené. Avšak, mali by ste ešte overiť, či je "
1411
+ #~ "zobrazené pole a musí zhodovať. Nezhoda polia sú uvedené nižšie."
1412
+
1413
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1414
+ #~ msgstr "Ak ste našli tento plugin užitočný, prosím zváži poskytnutie daru"
1415
+
1416
+ #~ msgid "Subscriptions"
1417
+ #~ msgstr "Predplatné"
1418
+
1419
+ #~ msgid "PayPal Settings"
1420
+ #~ msgstr "PayPal nastavenia"
1421
+
1422
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1423
+ #~ msgstr "Ak ste našli tento plugin užitočný, prosím zvážiť darovanie %s %s"
1424
+
1425
+ #~ msgid "%d users were activated."
1426
+ #~ msgstr "%d užívateľov bola aktivovaná."
1427
+
1428
+ #~ msgid ""
1429
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1430
+ #~ msgstr "Pripravený na vývoz, %s uživateľ %s generovať a stiahnuť CSV."
1431
+
1432
+ #~ msgid "WP-Members Users"
1433
+ #~ msgstr "WP-členov užívateľov"
1434
+
1435
+ #~ msgid "Add New"
1436
+ #~ msgstr "Pridať nové"
1437
+
1438
+ #~ msgid "No users matched your criteria"
1439
+ #~ msgstr "Žiadni používatelia spárovaných vaše kritériá"
1440
+
1441
+ #~ msgid "Bulk Actions"
1442
+ #~ msgstr "Hromadný akcie"
1443
+
1444
+ #~ msgid "Apply"
1445
+ #~ msgstr "Uplatňovať"
1446
+
1447
+ #~ msgid "http://butlerblog.com/wp-members/"
1448
+ #~ msgstr "http://butlerblog.com/wp-Members/"
1449
+
1450
+ #~ msgid "Chad Butler"
1451
+ #~ msgstr "Čad Butler"
1452
+
1453
+ #~ msgid "http://butlerblog.com/"
1454
+ #~ msgstr "http://butlerblog.com/"
lang/wp-members-sr_RS.mo ADDED
Binary file
lang/wp-members-sr_RS.po ADDED
@@ -0,0 +1,1439 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:06-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: Dmitrii Krasnov <krasnov@findadventure.ru>\n"
11
+ "Language: sr_RS\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-Generator: Poedit 1.6.4\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
+
20
+ #: admin/admin.php:60 admin/admin.php:129
21
+ msgid "Settings"
22
+ msgstr "Postavke"
23
+
24
+ #: admin/admin.php:187
25
+ msgid "Options"
26
+ msgstr "Opcije"
27
+
28
+ #: admin/admin.php:188
29
+ msgid "Fields"
30
+ msgstr "Polja"
31
+
32
+ #: admin/admin.php:189
33
+ msgid "Dialogs"
34
+ msgstr "Dijalozi"
35
+
36
+ #: admin/admin.php:190
37
+ msgid "Emails"
38
+ msgstr "Emailovi"
39
+
40
+ #: admin/dialogs.php:109
41
+ msgid ""
42
+ "Your WP settings allow anyone to register - this is not the recommended "
43
+ "setting."
44
+ msgstr ""
45
+ "Vaša WP postavka dozvoljava svakome da se registruje - ovo nije "
46
+ "preporučljiva postavka. "
47
+
48
+ #: admin/dialogs.php:110
49
+ #, php-format
50
+ msgid ""
51
+ "You can %s change this here %s making sure the box next to \"Anyone can "
52
+ "register\" is unchecked."
53
+ msgstr ""
54
+ "Ovo možete %s promeniti ovde %s proverite da kvadrat pored nije \"Anyone "
55
+ "can register\" čekiran."
56
+
57
+ #: admin/dialogs.php:111
58
+ msgid ""
59
+ "This setting allows a link on the /wp-login.php page to register using the "
60
+ "WP native registration process thus circumventing any registration you are "
61
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
62
+ "but most users should uncheck this option. If you do not change this "
63
+ "setting, you can choose to ignore these warning messages under WP-Members "
64
+ "Settings."
65
+ msgstr ""
66
+ "Ova postavka omogućava link na /wp-login.php stranuici da se registrujete "
67
+ "pomoću WP native procesom registracije tako zaobilazite bilo koje "
68
+ "registracije koji koristite sa WP-Members. U nekim slučajevima , to može "
69
+ "odgovarati korisnicima želi / treba , ali većina korisnika treba da "
70
+ "isključite ovu opciju . Ako ne promenite ovu postavku , možete izabrati da "
71
+ "ignorišete ove poruke upozorenja pod WP-Members postavkama ."
72
+
73
+ #: admin/dialogs.php:117
74
+ msgid ""
75
+ "Your WP settings allow anyone to comment - this is not the recommended "
76
+ "setting."
77
+ msgstr ""
78
+ "Ova WP postavka dozvoljava bilo kome da komentariše-ovo nije preporučljiva "
79
+ "postavka."
80
+
81
+ #: admin/dialogs.php:118
82
+ #, php-format
83
+ msgid ""
84
+ "You can %s change this here %s by checking the box next to \"Users must be "
85
+ "registered and logged in to comment.\""
86
+ msgstr ""
87
+ "Možete %s promeniti ovo %s klikom na checkbox pored \"Users must be "
88
+ "registered and logged in to comment.\""
89
+
90
+ #: admin/dialogs.php:119
91
+ msgid ""
92
+ "This setting allows any users to comment, whether or not they are "
93
+ "registered. Depending on how you are using WP-Members will determine whether "
94
+ "you should change this setting or not. If you do not change this setting, "
95
+ "you can choose to ignore these warning messages under WP-Members Settings."
96
+ msgstr ""
97
+ "Ova postavka dozvoljava korisniku da komentariše, nezavisno od toga da li je "
98
+ "registrovan. U zavisnosti od toga kako se koriste WP-Members će utvrditi da "
99
+ "li treba da promenite ovu postavku ili ne . Ako ne promenite ovu postavku , "
100
+ "možete izabrati da ignorišete ove poruke upozorenja pod WP-Members "
101
+ "postavkama ."
102
+
103
+ #: admin/dialogs.php:125
104
+ msgid ""
105
+ "Your WP settings allow full text rss feeds - this is not the recommended "
106
+ "setting."
107
+ msgstr ""
108
+ "Vaše WP postavke dozvoljavaju sve tekst rss feeds - ovo nije postavka kja "
109
+ "se preporučuje."
110
+
111
+ #: admin/dialogs.php:126
112
+ #, php-format
113
+ msgid ""
114
+ "You can %s change this here %s by changing \"For each article in a feed, show"
115
+ "\" to \"Summary.\""
116
+ msgstr ""
117
+ "Ovo možete %s promeniti ovde %s prelaskom \"For each article in a feed, show"
118
+ "\" na \"Summary.\""
119
+
120
+ #: admin/dialogs.php:127
121
+ msgid ""
122
+ "Leaving this set to full text allows anyone to read your protected content "
123
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
124
+ "only show summary text."
125
+ msgstr ""
126
+ "Ostavljajući ovu postavku za ceo tekst dozvoljavate bilo kome da čita vaš "
127
+ "sadržaj zaštićen u RSS čitaču. Promena ovoga u Summary sprečava ovo da vaši "
128
+ "feedovi prikažu samo summary tekst. "
129
+
130
+ #: admin/dialogs.php:133
131
+ msgid "You have set WP-Members to hold registrations for approval"
132
+ msgstr "Namestili ste WP-Members da sadrže registracije za odobrenje "
133
+
134
+ #: admin/dialogs.php:134
135
+ msgid ""
136
+ "but you have not changed the default message for \"Registration Completed\" "
137
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
138
+ "message to let users know they are pending approval."
139
+ msgstr ""
140
+ "ali niste promenili default message za \"Registration Completed\" ispod "
141
+ "\"WP-Members Dialogs and Error Messages.\" Treba da promenite poruku da "
142
+ "biste korisnika obavestili da se čeka odobrenje.."
143
+
144
+ #: admin/dialogs.php:140
145
+ msgid "You have set WP-Members to turn off the registration process"
146
+ msgstr "Možete podesiti WP-Members da ugase proces registacije"
147
+
148
+ #: admin/dialogs.php:141
149
+ msgid ""
150
+ "but you also set to moderate and/or email admin new registrations. You will "
151
+ "need to set up a registration page for users to register."
152
+ msgstr ""
153
+ "ali takodje možete da postavite da bude umereno i/ili email admin novih "
154
+ "registracija. Morate namestiti stranicu registracije za korisnike da se "
155
+ "registruju. "
156
+
157
+ #: admin/dialogs.php:147
158
+ msgid "You have turned on reCAPTCHA"
159
+ msgstr "Uključili ste reCAPTCHA"
160
+
161
+ #: admin/dialogs.php:148
162
+ msgid ""
163
+ "but you have not entered API keys. You will need both a public and private "
164
+ "key. The CAPTCHA will not display unless a valid API key is included."
165
+ msgstr ""
166
+ "ali niste uneli API ključeve. Trebaće vam i javni i privatni ključ. CAPTCHA "
167
+ "neće biti prikazana osim ako API ključ nije uključen."
168
+
169
+ #: admin/dialogs.php:171
170
+ msgid "Version:"
171
+ msgstr "Verzija:"
172
+
173
+ #: admin/dialogs.php:172
174
+ #, fuzzy
175
+ msgid "Quick Start Guide"
176
+ msgstr "Пользователь обновлен"
177
+
178
+ #: admin/dialogs.php:173
179
+ #, fuzzy
180
+ msgid "Online User Guide"
181
+ msgstr "Пользователь обновлен"
182
+
183
+ #: admin/dialogs.php:174
184
+ msgid "FAQs"
185
+ msgstr ""
186
+
187
+ #: admin/dialogs.php:181
188
+ #, fuzzy
189
+ msgid "Thank you for using WP-Members"
190
+ msgstr "Thank you for using WP-Members! You are using version "
191
+
192
+ #: admin/dialogs.php:182
193
+ msgid "A plugin developed by"
194
+ msgstr ""
195
+
196
+ #: admin/dialogs.php:183
197
+ msgid "Follow"
198
+ msgstr "Prati"
199
+
200
+ #: admin/dialogs.php:200 admin/dialogs.php:204
201
+ msgid "Latest from RocketGeek"
202
+ msgstr ""
203
+
204
+ #: admin/dialogs.php:221 admin/dialogs.php:234
205
+ msgid "Latest from ButlerBlog"
206
+ msgstr ""
207
+
208
+ #: admin/post.php:36 admin/post.php:38
209
+ #, fuzzy
210
+ msgid "Block"
211
+ msgstr "Блокировать записи по умолчанию"
212
+
213
+ #: admin/post.php:37 admin/post.php:39
214
+ msgid "Unblock"
215
+ msgstr ""
216
+
217
+ #: admin/post.php:120
218
+ #, fuzzy, php-format
219
+ msgid "%s posts %sed."
220
+ msgstr "Блокировать записи по умолчанию"
221
+
222
+ #: admin/post.php:138
223
+ #, fuzzy
224
+ msgid "Post Restriction"
225
+ msgstr "Nova registracija"
226
+
227
+ #: admin/post.php:145
228
+ #, fuzzy
229
+ msgid "Page Restriction"
230
+ msgstr "Nova registracija"
231
+
232
+ #: admin/post.php:263 admin/post.php:295
233
+ #, fuzzy
234
+ msgid "Unblocked?"
235
+ msgstr ""
236
+ "Примечание: каждая запись может быть заблокирована/разблокирована отдельно "
237
+ "от остальных"
238
+
239
+ #: admin/post.php:263 admin/post.php:295
240
+ #, fuzzy
241
+ msgid "Blocked?"
242
+ msgstr ""
243
+ "Примечание: каждая запись может быть заблокирована/разблокирована отдельно "
244
+ "от остальных"
245
+
246
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
247
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
248
+ msgid "Need help?"
249
+ msgstr ""
250
+
251
+ #: admin/tab-captcha.php:46
252
+ msgid "Manage reCAPTCHA Options"
253
+ msgstr "Upravljajte reCAPTCHA Opcijama"
254
+
255
+ #: admin/tab-captcha.php:60
256
+ msgid ""
257
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
258
+ "while blocking spam on your blog."
259
+ msgstr ""
260
+ "reCAPTCHA je besplatna, primenjliva CAPTCHA usluga pomaže digitalizovanju "
261
+ "knjiga dok blokira spam na vašem blogu."
262
+
263
+ #: admin/tab-captcha.php:61
264
+ #, php-format
265
+ msgid ""
266
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
267
+ "that they are a human. This verifies that they are not a spambot while also "
268
+ "correcting the automatic scans of old books. So you get less spam, and the "
269
+ "world gets accurately digitized books. Everybody wins! For details, visit "
270
+ "the %s reCAPTCHA website%s"
271
+ msgstr ""
272
+ "reCAPTCHA traži da ponovo otkucate dve reči skenirane iz knjige da dokaže da "
273
+ "ste čovek . Ovo potvrđuje da oni nisu spambot i istovremeno ispravlja "
274
+ "automatski skenire starih knjiga . Tako dobijate manje spama , a svet dobija "
275
+ "tačno digitalizovane poruke. Svi pobedjuju. Za detalje posetite %s reCAPTCHA "
276
+ "websajt%s"
277
+
278
+ #: admin/tab-captcha.php:66
279
+ msgid "reCAPTCHA Keys"
280
+ msgstr "reCAPTCHA Ključevi"
281
+
282
+ #: admin/tab-captcha.php:68
283
+ #, php-format
284
+ msgid ""
285
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
286
+ "key. You can sign up for a %s free reCAPTCHA key%s"
287
+ msgstr ""
288
+ "reCAPTCHA zahteva API ključ, ckoji se sastoji od \"public\" i \"private"
289
+ "\" ključa. Možete da se upišete za %s besplatan reCAPTCHA ključ %s"
290
+
291
+ #: admin/tab-captcha.php:69
292
+ msgid "Public Key"
293
+ msgstr "Javni ključ"
294
+
295
+ #: admin/tab-captcha.php:70
296
+ msgid "Private Key"
297
+ msgstr "Privatni ključ"
298
+
299
+ #: admin/tab-captcha.php:74
300
+ msgid "Choose Theme"
301
+ msgstr "Izaberi temu"
302
+
303
+ #: admin/tab-captcha.php:77
304
+ msgid "Red"
305
+ msgstr "Crveno"
306
+
307
+ #: admin/tab-captcha.php:78
308
+ msgid "White"
309
+ msgstr "Belo"
310
+
311
+ #: admin/tab-captcha.php:79
312
+ msgid "Black Glass"
313
+ msgstr "Black staklo"
314
+
315
+ #: admin/tab-captcha.php:80
316
+ msgid "Clean"
317
+ msgstr "Čisto"
318
+
319
+ #: admin/tab-captcha.php:112
320
+ msgid "Characters for image"
321
+ msgstr ""
322
+
323
+ #: admin/tab-captcha.php:116
324
+ msgid "Number of characters"
325
+ msgstr ""
326
+
327
+ #: admin/tab-captcha.php:120
328
+ msgid "Image dimensions"
329
+ msgstr ""
330
+
331
+ #: admin/tab-captcha.php:124
332
+ msgid "Font color of characters"
333
+ msgstr ""
334
+
335
+ #: admin/tab-captcha.php:128
336
+ msgid "Background color of image"
337
+ msgstr ""
338
+
339
+ #: admin/tab-captcha.php:132
340
+ msgid "Font size"
341
+ msgstr ""
342
+
343
+ #: admin/tab-captcha.php:136
344
+ msgid "Width between characters"
345
+ msgstr ""
346
+
347
+ #: admin/tab-captcha.php:140
348
+ #, fuzzy
349
+ msgid "Image type"
350
+ msgstr "Tip polja"
351
+
352
+ #: admin/tab-captcha.php:154
353
+ msgid ""
354
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
355
+ "installed and activated."
356
+ msgstr ""
357
+
358
+ #: admin/tab-captcha.php:166
359
+ #, fuzzy
360
+ msgid "Update CAPTCHA Settings"
361
+ msgstr "Update postavki"
362
+
363
+ #: admin/tab-captcha.php:230
364
+ #, fuzzy
365
+ msgid "CAPTCHA was updated for WP-Members"
366
+ msgstr "reCAPTCHA je updatovano za WP-Members"
367
+
368
+ #: admin/tab-dialogs.php:29
369
+ msgid "Restricted post (or page), displays above the login/registration form"
370
+ msgstr ""
371
+ "Zabranjeni post (ili stranica), prikazuje iznad login/registracijsku formu"
372
+
373
+ #: admin/tab-dialogs.php:30
374
+ msgid "Username is taken"
375
+ msgstr "Korisničko ime je zauzeto"
376
+
377
+ #: admin/tab-dialogs.php:31
378
+ msgid "Email is registered"
379
+ msgstr "Email je registrovan"
380
+
381
+ #: admin/tab-dialogs.php:32
382
+ msgid "Registration completed"
383
+ msgstr "Registracija završena"
384
+
385
+ #: admin/tab-dialogs.php:33
386
+ msgid "User update"
387
+ msgstr "Korisnik update-ovan"
388
+
389
+ #: admin/tab-dialogs.php:34
390
+ msgid "Passwords did not match"
391
+ msgstr "Šifra se ne slaže"
392
+
393
+ #: admin/tab-dialogs.php:35
394
+ msgid "Password changes"
395
+ msgstr "Šifra se menja"
396
+
397
+ #: admin/tab-dialogs.php:36
398
+ msgid "Username or email do not exist when trying to reset forgotten password"
399
+ msgstr ""
400
+ "Korisničko ime ili email ne postoje kada pokušate da resetujete zaboravljenu "
401
+ "šifru"
402
+
403
+ #: admin/tab-dialogs.php:37
404
+ msgid "Password reset"
405
+ msgstr "Resetovanje šifre"
406
+
407
+ #: admin/tab-dialogs.php:54
408
+ msgid "Dialogs and Error Messages"
409
+ msgstr "Diažjalozi i Error poruke"
410
+
411
+ #: admin/tab-dialogs.php:56
412
+ #, php-format
413
+ msgid ""
414
+ "You can customize the text for dialogs and error messages. Simple HTML is "
415
+ "allowed %s etc."
416
+ msgstr ""
417
+ "Možete da customize-ujete text za dijaloge i error poruke. Jednostavan HTML "
418
+ "je dozvoljen %s itd."
419
+
420
+ #: admin/tab-dialogs.php:69
421
+ msgid "Terms of Service (TOS)"
422
+ msgstr "Pravila (TOS)"
423
+
424
+ #: admin/tab-dialogs.php:76
425
+ msgid "Update Dialogs"
426
+ msgstr "Update dijaloga"
427
+
428
+ #: admin/tab-dialogs.php:115
429
+ msgid "WP-Members dialogs were updated"
430
+ msgstr "WP-Members dijaloz su updatovani"
431
+
432
+ #: admin/tab-emails.php:30
433
+ msgid "New Registration"
434
+ msgstr "Nova registracija"
435
+
436
+ #: admin/tab-emails.php:34
437
+ msgid "Registration is Moderated"
438
+ msgstr "Registracija je obavljena"
439
+
440
+ #: admin/tab-emails.php:35
441
+ msgid "Registration is Moderated, User is Approved"
442
+ msgstr "Registracija je obavljena, korisnik je odobren."
443
+
444
+ #: admin/tab-emails.php:40
445
+ msgid "Password Reset"
446
+ msgstr "Resetuj šifru"
447
+
448
+ #: admin/tab-emails.php:45
449
+ msgid "Admin Notification"
450
+ msgstr "Admin notifikacije"
451
+
452
+ #: admin/tab-emails.php:50
453
+ msgid "Email Signature"
454
+ msgstr "Email potpis"
455
+
456
+ #: admin/tab-emails.php:57
457
+ msgid "Email Messages"
458
+ msgstr "Email poruke"
459
+
460
+ #: admin/tab-emails.php:60
461
+ msgid "You can customize the content of the emails sent by the plugin."
462
+ msgstr "Možete da customize-irate sadržaj emailova poslatih pluginom. "
463
+
464
+ #: admin/tab-emails.php:62
465
+ msgid "A list of shortcodes is available here."
466
+ msgstr "Lista shortcode-ova dostupnih ovde. "
467
+
468
+ #: admin/tab-emails.php:69
469
+ msgid "Set a custom email address"
470
+ msgstr "Podesi custom email adresu"
471
+
472
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
473
+ msgid "(optional)"
474
+ msgstr "(opcionalno)"
475
+
476
+ #: admin/tab-emails.php:73
477
+ msgid "Set a custom email name"
478
+ msgstr "Podesi custom email ie"
479
+
480
+ #: admin/tab-emails.php:84
481
+ msgid "Subject"
482
+ msgstr "Subject"
483
+
484
+ #: admin/tab-emails.php:88
485
+ msgid "Body"
486
+ msgstr "Telo"
487
+
488
+ #: admin/tab-emails.php:105
489
+ msgid "Update Emails"
490
+ msgstr "Updateuj mailove"
491
+
492
+ #: admin/tab-emails.php:161
493
+ msgid "WP-Members emails were updated"
494
+ msgstr "WP-Members emailovi su updatovani"
495
+
496
+ #: admin/tab-fields.php:166
497
+ msgid "WP-Members fields were updated"
498
+ msgstr "WP-Members polja su updatovana"
499
+
500
+ #: admin/tab-fields.php:176
501
+ msgid "Field Label is required for adding a new field. Nothing was updated."
502
+ msgstr ""
503
+ "Polje oznake je potrebno za dodavanje novih polja. Ništa nije updatovano. "
504
+
505
+ #: admin/tab-fields.php:177
506
+ msgid "Option Name is required for adding a new field. Nothing was updated."
507
+ msgstr ""
508
+ "Opcija IME je potrebna zadodavanje novih polja. Ništa nije updatovano. "
509
+
510
+ #: admin/tab-fields.php:184
511
+ msgid "A field with that option name already exists"
512
+ msgstr ""
513
+
514
+ #: admin/tab-fields.php:201
515
+ #, fuzzy
516
+ msgid "Checked value is required for checkboxes. Nothing was updated."
517
+ msgstr ""
518
+ "Polje oznake je potrebno za dodavanje novih polja. Ništa nije updatovano. "
519
+
520
+ #: admin/tab-fields.php:223
521
+ #, fuzzy
522
+ msgid "field was added"
523
+ msgstr "Метка поля"
524
+
525
+ #: admin/tab-fields.php:241
526
+ #, fuzzy
527
+ msgid "field was updated"
528
+ msgstr "WP-Members polja su updatovana"
529
+
530
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
531
+ #, fuzzy
532
+ msgid "Edit Field"
533
+ msgstr "Редактирование ваших данных"
534
+
535
+ #: admin/tab-fields.php:289
536
+ #, fuzzy
537
+ msgid "Add a Field"
538
+ msgstr "Добавить/удалить"
539
+
540
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
541
+ msgid "Field Label"
542
+ msgstr "Pronadji oznaku"
543
+
544
+ #: admin/tab-fields.php:297
545
+ msgid "The name of the field as it will be displayed to the user."
546
+ msgstr ""
547
+
548
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
549
+ msgid "Option Name"
550
+ msgstr "Ime opcije"
551
+
552
+ #: admin/tab-fields.php:306
553
+ msgid ""
554
+ "The database meta value for the field. It must be unique and contain no "
555
+ "spaces (underscores are ok)."
556
+ msgstr ""
557
+
558
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
559
+ msgid "Field Type"
560
+ msgstr "Tip polja"
561
+
562
+ #: admin/tab-fields.php:316
563
+ msgid "text"
564
+ msgstr "tekst"
565
+
566
+ #: admin/tab-fields.php:317
567
+ msgid "textarea"
568
+ msgstr "područje teksta"
569
+
570
+ #: admin/tab-fields.php:318
571
+ msgid "checkbox"
572
+ msgstr "checkbox"
573
+
574
+ #: admin/tab-fields.php:319
575
+ msgid "dropdown"
576
+ msgstr "dropdown"
577
+
578
+ #: admin/tab-fields.php:320
579
+ msgid "password"
580
+ msgstr "šifra"
581
+
582
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
583
+ msgid "Display?"
584
+ msgstr "Prikaži?"
585
+
586
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
587
+ msgid "Required?"
588
+ msgstr "Potrbno?"
589
+
590
+ #: admin/tab-fields.php:334
591
+ #, fuzzy
592
+ msgid "Additional information for checkbox fields"
593
+ msgstr "WP-Members Дополнительные поля"
594
+
595
+ #: admin/tab-fields.php:337
596
+ #, fuzzy
597
+ msgid "Checked by default?"
598
+ msgstr "Отмечено?"
599
+
600
+ #: admin/tab-fields.php:341
601
+ #, fuzzy
602
+ msgid "Stored value if checked:"
603
+ msgstr "Отмечено?"
604
+
605
+ #: admin/tab-fields.php:347
606
+ #, fuzzy
607
+ msgid "Additional information for dropdown fields"
608
+ msgstr "WP-Members Дополнительные поля"
609
+
610
+ #: admin/tab-fields.php:350
611
+ msgid "For dropdown, array of values:"
612
+ msgstr "Za dropdown, array ili vrednosti:"
613
+
614
+ #: admin/tab-fields.php:375
615
+ msgid "Options should be Option Name|option_value,"
616
+ msgstr "Opcije bi treblo da budu Option Name|option_value,"
617
+
618
+ #: admin/tab-fields.php:379
619
+ msgid "Visit plugin site for more information"
620
+ msgstr "Posetite sajt plugina za više informacija"
621
+
622
+ #: admin/tab-fields.php:385
623
+ #, fuzzy
624
+ msgid "Add Field"
625
+ msgstr "Добавить/удалить"
626
+
627
+ #: admin/tab-fields.php:407
628
+ msgid "Manage Fields"
629
+ msgstr "Upravljazi poljima"
630
+
631
+ #: admin/tab-fields.php:409
632
+ msgid ""
633
+ "Determine which fields will display and which are required. This includes "
634
+ "all fields, both native WP fields and WP-Members custom fields."
635
+ msgstr ""
636
+ "Odredjuje koja polja će biti prikazana i koja su neophodna. Ovo uključuje "
637
+ "sva polja, i native WP polja i WP-Members custom polja."
638
+
639
+ #: admin/tab-fields.php:410
640
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
641
+ msgstr "(Beleška: Email je uvek obavezan i ne može se promeniti.)"
642
+
643
+ #: admin/tab-fields.php:415
644
+ msgid "Add/Delete"
645
+ msgstr "Dodaj/Obriši"
646
+
647
+ #: admin/tab-fields.php:421
648
+ msgid "Checked?"
649
+ msgstr "Čekirano?"
650
+
651
+ #: admin/tab-fields.php:423
652
+ #, fuzzy
653
+ msgid "Users Screen"
654
+ msgstr "Выгрузить"
655
+
656
+ #: admin/tab-fields.php:435
657
+ msgid "Delete"
658
+ msgstr "Obrisati"
659
+
660
+ #: admin/tab-fields.php:447
661
+ msgid "(Email cannot be removed)"
662
+ msgstr "(Email ne može da se ukloni)"
663
+
664
+ #: admin/tab-fields.php:467
665
+ #, fuzzy
666
+ msgid "Registration Date"
667
+ msgstr "Регистрация завершена"
668
+
669
+ #: admin/tab-fields.php:470
670
+ #, fuzzy
671
+ msgid "native"
672
+ msgstr ""
673
+ "Определите, какие поля следует отображать, и какие должны быть "
674
+ "обязательными. Этот список содержит все поля, как WordPress`а, так и WP-"
675
+ "Members"
676
+
677
+ #: admin/tab-fields.php:480
678
+ #, fuzzy
679
+ msgid "Active"
680
+ msgstr "Aktiviraj"
681
+
682
+ #: admin/tab-fields.php:492
683
+ #, fuzzy
684
+ msgid "Registration IP"
685
+ msgstr "IP при регистрации"
686
+
687
+ #: admin/tab-fields.php:527
688
+ msgid "Update Fields"
689
+ msgstr "Update-uj polja"
690
+
691
+ #: admin/tab-options.php:48
692
+ msgid "Manage Options"
693
+ msgstr "Upravljaj opcijama"
694
+
695
+ #: admin/tab-options.php:54
696
+ msgid "Block Posts by default"
697
+ msgstr "Blokiraj postove po defaultu"
698
+
699
+ #: admin/tab-options.php:54
700
+ msgid ""
701
+ "Note: Posts can still be individually blocked or unblocked at the article "
702
+ "level"
703
+ msgstr ""
704
+ "Beleška: Postovi mogu i dalje biti individualno blokirani ili odblokirani na "
705
+ "nivou članka"
706
+
707
+ #: admin/tab-options.php:55
708
+ msgid "Block Pages by default"
709
+ msgstr "Blokiraj stranice po defaultu"
710
+
711
+ #: admin/tab-options.php:55
712
+ msgid ""
713
+ "Note: Pages can still be individually blocked or unblocked at the article "
714
+ "level"
715
+ msgstr ""
716
+ "Beleška: Stranice mogu biti individualno blokirane ili deblokirane na nivou "
717
+ "članka"
718
+
719
+ #: admin/tab-options.php:56
720
+ msgid "Show excerpts"
721
+ msgstr "Prikaži odlomke"
722
+
723
+ #: admin/tab-options.php:56
724
+ msgid ""
725
+ "Shows excerpted content above the login/registration on both Posts and Pages"
726
+ msgstr ""
727
+ "Prikaži sadržaj odlomaka iznad login/registracije na Postovima i Stranice"
728
+
729
+ #: admin/tab-options.php:57
730
+ msgid "Notify admin"
731
+ msgstr "Obavesti admina"
732
+
733
+ #: admin/tab-options.php:57
734
+ #, fuzzy, php-format
735
+ msgid "Notify %s for each new registration? %s"
736
+ msgstr "Pošalji email adminu za svaku novu registraciju?"
737
+
738
+ #: admin/tab-options.php:58
739
+ msgid "Moderate registration"
740
+ msgstr "Upravljajte registracijom"
741
+
742
+ #: admin/tab-options.php:58
743
+ msgid "Holds new registrations for admin approval"
744
+ msgstr "Sadrži nove registracije za odobrenje od dmina"
745
+
746
+ #: admin/tab-options.php:91
747
+ #, fuzzy
748
+ msgid "Enable CAPTCHA"
749
+ msgstr "Uključi CAPTCHA za registraciju"
750
+
751
+ #: admin/tab-options.php:59
752
+ msgid "Turns on CAPTCHA for registration"
753
+ msgstr "Uključi CAPTCHA za registraciju"
754
+
755
+ #: admin/tab-options.php:60
756
+ #, fuzzy
757
+ msgid "Hide registration"
758
+ msgstr "Регистрация завершена"
759
+
760
+ #: admin/tab-options.php:60
761
+ msgid "Removes the registration form from blocked content"
762
+ msgstr ""
763
+
764
+ #: admin/tab-options.php:62
765
+ msgid "Time-based expiration"
766
+ msgstr "Trajanje bazirano na vremenu"
767
+
768
+ #: admin/tab-options.php:62
769
+ msgid "Allows for access to expire"
770
+ msgstr "Dozvoljava vam da pristupite trajanju"
771
+
772
+ #: admin/tab-options.php:63
773
+ msgid "Trial period"
774
+ msgstr "Trial period"
775
+
776
+ #: admin/tab-options.php:63
777
+ msgid "Allows for a trial period"
778
+ msgstr "Dozvoljeno za trial period"
779
+
780
+ #: admin/tab-options.php:64
781
+ msgid "Ignore warning messages"
782
+ msgstr "Ignorisati poruke upozorenja"
783
+
784
+ #: admin/tab-options.php:64
785
+ msgid "Ignores WP-Members warning messages in the admin panel"
786
+ msgstr "Ignorisati WP-Members poruke upozorenja u admin panelu"
787
+
788
+ #: admin/tab-options.php:81
789
+ msgid "Attribution"
790
+ msgstr ""
791
+
792
+ #: admin/tab-options.php:83
793
+ msgid ""
794
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
795
+ msgstr ""
796
+
797
+ #: admin/tab-options.php:87
798
+ #, fuzzy
799
+ msgid "Auto Excerpt:"
800
+ msgstr "Prikaži odlomke"
801
+
802
+ #: admin/tab-options.php:88
803
+ #, fuzzy
804
+ msgid "Number of words in excerpt:"
805
+ msgstr "Prikaži odlomke"
806
+
807
+ #: admin/tab-options.php:88 admin/tab-options.php:108
808
+ #: admin/tab-options.php:118 admin/tab-options.php:132
809
+ msgid "Optional"
810
+ msgstr "Opcionalno"
811
+
812
+ #: admin/tab-options.php:88
813
+ #, fuzzy
814
+ msgid "Automatically creates an excerpt"
815
+ msgstr "Prikaži odlomke"
816
+
817
+ #: admin/tab-options.php:103
818
+ #, fuzzy
819
+ msgid "User Profile Page:"
820
+ msgstr "Пользователь обновлен"
821
+
822
+ #: admin/tab-options.php:106
823
+ msgid "For creating a forgot password link in the login form"
824
+ msgstr ""
825
+
826
+ #: admin/tab-options.php:113
827
+ #, fuzzy
828
+ msgid "Register Page:"
829
+ msgstr " URL registarske stranice:"
830
+
831
+ #: admin/tab-options.php:116
832
+ msgid "For creating a register link in the login form"
833
+ msgstr ""
834
+
835
+ #: admin/tab-options.php:126
836
+ msgid "Select a stylesheet or specify a custom stylesheet below"
837
+ msgstr ""
838
+
839
+ #: admin/tab-options.php:131
840
+ #, fuzzy
841
+ msgid "Custom Stylesheet:"
842
+ msgstr "Пользовательский"
843
+
844
+ #: admin/tab-options.php:136
845
+ msgid "Update Settings"
846
+ msgstr "Update postavki"
847
+
848
+ #: admin/tab-options.php:246
849
+ msgid "WP-Members settings were updated"
850
+ msgstr "WP-Memberspostavke su updatovane"
851
+
852
+ #: admin/tab-options.php:296
853
+ #, fuzzy
854
+ msgid "Select a page"
855
+ msgstr "Nova registracija"
856
+
857
+ #: admin/tab-options.php:304
858
+ msgid "USE CUSTOM URL BELOW"
859
+ msgstr ""
860
+
861
+ #: admin/user-export.php:57 admin/user-export.php:172
862
+ msgid "Activated?"
863
+ msgstr "Aktivirano?"
864
+
865
+ #: admin/user-export.php:61 admin/user-export.php:175
866
+ msgid "Subscription"
867
+ msgstr "Pretplata"
868
+
869
+ #: admin/user-export.php:61 admin/user-export.php:175
870
+ msgid "Expires"
871
+ msgstr "Ističe"
872
+
873
+ #: admin/user-export.php:64 admin/user-export.php:178
874
+ msgid "Registered"
875
+ msgstr "Registrovan"
876
+
877
+ #: admin/user-export.php:65 admin/user-export.php:179
878
+ msgid "IP"
879
+ msgstr "IP"
880
+
881
+ #: admin/user-profile.php:46
882
+ msgid "WP-Members Additional Fields"
883
+ msgstr "WP-Members Additional Fields"
884
+
885
+ #: admin/user-profile.php:66 native-registration.php:36
886
+ #: native-registration.php:159 users.php:62
887
+ msgid "(required)"
888
+ msgstr "Potrbno?"
889
+
890
+ #: admin/user-profile.php:98
891
+ msgid "Activate this user?"
892
+ msgstr "Aktivirajte ovog korisnika?"
893
+
894
+ #: admin/user-profile.php:103
895
+ msgid "Reactivate this user?"
896
+ msgstr "Reaktivirajte ovog korisnika?"
897
+
898
+ #: admin/user-profile.php:108
899
+ msgid "Deactivate this user?"
900
+ msgstr "Deaktivirajte ovog korisnika?"
901
+
902
+ #: admin/user-profile.php:129
903
+ msgid "IP @ registration"
904
+ msgstr "IP @ registracija"
905
+
906
+ #: admin/users.php:45 admin/users.php:49
907
+ msgid "Export"
908
+ msgstr "Export"
909
+
910
+ #: admin/users.php:50 admin/users.php:91
911
+ #, fuzzy
912
+ msgid "Export All Users"
913
+ msgstr "Выгрузить"
914
+
915
+ #: forms.php:95
916
+ #, fuzzy
917
+ msgid "Existing Users Log In"
918
+ msgstr "Войти"
919
+
920
+ #: forms.php:161 wp-members-dialogs.php:192
921
+ msgid "Change Password"
922
+ msgstr "Promeni šifru"
923
+
924
+ #: forms.php:163
925
+ msgid "Update Password"
926
+ msgstr "Update-uj čifr"
927
+
928
+ #: forms.php:227
929
+ msgid "Reset Forgotten Password"
930
+ msgstr "Resetuj zabranjenu šifru"
931
+
932
+ #: forms.php:403
933
+ msgid "Forgot password?"
934
+ msgstr "Zaboravili ste šifru?"
935
+
936
+ #: forms.php:403
937
+ msgid "Click here to reset"
938
+ msgstr "Kliknite ovde za restart"
939
+
940
+ #: forms.php:418
941
+ msgid "New User?"
942
+ msgstr "Novi korisnik?"
943
+
944
+ #: forms.php:418
945
+ msgid "Click here to register"
946
+ msgstr "Kliknite ovde za registraciju"
947
+
948
+ #: forms.php:515
949
+ msgid "Required field"
950
+ msgstr "Zahtevano polje"
951
+
952
+ #: forms.php:521
953
+ #, fuzzy
954
+ msgid "Reset Form"
955
+ msgstr "Произошла ошибка в форма CAPTCHA."
956
+
957
+ #: forms.php:523
958
+ #, fuzzy
959
+ msgid "Update Profile"
960
+ msgstr "Пользователь обновлен"
961
+
962
+ #: forms.php:561
963
+ msgid "Choose a Username"
964
+ msgstr "Izaberite korisničko ime"
965
+
966
+ #: forms.php:683 native-registration.php:65
967
+ #, php-format
968
+ msgid "Please indicate that you agree to the %s TOS %s"
969
+ msgstr "Molimo vas budite jasni da li želite da se %s TOS %s"
970
+
971
+ #: forms.php:852
972
+ #, fuzzy
973
+ msgid "New User Registration"
974
+ msgstr "Новый пользователь?"
975
+
976
+ #: forms.php:1018
977
+ msgid "Input the code:"
978
+ msgstr ""
979
+
980
+ #: users.php:38
981
+ #, fuzzy
982
+ msgid "Additional Information"
983
+ msgstr "WP-Members Дополнительные поля"
984
+
985
+ #: wp-members-core.php:118 wp-members-core.php:245
986
+ msgid "There was an error with the CAPTCHA form."
987
+ msgstr "Pojavio se error sa CAPTCHA formom."
988
+
989
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
990
+ msgid "Edit Your Information"
991
+ msgstr "Edituj svoje informcije"
992
+
993
+ #: wp-members-core.php:544
994
+ msgid "<strong>ERROR</strong>: User has not been activated."
995
+ msgstr "<strong>ERROR</strong> : Korisnik nije aktiviran."
996
+
997
+ #: wp-members-core.php:903 wp-members-register.php:93
998
+ #, php-format
999
+ msgid "Sorry, %s is a required field."
1000
+ msgstr "Žao nam je, %s je m ora da bude unešeno u polje."
1001
+
1002
+ #: wp-members-dialogs.php:42
1003
+ msgid "Login Failed!"
1004
+ msgstr "Login nije uspeo!"
1005
+
1006
+ #: wp-members-dialogs.php:45
1007
+ msgid "You entered an invalid username or password."
1008
+ msgstr "Uneli ste nepostojeće korisničko ime ili šifru.."
1009
+
1010
+ #: wp-members-dialogs.php:47
1011
+ msgid "Click here to continue."
1012
+ msgstr "Klik ovde za nastavak."
1013
+
1014
+ #: wp-members-dialogs.php:191
1015
+ msgid "Edit My Information"
1016
+ msgstr "Editujte moje informacije"
1017
+
1018
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1019
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1020
+ #: wp-members-sidebar.php:246
1021
+ #, php-format
1022
+ msgid "You are logged in as %s"
1023
+ msgstr "Ulogovani ste kao %s"
1024
+
1025
+ #: wp-members-dialogs.php:208
1026
+ #, fuzzy
1027
+ msgid "Click to log out."
1028
+ msgstr "Войти"
1029
+
1030
+ #: wp-members-dialogs.php:209
1031
+ msgid "Begin using the site."
1032
+ msgstr "Počnite da koristite sajt"
1033
+
1034
+ #: wp-members-dialogs.php:225
1035
+ #, fuzzy
1036
+ msgid "Click to log out"
1037
+ msgstr "Войти"
1038
+
1039
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1040
+ #, fuzzy
1041
+ msgid "click to log out"
1042
+ msgstr "Войти"
1043
+
1044
+ #: wp-members-dialogs.php:271
1045
+ msgid "Password fields cannot be empty"
1046
+ msgstr "Oilja sa šiframa ne mogu da budu prazna"
1047
+
1048
+ #: wp-members-register.php:51
1049
+ #, fuzzy
1050
+ msgid "There was an error processing the form."
1051
+ msgstr "Произошла ошибка в форма CAPTCHA."
1052
+
1053
+ #: wp-members-register.php:110
1054
+ msgid "Sorry, username is a required field"
1055
+ msgstr "Žao nam je, korisničko ime morate da unesete u polje"
1056
+
1057
+ #: wp-members-register.php:111
1058
+ msgid "The username cannot include non-alphanumeric characters."
1059
+ msgstr "Ime korisnika ne može da uključi ne alfanumeričke karaktere."
1060
+
1061
+ #: wp-members-register.php:112 wp-members-register.php:282
1062
+ msgid "You must enter a valid email address."
1063
+ msgstr "Morate da unesete validnu email adresu."
1064
+
1065
+ #: wp-members-register.php:119
1066
+ #, fuzzy
1067
+ msgid "Passwords did not match."
1068
+ msgstr "Šifra se ne slaže"
1069
+
1070
+ #: wp-members-register.php:120 wp-members-register.php:286
1071
+ #, fuzzy
1072
+ msgid "Emails did not match."
1073
+ msgstr "Šifra se ne slaže"
1074
+
1075
+ #: wp-members-register.php:127
1076
+ msgid "You must complete the CAPTCHA form."
1077
+ msgstr "Morate da popunite CAPTCHA formu."
1078
+
1079
+ #: wp-members-register.php:377
1080
+ msgid "We were unable to validate the public key."
1081
+ msgstr "Nismo mogli da validujemo javni ključ."
1082
+
1083
+ #: wp-members-register.php:381
1084
+ msgid "We were unable to validate the private key."
1085
+ msgstr "Nismo mogli da validujemo privatni ključ"
1086
+
1087
+ #: wp-members-register.php:385
1088
+ msgid "The challenge parameter of the verify script was incorrect."
1089
+ msgstr "Izazovni parametar verifikovanog skripta nisu tačni."
1090
+
1091
+ #: wp-members-register.php:389
1092
+ msgid "The CAPTCHA solution was incorrect."
1093
+ msgstr "CAPTCHA rešenje nije tačno."
1094
+
1095
+ #: wp-members-register.php:393
1096
+ msgid "The parameters to verify were incorrect"
1097
+ msgstr "Parametri za verifikaciju su netačni."
1098
+
1099
+ #: wp-members-register.php:397
1100
+ msgid ""
1101
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1102
+ msgstr ""
1103
+ "reCAPTCHA API ključevi su vezani za odredjeno domain ime iz sigurnosnih "
1104
+ "razloga."
1105
+
1106
+ #: wp-members-register.php:401
1107
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1108
+ msgstr "reCAPTCHA server nije dostupan. Pokušajte ponovo."
1109
+
1110
+ #: wp-members-register.php:405
1111
+ msgid "You have entered an incorrect code value. Please try again."
1112
+ msgstr ""
1113
+
1114
+ #: wp-members-sidebar.php:117
1115
+ msgid "Login Failed!<br />You entered an invalid username or password."
1116
+ msgstr "Login nije uspeo!<br />Uneli ste nepostojeće korisničko ime i šifru."
1117
+
1118
+ #: wp-members-sidebar.php:118
1119
+ #, fuzzy
1120
+ msgid "You are not logged in."
1121
+ msgstr "Ulogovani ste kao %s"
1122
+
1123
+ #: wp-members-sidebar.php:169
1124
+ #, fuzzy
1125
+ msgid "log in"
1126
+ msgstr "Войти"
1127
+
1128
+ #: wp-members-sidebar.php:180
1129
+ msgid "Forgot?"
1130
+ msgstr "Zaboravili?"
1131
+
1132
+ #: wp-members-sidebar.php:247
1133
+ msgid "click here to log out"
1134
+ msgstr "klik ovde za logout"
1135
+
1136
+ #: wp-members-sidebar.php:279
1137
+ msgid "Displays the WP-Members sidebar login."
1138
+ msgstr ""
1139
+
1140
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1141
+ msgid "Login Status"
1142
+ msgstr "Login Status"
1143
+
1144
+ #: wp-members-sidebar.php:299
1145
+ msgid "Title:"
1146
+ msgstr "Naslov:"
1147
+
1148
+ #: wp-members-tos.php:24
1149
+ msgid "Terms of Service"
1150
+ msgstr "Pravila"
1151
+
1152
+ #: wp-members-tos.php:36
1153
+ #, php-format
1154
+ msgid "%sclose%s"
1155
+ msgstr "%sclose%s"
1156
+
1157
+ #: wp-members-tos.php:38
1158
+ #, php-format
1159
+ msgid "%sprint%s"
1160
+ msgstr "%sprint%s"
1161
+
1162
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1163
+ #: Strings wp-members-install.php:49
1164
+ msgid "First Name"
1165
+ msgstr "Ime"
1166
+
1167
+ #: wp-members-install.php:50
1168
+ msgid "Last Name"
1169
+ msgstr "Prezime"
1170
+
1171
+ #: wp-members-install.php:51
1172
+ msgid "Address 1"
1173
+ msgstr "Adresa 1"
1174
+
1175
+ #: wp-members-install.php:52
1176
+ msgid "Address 2"
1177
+ msgstr "Adresa 2"
1178
+
1179
+ #: wp-members-install.php:53
1180
+ msgid "City"
1181
+ msgstr "Grad"
1182
+
1183
+ #: wp-members-install.php:54
1184
+ msgid "State"
1185
+ msgstr "Država"
1186
+
1187
+ #: wp-members-install.php:55
1188
+ msgid "Zip"
1189
+ msgstr "Poštanski broj"
1190
+
1191
+ #: wp-members-install.php:56
1192
+ msgid "Country"
1193
+ msgstr "Zemlja"
1194
+
1195
+ #: wp-members-install.php:57
1196
+ msgid "Day Phone"
1197
+ msgstr "Dnevni telefon"
1198
+
1199
+ #: wp-members-install.php:59
1200
+ msgid "Website"
1201
+ msgstr "Website"
1202
+
1203
+ #: wp-members-install.php:60
1204
+ msgid "AIM"
1205
+ msgstr "AIM"
1206
+
1207
+ #: wp-members-install.php:61
1208
+ msgid "Yahoo IM"
1209
+ msgstr "Yahoo IM"
1210
+
1211
+ #: wp-members-install.php:62
1212
+ msgid "Jabber/Google Talk"
1213
+ msgstr "Jabber/Google Talk"
1214
+
1215
+ #: wp-members-install.php:63
1216
+ msgid "Biographical Info"
1217
+ msgstr "Biografska info"
1218
+
1219
+ #: wp-members-install.php:64 wp-members-install.php:211
1220
+ msgid "TOS"
1221
+ msgstr "TOS"
1222
+
1223
+ #: Error message dialog strings wp-members-install.php:96
1224
+ #, fuzzy
1225
+ msgid ""
1226
+ "This content is restricted to site members. If you are an existing user, "
1227
+ "please log in. New users may register below."
1228
+ msgstr ""
1229
+ "Ovaj sadržaj je zabranjen članovima sajta. Ako ste korisnik molim vas "
1230
+ "ulogujte se. Novi korisnik se može ulogovati ispod."
1231
+
1232
+ #: wp-members-install.php:97
1233
+ msgid "Sorry, that username is taken, please try another."
1234
+ msgstr "Žao nam je, ovo korisničko ime je uzeto, pokušajte drugo."
1235
+
1236
+ #: wp-members-install.php:98
1237
+ msgid ""
1238
+ "Sorry, that email address already has an account.<br />Please try another."
1239
+ msgstr "Žao nam je, ova mail adresa već ima nalog.<br />Pokušajte drugu."
1240
+
1241
+ #: wp-members-install.php:99
1242
+ #, fuzzy
1243
+ msgid ""
1244
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1245
+ "log in using the password that was emailed to you."
1246
+ msgstr ""
1247
+ "Čestitamo! Vaša registracija je uspela.<br /><br />Sada možete da se "
1248
+ "ulogujete koristeći šifru koja vam je postala mailom."
1249
+
1250
+ #: wp-members-install.php:100
1251
+ msgid "Your information was updated!"
1252
+ msgstr "Vaša informacija je updatovana!"
1253
+
1254
+ #: wp-members-install.php:101
1255
+ msgid "Passwords did not match.<br /><br />Please try again."
1256
+ msgstr "Šivra se ne poklapa.<br /><br />Pokšajte opet."
1257
+
1258
+ #: wp-members-install.php:102
1259
+ msgid ""
1260
+ "Password successfully changed!<br /><br />You will need to re-login with "
1261
+ "your new password."
1262
+ msgstr ""
1263
+ "Šifra je uspešno promenjena!<br /><br /> Moraćete da se ponovo ulogujete sa "
1264
+ "novom šifrom."
1265
+
1266
+ #: wp-members-install.php:103
1267
+ msgid "Either the username or email address do not exist in our records."
1268
+ msgstr "Ili korisničko ime ili email adresa ne postoje u nečim beleškama."
1269
+
1270
+ #: wp-members-install.php:104
1271
+ msgid ""
1272
+ "Password successfully reset!<br /><br />An email containing a new password "
1273
+ "has been sent to the email address on file for your account. You may change "
1274
+ "this random password then re-login with your new password."
1275
+ msgstr ""
1276
+ "Šifra je uspešno restartovana! <br /><br />Email koji sadrži novu šifru je "
1277
+ "poslat na mail adrese u fajlu za vaš nalog. Možete promeniti ovu nasumičnu "
1278
+ "šifru i potom se ponovo ulogovati sa novom šifrom."
1279
+
1280
+ #~ msgid "Yes"
1281
+ #~ msgstr "Da"
1282
+
1283
+ #~ msgid "WP-Members"
1284
+ #~ msgstr "WP-Members"
1285
+
1286
+ #~ msgid "Custom"
1287
+ #~ msgstr "Custom"
1288
+
1289
+ #, fuzzy
1290
+ #~ msgid "edit"
1291
+ #~ msgstr "Редактирование ваших данных"
1292
+
1293
+ #, fuzzy
1294
+ #~ msgid "Edit"
1295
+ #~ msgstr "Редактирование ваших данных"
1296
+
1297
+ #~ msgid "Use reCAPTCHA"
1298
+ #~ msgstr "Koristi reCAPTCHA"
1299
+
1300
+ #, fuzzy
1301
+ #~ msgid "Pages"
1302
+ #~ msgstr "Блокировать страницы по умолчанию"
1303
+
1304
+ #~ msgid "No"
1305
+ #~ msgstr "Ne"
1306
+
1307
+ #~ msgid "Activate"
1308
+ #~ msgstr "Aktiviraj"
1309
+
1310
+ #~ msgid "Username"
1311
+ #~ msgstr "Korisn ičko ime"
1312
+
1313
+ #~ msgid "Password"
1314
+ #~ msgstr "Šifra"
1315
+
1316
+ #, fuzzy
1317
+ #~ msgid "Log In"
1318
+ #~ msgstr "Войти"
1319
+
1320
+ #~ msgid "New Password"
1321
+ #~ msgstr "Nova šifra"
1322
+
1323
+ #~ msgid "Repeat Password"
1324
+ #~ msgstr "Ponovi šifru"
1325
+
1326
+ #~ msgid "Email"
1327
+ #~ msgstr "Email"
1328
+
1329
+ #~ msgid "Reset Password"
1330
+ #~ msgstr "Resetuj šifru"
1331
+
1332
+ #~ msgid "Remember me"
1333
+ #~ msgstr "Zapamti"
1334
+
1335
+ #~ msgid "Register"
1336
+ #~ msgstr "Registruj se"
1337
+
1338
+ #~ msgid "Turn off registration"
1339
+ #~ msgstr "Ugasi registraciju"
1340
+
1341
+ #~ msgid "Turns off the registration process, only allows login"
1342
+ #~ msgstr ""
1343
+ #~ "Gašenje registracije je u procesu, samo može login da bude dozvoljen"
1344
+
1345
+ #~ msgid "Legacy forms"
1346
+ #~ msgstr "Forme nasledja"
1347
+
1348
+ #~ msgid ""
1349
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1350
+ #~ "forms)"
1351
+ #~ msgstr ""
1352
+ #~ "Koristi pre-2.5.1 forme bayirane na tabeli (ostavi radi korišćenja CSS "
1353
+ #~ "forme sa manje tabela)"
1354
+
1355
+ #~ msgid "Members Area URL:"
1356
+ #~ msgstr "URL područja članova:"
1357
+
1358
+ #~ msgid "Add"
1359
+ #~ msgstr "Dodati"
1360
+
1361
+ #~ msgid "WP-Members expiration periods were updated"
1362
+ #~ msgstr "WP-Members period trajanja su updateovani"
1363
+
1364
+ #~ msgid ""
1365
+ #~ "Settings were saved, but you have required fields that are not set to "
1366
+ #~ "display!"
1367
+ #~ msgstr ""
1368
+ #~ "Postavke su sačuvane, ali imate obavezna polja koja nisu nameštena za "
1369
+ #~ "prikaz!"
1370
+
1371
+ #~ msgid ""
1372
+ #~ "Note: This will not cause an error for the end user, as only displayed "
1373
+ #~ "fields are validated. However, you should still check that your "
1374
+ #~ "displayed and required fields match up. Mismatched fields are "
1375
+ #~ "highlighted below."
1376
+ #~ msgstr ""
1377
+ #~ "Napomena : Ovo neće izazvati error za krajnjeg korisnika , jer su samo "
1378
+ #~ "polja proverena . Međutim , ipak bi trebalo da proverite da li se vaša "
1379
+ #~ "prikazana i obavezna polja poklapaju . Jezik ispod polja su označena."
1380
+
1381
+ #~ msgid "If you find this plugin useful, please consider making a donation"
1382
+ #~ msgstr ""
1383
+ #~ "Ako mislite da je ova plugin korisna, možete da napravite malu donaciju"
1384
+
1385
+ #~ msgid "Subscriptions"
1386
+ #~ msgstr "Pretplata"
1387
+
1388
+ #~ msgid "PayPal Settings"
1389
+ #~ msgstr "PayPal postavke"
1390
+
1391
+ #~ msgid "If you find this plugin useful, please consider a %s donation %s"
1392
+ #~ msgstr ""
1393
+ #~ "Ako mislite da je ova plugin korisna, možete da napravite malu %s donaciju"
1394
+ #~ "%s"
1395
+
1396
+ #~ msgid "%d users were activated."
1397
+ #~ msgstr "%d korisnici su aktivirani."
1398
+
1399
+ #~ msgid ""
1400
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1401
+ #~ msgstr ""
1402
+ #~ "Korisnici spremni za export,%s kliknite ovde %s za generisanje i "
1403
+ #~ "download CSV-a."
1404
+
1405
+ #~ msgid "WP-Members Users"
1406
+ #~ msgstr "WP-Members korisnici"
1407
+
1408
+ #~ msgid "Add New"
1409
+ #~ msgstr "Dodaj novi"
1410
+
1411
+ #~ msgid "No users matched your criteria"
1412
+ #~ msgstr "Nijedan korisnik se ne slaže sa vašim kriterijumom"
1413
+
1414
+ #~ msgid "Bulk Actions"
1415
+ #~ msgstr "Bulk Actions"
1416
+
1417
+ #~ msgid "Apply"
1418
+ #~ msgstr "Primeni"
1419
+
1420
+ #~ msgid "Indicates a required field"
1421
+ #~ msgstr "Ukazuje na za zahtevano polje"
1422
+
1423
+ #~ msgid "Login"
1424
+ #~ msgstr "Login"
1425
+
1426
+ #~ msgid "Clear Form"
1427
+ #~ msgstr "očisti forma"
1428
+
1429
+ #~ msgid "Submit"
1430
+ #~ msgstr "Podnesi"
1431
+
1432
+ #~ msgid "Cheatin&#8217; uh?"
1433
+ #~ msgstr "Cheatin&#8217; uh?"
1434
+
1435
+ #~ msgid "there was an error and no users were exported"
1436
+ #~ msgstr "pojavio se error i nijedan korisnik nije ekspotovan"
1437
+
1438
+ #~ msgid "login"
1439
+ #~ msgstr "login"
lang/wp-members-sv_SE.mo ADDED
Binary file
lang/wp-members-sv_SE.po ADDED
@@ -0,0 +1,1606 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP-Members 2.9.6\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
5
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
6
+ "PO-Revision-Date: 2014-10-17 11:54-0600\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "Language: sv\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-Generator: Poedit 1.6.4\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
+ # @ default
23
+ # @ wp-members
24
+ #: admin/admin.php:60 admin/admin.php:129
25
+ msgid "Settings"
26
+ msgstr "Inställningar"
27
+
28
+ # @ wp-members
29
+ #: admin/admin.php:187
30
+ msgid "Options"
31
+ msgstr "Alternativ"
32
+
33
+ # @ wp-members
34
+ #: admin/admin.php:188
35
+ msgid "Fields"
36
+ msgstr "Fält"
37
+
38
+ # @ wp-members
39
+ #: admin/admin.php:189
40
+ msgid "Dialogs"
41
+ msgstr "Dialogrutor"
42
+
43
+ # @ wp-members
44
+ #: admin/admin.php:190
45
+ msgid "Emails"
46
+ msgstr ""
47
+
48
+ # @ wp-members
49
+ #: admin/dialogs.php:109
50
+ msgid ""
51
+ "Your WP settings allow anyone to register - this is not the recommended "
52
+ "setting."
53
+ msgstr ""
54
+ "Dina WP inställningar tillåter vem som helst att registrera sig - detta är "
55
+ "inte den rekommenderade inställningen."
56
+
57
+ # @ wp-members
58
+ #: admin/dialogs.php:110
59
+ #, php-format
60
+ msgid ""
61
+ "You can %s change this here %s making sure the box next to \"Anyone can "
62
+ "register\" is unchecked."
63
+ msgstr ""
64
+ "Du kan %s ändra detta här %s och se till att rutan bredvid \"Vem som helst "
65
+ "kan registrera\" är urkryssad."
66
+
67
+ # @ wp-members
68
+ #: admin/dialogs.php:111
69
+ msgid ""
70
+ "This setting allows a link on the /wp-login.php page to register using the "
71
+ "WP native registration process thus circumventing any registration you are "
72
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
73
+ "but most users should uncheck this option. If you do not change this "
74
+ "setting, you can choose to ignore these warning messages under WP-Members "
75
+ "Settings."
76
+ msgstr ""
77
+ "Denna inställning gör att en länk på /wp-login.php sida för att registrera, "
78
+ "via WP:s original registreringsprocess och därmed kringgå eventuell "
79
+ "registrering som du använder med WP-Members. I vissa fall kan detta passa "
80
+ "användarna vill ha/behöver, men de flesta användare bör avmarkera detta "
81
+ "alternativ. Om du inte ändrar den här inställningen kan du välja att "
82
+ "ignorera dessa varningsmeddelanden i WP-Members inställningar."
83
+
84
+ # @ wp-members
85
+ #: admin/dialogs.php:117
86
+ msgid ""
87
+ "Your WP settings allow anyone to comment - this is not the recommended "
88
+ "setting."
89
+ msgstr ""
90
+ "Dina WP inställningar tillåter vem som helst att kommentera - detta är inte "
91
+ "den rekommenderade inställningen."
92
+
93
+ # @ wp-members
94
+ #: admin/dialogs.php:118
95
+ #, php-format
96
+ msgid ""
97
+ "You can %s change this here %s by checking the box next to \"Users must be "
98
+ "registered and logged in to comment.\""
99
+ msgstr ""
100
+ "Du kan %s ändra det här %s genom att se till att rutan bredvid \"Vem som "
101
+ "helst kan registrera\" är ikryssad."
102
+
103
+ # @ wp-members
104
+ #: admin/dialogs.php:119
105
+ msgid ""
106
+ "This setting allows any users to comment, whether or not they are "
107
+ "registered. Depending on how you are using WP-Members will determine whether "
108
+ "you should change this setting or not. If you do not change this setting, "
109
+ "you can choose to ignore these warning messages under WP-Members Settings."
110
+ msgstr ""
111
+ "Denna inställning gör att varje användare kan kommentera, oavsett om de är "
112
+ "registrerade. Beroende på hur du använder WP-Members kommer att avgöra om du "
113
+ "bör ändra denna inställning eller inte. Om du inte ändrar den här "
114
+ "inställningen kan du välja att ignorera dessa varningsmeddelanden i WP-"
115
+ "medlemmar inställningar."
116
+
117
+ # @ wp-members
118
+ #: admin/dialogs.php:125
119
+ msgid ""
120
+ "Your WP settings allow full text rss feeds - this is not the recommended "
121
+ "setting."
122
+ msgstr ""
123
+ "Dina WP inställningar tillåter fulltext RSS-flöden - detta är inte den "
124
+ "rekommenderade inställningen."
125
+
126
+ # @ wp-members
127
+ #: admin/dialogs.php:126
128
+ #, php-format
129
+ msgid ""
130
+ "You can %s change this here %s by changing \"For each article in a feed, show"
131
+ "\" to \"Summary.\""
132
+ msgstr ""
133
+ "Du kan %s ändra det här %s genom att ändra \"For each article in a feed, show"
134
+ "\" till \"Summary.\""
135
+
136
+ # @ wp-members
137
+ #: admin/dialogs.php:127
138
+ msgid ""
139
+ "Leaving this set to full text allows anyone to read your protected content "
140
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
141
+ "only show summary text."
142
+ msgstr ""
143
+ "Lämnar denna satt till fulltext kan vem som helst läsa skyddat innehåll i en "
144
+ "RSS-läsare. Ändra detta till Sammanfattning förhindrar detta som dina flöden "
145
+ "visas endast sammanfattande text."
146
+
147
+ # @ wp-members
148
+ #: admin/dialogs.php:133
149
+ msgid "You have set WP-Members to hold registrations for approval"
150
+ msgstr "Du har ställt WP-Members att hålla registreringar för godkännande"
151
+
152
+ # @ wp-members
153
+ #: admin/dialogs.php:134
154
+ msgid ""
155
+ "but you have not changed the default message for \"Registration Completed\" "
156
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
157
+ "message to let users know they are pending approval."
158
+ msgstr ""
159
+ "men du har inte ändrat det förvalda meddelandet för \"Registration Completed"
160
+ "\" under \"WP-Members Dialogs and Error Messages.\" Du bör ändra detta "
161
+ "meddelande för att låta användare veta att dom har väntande godkännanden."
162
+
163
+ # @ wp-members
164
+ #: admin/dialogs.php:140
165
+ msgid "You have set WP-Members to turn off the registration process"
166
+ msgstr "Du har ställt WP-Members för att stänga av registreringen"
167
+
168
+ # @ wp-members
169
+ #: admin/dialogs.php:141
170
+ msgid ""
171
+ "but you also set to moderate and/or email admin new registrations. You will "
172
+ "need to set up a registration page for users to register."
173
+ msgstr ""
174
+ "men du har också satt att moderera och/eller e-post admin nyregistreringar. "
175
+ "Du kommer att behöva ställa in en registreringssida för användarna att "
176
+ "registrera sig."
177
+
178
+ # @ wp-members
179
+ #: admin/dialogs.php:147
180
+ msgid "You have turned on reCAPTCHA"
181
+ msgstr "Du har slagit på reCAPTCHA"
182
+
183
+ # @ wp-members
184
+ #: admin/dialogs.php:148
185
+ msgid ""
186
+ "but you have not entered API keys. You will need both a public and private "
187
+ "key. The CAPTCHA will not display unless a valid API key is included."
188
+ msgstr ""
189
+ "men du har inte fyllt i API-nycklarna. Du behöver både en publik och en "
190
+ "privat nyckel. CKAPCHA kommer inte att visas om det inte finns en giltig API-"
191
+ "nyckel."
192
+
193
+ # @ wp-members
194
+ #: admin/dialogs.php:171
195
+ msgid "Version:"
196
+ msgstr "Version:"
197
+
198
+ # @ wp-members
199
+ #: admin/dialogs.php:172
200
+ msgid "Quick Start Guide"
201
+ msgstr "Snabbstartsguide"
202
+
203
+ # @ wp-members
204
+ #: admin/dialogs.php:173
205
+ msgid "Online User Guide"
206
+ msgstr "Användarguide online"
207
+
208
+ # @ wp-members
209
+ #: admin/dialogs.php:174
210
+ msgid "FAQs"
211
+ msgstr "FAQs"
212
+
213
+ # @ wp-members
214
+ #: admin/dialogs.php:181
215
+ msgid "Thank you for using WP-Members"
216
+ msgstr "Tack för att du använder WP-Members"
217
+
218
+ # @ wp-members
219
+ #: admin/dialogs.php:182
220
+ msgid "A plugin developed by"
221
+ msgstr "Ett tillägg utvecklat av"
222
+
223
+ # @ wp-members
224
+ #: admin/dialogs.php:183
225
+ msgid "Follow"
226
+ msgstr "Följ"
227
+
228
+ # @ wp-members
229
+ #: admin/dialogs.php:200 admin/dialogs.php:204
230
+ msgid "Latest from RocketGeek"
231
+ msgstr "Senaste nytt från RocketGeek"
232
+
233
+ # @ wp-members
234
+ #: admin/dialogs.php:221 admin/dialogs.php:234
235
+ msgid "Latest from ButlerBlog"
236
+ msgstr "Senaste nytt från ButlerBlog"
237
+
238
+ #: admin/post.php:36 admin/post.php:38
239
+ msgid "Block"
240
+ msgstr ""
241
+
242
+ #: admin/post.php:37 admin/post.php:39
243
+ msgid "Unblock"
244
+ msgstr ""
245
+
246
+ #: admin/post.php:120
247
+ #, php-format
248
+ msgid "%s posts %sed."
249
+ msgstr ""
250
+
251
+ # @ wp-members
252
+ #: admin/post.php:138
253
+ msgid "Post Restriction"
254
+ msgstr ""
255
+
256
+ # @ wp-members
257
+ #: admin/post.php:145
258
+ msgid "Page Restriction"
259
+ msgstr ""
260
+
261
+ #: admin/post.php:263 admin/post.php:295
262
+ msgid "Unblocked?"
263
+ msgstr ""
264
+
265
+ # @ wp-members
266
+ #: admin/post.php:263 admin/post.php:295
267
+ msgid "Blocked?"
268
+ msgstr ""
269
+
270
+ # @ wp-members
271
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
272
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
273
+ msgid "Need help?"
274
+ msgstr "I behov av hjälp?"
275
+
276
+ # @ wp-members
277
+ #: admin/tab-captcha.php:46
278
+ msgid "Manage reCAPTCHA Options"
279
+ msgstr "Administrera reCAPTCHA alternativ"
280
+
281
+ # @ wp-members
282
+ #: admin/tab-captcha.php:60
283
+ msgid ""
284
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
285
+ "while blocking spam on your blog."
286
+ msgstr ""
287
+ "reCAPTCHA är en fri, tillgänglig CAPTCHA tjänst som hjälper till att "
288
+ "digitalisera böcker och blockerar skräppost på din blogg."
289
+
290
+ # @ wp-members
291
+ #: admin/tab-captcha.php:61
292
+ #, php-format
293
+ msgid ""
294
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
295
+ "that they are a human. This verifies that they are not a spambot while also "
296
+ "correcting the automatic scans of old books. So you get less spam, and the "
297
+ "world gets accurately digitized books. Everybody wins! For details, visit "
298
+ "the %s reCAPTCHA website%s"
299
+ msgstr ""
300
+ "reCAPTCHA ber kommenterare att skriva två ord som skannats från en bok för "
301
+ "att bevisa att de är en människa. Detta kontrollerar att de inte är en "
302
+ "Spambot samtidigt korrigera den automatiska genomsökningar av gamla böcker. "
303
+ "Så du får mindre skräppost, och världen får exakta digitaliserade böcker. "
304
+ "Alla vinner! För mer information, besök %s reCAPTCHA hemsida %s"
305
+
306
+ # @ wp-members
307
+ #: admin/tab-captcha.php:66
308
+ msgid "reCAPTCHA Keys"
309
+ msgstr "reCAPTCHA Nycklar"
310
+
311
+ # @ wp-members
312
+ #: admin/tab-captcha.php:68
313
+ #, php-format
314
+ msgid ""
315
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
316
+ "key. You can sign up for a %s free reCAPTCHA key%s"
317
+ msgstr ""
318
+ "reCAPTCHA kräver en API-nyckel, som består av ett \"allmän\" och en \"privat"
319
+ "\" nyckel. Du kan anmäla dig till en %s fri reCAPTCHA nyckel %s"
320
+
321
+ # @ wp-members
322
+ #: admin/tab-captcha.php:69
323
+ msgid "Public Key"
324
+ msgstr "Publik nyckel"
325
+
326
+ # @ wp-members
327
+ #: admin/tab-captcha.php:70
328
+ msgid "Private Key"
329
+ msgstr "Privat nyckel"
330
+
331
+ # @ wp-members
332
+ #: admin/tab-captcha.php:74
333
+ msgid "Choose Theme"
334
+ msgstr "Välj tema"
335
+
336
+ # @ wp-members
337
+ #: admin/tab-captcha.php:77
338
+ msgid "Red"
339
+ msgstr "Röd"
340
+
341
+ # @ wp-members
342
+ #: admin/tab-captcha.php:78
343
+ msgid "White"
344
+ msgstr "Vit"
345
+
346
+ # @ wp-members
347
+ #: admin/tab-captcha.php:79
348
+ msgid "Black Glass"
349
+ msgstr "Svart glas"
350
+
351
+ # @ wp-members
352
+ #: admin/tab-captcha.php:80
353
+ msgid "Clean"
354
+ msgstr "Ren"
355
+
356
+ #: admin/tab-captcha.php:112
357
+ msgid "Characters for image"
358
+ msgstr ""
359
+
360
+ #: admin/tab-captcha.php:116
361
+ msgid "Number of characters"
362
+ msgstr "Antal ord i utdrag:"
363
+
364
+ #: admin/tab-captcha.php:120
365
+ msgid "Image dimensions"
366
+ msgstr ""
367
+
368
+ #: admin/tab-captcha.php:124
369
+ msgid "Font color of characters"
370
+ msgstr ""
371
+
372
+ #: admin/tab-captcha.php:128
373
+ msgid "Background color of image"
374
+ msgstr ""
375
+
376
+ #: admin/tab-captcha.php:132
377
+ msgid "Font size"
378
+ msgstr ""
379
+
380
+ #: admin/tab-captcha.php:136
381
+ msgid "Width between characters"
382
+ msgstr ""
383
+
384
+ #: admin/tab-captcha.php:140
385
+ msgid "Image type"
386
+ msgstr ""
387
+
388
+ #: admin/tab-captcha.php:154
389
+ msgid ""
390
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
391
+ "installed and activated."
392
+ msgstr ""
393
+
394
+ # @ wp-members
395
+ #: admin/tab-captcha.php:166
396
+ msgid "Update CAPTCHA Settings"
397
+ msgstr "Uppdatera CAPTCHA inställningarna"
398
+
399
+ # @ wp-members
400
+ #: admin/tab-captcha.php:230
401
+ msgid "CAPTCHA was updated for WP-Members"
402
+ msgstr "CAPTCHA blev uppdaterad för WP-Members"
403
+
404
+ # @ wp-members
405
+ #: admin/tab-dialogs.php:29
406
+ msgid "Restricted post (or page), displays above the login/registration form"
407
+ msgstr ""
408
+ "Begränsat inlägg (eller sida), visas ovanför login-/registrerings-formuläret"
409
+
410
+ # @ wp-members
411
+ #: admin/tab-dialogs.php:30
412
+ msgid "Username is taken"
413
+ msgstr "Användarnamnet är upptaget"
414
+
415
+ # @ wp-members
416
+ #: admin/tab-dialogs.php:31
417
+ msgid "Email is registered"
418
+ msgstr "E-post är registrerad"
419
+
420
+ # @ wp-members
421
+ #: admin/tab-dialogs.php:32
422
+ msgid "Registration completed"
423
+ msgstr "Registreringen är färdig"
424
+
425
+ # @ wp-members
426
+ #: admin/tab-dialogs.php:33
427
+ msgid "User update"
428
+ msgstr "Användaruppdatering"
429
+
430
+ # @ wp-members
431
+ #: admin/tab-dialogs.php:34
432
+ msgid "Passwords did not match"
433
+ msgstr "Lösenorden matchade inte varandra"
434
+
435
+ # @ wp-members
436
+ #: admin/tab-dialogs.php:35
437
+ msgid "Password changes"
438
+ msgstr "Lösenordet ändrades"
439
+
440
+ # @ wp-members
441
+ #: admin/tab-dialogs.php:36
442
+ msgid "Username or email do not exist when trying to reset forgotten password"
443
+ msgstr ""
444
+ "Användarnamn eller e-post finns inte vid försök att återställa det "
445
+ "bortglömda lösenord"
446
+
447
+ # @ wp-members
448
+ #: admin/tab-dialogs.php:37
449
+ msgid "Password reset"
450
+ msgstr "Nollställ lösenord"
451
+
452
+ # @ wp-members
453
+ #: admin/tab-dialogs.php:54
454
+ msgid "Dialogs and Error Messages"
455
+ msgstr "Dialog eller felmeddelande"
456
+
457
+ # @ wp-members
458
+ #: admin/tab-dialogs.php:56
459
+ #, php-format
460
+ msgid ""
461
+ "You can customize the text for dialogs and error messages. Simple HTML is "
462
+ "allowed %s etc."
463
+ msgstr ""
464
+ "Du kan anpassa texten för dialogrutor och felmeddelanden. Enkel HTML är "
465
+ "tillåten %s etc."
466
+
467
+ # @ wp-members
468
+ #: admin/tab-dialogs.php:69
469
+ msgid "Terms of Service (TOS)"
470
+ msgstr "Användarvillkor (TOS)"
471
+
472
+ # @ wp-members
473
+ #: admin/tab-dialogs.php:76
474
+ msgid "Update Dialogs"
475
+ msgstr "Uppdatera dialoger"
476
+
477
+ # @ wp-members
478
+ #: admin/tab-dialogs.php:115
479
+ msgid "WP-Members dialogs were updated"
480
+ msgstr "WP-Membersdialoger blev uppdaterade"
481
+
482
+ # @ wp-members
483
+ #: admin/tab-emails.php:30
484
+ msgid "New Registration"
485
+ msgstr "Registrering av ny användare"
486
+
487
+ # @ wp-members
488
+ #: admin/tab-emails.php:34
489
+ msgid "Registration is Moderated"
490
+ msgstr ""
491
+
492
+ # @ wp-members
493
+ #: admin/tab-emails.php:35
494
+ msgid "Registration is Moderated, User is Approved"
495
+ msgstr "Registreringen är färdig, användaren är godkänd."
496
+
497
+ # @ wp-members
498
+ #: admin/tab-emails.php:40
499
+ msgid "Password Reset"
500
+ msgstr "Nollställ lösenord"
501
+
502
+ # @ wp-members
503
+ #: admin/tab-emails.php:45
504
+ msgid "Admin Notification"
505
+ msgstr "Adminunderrättelse"
506
+
507
+ # @ wp-members
508
+ #: admin/tab-emails.php:50
509
+ msgid "Email Signature"
510
+ msgstr "E-post signatur"
511
+
512
+ # @ wp-members
513
+ #: admin/tab-emails.php:57
514
+ msgid "Email Messages"
515
+ msgstr "E-postmeddelanden"
516
+
517
+ # @ wp-members
518
+ #: admin/tab-emails.php:60
519
+ msgid "You can customize the content of the emails sent by the plugin."
520
+ msgstr ""
521
+ "Du kan anpassa innehållet i e-postmeddelanden som skickas med tillägget "
522
+ "(plugin:et)"
523
+
524
+ # @ wp-members
525
+ #: admin/tab-emails.php:62
526
+ msgid "A list of shortcodes is available here."
527
+ msgstr "En lista med kortkoder finns här."
528
+
529
+ # @ wp-members
530
+ #: admin/tab-emails.php:69
531
+ msgid "Set a custom email address"
532
+ msgstr "Ange en anpassad e-postadress"
533
+
534
+ # @ wp-members
535
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
536
+ msgid "(optional)"
537
+ msgstr "Valfri"
538
+
539
+ # @ wp-members
540
+ #: admin/tab-emails.php:73
541
+ msgid "Set a custom email name"
542
+ msgstr "Ange ett anpassat e-postnamn"
543
+
544
+ # @ wp-members
545
+ #: admin/tab-emails.php:84
546
+ msgid "Subject"
547
+ msgstr "Ämne"
548
+
549
+ # @ wp-members
550
+ #: admin/tab-emails.php:88
551
+ msgid "Body"
552
+ msgstr "Huvuddel"
553
+
554
+ # @ wp-members
555
+ #: admin/tab-emails.php:105
556
+ msgid "Update Emails"
557
+ msgstr ""
558
+
559
+ # @ wp-members
560
+ #: admin/tab-emails.php:161
561
+ msgid "WP-Members emails were updated"
562
+ msgstr ""
563
+
564
+ # @ wp-members
565
+ #: admin/tab-fields.php:166
566
+ msgid "WP-Members fields were updated"
567
+ msgstr "WP-Membersfält blev uppdaterade"
568
+
569
+ # @ wp-members
570
+ #: admin/tab-fields.php:176
571
+ msgid "Field Label is required for adding a new field. Nothing was updated."
572
+ msgstr "Fätletikett krävs för att lägga till fält. Inget har uppdaterats."
573
+
574
+ # @ wp-members
575
+ #: admin/tab-fields.php:177
576
+ msgid "Option Name is required for adding a new field. Nothing was updated."
577
+ msgstr "Alternativnamn krävs för att lägga till nytt fält. Inget har ändrats."
578
+
579
+ #: admin/tab-fields.php:184
580
+ msgid "A field with that option name already exists"
581
+ msgstr ""
582
+
583
+ # @ wp-members
584
+ #: admin/tab-fields.php:201
585
+ msgid "Checked value is required for checkboxes. Nothing was updated."
586
+ msgstr "Kontrollerat värde krävs för kryssrutor. Ingenting har uppdaterats."
587
+
588
+ # @ wp-members
589
+ #: admin/tab-fields.php:223
590
+ msgid "field was added"
591
+ msgstr "fält lades till"
592
+
593
+ # @ wp-members
594
+ #: admin/tab-fields.php:241
595
+ msgid "field was updated"
596
+ msgstr "fält har uppdaterats"
597
+
598
+ # @ wp-members
599
+ #: admin/tab-fields.php:289 admin/tab-fields.php:385
600
+ msgid "Edit Field"
601
+ msgstr "Ändra fält"
602
+
603
+ # @ wp-members
604
+ #: admin/tab-fields.php:289
605
+ msgid "Add a Field"
606
+ msgstr "Lägg till fält"
607
+
608
+ # @ wp-members
609
+ #: admin/tab-fields.php:295 admin/tab-fields.php:416
610
+ msgid "Field Label"
611
+ msgstr "Fält etikett"
612
+
613
+ # @ wp-members
614
+ #: admin/tab-fields.php:297
615
+ msgid "The name of the field as it will be displayed to the user."
616
+ msgstr "Fältnamnet som det kommer att visas för användaren."
617
+
618
+ # @ wp-members
619
+ #: admin/tab-fields.php:300 admin/tab-fields.php:417
620
+ msgid "Option Name"
621
+ msgstr "Alternativnamn"
622
+
623
+ # @ wp-members
624
+ #: admin/tab-fields.php:306
625
+ msgid ""
626
+ "The database meta value for the field. It must be unique and contain no "
627
+ "spaces (underscores are ok)."
628
+ msgstr ""
629
+ "Databasens metadata för fältet. Det måste vara unikt och får inte innehålla "
630
+ "mellanslag (understreck är ok)."
631
+
632
+ # @ wp-members
633
+ #: admin/tab-fields.php:310 admin/tab-fields.php:418
634
+ msgid "Field Type"
635
+ msgstr ""
636
+
637
+ # @ wp-members
638
+ #: admin/tab-fields.php:316
639
+ msgid "text"
640
+ msgstr "text"
641
+
642
+ # @ wp-members
643
+ #: admin/tab-fields.php:317
644
+ msgid "textarea"
645
+ msgstr "textyta"
646
+
647
+ # @ wp-members
648
+ #: admin/tab-fields.php:318
649
+ msgid "checkbox"
650
+ msgstr "kryssruta"
651
+
652
+ # @ wp-members
653
+ #: admin/tab-fields.php:319
654
+ msgid "dropdown"
655
+ msgstr "dropdown"
656
+
657
+ # @ wp-members
658
+ #: admin/tab-fields.php:320
659
+ msgid "password"
660
+ msgstr "Lösenord"
661
+
662
+ # @ wp-members
663
+ #: admin/tab-fields.php:325 admin/tab-fields.php:419
664
+ msgid "Display?"
665
+ msgstr "Visa?"
666
+
667
+ # @ wp-members
668
+ #: admin/tab-fields.php:329 admin/tab-fields.php:420
669
+ msgid "Required?"
670
+ msgstr "Obligatorisk?"
671
+
672
+ # @ wp-members
673
+ #: admin/tab-fields.php:334
674
+ msgid "Additional information for checkbox fields"
675
+ msgstr "Ytterligare info för kryssrutefält"
676
+
677
+ # @ wp-members
678
+ #: admin/tab-fields.php:337
679
+ msgid "Checked by default?"
680
+ msgstr "i-kryssat som förval?"
681
+
682
+ # @ wp-members
683
+ #: admin/tab-fields.php:341
684
+ msgid "Stored value if checked:"
685
+ msgstr "Sparat värde om i-kryssat:"
686
+
687
+ # @ wp-members
688
+ #: admin/tab-fields.php:347
689
+ msgid "Additional information for dropdown fields"
690
+ msgstr "Ytterligare info för dropdown-fält"
691
+
692
+ # @ wp-members
693
+ #: admin/tab-fields.php:350
694
+ msgid "For dropdown, array of values:"
695
+ msgstr "För dropdown, matris med värden:"
696
+
697
+ # @ wp-members
698
+ #: admin/tab-fields.php:375
699
+ msgid "Options should be Option Name|option_value,"
700
+ msgstr "Alternativ bör vara alternativnamn|option_value,"
701
+
702
+ # @ wp-members
703
+ #: admin/tab-fields.php:379
704
+ msgid "Visit plugin site for more information"
705
+ msgstr "Besök tilläggets hemsida för mer information"
706
+
707
+ # @ wp-members
708
+ #: admin/tab-fields.php:385
709
+ msgid "Add Field"
710
+ msgstr "Lägg till fält"
711
+
712
+ # @ wp-members
713
+ #: admin/tab-fields.php:407
714
+ msgid "Manage Fields"
715
+ msgstr "Administrera fält"
716
+
717
+ # @ wp-members
718
+ #: admin/tab-fields.php:409
719
+ msgid ""
720
+ "Determine which fields will display and which are required. This includes "
721
+ "all fields, both native WP fields and WP-Members custom fields."
722
+ msgstr ""
723
+ "Bestäm vilka fält som ska visas och vilka som behövs. Detta inkluderar alla "
724
+ "områden, både ursprungliga WP-fälten och WP-Members anpassade fält."
725
+
726
+ # @ wp-members
727
+ #: admin/tab-fields.php:410
728
+ msgid "(Note: Email is always mandatory and cannot be changed.)"
729
+ msgstr "(Notera: E-post är alltid obligatorisk och kan inte ändras..)"
730
+
731
+ # @ wp-members
732
+ #: admin/tab-fields.php:415
733
+ msgid "Add/Delete"
734
+ msgstr "Lägg till/Radera"
735
+
736
+ # @ wp-members
737
+ #: admin/tab-fields.php:421
738
+ msgid "Checked?"
739
+ msgstr "Kontrollerad?"
740
+
741
+ # @ wp-members
742
+ #: admin/tab-fields.php:423
743
+ msgid "Users Screen"
744
+ msgstr "Användarfönster"
745
+
746
+ # @ wp-members
747
+ #: admin/tab-fields.php:435
748
+ msgid "Delete"
749
+ msgstr "Radera"
750
+
751
+ # @ wp-members
752
+ #: admin/tab-fields.php:447
753
+ msgid "(Email cannot be removed)"
754
+ msgstr "(E-post-fältet är obligatorisk och kan inte tas bort)"
755
+
756
+ # @ wp-members
757
+ #: admin/tab-fields.php:467
758
+ msgid "Registration Date"
759
+ msgstr ""
760
+
761
+ # @ wp-members
762
+ #: admin/tab-fields.php:470
763
+ msgid "native"
764
+ msgstr "ursprung"
765
+
766
+ # @ wp-members
767
+ # @ default
768
+ #: admin/tab-fields.php:480
769
+ msgid "Active"
770
+ msgstr "Aktivera"
771
+
772
+ # @ wp-members
773
+ #: admin/tab-fields.php:492
774
+ msgid "Registration IP"
775
+ msgstr "IP @ registrering"
776
+
777
+ # @ wp-members
778
+ #: admin/tab-fields.php:527
779
+ msgid "Update Fields"
780
+ msgstr "Uppdatera fälten"
781
+
782
+ # @ wp-members
783
+ #: admin/tab-options.php:48
784
+ msgid "Manage Options"
785
+ msgstr "Administrera alternativ"
786
+
787
+ # @ wp-members
788
+ #: admin/tab-options.php:54
789
+ msgid "Block Posts by default"
790
+ msgstr "Blockera Inlägg som standard"
791
+
792
+ # @ wp-members
793
+ #: admin/tab-options.php:54
794
+ msgid ""
795
+ "Note: Posts can still be individually blocked or unblocked at the article "
796
+ "level"
797
+ msgstr ""
798
+ "Obs: Inlägg kan fortfarande vara individuellt blockeras eller upphävas på "
799
+ "artikelnivå"
800
+
801
+ # @ wp-members
802
+ #: admin/tab-options.php:55
803
+ msgid "Block Pages by default"
804
+ msgstr "Blockera Sidor som standard"
805
+
806
+ # @ wp-members
807
+ #: admin/tab-options.php:55
808
+ msgid ""
809
+ "Note: Pages can still be individually blocked or unblocked at the article "
810
+ "level"
811
+ msgstr ""
812
+ "OBS: Sidor kan fortfarande vara individuellt blockeras eller upphävas på "
813
+ "artikelnivå"
814
+
815
+ # @ wp-members
816
+ #: admin/tab-options.php:56
817
+ msgid "Show excerpts"
818
+ msgstr "Visa utdrag"
819
+
820
+ # @ wp-members
821
+ #: admin/tab-options.php:56
822
+ msgid ""
823
+ "Shows excerpted content above the login/registration on both Posts and Pages"
824
+ msgstr ""
825
+ "Visar utdraget innehåll ovanför inloggning / registrering på både inlägg och "
826
+ "sidor"
827
+
828
+ # @ wp-members
829
+ #: admin/tab-options.php:57
830
+ msgid "Notify admin"
831
+ msgstr "Meddela administratören"
832
+
833
+ # @ wp-members
834
+ #: admin/tab-options.php:57
835
+ #, php-format
836
+ msgid "Notify %s for each new registration? %s"
837
+ msgstr "Skickar e-post till %s för varje ny registrering? %s"
838
+
839
+ # @ wp-members
840
+ #: admin/tab-options.php:58
841
+ msgid "Moderate registration"
842
+ msgstr "Moderera registreringen"
843
+
844
+ # @ wp-members
845
+ #: admin/tab-options.php:58
846
+ msgid "Holds new registrations for admin approval"
847
+ msgstr " Godkänn nya registreringar via en administratör"
848
+
849
+ # @ wp-members
850
+ #: admin/tab-options.php:91
851
+ msgid "Enable CAPTCHA"
852
+ msgstr "Slå på CAPTCHA för registrering"
853
+
854
+ # @ wp-members
855
+ #: admin/tab-options.php:59
856
+ msgid "Turns on CAPTCHA for registration"
857
+ msgstr "Slå på CAPTCHA för registrering"
858
+
859
+ # @ wp-members
860
+ #: admin/tab-options.php:60
861
+ msgid "Hide registration"
862
+ msgstr ""
863
+
864
+ #: admin/tab-options.php:60
865
+ msgid "Removes the registration form from blocked content"
866
+ msgstr ""
867
+
868
+ # @ wp-members
869
+ #: admin/tab-options.php:62
870
+ msgid "Time-based expiration"
871
+ msgstr "Tidsbaserade utgångsdatum"
872
+
873
+ # @ wp-members
874
+ #: admin/tab-options.php:62
875
+ msgid "Allows for access to expire"
876
+ msgstr "Tillåter åtkomst att löpa ut"
877
+
878
+ # @ wp-members
879
+ #: admin/tab-options.php:63
880
+ msgid "Trial period"
881
+ msgstr "Försöksperiod"
882
+
883
+ # @ wp-members
884
+ #: admin/tab-options.php:63
885
+ msgid "Allows for a trial period"
886
+ msgstr "Tillåter för en försöksperiod"
887
+
888
+ # @ wp-members
889
+ #: admin/tab-options.php:64
890
+ msgid "Ignore warning messages"
891
+ msgstr "Ignorera varningsmeddelande"
892
+
893
+ # @ wp-members
894
+ #: admin/tab-options.php:64
895
+ msgid "Ignores WP-Members warning messages in the admin panel"
896
+ msgstr "Ignorera WP-Members varningsmeddelande i adminstrations panelen"
897
+
898
+ # @ wp-members
899
+ #: admin/tab-options.php:81
900
+ msgid "Attribution"
901
+ msgstr "Erkännande"
902
+
903
+ # @ wp-members
904
+ #: admin/tab-options.php:83
905
+ msgid ""
906
+ "Attribution is appreciated! Display \"powered by\" link on register form?"
907
+ msgstr ""
908
+ "Erkännande är uppskattat! Visa länken \"powered by\" på "
909
+ "registreringsformuläret?"
910
+
911
+ # @ wp-members
912
+ #: admin/tab-options.php:87
913
+ msgid "Auto Excerpt:"
914
+ msgstr "Automatiskt utdrag:"
915
+
916
+ # @ wp-members
917
+ #: admin/tab-options.php:88
918
+ msgid "Number of words in excerpt:"
919
+ msgstr "Antal ord i utdrag:"
920
+
921
+ # @ wp-members
922
+ #: admin/tab-options.php:88 admin/tab-options.php:108
923
+ #: admin/tab-options.php:118 admin/tab-options.php:132
924
+ msgid "Optional"
925
+ msgstr "Valfri"
926
+
927
+ # @ wp-members
928
+ #: admin/tab-options.php:88
929
+ msgid "Automatically creates an excerpt"
930
+ msgstr "Automatiskt skapas ett utdrag"
931
+
932
+ # @ wp-members
933
+ #: admin/tab-options.php:103
934
+ msgid "User Profile Page:"
935
+ msgstr "Användarprofilsida:"
936
+
937
+ #: admin/tab-options.php:106
938
+ msgid "For creating a forgot password link in the login form"
939
+ msgstr ""
940
+
941
+ # @ wp-members
942
+ #: admin/tab-options.php:113
943
+ msgid "Register Page:"
944
+ msgstr "Registreringssida:"
945
+
946
+ #: admin/tab-options.php:116
947
+ msgid "For creating a register link in the login form"
948
+ msgstr ""
949
+
950
+ # @ wp-members
951
+ #: admin/tab-options.php:126
952
+ msgid "Select a stylesheet or specify a custom stylesheet below"
953
+ msgstr "Välj ett stylesheet eller ange ett anpassat stylesheet här under"
954
+
955
+ # @ wp-members
956
+ #: admin/tab-options.php:131
957
+ msgid "Custom Stylesheet:"
958
+ msgstr "Anpassat Stylesheet:"
959
+
960
+ # @ wp-members
961
+ #: admin/tab-options.php:136
962
+ msgid "Update Settings"
963
+ msgstr "Uppdatera inställningarna"
964
+
965
+ # @ wp-members
966
+ #: admin/tab-options.php:246
967
+ msgid "WP-Members settings were updated"
968
+ msgstr "WP-Members inställningar blev uppdaterade"
969
+
970
+ # @ default
971
+ #: admin/tab-options.php:296
972
+ msgid "Select a page"
973
+ msgstr "Välj en sida"
974
+
975
+ # @ wp-members
976
+ #: admin/tab-options.php:304
977
+ msgid "USE CUSTOM URL BELOW"
978
+ msgstr ""
979
+
980
+ # @ wp-members
981
+ #: admin/user-export.php:57 admin/user-export.php:172
982
+ msgid "Activated?"
983
+ msgstr "Aktiverad?"
984
+
985
+ # @ wp-members
986
+ #: admin/user-export.php:61 admin/user-export.php:175
987
+ msgid "Subscription"
988
+ msgstr "Abonnemang"
989
+
990
+ # @ wp-members
991
+ #: admin/user-export.php:61 admin/user-export.php:175
992
+ msgid "Expires"
993
+ msgstr "Upphör"
994
+
995
+ # @ wp-members
996
+ #: admin/user-export.php:64 admin/user-export.php:178
997
+ msgid "Registered"
998
+ msgstr "Registrerad"
999
+
1000
+ # @ wp-members
1001
+ #: admin/user-export.php:65 admin/user-export.php:179
1002
+ msgid "IP"
1003
+ msgstr "IP"
1004
+
1005
+ # @ wp-members
1006
+ #: admin/user-profile.php:46
1007
+ msgid "WP-Members Additional Fields"
1008
+ msgstr "WP-Members ytterligare fält"
1009
+
1010
+ # @ wp-members
1011
+ #: admin/user-profile.php:66 native-registration.php:36
1012
+ #: native-registration.php:159 users.php:62
1013
+ msgid "(required)"
1014
+ msgstr "Obligatorisk?"
1015
+
1016
+ # @ wp-members
1017
+ #: admin/user-profile.php:98
1018
+ msgid "Activate this user?"
1019
+ msgstr "Aktivera denna användare?"
1020
+
1021
+ # @ wp-members
1022
+ #: admin/user-profile.php:103
1023
+ msgid "Reactivate this user?"
1024
+ msgstr ""
1025
+
1026
+ # @ wp-members
1027
+ #: admin/user-profile.php:108
1028
+ msgid "Deactivate this user?"
1029
+ msgstr ""
1030
+
1031
+ # @ wp-members
1032
+ #: admin/user-profile.php:129
1033
+ msgid "IP @ registration"
1034
+ msgstr "IP @ registrering"
1035
+
1036
+ # @ wp-members
1037
+ # @ default
1038
+ #: admin/users.php:45 admin/users.php:49
1039
+ msgid "Export"
1040
+ msgstr "Exportera"
1041
+
1042
+ #: admin/users.php:50 admin/users.php:91
1043
+ msgid "Export All Users"
1044
+ msgstr "Exportera"
1045
+
1046
+ # @ wp-members
1047
+ #: forms.php:95
1048
+ msgid "Existing Users Log In"
1049
+ msgstr "Logga in"
1050
+
1051
+ # @ wp-members
1052
+ #: forms.php:161 wp-members-dialogs.php:192
1053
+ msgid "Change Password"
1054
+ msgstr "Byt lösenord"
1055
+
1056
+ # @ wp-members
1057
+ #: forms.php:163
1058
+ msgid "Update Password"
1059
+ msgstr "Uppdatera lösenord"
1060
+
1061
+ # @ wp-members
1062
+ #: forms.php:227
1063
+ msgid "Reset Forgotten Password"
1064
+ msgstr "Nollställ glömt lösenord"
1065
+
1066
+ # @ wp-members
1067
+ #: forms.php:403
1068
+ msgid "Forgot password?"
1069
+ msgstr "Glömt lösenord?"
1070
+
1071
+ # @ wp-members
1072
+ #: forms.php:403
1073
+ msgid "Click here to reset"
1074
+ msgstr "Klicka här för att nollställa"
1075
+
1076
+ # @ wp-members
1077
+ #: forms.php:418
1078
+ msgid "New User?"
1079
+ msgstr "Ny användare?"
1080
+
1081
+ # @ wp-members
1082
+ #: forms.php:418
1083
+ msgid "Click here to register"
1084
+ msgstr "Klicka här för att registrera"
1085
+
1086
+ # @ wp-members
1087
+ #: forms.php:515
1088
+ msgid "Required field"
1089
+ msgstr "Obligatoriskt fält"
1090
+
1091
+ # @ wp-members
1092
+ #: forms.php:521
1093
+ msgid "Reset Form"
1094
+ msgstr ""
1095
+
1096
+ # @ wp-members
1097
+ #: forms.php:523
1098
+ msgid "Update Profile"
1099
+ msgstr ""
1100
+
1101
+ # @ wp-members
1102
+ #: forms.php:561
1103
+ msgid "Choose a Username"
1104
+ msgstr "Välj användarnamn"
1105
+
1106
+ # @ wp-members
1107
+ #: forms.php:683 native-registration.php:65
1108
+ #, php-format
1109
+ msgid "Please indicate that you agree to the %s TOS %s"
1110
+ msgstr "Var snäll och markera att du accepterar %s Användarvillkoren %s"
1111
+
1112
+ # @ wp-members
1113
+ #: forms.php:852
1114
+ msgid "New User Registration"
1115
+ msgstr "Ny användare?"
1116
+
1117
+ #: forms.php:1018
1118
+ msgid "Input the code:"
1119
+ msgstr ""
1120
+
1121
+ # @ wp-members
1122
+ #: users.php:38
1123
+ msgid "Additional Information"
1124
+ msgstr "Ytterligare info för kryssrutefält"
1125
+
1126
+ # @ default
1127
+ #: wp-members-core.php:118 wp-members-core.php:245
1128
+ msgid "There was an error with the CAPTCHA form."
1129
+ msgstr "Det uppstod ett fel med CAPTCHA formuläret."
1130
+
1131
+ # @ wp-members
1132
+ #: wp-members-core.php:287 wp-members-dialogs.php:338
1133
+ msgid "Edit Your Information"
1134
+ msgstr "Redigera dina uppgifter"
1135
+
1136
+ # @ wp-members
1137
+ #: wp-members-core.php:544
1138
+ msgid "<strong>ERROR</strong>: User has not been activated."
1139
+ msgstr "<strong>ERROR</strong>: Användaren har inte aktiverats."
1140
+
1141
+ # @ wp-members
1142
+ #: wp-members-core.php:903 wp-members-register.php:93
1143
+ #, php-format
1144
+ msgid "Sorry, %s is a required field."
1145
+ msgstr "Tyvärr, men %s är ett obligatoriskt fält."
1146
+
1147
+ # @ wp-members
1148
+ #: wp-members-dialogs.php:42
1149
+ msgid "Login Failed!"
1150
+ msgstr "Inloggning misslyckades!"
1151
+
1152
+ # @ wp-members
1153
+ #: wp-members-dialogs.php:45
1154
+ msgid "You entered an invalid username or password."
1155
+ msgstr "Du angav ett felaktigt användarnamn eller lösenord"
1156
+
1157
+ # @ wp-members
1158
+ #: wp-members-dialogs.php:47
1159
+ msgid "Click here to continue."
1160
+ msgstr "Klickar här för att fortsätta."
1161
+
1162
+ # @ wp-members
1163
+ #: wp-members-dialogs.php:191
1164
+ msgid "Edit My Information"
1165
+ msgstr "Redigera min användarinformation"
1166
+
1167
+ # @ wp-members
1168
+ #: wp-members-dialogs.php:206 wp-members-dialogs.php:224
1169
+ #: wp-members-dialogs.php:239 wp-members-sidebar.php:46
1170
+ #: wp-members-sidebar.php:246
1171
+ #, php-format
1172
+ msgid "You are logged in as %s"
1173
+ msgstr "Du är inloggad som %s"
1174
+
1175
+ # @ wp-members
1176
+ #: wp-members-dialogs.php:208
1177
+ msgid "Click to log out."
1178
+ msgstr ""
1179
+
1180
+ # @ wp-members
1181
+ #: wp-members-dialogs.php:209
1182
+ msgid "Begin using the site."
1183
+ msgstr "Börja använda webbplatsen."
1184
+
1185
+ # @ wp-members
1186
+ #: wp-members-dialogs.php:225
1187
+ msgid "Click to log out"
1188
+ msgstr ""
1189
+
1190
+ # @ wp-members
1191
+ #: wp-members-dialogs.php:240 wp-members-sidebar.php:47
1192
+ msgid "click to log out"
1193
+ msgstr ""
1194
+
1195
+ # @ wp-members
1196
+ #: wp-members-dialogs.php:271
1197
+ msgid "Password fields cannot be empty"
1198
+ msgstr "Lösenordsfält kan inte vara tom"
1199
+
1200
+ # @ wp-members
1201
+ #: wp-members-register.php:51
1202
+ msgid "There was an error processing the form."
1203
+ msgstr "Ett fel uppstod vid skapande av formuläret."
1204
+
1205
+ # @ wp-members
1206
+ #: wp-members-register.php:110
1207
+ msgid "Sorry, username is a required field"
1208
+ msgstr "Tyvärr är användarnamn ett obligatoriskt fält"
1209
+
1210
+ # @ wp-members
1211
+ #: wp-members-register.php:111
1212
+ msgid "The username cannot include non-alphanumeric characters."
1213
+ msgstr "Användarnamnet kan inte innehålla icke-alfanumeriska tecken."
1214
+
1215
+ # @ wp-members
1216
+ #: wp-members-register.php:112 wp-members-register.php:282
1217
+ msgid "You must enter a valid email address."
1218
+ msgstr "Du måste ange en giltig e-postadress."
1219
+
1220
+ # @ wp-members
1221
+ #: wp-members-register.php:119
1222
+ msgid "Passwords did not match."
1223
+ msgstr "Lösenorden matchade inte varandra"
1224
+
1225
+ # @ wp-members
1226
+ #: wp-members-register.php:120 wp-members-register.php:286
1227
+ msgid "Emails did not match."
1228
+ msgstr ""
1229
+
1230
+ # @ wp-members
1231
+ #: wp-members-register.php:127
1232
+ msgid "You must complete the CAPTCHA form."
1233
+ msgstr "Du måste fylla i CAPTCHA formuläret."
1234
+
1235
+ # @ wp-members
1236
+ #: wp-members-register.php:377
1237
+ msgid "We were unable to validate the public key."
1238
+ msgstr "Vi kunde inte bekräfta den publika nyckeln."
1239
+
1240
+ # @ wp-members
1241
+ #: wp-members-register.php:381
1242
+ msgid "We were unable to validate the private key."
1243
+ msgstr "Vi kunde inte bekräfta den privata nyckeln."
1244
+
1245
+ # @ wp-members
1246
+ #: wp-members-register.php:385
1247
+ msgid "The challenge parameter of the verify script was incorrect."
1248
+ msgstr "Den utmanande parametern av verifikations-skriptet var felaktigt."
1249
+
1250
+ # @ wp-members
1251
+ #: wp-members-register.php:389
1252
+ msgid "The CAPTCHA solution was incorrect."
1253
+ msgstr "CAPTCHA-lösningen var felaktig."
1254
+
1255
+ # @ wp-members
1256
+ #: wp-members-register.php:393
1257
+ msgid "The parameters to verify were incorrect"
1258
+ msgstr "Parametrarna för att verifiera var felaktiga"
1259
+
1260
+ # @ wp-members
1261
+ #: wp-members-register.php:397
1262
+ msgid ""
1263
+ "reCAPTCHA API keys are tied to a specific domain name for security reasons."
1264
+ msgstr ""
1265
+ "reCAPTCHA API-nycklar är bundna till ett specifikt domännamn av "
1266
+ "säkerhetsskäl."
1267
+
1268
+ # @ wp-members
1269
+ #: wp-members-register.php:401
1270
+ msgid "The reCAPTCHA server was not reached. Please try to resubmit."
1271
+ msgstr "reCAPTCHA-servern svarade inte. Försök att skicka igen."
1272
+
1273
+ #: wp-members-register.php:405
1274
+ msgid "You have entered an incorrect code value. Please try again."
1275
+ msgstr ""
1276
+
1277
+ # @ wp-members
1278
+ #: wp-members-sidebar.php:117
1279
+ msgid "Login Failed!<br />You entered an invalid username or password."
1280
+ msgstr ""
1281
+ "Felaktig inloggning!<br />Du angav ett felaktigt användarnamn eller lösenord"
1282
+
1283
+ # @ wp-members
1284
+ #: wp-members-sidebar.php:118
1285
+ msgid "You are not logged in."
1286
+ msgstr ""
1287
+
1288
+ #: wp-members-sidebar.php:169
1289
+ msgid "log in"
1290
+ msgstr "logga in"
1291
+
1292
+ # @ wp-members
1293
+ #: wp-members-sidebar.php:180
1294
+ msgid "Forgot?"
1295
+ msgstr "Glömt?"
1296
+
1297
+ # @ wp-members
1298
+ #: wp-members-sidebar.php:247
1299
+ msgid "click here to log out"
1300
+ msgstr "logga ut här"
1301
+
1302
+ #: wp-members-sidebar.php:279
1303
+ msgid "Displays the WP-Members sidebar login."
1304
+ msgstr ""
1305
+
1306
+ # @ wp-members
1307
+ #: wp-members-sidebar.php:294 wp-members-sidebar.php:333
1308
+ msgid "Login Status"
1309
+ msgstr "Inloggningsstatus"
1310
+
1311
+ # @ wp-members
1312
+ #: wp-members-sidebar.php:299
1313
+ msgid "Title:"
1314
+ msgstr "Titel:"
1315
+
1316
+ # @ wp-members
1317
+ #: wp-members-tos.php:24
1318
+ msgid "Terms of Service"
1319
+ msgstr "Användarvillkor (TOS)"
1320
+
1321
+ # @ wp-members
1322
+ #: wp-members-tos.php:36
1323
+ #, php-format
1324
+ msgid "%sclose%s"
1325
+ msgstr "%sstäng%s"
1326
+
1327
+ # @ wp-members
1328
+ #: wp-members-tos.php:38
1329
+ #, php-format
1330
+ msgid "%sprint%s"
1331
+ msgstr "%sprint%s"
1332
+
1333
+ # @ wp-members
1334
+ #: STRINGS THAT ARE NOT SPECIFICALLY CONTAINED IN THE PLUGIN Custom Field
1335
+ #: Strings wp-members-install.php:49
1336
+ msgid "First Name"
1337
+ msgstr "Förnamn"
1338
+
1339
+ # @ wp-members
1340
+ #: wp-members-install.php:50
1341
+ msgid "Last Name"
1342
+ msgstr "Efternamn"
1343
+
1344
+ # @ wp-members
1345
+ #: wp-members-install.php:51
1346
+ msgid "Address 1"
1347
+ msgstr "Adress 1"
1348
+
1349
+ # @ wp-members
1350
+ #: wp-members-install.php:52
1351
+ msgid "Address 2"
1352
+ msgstr "Adress 2"
1353
+
1354
+ # @ wp-members
1355
+ #: wp-members-install.php:53
1356
+ msgid "City"
1357
+ msgstr "Ort"
1358
+
1359
+ # @ wp-members
1360
+ #: wp-members-install.php:54
1361
+ msgid "State"
1362
+ msgstr "Stat"
1363
+
1364
+ # @ wp-members
1365
+ #: wp-members-install.php:55
1366
+ msgid "Zip"
1367
+ msgstr "Postnummer"
1368
+
1369
+ # @ wp-members
1370
+ #: wp-members-install.php:56
1371
+ msgid "Country"
1372
+ msgstr "Land"
1373
+
1374
+ # @ wp-members
1375
+ #: wp-members-install.php:57
1376
+ msgid "Day Phone"
1377
+ msgstr "Telefon dagtid"
1378
+
1379
+ # @ wp-members
1380
+ #: wp-members-install.php:59
1381
+ msgid "Website"
1382
+ msgstr "Webbplats"
1383
+
1384
+ # @ wp-members
1385
+ #: wp-members-install.php:60
1386
+ msgid "AIM"
1387
+ msgstr "AIM"
1388
+
1389
+ # @ wp-members
1390
+ #: wp-members-install.php:61
1391
+ msgid "Yahoo IM"
1392
+ msgstr "Yahoo IM"
1393
+
1394
+ # @ wp-members
1395
+ #: wp-members-install.php:62
1396
+ msgid "Jabber/Google Talk"
1397
+ msgstr "Jabber/Google Talk"
1398
+
1399
+ # @ wp-members
1400
+ #: wp-members-install.php:63
1401
+ msgid "Biographical Info"
1402
+ msgstr "Självbiografisk info"
1403
+
1404
+ # @ wp-members
1405
+ #: wp-members-install.php:64 wp-members-install.php:211
1406
+ msgid "TOS"
1407
+ msgstr "TOS"
1408
+
1409
+ # @ wp-members
1410
+ #: Error message dialog strings wp-members-install.php:96
1411
+ msgid ""
1412
+ "This content is restricted to site members. If you are an existing user, "
1413
+ "please log in. New users may register below."
1414
+ msgstr ""
1415
+ "Detta innehåll är begränsat till medlemmar. Om du är en befintlig användare, "
1416
+ "logga in. Nya användare kan registrera sig nedan."
1417
+
1418
+ # @ wp-members
1419
+ #: wp-members-install.php:97
1420
+ msgid "Sorry, that username is taken, please try another."
1421
+ msgstr "Tyvärr, användarnamnet är uppdaget, försök med ett annat."
1422
+
1423
+ # @ wp-members
1424
+ #: wp-members-install.php:98
1425
+ msgid ""
1426
+ "Sorry, that email address already has an account.<br />Please try another."
1427
+ msgstr ""
1428
+ "Tyvärr har denna e-postadress redan ett konto. <br /> Försök med ett annat."
1429
+
1430
+ # @ wp-members
1431
+ #: wp-members-install.php:99
1432
+ msgid ""
1433
+ "Congratulations! Your registration was successful.<br /><br />You may now "
1434
+ "log in using the password that was emailed to you."
1435
+ msgstr ""
1436
+ "Grattis! Din registrering har slutförts. <br /> <br /> Du kan nu logga in "
1437
+ "med det lösenord som skickas till dig."
1438
+
1439
+ # @ wp-members
1440
+ #: wp-members-install.php:100
1441
+ msgid "Your information was updated!"
1442
+ msgstr "Din information har uppdaterats!"
1443
+
1444
+ # @ wp-members
1445
+ #: wp-members-install.php:101
1446
+ msgid "Passwords did not match.<br /><br />Please try again."
1447
+ msgstr "Lösenorden matchar inte.<br /><br />Var snäll och försök igen."
1448
+
1449
+ # @ wp-members
1450
+ #: wp-members-install.php:102
1451
+ msgid ""
1452
+ "Password successfully changed!<br /><br />You will need to re-login with "
1453
+ "your new password."
1454
+ msgstr ""
1455
+ "Lösenordet är bytt!<br /><br />Du måste logga in igen med ditt nya lösenord."
1456
+
1457
+ # @ wp-members
1458
+ #: wp-members-install.php:103
1459
+ msgid "Either the username or email address do not exist in our records."
1460
+ msgstr ""
1461
+ "Antingen finns användarnamnet eller e-postadressen inte i våra register."
1462
+
1463
+ # @ wp-members
1464
+ #: wp-members-install.php:104
1465
+ msgid ""
1466
+ "Password successfully reset!<br /><br />An email containing a new password "
1467
+ "has been sent to the email address on file for your account. You may change "
1468
+ "this random password then re-login with your new password."
1469
+ msgstr ""
1470
+ "Nollställning av lösenord har genomförts!<br /><br />Ett e-postmeddelande "
1471
+ "som innehåller ett nytt lösenord har skickats till den registrerade e-"
1472
+ "postadress för ditt konto. Du kan ändra detta slumpmässiga lösenord och "
1473
+ "sedan logga in igen med ditt nya lösenord."
1474
+
1475
+ # @ wp-members
1476
+ #~ msgid "Yes"
1477
+ #~ msgstr "Ja"
1478
+
1479
+ # @ wp-members
1480
+ #~ msgid "WP-Members"
1481
+ #~ msgstr "WP-Members"
1482
+
1483
+ # @ wp-members
1484
+ #~ msgid "Custom"
1485
+ #~ msgstr "Egen"
1486
+
1487
+ #, fuzzy
1488
+ #~ msgid "edit"
1489
+ #~ msgstr "Ändra"
1490
+
1491
+ # @ wp-members
1492
+ #~ msgid "Edit"
1493
+ #~ msgstr "Ändra"
1494
+
1495
+ #, fuzzy
1496
+ #~ msgid "Pages"
1497
+ #~ msgstr "Blockera Sidor som standard"
1498
+
1499
+ # @ wp-members
1500
+ #, fuzzy
1501
+ #~ msgid "Stylesheet"
1502
+ #~ msgstr "Stylesheet:"
1503
+
1504
+ # @ wp-members
1505
+ #~ msgid "Stylesheet:"
1506
+ #~ msgstr "Stylesheet:"
1507
+
1508
+ # @ wp-members
1509
+ #~ msgid "No"
1510
+ #~ msgstr "Nej"
1511
+
1512
+ # @ wp-members
1513
+ # @ default
1514
+ #~ msgid "Activate"
1515
+ #~ msgstr "Aktivera"
1516
+
1517
+ # @ wp-members
1518
+ #~ msgid "Username"
1519
+ #~ msgstr "Användarnamn"
1520
+
1521
+ # @ wp-members
1522
+ #~ msgid "Password"
1523
+ #~ msgstr "Lösenord"
1524
+
1525
+ #~ msgid "Log In"
1526
+ #~ msgstr "Logga in"
1527
+
1528
+ # @ wp-members
1529
+ #~ msgid "New Password"
1530
+ #~ msgstr "Nytt lösenord"
1531
+
1532
+ # @ wp-members
1533
+ #~ msgid "Repeat Password"
1534
+ #~ msgstr "Repetera lösenord"
1535
+
1536
+ # @ wp-members
1537
+ #~ msgid "Email"
1538
+ #~ msgstr "e-post"
1539
+
1540
+ # @ wp-members
1541
+ #~ msgid "Reset Password"
1542
+ #~ msgstr "Återställ lösenord"
1543
+
1544
+ # @ wp-members
1545
+ #~ msgid "Remember me"
1546
+ #~ msgstr "Kom ihåg mig"
1547
+
1548
+ # @ wp-members
1549
+ #~ msgid "Register"
1550
+ #~ msgstr "Registrera"
1551
+
1552
+ # @ wp-members
1553
+ #~ msgid "Turn off registration"
1554
+ #~ msgstr "Slå av registrering"
1555
+
1556
+ # @ wp-members
1557
+ #~ msgid "Turns off the registration process, only allows login"
1558
+ #~ msgstr "Slå av registreringsprocessen, tillåt endast inloggning"
1559
+
1560
+ # @ wp-members
1561
+ #~ msgid "Legacy forms"
1562
+ #~ msgstr "Tidigare formulär"
1563
+
1564
+ # @ wp-members
1565
+ #~ msgid ""
1566
+ #~ "Uses the pre-2.5.1 table-based forms (leave off to use CSS table-less "
1567
+ #~ "forms)"
1568
+ #~ msgstr ""
1569
+ #~ "Använder pre-2.5.1 table-baserade formulär (låt vara avmarkerad för att "
1570
+ #~ "använda CSS baserade formulär)"
1571
+
1572
+ # @ wp-members
1573
+ #~ msgid "%d users were activated."
1574
+ #~ msgstr "%d användare blev aktiverad"
1575
+
1576
+ # @ wp-members
1577
+ #~ msgid ""
1578
+ #~ "Users ready to export, %s click here %s to generate and download a CSV."
1579
+ #~ msgstr ""
1580
+ #~ "Användare är redo att exporteras, %s klicka här %s för att generera och "
1581
+ #~ "ladda ned CSV."
1582
+
1583
+ # @ wp-members
1584
+ #~ msgid "WP-Members Users"
1585
+ #~ msgstr "WP-Members användare"
1586
+
1587
+ # @ wp-members
1588
+ #~ msgid "Add New"
1589
+ #~ msgstr "Lägg till ny"
1590
+
1591
+ # @ wp-members
1592
+ #~ msgid "No users matched your criteria"
1593
+ #~ msgstr "Inga användare matchade dina kriterier"
1594
+
1595
+ # @ wp-members
1596
+ #~ msgid "Bulk Actions"
1597
+ #~ msgstr "Massåtgärder"
1598
+
1599
+ # @ wp-members
1600
+ #~ msgid "Apply"
1601
+ #~ msgstr "Tillämpa"
1602
+
1603
+ # @ wp-members
1604
+ #, fuzzy
1605
+ #~ msgid "Indicates a required field"
1606
+ #~ msgstr "Indikerar ett obligatoriskt fält"
lang/wp-members-tr_TR.mo ADDED
Binary file
lang/wp-members-tr_TR.po ADDED
@@ -0,0 +1,1419 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 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 2.9.3\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-members\n"
7
+ "POT-Creation-Date: 2014-07-08 10:47-0600\n"
8
+ "PO-Revision-Date: 2014-07-22 12:07-0600\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: hakaner <hakanerwptr@gmail.com>\n"
11
+ "Language: tr\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Generator: Poedit 1.6.4\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+
19
+ #: admin/admin.php:60 admin/admin.php:129
20
+ msgid "Settings"
21
+ msgstr "Ayarlar"
22
+
23
+ #: admin/admin.php:187
24
+ msgid "Options"
25
+ msgstr "Seçenekler"
26
+
27
+ #: admin/admin.php:188
28
+ msgid "Fields"
29
+ msgstr "Bilgiler"
30
+
31
+ #: admin/admin.php:189
32
+ msgid "Dialogs"
33
+ msgstr "İletiler"
34
+
35
+ #: admin/admin.php:190
36
+ msgid "Emails"
37
+ msgstr "Epostalar"
38
+
39
+ #: admin/dialogs.php:109
40
+ msgid ""
41
+ "Your WP settings allow anyone to register - this is not the recommended "
42
+ "setting."
43
+ msgstr ""
44
+ "WP ayarlarınız herkese kayıt için izin veriyor - bu önerilen bir ayar değil."
45
+
46
+ #: admin/dialogs.php:110
47
+ #, php-format
48
+ msgid ""
49
+ "You can %s change this here %s making sure the box next to \"Anyone can "
50
+ "register\" is unchecked."
51
+ msgstr ""
52
+ "\"İsteyen herkes kayıt olabilsin\" yanındaki kutunun işaretli olmadığından "
53
+ "emin olarak %s buradan değiştirebilirsiniz %s ."
54
+
55
+ #: admin/dialogs.php:111
56
+ msgid ""
57
+ "This setting allows a link on the /wp-login.php page to register using the "
58
+ "WP native registration process thus circumventing any registration you are "
59
+ "using with WP-Members. In some cases, this may suit the users wants/needs, "
60
+ "but most users should uncheck this option. If you do not change this "
61
+ "setting, you can choose to ignore these warning messages under WP-Members "
62
+ "Settings."
63
+ msgstr ""
64
+ "Bu ayar /wp-login.php sayfasından bir bağlantı ile WP yerel kayıt işlemini "
65
+ "kullanarak kayıt olmayı sağlar, böylece WP-Members ile kullandığınız "
66
+ "herhangi bir kayıt işlemini atlar. Bazı durumlarda, bu, kullanıcıların "
67
+ "isteklerine/gereksinimlerine uygun olabilir fakat çoğu kullanıcının bu "
68
+ "seçeneğin işaretini kaldırması gerekir. Eğer bu ayarı değiştirmezseniz, WP-"
69
+ "Members Ayarları altındaki bu uyarı mesajlarını yok saymayı seçebilirsiniz."
70
+
71
+ #: admin/dialogs.php:117
72
+ msgid ""
73
+ "Your WP settings allow anyone to comment - this is not the recommended "
74
+ "setting."
75
+ msgstr ""
76
+ "WP ayarlarınız herkesin yorum yapmasına izin veriyor - bu önerilen bir ayar "
77
+ "değil."
78
+
79
+ #: admin/dialogs.php:118
80
+ #, php-format
81
+ msgid ""
82
+ "You can %s change this here %s by checking the box next to \"Users must be "
83
+ "registered and logged in to comment.\""
84
+ msgstr ""
85
+ "\"Kullanıcılar yorum yapmak için kayıt olmalı ve giriş yapmalılar.\" "
86
+ "yanındaki kutuyu işaretleyerek %s buradan değiştirebilirsiniz %s ."
87
+
88
+ #: admin/dialogs.php:119
89
+ msgid ""
90
+ "This setting allows any users to comment, whether or not they are "
91
+ "registered. Depending on how you are using WP-Members will determine whether "
92
+ "you should change this setting or not. If you do not change this setting, "
93
+ "you can choose to ignore these warning messages under WP-Members Settings."
94
+ msgstr ""
95
+ "Bu ayar, kayıtlı olsun veya olmasın, herhangi bir kullanıcının yorum "
96
+ "yapmasına izin verir. Bu ayarı değiştirmeniz veya değiştirmemeniz, WP-"
97
+ "Members eklentisini nasıl kullandığınıza bağlı olacaktır. Eğer bu ayarı "
98
+ "değiştirmezseniz, WP-Members Ayarları altındaki bu uyarı mesajlarını yok "
99
+ "saymayı seçebilirsiniz."
100
+
101
+ #: admin/dialogs.php:125
102
+ msgid ""
103
+ "Your WP settings allow full text rss feeds - this is not the recommended "
104
+ "setting."
105
+ msgstr ""
106
+ "WP ayarlarınız tam yazı rss beslemelerine izin veriyor - bu önerilen bir "
107
+ "ayar değil."
108
+
109
+ #: admin/dialogs.php:126
110
+ #, php-format
111
+ msgid ""
112
+ "You can %s change this here %s by changing \"For each article in a feed, show"
113
+ "\" to \"Summary.\""
114
+ msgstr ""
115
+ "\"Her yazı için, göster\" seçeneğini \"Özet\" olarak %s buradan "
116
+ "değiştirebilirsiniz %s ."
117
+
118
+ #: admin/dialogs.php:127
119
+ msgid ""
120
+ "Leaving this set to full text allows anyone to read your protected content "
121
+ "in an RSS reader. Changing this to Summary prevents this as your feeds will "
122
+ "only show summary text."
123
+ msgstr ""
124
+ "Bu ayarı tam yazı olarak bırakmak, herkesin bir RSS okuyucusunda korumalı "
125
+ "içeriğinizi okumasına olanak verir. Bunun Özet olarak değiştirilmesi, "
126
+ "beslemelerinizi yalnızca özet metin olarak göstererek sınırlar."
127
+
128
+ #: admin/dialogs.php:133
129
+ msgid "You have set WP-Members to hold registrations for approval"
130
+ msgstr "WP-Members eklentisini kayıtların onaydan geçmesi için ayarladınız"
131
+
132
+ #: admin/dialogs.php:134
133
+ msgid ""
134
+ "but you have not changed the default message for \"Registration Completed\" "
135
+ "under \"WP-Members Dialogs and Error Messages.\" You should change this "
136
+ "message to let users know they are pending approval."
137
+ msgstr ""
138
+ "fakat \"Kayıt Tamamlandı\" için varsayılan mesajı \"WP-Members İletiler ve "
139
+ "Hata Mesajları.\" altında değişmediniz. Kullanıcıların onay beklediklerini "
140
+ "bilmeleri için bu mesajı değiştirmelisiniz."
141
+
142
+ #: admin/dialogs.php:140
143
+ msgid "You have set WP-Members to turn off the registration process"
144
+ msgstr "WP-Members eklentisini kayıt işlemini kapatmak için ayarladınız"
145
+
146
+ #: admin/dialogs.php:141
147
+ msgid ""
148
+ "but you also set to moderate and/or email admin new registrations. You will "
149
+ "need to set up a registration page for users to register."
150
+ msgstr ""
151
+ "fakat ayrıca yöneticinin yeni kayıtları denetlemesi ve/veya eposta ile "
152
+ "bilgilendirilmesi olarak ayarladınız. Kullanıcıların kaydolması için bir "
153
+ "kayıt sayfası oluşturmanız gerekir."
154
+
155
+ #: admin/dialogs.php:147
156
+ msgid "You have turned on reCAPTCHA"
157
+ msgstr "reCAPTCHA özelliğini açtınız"
158
+
159
+ #: admin/dialogs.php:148
160
+ msgid ""
161
+ "but you have not entered API keys. You will need both a public and private "
162
+ "key. The CAPTCHA will not display unless a valid API key is included."
163
+ msgstr ""
164
+ "fakat API anahtarlarını girmediniz. Public ve private anahtarlarına "
165
+ "ihtiyacınız olacak. Geçerli bir API anahtarı yer almadığı sürece CAPTCHA "
166
+ "göstermeyecektir."
167
+
168
+ #: admin/dialogs.php:171
169
+ msgid "Version:"
170
+ msgstr "Sürüm:"
171
+
172
+ #: admin/dialogs.php:172
173
+ msgid "Quick Start Guide"
174
+ msgstr "Hızlı Başlangıç Kılavuzu"
175
+
176
+ #: admin/dialogs.php:173
177
+ msgid "Online User Guide"
178
+ msgstr "Çevrimiçi Kullanıcı Kılavuzu"
179
+
180
+ #: admin/dialogs.php:174
181
+ msgid "FAQs"
182
+ msgstr "SSS"
183
+
184
+ #: admin/dialogs.php:181
185
+ msgid "Thank you for using WP-Members"
186
+ msgstr "WP-Members kullandığınız için teşekkürler"
187
+
188
+ #: admin/dialogs.php:182
189
+ msgid "A plugin developed by"
190
+ msgstr "Eklenti geliştiricisi"
191
+
192
+ #: admin/dialogs.php:183
193
+ msgid "Follow"
194
+ msgstr "Takip et"
195
+
196
+ #: admin/dialogs.php:200 admin/dialogs.php:204
197
+ msgid "Latest from RocketGeek"
198
+ msgstr ""
199
+
200
+ #: admin/dialogs.php:221 admin/dialogs.php:234
201
+ msgid "Latest from ButlerBlog"
202
+ msgstr ""
203
+
204
+ #: admin/post.php:36 admin/post.php:38
205
+ #, fuzzy
206
+ msgid "Block"
207
+ msgstr "Varsayılan olarak Yazıları Engelle"
208
+
209
+ #: admin/post.php:37 admin/post.php:39
210
+ msgid "Unblock"
211
+ msgstr ""
212
+
213
+ #: admin/post.php:120
214
+ #, fuzzy, php-format
215
+ msgid "%s posts %sed."
216
+ msgstr "Varsayılan olarak Yazıları Engelle"
217
+
218
+ #: admin/post.php:138
219
+ #, fuzzy
220
+ msgid "Post Restriction"
221
+ msgstr "Yeni Kayıt"
222
+
223
+ #: admin/post.php:145
224
+ #, fuzzy
225
+ msgid "Page Restriction"
226
+ msgstr "Yeni Kayıt"
227
+
228
+ #: admin/post.php:263 admin/post.php:295
229
+ #, fuzzy
230
+ msgid "Unblocked?"
231
+ msgstr ""
232
+ "Not: Yazılar hala tekil engellenmiş veya makale düzeyinde engellenmemiş "
233
+ "olabilir"
234
+
235
+ #: admin/post.php:263 admin/post.php:295
236
+ #, fuzzy
237
+ msgid "Blocked?"
238
+ msgstr ""
239
+ "Not: Yazılar hala tekil engellenmiş veya makale düzeyinde engellenmemiş "
240
+ "olabilir"
241
+
242
+ #: admin/tab-captcha.php:35 admin/tab-dialogs.php:44 admin/tab-emails.php:113
243
+ #: admin/tab-fields.php:45 admin/tab-options.php:37
244
+ msgid "Need help?"
245
+ msgstr "Yardım mı lazım?"
246
+
247
+ #: admin/tab-captcha.php:46
248
+ msgid "Manage reCAPTCHA Options"
249
+ msgstr "reCAPTCHA Seçeneklerini yönet"
250
+
251
+ #: admin/tab-captcha.php:60
252
+ msgid ""
253
+ "reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
254
+ "while blocking spam on your blog."
255
+ msgstr ""
256
+ "reCAPTCHA blogunuzda spamı bloke ederken kitapları dijital ortama aktarmayla "
257
+ "yardımcı olan ücretsiz, ulaşılabilir CAPTCHA hizmetidir."
258
+
259
+ #: admin/tab-captcha.php:61
260
+ #, php-format
261
+ msgid ""
262
+ "reCAPTCHA asks commenters to retype two words scanned from a book to prove "
263
+ "that they are a human. This verifies that they are not a spambot while also "
264
+ "correcting the automatic scans of old books. So you get less spam, and the "
265
+ "world gets accurately digitized books. Everybody wins! For details, visit "
266
+ "the %s reCAPTCHA website%s"
267
+ msgstr ""
268
+ "reCAPTCHA, onların insan olduğunu kanıtlamak için bir kitaptan taranmış iki "
269
+ "kelimeyi yorumcuların yeniden yazmasnı ister. Bu aynı zamanda, eski "
270
+ "kitapların otomatik taramasını düzeltirken onların bir spambot olmadığını "
271
+ "doğrular. Böylece, siz daha az spam alırsınız ve dünya ise doğru olarak "
272
+ "dijitalleştirilmiş kitapları alır. Herkes kazanır! Ayrıntılar için, %s "
273
+ "reCAPTCHA web sitesini%s ziyaret edin."
274
+
275
+ #: admin/tab-captcha.php:66
276
+ msgid "reCAPTCHA Keys"
277
+ msgstr "reCAPTCHA Anahtarları"
278
+
279
+ #: admin/tab-captcha.php:68
280
+ #, fuzzy, php-format
281
+ msgid ""
282
+ "reCAPTCHA requires an API key, consisting of a \"public\" and a \"private\" "
283
+ "key. You can sign up for a %s free reCAPTCHA key%s"
284
+ msgstr ""
285
+ "reCAPTCHA, bir \"public\" ve bir \"private\"anahtarından oluşan bir API "
286
+ "anahtarı gerektirir. %s Ücretsiz bir reCAPTCHA anahtarı\" için kayıt "
287
+ "olabilirsiniz."
288
+
289
+ #: admin/tab-captcha.php:69
290
+ msgid "Public Key"
291
+ msgstr "Public Anahtar"
292
+
293
+ #: admin/tab-captcha.php:70
294
+ msgid "Private Key"
295
+ msgstr "Private Anahtar"
296
+
297
+ #: admin/tab-captcha.php:74
298
+ msgid "Choose Theme"
299
+ msgstr "Tema Seç"
300
+
301
+ #: admin/tab-captcha.php:77
302
+ msgid "Red"
303
+ msgstr "Kırmızı"
304
+
305
+ #: admin/tab-captcha.php:78
306
+ msgid "White"
307
+ msgstr "Beyaz"
308
+
309
+ #: admin/tab-captcha.php:79
310
+ msgid "Black Glass"
311
+ msgstr "Siyah Cam"
312
+
313
+ #: admin/tab-captcha.php:80
314
+ msgid "Clean"
315
+ msgstr "Temiz"
316
+
317
+ #: admin/tab-captcha.php:112
318
+ msgid "Characters for image"
319
+ msgstr ""
320
+
321
+ #: admin/tab-captcha.php:116
322
+ #, fuzzy
323
+ msgid "Number of characters"
324
+ msgstr "Alıntıdaki kelime sayısı:"
325
+
326
+ #: admin/tab-captcha.php:120
327
+ msgid "Image dimensions"
328
+ msgstr ""
329
+
330
+ #: admin/tab-captcha.php:124
331
+ msgid "Font color of characters"
332
+ msgstr ""
333
+
334
+ #: admin/tab-captcha.php:128
335
+ msgid "Background color of image"
336
+ msgstr ""
337
+
338
+ #: admin/tab-captcha.php:132
339
+ msgid "Font size"
340
+ msgstr ""
341
+
342
+ #: admin/tab-captcha.php:136
343
+ msgid "Width between characters"
344
+ msgstr ""
345
+
346
+ #: admin/tab-captcha.php:140
347
+ #, fuzzy
348
+ msgid "Image type"
349
+ msgstr "Bilgi Alanı Türü"
350
+
351
+ #: admin/tab-captcha.php:154
352
+ msgid ""
353
+ "To use Really Simple CAPTCHA, you must have the Really Simple CAPTCHA plugin "
354
+ "installed and activated."
355
+ msgstr ""
356
+
357
+ #: admin/tab-captcha.php:166
358
+ #, fuzzy
359
+ msgid "Update CAPTCHA Settings"
360
+ msgstr "Ayarları Güncelle"
361
+
362
+ #: admin/tab-captcha.php:230
363
+ #, fuzzy
364
+ msgid "CAPTCHA was updated for WP-Members"
365
+ msgstr "reCAPTCHA WP-Members için güncellendi"
366
+
367
+ #: admin/tab-dialogs.php:29
368
+ msgid "Restricted post (or page), displays above the login/registration form"
369
+ msgstr "Kısıtlı yazı (veya sayfa), giriş/kayıt formunun üstünde görüntülenir"
370
+
371
+ #: admin/tab-dialogs.php:30
372
+ msgid "Username is taken"
373
+ msgstr "Kullanıcı Adı alınmış"
374
+
375
+ #: admin/tab-dialogs.php:31
376
+ msgid "Email is registered"
377
+ msgstr "Eposta kayıtlıdır"
378
+
379
+ #: admin/tab-dialogs.php:32
380
+ msgid "Registration completed"
381
+ msgstr "Kayıt tamamlandı"
382
+
383
+ #: admin/tab-dialogs.php:33
384
+ msgid "User update"
385
+ msgstr "Kullanıcı güncelleme"
386
+
387
+ #: admin/tab-dialogs.php:34
388
+ msgid "Passwords did not match"
389
+ msgstr "Şifreler eşleşmedi"
390
+
391
+ #: admin/tab-dialogs.php:35
392
+ msgid "Password changes"
393
+ msgstr "Şifre değişiklikleri"
394
+
395
+ #: admin/tab-dialogs.php:36
396
+ msgid "Username or email do not exist when trying to reset forgotten password"
397
+ msgstr ""
398
+ "Unutulan şifreyi sıfırlamayı denerken kullanıcı adı veya eposta mevcut değil"
399
+
400
+ #: admin/tab-dialogs.php:37
401
+ msgid "Password reset"
402
+ msgstr "Şifre sıfırlama"
403
+
404
+ #: admin/tab-dialogs.php:54
405
+ msgid "Dialogs and Error Messages"
406
+ msgstr "İletiler ve Hata Mesajları"
407
+
408
+ #: admin/tab-dialogs.php:56
409
+ #, php-format
410
+ msgid ""
411
+ "You can customize the text for dialogs and error messages. Simple HTML is "
412
+ "allowed %s etc."
413
+ msgstr ""
414
+ "İletiler ve hata mesajları için metni kişiselleştirebilirsiniz. Basit HTML "
415
+ "için izin verilir %s vb."
416
+
417
+ #: admin/tab-dialogs.php:69
418
+ msgid "Terms of Service (TOS)"
419
+ msgstr "Hizmet Koşulları (HK)"
420
+
421
+ #: admin/tab-dialogs.php:76
422
+ msgid "Update Dialogs"
423
+ msgstr "İletileri Güncelle"
424
+
425
+ #: admin/tab-dialogs.php:115
426
+ msgid "WP-Members dialogs were updated"
427
+ msgstr "WP-Members iletileri güncellendi"
428
+
429
+ #: admin/tab-emails.php:30
430
+ msgid "New Registration"
431
+ msgstr "Yeni Kayıt"
432
+
433
+ #: admin/tab-emails.php:34
434
+ msgid "Registration is Moderated"
435
+ msgstr "Kayıt Denetlendi"
436
+
437
+ #: admin/tab-emails.php:35
438
+ msgid "Registration is Moderated, User is Approved"
439
+ msgstr "Kayıt Denetlendi, Kullanıcı Onaylandı"
440
+
441
+ #: admin/tab-emails.php:40
442
+ msgid "Password Reset"
443
+ msgstr "Şifre Sıfırlama"
444
+
445
+ #: admin/tab-emails.php:45
446
+ msgid "Admin Notification"
447
+ msgstr "Yönetici Bildirimi"
448
+
449
+ #: admin/tab-emails.php:50
450
+ msgid "Email Signature"
451
+ msgstr "Eposta İmzası"
452
+
453
+ #: admin/tab-emails.php:57
454
+ msgid "Email Messages"
455
+ msgstr "Eposta Mesajları"
456
+
457
+ #: admin/tab-emails.php:60
458
+ msgid "You can customize the content of the emails sent by the plugin."
459
+ msgstr ""
460
+ "Eklenti tarafından gönderilen epostaların içeriğini kişiselleştirebilirsiniz."
461
+
462
+ #: admin/tab-emails.php:62
463
+ msgid "A list of shortcodes is available here."
464
+ msgstr "Kısa kodların listesi burada mevcuttur."
465
+
466
+ #: admin/tab-emails.php:69
467
+ msgid "Set a custom email address"
468
+ msgstr "Kişisel bir eposta adresi ayarla"
469
+
470
+ #: admin/tab-emails.php:70 admin/tab-emails.php:74 admin/tab-emails.php:97
471
+ msgid "(optional)"
472
+ msgstr "(isteğe bağlı)"
473
+
474
+ #: admin/tab-emails.php:73
475
+ msgid "Set a custom email name"
476
+ msgstr "Kişisel bir eposta adı ayarla"
477
+
478
+ #: admin/tab-emails.php:84
479
+ msgid "Subject"
480
+ msgstr "Konu"
481
+
482
+ #: admin/tab-emails.php:88
483
+ msgid "Body"
484
+ msgstr "Gövde"
485
+
486
+ #: admin/tab-emails.php:105
487
+ msgid "Update Emails"
488
+ msgstr "Epostaları Güncelle"
489
+
490
+ #: admin/tab-e